refactor(alpha): Use IIFE to inc. optimally
Increase performance by not sending unecessary objects like ascii_arts and fortunes in the config.
This commit is contained in:
		
							parent
							
								
									58b182d928
								
							
						
					
					
						commit
						589fb15094
					
				| 
						 | 
				
			
			@ -1,326 +1,327 @@
 | 
			
		|||
return {
 | 
			
		||||
  'goolord/alpha-nvim',
 | 
			
		||||
  dependencies = { 'nvim-tree/nvim-web-devicons' }, -- removing fortune from dependencies fixed the highlighting(only for predefined highlights)
 | 
			
		||||
  config = function()
 | 
			
		||||
    local alpha = require("alpha")
 | 
			
		||||
    local dashboard = require("alpha.themes.dashboard")
 | 
			
		||||
return (function()
 | 
			
		||||
  math.randomseed(os.time())
 | 
			
		||||
  local _ascii_arts = {
 | 
			
		||||
    kraken = {
 | 
			
		||||
      "                                   ",
 | 
			
		||||
      "                                   ",
 | 
			
		||||
      "                                   ",
 | 
			
		||||
      "   ⣴⣶⣤⡤⠦⣤⣀⣤⠆     ⣈⣭⣿⣶⣿⣦⣼⣆          ",
 | 
			
		||||
      "    ⠉⠻⢿⣿⠿⣿⣿⣶⣦⠤⠄⡠⢾⣿⣿⡿⠋⠉⠉⠻⣿⣿⡛⣦       ",
 | 
			
		||||
      "          ⠈⢿⣿⣟⠦ ⣾⣿⣿⣷    ⠻⠿⢿⣿⣧⣄     ",
 | 
			
		||||
      "           ⣸⣿⣿⢧ ⢻⠻⣿⣿⣷⣄⣀⠄⠢⣀⡀⠈⠙⠿⠄    ",
 | 
			
		||||
      "          ⢠⣿⣿⣿⠈    ⣻⣿⣿⣿⣿⣿⣿⣿⣛⣳⣤⣀⣀   ",
 | 
			
		||||
      "   ⢠⣧⣶⣥⡤⢄ ⣸⣿⣿⠘  ⢀⣴⣿⣿⡿⠛⣿⣿⣧⠈⢿⠿⠟⠛⠻⠿⠄  ",
 | 
			
		||||
      "  ⣰⣿⣿⠛⠻⣿⣿⡦⢹⣿⣷   ⢊⣿⣿⡏  ⢸⣿⣿⡇ ⢀⣠⣄⣾⠄   ",
 | 
			
		||||
      " ⣠⣿⠿⠛ ⢀⣿⣿⣷⠘⢿⣿⣦⡀ ⢸⢿⣿⣿⣄ ⣸⣿⣿⡇⣪⣿⡿⠿⣿⣷⡄  ",
 | 
			
		||||
      " ⠙⠃   ⣼⣿⡟  ⠈⠻⣿⣿⣦⣌⡇⠻⣿⣿⣷⣿⣿⣿ ⣿⣿⡇ ⠛⠻⢷⣄ ",
 | 
			
		||||
      "      ⢻⣿⣿⣄   ⠈⠻⣿⣿⣿⣷⣿⣿⣿⣿⣿⡟ ⠫⢿⣿⡆     ",
 | 
			
		||||
      "       ⠻⣿⣿⣿⣿⣶⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿⡟⢀⣀⣤⣾⡿⠃     ",
 | 
			
		||||
    },
 | 
			
		||||
    skull = {
 | 
			
		||||
      '                     .:::!~!!!!!:.',
 | 
			
		||||
      '                  .xUHWH!! !!?M88WHX:.',
 | 
			
		||||
      '                .X*#M@$!!  !X!M$$$$$$WWx:.',
 | 
			
		||||
      '               :!!!!!!?H! :!$!$$$$$$$$$$8X:',
 | 
			
		||||
      '              !!~  ~:~!! :~!$!#$$$$$$$$$$8X:',
 | 
			
		||||
      '             :!~::!H!<   ~.U$X!?R$$$$$$$$MM!',
 | 
			
		||||
      '             ~!~!!!!~~ .:XW$$$U!!?$$$$$$RMM!',
 | 
			
		||||
      '               !:~~~ .:!M"T#$$$$WX??#MRRMMM!',
 | 
			
		||||
      '               ~?WuxiW*`   `"#$$$$8!!!!??!!!',
 | 
			
		||||
      '             :X- M$$$$       `"T#$T~!8$WUXU~',
 | 
			
		||||
      '            :%`  ~#$$$m:        ~!~ ?$$$$$$',
 | 
			
		||||
      '          :!`.-   ~T$$$$8xx.  .xWW- ~""##*"',
 | 
			
		||||
      '.....   -~~:<` !    ~?T#$$@@W@*?$$      /`',
 | 
			
		||||
      'W$@@M!!! .!~~ !!     .:XUW$W!~ `"~:    :',
 | 
			
		||||
      '#"~~`.:x%`!!  !H:   !WM$$$$Ti.: .!WUn+!`',
 | 
			
		||||
      ':::~:!!`:X~ .: ?H.!u "$$$B$$$!W:U!T$$M~',
 | 
			
		||||
      '.~~   :X@!.-~   ?@WTWo("*$$$W$TH$! `',
 | 
			
		||||
      'Wi.~!X$?!-~   :: ?$$$B$Wu("**$RM!',
 | 
			
		||||
      '$R@i.~~ !    ::   ~$$$$$B$$en:``',
 | 
			
		||||
      '?MXT@Wx.~   ::     ~"##*$$$$M'
 | 
			
		||||
    },
 | 
			
		||||
    alien = {
 | 
			
		||||
      "            :h-                                  Nhy`               ",
 | 
			
		||||
      "           -mh.                           h.    `Ndho               ",
 | 
			
		||||
      "           hmh+                          oNm.   oNdhh               ",
 | 
			
		||||
      "          `Nmhd`                        /NNmd  /NNhhd               ",
 | 
			
		||||
      "          -NNhhy                      `hMNmmm`+NNdhhh               ",
 | 
			
		||||
      "          .NNmhhs              ```....`..-:/./mNdhhh+               ",
 | 
			
		||||
      "           mNNdhhh-     `.-::///+++////++//:--.`-/sd`               ",
 | 
			
		||||
      "           oNNNdhhdo..://++//++++++/+++//++///++/-.`                ",
 | 
			
		||||
      "      y.   `mNNNmhhhdy+/++++//+/////++//+++///++////-` `/oos:       ",
 | 
			
		||||
      " .    Nmy:  :NNNNmhhhhdy+/++/+++///:.....--:////+++///:.`:s+        ",
 | 
			
		||||
      " h-   dNmNmy oNNNNNdhhhhy:/+/+++/-         ---:/+++//++//.`         ",
 | 
			
		||||
      " hd+` -NNNy`./dNNNNNhhhh+-://///    -+oo:`  ::-:+////++///:`        ",
 | 
			
		||||
      " /Nmhs+oss-:++/dNNNmhho:--::///    /mmmmmo  ../-///++///////.       ",
 | 
			
		||||
      "  oNNdhhhhhhhs//osso/:---:::///    /yyyyso  ..o+-//////////:/.      ",
 | 
			
		||||
      "   /mNNNmdhhhh/://+///::://////     -:::- ..+sy+:////////::/:/.     ",
 | 
			
		||||
      "     /hNNNdhhs--:/+++////++/////.      ..-/yhhs-/////////::/::/`    ",
 | 
			
		||||
      "       .ooo+/-::::/+///////++++//-/ossyyhhhhs/:///////:::/::::/:    ",
 | 
			
		||||
      "       -///:::::::////++///+++/////:/+ooo+/::///////.::://::---+`   ",
 | 
			
		||||
      "       /////+//++++/////+////-..//////////::-:::--`.:///:---:::/:   ",
 | 
			
		||||
      "       //+++//++++++////+++///::--                 .::::-------::   ",
 | 
			
		||||
      "       :/++++///////////++++//////.                -:/:----::../-   ",
 | 
			
		||||
      "       -/++++//++///+//////////////               .::::---:::-.+`   ",
 | 
			
		||||
      "       `////////////////////////////:.            --::-----...-/    ",
 | 
			
		||||
      "        -///://////////////////////::::-..      :-:-:-..-::.`.+`    ",
 | 
			
		||||
      "         :/://///:///::://::://::::::/:::::::-:---::-.-....``/- -   ",
 | 
			
		||||
      "           ::::://::://::::::::::::::----------..-:....`.../- -+oo/ ",
 | 
			
		||||
      "            -/:::-:::::---://:-::-::::----::---.-.......`-/.      ``",
 | 
			
		||||
      "           s-`::--:::------:////----:---.-:::...-.....`./:          ",
 | 
			
		||||
      "          yMNy.`::-.--::..-dmmhhhs-..-.-.......`.....-/:`           ",
 | 
			
		||||
      "         oMNNNh. `-::--...:NNNdhhh/.--.`..``.......:/-              ",
 | 
			
		||||
      "        :dy+:`      .-::-..NNNhhd+``..`...````.-::-`                ",
 | 
			
		||||
      "                        .-:mNdhh:.......--::::-`                    ",
 | 
			
		||||
      "                           yNh/..------..`                          ",
 | 
			
		||||
      "                                                                    ",
 | 
			
		||||
    },
 | 
			
		||||
    logo = {
 | 
			
		||||
      "      ░░                                                  ░░      ",
 | 
			
		||||
      "      ████                                              ████      ",
 | 
			
		||||
      "      ██▓▓██                                          ██  ██      ",
 | 
			
		||||
      "      ██▓▓▓▓██                                      ██    ██      ",
 | 
			
		||||
      "  ██████▓▓▓▓▓▓██████████████████████████████████████      ██████  ",
 | 
			
		||||
      "  ██░░░░░░▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░      ░░░░░░██  ",
 | 
			
		||||
      "  ██▓▓▒▒▒▒▒▒▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒░░▒▒▒▒▒▒▒▒▒▒▒▒▒▒      ▒▒▒▒▒▒  ██  ",
 | 
			
		||||
      "  ██▓▓▒▒▒▒▒▒▒▒▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▒▒░░▒▒▒▒▒▒▒▒▒▒▒▒      ░░▒▒▒▒    ██  ",
 | 
			
		||||
      "  ██░░▓▓▓▓▒▒▒▒▒▒▓▓▓▓▒▒▒▒▒▒▒▒▒▒▒▒░░▒▒▒▒▒▒▒▒▒▒▒▒    ▒▒▒▒▒▒    ░░██  ",
 | 
			
		||||
      "  ██░░▓▓▓▓▓▓▓▓▒▒▒▒▓▓▒▒▒▒▒▒▒▒▒▒▒▒░░▒▒▒▒▒▒▒▒▒▒▒▒  ▒▒▒▒        ░░██  ",
 | 
			
		||||
      "  ██░░▒▒▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒░░▒▒▒▒▒▒▒▒  ▒▒▒▒▒▒        ▒▒░░██  ",
 | 
			
		||||
      "  ██▒▒▒▒▒▒▓▓▓▓▓▓▒▒▒▒▒▒▓▓▓▓▒▒▒▒▒▒░░▒▒▒▒▒▒    ▒▒▒▒        ▒▒▒▒  ██  ",
 | 
			
		||||
      "  ██▓▓▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▒▒▓▓▓▓▒▒▒▒░░▒▒▒▒    ▒▒▒▒▒▒    ▒▒▒▒      ██  ",
 | 
			
		||||
      "  ██░░▓▓▓▓▒▒▒▒▒▒▓▓▒▒▒▒▒▒▒▒▓▓▒▒▒▒░░▒▒    ░░▒▒  ▒▒  ░░▒▒      ░░██  ",
 | 
			
		||||
      "  ██▒▒▒▒▓▓▓▓▒▒▒▒▒▒▒▒▓▓▒▒▒▒▒▒▓▓    ▒▒  ▒▒▒▒    ▒▒▒▒▒▒      ▒▒  ██  ",
 | 
			
		||||
      "  ██▓▓▓▓▒▒▓▓▓▓▓▓▒▒▒▒▓▓▓▓▓▓▒▒      ▒▒▒▒▒▒      ▒▒▒▒      ▒▒    ██  ",
 | 
			
		||||
      "  ██░░▓▓▓▓▒▒▒▒▓▓▒▒▓▓▒▒▒▒▓▓        ▒▒▒▒    ▒▒▒▒  ▒▒  ▒▒▒▒    ░░██  ",
 | 
			
		||||
      "  ██░░▓▓▓▓▓▓▓▓▒▒▒▒▓▓▒▒▒▒      ░░░░▒▒▒▒  ░░▒▒    ▒▒▒▒        ░░██  ",
 | 
			
		||||
      "  ██░░▒▒▓▓▓▓▓▓▓▓▒▒▒▒▓▓▓▓    ▒▒▒▒░░  ▒▒▒▒▒▒    ▒▒▒▒        ▒▒░░██  ",
 | 
			
		||||
      "  ██░░░░░░▓▓▓▓▓▓░░░░░░▓▓  ░░░░      ░░      ░░░░░░      ░░░░░░██  ",
 | 
			
		||||
      "  ██░░▒▒▒▒▒▒▓▓▓▓░░▒▒▒▒▒▒▒▒▒▒      ░░▒▒    ░░    ▒▒    ░░▒▒▒▒░░██  ",
 | 
			
		||||
      "  ██░░▓▓▓▓▒▒▒▒▓▓▒▒▓▓▓▓▓▓▒▒    ▒▒░░  ▒▒▒▒▒▒      ▒▒  ▒▒▒▒    ░░██  ",
 | 
			
		||||
      "  ██░░▒▒▓▓▓▓▓▓▒▒▒▒▒▒▓▓▓▓    ▒▒      ▒▒▒▒      ▒▒▒▒▒▒      ▒▒░░██  ",
 | 
			
		||||
      "  ██░░▒▒▓▓▓▓▓▓▓▓▒▒▓▓▒▒▓▓  ▒▒      ▒▒▒▒      ▒▒  ▒▒        ▒▒░░██  ",
 | 
			
		||||
      "  ██░░▒▒▒▒▒▒▓▓▓▓▒▒▓▓▓▓▒▒▒▒    ▒▒░░  ▒▒    ▒▒    ▒▒    ▒▒▒▒▒▒░░██  ",
 | 
			
		||||
      "  ██░░▒▒▓▓▒▒▒▒▒▒▒▒▓▓▓▓▓▓▒▒  ▒▒      ▒▒▒▒▒▒      ▒▒▒▒▒▒▒▒  ▒▒░░██  ",
 | 
			
		||||
      "  ██░░▒▒▓▓▓▓▓▓▓▓▒▒▒▒▒▒▓▓  ▒▒      ▒▒▒▒      ▒▒▒▒▒▒        ▒▒░░██  ",
 | 
			
		||||
      "  ██░░▒▒▒▒▓▓▓▓▓▓▒▒▒▒▒▒▒▒░░    ▒▒░░▒▒▒▒    ░░▒▒  ▒▒      ▒▒▒▒░░██  ",
 | 
			
		||||
      "  ██░░▒▒▒▒▒▒▒▒▓▓▒▒▓▓▓▓▓▓▒▒  ▒▒      ▒▒▒▒▒▒      ▒▒  ▒▒▒▒▒▒▒▒░░██  ",
 | 
			
		||||
      "  ██░░▒▒▒▒▓▓▓▓▒▒▒▒▒▒▓▓▓▓  ▒▒      ▒▒▒▒        ▒▒▒▒▒▒    ▒▒▒▒░░██  ",
 | 
			
		||||
      "  ██░░▒▒▒▒▒▒▓▓▓▓▒▒▒▒▒▒▒▒░░  ▒▒▒▒░░▒▒▒▒    ░░▒▒▒▒      ░░▒▒▒▒░░██  ",
 | 
			
		||||
      "  ██░░▒▒▒▒▒▒▒▒▓▓▓▓▒▒▓▓▓▓  ▒▒▒▒      ▒▒▒▒▒▒    ▒▒    ▒▒▒▒▒▒▒▒░░██  ",
 | 
			
		||||
      "  ██░░▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓▓▒▒▒▒  ▒▒░░▒▒        ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒░░██  ",
 | 
			
		||||
      "  ██░░▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒  ▒▒▒▒    ▒▒    ░░▒▒▒▒      ▒▒▒▒▒▒▒▒░░██  ",
 | 
			
		||||
      "  ██░░░░▒▒▒▒▒▒▒▒▓▓▓▓▒▒▒▒▒▒      ░░▒▒▒▒      ▒▒    ▒▒▒▒▒▒▒▒░░░░██  ",
 | 
			
		||||
      "  ██████░░░░▒▒▒▒▒▒▓▓▒▒▒▒    ▒▒▒▒░░        ▒▒▒▒  ▒▒▒▒▒▒░░░░██████  ",
 | 
			
		||||
      "        ████░░░░▒▒▒▒▒▒    ░░          ▒▒░░▒▒▒▒▒▒▒▒░░░░████        ",
 | 
			
		||||
      "            ████░░░░▒▒      ▒▒    ▒▒▒▒▓▓▓▓▓▓▒▒░░░░████            ",
 | 
			
		||||
      "                ██      ▒▒▒▒▒▒▒▒░░▒▒▒▒▒▒▒▒▓▓▓▓▓▓██                ",
 | 
			
		||||
      "              ██    ████░░░░▒▒▒▒░░▒▒▒▒░░░░████▓▓▓▓██              ",
 | 
			
		||||
      "            ██    ██    ████░░░░░░░░░░████    ██▓▓▓▓██            ",
 | 
			
		||||
      "          ████████          ████░░████          ████████          ",
 | 
			
		||||
      "                                ██                                ",
 | 
			
		||||
    },
 | 
			
		||||
    fsociety_frankfurt = {
 | 
			
		||||
      [[    .....             .x+=:.                            .                    s                ]],
 | 
			
		||||
      [[ .H8888888x.  '`+    z`    ^%                          @88>                 :8      ..        ]],
 | 
			
		||||
      [[:888888888888x.  !      .   <k        u.               %8P                 .88     @L         ]],
 | 
			
		||||
      [[8~    `"*88888888"    .@8Ned8"  ...ue888b        .      .         .u      :888ooo 9888i   .dL ]],
 | 
			
		||||
      [[!      .  `f""""    .@^%8888"   888R Y888r  .udR88N   .@88u    ud8888.  -*8888888 `Y888k:*888.]],
 | 
			
		||||
      [[ ~:...-` :8L <)88: x88:  `)8b.  888R I888> <888'888k ''888E` :888'8888.   8888      888E  888I]],
 | 
			
		||||
      [[    .   :888:>X88! 8888N=*8888  888R I888> 9888 'Y"    888E  d888 '88%"   8888      888E  888I]],
 | 
			
		||||
      [[ :~"88x 48888X ^`   %8"    R88  888R I888> 9888        888E  8888.+"      8888      888E  888I]],
 | 
			
		||||
      [[<  :888k'88888X      @8Wou 9%  u8888cJ888  9888        888E  8888L       .8888Lu=   888E  888I]],
 | 
			
		||||
      [[  d8888f '88888X   .888888P`    "*888*P"   ?8888u../   888&  '8888c. .+  ^%888*    x888N><888']],
 | 
			
		||||
      [[ :8888!    ?8888>  `   ^"F        'Y"       "8888P'    R888"  "88888%      'Y"      "88"  888 ]],
 | 
			
		||||
      [[ X888!      8888~                             "P'       ""      "YP'                      88F ]],
 | 
			
		||||
      [[ '888       X88f                                                                         98"  ]],
 | 
			
		||||
      [[  '%8:     .8*"                                                                        ./"    ]],
 | 
			
		||||
      [[     ^----~"`                                                                         ~`      ]],
 | 
			
		||||
    },
 | 
			
		||||
    fsociety_aligator = {
 | 
			
		||||
      [[      :::::::::: ::::::::   ::::::::   :::::::: ::::::::::: :::::::::: ::::::::::: :::   ::: ]],
 | 
			
		||||
      [[     :+:       :+:    :+: :+:    :+: :+:    :+:    :+:     :+:            :+:     :+:   :+:  ]],
 | 
			
		||||
      [[    +:+       +:+        +:+    +:+ +:+           +:+     +:+            +:+      +:+ +:+    ]],
 | 
			
		||||
      [[   :#::+::#  +#++:++#++ +#+    +:+ +#+           +#+     +#++:++#       +#+       +#++:      ]],
 | 
			
		||||
      [[  +#+              +#+ +#+    +#+ +#+           +#+     +#+            +#+        +#+        ]],
 | 
			
		||||
      [[ #+#       #+#    #+# #+#    #+# #+#    #+#    #+#     #+#            #+#        #+#         ]],
 | 
			
		||||
      [[###        ########   ########   ######## ########### ##########     ###        ###          ]],
 | 
			
		||||
    },
 | 
			
		||||
    hacker_face = {
 | 
			
		||||
      [[⠀⠀⠀⢀⣴⣾⣿⣿⣿⡶⢦⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⠴⢾⣿⣿⣿⣷⣦⡀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⣰⣿⣿⣿⣿⣿⣿⣿⣷⣦⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣡⣴⣾⣿⣿⣿⣿⣿⣿⣿⡄⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠉⠀⠀⠀⠀⠈⠙⠻⣿⣿⣿⣷⡄⠀⠀⠀⠀⠀⣰⣿⣿⣿⡿⠛⠉⠁⠀⠀⠀⠈⠉⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⣯⠁⠀⠀⠀⠀⠀⢈⣿⠟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⢀⡴⢖⣛⣧⣴⣶⣤⣄⠹⡆⡀⠀⠀⠀⠀⡼⢃⣤⣴⣶⣧⣽⣛⡲⣤⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⢱⣄⣴⣟⠾⣿⣿⣿⣿⣿⣿⣿⡇⠀⡇⠀⠀⠀⡇⠀⣿⣿⣿⣿⣿⣿⣿⣿⣞⣷⣄⣴⠃⠀]],
 | 
			
		||||
      [[⢠⠟⠉⠉⠉⠛⠓⠿⠏⠸⠟⠛⠉⠀⢠⡇⠀⠀⠀⣿⠀⠀⠉⠛⠻⠇⠿⠟⠛⠋⠉⠉⠙⠻⡀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⡇⠀⠀⠀⣿⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡾⢿⡇⠀⠀⠀⢿⠿⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⡄⠀⠀⠀⠀⠀⠀⠀⣀⣤⢴⠏⠀⣸⠁⠀⠀⠀⢸⡆⠈⢳⡀⣤⡀⠀⠀⠀⠀⠀⠀⠀⡄⠀]],
 | 
			
		||||
      [[⠀⢹⣶⢤⣤⡤⠴⠶⠛⠉⠀⠸⠀⣄⢻⣄⠀⠀⢀⣸⢃⣀⠰⠃⠈⠙⠓⠶⠤⣤⣤⢤⣾⠃⠀]],
 | 
			
		||||
      [[⠀⠈⢿⣆⠻⣿⣄⠀⠀⠀⠀⠀⠀⠉⣱⣬⣍⣉⣯⣥⡉⠁⠀⠀⠀⠀⠀⠀⣴⣿⢃⣾⡏⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠈⢿⣆⠹⣿⣧⣀⣀⣀⣀⣤⣴⣿⣿⠟⠙⢿⣿⣿⣦⣄⣀⣀⣀⣠⣾⡿⠁⣼⠟⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠈⢿⣦⡈⠻⠿⠿⠿⠿⢿⣿⣿⣋⣀⣀⣀⣻⣿⣿⠿⠿⠿⠿⠿⠛⣠⣾⠏⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⠻⣎⠓⢤⣀⠀⠀⠀⠉⠉⠉⠉⠉⠉⠉⠉⠁⠀⠀⠀⣀⠴⢊⡿⠋⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⠀⠘⢧⠀⠀⠀⠀⠀⠀⠀⢤⣄⣀⣠⡄⠀⠀⠀⠀⠀⠀⢠⠞⠁⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⠀⠀⠀⠱⣄⠀⠀⠀⠀⠀⠀⣿⣿⡏⠀⠀⠀⠀⠀⠀⡠⠃⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⣿⣿⣷⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣿⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⣿⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
    },
 | 
			
		||||
    pacman = {
 | 
			
		||||
      [[                                                                              ]],
 | 
			
		||||
      [[                                    ██████                                    ]],
 | 
			
		||||
      [[                                ████▒▒▒▒▒▒████                                ]],
 | 
			
		||||
      [[                              ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒██                              ]],
 | 
			
		||||
      [[                            ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██                            ]],
 | 
			
		||||
      [[                          ██▒▒▒▒▒▒▒▒    ▒▒▒▒▒▒▒▒                              ]],
 | 
			
		||||
      [[                          ██▒▒▒▒▒▒  ▒▒▓▓▒▒▒▒▒▒  ▓▓▓▓                          ]],
 | 
			
		||||
      [[                          ██▒▒▒▒▒▒  ▒▒▓▓▒▒▒▒▒▒  ▒▒▓▓                          ]],
 | 
			
		||||
      [[                        ██▒▒▒▒▒▒▒▒▒▒    ▒▒▒▒▒▒▒▒    ██                        ]],
 | 
			
		||||
      [[                        ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██                        ]],
 | 
			
		||||
      [[                        ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██                        ]],
 | 
			
		||||
      [[                        ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██                        ]],
 | 
			
		||||
      [[                        ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██                        ]],
 | 
			
		||||
      [[                        ██▒▒██▒▒▒▒▒▒██▒▒▒▒▒▒▒▒██▒▒▒▒██                        ]],
 | 
			
		||||
      [[                        ████  ██▒▒██  ██▒▒▒▒██  ██▒▒██                        ]],
 | 
			
		||||
      [[                        ██      ██      ████      ████                        ]],
 | 
			
		||||
      [[                                                                              ]],
 | 
			
		||||
    },
 | 
			
		||||
    cat = {
 | 
			
		||||
      [[          ▀████▀▄▄              ▄█ ]],
 | 
			
		||||
      [[            █▀    ▀▀▄▄▄▄▄    ▄▄▀▀█ ]],
 | 
			
		||||
      [[    ▄        █          ▀▀▀▀▄  ▄▀  ]],
 | 
			
		||||
      [[   ▄▀ ▀▄      ▀▄              ▀▄▀  ]],
 | 
			
		||||
      [[  ▄▀    █     █▀   ▄█▀▄      ▄█    ]],
 | 
			
		||||
      [[  ▀▄     ▀▄  █     ▀██▀     ██▄█   ]],
 | 
			
		||||
      [[   ▀▄    ▄▀ █   ▄██▄   ▄  ▄  ▀▀ █  ]],
 | 
			
		||||
      [[    █  ▄▀  █    ▀██▀    ▀▀ ▀▀  ▄▀  ]],
 | 
			
		||||
      [[   █   █  █      ▄▄           ▄▀   ]],
 | 
			
		||||
    },
 | 
			
		||||
    skull_emperor = {
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⠀⠀⢀⣶⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⣀⠀⠀⠀⠀⢀⣾⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢿⣷⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⣿⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⣿⣧⡀⠀⠀⣼⠃⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣿⠻⣷⣄⡀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣧⠀⠀⠀⠀⠀⢀⣴⡶⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⢸⣿⣧⠀⣰⡏⠀⣿⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⣠⣤⣈⣧⠈⠻⣿⣦⣀⣀⠀⠀⠀⣸⣿⣿⣿⣆⠀⠀⠀⣴⣿⣿⠃⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠘⡏⢿⣧⣿⠀⢀⣿⠁⠀⢀⣾⡇⠀⠀⠀⣀⠤⠖⠂⠉⠉⠀⠀⠀⠀⠀⠸⡏⣀⣀⣭⣷⣄⠉⠉⠒⢻⣿⣿⣿⣿⡆⢀⣾⣿⣿⡏⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⣤⣇⠘⣿⠇⠀⢸⡇⠀⢠⣾⣿⣀⡤⠚⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⢻⣽⣿⣿⣿⣧⡀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⢸⣿⣿⡀⢻⡇⢠⡿⠀⣰⣿⡿⠛⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣿⣿⣿⣿⣿⣿⣷⡀⢸⣿⣿⣿⣿⠏⠙⢿⣿⣿⣇⠀⠀⠀⠀⢀⣶]],
 | 
			
		||||
      [[⢸⣿⣿⣧⣈⣧⡿⠁⢠⡿⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⡀⠀⠀⠀⠀⠸⣿⣿⣿⣿⣿⣿⣧⠈⣿⣿⣿⡏⠀⠀⣼⢹⣿⣿⠀⠀⠀⢀⣾⣿]],
 | 
			
		||||
      [[⣿⡟⢿⣿⣿⣿⠁⡴⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⠳⡀⠀⠀⠀⠈⠻⣿⣿⣿⣿⣿⡆⢹⣿⣿⠁⠀⢀⢛⣼⣿⣿⠳⣄⢀⣾⣿⣿]],
 | 
			
		||||
      [[⢻⡇⠀⢻⣿⣇⡞⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣧⠘⢦⣀⡀⠀⠀⠈⠻⣿⣿⣿⣇⠀⣿⡟⠀⠀⡞⣿⣿⣿⣿⠀⠘⣿⡗⣿⣿]],
 | 
			
		||||
      [[⠈⣧⠀⠈⣿⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢦⡀⠈⠙⡓⠶⣤⣄⡈⠻⣿⣿⣧⣸⡇⡆⠀⢳⣿⣿⣿⡇⠀⣸⣏⠁⣿⣿]],
 | 
			
		||||
      [[⠀⠹⡆⠀⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢦⡀⠉⠳⢦⡈⠛⠷⣿⣿⣿⣿⣅⠁⠀⣿⣿⣿⡟⠀⢰⣿⠃⠀⣼⣿]],
 | 
			
		||||
      [[⠀⠀⢻⣀⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⠲⣄⣄⣌⣲⣄⠸⣿⡿⣿⣿⣷⣴⣿⣿⠟⠀⠀⣿⡿⠀⠀⣸⡟]],
 | 
			
		||||
      [[⠀⠀⠘⣿⡏⠀⠀⠀⢀⠀⠀⠀⠀⠀⠐⣿⣿⢿⣶⣶⣦⣄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⢿⣿⣿⣷⣿⣧⠈⠻⢿⣿⣿⠋⠀⠀⢸⣿⠇⠀⣼⡿⣇]],
 | 
			
		||||
      [[⠀⣀⡴⢋⣴⣿⣿⣿⣿⣿⡷⠿⣿⣿⣿⢣⣾⣿⣿⣿⣿⣷⣭⣙⠶⡄⠀⠀⢰⡇⠀⠀⠀⠀⠀⠙⠻⣿⣿⣿⣧⠀⠘⠛⣿⣆⠀⠀⣿⡇⠀⢀⣿⠇⢸]],
 | 
			
		||||
      [[⠀⢻⠀⣿⣿⣿⣿⣿⣿⠟⠁⠀⠀⠈⢁⣾⣿⣿⣿⣿⣿⣿⣿⣿⣷⡹⡄⠀⠀⠳⡄⠀⠀⠀⠀⠀⠀⠈⠙⠿⣿⣇⠀⠀⠈⢻⡆⢸⠃⠀⠀⣾⠏⠀⢸]],
 | 
			
		||||
      [[⠀⠈⡇⣿⣿⣿⣿⣿⣧⠀⠀⠀⠀⠀⠈⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡹⡀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢿⣾⡄⠀⠀⢿⡟⠀⣠⣼⣿⠇⠀⢼]],
 | 
			
		||||
      [[⠀⠸⣅⢷⣿⣿⣿⣿⣿⣧⡀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠇⡇⠀⠀⢧⡀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠹⣿⣦⢠⣿⣿⣿⡿⣿⣿⠀⠀⡟]],
 | 
			
		||||
      [[⠀⣀⡿⠈⢿⣿⣿⡇⢻⣿⡗⠀⠀⠀⠀⢰⣿⣿⣿⣿⣿⣿⣿⣿⡿⠃⣸⠁⠀⠀⠀⠀⠉⠁⠀⠀⠀⠀⠀⣠⣴⣿⣿⣿⣿⣿⣿⠿⠋⣴⣿⣿⠀⢀⡟]],
 | 
			
		||||
      [[⠀⡿⠁⠀⠼⠛⢹⣯⣸⣿⣷⡄⠀⠀⠀⠀⠈⠻⢿⣿⣿⣿⡿⠛⠁⡰⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⠞⠉⢿⡿⠿⠟⣻⡟⠁⢠⡾⠛⢩⣿⣰⡿⠀]],
 | 
			
		||||
      [[⠸⡇⠀⠀⠀⠀⢸⠇⠿⠋⣿⡿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠜⠁⠀⠀⣠⡴⢻⣿⣿⣶⣶⣶⣾⡿⠀⡖⢸⡇⠀⢠⡟⣠⡾⣋⣴⣴⠟⣽⣿⠃⠀]],
 | 
			
		||||
      [[⠀⢷⠀⢀⡾⣤⣼⣶⡖⠶⣿⠃⠀⠀⠀⠀⠀⢲⣷⣶⡶⠶⠆⣀⣀⣠⣴⠟⡟⠀⠀⠻⣿⣿⣿⣿⣿⠁⢨⠃⣸⣿⣦⣿⣟⣩⣾⡿⠋⣡⣾⣿⠃⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠉⠉⠀⢰⠏⠈⠻⠀⠀⠀⠀⠀⠀⠀⠀⠀⣻⣏⣴⣾⣿⡟⠁⠀⠀⣸⡇⠀⠀⠀⢿⠻⠿⢫⠏⠀⠀⠀⣿⣿⣿⣿⣿⠿⠁⣶⣴⣿⣿⠇⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⢀⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡿⣿⠏⣿⡇⠀⢀⣾⣿⠧⠀⠀⠀⢸⡄⣰⠟⠀⠀⠀⢠⣿⣿⣿⣯⣁⣠⣾⣿⣿⠟⠋⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⣼⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠘⠋⢰⣿⣿⣶⡾⣿⣿⠇⠀⣠⠞⢉⠜⠁⡴⠀⢀⣴⡟⠉⠀⠉⠛⠿⠿⠟⠋⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⣹⣶⡦⣴⢲⣴⢦⡤⣤⣤⣄⣤⣤⣤⣤⣤⣴⡿⠋⠙⢿⣯⣿⣿⠀⡰⠃⠀⠋⠀⡼⠁⠀⡞⣸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⡏⣿⢰⡇⢰⠇⢸⡇⣸⣨⣇⣸⣏⣸⢇⣾⣿⣀⣠⠤⠤⠵⣫⠏⠀⠀⠀⠀⠀⠀⠀⠀⡼⠀⢹⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠙⣟⢿⢿⣿⣷⣿⣹⣇⣿⣸⣧⠥⠿⠴⠜⠋⠁⠀⠀⡴⠞⠁⠀⠀⠀⠀⠀⠀⠀⢀⡴⠁⢀⣼⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⣿⠛⠉⠉⠙⠉⠁⠈⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢀⣠⣾⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⢸⣠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⣤⣤⣴⣶⠾⠛⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⣸⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣴⣶⣾⠿⠛⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⢸⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⢀⣠⣾⡾⠟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⣿⠀⢀⣀⡀⣀⡀⠀⠀⠀⠀⠀⠀⣀⣠⣴⣶⠶⠿⠛⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⠘⢷⣂⣀⣀⣀⣍⣳⣶⣾⣿⠿⠟⠛⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠀⠀⠀⠙⠛⠻⠿⠿⠛⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
    },
 | 
			
		||||
    skull_bull = {
 | 
			
		||||
      [[⠀⠀⠀⢀⡤⢤⢄⣀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⣼⡅⠠⢀⡈⢀⣙⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⠤⠤⢤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⢸⠀⠀⠀⠈⠙⠿⣝⢇⠀⠀⣀⣠⠤⠤⠤⠤⣤⡤⠚⠁⠀⠀⠀⠀⠀⠉⠢⡀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⢧⡀⠀⠀⠠⣄⠈⢺⣺⡍⠀⠀⠀⠀⣠⠖⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠸⡆⢀⠘⣔⠄⠑⠂⠈⠀⡔⠤⠴⠚⡁⠀⠀⢀⠀⠀⠀⣠⠔⢶⡢⡀⠀⠠⡇⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⢠⣇⠀⢃⡀⠁⠀⠀⠀⡸⠃⢀⡴⠊⢀⠀⠀⠈⢂⡤⠚⠁⠀⠀⠙⢿⠀⠉⡇⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⣠⠾⣹⢤⢼⡆⠀⠀⠀⠀⠀⠀⠈⢀⠞⠁⠀⢠⣴⠏⠀⠀⠀⠀⠀⠀⠸⡇⠀⢇⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⣾⢡⣤⡈⠣⡀⠙⠒⠀⠀⠀⠀⣀⠤⠤⣤⠤⣌⠁⢛⡄⠀⠀⠀⠀⠀⠠⡀⢇⠀⠘⣆⠀⢀⡴⡆]],
 | 
			
		||||
      [[⠀⠀⣿⢻⣿⣿⣄⡸⠀⡆⠀⠒⣈⣩⣉⣉⡈⠉⠉⠢⣉⠉⠀⠀⠀⠀⠀⠀⠀⢣⠈⠢⣀⠈⠉⢁⡴⠃]],
 | 
			
		||||
      [[⠀⢀⢿⣿⣿⡿⠛⠁⠀⢻⣿⣿⣿⣿⣿⣿⣿⣷⣦⣄⣸⢿⠀⠀⠀⠀⠀⠀⠀⠸⡄⠀⡇⠉⠉⠁⠀⠀]],
 | 
			
		||||
      [[⣠⣞⠘⢛⡛⢻⣷⣤⡀⠈⡎⣿⣿⣿⣿⣿⣿⣿⣿⣿⠹⠏⠀⠀⠀⠀⠀⠀⠀⠀⠇⢰⡇⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠻⣌⠯⡁⢠⣸⣿⣿⣷⡄⠁⠈⢻⢿⣿⣿⣿⣿⠿⠋⠃⠰⣀⠀⠀⠀⠀⠀⠀⠀⠀⣾⠇⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠉⢻⠨⠟⠹⢿⣿⢣⠀⠀⢨⡧⣌⠉⠁⣀⠴⠊⠑⠀⡸⠛⠀⠀⠀⠀⠀⣸⢲⡟⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⣠⠏⠀⠀⠀⠉⠉⠁⠀⠐⠁⠀⠀⢉⣉⠁⠀⠀⢀⠔⢷⣄⠀⠀⠀⠀⢠⣻⡞⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⢠⠟⡦⣀⣀⣀⠀⠀⠀⠀⠀⠀⠀⢾⠉⠀⣹⣦⠤⣿⣿⡟⠁⠀⠀⠀⢀⣶⠟⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠈⠙⣦⣁⡎⢈⠏⢱⠚⢲⠔⢲⠲⡖⠖⣦⣿⡟⠀⣿⡿⠁⣠⢔⡤⠷⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⢿⣟⠿⡿⠿⠶⢾⠶⠾⠶⠾⠞⢻⠋⠏⣸⠁⠀⡽⠓⠚⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⢸⡏⠳⠷⠴⠣⠜⠢⠜⠓⠛⠊⠀⢀⡴⠣⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⣏⠒⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠊⠁⢀⣀⣀⠴⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠘⢦⡀⠀⠀⠀⠀⠀⠀⢀⣀⠴⠖⠒⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      [[⠀⠀⠀⠀⠉⠑⠒⠒⠐⠒⠛⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
    },
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
    math.randomseed(os.time())
 | 
			
		||||
 | 
			
		||||
    local ascii_arts = {
 | 
			
		||||
      kraken = {
 | 
			
		||||
        "                                   ",
 | 
			
		||||
        "                                   ",
 | 
			
		||||
        "                                   ",
 | 
			
		||||
        "   ⣴⣶⣤⡤⠦⣤⣀⣤⠆     ⣈⣭⣿⣶⣿⣦⣼⣆          ",
 | 
			
		||||
        "    ⠉⠻⢿⣿⠿⣿⣿⣶⣦⠤⠄⡠⢾⣿⣿⡿⠋⠉⠉⠻⣿⣿⡛⣦       ",
 | 
			
		||||
        "          ⠈⢿⣿⣟⠦ ⣾⣿⣿⣷    ⠻⠿⢿⣿⣧⣄     ",
 | 
			
		||||
        "           ⣸⣿⣿⢧ ⢻⠻⣿⣿⣷⣄⣀⠄⠢⣀⡀⠈⠙⠿⠄    ",
 | 
			
		||||
        "          ⢠⣿⣿⣿⠈    ⣻⣿⣿⣿⣿⣿⣿⣿⣛⣳⣤⣀⣀   ",
 | 
			
		||||
        "   ⢠⣧⣶⣥⡤⢄ ⣸⣿⣿⠘  ⢀⣴⣿⣿⡿⠛⣿⣿⣧⠈⢿⠿⠟⠛⠻⠿⠄  ",
 | 
			
		||||
        "  ⣰⣿⣿⠛⠻⣿⣿⡦⢹⣿⣷   ⢊⣿⣿⡏  ⢸⣿⣿⡇ ⢀⣠⣄⣾⠄   ",
 | 
			
		||||
        " ⣠⣿⠿⠛ ⢀⣿⣿⣷⠘⢿⣿⣦⡀ ⢸⢿⣿⣿⣄ ⣸⣿⣿⡇⣪⣿⡿⠿⣿⣷⡄  ",
 | 
			
		||||
        " ⠙⠃   ⣼⣿⡟  ⠈⠻⣿⣿⣦⣌⡇⠻⣿⣿⣷⣿⣿⣿ ⣿⣿⡇ ⠛⠻⢷⣄ ",
 | 
			
		||||
        "      ⢻⣿⣿⣄   ⠈⠻⣿⣿⣿⣷⣿⣿⣿⣿⣿⡟ ⠫⢿⣿⡆     ",
 | 
			
		||||
        "       ⠻⣿⣿⣿⣿⣶⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿⡟⢀⣀⣤⣾⡿⠃     ",
 | 
			
		||||
      },
 | 
			
		||||
      skull = {
 | 
			
		||||
        '                     .:::!~!!!!!:.',
 | 
			
		||||
        '                  .xUHWH!! !!?M88WHX:.',
 | 
			
		||||
        '                .X*#M@$!!  !X!M$$$$$$WWx:.',
 | 
			
		||||
        '               :!!!!!!?H! :!$!$$$$$$$$$$8X:',
 | 
			
		||||
        '              !!~  ~:~!! :~!$!#$$$$$$$$$$8X:',
 | 
			
		||||
        '             :!~::!H!<   ~.U$X!?R$$$$$$$$MM!',
 | 
			
		||||
        '             ~!~!!!!~~ .:XW$$$U!!?$$$$$$RMM!',
 | 
			
		||||
        '               !:~~~ .:!M"T#$$$$WX??#MRRMMM!',
 | 
			
		||||
        '               ~?WuxiW*`   `"#$$$$8!!!!??!!!',
 | 
			
		||||
        '             :X- M$$$$       `"T#$T~!8$WUXU~',
 | 
			
		||||
        '            :%`  ~#$$$m:        ~!~ ?$$$$$$',
 | 
			
		||||
        '          :!`.-   ~T$$$$8xx.  .xWW- ~""##*"',
 | 
			
		||||
        '.....   -~~:<` !    ~?T#$$@@W@*?$$      /`',
 | 
			
		||||
        'W$@@M!!! .!~~ !!     .:XUW$W!~ `"~:    :',
 | 
			
		||||
        '#"~~`.:x%`!!  !H:   !WM$$$$Ti.: .!WUn+!`',
 | 
			
		||||
        ':::~:!!`:X~ .: ?H.!u "$$$B$$$!W:U!T$$M~',
 | 
			
		||||
        '.~~   :X@!.-~   ?@WTWo("*$$$W$TH$! `',
 | 
			
		||||
        'Wi.~!X$?!-~   :: ?$$$B$Wu("**$RM!',
 | 
			
		||||
        '$R@i.~~ !    ::   ~$$$$$B$$en:``',
 | 
			
		||||
        '?MXT@Wx.~   ::     ~"##*$$$$M'
 | 
			
		||||
      },
 | 
			
		||||
      alien = {
 | 
			
		||||
        "            :h-                                  Nhy`               ",
 | 
			
		||||
        "           -mh.                           h.    `Ndho               ",
 | 
			
		||||
        "           hmh+                          oNm.   oNdhh               ",
 | 
			
		||||
        "          `Nmhd`                        /NNmd  /NNhhd               ",
 | 
			
		||||
        "          -NNhhy                      `hMNmmm`+NNdhhh               ",
 | 
			
		||||
        "          .NNmhhs              ```....`..-:/./mNdhhh+               ",
 | 
			
		||||
        "           mNNdhhh-     `.-::///+++////++//:--.`-/sd`               ",
 | 
			
		||||
        "           oNNNdhhdo..://++//++++++/+++//++///++/-.`                ",
 | 
			
		||||
        "      y.   `mNNNmhhhdy+/++++//+/////++//+++///++////-` `/oos:       ",
 | 
			
		||||
        " .    Nmy:  :NNNNmhhhhdy+/++/+++///:.....--:////+++///:.`:s+        ",
 | 
			
		||||
        " h-   dNmNmy oNNNNNdhhhhy:/+/+++/-         ---:/+++//++//.`         ",
 | 
			
		||||
        " hd+` -NNNy`./dNNNNNhhhh+-://///    -+oo:`  ::-:+////++///:`        ",
 | 
			
		||||
        " /Nmhs+oss-:++/dNNNmhho:--::///    /mmmmmo  ../-///++///////.       ",
 | 
			
		||||
        "  oNNdhhhhhhhs//osso/:---:::///    /yyyyso  ..o+-//////////:/.      ",
 | 
			
		||||
        "   /mNNNmdhhhh/://+///::://////     -:::- ..+sy+:////////::/:/.     ",
 | 
			
		||||
        "     /hNNNdhhs--:/+++////++/////.      ..-/yhhs-/////////::/::/`    ",
 | 
			
		||||
        "       .ooo+/-::::/+///////++++//-/ossyyhhhhs/:///////:::/::::/:    ",
 | 
			
		||||
        "       -///:::::::////++///+++/////:/+ooo+/::///////.::://::---+`   ",
 | 
			
		||||
        "       /////+//++++/////+////-..//////////::-:::--`.:///:---:::/:   ",
 | 
			
		||||
        "       //+++//++++++////+++///::--                 .::::-------::   ",
 | 
			
		||||
        "       :/++++///////////++++//////.                -:/:----::../-   ",
 | 
			
		||||
        "       -/++++//++///+//////////////               .::::---:::-.+`   ",
 | 
			
		||||
        "       `////////////////////////////:.            --::-----...-/    ",
 | 
			
		||||
        "        -///://////////////////////::::-..      :-:-:-..-::.`.+`    ",
 | 
			
		||||
        "         :/://///:///::://::://::::::/:::::::-:---::-.-....``/- -   ",
 | 
			
		||||
        "           ::::://::://::::::::::::::----------..-:....`.../- -+oo/ ",
 | 
			
		||||
        "            -/:::-:::::---://:-::-::::----::---.-.......`-/.      ``",
 | 
			
		||||
        "           s-`::--:::------:////----:---.-:::...-.....`./:          ",
 | 
			
		||||
        "          yMNy.`::-.--::..-dmmhhhs-..-.-.......`.....-/:`           ",
 | 
			
		||||
        "         oMNNNh. `-::--...:NNNdhhh/.--.`..``.......:/-              ",
 | 
			
		||||
        "        :dy+:`      .-::-..NNNhhd+``..`...````.-::-`                ",
 | 
			
		||||
        "                        .-:mNdhh:.......--::::-`                    ",
 | 
			
		||||
        "                           yNh/..------..`                          ",
 | 
			
		||||
        "                                                                    ",
 | 
			
		||||
      },
 | 
			
		||||
      logo = {
 | 
			
		||||
        "      ░░                                                  ░░      ",
 | 
			
		||||
        "      ████                                              ████      ",
 | 
			
		||||
        "      ██▓▓██                                          ██  ██      ",
 | 
			
		||||
        "      ██▓▓▓▓██                                      ██    ██      ",
 | 
			
		||||
        "  ██████▓▓▓▓▓▓██████████████████████████████████████      ██████  ",
 | 
			
		||||
        "  ██░░░░░░▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░      ░░░░░░██  ",
 | 
			
		||||
        "  ██▓▓▒▒▒▒▒▒▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒░░▒▒▒▒▒▒▒▒▒▒▒▒▒▒      ▒▒▒▒▒▒  ██  ",
 | 
			
		||||
        "  ██▓▓▒▒▒▒▒▒▒▒▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▒▒░░▒▒▒▒▒▒▒▒▒▒▒▒      ░░▒▒▒▒    ██  ",
 | 
			
		||||
        "  ██░░▓▓▓▓▒▒▒▒▒▒▓▓▓▓▒▒▒▒▒▒▒▒▒▒▒▒░░▒▒▒▒▒▒▒▒▒▒▒▒    ▒▒▒▒▒▒    ░░██  ",
 | 
			
		||||
        "  ██░░▓▓▓▓▓▓▓▓▒▒▒▒▓▓▒▒▒▒▒▒▒▒▒▒▒▒░░▒▒▒▒▒▒▒▒▒▒▒▒  ▒▒▒▒        ░░██  ",
 | 
			
		||||
        "  ██░░▒▒▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒░░▒▒▒▒▒▒▒▒  ▒▒▒▒▒▒        ▒▒░░██  ",
 | 
			
		||||
        "  ██▒▒▒▒▒▒▓▓▓▓▓▓▒▒▒▒▒▒▓▓▓▓▒▒▒▒▒▒░░▒▒▒▒▒▒    ▒▒▒▒        ▒▒▒▒  ██  ",
 | 
			
		||||
        "  ██▓▓▓▓▓▓▒▒▒▒▓▓▓▓▒▒▒▒▒▒▓▓▓▓▒▒▒▒░░▒▒▒▒    ▒▒▒▒▒▒    ▒▒▒▒      ██  ",
 | 
			
		||||
        "  ██░░▓▓▓▓▒▒▒▒▒▒▓▓▒▒▒▒▒▒▒▒▓▓▒▒▒▒░░▒▒    ░░▒▒  ▒▒  ░░▒▒      ░░██  ",
 | 
			
		||||
        "  ██▒▒▒▒▓▓▓▓▒▒▒▒▒▒▒▒▓▓▒▒▒▒▒▒▓▓    ▒▒  ▒▒▒▒    ▒▒▒▒▒▒      ▒▒  ██  ",
 | 
			
		||||
        "  ██▓▓▓▓▒▒▓▓▓▓▓▓▒▒▒▒▓▓▓▓▓▓▒▒      ▒▒▒▒▒▒      ▒▒▒▒      ▒▒    ██  ",
 | 
			
		||||
        "  ██░░▓▓▓▓▒▒▒▒▓▓▒▒▓▓▒▒▒▒▓▓        ▒▒▒▒    ▒▒▒▒  ▒▒  ▒▒▒▒    ░░██  ",
 | 
			
		||||
        "  ██░░▓▓▓▓▓▓▓▓▒▒▒▒▓▓▒▒▒▒      ░░░░▒▒▒▒  ░░▒▒    ▒▒▒▒        ░░██  ",
 | 
			
		||||
        "  ██░░▒▒▓▓▓▓▓▓▓▓▒▒▒▒▓▓▓▓    ▒▒▒▒░░  ▒▒▒▒▒▒    ▒▒▒▒        ▒▒░░██  ",
 | 
			
		||||
        "  ██░░░░░░▓▓▓▓▓▓░░░░░░▓▓  ░░░░      ░░      ░░░░░░      ░░░░░░██  ",
 | 
			
		||||
        "  ██░░▒▒▒▒▒▒▓▓▓▓░░▒▒▒▒▒▒▒▒▒▒      ░░▒▒    ░░    ▒▒    ░░▒▒▒▒░░██  ",
 | 
			
		||||
        "  ██░░▓▓▓▓▒▒▒▒▓▓▒▒▓▓▓▓▓▓▒▒    ▒▒░░  ▒▒▒▒▒▒      ▒▒  ▒▒▒▒    ░░██  ",
 | 
			
		||||
        "  ██░░▒▒▓▓▓▓▓▓▒▒▒▒▒▒▓▓▓▓    ▒▒      ▒▒▒▒      ▒▒▒▒▒▒      ▒▒░░██  ",
 | 
			
		||||
        "  ██░░▒▒▓▓▓▓▓▓▓▓▒▒▓▓▒▒▓▓  ▒▒      ▒▒▒▒      ▒▒  ▒▒        ▒▒░░██  ",
 | 
			
		||||
        "  ██░░▒▒▒▒▒▒▓▓▓▓▒▒▓▓▓▓▒▒▒▒    ▒▒░░  ▒▒    ▒▒    ▒▒    ▒▒▒▒▒▒░░██  ",
 | 
			
		||||
        "  ██░░▒▒▓▓▒▒▒▒▒▒▒▒▓▓▓▓▓▓▒▒  ▒▒      ▒▒▒▒▒▒      ▒▒▒▒▒▒▒▒  ▒▒░░██  ",
 | 
			
		||||
        "  ██░░▒▒▓▓▓▓▓▓▓▓▒▒▒▒▒▒▓▓  ▒▒      ▒▒▒▒      ▒▒▒▒▒▒        ▒▒░░██  ",
 | 
			
		||||
        "  ██░░▒▒▒▒▓▓▓▓▓▓▒▒▒▒▒▒▒▒░░    ▒▒░░▒▒▒▒    ░░▒▒  ▒▒      ▒▒▒▒░░██  ",
 | 
			
		||||
        "  ██░░▒▒▒▒▒▒▒▒▓▓▒▒▓▓▓▓▓▓▒▒  ▒▒      ▒▒▒▒▒▒      ▒▒  ▒▒▒▒▒▒▒▒░░██  ",
 | 
			
		||||
        "  ██░░▒▒▒▒▓▓▓▓▒▒▒▒▒▒▓▓▓▓  ▒▒      ▒▒▒▒        ▒▒▒▒▒▒    ▒▒▒▒░░██  ",
 | 
			
		||||
        "  ██░░▒▒▒▒▒▒▓▓▓▓▒▒▒▒▒▒▒▒░░  ▒▒▒▒░░▒▒▒▒    ░░▒▒▒▒      ░░▒▒▒▒░░██  ",
 | 
			
		||||
        "  ██░░▒▒▒▒▒▒▒▒▓▓▓▓▒▒▓▓▓▓  ▒▒▒▒      ▒▒▒▒▒▒    ▒▒    ▒▒▒▒▒▒▒▒░░██  ",
 | 
			
		||||
        "  ██░░▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓▓▒▒▒▒  ▒▒░░▒▒        ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒░░██  ",
 | 
			
		||||
        "  ██░░▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒  ▒▒▒▒    ▒▒    ░░▒▒▒▒      ▒▒▒▒▒▒▒▒░░██  ",
 | 
			
		||||
        "  ██░░░░▒▒▒▒▒▒▒▒▓▓▓▓▒▒▒▒▒▒      ░░▒▒▒▒      ▒▒    ▒▒▒▒▒▒▒▒░░░░██  ",
 | 
			
		||||
        "  ██████░░░░▒▒▒▒▒▒▓▓▒▒▒▒    ▒▒▒▒░░        ▒▒▒▒  ▒▒▒▒▒▒░░░░██████  ",
 | 
			
		||||
        "        ████░░░░▒▒▒▒▒▒    ░░          ▒▒░░▒▒▒▒▒▒▒▒░░░░████        ",
 | 
			
		||||
        "            ████░░░░▒▒      ▒▒    ▒▒▒▒▓▓▓▓▓▓▒▒░░░░████            ",
 | 
			
		||||
        "                ██      ▒▒▒▒▒▒▒▒░░▒▒▒▒▒▒▒▒▓▓▓▓▓▓██                ",
 | 
			
		||||
        "              ██    ████░░░░▒▒▒▒░░▒▒▒▒░░░░████▓▓▓▓██              ",
 | 
			
		||||
        "            ██    ██    ████░░░░░░░░░░████    ██▓▓▓▓██            ",
 | 
			
		||||
        "          ████████          ████░░████          ████████          ",
 | 
			
		||||
        "                                ██                                ",
 | 
			
		||||
      },
 | 
			
		||||
      fsociety_frankfurt = {
 | 
			
		||||
        [[    .....             .x+=:.                            .                    s                ]],
 | 
			
		||||
        [[ .H8888888x.  '`+    z`    ^%                          @88>                 :8      ..        ]],
 | 
			
		||||
        [[:888888888888x.  !      .   <k        u.               %8P                 .88     @L         ]],
 | 
			
		||||
        [[8~    `"*88888888"    .@8Ned8"  ...ue888b        .      .         .u      :888ooo 9888i   .dL ]],
 | 
			
		||||
        [[!      .  `f""""    .@^%8888"   888R Y888r  .udR88N   .@88u    ud8888.  -*8888888 `Y888k:*888.]],
 | 
			
		||||
        [[ ~:...-` :8L <)88: x88:  `)8b.  888R I888> <888'888k ''888E` :888'8888.   8888      888E  888I]],
 | 
			
		||||
        [[    .   :888:>X88! 8888N=*8888  888R I888> 9888 'Y"    888E  d888 '88%"   8888      888E  888I]],
 | 
			
		||||
        [[ :~"88x 48888X ^`   %8"    R88  888R I888> 9888        888E  8888.+"      8888      888E  888I]],
 | 
			
		||||
        [[<  :888k'88888X      @8Wou 9%  u8888cJ888  9888        888E  8888L       .8888Lu=   888E  888I]],
 | 
			
		||||
        [[  d8888f '88888X   .888888P`    "*888*P"   ?8888u../   888&  '8888c. .+  ^%888*    x888N><888']],
 | 
			
		||||
        [[ :8888!    ?8888>  `   ^"F        'Y"       "8888P'    R888"  "88888%      'Y"      "88"  888 ]],
 | 
			
		||||
        [[ X888!      8888~                             "P'       ""      "YP'                      88F ]],
 | 
			
		||||
        [[ '888       X88f                                                                         98"  ]],
 | 
			
		||||
        [[  '%8:     .8*"                                                                        ./"    ]],
 | 
			
		||||
        [[     ^----~"`                                                                         ~`      ]],
 | 
			
		||||
      },
 | 
			
		||||
      fsociety_aligator = {
 | 
			
		||||
        [[      :::::::::: ::::::::   ::::::::   :::::::: ::::::::::: :::::::::: ::::::::::: :::   ::: ]],
 | 
			
		||||
        [[     :+:       :+:    :+: :+:    :+: :+:    :+:    :+:     :+:            :+:     :+:   :+:  ]],
 | 
			
		||||
        [[    +:+       +:+        +:+    +:+ +:+           +:+     +:+            +:+      +:+ +:+    ]],
 | 
			
		||||
        [[   :#::+::#  +#++:++#++ +#+    +:+ +#+           +#+     +#++:++#       +#+       +#++:      ]],
 | 
			
		||||
        [[  +#+              +#+ +#+    +#+ +#+           +#+     +#+            +#+        +#+        ]],
 | 
			
		||||
        [[ #+#       #+#    #+# #+#    #+# #+#    #+#    #+#     #+#            #+#        #+#         ]],
 | 
			
		||||
        [[###        ########   ########   ######## ########### ##########     ###        ###          ]],
 | 
			
		||||
      },
 | 
			
		||||
      hacker_face = {
 | 
			
		||||
        [[⠀⠀⠀⢀⣴⣾⣿⣿⣿⡶⢦⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⠴⢾⣿⣿⣿⣷⣦⡀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⣰⣿⣿⣿⣿⣿⣿⣿⣷⣦⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣡⣴⣾⣿⣿⣿⣿⣿⣿⣿⡄⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠉⠀⠀⠀⠀⠈⠙⠻⣿⣿⣿⣷⡄⠀⠀⠀⠀⠀⣰⣿⣿⣿⡿⠛⠉⠁⠀⠀⠀⠈⠉⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⣯⠁⠀⠀⠀⠀⠀⢈⣿⠟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⢀⡴⢖⣛⣧⣴⣶⣤⣄⠹⡆⡀⠀⠀⠀⠀⡼⢃⣤⣴⣶⣧⣽⣛⡲⣤⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⢱⣄⣴⣟⠾⣿⣿⣿⣿⣿⣿⣿⡇⠀⡇⠀⠀⠀⡇⠀⣿⣿⣿⣿⣿⣿⣿⣿⣞⣷⣄⣴⠃⠀]],
 | 
			
		||||
        [[⢠⠟⠉⠉⠉⠛⠓⠿⠏⠸⠟⠛⠉⠀⢠⡇⠀⠀⠀⣿⠀⠀⠉⠛⠻⠇⠿⠟⠛⠋⠉⠉⠙⠻⡀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⡇⠀⠀⠀⣿⣆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡾⢿⡇⠀⠀⠀⢿⠿⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⡄⠀⠀⠀⠀⠀⠀⠀⣀⣤⢴⠏⠀⣸⠁⠀⠀⠀⢸⡆⠈⢳⡀⣤⡀⠀⠀⠀⠀⠀⠀⠀⡄⠀]],
 | 
			
		||||
        [[⠀⢹⣶⢤⣤⡤⠴⠶⠛⠉⠀⠸⠀⣄⢻⣄⠀⠀⢀⣸⢃⣀⠰⠃⠈⠙⠓⠶⠤⣤⣤⢤⣾⠃⠀]],
 | 
			
		||||
        [[⠀⠈⢿⣆⠻⣿⣄⠀⠀⠀⠀⠀⠀⠉⣱⣬⣍⣉⣯⣥⡉⠁⠀⠀⠀⠀⠀⠀⣴⣿⢃⣾⡏⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠈⢿⣆⠹⣿⣧⣀⣀⣀⣀⣤⣴⣿⣿⠟⠙⢿⣿⣿⣦⣄⣀⣀⣀⣠⣾⡿⠁⣼⠟⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠈⢿⣦⡈⠻⠿⠿⠿⠿⢿⣿⣿⣋⣀⣀⣀⣻⣿⣿⠿⠿⠿⠿⠿⠛⣠⣾⠏⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⠻⣎⠓⢤⣀⠀⠀⠀⠉⠉⠉⠉⠉⠉⠉⠉⠁⠀⠀⠀⣀⠴⢊⡿⠋⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⠀⠘⢧⠀⠀⠀⠀⠀⠀⠀⢤⣄⣀⣠⡄⠀⠀⠀⠀⠀⠀⢠⠞⠁⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⠀⠀⠀⠱⣄⠀⠀⠀⠀⠀⠀⣿⣿⡏⠀⠀⠀⠀⠀⠀⡠⠃⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⣿⣿⣷⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣿⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⣿⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      },
 | 
			
		||||
      pacman = {
 | 
			
		||||
        [[                                                                              ]],
 | 
			
		||||
        [[                                    ██████                                    ]],
 | 
			
		||||
        [[                                ████▒▒▒▒▒▒████                                ]],
 | 
			
		||||
        [[                              ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒██                              ]],
 | 
			
		||||
        [[                            ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██                            ]],
 | 
			
		||||
        [[                          ██▒▒▒▒▒▒▒▒    ▒▒▒▒▒▒▒▒                              ]],
 | 
			
		||||
        [[                          ██▒▒▒▒▒▒  ▒▒▓▓▒▒▒▒▒▒  ▓▓▓▓                          ]],
 | 
			
		||||
        [[                          ██▒▒▒▒▒▒  ▒▒▓▓▒▒▒▒▒▒  ▒▒▓▓                          ]],
 | 
			
		||||
        [[                        ██▒▒▒▒▒▒▒▒▒▒    ▒▒▒▒▒▒▒▒    ██                        ]],
 | 
			
		||||
        [[                        ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██                        ]],
 | 
			
		||||
        [[                        ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██                        ]],
 | 
			
		||||
        [[                        ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██                        ]],
 | 
			
		||||
        [[                        ██▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒██                        ]],
 | 
			
		||||
        [[                        ██▒▒██▒▒▒▒▒▒██▒▒▒▒▒▒▒▒██▒▒▒▒██                        ]],
 | 
			
		||||
        [[                        ████  ██▒▒██  ██▒▒▒▒██  ██▒▒██                        ]],
 | 
			
		||||
        [[                        ██      ██      ████      ████                        ]],
 | 
			
		||||
        [[                                                                              ]],
 | 
			
		||||
      },
 | 
			
		||||
      cat = {
 | 
			
		||||
        [[          ▀████▀▄▄              ▄█ ]],
 | 
			
		||||
        [[            █▀    ▀▀▄▄▄▄▄    ▄▄▀▀█ ]],
 | 
			
		||||
        [[    ▄        █          ▀▀▀▀▄  ▄▀  ]],
 | 
			
		||||
        [[   ▄▀ ▀▄      ▀▄              ▀▄▀  ]],
 | 
			
		||||
        [[  ▄▀    █     █▀   ▄█▀▄      ▄█    ]],
 | 
			
		||||
        [[  ▀▄     ▀▄  █     ▀██▀     ██▄█   ]],
 | 
			
		||||
        [[   ▀▄    ▄▀ █   ▄██▄   ▄  ▄  ▀▀ █  ]],
 | 
			
		||||
        [[    █  ▄▀  █    ▀██▀    ▀▀ ▀▀  ▄▀  ]],
 | 
			
		||||
        [[   █   █  █      ▄▄           ▄▀   ]],
 | 
			
		||||
      },
 | 
			
		||||
      skull_emperor = {
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⠀⠀⢀⣶⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⣀⠀⠀⠀⠀⢀⣾⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⢿⣷⣄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣾⣿⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⣿⣧⡀⠀⠀⣼⠃⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣿⠻⣷⣄⡀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣧⠀⠀⠀⠀⠀⢀⣴⡶⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⢸⣿⣧⠀⣰⡏⠀⣿⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⣀⣠⣤⣈⣧⠈⠻⣿⣦⣀⣀⠀⠀⠀⣸⣿⣿⣿⣆⠀⠀⠀⣴⣿⣿⠃⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠘⡏⢿⣧⣿⠀⢀⣿⠁⠀⢀⣾⡇⠀⠀⠀⣀⠤⠖⠂⠉⠉⠀⠀⠀⠀⠀⠸⡏⣀⣀⣭⣷⣄⠉⠉⠒⢻⣿⣿⣿⣿⡆⢀⣾⣿⣿⡏⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⣤⣇⠘⣿⠇⠀⢸⡇⠀⢠⣾⣿⣀⡤⠚⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢻⢻⣽⣿⣿⣿⣧⡀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⢸⣿⣿⡀⢻⡇⢠⡿⠀⣰⣿⡿⠛⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣿⣿⣿⣿⣿⣿⣷⡀⢸⣿⣿⣿⣿⠏⠙⢿⣿⣿⣇⠀⠀⠀⠀⢀⣶]],
 | 
			
		||||
        [[⢸⣿⣿⣧⣈⣧⡿⠁⢠⡿⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⡀⠀⠀⠀⠀⠸⣿⣿⣿⣿⣿⣿⣧⠈⣿⣿⣿⡏⠀⠀⣼⢹⣿⣿⠀⠀⠀⢀⣾⣿]],
 | 
			
		||||
        [[⣿⡟⢿⣿⣿⣿⠁⡴⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⠳⡀⠀⠀⠀⠈⠻⣿⣿⣿⣿⣿⡆⢹⣿⣿⠁⠀⢀⢛⣼⣿⣿⠳⣄⢀⣾⣿⣿]],
 | 
			
		||||
        [[⢻⡇⠀⢻⣿⣇⡞⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣧⠘⢦⣀⡀⠀⠀⠈⠻⣿⣿⣿⣇⠀⣿⡟⠀⠀⡞⣿⣿⣿⣿⠀⠘⣿⡗⣿⣿]],
 | 
			
		||||
        [[⠈⣧⠀⠈⣿⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢦⡀⠈⠙⡓⠶⣤⣄⡈⠻⣿⣿⣧⣸⡇⡆⠀⢳⣿⣿⣿⡇⠀⣸⣏⠁⣿⣿]],
 | 
			
		||||
        [[⠀⠹⡆⠀⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢦⡀⠉⠳⢦⡈⠛⠷⣿⣿⣿⣿⣅⠁⠀⣿⣿⣿⡟⠀⢰⣿⠃⠀⣼⣿]],
 | 
			
		||||
        [[⠀⠀⢻⣀⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⠲⣄⣄⣌⣲⣄⠸⣿⡿⣿⣿⣷⣴⣿⣿⠟⠀⠀⣿⡿⠀⠀⣸⡟]],
 | 
			
		||||
        [[⠀⠀⠘⣿⡏⠀⠀⠀⢀⠀⠀⠀⠀⠀⠐⣿⣿⢿⣶⣶⣦⣄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⢿⣿⣿⣷⣿⣧⠈⠻⢿⣿⣿⠋⠀⠀⢸⣿⠇⠀⣼⡿⣇]],
 | 
			
		||||
        [[⠀⣀⡴⢋⣴⣿⣿⣿⣿⣿⡷⠿⣿⣿⣿⢣⣾⣿⣿⣿⣿⣷⣭⣙⠶⡄⠀⠀⢰⡇⠀⠀⠀⠀⠀⠙⠻⣿⣿⣿⣧⠀⠘⠛⣿⣆⠀⠀⣿⡇⠀⢀⣿⠇⢸]],
 | 
			
		||||
        [[⠀⢻⠀⣿⣿⣿⣿⣿⣿⠟⠁⠀⠀⠈⢁⣾⣿⣿⣿⣿⣿⣿⣿⣿⣷⡹⡄⠀⠀⠳⡄⠀⠀⠀⠀⠀⠀⠈⠙⠿⣿⣇⠀⠀⠈⢻⡆⢸⠃⠀⠀⣾⠏⠀⢸]],
 | 
			
		||||
        [[⠀⠈⡇⣿⣿⣿⣿⣿⣧⠀⠀⠀⠀⠀⠈⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡹⡀⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⢿⣾⡄⠀⠀⢿⡟⠀⣠⣼⣿⠇⠀⢼]],
 | 
			
		||||
        [[⠀⠸⣅⢷⣿⣿⣿⣿⣿⣧⡀⠀⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠇⡇⠀⠀⢧⡀⠀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠹⣿⣦⢠⣿⣿⣿⡿⣿⣿⠀⠀⡟]],
 | 
			
		||||
        [[⠀⣀⡿⠈⢿⣿⣿⡇⢻⣿⡗⠀⠀⠀⠀⢰⣿⣿⣿⣿⣿⣿⣿⣿⡿⠃⣸⠁⠀⠀⠀⠀⠉⠁⠀⠀⠀⠀⠀⣠⣴⣿⣿⣿⣿⣿⣿⠿⠋⣴⣿⣿⠀⢀⡟]],
 | 
			
		||||
        [[⠀⡿⠁⠀⠼⠛⢹⣯⣸⣿⣷⡄⠀⠀⠀⠀⠈⠻⢿⣿⣿⣿⡿⠛⠁⡰⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣰⠞⠉⢿⡿⠿⠟⣻⡟⠁⢠⡾⠛⢩⣿⣰⡿⠀]],
 | 
			
		||||
        [[⠸⡇⠀⠀⠀⠀⢸⠇⠿⠋⣿⡿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠜⠁⠀⠀⣠⡴⢻⣿⣿⣶⣶⣶⣾⡿⠀⡖⢸⡇⠀⢠⡟⣠⡾⣋⣴⣴⠟⣽⣿⠃⠀]],
 | 
			
		||||
        [[⠀⢷⠀⢀⡾⣤⣼⣶⡖⠶⣿⠃⠀⠀⠀⠀⠀⢲⣷⣶⡶⠶⠆⣀⣀⣠⣴⠟⡟⠀⠀⠻⣿⣿⣿⣿⣿⠁⢨⠃⣸⣿⣦⣿⣟⣩⣾⡿⠋⣡⣾⣿⠃⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠉⠉⠀⢰⠏⠈⠻⠀⠀⠀⠀⠀⠀⠀⠀⠀⣻⣏⣴⣾⣿⡟⠁⠀⠀⣸⡇⠀⠀⠀⢿⠻⠿⢫⠏⠀⠀⠀⣿⣿⣿⣿⣿⠿⠁⣶⣴⣿⣿⠇⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⢀⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⡿⣿⠏⣿⡇⠀⢀⣾⣿⠧⠀⠀⠀⢸⡄⣰⠟⠀⠀⠀⢠⣿⣿⣿⣯⣁⣠⣾⣿⣿⠟⠋⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⣼⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠘⠋⢰⣿⣿⣶⡾⣿⣿⠇⠀⣠⠞⢉⠜⠁⡴⠀⢀⣴⡟⠉⠀⠉⠛⠿⠿⠟⠋⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⣹⣶⡦⣴⢲⣴⢦⡤⣤⣤⣄⣤⣤⣤⣤⣤⣴⡿⠋⠙⢿⣯⣿⣿⠀⡰⠃⠀⠋⠀⡼⠁⠀⡞⣸⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⡏⣿⢰⡇⢰⠇⢸⡇⣸⣨⣇⣸⣏⣸⢇⣾⣿⣀⣠⠤⠤⠵⣫⠏⠀⠀⠀⠀⠀⠀⠀⠀⡼⠀⢹⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠙⣟⢿⢿⣿⣷⣿⣹⣇⣿⣸⣧⠥⠿⠴⠜⠋⠁⠀⠀⡴⠞⠁⠀⠀⠀⠀⠀⠀⠀⢀⡴⠁⢀⣼⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⣿⠛⠉⠉⠙⠉⠁⠈⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⢀⣠⣾⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⢸⣠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣠⣤⣤⣴⣶⠾⠛⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⣸⠟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣴⣶⣾⠿⠛⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⢸⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠀⢀⣠⣾⡾⠟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⣿⠀⢀⣀⡀⣀⡀⠀⠀⠀⠀⠀⠀⣀⣠⣴⣶⠶⠿⠛⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⠘⢷⣂⣀⣀⣀⣍⣳⣶⣾⣿⠿⠟⠛⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠀⠀⠀⠙⠛⠻⠿⠿⠛⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      },
 | 
			
		||||
      skull_bull = {
 | 
			
		||||
        [[⠀⠀⠀⢀⡤⢤⢄⣀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⣼⡅⠠⢀⡈⢀⣙⣦⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀⠤⠤⢤⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⢸⠀⠀⠀⠈⠙⠿⣝⢇⠀⠀⣀⣠⠤⠤⠤⠤⣤⡤⠚⠁⠀⠀⠀⠀⠀⠉⠢⡀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⢧⡀⠀⠀⠠⣄⠈⢺⣺⡍⠀⠀⠀⠀⣠⠖⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⡄⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠸⡆⢀⠘⣔⠄⠑⠂⠈⠀⡔⠤⠴⠚⡁⠀⠀⢀⠀⠀⠀⣠⠔⢶⡢⡀⠀⠠⡇⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⢠⣇⠀⢃⡀⠁⠀⠀⠀⡸⠃⢀⡴⠊⢀⠀⠀⠈⢂⡤⠚⠁⠀⠀⠙⢿⠀⠉⡇⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⣠⠾⣹⢤⢼⡆⠀⠀⠀⠀⠀⠀⠈⢀⠞⠁⠀⢠⣴⠏⠀⠀⠀⠀⠀⠀⠸⡇⠀⢇⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⣾⢡⣤⡈⠣⡀⠙⠒⠀⠀⠀⠀⣀⠤⠤⣤⠤⣌⠁⢛⡄⠀⠀⠀⠀⠀⠠⡀⢇⠀⠘⣆⠀⢀⡴⡆]],
 | 
			
		||||
        [[⠀⠀⣿⢻⣿⣿⣄⡸⠀⡆⠀⠒⣈⣩⣉⣉⡈⠉⠉⠢⣉⠉⠀⠀⠀⠀⠀⠀⠀⢣⠈⠢⣀⠈⠉⢁⡴⠃]],
 | 
			
		||||
        [[⠀⢀⢿⣿⣿⡿⠛⠁⠀⢻⣿⣿⣿⣿⣿⣿⣿⣷⣦⣄⣸⢿⠀⠀⠀⠀⠀⠀⠀⠸⡄⠀⡇⠉⠉⠁⠀⠀]],
 | 
			
		||||
        [[⣠⣞⠘⢛⡛⢻⣷⣤⡀⠈⡎⣿⣿⣿⣿⣿⣿⣿⣿⣿⠹⠏⠀⠀⠀⠀⠀⠀⠀⠀⠇⢰⡇⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠻⣌⠯⡁⢠⣸⣿⣿⣷⡄⠁⠈⢻⢿⣿⣿⣿⣿⠿⠋⠃⠰⣀⠀⠀⠀⠀⠀⠀⠀⠀⣾⠇⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠉⢻⠨⠟⠹⢿⣿⢣⠀⠀⢨⡧⣌⠉⠁⣀⠴⠊⠑⠀⡸⠛⠀⠀⠀⠀⠀⣸⢲⡟⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⣠⠏⠀⠀⠀⠉⠉⠁⠀⠐⠁⠀⠀⢉⣉⠁⠀⠀⢀⠔⢷⣄⠀⠀⠀⠀⢠⣻⡞⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⢠⠟⡦⣀⣀⣀⠀⠀⠀⠀⠀⠀⠀⢾⠉⠀⣹⣦⠤⣿⣿⡟⠁⠀⠀⠀⢀⣶⠟⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠈⠙⣦⣁⡎⢈⠏⢱⠚⢲⠔⢲⠲⡖⠖⣦⣿⡟⠀⣿⡿⠁⣠⢔⡤⠷⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⢿⣟⠿⡿⠿⠶⢾⠶⠾⠶⠾⠞⢻⠋⠏⣸⠁⠀⡽⠓⠚⠋⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⢸⡏⠳⠷⠴⠣⠜⠢⠜⠓⠛⠊⠀⢀⡴⠣⠀⠀⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⣏⠒⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠊⠁⢀⣀⣀⠴⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠘⢦⡀⠀⠀⠀⠀⠀⠀⢀⣀⠴⠖⠒⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
        [[⠀⠀⠀⠀⠉⠑⠒⠒⠐⠒⠛⠋⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀]],
 | 
			
		||||
      },
 | 
			
		||||
  local _getFortune = function()
 | 
			
		||||
    local _fortunes = {
 | 
			
		||||
      ' \nI\'m sick of following my dreams, man. I\'m just going\nto ask where they\'re going and hook up with ’em later.\n \n—Mitch Hedberg',
 | 
			
		||||
      ' \nBefore you criticize someone, you should walk a mile in\ntheir shoes. That way when you criticize them, you are a\nmile away from them and you have their shoes. \n \n—Jack Handey',
 | 
			
		||||
      'Before you marry a person, you should first make them use a computer with slow Internet to see who they really are. —Will Ferrell',
 | 
			
		||||
      ' \nCommon sense is like deodorant. The people who need it\nmost never use it.\n \n—Anonymous',
 | 
			
		||||
      ' \nHere’s all you have to know about men and women: Women\nare crazy, men are stupid. And the main reason women\nare crazy is that men are stupid.\n \n—George Carlin',
 | 
			
		||||
      ' \nCal: “You are really pushing my buttons today.”\nBecky: “Which one is \'mute \'?”\n \n—Waitress, the Musical',
 | 
			
		||||
      ' \nMy grief counselor died. He was so good, I don’t even\ncare.',
 | 
			
		||||
      ' \nThe doctor gave me one year to live, so I shot him with\nmy gun. The judge gave me 15 years. Problem solved.',
 | 
			
		||||
      ' \nMy grandfather said my generation relies too much on\nthe latest technology. So I unplugged his life support.',
 | 
			
		||||
      ' \nFeminism: because not all women can be pretty.',
 | 
			
		||||
      ' \nI am busy right now, can I ignore you some other time?',
 | 
			
		||||
      ' \nIt’s okay if you don’t like me. Not everyone has\ngood taste.',
 | 
			
		||||
      ' \nLight travels faster than sound. This is why some\npeople appear bright until they speak.\n \n-Steven Wright',
 | 
			
		||||
      ' \nDon’t worry about what people think. They don’t do it\nvery often.',
 | 
			
		||||
      ' \nIf at first, you don’t succeed, skydiving is not for\nyou.',
 | 
			
		||||
      ' \nPeople say that laughter is the best medicine… your\nface must be curing the world.',
 | 
			
		||||
      ' \nWell at least your mom thinks you’re pretty.',
 | 
			
		||||
      ' \nThe stuff you heard about me is a lie. I\'m way\nworse.',
 | 
			
		||||
      ' \nMarriage. Because your crappy day doesn\'t have to\nend at work.',
 | 
			
		||||
      ' \nI don\'t have a welcome mat at my door because I\'m\nnot a liar.',
 | 
			
		||||
      ' \nI\'ll get over it. I just need to be dramatic first.',
 | 
			
		||||
      ' \nSorry for being late. I got caught up enjoying my last\nfew minutes of not being here.',
 | 
			
		||||
      ' \nYou\'re everything I want in someone I don\'t want\nanymore.',
 | 
			
		||||
      ' \nFriendships must be built on a solid foundation of\nalcohol, sarcasm, inappropriateness, and shenanigans.',
 | 
			
		||||
    }
 | 
			
		||||
    return _fortunes[math.random(1, #_fortunes)]
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
    dashboard.section.header.val = ascii_arts['pacman'] -- require("ascii").art.gaming.pacman['basic']
 | 
			
		||||
  return {
 | 
			
		||||
    'goolord/alpha-nvim',
 | 
			
		||||
    dependencies = { 'nvim-tree/nvim-web-devicons' }, -- removing fortune from dependencies fixed the highlighting(only for predefined highlights)
 | 
			
		||||
    config = function()
 | 
			
		||||
      local alpha = require("alpha")
 | 
			
		||||
      local dashboard = require("alpha.themes.dashboard")
 | 
			
		||||
 | 
			
		||||
    -- Set menu
 | 
			
		||||
    dashboard.section.buttons.val = {
 | 
			
		||||
      dashboard.button("e", "  New file", ":ene <BAR> startinsert <CR>"),
 | 
			
		||||
      dashboard.button("r", "  Recently used files", ":Telescope oldfiles<CR>"),
 | 
			
		||||
      dashboard.button("f", "  Find file", ":Telescope find_files<CR>"),
 | 
			
		||||
      dashboard.button("t", "  Find text", ":Telescope live_grep <CR>"),
 | 
			
		||||
      dashboard.button("q", "  Quit NVIM", ":qa<CR>"),
 | 
			
		||||
    }
 | 
			
		||||
      dashboard.section.header.val = _ascii_arts['pacman'] -- require("ascii").art.gaming.pacman['basic']
 | 
			
		||||
 | 
			
		||||
    local getFortune = function()
 | 
			
		||||
      local fortunes = {
 | 
			
		||||
        ' \nI\'m sick of following my dreams, man. I\'m just going\nto ask where they\'re going and hook up with ’em later.\n \n—Mitch Hedberg',
 | 
			
		||||
        ' \nBefore you criticize someone, you should walk a mile in\ntheir shoes. That way when you criticize them, you are a\nmile away from them and you have their shoes. \n \n—Jack Handey',
 | 
			
		||||
        'Before you marry a person, you should first make them use a computer with slow Internet to see who they really are. —Will Ferrell',
 | 
			
		||||
        ' \nCommon sense is like deodorant. The people who need it\nmost never use it.\n \n—Anonymous',
 | 
			
		||||
        ' \nHere’s all you have to know about men and women: Women\nare crazy, men are stupid. And the main reason women\nare crazy is that men are stupid.\n \n—George Carlin',
 | 
			
		||||
        ' \nCal: “You are really pushing my buttons today.”\nBecky: “Which one is \'mute \'?”\n \n—Waitress, the Musical',
 | 
			
		||||
        ' \nMy grief counselor died. He was so good, I don’t even\ncare.',
 | 
			
		||||
        ' \nThe doctor gave me one year to live, so I shot him with\nmy gun. The judge gave me 15 years. Problem solved.',
 | 
			
		||||
        ' \nMy grandfather said my generation relies too much on\nthe latest technology. So I unplugged his life support.',
 | 
			
		||||
        ' \nFeminism: because not all women can be pretty.',
 | 
			
		||||
        ' \nI am busy right now, can I ignore you some other time?',
 | 
			
		||||
        ' \nIt’s okay if you don’t like me. Not everyone has\ngood taste.',
 | 
			
		||||
        ' \nLight travels faster than sound. This is why some\npeople appear bright until they speak.\n \n-Steven Wright',
 | 
			
		||||
        ' \nDon’t worry about what people think. They don’t do it\nvery often.',
 | 
			
		||||
        ' \nIf at first, you don’t succeed, skydiving is not for\nyou.',
 | 
			
		||||
        ' \nPeople say that laughter is the best medicine… your\nface must be curing the world.',
 | 
			
		||||
        ' \nWell at least your mom thinks you’re pretty.',
 | 
			
		||||
        ' \nThe stuff you heard about me is a lie. I\'m way\nworse.',
 | 
			
		||||
        ' \nMarriage. Because your crappy day doesn\'t have to\nend at work.',
 | 
			
		||||
        ' \nI don\'t have a welcome mat at my door because I\'m\nnot a liar.',
 | 
			
		||||
        ' \nI\'ll get over it. I just need to be dramatic first.',
 | 
			
		||||
        ' \nSorry for being late. I got caught up enjoying my last\nfew minutes of not being here.',
 | 
			
		||||
        ' \nYou\'re everything I want in someone I don\'t want\nanymore.',
 | 
			
		||||
        ' \nFriendships must be built on a solid foundation of\nalcohol, sarcasm, inappropriateness, and shenanigans.',
 | 
			
		||||
      -- Set menu
 | 
			
		||||
      dashboard.section.buttons.val = {
 | 
			
		||||
        dashboard.button("e", "  New file", ":ene <BAR> startinsert <CR>"),
 | 
			
		||||
        dashboard.button("r", "  Recently used files", ":Telescope oldfiles<CR>"),
 | 
			
		||||
        dashboard.button("f", "  Find file", ":Telescope find_files<CR>"),
 | 
			
		||||
        dashboard.button("t", "  Find text", ":Telescope live_grep <CR>"),
 | 
			
		||||
        dashboard.button("q", "  Quit NVIM", ":qa<CR>"),
 | 
			
		||||
      }
 | 
			
		||||
      return fortunes[math.random(1, #fortunes)]
 | 
			
		||||
    end
 | 
			
		||||
 | 
			
		||||
    -- Set footer
 | 
			
		||||
    --[[local handle = assert(io.popen('fortune -s'))
 | 
			
		||||
      -- Set footer
 | 
			
		||||
      --[[local handle = assert(io.popen('fortune -s'))
 | 
			
		||||
    local fortune = handle:read("*all")
 | 
			
		||||
    handle:close()]]
 | 
			
		||||
    dashboard.section.footer.val = getFortune() -- require('alpha.fortune')()
 | 
			
		||||
    dashboard.section.header.opts.hl = "Error"
 | 
			
		||||
    dashboard.section.buttons.opts.hl = "Debug"
 | 
			
		||||
    dashboard.section.footer.opts.hl = "Constant"
 | 
			
		||||
    dashboard.config.opts.noautocmd = true
 | 
			
		||||
      dashboard.section.footer.val = require('alpha.fortune')()
 | 
			
		||||
      dashboard.section.header.opts.hl = "Error"
 | 
			
		||||
      dashboard.section.buttons.opts.hl = "Debug"
 | 
			
		||||
      dashboard.section.footer.opts.hl = "NonText"
 | 
			
		||||
      dashboard.config.opts.noautocmd = true
 | 
			
		||||
 | 
			
		||||
    vim.cmd [[autocmd User AlphaReady echo 'ready']]
 | 
			
		||||
      vim.cmd [[autocmd User AlphaReady echo 'ready']]
 | 
			
		||||
 | 
			
		||||
    alpha.setup(dashboard.opts)
 | 
			
		||||
  end
 | 
			
		||||
}
 | 
			
		||||
      alpha.setup(dashboard.opts)
 | 
			
		||||
    end
 | 
			
		||||
  }
 | 
			
		||||
end)()
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue