| | <!DOCTYPE html> |
| | <html lang="en"> |
| | <head> |
| | <meta charset="UTF-8"> |
| | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| | <title>THE AGENTS - ASCII Matrix Style</title> |
| | <script src="https://cdn.tailwindcss.com"></script> |
| | <link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet"> |
| | <style> |
| | @keyframes typing { |
| | from { width: 0 } |
| | to { width: 100% } |
| | } |
| | |
| | @keyframes blink-caret { |
| | from, to { border-color: transparent } |
| | 50% { border-color: #00FF00 } |
| | } |
| | |
| | .typing-effect { |
| | overflow: hidden; |
| | white-space: nowrap; |
| | animation: |
| | typing 1.5s steps(30, end); |
| | } |
| | |
| | .screen-noise { |
| | position: absolute; |
| | width: 100%; |
| | height: 100%; |
| | background: |
| | linear-gradient(rgba(0, 255, 0, 0.03) 1px, transparent 1px), |
| | linear-gradient(90deg, rgba(0, 255, 0, 0.03) 1px, transparent 1px); |
| | background-size: 3px 3px; |
| | pointer-events: none; |
| | opacity: 0.1; |
| | } |
| | |
| | .ascii-face { |
| | font-family: 'VT323', monospace; |
| | line-height: 1; |
| | letter-spacing: 0; |
| | white-space: pre; |
| | overflow: hidden; |
| | color: #00FF00; |
| | font-size: 6px; |
| | } |
| | |
| | .agent-card:hover .ascii-face { |
| | filter: brightness(1.2); |
| | text-shadow: 0 0 5px rgba(0, 255, 0, 0.7); |
| | } |
| | |
| | .agent-name:hover { |
| | text-shadow: 0 0 8px #00FF00, 0 0 16px #00FF66; |
| | animation: pulse 1.5s infinite; |
| | } |
| | |
| | @keyframes pulse { |
| | 0% { opacity: 1; } |
| | 50% { opacity: 0.8; } |
| | 100% { opacity: 1; } |
| | } |
| | |
| | .fade-in { |
| | animation: fadeIn 2s ease-in; |
| | } |
| | |
| | @keyframes fadeIn { |
| | from { opacity: 0; } |
| | to { opacity: 1; } |
| | } |
| | |
| | .print-effect { |
| | display: inline-block; |
| | overflow: hidden; |
| | white-space: pre; |
| | animation: typing 1s steps(40, end); |
| | } |
| | |
| | .matrix-font { |
| | font-family: 'VT323', monospace; |
| | } |
| | |
| | .ascii-container { |
| | background-color: rgba(0, 0, 0, 0.7); |
| | border: 1px solid rgba(0, 80, 0, 0.3); |
| | display: flex; |
| | align-items: center; |
| | justify-content: center; |
| | } |
| | </style> |
| | </head> |
| | <body class="bg-black min-h-screen overflow-x-hidden"> |
| | <div class="screen-noise"></div> |
| | |
| | <section class="container mx-auto px-4 py-16 md:py-24"> |
| | |
| | <div class="text-center mb-16"> |
| | <h1 id="agents-title" class="text-5xl md:text-7xl font-bold text-green-500 matrix-font tracking-wider"></h1> |
| | </div> |
| | |
| | |
| | <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8 md:gap-12"> |
| | |
| | <div class="agent-card fade-in" style="animation-delay: 0.5s"> |
| | <div class="ascii-container relative w-full h-64 md:h-80 mb-4 rounded-lg overflow-hidden"> |
| | <div id="agent1" class="ascii-face"></div> |
| | </div> |
| | <div class="text-center"> |
| | <h3 class="agent-name text-2xl md:text-3xl text-green-500 matrix-font mb-1 print-effect">AGENT ROI</h3> |
| | <p class="text-green-300 matrix-font print-effect" style="animation-delay: 0.3s">Traffic Strategist</p> |
| | </div> |
| | </div> |
| | |
| | |
| | <div class="agent-card fade-in" style="animation-delay: 1s"> |
| | <div class="ascii-container relative w-full h-64 md:h-80 mb-4 rounded-lg overflow-hidden"> |
| | <div id="agent2" class="ascii-face"></div> |
| | </div> |
| | <div class="text-center"> |
| | <h3 class="agent-name text-2xl md:text-3xl text-green-500 matrix-font mb-1 print-effect">AGENT PUSH</h3> |
| | <p class="text-green-300 matrix-font print-effect" style="animation-delay: 0.3s">Push Operations Specialist</p> |
| | </div> |
| | </div> |
| | |
| | |
| | <div class="agent-card fade-in" style="animation-delay: 1.5s"> |
| | <div class="ascii-container relative w-full h-64 md:h-80 mb-4 rounded-lg overflow-hidden"> |
| | <div id="agent3" class="ascii-face"></div> |
| | </div> |
| | <div class="text-center"> |
| | <h3 class="agent-name text-2xl md:text-3xl text-green-500 matrix-font mb-1 print-effect">AGENT CREATIVE</h3> |
| | <p class="text-green-300 matrix-font print-effect" style="animation-delay: 0.3s">Creative Systems Engineer</p> |
| | </div> |
| | </div> |
| | |
| | |
| | <div class="agent-card fade-in lg:col-start-2" style="animation-delay: 2s"> |
| | <div class="ascii-container relative w-full h-64 md:h-80 mb-4 rounded-lg overflow-hidden"> |
| | <div id="agent4" class="ascii-face"></div> |
| | </div> |
| | <div class="text-center"> |
| | <h3 class="agent-name text-2xl md:text-3xl text-green-500 matrix-font mb-1 print-effect">AGENT DATA</h3> |
| | <p class="text-green-300 matrix-font print-effect" style="animation-delay: 0.3s">Predictive Data Analyst</p> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | <script> |
| | |
| | const asciiFaces = [ |
| | |
| | [ |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************", |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************", |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%###**********+*+++++++", |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%###******+++++++++++++", |
| | "********************####%%%@@@@@@@@@@@@@@@@@@@@@@%%%%%%%#%#######%%%%%%%%%%%%%###******+++++++++++++", |
| | "********************####%%%@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%#*#%####%%%%%%%%%###**************++*++", |
| | "********************####%%%%@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%##%@%%###%%%%%%####******************", |
| | "********************####%%%%@@@@@@@@@@@%%%%%%@@@%%%%%%%%%%%%%%@@#*%@%%%%%#%%%%#####*****************", |
| | "*******************#####%%%%%@@@@@@@@@%@@%@@@@@@@%%%%%%%%%@%%%%%@%#%%%%%%%#########*****************", |
| | "*******************#####%%%%%%%%%%%@@@@@@@%%%%%%%%%%%%%%%%%@%%%%@%%%#####%%##*#######***************", |
| | "*****************#######%%%%%%%%%@@@@@@@@@@@@%%%@%%%%%@%%%%%%%%%%%%%#+==++####*##%%#################", |
| | "***********############%%%%%%%%@@@@@@@@@@@%%%%%%%@@@@%%%%%%%%%%%%%##*+-::--+*###%%%%################", |
| | "***###################%%%%%%%@@@@@@@@@@%#######%%%%%%%%%#####%%###**+=-:::::-=***#%@@###############", |
| | "#####################%%%%%%%@@@%%%%@@%#********#########***++*****++=-::::::::-+**#%@@##############", |
| | "#################%%%%%%%%%%@@@@@%%%%#++===+++++*****++++==========---:::::::::::+**#%@%#############", |
| | "#####%%%%%%%%%%%%%%%%%%%%%@@@@@%%%%*+===========++++===--------::::::::::::::::::+**#@@%############", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@%%##+=================-----:-:::::::::::::::::::::-++*%@@############", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+=======----=-===--------::::::::::::::::::::::=+*#%@%###########", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+++========----------------:::::::::::::::::----+*#%@%###########", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@%#*+++============-----------------::::::::--------+*#%@@%##########", |
| | "######%%%%%%%%%%%%%%%%%%@@@@@@@@%#*+++=============------------------::::---------=+*%@@@%#######%%%", |
| | "######%%%@@@%#***###%%%%@@@@@@@@%%#***+++++++=======------=----------------------==+#%@@@@%#######%%", |
| | "#####%@%@@@@@@%%#*###%%%@@@@@@@@%%##****++++++================-----------------=====+#@@@@@%#########", |
| | "######@%@@@@@@@@@%%%%%%#%@@@@@@@@%%#*******+++==========-=-===----------------=====+%@@@@%%#########", |
| | "######%%@@@@@@@@@%@@@%%##@@@@@@@@%%#*******+++===----------------------:------=====*#%@@@%%%########", |
| | "******#%@@@@@@@@@%@@@%%#*%@@@@@@@%%#*********+++===----:----------------------=====*#%@%##%%%#######", |
| | "******#%@@@@@@@@@%@@@%%#**%@@@@@@%##********+++++==-----::------------------------=*%%%**#%%%%%####*", |
| | "*******%@@@@@@@@@%@@@%%#***%@@@@@%##**+++++++++++++===------------------------::::-+%@#--+#%%%%###**", |
| | "++*****%@@@@@@@@@@@@@@@#*++*%@@@@%##**+====+++++++++======----====================-=%@#*++#%%%%##***", |
| | "++++++*%@@@@@@@@@@@@@@@#*****#%@@%#***+****###########****+====++=+**#####%%%%%%%%##%##+++#%%%%###**", |
| | "++++++*%@@@@@@@@@@@@@@@######*#@@%###*#%@@@@@@@@@@@@@@@@@@#*******%@@@@@@@@@@@@@@@@@@%#+=+%%@%%##***", |
| | "++++++*%@@@@@@@@@@@@@@@%*###*##@@%###%@@@@@@@@@@@@@@@@@@@@%%#***%%@%@@@@@@@@@@@@@@@%@%+==*%%%%%##***", |
| | "++*****%@@@@@@@@@@@@@@@%#*#***#@@%#*##%@@@@@@@@@@@@@@@@@@@@#+==+#%@@@@@@@@@@@@@@@%%%@#===*%%%%####**", |
| | "+******%@@@@@@@@@@@@@@@@#******#@%#***#@@@@@@@@@%%@@@@@@@@%#+---=#%@@@@@@@@@@%%%%%%%%*=-=#%%%######*", |
| | "*******%@@@@@@@@@@@@@@@@%#****##%%#****%@@@@@@@@@@@@@@@@@%#*=----+#%@@@@@@@@@@%%%%%%#---+%%%%%#####*", |
| | "++++++*%@@@@@@@@@@@@@@@@@%**++*#%%#*****%@@@@@@@@@@@@@@%%#**=----=+##%%%%%%%%%##**++*--=#%%%%%%%%###", |
| | "+++++++%@@@@@@@@@@@@@@@@@@%**++*%@%*******###%%%#########**+=----==*********++=====++==*%%%%%%%%%%##", |
| | "++++=++%@@@@@@@@@@@@@@@@@@@#****#@%###****************####*+=-:::-=+++++++++++++++++=+*#%%%%%@@%%%%#", |
| | "*++++++%@@@@@@@@@@@@@@@@@@@@%**###%######**************###++=--::--+++++++++++++++++++*#%@@@@@@@@%%#", |
| | "**+++++%%@@@@@@@@@@@@@@@@@@@@@%#*#########*************#**++=--::--=++=======++++++===*#%@@@@@@@@@%%", |
| | "#***+++%@@@@@@@@@@@@@@@@%@@@@@@#############****************+==--====+=========++++-=+*#%@@@@@@@@@@%", |
| | "##*****%@@@@@@@@@@@@@@@@%@@@@@@%**###########***********###%#*****#*===========++++-=+*#%@@@@@@@@@@@", |
| | "****##%%@@@@@@@@@@@@@@@@@@@@@@@@#*##########********+++**##%###***+==---=======+++=-=+*#%@@@@@@@@@@@", |
| | "===+*#%@@@@@@@@@@@@@%@@@@@@@@@@@@**##########*************###***++===----=====++++-==+*%%@@@@@@@@@@@", |
| | "---==*#%@@@@@@@@@@@@%%%%@@@@@@@@@%**##########***************++*+=============+++=-=+*#%@@@@@@@@@@@@", |
| | ":---=+*%@@@@@@@@@@@@@###%@@@@@@@@@#+#%#########**************+=++=============+++-==+*#%@@@@@@@@@@@@", |
| | "---=++*%@@@@@@@@@@@@@@#*##%@@@@@@@++*#%%########*#*********###***###****++===+++====+*#%@@@@@@@@@@@@", |
| | "-==+**#%@@@@@@@@@@@@@@@%####%@@@@*==+*%%%##############%%%%###***+++****++++=+++++++**#%@@@@@@@@@@@@", |
| | "+***#%%@@@@@@@@@@@@@@@@@@%%%@@@%@#%#-*#%%%%##%%###########***+++=+++++==++++++******##%@@@@@@@@@@@@@", |
| | "%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@#=+%@#:=*#%%%%%%%%%###########*********++++++++#%####%%%@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%##**%@%=-=++*#%%%%%%%############%######******+#@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@%*====*#%@%+=====+*#%%%%%%%%%%%%%%%#####****#******@@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@%+-::::-+#%%%%*+======+*#%%%%%%######****++++++****+*@@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@*-:...::-*@@%#*+=:::::..::--=*%########*****++++++*+=:*@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@%=-::::::-+%@#+--::::....::::-:-#%%##########*******++=.-@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@#+=-=-:-=*%@*------:::-:::::::::-*#%%%###########**+++-.:%@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@*++=----*@%+----:::------:::.::...:-*%##########***++=...+%@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@%+==--:--*%+---::::--------:::::::...:=***++++++++++=-....:#%%%@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@#+=------*+----:::--------------:::.:==++=----:::::--=-:...=%#%%%%@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@%*+==----+==---::-----::::---:::::::=*#*%%+--::::...=#%##*=.-#%###%%%@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@%+==----=---:--:------:::------:--:=%@##%%#--:::::..-%%%%@@+-%%##%%%%%%%@@@@@@@@@@", |
| | "@@@@@@@@@%@@@@@@@@*==------::::::---::::::-=-:------=#@@%%%@%=---::::.=@@%%%%#-=#%%#%%%%%%%@@@@@@@@@", |
| | "@@@@@@@@@@%%@@@@@@+---:::::::::::::::::::--::------=#@@@@%%%%-----:::.+@@@@%%%=.:*%%%%%%%%%%%@@@@@@@", |
| | "@@@@@@%@@@@%@@@@@#--:::---:::::::::::::::::::------+@@@@@%%%%-::::::::#@@@@@%%#..:+%%%%%%%%%%%@@@@@@", |
| | "@@@%%%@@@@@@@@@@@+=--==+++--::----::::::::::::::---=%@@@@%%@%:::::::::#@@@@@@%%-...+%%%%%%%%%%%%@@@@", |
| | "@@%%%@@@@@@@@@@@@#******##*+===++++=---=====-------:#@@@@%%@%:::::::.:*%@@@@@%%#....-#%%%#%%%%%%@@@@", |
| | "%%%%%@@@@@@@@@@@@%##****####********++++**++=-------*@@@@@@@%+:.::::.:=*%@@@@@%%:....:*%%%###%%%%@@@", |
| | "%%%%%%%@@@@@@@@@@@%##***###*####***********++===----*@@@@@%%@%*-..::.--=*%@@@@%%+.....:*%%%####%%%@@", |
| | "%%%%%%%%@@@@@@@@@@@%#######**####*********+++=+=----+@@@@@%%@@%%+:..:---=*@@@%%%%-......+%%%####%%@@", |
| | "%%%%%%%%%%@@@@@@@@@@%%#####***###**********++++=-=--=%@@@@%@@@@%%#-..:---=%@@@%%%*.......=%%%%###%%@", |
| | "%%%%%%%%@@%%@@@@@@@@@@%%%####*###***********++===----%@@@@@@@@@@%%%=...:-=#@@@%%%%+.......=%%%%###%%", |
| | "@@@@%%%%%@@@@@@@@@@@@@%%#########*********++++==-----#@@@@@@@@@@@%%%*:...-*@@@@%%%%=.......=%%%%###%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@%%%######***#******+++==-----=*@@@@@%@@@@@@%%%#-...-%@@@%%%%#-.......-%%%%##%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@%%######**##******++===-==-==*@@@%%%%%@@@@@%%%%+...+@@@%%%%%#-.......-%%%%%#", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@%%#####**####****++==--=====*%%%%%%%%%%@@@@@%%%#:.:#@%%%%%%%*:.......-%%%%%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@%%%####**#####***+++========#%%%%%%%%%%%@@@@@@%%%=.-%%%%%%%%%*-.......-%%%%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@%#*#####**###***+++++=======+%@%%%%%%%%%%%@@@@@@@%%*:-%%%%%%%%%#-.......-%@%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@#*=--===+++****+++++======+%@@@%%%%%%%%%%%@@@@@@%@#==##%%%%%%%#=.......-#@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=--:::-------========*%%@@@@%%%%%%%%%%%@@@@@%%%*+##%%%%%%%#*:......=#", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=-----------::----=++*#%%@@@%%%%%%%%@@@@@@@@@%*#%%%%%%%###-.....:=", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+----==----------:::---=+*%@%%%%@@%@@@@@@@@@%#%%%%%%%%%%#=::...:", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+===========+++====--=+%@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%+-::::" |
| | ], |
| | |
| | [ |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************", |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************", |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%###**********+*+++++++", |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%###******+++++++++++++", |
| | "********************####%%%@@@@@@@@@@@@@@@@@@@@@@%%%%%%%#%#######%%%%%%%%%%%%%###******+++++++++++++", |
| | "********************####%%%@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%#*#%####%%%%%%%%%###**************++*++", |
| | "********************####%%%%@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%##%@%%###%%%%%%####******************", |
| | "********************####%%%%@@@@@@@@@@@%%%%%%@@@%%%%%%%%%%%%%%@@#*%@%%%%%#%%%%#####*****************", |
| | "*******************#####%%%%%@@@@@@@@@%@@%@@@@@@@%%%%%%%%%@%%%%%@%#%%%%%%%#########*****************", |
| | "*******************#####%%%%%%%%%%%@@@@@@@%%%%%%%%%%%%%%%%%@%%%%@%%%#####%%##*#######***************", |
| | "*****************#######%%%%%%%%%@@@@@@@@@@@@%%%@%%%%%@%%%%%%%%%%%%%#+==++####*##%%#################", |
| | "***********############%%%%%%%%@@@@@@@@@@@%%%%%%%@@@@%%%%%%%%%%%%%##*+-::--+*###%%%%################", |
| | "***###################%%%%%%%@@@@@@@@@@%#######%%%%%%%%%#####%%###**+=-:::::-=***#%@@###############", |
| | "#####################%%%%%%%@@@%%%%@@%#********#########***++*****++=-::::::::-+**#%@@##############", |
| | "#################%%%%%%%%%%@@@@@%%%%#++===+++++*****++++==========---:::::::::::+**#%@%#############", |
| | "#####%%%%%%%%%%%%%%%%%%%%%@@@@@%%%%*+===========++++===--------::::::::::::::::::+**#@@%############", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@%%##+=================-----:-:::::::::::::::::::::-++*%@@############", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+=======----=-===--------::::::::::::::::::::::=+*#%@%###########", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+++========----------------:::::::::::::::::----+*#%@%###########", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@%#*+++============-----------------::::::::--------+*#%@@%##########", |
| | "######%%%%%%%%%%%%%%%%%%@@@@@@@@%#*+++=============------------------::::---------=+*%@@@%#######%%%", |
| | "######%%%@@@%#***###%%%%@@@@@@@@%%#***+++++++=======------=----------------------==+#%@@@@%#######%%", |
| | "#####%@%@@@@@@%%#*###%%%@@@@@@@@%%##****++++++================-----------------=====+#@@@@@%#########", |
| | "######@%@@@@@@@@@%%%%%%#%@@@@@@@@%%#*******+++==========-=-===----------------=====+%@@@@%%#########", |
| | "######%%@@@@@@@@@%@@@%%##@@@@@@@@%%#*******+++===----------------------:------=====*#%@@@%%%########", |
| | "******#%@@@@@@@@@%@@@%%#*%@@@@@@@%%#*********+++===----:----------------------=====*#%@%##%%%#######", |
| | "******#%@@@@@@@@@%@@@%%#**%@@@@@@%##********+++++==-----::------------------------=*%%%**#%%%%%####*", |
| | "*******%@@@@@@@@@%@@@%%#***%@@@@@%##**+++++++++++++===------------------------::::-+%@#--+#%%%%###**", |
| | "++*****%@@@@@@@@@@@@@@@#*++*%@@@@%##**+====+++++++++======----====================-=%@#*++#%%%%##***", |
| | "++++++*%@@@@@@@@@@@@@@@#*****#%@@%#***+****###########****+====++=+**#####%%%%%%%%##%##+++#%%%%###**", |
| | "++++++*%@@@@@@@@@@@@@@@######*#@@%###*#%@@@@@@@@@@@@@@@@@@#*******%@@@@@@@@@@@@@@@@@@%#+=+%%@%%##***", |
| | "++++++*%@@@@@@@@@@@@@@@%*###*##@@%###%@@@@@@@@@@@@@@@@@@@@%%#***%%@%@@@@@@@@@@@@@@@%@%+==*%%%%%##***", |
| | "++*****%@@@@@@@@@@@@@@@%#*#***#@@%#*##%@@@@@@@@@@@@@@@@@@@@#+==+#%@@@@@@@@@@@@@@@%%%@#===*%%%%####**", |
| | "+******%@@@@@@@@@@@@@@@@#******#@%#***#@@@@@@@@@%%@@@@@@@@%#+---=#%@@@@@@@@@@%%%%%%%%*=-=#%%%######*", |
| | "*******%@@@@@@@@@@@@@@@@%#****##%%#****%@@@@@@@@@@@@@@@@@%#*=----+#%@@@@@@@@@@%%%%%%#---+%%%%%#####*", |
| | "++++++*%@@@@@@@@@@@@@@@@@%**++*#%%#*****%@@@@@@@@@@@@@@%%#**=----=+##%%%%%%%%%##**++*--=#%%%%%%%%###", |
| | "+++++++%@@@@@@@@@@@@@@@@@@%**++*%@%*******###%%%#########**+=----==*********++=====++==*%%%%%%%%%%##", |
| | "++++=++%@@@@@@@@@@@@@@@@@@@#****#@%###****************####*+=-:::-=+++++++++++++++++=+*#%%%%%@@%%%%#", |
| | "*++++++%@@@@@@@@@@@@@@@@@@@@%**###%######**************###++=--::--+++++++++++++++++++*#%@@@@@@@@%%#", |
| | "**+++++%%@@@@@@@@@@@@@@@@@@@@@%#*#########*************#**++=--::--=++=======++++++===*#%@@@@@@@@@%%", |
| | "#***+++%@@@@@@@@@@@@@@@@%@@@@@@#############****************+==--====+=========++++-=+*#%@@@@@@@@@@%", |
| | "##*****%@@@@@@@@@@@@@@@@%@@@@@@%**###########***********###%#*****#*===========++++-=+*#%@@@@@@@@@@@", |
| | "****##%%@@@@@@@@@@@@@@@@@@@@@@@@#*##########********+++**##%###***+==---=======+++=-=+*#%@@@@@@@@@@@", |
| | "===+*#%@@@@@@@@@@@@@%@@@@@@@@@@@@**##########*************###***++===----=====++++-==+*%%@@@@@@@@@@@", |
| | "---==*#%@@@@@@@@@@@@%%%%@@@@@@@@@%**##########***************++*+=============+++=-=+*#%@@@@@@@@@@@@", |
| | ":---=+*%@@@@@@@@@@@@@###%@@@@@@@@@#+#%#########**************+=++=============+++-==+*#%@@@@@@@@@@@@", |
| | "---=++*%@@@@@@@@@@@@@@#*##%@@@@@@@++*#%%########*#*********###***###****++===+++====+*#%@@@@@@@@@@@@", |
| | "-==+**#%@@@@@@@@@@@@@@@%####%@@@@*==+*%%%##############%%%%###***+++****++++=+++++++**#%@@@@@@@@@@@@", |
| | "+***#%%@@@@@@@@@@@@@@@@@@%%%@@@%@#%#-*#%%%%##%%###########***+++=+++++==++++++******##%@@@@@@@@@@@@@", |
| | "%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@#=+%@#:=*#%%%%%%%%%###########*********++++++++#%####%%%@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%##**%@%=-=++*#%%%%%%%############%######******+#@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@%*====*#%@%+=====+*#%%%%%%%%%%%%%%%#####****#******@@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@%+-::::-+#%%%%*+======+*#%%%%%%######****++++++****+*@@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@*-:...::-*@@%#*+=:::::..::--=*%########*****++++++*+=:*@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@%=-::::::-+%@#+--::::....::::-:-#%%##########*******++=.-@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@#+=-=-:-=*%@*------:::-:::::::::-*#%%%###########**+++-.:%@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@*++=----*@%+----:::------:::.::...:-*%##########***++=...+%@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@%+==--:--*%+---::::--------:::::::...:=***++++++++++=-....:#%%%@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@#+=------*+----:::--------------:::.:==++=----:::::--=-:...=%#%%%%@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@%*+==----+==---::-----::::---:::::::=*#*%%+--::::...=#%##*=.-#%###%%%@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@%+==----=---:--:------:::------:--:=%@##%%#--:::::..-%%%%@@+-%%##%%%%%%%@@@@@@@@@@", |
| | "@@@@@@@@@%@@@@@@@@*==------::::::---::::::-=-:------=#@@%%%@%=---::::.=@@%%%%#-=#%%#%%%%%%%@@@@@@@@@", |
| | "@@@@@@@@@@%%@@@@@@+---:::::::::::::::::::--::------=#@@@@%%%%-----:::.+@@@@%%%=.:*%%%%%%%%%%%@@@@@@@", |
| | "@@@@@@%@@@@%@@@@@#--:::---:::::::::::::::::::------+@@@@@%%%%-::::::::#@@@@@%%#..:+%%%%%%%%%%%@@@@@@", |
| | "@@@%%%@@@@@@@@@@@+=--==+++--::----::::::::::::::---=%@@@@%%@%:::::::::#@@@@@@%%-...+%%%%%%%%%%%%@@@@", |
| | "@@%%%@@@@@@@@@@@@#******##*+===++++=---=====-------:#@@@@%%@%:::::::.:*%@@@@@%%#....-#%%%#%%%%%%@@@@", |
| | "%%%%%@@@@@@@@@@@@%##****####********++++**++=-------*@@@@@@@%+:.::::.:=*%@@@@@%%:....:*%%%###%%%%@@@", |
| | "%%%%%%%@@@@@@@@@@@%##***###*####***********++===----*@@@@@%%@%*-..::.--=*%@@@@%%+.....:*%%%####%%%@@", |
| | "%%%%%%%%@@@@@@@@@@@%#######**####*********+++=+=----+@@@@@%%@@%%+:..:---=*@@@%%%%-......+%%%####%%@@", |
| | "%%%%%%%%%%@@@@@@@@@@%%#####***###**********++++=-=--=%@@@@%@@@@%%#-..:---=%@@@%%%*.......=%%%%###%%@", |
| | "%%%%%%%%@@%%@@@@@@@@@@%%%####*###***********++===----%@@@@@@@@@@%%%=...:-=#@@@%%%%+.......=%%%%###%%", |
| | "@@@@%%%%%@@@@@@@@@@@@@%%#########*********++++==-----#@@@@@@@@@@@%%%*:...-*@@@@%%%%=.......=%%%%###%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@%%%######***#******+++==-----=*@@@@@%@@@@@@%%%#-...-%@@@%%%%#-.......-%%%%##%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@%%######**##******++===-==-==*@@@%%%%%@@@@@%%%%+...+@@@%%%%%#-.......-%%%%%#", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@%%#####**####****++==--=====*%%%%%%%%%%@@@@@%%%#:.:#@%%%%%%%*:.......-%%%%%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@%%%####**#####***+++========#%%%%%%%%%%%@@@@@@%%%=.-%%%%%%%%%*-.......-%%%%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@%#*#####**###***+++++=======+%@%%%%%%%%%%%@@@@@@@%%*:-%%%%%%%%%#-.......-%@%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@#*=--===+++****+++++======+%@@@%%%%%%%%%%%@@@@@@%@#==##%%%%%%%#=.......-#@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=--:::-------========*%%@@@@%%%%%%%%%%%@@@@@%%%*+##%%%%%%%#*:......=#", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=-----------::----=++*#%%@@@%%%%%%%%@@@@@@@@@%*#%%%%%%%###-.....:=", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+----==----------:::---=+*%@%%%%@@%@@@@@@@@@%#%%%%%%%%%%#=::...:", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+===========+++====--=+%@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%+-::::" |
| | ], |
| | |
| | [ |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************", |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************", |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%###**********+*+++++++", |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%###******+++++++++++++", |
| | "********************####%%%@@@@@@@@@@@@@@@@@@@@@@%%%%%%%#%#######%%%%%%%%%%%%%###******+++++++++++++", |
| | "********************####%%%@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%#*#%####%%%%%%%%%###**************++*++", |
| | "********************####%%%%@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%##%@%%###%%%%%%####******************", |
| | "********************####%%%%@@@@@@@@@@@%%%%%%@@@%%%%%%%%%%%%%%@@#*%@%%%%%#%%%%#####*****************", |
| | "*******************#####%%%%%@@@@@@@@@%@@%@@@@@@@%%%%%%%%%@%%%%%@%#%%%%%%%#########*****************", |
| | "*******************#####%%%%%%%%%%%@@@@@@@%%%%%%%%%%%%%%%%%@%%%%@%%%#####%%##*#######***************", |
| | "*****************#######%%%%%%%%%@@@@@@@@@@@@%%%@%%%%%@%%%%%%%%%%%%%#+==++####*�%#################", |
| | "***********############%%%%%%%%@@@@@@@@@@@%%%%%%%@@@@%%%%%%%%%%%%%##*+-::--+*###%%%%################", |
| | "***###################%%%%%%%@@@@@@@@@@%#######%%%%%%%%%#####%%###**+=-:::::-=***#%@@###############", |
| | "#####################%%%%%%%@@@%%%%@@%#********#########***++*****++=-::::::::-+**#%@@##############", |
| | "#################%%%%%%%%%%@@@@@%%%%#++===+++++*****++++==========---:::::::::::+**#%@%#############", |
| | "#####%%%%%%%%%%%%%%%%%%%%%@@@@@%%%%*+===========++++===--------::::::::::::::::::+**#@@%############", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@%%##+=================-----:-:::::::::::::::::::::-++*%@@############", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+=======----=-===--------::::::::::::::::::::::=+*#%@%###########", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+++========----------------:::::::::::::::::----+*#%@%###########", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@%#*+++============-----------------::::::::--------+*#%@@%##########", |
| | "######%%%%%%%%%%%%%%%%%%@@@@@@@@%#*+++=============------------------::::---------=+*%@@@%#######%%%", |
| | "######%%%@@@%#***###%%%%@@@@@@@@%%#***+++++++=======------=----------------------==+#%@@@@%#######%%", |
| | "#####%@%@@@@@@%%#*###%%%@@@@@@@@%%##****++++++================-----------------=====+#@@@@@%#########", |
| | "######@%@@@@@@@@@%%%%%%#%@@@@@@@@%%#*******+++==========-=-===----------------=====+%@@@@%%#########", |
| | "######%%@@@@@@@@@%@@@%%##@@@@@@@@%%#*******+++===----------------------:------=====*#%@@@%%%########", |
| | "******#%@@@@@@@@@%@@@%%#*%@@@@@@@%%#*********+++===----:----------------------=====*#%@%##%%%#######", |
| | "******#%@@@@@@@@@%@@@%%#**%@@@@@@%##********+++++==-----::------------------------=*%%%**#%%%%%####*", |
| | "*******%@@@@@@@@@%@@@%%#***%@@@@@%##**+++++++++++++===------------------------::::-+%@#--+#%%%%###**", |
| | "++*****%@@@@@@@@@@@@@@@#*++*%@@@@%##**+====+++++++++======----====================-=%@#*++#%%%%##***", |
| | "++++++*%@@@@@@@@@@@@@@@#*****#%@@%#***+****###########****+====++=+**#####%%%%%%%%##%##+++#%%%%###**", |
| | "++++++*%@@@@@@@@@@@@@@@######*#@@%###*#%@@@@@@@@@@@@@@@@@@#*******%@@@@@@@@@@@@@@@@@@%#+=+%%@%%##***", |
| | "++++++*%@@@@@@@@@@@@@@@%*###*##@@%###%@@@@@@@@@@@@@@@@@@@@%%#***%%@%@@@@@@@@@@@@@@@%@%+==*%%%%%##***", |
| | "++*****%@@@@@@@@@@@@@@@%#*#***#@@%#*##%@@@@@@@@@@@@@@@@@@@@#+==+#%@@@@@@@@@@@@@@@%%%@#===*%%%%####**", |
| | "+******%@@@@@@@@@@@@@@@@#******#@%#***#@@@@@@@@@%%@@@@@@@@%#+---=#%@@@@@@@@@@%%%%%%%%*=-=#%%%######*", |
| | "*******%@@@@@@@@@@@@@@@@%#****##%%#****%@@@@@@@@@@@@@@@@@%#*=----+#%@@@@@@@@@@%%%%%%#---+%%%%%#####*", |
| | "++++++*%@@@@@@@@@@@@@@@@@%**++*#%%#*****%@@@@@@@@@@@@@@%%#**=----=+##%%%%%%%%%##**++*--=#%%%%%%%%###", |
| | "+++++++%@@@@@@@@@@@@@@@@@@%**++*%@%*******###%%%#########**+=----==*********++=====++==*%%%%%%%%%%##", |
| | "++++=++%@@@@@@@@@@@@@@@@@@@#****#@%###****************####*+=-:::-=+++++++++++++++++=+*#%%%%%@@%%%%#", |
| | "*++++++%@@@@@@@@@@@@@@@@@@@@%**###%######**************###++=--::--+++++++++++++++++++*#%@@@@@@@@%%#", |
| | "**+++++%%@@@@@@@@@@@@@@@@@@@@@%#*#########*************#**++=--::--=++=======++++++===*#%@@@@@@@@@%%", |
| | "#***+++%@@@@@@@@@@@@@@@@%@@@@@@#############****************+==--====+=========++++-=+*#%@@@@@@@@@@%", |
| | "##*****%@@@@@@@@@@@@@@@@%@@@@@@%**###########***********###%#*****#*===========++++-=+*#%@@@@@@@@@@@", |
| | "****##%%@@@@@@@@@@@@@@@@@@@@@@@@#*##########********+++**##%###***+==---=======+++=-=+*#%@@@@@@@@@@@", |
| | "===+*#%@@@@@@@@@@@@@%@@@@@@@@@@@@**##########*************###***++===----=====++++-==+*%%@@@@@@@@@@@", |
| | "---==*#%@@@@@@@@@@@@%%%%@@@@@@@@@%**##########***************++*+=============+++=-=+*#%@@@@@@@@@@@@", |
| | ":---=+*%@@@@@@@@@@@@@###%@@@@@@@@@#+#%#########**************+=++=============+++-==+*#%@@@@@@@@@@@@", |
| | "---=++*%@@@@@@@@@@@@@@#*##%@@@@@@@++*#%%########*#*********###***###****++===+++====+*�%@@@@@@@@@@@@", |
| | "-==+**#%@@@@@@@@@@@@@@@%####%@@@@*==+*%%%##############%%%%###***+++****++++=+++++++**#%@@@@@@@@@@@@", |
| | "+***#%%@@@@@@@@@@@@@@@@@@%%%@@@%@#%#-*#%%%%##%%###########***+++=+++++==++++++******##%@@@@@@@@@@@@@", |
| | "%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@#=+%@#:=*#%%%%%%%%%###########*********++++++++#%####%%%@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%##**%@%=-=++*#%%%%%%%############%######******+#@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@%*====*#%@%+=====+*#%%%%%%%%%%%%%%%#####****#******@@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@%+-::::-+#%%%%*+======+*#%%%%%%######****++++++****+*@@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@*-:...::-*@@%#*+=:::::..::--=*%########*****++++++*+=:*@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@%=-::::::-+%@#+--::::....::::-:-#%%##########*******++=.-@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@#+=-=-:-=*%@*------:::-:::::::::-*#%%%###########**+++-.:%@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@*++=----*@%+----:::------:::.::...:-*%##########***++=...+%@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@%+==--:--*%+---::::--------:::::::...:=***++++++++++=-....:#%%%@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@#+=------*+----:::--------------:::.:==++=----:::::--=-:...=%#%%%%@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@%*+==----+==---::-----::::---:::::::=*#*%%+--::::...=#%##*=.-#%###%%%@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@%+==----=---:--:------:::------:--:=%@##%%#--:::::..-%%%%@@+-%%##%%%%%%%@@@@@@@@@@", |
| | "@@@@@@@@@%@@@@@@@@*==------::::::---::::::-=-:------=#@@%%%@%=---::::.=@@%%%%#-=#%%#%%%%%%%@@@@@@@@@", |
| | "@@@@@@@@@@%%@@@@@@+---:::::::::::::::::::--::------=#@@@@%%%%-----:::.+@@@@%%%=.:*%%%%%%%%%%%@@@@@@@", |
| | "@@@@@@%@@@@%@@@@@#--:::---:::::::::::::::::::------+@@@@@%%%%-::::::::#@@@@@%%#..:+%%%%%%%%%%%@@@@@@", |
| | "@@@%%%@@@@@@@@@@@+=--==+++--::----::::::::::::::---=%@@@@%%@%:::::::::#@@@@@@%%-...+%%%%%%%%%%%%@@@@", |
| | "@@%%%@@@@@@@@@@@@#******##*+===++++=---=====-------:#@@@@%%@%:::::::.:*%@@@@@%%#....-#%%%#%%%%%%@@@@", |
| | "%%%%%@@@@@@@@@@@@%##****####********++++**++=-------*@@@@@@@%+:.::::.:=*%@@@@@%%:....:*%%%###%%%%@@@", |
| | "%%%%%%%@@@@@@@@@@@%##***###*####***********++===----*@@@@@%%@%*-..::.--=*%@@@@%%+.....:*%%%####%%%@@", |
| | "%%%%%%%%@@@@@@@@@@@%#######**####*********+++=+=----+@@@@@%%@@%%+:..:---=*@@@%%%%-......+%%%####%%@@", |
| | "%%%%%%%%%%@@@@@@@@@@%%#####***###**********++++=-=--=%@@@@%@@@@%%#-..:---=%@@@%%%*.......=%%%%###%%@", |
| | "%%%%%%%%@@%%@@@@@@@@@@%%%####*###***********++===----%@@@@@@@@@@%%%=...:-=#@@@%%%%+.......=%%%%###%%", |
| | "@@@@%%%%%@@@@@@@@@@@@@%%#########*********++++==-----#@@@@@@@@@@@%%%*:...-*@@@@%%%%=.......=%%%%###%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@%%%######***#******+++==-----=*@@@@@%@@@@@@%%%#-...-%@@@%%%%#-.......-%%%%##%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@%%######**##******++===-==-==*@@@%%%%%@@@@@%%%%+...+@@@%%%%%#-.......-%%%%%#", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@%%#####**####****++==--=====*%%%%%%%%%%@@@@@%%%#:.:#@%%%%%%%*:.......-%%%%%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@%%%####**#####***+++========#%%%%%%%%%%%@@@@@@%%%=.-%%%%%%%%%*-.......-%%%%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@%#*#####**###***+++++=======+%@%%%%%%%%%%%@@@@@@@%%*:-%%%%%%%%%#-.......-%@%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@#*=--===+++****+++++======+%@@@%%%%%%%%%%%@@@@@@%@#==##%%%%%%%#=.......-#@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=--:::-------========*%%@@@@%%%%%%%%%%%@@@@@%%%*+##%%%%%%%#*:......=#", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=-----------::----=++*#%%@@@%%%%%%%%@@@@@@@@@%*#%%%%%%%###-.....:=", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+----==----------:::---=+*%@%%%%@@%@@@@@@@@@%#%%%%%%%%%%#=::...:", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+===========+++====--=+%@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%+-::::" |
| | ], |
| | |
| | [ |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************", |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%###*******************", |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%%%%###**********+*+++++++", |
| | "********************####%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%%%%###******+++++++++++++", |
| | "********************####%%%@@@@@@@@@@@@@@@@@@@@@@%%%%%%%#%#######%%%%%%%%%%%%%###******+++++++++++++", |
| | "********************####%%%@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%#*#%####%%%%%%%%%###**************++*++", |
| | "********************####%%%%@@@@@@@@@@@@@@%%%%%%%%%%%%%%%%%%%%%##%@%%###%%%%%%####******************", |
| | "********************####%%%%@@@@@@@@@@@%%%%%%@@@%%%%%%%%%%%%%%@@#*%@%%%%%#%%%%#####*****************", |
| | "*******************#####%%%%%@@@@@@@@@%@@%@@@@@@@%%%%%%%%%@%%%%%@%#%%%%%%%#########*****************", |
| | "*******************#####%%%%%%%%%%%@@@@@@@%%%%%%%%%%%%%%%%%@%%%%@%%%#####%%##*#######***************", |
| | "*****************#######%%%%%%%%%@@@@@@@@@@@@%%%@%%%%%@%%%%%%%%%%%%%#+==++####*##%%#################", |
| | "***********############%%%%%%%%@@@@@@@@@@@%%%%%%%@@@@%%%%%%%%%%%%%##*+-::--+*###%%%%################", |
| | "***###################%%%%%%%@@@@@@@@@@%#######%%%%%%%%%#####%%###**+=-:::::-=***#%@@###############", |
| | "#####################%%%%%%%@@@%%%%@@%#********#########***++*****++=-::::::::-+**#%@@##############", |
| | "#################%%%%%%%%%%@@@@@%%%%#++===+++++*****++++==========---:::::::::::+**#%@%#############", |
| | "#####%%%%%%%%%%%%%%%%%%%%%@@@@@%%%%*+===========++++===--------::::::::::::::::::+**#@@%############", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@%%##+=================-----:-:::::::::::::::::::::-++*%@@############", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+=======----=-===--------::::::::::::::::::::::=+*#%@%###########", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@%%#*+++========----------------:::::::::::::::::----+*#%@%###########", |
| | "%%%%%%%%%%%%%%%%%%%%%%%%@@@@@@@%#*+++============-----------------::::::::--------+*#%@@%##########", |
| | "######%%%%%%%%%%%%%%%%%%@@@@@@@@%#*+++=============------------------::::---------=+*%@@@%#######%%%", |
| | "######%%%@@@%#***###%%%%@@@@@@@@%%#***+++++++=======------=----------------------==+#%@@@@%#######%%", |
| | "#####%@%@@@@@@%%#*###%%%@@@@@@@@%%##****++++++================-----------------=====+#@@@@@%#########", |
| | "######@%@@@@@@@@@%%%%%%#%@@@@@@@@%%#*******+++==========-=-===----------------=====+%@@@@%%#########", |
| | "######%%@@@@@@@@@%@@@%%##@@@@@@@@%%#*******+++===----------------------:------=====*#%@@@%%%########", |
| | "******#%@@@@@@@@@%@@@%%#*%@@@@@@@%%#*********+++===----:----------------------=====*#%@%##%%%#######", |
| | "******#%@@@@@@@@@%@@@%%#**%@@@@@@%##********+++++==-----::------------------------=*%%%**#%%%%%####*", |
| | "*******%@@@@@@@@@%@@@%%#***%@@@@@%##**+++++++++++++===------------------------::::-+%@#--+#%%%%###**", |
| | "++*****%@@@@@@@@@@@@@@@#*++*%@@@@%##**+====+++++++++======----====================-=%@#*++#%%%%##***", |
| | "++++++*%@@@@@@@@@@@@@@@#*****#%@@%#***+****###########****+====++=+**#####%%%%%%%%##%##+++#%%%%###**", |
| | "++++++*%@@@@@@@@@@@@@@@######*#@@%###*#%@@@@@@@@@@@@@@@@@@#*******%@@@@@@@@@@@@@@@@@@%#+=+%%@%%##***", |
| | "++++++*%@@@@@@@@@@@@@@@%*###*##@@%###%@@@@@@@@@@@@@@@@@@@@%%#***%%@%@@@@@@@@@@@@@@@%@%+==*%%%%%##***", |
| | "++*****%@@@@@@@@@@@@@@@%#*#***#@@%#*##%@@@@@@@@@@@@@@@@@@@@#+==+#%@@@@@@@@@@@@@@@%%%@#===*%%%%####**", |
| | "+******%@@@@@@@@@@@@@@@@#******#@%#***#@@@@@@@@@%%@@@@@@@@%#+---=#%@@@@@@@@@@%%%%%%%%*=-=#%%%######*", |
| | "*******%@@@@@@@@@@@@@@@@%#****##%%#****%@@@@@@@@@@@@@@@@@%#*=----+#%@@@@@@@@@@%%%%%%#---+%%%%%#####*", |
| | "++++++*%@@@@@@@@@@@@@@@@@%**++*#%%#*****%@@@@@@@@@@@@@@%%#**=----=+##%%%%%%%%%##**++*--=#%%%%%%%%###", |
| | "+++++++%@@@@@@@@@@@@@@@@@@%**++*%@%*******###%%%#########**+=----==*********++=====++==*%%%%%%%%%%##", |
| | "++++=++%@@@@@@@@@@@@@@@@@@@#****#@%###****************####*+=-:::-=+++++++++++++++++=+*#%%%%%@@%%%%#", |
| | "*++++++%@@@@@@@@@@@@@@@@@@@@%**###%######**************###++=--::--+++++++++++++++++++*#%@@@@@@@@%%#", |
| | "**+++++%%@@@@@@@@@@@@@@@@@@@@@%#*#########*************#**++=--::--=++=======++++++===*#%@@@@@@@@@%%", |
| | "#***+++%@@@@@@@@@@@@@@@@%@@@@@@#############****************+==--====+=========++++-=+*#%@@@@@@@@@@%", |
| | "##*****%@@@@@@@@@@@@@@@@%@@@@@@%**###########***********###%#*****#*===========++++-=+*#%@@@@@@@@@@@", |
| | "****##%%@@@@@@@@@@@@@@@@@@@@@@@@#*##########********+++**##%###***+==---=======+++=-=+*#%@@@@@@@@@@@", |
| | "===+*#%@@@@@@@@@@@@@%@@@@@@@@@@@@**##########*************###***++===----=====++++-==+*%%@@@@@@@@@@@", |
| | "---==*#%@@@@@@@@@@@@%%%%@@@@@@@@@%**##########***************++*+=============+++=-=+*#%@@@@@@@@@@@@", |
| | ":---=+*%@@@@@@@@@@@@@###%@@@@@@@@@#+#%#########**************+=++=============+++-==+*#%@@@@@@@@@@@@", |
| | "---=++*%@@@@@@@@@@@@@@#*##%@@@@@@@++*#%%########*#*********###***###****++===+++====+*#%@@@@@@@@@@@@", |
| | "-==+**#%@@@@@@@@@@@@@@@%####%@@@@*==+*%%%##############%%%%###***+++****++++=+++++++**#%@@@@@@@@@@@@", |
| | "+***#%%@@@@@@@@@@@@@@@@@@%%%@@@%@#%#-*#%%%%##%%###########***+++=+++++==++++++******##%@@@@@@@@@@@@@", |
| | "%%%%@@@@@@@@@@@@@@@@@@@@@@@@@@#=+%@#:=*#%%%%%%%%%###########*********++++++++#%####%%%@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%##**%@%=-=++*#%%%%%%%############%######******+#@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@%*====*#%@%+=====+*#%%%%%%%%%%%%%%%#####****#******@@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@%+-::::-+#%%%%*+======+*#%%%%%%######****++++++****+*@@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@@@*-:...::-*@@%#*+=:::::..::--=*%########*****++++++*+=:*@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@%=-::::::-+%@#+--::::....::::-:-#%%##########*******++=.-@@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@#+=-=-:-=*%@*------:::-:::::::::-*#%%%###########**+++-.:%@@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@@*++=----*@%+----:::------:::.::...:-*%##########***++=...+%@@@@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@%+==--:--*%+---::::--------:::::::...:=***++++++++++=-....:#%%%@@@@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@@#+=------*+----:::--------------:::.:==++=----:::::--=-:...=%#%%%%@@@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@%*+==----+==---::-----::::---:::::::=*#*%%+--::::...=#%##*=.-#%###%%%@@@@@@@@@@@@@", |
| | "@@@@@@@@@@@@@@@@@@%+==----=---:--:------:::------:--:=%@##%%#--:::::..-%%%%@@+-%%##%%%%%%%@@@@@@@@@@", |
| | "@@@@@@@@@%@@@@@@@@*==------::::::---::::::-=-:------=#@@%%%@%=---::::.=@@%%%%#-=#%%#%%%%%%%@@@@@@@@@", |
| | "@@@@@@@@@@%%@@@@@@+---:::::::::::::::::::--::------=#@@@@%%%%-----:::.+@@@@%%%=.:*%%%%%%%%%%%@@@@@@@", |
| | "@@@@@@%@@@@%@@@@@#--:::---:::::::::::::::::::------+@@@@@%%%%-::::::::#@@@@@%%#..:+%%%%%%%%%%%@@@@@@", |
| | "@@@%%%@@@@@@@@@@@+=--==+++--::----::::::::::::::---=%@@@@%%@%:::::::::#@@@@@@%%-...+%%%%%%%%%%%%@@@@", |
| | "@@%%%@@@@@@@@@@@@#******##*+===++++=---=====-------:#@@@@%%@%:::::::.:*%@@@@@%%#....-#%%%#%%%%%%@@@@", |
| | "%%%%%@@@@@@@@@@@@%##****####********++++**++=-------*@@@@@@@%+:.::::.:=*%@@@@@%%:....:*%%%###%%%%@@@", |
| | "%%%%%%%@@@@@@@@@@@%##***###*####***********++===----*@@@@@%%@%*-..::.--=*%@@@@%%+.....:*%%%####%%%@@", |
| | "%%%%%%%%@@@@@@@@@@@%#######**####*********+++=+=----+@@@@@%%@@%%+:..:---=*@@@%%%%-......+%%%####%%@@", |
| | "%%%%%%%%%%@@@@@@@@@@%%#####***###**********++++=-=--=%@@@@%@@@@%%#-..:---=%@@@%%%*.......=%%%%###%%@", |
| | "%%%%%%%%@@%%@@@@@@@@@@%%%####*###***********++===----%@@@@@@@@@@%%%=...:-=#@@@%%%%+.......=%%%%###%%", |
| | "@@@@%%%%%@@@@@@@@@@@@@%%#########*********++++==-----#@@@@@@@@@@@%%%*:...-*@@@@%%%%=.......=%%%%###%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@%%%######***#******+++==-----=*@@@@@%@@@@@@%%%#-...-%@@@%%%%#-.......-%%%%##%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@%%######**##******++===-==-==*@@@%%%%%@@@@@%%%%+...+@@@%%%%%#-.......-%%%%%#", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@%%#####**####****++==--=====*%%%%%%%%%%@@@@@%%%#:.:#@%%%%%%%*:.......-%%%%%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@%%%####**#####***+++========#%%%%%%%%%%%@@@@@@%%%=.-%%%%%%%%%*-.......-%%%%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@%#*#####**###***+++++=======+%@%%%%%%%%%%%@@@@@@@%%*:-%%%%%%%%%#-.......-%@%", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@#*=--===+++****+++++======+%@@@%%%%%%%%%%%@@@@@@%@#==##%%%%%%%#=.......-#@", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=--:::-------========*%%@@@@%%%%%%%%%%%@@@@@%%%*+##%%%%%%%#*:......=#", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%#+=-----------::----=++*#%%@@@%%%%%%%%@@@@@@@@@%*#%%%%%%%###-.....:=", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+----==----------:::---=+*%@%%%%@@%@@@@@@@@@%#%%%%%%%%%%#=::...:", |
| | "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*+===========+++====--=+%@@@@@@@@@@@@@@@@@@@%%%%%%%%%%%%+-::::" |
| | ] |
| | ]; |
| | |
| | |
| | document.addEventListener('DOMContentLoaded', function() { |
| | const title = document.getElementById('agents-title'); |
| | const text = "THE AGENTS"; |
| | let i = 0; |
| | |
| | function typeWriter() { |
| | if (i < text.length) { |
| | title.innerHTML += text.charAt(i); |
| | i++; |
| | setTimeout(typeWriter, 150); |
| | } else { |
| | title.classList.remove('typing-effect'); |
| | } |
| | } |
| | |
| | title.classList.add('typing-effect'); |
| | setTimeout(typeWriter, 500); |
| | |
| | |
| | initAgentAscii('agent1', 0); |
| | initAgentAscii('agent2', 1); |
| | initAgentAscii('agent3', 2); |
| | initAgentAscii('agent4', 3); |
| | |
| | |
| | setInterval(function() { |
| | const faces = document.querySelectorAll('.ascii-face'); |
| | faces.forEach(face => { |
| | face.style.filter = `brightness(${0.9 + Math.random() * 0.2})`; |
| | }); |
| | }, 2000); |
| | }); |
| | |
| | function initAgentAscii(elementId, faceIndex) { |
| | const element = document.getElementById(elementId); |
| | const face = asciiFaces[faceIndex]; |
| | |
| | |
| | let currentLine = 0; |
| | const printInterval = setInterval(function() { |
| | if (currentLine < face.length) { |
| | element.innerHTML += face[currentLine] + '<br>'; |
| | currentLine++; |
| | } else { |
| | clearInterval(printInterval); |
| | } |
| | }, 100); |
| | } |
| | </script> |
| | <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=timoon811/agentstmt" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| | </html> |