@maka/maka-cli 4.6.3 → 4.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (138) hide show
  1. package/README.md +0 -10
  2. package/bundle/obf/package.json +1 -1
  3. package/bundle/obf/src/README.md +0 -10
  4. package/bundle/obf/src/command.js +1 -1
  5. package/bundle/obf/src/commands/_index.js +1 -1
  6. package/bundle/obf/src/commands/ai.js +1 -1
  7. package/bundle/obf/src/commands/aws/_index.js +1 -1
  8. package/bundle/obf/src/commands/aws/aws.command.js +1 -1
  9. package/bundle/obf/src/commands/aws/chz.sub.cmd.js +1 -1
  10. package/bundle/obf/src/commands/aws/ci.sub.cmd.js +1 -1
  11. package/bundle/obf/src/commands/aws/ckp.sub.cmd.js +1 -1
  12. package/bundle/obf/src/commands/aws/csg.sub.cmd.js +1 -1
  13. package/bundle/obf/src/commands/aws/di.sub.cmd.js +1 -1
  14. package/bundle/obf/src/commands/aws/dkp.sub.cmd.js +1 -1
  15. package/bundle/obf/src/commands/aws/dsg.sub.cmd.js +1 -1
  16. package/bundle/obf/src/commands/aws/rbi.sub.cmd.js +1 -1
  17. package/bundle/obf/src/commands/aws/rdn.sub.cmd.js +1 -1
  18. package/bundle/obf/src/commands/aws/rkp.sub.cmd.js +1 -1
  19. package/bundle/obf/src/commands/aws/sth.sub.cmd.js +1 -1
  20. package/bundle/obf/src/commands/aws/ti.sub.cmd.js +1 -1
  21. package/bundle/obf/src/commands/build/_index.js +1 -1
  22. package/bundle/obf/src/commands/build/build.js +1 -1
  23. package/bundle/obf/src/commands/build/docker.sub.cmd.js +1 -1
  24. package/bundle/obf/src/commands/create.js +1 -1
  25. package/bundle/obf/src/commands/debug.js +1 -1
  26. package/bundle/obf/src/commands/deploy.js +1 -1
  27. package/bundle/obf/src/commands/game/_index.js +1 -1
  28. package/bundle/obf/src/commands/game/battleship.sub.cmd.js +1 -1
  29. package/bundle/obf/src/commands/game/play.command.js +1 -1
  30. package/bundle/obf/src/commands/game/pong.sub.cmd.js +1 -1
  31. package/bundle/obf/src/commands/game/sideQuest/commands/command.js +1 -1
  32. package/bundle/obf/src/commands/game/sideQuest/commands/drop.js +1 -1
  33. package/bundle/obf/src/commands/game/sideQuest/commands/equip.js +1 -1
  34. package/bundle/obf/src/commands/game/sideQuest/commands/go.js +1 -1
  35. package/bundle/obf/src/commands/game/sideQuest/commands/lock.js +1 -1
  36. package/bundle/obf/src/commands/game/sideQuest/commands/look.js +1 -1
  37. package/bundle/obf/src/commands/game/sideQuest/commands/say.js +1 -1
  38. package/bundle/obf/src/commands/game/sideQuest/commands/search.js +1 -1
  39. package/bundle/obf/src/commands/game/sideQuest/commands/solve.js +1 -1
  40. package/bundle/obf/src/commands/game/sideQuest/commands/take.js +1 -1
  41. package/bundle/obf/src/commands/game/sideQuest/commands/unequip.js +1 -1
  42. package/bundle/obf/src/commands/game/sideQuest/commands/unlock.js +1 -1
  43. package/bundle/obf/src/commands/game/sideQuest/commands/use.js +1 -1
  44. package/bundle/obf/src/commands/game/sideQuest/factories/commandF.js +1 -1
  45. package/bundle/obf/src/commands/game/sideQuest/factories/roomsF.js +1 -1
  46. package/bundle/obf/src/commands/game/sideQuest/game.js +1 -1
  47. package/bundle/obf/src/commands/game/sideQuest/models/_index.js +1 -1
  48. package/bundle/obf/src/commands/game/sideQuest/models/door.js +1 -1
  49. package/bundle/obf/src/commands/game/sideQuest/models/inventory.js +1 -1
  50. package/bundle/obf/src/commands/game/sideQuest/models/item.js +1 -1
  51. package/bundle/obf/src/commands/game/sideQuest/models/npc.js +1 -1
  52. package/bundle/obf/src/commands/game/sideQuest/models/player.js +1 -1
  53. package/bundle/obf/src/commands/game/sideQuest/models/puzzle.js +1 -1
  54. package/bundle/obf/src/commands/game/sideQuest/models/room.js +1 -1
  55. package/bundle/obf/src/commands/game/sideQuest/models/scene.js +1 -1
  56. package/bundle/obf/src/commands/game/sideQuest/scenes/items.js +1 -1
  57. package/bundle/obf/src/commands/game/sideQuest/scenes/rooms.js +1 -1
  58. package/bundle/obf/src/commands/game/sideQuest/types/abstracts.js +1 -1
  59. package/bundle/obf/src/commands/game/sideQuest/types/enums.js +1 -1
  60. package/bundle/obf/src/commands/game/sideQuest/types/interfaces.js +1 -1
  61. package/bundle/obf/src/commands/game/sideQuest/types/types.js +1 -1
  62. package/bundle/obf/src/commands/game/sideQuest/ui.js +1 -1
  63. package/bundle/obf/src/commands/game/sideQuest/utilities/logger.js +1 -1
  64. package/bundle/obf/src/commands/game/sideQuest.sub.cmd.js +1 -1
  65. package/bundle/obf/src/commands/game/snake.sub.cmd.js +1 -1
  66. package/bundle/obf/src/commands/game/tetris.sub.cmd.js +1 -1
  67. package/bundle/obf/src/commands/generate.js +1 -1
  68. package/bundle/obf/src/commands/get/_index.js +1 -1
  69. package/bundle/obf/src/commands/get/get.command.js +1 -1
  70. package/bundle/obf/src/commands/get/global.sub.cmd.js +1 -1
  71. package/bundle/obf/src/commands/get/local.sub.cmd.js +1 -1
  72. package/bundle/obf/src/commands/get/whoami.sub.cmd.js +1 -1
  73. package/bundle/obf/src/commands/help.js +1 -1
  74. package/bundle/obf/src/commands/install.js +1 -1
  75. package/bundle/obf/src/commands/jsdoc.js +1 -1
  76. package/bundle/obf/src/commands/lint.js +1 -1
  77. package/bundle/obf/src/commands/login.js +1 -1
  78. package/bundle/obf/src/commands/logout.js +1 -1
  79. package/bundle/obf/src/commands/logs.js +1 -1
  80. package/bundle/obf/src/commands/maka.cmd.js +1 -1
  81. package/bundle/obf/src/commands/murder.js +1 -1
  82. package/bundle/obf/src/commands/proxy.js +1 -1
  83. package/bundle/obf/src/commands/reconfig.js +1 -1
  84. package/bundle/obf/src/commands/run/_index.js +1 -1
  85. package/bundle/obf/src/commands/run/docker.sub.cmd.js +1 -1
  86. package/bundle/obf/src/commands/run/run.command.js +1 -1
  87. package/bundle/obf/src/commands/set/_index.js +1 -1
  88. package/bundle/obf/src/commands/set/global.sub.cmd.js +1 -1
  89. package/bundle/obf/src/commands/set/local.sub.cmd.js +1 -1
  90. package/bundle/obf/src/commands/set/set.command.js +1 -1
  91. package/bundle/obf/src/commands/ssh.js +1 -1
  92. package/bundle/obf/src/commands/ssl.js +1 -1
  93. package/bundle/obf/src/commands/test.js +1 -1
  94. package/bundle/obf/src/commands/version.js +1 -1
  95. package/bundle/obf/src/error.js +1 -1
  96. package/bundle/obf/src/exec.js +1 -1
  97. package/bundle/obf/src/generator.js +1 -1
  98. package/bundle/obf/src/generators/_index.js +1 -1
  99. package/bundle/obf/src/generators/api.js +1 -1
  100. package/bundle/obf/src/generators/collection.js +1 -1
  101. package/bundle/obf/src/generators/component.js +1 -1
  102. package/bundle/obf/src/generators/config.js +1 -1
  103. package/bundle/obf/src/generators/dbc.js +1 -1
  104. package/bundle/obf/src/generators/dockerfile.js +1 -1
  105. package/bundle/obf/src/generators/hook.js +1 -1
  106. package/bundle/obf/src/generators/kit.js +1 -1
  107. package/bundle/obf/src/generators/layout.js +1 -1
  108. package/bundle/obf/src/generators/maka.gen.js +1 -1
  109. package/bundle/obf/src/generators/methods.js +1 -1
  110. package/bundle/obf/src/generators/package.js +1 -1
  111. package/bundle/obf/src/generators/page.js +1 -1
  112. package/bundle/obf/src/generators/publish.js +1 -1
  113. package/bundle/obf/src/generators/route.js +1 -1
  114. package/bundle/obf/src/generators/service.js +1 -1
  115. package/bundle/obf/src/generators/services/_index.js +1 -1
  116. package/bundle/obf/src/generators/services/openssl.js +1 -1
  117. package/bundle/obf/src/generators/services/translation.js +1 -1
  118. package/bundle/obf/src/maka.js +1 -1
  119. package/bundle/obf/src/tool.js +1 -1
  120. package/bundle/obf/src/tools/actions/actions.class.js +1 -1
  121. package/bundle/obf/src/tools/aws/aws.class.js +1 -1
  122. package/bundle/obf/src/tools/aws/aws.interfaces.js +1 -1
  123. package/bundle/obf/src/tools/docker/docker.class.js +1 -1
  124. package/bundle/obf/src/tools/docker/docker.interfaces.js +1 -1
  125. package/bundle/obf/src/tools/fsi/fsi.class.js +1 -1
  126. package/bundle/obf/src/tools/fsi/fsi.interfaces.js +1 -1
  127. package/bundle/obf/src/tools/https/https.class.js +1 -1
  128. package/bundle/obf/src/tools/https/https.interface.js +1 -1
  129. package/bundle/obf/src/tools/https/progress.class.js +1 -1
  130. package/bundle/obf/src/tools/log/log.class.js +1 -1
  131. package/bundle/obf/src/tools/log/log.interfaces.js +1 -1
  132. package/bundle/obf/src/tools/options/options.class.js +1 -1
  133. package/bundle/obf/src/tools/spawn-async/spawn-async.class.js +1 -1
  134. package/bundle/obf/src/tools/spawn-async/spawn-async.interfaces.js +1 -1
  135. package/bundle/obf/src/tools/ssh/ssh.class.js +1 -1
  136. package/bundle/obf/src/tools/ssh/ssh.interfaces.js +1 -1
  137. package/bundle/obf/src/tools/ssl/ssl.class.js +1 -1
  138. package/package.json +1 -1
@@ -1 +1 @@
1
- const a54i=a54d;(function(a,b){const f=a54d,c=a();while(!![]){try{const d=parseInt(f(0xf0))/0x1+parseInt(f(0xef))/0x2+-parseInt(f(0xd9))/0x3*(parseInt(f(0x13b))/0x4)+-parseInt(f(0xe8))/0x5*(-parseInt(f(0x135))/0x6)+-parseInt(f(0x13d))/0x7*(parseInt(f(0x12f))/0x8)+-parseInt(f(0x10b))/0x9*(-parseInt(f(0xe9))/0xa)+-parseInt(f(0x12b))/0xb*(parseInt(f(0x102))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a54c,0x3c2a4));function a54c(){const j=['Treasure\x20Room','Gang\x20Insignia','creditstick','OUTSIDE','A\x20shiny\x20golden\x20key\x20with\x20intricate\x20engravings.','Dark,\x20grim\x20with\x20chains\x20on\x20walls\x20and\x20an\x20eerie\x20silence.','A\x20key\x20made\x20of\x20pure\x20digital\x20energy.','A\x20gem\x20radiating\x20a\x20mysterious\x20aura.','holyGrail','A\x20digital\x20realm\x20with\x20information\x20streams\x20flowing\x20like\x20rivers.','Central\x20Chamber','shield','The\x20legendary\x20Holy\x20Grail.','You\x20pull\x20the\x20sniper\x20rifle\x20from\x20the\x20gun\x20cabinet.\x20\x20Just\x20as\x20you\x20do,\x20you\x20hear\x20a\x20guy\x20from\x20the\x20Courtyard\x20yell\x20\x22HEY!\x20WHAT\x27S\x20YA\x20NAME?!\x22','Watch\x20Tower','When\x20is\x20a\x20door\x20not\x20a\x20door?\x20When\x20it\x27s\x20ajar!','A\x20thin\x20log\x20book','A\x20chalice\x20made\x20of\x20pure\x20gold.','NORTH','Amulet\x20of\x20Awakening','inside','The\x20data\x20stream\x20reveals\x20a\x20location:\x20Downtown\x20Seattle.','The\x20outskirts\x20of\x20the\x20lawless\x20Redmond\x20Barrens.\x20Gang\x20graffiti\x20is\x20everywhere.','Torture\x20Chamber','A\x20powerful\x20amulet\x20said\x20to\x20wake\x20spirits\x20from\x20slumber.','CorpSec\x20Plans','EAST','The\x20gang\x20members\x20nod\x20and\x20let\x20you\x20pass\x20deeper\x20into\x20the\x20Barrens.','A\x20popular\x20heavy\x20pistol\x20among\x20shadowrunners.','toString','A\x20room\x20filled\x20with\x20potions,\x20beakers,\x20and\x20an\x20enchantment\x20circle.','288035wHrGGy','Golden\x20Key','To\x20enter\x20deeper\x20into\x20the\x20Barrens,\x20you\x20must\x20show\x20allegiance\x20to\x20one\x20of\x20the\x20gangs.','A\x20key\x20stained\x20with\x20old\x20blood.','40IONkua','Study','Break\x20the\x20ward\x20to\x20reveal\x20the\x20hidden\x20magical\x20artifact.','Riddle\x20Book','The\x20chest\x20has\x20a\x20gem-shaped\x20socket.','Jackpoint\x20Login','1111314RPaoyE','book','A\x20hidden\x20alley\x20in\x20the\x20Barrens\x20where\x20shadowrunners\x20meet\x20up\x20for\x20covert\x20jobs.','Matrix\x20Data\x20Haven','document','That\x20passcode\x20is\x20incorrect','24664mHWUsJ','A\x20book\x20containing\x20a\x20mysterious\x20riddle.','337155ryGcOW','The\x20rain-soaked\x20streets\x20of\x20Seattle\x20with\x20neon\x20lights\x20reflecting\x20off\x20wet\x20pavement.\x20The\x20distant\x20sound\x20of\x20corporate\x20security\x20drones\x20can\x20be\x20heard.','Central\x20Chamber\x20Key','Armory','amulet','weapon','Glittering\x20treasures\x20from\x20floor\x20to\x20ceiling.','(((.+)+)+)+$','Encrypted\x20Data\x20Key','A\x20quiet\x20room\x20filled\x20with\x20bookshelves,\x20a\x20large\x20desk,\x20and\x20scattered\x20papers.','Rigger\x27s\x20Workshop','secret123','Library','gem','The\x20gate\x20slowly\x20opens\x20revealing\x20the\x20path\x20to\x20the\x20Central\x20Chamber.','Barrens\x20Entrance','Detailed\x20security\x20plans\x20for\x20a\x20corporate\x20building.','A\x20virtual\x20portal\x20in\x20the\x20Matrix.\x20Glowing\x20neon\x20lights\x20everywhere,\x20with\x20digital\x20sprites\x20zipping\x20by.','Courtyard','The\x20chest\x20remains\x20firmly\x20shut.','An\x20old\x20and\x20rusted\x20sword.','Empty\x20vial','search','78GGfunm','Ancient\x20Gem','drone','Entrance\x20Hall','Mage\x27s\x20Lair','Alchemy\x20Lab','Speak\x20the\x20ancient\x20phrase\x20to\x20unlock\x20the\x20Central\x20Chamber.','release','A\x20grand\x20entrance\x20with\x20huge\x20wooden\x20doors\x20behind\x20and\x20a\x20dimly\x20lit\x20corridor\x20ahead.','SOUTH','key','The\x20chest\x20unlocks\x20revealing\x20the\x20chalice.','basic','A\x20locked\x20glass\x20gun\x20cabinet\x20stands\x20here,\x20with\x20a\x20keypad\x20awaiting\x20a\x20password.','A\x20serene\x20courtyard\x20with\x20a\x20gentle\x20fountain.\x20There\x20are\x20birds\x20bathing.','5JGYpbJ','6460EyuyNU','Downtown\x20Seattle','Corp\x20Enclave','A\x20small\x20surveillance\x20drone.','MCT\x20Fly-Spy','A\x20badge\x20proving\x20your\x20loyalty\x20to\x20one\x20of\x20the\x20Barrens\x27\x20gangs.','490196FMfDnR','381828Opnsqx','west','south','Rusted\x20Sword','cup','A\x20creditstick\x20loaded\x20with\x20nuyen.','outside','The\x20ghost\x20thanks\x20you\x20and\x20disappears,\x20leaving\x20behind\x20the\x20gem.','disenchant','Secret\x20Passage','Nothing\x20happens.','A\x20hideout\x20filled\x20with\x20magical\x20artifacts,\x20wards,\x20and\x20a\x20few\x20summoned\x20spirits\x20guarding\x20the\x20place.','north','The\x20high-security\x20corporate\x20zone,\x20complete\x20with\x20looming\x20skyscrapers\x20and\x20security\x20checkpoints.','apply','east','A\x20shield\x20with\x20the\x20emblem\x20of\x20the\x20dungeon.','A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.','264fFrFkn','Golden\x20Chalice','Barrens\x20Hideout','Corporate\x20Creditstick','Holy\x20Grail','Speak\x20the\x20word\x20to\x20free\x20the\x20ghost.','constructor','Ares\x20Predator','Unlock\x20the\x20encrypted\x20data\x20to\x20receive\x20your\x20next\x20mission.','5733BNahNq'];a54c=function(){return j;};return a54c();}const a54b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a54d;if(c){const e=c[g(0xfe)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a54a=a54b(this,function(){const h=a54d;return a54a[h(0x129)]()[h(0xd8)](h(0x144))[h(0x129)]()[h(0x108)](a54a)[h(0xd8)]('(((.+)+)+)+$');});a54a();export const rooms=[{'name':a54i(0x149),'description':'A\x20vast\x20library\x20filled\x20with\x20ancient\x20books.\x20[START]','isStartRoom':!![],'items':[{'type':a54i(0xe3),'name':a54i(0x12c),'description':a54i(0x110)},{'type':a54i(0x136),'name':'Guard\x27s\x20Log\x20Book','description':a54i(0x11c),'content':'Chad\x20the\x20stupid\x20guard'}],'exits':[{'direction':a54i(0x126),'targetRoom':a54i(0xf9)}]},{'name':a54i(0xf9),'description':'A\x20dimly\x20lit\x20passage\x20with\x20walls\x20made\x20of\x20stone.','exits':[{'direction':a54i(0x11e),'targetRoom':'Treasure\x20Room','keyRequired':'Golden\x20Key'},{'direction':a54i(0xe2),'targetRoom':a54i(0xd4)}]},{'name':a54i(0x10c),'description':'A\x20room\x20glittering\x20with\x20gold\x20and\x20jewels.','items':[{'type':a54i(0x114),'name':a54i(0x106),'description':a54i(0x118)}]},{'name':a54i(0xd4),'description':a54i(0xe7),'roomType':'OUTSIDE','exits':[{'direction':'UP','targetRoom':a54i(0x11a)}]},{'name':a54i(0x11a),'description':'A\x20towering\x20structure\x20giving\x20a\x20bird’s-eye\x20view\x20of\x20the\x20surroundings.','roomType':a54i(0x10f),'puzzle':{'requiredPhrase':a54i(0x148),'riddle':a54i(0xe6),'rewardItem':{'type':'rifle','name':'Sniper\x20Rifle','description':'A\x20long-range\x20weapon.'},'successMessage':a54i(0x119),'failureMessage':a54i(0x13a)}}];export const dungeonConfig=[{'name':a54i(0xdc),'description':a54i(0xe1),'isStartRoom':!![],'roomType':'inside','puzzle':{'requiredPhrase':'open\x20sesame','riddle':a54i(0xdf),'rewardItem':{'type':a54i(0xe3),'name':a54i(0x13f),'description':a54i(0x101)},'successMessage':a54i(0xd0),'failureMessage':a54i(0xfa)},'exits':[{'direction':a54i(0xfc),'targetRoom':a54i(0x130)},{'direction':'east','targetRoom':'Central\x20Chamber','keyRequired':a54i(0x13f)}]},{'name':a54i(0x130),'description':a54i(0x146),'roomType':a54i(0x120),'items':[{'type':a54i(0x136),'name':a54i(0x132),'description':a54i(0x13c),'content':a54i(0x11b)},{'type':a54i(0xe3),'name':a54i(0x13f),'description':a54i(0x101)}],'exits':[{'direction':a54i(0xf2),'targetRoom':a54i(0xdc)},{'direction':a54i(0xff),'targetRoom':'Alchemy\x20Lab'}]},{'name':a54i(0xde),'description':a54i(0x12a),'roomType':a54i(0x120),'items':[{'type':a54i(0xe5),'name':a54i(0xd7),'description':'A\x20clear\x20glass\x20vial.'}],'exits':[{'direction':a54i(0xf1),'targetRoom':'Study'},{'direction':'north','targetRoom':'Armory'}]},{'name':a54i(0x140),'description':'Rows\x20of\x20ancient\x20weapons\x20and\x20armors.','roomType':a54i(0x120),'items':[{'type':a54i(0x117),'name':'Emblem\x20Shield','description':a54i(0x100)},{'type':'sword','name':a54i(0xf3),'description':a54i(0xd6)}],'exits':[{'direction':a54i(0xf2),'targetRoom':'Alchemy\x20Lab'},{'direction':a54i(0xff),'targetRoom':a54i(0x116)}]},{'name':a54i(0x116),'description':'A\x20large\x20circular\x20room\x20with\x20four\x20doors.','roomType':a54i(0x120),'exits':[{'direction':'west','targetRoom':'Armory'},{'direction':a54i(0xf2),'targetRoom':'Entrance\x20Hall'},{'direction':a54i(0xfc),'targetRoom':'Torture\x20Chamber'},{'direction':a54i(0xff),'targetRoom':a54i(0x10c)}]},{'name':a54i(0x123),'description':a54i(0x111),'roomType':'inside','items':[{'type':a54i(0xe3),'name':'Blood-stained\x20Key','description':a54i(0x12e)}],'puzzle':{'requiredPhrase':a54i(0xe0),'riddle':a54i(0x107),'rewardItem':{'type':a54i(0x14a),'name':a54i(0xda),'description':a54i(0x113)},'successMessage':a54i(0xf7),'failureMessage':'The\x20chains\x20rattle\x20ominously,\x20but\x20nothing\x20else\x20happens.'},'exits':[{'direction':a54i(0xf2),'targetRoom':a54i(0x116)}]},{'name':a54i(0x10c),'description':a54i(0x143),'roomType':a54i(0x120),'puzzle':{'requiredPhrase':'insert\x20gem','riddle':a54i(0x133),'rewardItem':{'type':a54i(0xf4),'name':a54i(0x103),'description':a54i(0x11d)},'successMessage':a54i(0xe4),'failureMessage':a54i(0xd5)},'exits':[{'direction':a54i(0xf1),'targetRoom':a54i(0x116)}]}];function a54d(a,b){const c=a54c();return a54d=function(d,e){d=d-0xd0;let f=c[d];return f;},a54d(a,b);}export const shadowrunConfig=[{'name':a54i(0x134),'description':a54i(0xd3),'isStartRoom':!![],'roomType':a54i(0x120),'exits':[{'direction':a54i(0xfc),'targetRoom':a54i(0xea)},{'direction':'up','targetRoom':a54i(0x138)}]},{'name':'Matrix\x20Data\x20Haven','description':a54i(0x115),'roomType':'inside','puzzle':{'requiredPhrase':'decrypt','riddle':a54i(0x10a),'rewardItem':{'type':'key','name':a54i(0x145),'description':a54i(0x112)},'successMessage':a54i(0x121),'failureMessage':'The\x20data\x20remains\x20encrypted.'},'exits':[{'direction':'down','targetRoom':a54i(0x134)}]},{'name':a54i(0xea),'description':a54i(0x13e),'roomType':a54i(0xf6),'exits':[{'direction':a54i(0xf2),'targetRoom':a54i(0x134)},{'direction':a54i(0xff),'targetRoom':a54i(0xd1)},{'direction':'west','targetRoom':a54i(0xeb)}]},{'name':a54i(0xd1),'description':a54i(0x122),'roomType':a54i(0xf6),'puzzle':{'requiredPhrase':'show\x20loyalty','riddle':a54i(0x12d),'rewardItem':{'type':a54i(0xe3),'name':a54i(0x10d),'description':a54i(0xee)},'successMessage':a54i(0x127),'failureMessage':'The\x20gang\x20members\x20block\x20your\x20way,\x20suspicious\x20of\x20your\x20motives.'},'exits':[{'direction':a54i(0xf1),'targetRoom':a54i(0xea)},{'direction':a54i(0xfc),'targetRoom':a54i(0x104)}]},{'name':a54i(0xeb),'description':a54i(0xfd),'roomType':a54i(0x120),'items':[{'type':a54i(0x10e),'name':a54i(0x105),'description':a54i(0xf5)},{'type':a54i(0x139),'name':a54i(0x125),'description':a54i(0xd2)}],'exits':[{'direction':a54i(0xff),'targetRoom':'Downtown\x20Seattle'}]},{'name':a54i(0x104),'description':a54i(0x137),'roomType':'outside','items':[{'type':a54i(0x142),'name':a54i(0x109),'description':a54i(0x128)}],'exits':[{'direction':'south','targetRoom':'Barrens\x20Entrance'},{'direction':a54i(0xfc),'targetRoom':a54i(0xdd)},{'direction':a54i(0xff),'targetRoom':a54i(0x147)}]},{'name':a54i(0xdd),'description':a54i(0xfb),'roomType':a54i(0x120),'puzzle':{'requiredPhrase':a54i(0xf8),'riddle':a54i(0x131),'rewardItem':{'type':a54i(0x141),'name':a54i(0x11f),'description':a54i(0x124)},'successMessage':'The\x20ward\x20shatters,\x20revealing\x20the\x20amulet.','failureMessage':'The\x20magic\x20in\x20the\x20room\x20grows\x20more\x20oppressive,\x20resisting\x20your\x20efforts.'},'exits':[{'direction':a54i(0xf2),'targetRoom':a54i(0x104)}]},{'name':a54i(0x147),'description':'Drones\x20and\x20vehicles\x20being\x20modified,\x20tools\x20everywhere,\x20and\x20a\x20rigger\x20jacked\x20in\x20to\x20a\x20command\x20console.','roomType':a54i(0x120),'items':[{'type':a54i(0xdb),'name':a54i(0xed),'description':a54i(0xec)}],'exits':[{'direction':a54i(0xf1),'targetRoom':a54i(0x104)}]}];
1
+ const a54i=a54d;(function(a,b){const f=a54d,c=a();while(!![]){try{const d=-parseInt(f(0x1a4))/0x1+parseInt(f(0x1a8))/0x2+-parseInt(f(0x1c0))/0x3+-parseInt(f(0x183))/0x4+-parseInt(f(0x165))/0x5+parseInt(f(0x18c))/0x6+parseInt(f(0x16a))/0x7*(parseInt(f(0x16f))/0x8);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a54c,0x5e002));const a54b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a54d;if(c){const e=c[g(0x1cc)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a54a=a54b(this,function(){const h=a54d;return a54a[h(0x176)]()[h(0x1c4)]('(((.+)+)+)+$')['toString']()[h(0x1c8)](a54a)[h(0x1c4)](h(0x1b7));});a54a();function a54c(){const j=['east','shield','book','1116579HBWmDk','The\x20legendary\x20Holy\x20Grail.','basic','drone','search','disenchant','A\x20virtual\x20portal\x20in\x20the\x20Matrix.\x20Glowing\x20neon\x20lights\x20everywhere,\x20with\x20digital\x20sprites\x20zipping\x20by.','Study','constructor','A\x20towering\x20structure\x20giving\x20a\x20bird’s-eye\x20view\x20of\x20the\x20surroundings.','insert\x20gem','A\x20long-range\x20weapon.','apply','north','Armory','Jackpoint\x20Login','Sniper\x20Rifle','Ancient\x20Gem','Courtyard','A\x20hidden\x20alley\x20in\x20the\x20Barrens\x20where\x20shadowrunners\x20meet\x20up\x20for\x20covert\x20jobs.','Entrance\x20Hall','Matrix\x20Data\x20Haven','inside','Library','The\x20gate\x20slowly\x20opens\x20revealing\x20the\x20path\x20to\x20the\x20Central\x20Chamber.','2758610AJBmkG','down','south','cup','outside','24353NctxuV','The\x20gang\x20members\x20nod\x20and\x20let\x20you\x20pass\x20deeper\x20into\x20the\x20Barrens.','document','Secret\x20Passage','secret123','2776LarsWE','Glittering\x20treasures\x20from\x20floor\x20to\x20ceiling.','Speak\x20the\x20word\x20to\x20free\x20the\x20ghost.','OUTSIDE','open\x20sesame','decrypt','CorpSec\x20Plans','toString','The\x20high-security\x20corporate\x20zone,\x20complete\x20with\x20looming\x20skyscrapers\x20and\x20security\x20checkpoints.','Golden\x20Key','The\x20data\x20stream\x20reveals\x20a\x20location:\x20Downtown\x20Seattle.','Dark,\x20grim\x20with\x20chains\x20on\x20walls\x20and\x20an\x20eerie\x20silence.','Rows\x20of\x20ancient\x20weapons\x20and\x20armors.','Treasure\x20Room','Encrypted\x20Data\x20Key','A\x20creditstick\x20loaded\x20with\x20nuyen.','The\x20chains\x20rattle\x20ominously,\x20but\x20nothing\x20else\x20happens.','Alchemy\x20Lab','Central\x20Chamber\x20Key','holyGrail','847908hvTVzh','Rigger\x27s\x20Workshop','Barrens\x20Hideout','Corporate\x20Creditstick','The\x20chest\x20has\x20a\x20gem-shaped\x20socket.','Speak\x20the\x20ancient\x20phrase\x20to\x20unlock\x20the\x20Central\x20Chamber.','A\x20quiet\x20room\x20filled\x20with\x20bookshelves,\x20a\x20large\x20desk,\x20and\x20scattered\x20papers.','The\x20chest\x20remains\x20firmly\x20shut.','A\x20dimly\x20lit\x20passage\x20with\x20walls\x20made\x20of\x20stone.','2563224RsGymR','A\x20large\x20circular\x20room\x20with\x20four\x20doors.','Detailed\x20security\x20plans\x20for\x20a\x20corporate\x20building.','NORTH','Chad\x20the\x20stupid\x20guard','gem','Central\x20Chamber','A\x20digital\x20realm\x20with\x20information\x20streams\x20flowing\x20like\x20rivers.','A\x20room\x20filled\x20with\x20potions,\x20beakers,\x20and\x20an\x20enchantment\x20circle.','A\x20clear\x20glass\x20vial.','EAST','Watch\x20Tower','Blood-stained\x20Key','A\x20popular\x20heavy\x20pistol\x20among\x20shadowrunners.','Torture\x20Chamber','That\x20passcode\x20is\x20incorrect','MCT\x20Fly-Spy','When\x20is\x20a\x20door\x20not\x20a\x20door?\x20When\x20it\x27s\x20ajar!','Barrens\x20Entrance','The\x20rain-soaked\x20streets\x20of\x20Seattle\x20with\x20neon\x20lights\x20reflecting\x20off\x20wet\x20pavement.\x20The\x20distant\x20sound\x20of\x20corporate\x20security\x20drones\x20can\x20be\x20heard.','key','A\x20hideout\x20filled\x20with\x20magical\x20artifacts,\x20wards,\x20and\x20a\x20few\x20summoned\x20spirits\x20guarding\x20the\x20place.','The\x20data\x20remains\x20encrypted.','Riddle\x20Book','214293RCoiPc','Gang\x20Insignia','A\x20key\x20made\x20of\x20pure\x20digital\x20energy.','The\x20chest\x20unlocks\x20revealing\x20the\x20chalice.','201588yEvlSt','The\x20ward\x20shatters,\x20revealing\x20the\x20amulet.','SOUTH','Break\x20the\x20ward\x20to\x20reveal\x20the\x20hidden\x20magical\x20artifact.','A\x20shiny\x20golden\x20key\x20with\x20intricate\x20engravings.','show\x20loyalty','A\x20book\x20containing\x20a\x20mysterious\x20riddle.','A\x20serene\x20courtyard\x20with\x20a\x20gentle\x20fountain.\x20There\x20are\x20birds\x20bathing.','The\x20magic\x20in\x20the\x20room\x20grows\x20more\x20oppressive,\x20resisting\x20your\x20efforts.','Empty\x20vial','Corp\x20Enclave','Holy\x20Grail','A\x20shield\x20with\x20the\x20emblem\x20of\x20the\x20dungeon.','The\x20gang\x20members\x20block\x20your\x20way,\x20suspicious\x20of\x20your\x20motives.','The\x20outskirts\x20of\x20the\x20lawless\x20Redmond\x20Barrens.\x20Gang\x20graffiti\x20is\x20everywhere.','(((.+)+)+)+$','Downtown\x20Seattle','west','Mage\x27s\x20Lair','Unlock\x20the\x20encrypted\x20data\x20to\x20receive\x20your\x20next\x20mission.','A\x20thin\x20log\x20book'];a54c=function(){return j;};return a54c();}function a54d(a,b){const c=a54c();return a54d=function(d,e){d=d-0x164;let f=c[d];return f;},a54d(a,b);}export const rooms=[{'name':a54i(0x1d7),'description':'A\x20vast\x20library\x20filled\x20with\x20ancient\x20books.\x20[START]','isStartRoom':!![],'items':[{'type':a54i(0x1a0),'name':a54i(0x178),'description':a54i(0x1ac)},{'type':a54i(0x1bf),'name':'Guard\x27s\x20Log\x20Book','description':a54i(0x1bc),'content':a54i(0x190)}],'exits':[{'direction':a54i(0x196),'targetRoom':a54i(0x16d)}]},{'name':'Secret\x20Passage','description':a54i(0x18b),'exits':[{'direction':a54i(0x18f),'targetRoom':a54i(0x17c),'keyRequired':a54i(0x178)},{'direction':a54i(0x1aa),'targetRoom':a54i(0x1d2)}]},{'name':a54i(0x17c),'description':'A\x20room\x20glittering\x20with\x20gold\x20and\x20jewels.','items':[{'type':a54i(0x182),'name':a54i(0x1b3),'description':a54i(0x1c1)}]},{'name':a54i(0x1d2),'description':a54i(0x1af),'roomType':a54i(0x172),'exits':[{'direction':'UP','targetRoom':a54i(0x197)}]},{'name':a54i(0x197),'description':a54i(0x1c9),'roomType':a54i(0x172),'puzzle':{'requiredPhrase':a54i(0x16e),'riddle':'A\x20locked\x20glass\x20gun\x20cabinet\x20stands\x20here,\x20with\x20a\x20keypad\x20awaiting\x20a\x20password.','rewardItem':{'type':'rifle','name':a54i(0x1d0),'description':a54i(0x1cb)},'successMessage':'You\x20pull\x20the\x20sniper\x20rifle\x20from\x20the\x20gun\x20cabinet.\x20\x20Just\x20as\x20you\x20do,\x20you\x20hear\x20a\x20guy\x20from\x20the\x20Courtyard\x20yell\x20\x22HEY!\x20WHAT\x27S\x20YA\x20NAME?!\x22','failureMessage':a54i(0x19b)}}];export const dungeonConfig=[{'name':a54i(0x1d4),'description':'A\x20grand\x20entrance\x20with\x20huge\x20wooden\x20doors\x20behind\x20and\x20a\x20dimly\x20lit\x20corridor\x20ahead.','isStartRoom':!![],'roomType':a54i(0x1d6),'puzzle':{'requiredPhrase':a54i(0x173),'riddle':a54i(0x188),'rewardItem':{'type':'key','name':a54i(0x181),'description':'A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.'},'successMessage':a54i(0x164),'failureMessage':'Nothing\x20happens.'},'exits':[{'direction':a54i(0x1cd),'targetRoom':a54i(0x1c7)},{'direction':a54i(0x1bd),'targetRoom':'Central\x20Chamber','keyRequired':a54i(0x181)}]},{'name':a54i(0x1c7),'description':a54i(0x189),'roomType':a54i(0x1d6),'items':[{'type':a54i(0x1bf),'name':a54i(0x1a3),'description':a54i(0x1ae),'content':a54i(0x19d)},{'type':a54i(0x1a0),'name':'Central\x20Chamber\x20Key','description':'A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.'}],'exits':[{'direction':a54i(0x167),'targetRoom':'Entrance\x20Hall'},{'direction':a54i(0x1bd),'targetRoom':a54i(0x180)}]},{'name':a54i(0x180),'description':a54i(0x194),'roomType':'inside','items':[{'type':a54i(0x1c2),'name':a54i(0x1b1),'description':a54i(0x195)}],'exits':[{'direction':a54i(0x1b9),'targetRoom':a54i(0x1c7)},{'direction':a54i(0x1cd),'targetRoom':a54i(0x1ce)}]},{'name':a54i(0x1ce),'description':a54i(0x17b),'roomType':a54i(0x1d6),'items':[{'type':a54i(0x1be),'name':'Emblem\x20Shield','description':a54i(0x1b4)},{'type':'sword','name':'Rusted\x20Sword','description':'An\x20old\x20and\x20rusted\x20sword.'}],'exits':[{'direction':a54i(0x167),'targetRoom':'Alchemy\x20Lab'},{'direction':a54i(0x1bd),'targetRoom':a54i(0x192)}]},{'name':'Central\x20Chamber','description':a54i(0x18d),'roomType':a54i(0x1d6),'exits':[{'direction':a54i(0x1b9),'targetRoom':a54i(0x1ce)},{'direction':'south','targetRoom':a54i(0x1d4)},{'direction':a54i(0x1cd),'targetRoom':'Torture\x20Chamber'},{'direction':a54i(0x1bd),'targetRoom':'Treasure\x20Room'}]},{'name':a54i(0x19a),'description':a54i(0x17a),'roomType':a54i(0x1d6),'items':[{'type':a54i(0x1a0),'name':a54i(0x198),'description':'A\x20key\x20stained\x20with\x20old\x20blood.'}],'puzzle':{'requiredPhrase':'release','riddle':a54i(0x171),'rewardItem':{'type':a54i(0x191),'name':a54i(0x1d1),'description':'A\x20gem\x20radiating\x20a\x20mysterious\x20aura.'},'successMessage':'The\x20ghost\x20thanks\x20you\x20and\x20disappears,\x20leaving\x20behind\x20the\x20gem.','failureMessage':a54i(0x17f)},'exits':[{'direction':a54i(0x167),'targetRoom':a54i(0x192)}]},{'name':a54i(0x17c),'description':a54i(0x170),'roomType':a54i(0x1d6),'puzzle':{'requiredPhrase':a54i(0x1ca),'riddle':a54i(0x187),'rewardItem':{'type':a54i(0x168),'name':'Golden\x20Chalice','description':'A\x20chalice\x20made\x20of\x20pure\x20gold.'},'successMessage':a54i(0x1a7),'failureMessage':a54i(0x18a)},'exits':[{'direction':a54i(0x1b9),'targetRoom':a54i(0x192)}]}];export const shadowrunConfig=[{'name':a54i(0x1cf),'description':a54i(0x1c6),'isStartRoom':!![],'roomType':a54i(0x1d6),'exits':[{'direction':a54i(0x1cd),'targetRoom':'Downtown\x20Seattle'},{'direction':'up','targetRoom':a54i(0x1d5)}]},{'name':a54i(0x1d5),'description':a54i(0x193),'roomType':a54i(0x1d6),'puzzle':{'requiredPhrase':a54i(0x174),'riddle':a54i(0x1bb),'rewardItem':{'type':'key','name':a54i(0x17d),'description':a54i(0x1a6)},'successMessage':a54i(0x179),'failureMessage':a54i(0x1a2)},'exits':[{'direction':a54i(0x166),'targetRoom':a54i(0x1cf)}]},{'name':a54i(0x1b8),'description':a54i(0x19f),'roomType':a54i(0x169),'exits':[{'direction':a54i(0x167),'targetRoom':a54i(0x1cf)},{'direction':a54i(0x1bd),'targetRoom':'Barrens\x20Entrance'},{'direction':a54i(0x1b9),'targetRoom':a54i(0x1b2)}]},{'name':a54i(0x19e),'description':a54i(0x1b6),'roomType':a54i(0x169),'puzzle':{'requiredPhrase':a54i(0x1ad),'riddle':'To\x20enter\x20deeper\x20into\x20the\x20Barrens,\x20you\x20must\x20show\x20allegiance\x20to\x20one\x20of\x20the\x20gangs.','rewardItem':{'type':a54i(0x1a0),'name':a54i(0x1a5),'description':'A\x20badge\x20proving\x20your\x20loyalty\x20to\x20one\x20of\x20the\x20Barrens\x27\x20gangs.'},'successMessage':a54i(0x16b),'failureMessage':a54i(0x1b5)},'exits':[{'direction':a54i(0x1b9),'targetRoom':a54i(0x1b8)},{'direction':'north','targetRoom':'Barrens\x20Hideout'}]},{'name':a54i(0x1b2),'description':a54i(0x177),'roomType':a54i(0x1d6),'items':[{'type':'creditstick','name':a54i(0x186),'description':a54i(0x17e)},{'type':a54i(0x16c),'name':a54i(0x175),'description':a54i(0x18e)}],'exits':[{'direction':a54i(0x1bd),'targetRoom':a54i(0x1b8)}]},{'name':a54i(0x185),'description':a54i(0x1d3),'roomType':a54i(0x169),'items':[{'type':'weapon','name':'Ares\x20Predator','description':a54i(0x199)}],'exits':[{'direction':'south','targetRoom':a54i(0x19e)},{'direction':'north','targetRoom':a54i(0x1ba)},{'direction':a54i(0x1bd),'targetRoom':a54i(0x184)}]},{'name':a54i(0x1ba),'description':a54i(0x1a1),'roomType':a54i(0x1d6),'puzzle':{'requiredPhrase':a54i(0x1c5),'riddle':a54i(0x1ab),'rewardItem':{'type':'amulet','name':'Amulet\x20of\x20Awakening','description':'A\x20powerful\x20amulet\x20said\x20to\x20wake\x20spirits\x20from\x20slumber.'},'successMessage':a54i(0x1a9),'failureMessage':a54i(0x1b0)},'exits':[{'direction':a54i(0x167),'targetRoom':'Barrens\x20Hideout'}]},{'name':a54i(0x184),'description':'Drones\x20and\x20vehicles\x20being\x20modified,\x20tools\x20everywhere,\x20and\x20a\x20rigger\x20jacked\x20in\x20to\x20a\x20command\x20console.','roomType':a54i(0x1d6),'items':[{'type':a54i(0x1c3),'name':a54i(0x19c),'description':'A\x20small\x20surveillance\x20drone.'}],'exits':[{'direction':a54i(0x1b9),'targetRoom':a54i(0x185)}]}];
@@ -1 +1 @@
1
- var a55i=a55d;(function(a,b){var f=a55d,c=a();while(!![]){try{var d=parseInt(f(0x1a5))/0x1+parseInt(f(0x1a4))/0x2*(-parseInt(f(0x1a1))/0x3)+-parseInt(f(0x198))/0x4+parseInt(f(0x185))/0x5*(-parseInt(f(0x18d))/0x6)+-parseInt(f(0x18e))/0x7+-parseInt(f(0x189))/0x8+parseInt(f(0x1a3))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a55c,0x2a005));var a55b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a55d;if(c){var e=c[g(0x18b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a55a=a55b(this,function(){var h=a55d;return a55a[h(0x182)]()[h(0x187)](h(0x191))[h(0x182)]()[h(0x19d)](a55a)[h(0x187)](h(0x191));});a55a();import{EventEmitter}from'events';export class AbstractScene{[a55i(0x192)];[a55i(0x193)];[a55i(0x194)];['characterLocations'];}function a55d(a,b){var c=a55c();return a55d=function(d,e){d=d-0x180;var f=c[d];return f;},a55d(a,b);}function a55c(){var j=['constructor','inventory','shape','rating','75EiCmGh','exits','7172046TiAObb','7768ByjyXX','238584YCBvUG','description','roomB','toString','_playerName','roomType','5seKHPi','name','search','uuid','2469256bAXoOO','solved','apply','_logger','1976916WfMlCH','109690beXMkx','unlockItemOrSolution','weight','(((.+)+)+)+$','rooms','player','logger','roomA','color','isStartRoom','450112TuJVwi','isLocked','_maxCarryingWeight','_inventory','category'];a55c=function(){return j;};return a55c();}export class AbstractRoom extends EventEmitter{['name'];[a55i(0x180)];[a55i(0x1a2)];[a55i(0x19e)];['puzzle'];[a55i(0x184)];[a55i(0x197)];}export class AbstractDoor{[a55i(0x195)];[a55i(0x181)];[a55i(0x199)];[a55i(0x18f)];[a55i(0x186)];['logger'];['isLockable'];}export class AbstractInventory{['items'];[a55i(0x194)];}export class AbstractItem{[a55i(0x188)];['name'];[a55i(0x180)];['size'];[a55i(0x19c)];[a55i(0x19f)];[a55i(0x196)];['texture'];[a55i(0x1a0)];[a55i(0x190)];}export class AbstractPlayer{[a55i(0x183)];['_currentLocation'];[a55i(0x19b)];['_equipment'];[a55i(0x19a)];[a55i(0x18c)];}export class AbstractPuzzle{['logger'];[a55i(0x18a)];}
1
+ var a55i=a55d;(function(a,b){var f=a55d,c=a();while(!![]){try{var d=-parseInt(f(0x13b))/0x1+-parseInt(f(0x153))/0x2+-parseInt(f(0x13f))/0x3+parseInt(f(0x135))/0x4+parseInt(f(0x152))/0x5+parseInt(f(0x146))/0x6*(parseInt(f(0x154))/0x7)+parseInt(f(0x13d))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a55c,0x440d9));var a55b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a55d;if(c){var e=c[g(0x14c)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a55a=a55b(this,function(){var h=a55d;return a55a[h(0x14a)]()['search'](h(0x150))[h(0x14a)]()[h(0x148)](a55a)[h(0x140)](h(0x150));});a55a();import{EventEmitter}from'events';export class AbstractScene{['rooms'];[a55i(0x157)];[a55i(0x155)];[a55i(0x14e)];}export class AbstractRoom extends EventEmitter{[a55i(0x151)];[a55i(0x13a)];[a55i(0x145)];[a55i(0x139)];[a55i(0x143)];[a55i(0x134)];[a55i(0x149)];}export class AbstractDoor{['roomA'];['roomB'];['isLocked'];[a55i(0x13e)];[a55i(0x151)];[a55i(0x155)];['isLockable'];}function a55d(a,b){var c=a55c();return a55d=function(d,e){d=d-0x134;var f=c[d];return f;},a55d(a,b);}function a55c(){var j=['unlockItemOrSolution','1003911zSHPJO','search','_logger','_equipment','puzzle','items','exits','1002318eiiGfq','size','constructor','isStartRoom','toString','color','apply','rating','characterLocations','shape','(((.+)+)+)+$','name','1878985iMVIZH','598800EzTysL','7lzfivj','logger','texture','player','roomType','645792XOyvHm','_currentLocation','solved','weight','inventory','description','203096BqKtJj','_maxCarryingWeight','3292640dUiHSx'];a55c=function(){return j;};return a55c();}export class AbstractInventory{[a55i(0x144)];[a55i(0x155)];}export class AbstractItem{['uuid'];[a55i(0x151)];[a55i(0x13a)];[a55i(0x147)];['category'];[a55i(0x14f)];[a55i(0x14b)];[a55i(0x156)];[a55i(0x14d)];[a55i(0x138)];}export class AbstractPlayer{['_playerName'];[a55i(0x136)];['_inventory'];[a55i(0x142)];[a55i(0x13c)];[a55i(0x141)];}export class AbstractPuzzle{[a55i(0x155)];[a55i(0x137)];}
@@ -1 +1 @@
1
- (function(a,b){var k=a56d,c=a();while(!![]){try{var d=-parseInt(k(0x194))/0x1*(parseInt(k(0x1a6))/0x2)+parseInt(k(0x1c5))/0x3+-parseInt(k(0x1a2))/0x4+-parseInt(k(0x1b5))/0x5*(-parseInt(k(0x1c8))/0x6)+-parseInt(k(0x1cc))/0x7+-parseInt(k(0x1b1))/0x8+parseInt(k(0x18a))/0x9*(parseInt(k(0x176))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a56c,0x9f91e));function a56d(a,b){var c=a56c();return a56d=function(d,e){d=d-0x173;var f=c[d];return f;},a56d(a,b);}export var Size;(function(a){var l=a56d;a[l(0x1bb)]=l(0x175),a[l(0x193)]='small',a[l(0x196)]=l(0x187),a[l(0x19d)]=l(0x1b0),a[l(0x19b)]='very\x20large';}(Size||(Size={})));export var Rating;(function(a){var m=a56d;a[m(0x1ca)]=m(0x185),a[m(0x1cd)]='rare',a[m(0x1b8)]='legendary';}(Rating||(Rating={})));export var Category;(function(a){var n=a56d;a[n(0x1ae)]=n(0x1c0),a[n(0x1c7)]=n(0x180),a['Key']=n(0x1ba),a[n(0x192)]=n(0x177),a[n(0x17a)]='helmet',a[n(0x1ce)]=n(0x174),a[n(0x1bf)]=n(0x1a1),a[n(0x1b4)]='leg\x20armor',a['ArmArmor']='arm\x20armor',a['BodyArmor']='body\x20armor',a[n(0x1a8)]=n(0x19f),a[n(0x17c)]=n(0x1bc),a[n(0x1c9)]=n(0x179);}(Category||(Category={})));export var Shape;(function(a){var o=a56d;a['Circle']=o(0x18e),a[o(0x1b9)]='square',a['Triangle']=o(0x188),a[o(0x19e)]=o(0x1b7),a[o(0x19a)]=o(0x1c2),a['Rifle']='rifle';}(Shape||(Shape={})));export var Color;(function(a){var p=a56d;a['Red']='red',a[p(0x198)]=p(0x1a4),a[p(0x190)]=p(0x1ac),a[p(0x1c4)]=p(0x1a9),a['Orange']=p(0x17d),a[p(0x1b3)]=p(0x1c3),a[p(0x1a7)]=p(0x181),a[p(0x1cb)]='brown',a[p(0x1be)]='gold';}(Color||(Color={})));export var Texture;(function(a){var q=a56d;a[q(0x19c)]=q(0x1af),a[q(0x1bd)]='rough',a['Bumpy']=q(0x17e),a['Fuzzy']=q(0x1ab),a['Grainy']=q(0x197),a[q(0x199)]=q(0x17b);}(Texture||(Texture={})));export var RoomType;function a56c(){var v=['grainy','Blue','Metallic','Blade','VeryLarge','Smooth','Large','Rectangle','book','UNDERGROUND','boots','47688YexlDw','mountain','blue','CAVE','7868SQmgBh','Grey','Book','yellow','(((.+)+)+)+$','fuzzy','green','apply','Weapon','smooth','large','557000dUJiMj','tower','Purple','LegArmor','603710UaGPLv','WEST','rectangle','Legendary','Square','key','Tiny','cup','Rough','Gold','Boots','weapon','EAST','blade','purple','Yellow','2915442EEVZxJ','search','Shield','42CIlFuE','Unknown','Common','Brown','3455515NoYwNE','Rare','Hat','cave','hat','tiny','225780kSWxEh','gloves','west','unknown','Helmet','metallic','Cup','orange','bumpy','DOWN','shield','grey','FOREST','forest','OUTSIDE','common','INSIDE','medium','triangle','south','18dxzgsg','BEACH','toString','inside','circle','down','Green','constructor','Gloves','Small','161dJfmfr','NORTH','Medium'];a56c=function(){return v;};return a56c();}(function(c){var t=a56d,d=(function(){var f=!![];return function(g,h){var i=f?function(){var r=a56d;if(h){var j=h[r(0x1ad)](g,arguments);return h=null,j;}}:function(){};return f=![],i;};}()),e=d(this,function(){var s=a56d;return e[s(0x18c)]()[s(0x1c6)](s(0x1aa))[s(0x18c)]()[s(0x191)](e)[s(0x1c6)](s(0x1aa));});e(),c[t(0x186)]=t(0x18d),c[t(0x184)]='outside',c[t(0x1a0)]='underground',c[t(0x1a5)]=t(0x173),c['TOWER']=t(0x1b2),c[t(0x182)]=t(0x183),c['DESERT']='desert',c['MOUNTAIN']=t(0x1a3),c[t(0x18b)]='beach',c['SEA']='sea';}(RoomType||(RoomType={})));export var Direction;(function(a){var u=a56d;a[u(0x195)]='north',a[u(0x1c1)]='east',a['SOUTH']=u(0x189),a[u(0x1b6)]=u(0x178),a['UP']='up',a[u(0x17f)]=u(0x18f);}(Direction||(Direction={})));
1
+ (function(a,b){var k=a56d,c=a();while(!![]){try{var d=parseInt(k(0xd2))/0x1+parseInt(k(0xd5))/0x2+parseInt(k(0xbc))/0x3*(-parseInt(k(0xe1))/0x4)+parseInt(k(0xc7))/0x5+-parseInt(k(0xc9))/0x6*(parseInt(k(0xae))/0x7)+parseInt(k(0xd6))/0x8*(-parseInt(k(0x102))/0x9)+parseInt(k(0xf3))/0xa*(parseInt(k(0xfe))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a56c,0xe57ec));export var Size;(function(a){var l=a56d;a[l(0xac)]=l(0xe6),a[l(0xad)]=l(0xb2),a[l(0xd9)]=l(0xf9),a[l(0xb3)]=l(0xc3),a[l(0xc8)]=l(0xf6);}(Size||(Size={})));function a56d(a,b){var c=a56c();return a56d=function(d,e){d=d-0xa4;var f=c[d];return f;},a56d(a,b);}export var Rating;(function(a){var m=a56d;a[m(0xfb)]=m(0xdb),a['Rare']=m(0xcf),a[m(0xa7)]=m(0xfd);}(Rating||(Rating={})));export var Category;(function(a){var n=a56d;a[n(0xf1)]=n(0xba),a[n(0xdd)]=n(0xca),a['Key']=n(0xde),a['Gloves']=n(0xe3),a[n(0xc1)]='helmet',a[n(0xf8)]=n(0xa8),a[n(0xd4)]='boots',a[n(0xe9)]=n(0xc2),a['ArmArmor']=n(0xc0),a[n(0x101)]=n(0xa9),a['Book']=n(0xf4),a['Cup']=n(0xe2),a['Unknown']='unknown';}(Category||(Category={})));export var Shape;(function(a){var o=a56d;a['Circle']=o(0xf5),a[o(0xe0)]=o(0xe5),a['Triangle']='triangle',a[o(0xf2)]=o(0xb4),a[o(0xee)]=o(0xb1),a['Rifle']='rifle';}(Shape||(Shape={})));function a56c(){var u=['sea','Blade','Orange','tower','Weapon','Rectangle','140mYdHnT','book','circle','very\x20large','cave','Hat','medium','grey','Common','DOWN','legendary','114983hANxHK','green','forest','BodyArmor','369RvRUJO','SOUTH','purple','Purple','TOWER','Legendary','hat','body\x20armor','Bumpy','Brown','Tiny','Small','658Vmntzv','outside','north','blade','small','Large','rectangle','yellow','BEACH','Fuzzy','Yellow','(((.+)+)+)+$','weapon','gold','27FdYKtG','Rough','Gold','NORTH','arm\x20armor','Helmet','leg\x20armor','large','down','Blue','fuzzy','4811750JcuXnB','VeryLarge','63402syIErY','shield','EAST','search','Smooth','bumpy','rare','orange','red','1483770riDhVT','brown','Boots','945108QZxlyV','182752oGjcEN','toString','east','Medium','rough','common','DESERT','Shield','key','south','Square','86712AQxmDn','cup','gloves','SEA','square','tiny','constructor','west','LegArmor','beach','Metallic','blue'];a56c=function(){return u;};return a56c();}export var Color;(function(a){var p=a56d;a['Red']=p(0xd1),a[p(0xc5)]=p(0xec),a['Green']=p(0xff),a[p(0xb8)]=p(0xb5),a[p(0xef)]=p(0xd0),a[p(0xa5)]=p(0xa4),a['Grey']=p(0xfa),a[p(0xab)]=p(0xd3),a[p(0xbe)]=p(0xbb);}(Color||(Color={})));export var Texture;(function(c){var r=a56d,d=(function(){var f=!![];return function(g,h){var i=f?function(){if(h){var j=h['apply'](g,arguments);return h=null,j;}}:function(){};return f=![],i;};}()),e=d(this,function(){var q=a56d;return e['toString']()[q(0xcc)](q(0xb9))[q(0xd7)]()[q(0xe7)](e)[q(0xcc)](q(0xb9));});e(),c[r(0xcd)]='smooth',c[r(0xbd)]=r(0xda),c[r(0xaa)]=r(0xce),c[r(0xb7)]=r(0xc6),c['Grainy']='grainy',c[r(0xeb)]='metallic';}(Texture||(Texture={})));export var RoomType;(function(a){var s=a56d;a['INSIDE']='inside',a['OUTSIDE']=s(0xaf),a['UNDERGROUND']='underground',a['CAVE']=s(0xf7),a[s(0xa6)]=s(0xf0),a['FOREST']=s(0x100),a[s(0xdc)]='desert',a['MOUNTAIN']='mountain',a[s(0xb6)]=s(0xea),a[s(0xe4)]=s(0xed);}(RoomType||(RoomType={})));export var Direction;(function(a){var t=a56d;a[t(0xbf)]=t(0xb0),a[t(0xcb)]=t(0xd8),a[t(0x103)]=t(0xdf),a['WEST']=t(0xe8),a['UP']='up',a[t(0xfc)]=t(0xc4);}(Direction||(Direction={})));
@@ -1 +1 @@
1
- function a57d(a,b){var c=a57c();return a57d=function(d,e){d=d-0x1b5;var f=c[d];return f;},a57d(a,b);}(function(a,b){var f=a57d,c=a();while(!![]){try{var d=parseInt(f(0x1b9))/0x1*(-parseInt(f(0x1ba))/0x2)+-parseInt(f(0x1be))/0x3*(-parseInt(f(0x1b8))/0x4)+-parseInt(f(0x1c1))/0x5*(parseInt(f(0x1c3))/0x6)+-parseInt(f(0x1b6))/0x7*(-parseInt(f(0x1c4))/0x8)+-parseInt(f(0x1bf))/0x9+-parseInt(f(0x1b5))/0xa*(parseInt(f(0x1c0))/0xb)+-parseInt(f(0x1bd))/0xc*(-parseInt(f(0x1bb))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a57c,0x9f39c));function a57c(){var i=['6318670VwXWaI','search','6yfCPmM','344rbSUGJ','60okUDOr','50267mbvkmd','(((.+)+)+)+$','20HWPgYZ','152041rlISFV','2SFmkPQ','13QQqbVN','apply','15317976cTAgYz','769656OWrGzn','7023528QqXOFv','36091tEbhtk'];a57c=function(){return i;};return a57c();}var a57b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a57d;if(c){var e=c[g(0x1bc)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a57a=a57b(this,function(){var h=a57d;return a57a['toString']()[h(0x1c2)]('(((.+)+)+)+$')['toString']()['constructor'](a57a)[h(0x1c2)](h(0x1b7));});a57a();export{};
1
+ function a57c(){var i=['15210CZPPuF','65gmVDBr','(((.+)+)+)+$','121488VHtvZP','apply','175399mQFgTi','search','6XKlsuF','119218ZhwKDm','4VNOTXh','40104fKUSHZ','99QBrAuX','198QucoGp','51djLXFW','700716xMDCde','177590DmatUJ','toString'];a57c=function(){return i;};return a57c();}(function(a,b){var f=a57d,c=a();while(!![]){try{var d=-parseInt(f(0x172))/0x1*(-parseInt(f(0x173))/0x2)+parseInt(f(0x177))/0x3*(-parseInt(f(0x174))/0x4)+-parseInt(f(0x17b))/0x5+-parseInt(f(0x171))/0x6*(-parseInt(f(0x180))/0x7)+-parseInt(f(0x17e))/0x8*(parseInt(f(0x176))/0x9)+parseInt(f(0x179))/0xa*(parseInt(f(0x175))/0xb)+parseInt(f(0x178))/0xc*(parseInt(f(0x17c))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a57c,0x32b61));var a57b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a57d;if(c){var e=c[g(0x17f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a57a=a57b(this,function(){var h=a57d;return a57a[h(0x17a)]()[h(0x170)](h(0x17d))[h(0x17a)]()['constructor'](a57a)[h(0x170)](h(0x17d));});function a57d(a,b){var c=a57c();return a57d=function(d,e){d=d-0x170;var f=c[d];return f;},a57d(a,b);}a57a();export{};
@@ -1 +1 @@
1
- (function(a,b){var f=a58d,c=a();while(!![]){try{var d=parseInt(f(0x75))/0x1*(-parseInt(f(0x7f))/0x2)+parseInt(f(0x81))/0x3+-parseInt(f(0x82))/0x4+parseInt(f(0x7a))/0x5+parseInt(f(0x79))/0x6*(parseInt(f(0x76))/0x7)+parseInt(f(0x7d))/0x8*(-parseInt(f(0x78))/0x9)+-parseInt(f(0x77))/0xa*(parseInt(f(0x7b))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a58c,0xd1c71));var a58b=(function(){var a=!![];return function(b,c){var d=a?function(){if(c){var e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a58a=a58b(this,function(){var g=a58d;return a58a[g(0x7c)]()[g(0x7e)](g(0x80))[g(0x7c)]()[g(0x74)](a58a)[g(0x7e)](g(0x80));});function a58d(a,b){var c=a58c();return a58d=function(d,e){d=d-0x74;var f=c[d];return f;},a58d(a,b);}a58a();function a58c(){var h=['384IXvDfF','search','2sPesrq','(((.+)+)+)+$','5010102XsrVwh','4026488MSuzav','constructor','271631xEjYCk','147DtPPxN','1191270Pxirdc','234963tEnWIY','354798CZwBnk','8350405TxjZni','110kTPpHI','toString'];a58c=function(){return h;};return a58c();}export{};
1
+ (function(a,b){var f=a58d,c=a();while(!![]){try{var d=-parseInt(f(0x146))/0x1*(parseInt(f(0x145))/0x2)+-parseInt(f(0x147))/0x3+parseInt(f(0x143))/0x4*(-parseInt(f(0x14a))/0x5)+-parseInt(f(0x13e))/0x6+-parseInt(f(0x142))/0x7*(parseInt(f(0x140))/0x8)+parseInt(f(0x141))/0x9*(-parseInt(f(0x144))/0xa)+parseInt(f(0x13c))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a58c,0xef159));var a58b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a58d;if(c){var e=c[g(0x149)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a58a=a58b(this,function(){var h=a58d;return a58a[h(0x13f)]()[h(0x148)]('(((.+)+)+)+$')['toString']()['constructor'](a58a)['search'](h(0x13d));});a58a();function a58c(){var i=['4766iaSDQs','125KIlvKD','4697964noZAQp','search','apply','8522770duGFgL','79828551AEzvZO','(((.+)+)+)+$','3137748KDBEOS','toString','1226088KSThWH','18caQSsS','21ZTrnar','4CjJFOA','8633470blXrUo'];a58c=function(){return i;};return a58c();}function a58d(a,b){var c=a58c();return a58d=function(d,e){d=d-0x13c;var f=c[d];return f;},a58d(a,b);}export{};
@@ -1 +1 @@
1
- const a59H=a59d;(function(a,b){const y=a59d,c=a();while(!![]){try{const d=-parseInt(y(0x236))/0x1+parseInt(y(0x1fd))/0x2*(parseInt(y(0x21b))/0x3)+-parseInt(y(0x23a))/0x4+-parseInt(y(0x1fb))/0x5*(-parseInt(y(0x223))/0x6)+parseInt(y(0x21e))/0x7*(-parseInt(y(0x20f))/0x8)+-parseInt(y(0x1e8))/0x9*(-parseInt(y(0x229))/0xa)+-parseInt(y(0x205))/0xb*(-parseInt(y(0x1ea))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0x7bef9));function a59c(){const I=['Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','Torso:\x20','25%','Thanks\x20for\x20playing!','exit','escape','933105CNJozg','\x20(Locked)','(((.+)+)+)+$','5019735xqSjjR','exits','currentLocation','45%','focus','64938XVyBAG','enter','100%','checkIfLockable','logBox','Side\x20Quest\x20Adventure\x20Game','10cdqYZT','Arms:\x20','join','-----\x20Exits\x20------\x0a','getValue','\x20Equipment\x20','getInstance','arms','\x0aThere\x20are\x20no\x20exits\x20here.','\x20Game\x20Log\x20','write','75%','setContent','302617GJoQjc','C-c','Available\x20exits\x20will\x20be\x20shown\x20here...','feet','2898044lvPROB','checkIfLocked','Head:\x20','constructor','argv','torso','parse','handleInput','leftHand','yellow','line','slice','key','split','7851852BRZHGd','append','6168Axkdpx','white','removeAllListeners','20%','legs','head','render','apply','lock','take','getWelcomeMessage','cyan','OUTSIDE','scroll','getAllItems','name','rightHand','55HjiqMH','box','2zGsvXS','\x20Map\x20','inventory','10%','Your\x20items\x20will\x20be\x20listed\x20here...','map','mousemove','roomType','20317epmrwF','Legs:\x20','clear','toString','textbox','equip','unlock','search','Left\x20Hand:\x20','gloves','8nrgbGf','None','pushLine','player','----->>>>>>\x20Initializing\x20Game','equipment'];a59c=function(){return I;};return a59c();}import a59e from'blessed';import{capitalCase}from'change-case';import a59f from'./game.js';import{RoomType}from'./types/enums.js';function a59d(a,b){const c=a59c();return a59d=function(d,e){d=d-0x1df;let f=c[d];return f;},a59d(a,b);}import{Player}from'./models/player.js';import{Door}from'./models/door.js';import{Logger}from'./utilities/logger.js';export async function main(c,d,e){const B=a59d,f=(function(){let h=!![];return function(i,j){const k=h?function(){const z=a59d;if(j){const l=j[z(0x1f1)](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const A=a59d;return g['toString']()[A(0x20c)](A(0x21d))[A(0x208)]()[A(0x23d)](g)[A(0x20c)](A(0x21d));});g();try{const h=a59e['screen']({'smartCSR':!![],'title':B(0x228)}),i=a59e['box']({'top':'0%','left':B(0x234),'width':'25%','height':B(0x221),'border':{'type':B(0x1e4)},'label':'\x20Inventory\x20','content':B(0x201),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x1e3)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const C=B,u=t[C(0x1f8)]()[C(0x202)](v=>v[C(0x1f9)]);i[C(0x235)](u[C(0x22b)]('\x0a')),h['render']();};h[B(0x1e9)](i);const k=a59e[B(0x1fc)]({'top':B(0x221),'left':B(0x234),'width':'25%','height':B(0x217),'border':{'type':B(0x1e4)},'label':B(0x22e),'content':B(0x215),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x1e3)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h['append'](k);const l=t=>{const D=B;k[D(0x235)](D(0x23c)+(t[D(0x1ef)]?t[D(0x1ef)][D(0x1f9)]:D(0x210))+'\x0a'+(D(0x216)+(t[D(0x1df)]?t['torso'][D(0x1f9)]:D(0x210))+'\x0a')+(D(0x206)+(t[D(0x1ee)]?t['legs'][D(0x1f9)]:D(0x210))+'\x0a')+('Feet:\x20'+(t[D(0x239)]?t['feet'][D(0x1f9)]:D(0x210))+'\x0a')+(D(0x22a)+(t[D(0x230)]?t[D(0x230)][D(0x1f9)]:D(0x210))+'\x0a')+('Gloves:\x20'+(t[D(0x20e)]?t[D(0x20e)][D(0x1f9)]:D(0x210))+'\x0a')+(D(0x20d)+(t[D(0x1e2)]?t[D(0x1e2)][D(0x1f9)]:D(0x210))+'\x0a')+('Right\x20Hand:\x20'+(t[D(0x1fa)]?t['rightHand'][D(0x1f9)]:D(0x210))+'\x0a')),h[D(0x1f0)]();},m=a59e[B(0x1fc)]({'top':'70%','left':B(0x234),'width':B(0x217),'height':B(0x1ed),'border':{'type':B(0x1e4)},'label':B(0x1fe),'content':B(0x238),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x1e3)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h['append'](m);const n=t=>{const E=B;let u='Currently\x20in:\x20'+t['name']+'\x0a\x0a';u+=E(0x22c),t[E(0x21f)]['size']>0x0?t[E(0x21f)]['forEach']((v,w)=>{const F=E;if(v instanceof Door){const x=v['getOtherSide'](t);x[F(0x204)]===RoomType[F(0x1f6)]?u+=capitalCase(w)+':\x20'+x[F(0x1f9)]:u+=capitalCase(w)+':\x20'+v[F(0x1f9)];if(v[F(0x23b)]())u+=F(0x21c);else v[F(0x226)]()&&(u+='\x20(Unlocked)');u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+=E(0x231),m[E(0x235)](u),h[E(0x1f0)]();},o=a59e[B(0x1fc)]({'id':B(0x227),'top':'0%','left':'0%','width':B(0x234),'height':'90%','border':{'type':B(0x1e4)},'label':B(0x232),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x1e3)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o[B(0x1ec)](B(0x203)),h[B(0x1e9)](o);const p=a59e[B(0x209)]({'bottom':0x0,'left':0x0,'width':B(0x225),'height':B(0x200),'tags':!![],'border':{'type':'line'},'style':{'fg':B(0x1eb),'border':{'fg':B(0x1f5)}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h[B(0x1e9)](p),h[B(0x1e6)]([B(0x21a),B(0x237)],()=>process['exit'](0x0)),p[B(0x222)](),h[B(0x1f0)]();const q=Logger['getInstance'](e['logFilePath'],h),r=new Player({'playerName':c});q[B(0x233)](B(0x213));const s=a59f[B(0x22f)](r,d);o[B(0x235)](s[B(0x1f4)]()),l(s[B(0x212)]['equipment']),j(s['player']['inventory']),n(s[B(0x212)][B(0x220)]),p['key']([B(0x224)],async()=>{const G=B,t=p[G(0x22d)](),u=s[G(0x1e1)](t);(t[G(0x1e7)]('\x20')[0x0]===G(0x1f3)||G(0x20a)||'unequip')&&(j(s['player'][G(0x1ff)]),l(s['player'][G(0x214)])),(t[G(0x1e7)]('\x20')[0x0]==='go'||G(0x1f2)||G(0x20b))&&n(s['player'][G(0x220)]),t[G(0x1e7)]('\x20')[0x0]===G(0x207)&&o['setContent'](''),u===null&&(console['log'](G(0x218)),h[G(0x1f0)](),q[G(0x233)]('<<<<<<<<---------\x20Terminating\x20game'),process[G(0x219)](0x0)),o[G(0x211)](u),o[G(0x1f7)](0x1),p['clearValue'](),p[G(0x222)](),h[G(0x1f0)]();});}catch(t){console['log'](t),process[B(0x219)](0x1);}}const args=process[a59H(0x23e)][a59H(0x1e5)](0x2);main(args[0x0],JSON[a59H(0x1e0)](args[0x1]),JSON['parse'](args[0x2]));
1
+ const a59H=a59d;(function(a,b){const y=a59d,c=a();while(!![]){try{const d=parseInt(y(0x1a4))/0x1*(-parseInt(y(0x171))/0x2)+parseInt(y(0x166))/0x3+parseInt(y(0x169))/0x4+parseInt(y(0x18e))/0x5*(parseInt(y(0x176))/0x6)+parseInt(y(0x165))/0x7+parseInt(y(0x179))/0x8*(-parseInt(y(0x1a5))/0x9)+-parseInt(y(0x173))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0x80ffa));function a59c(){const I=['Your\x20items\x20will\x20be\x20listed\x20here...','Currently\x20in:\x20','focus','2ELSQtm','25%','6369420Ifygyg','Arms:\x20','textbox','55374GucsOP','getWelcomeMessage','write','1008isHiaQ','Gloves:\x20','argv','exits','-----\x20Exits\x20------\x0a','\x20Equipment\x20','box','join','gloves','getAllItems','70%','key','C-c','\x20Map\x20','forEach','100%','screen','cyan','split','75%','toString','405dpEfOw','equipment','10%','slice','player','render','checkIfLocked','name','line','None','search','mousemove','clearValue','unequip','take','getInstance','Left\x20Hand:\x20','leftHand','handleInput','(((.+)+)+)+$','\x20(Unlocked)','\x20(Locked)','1019661LROEEx','49509bxtNjy','torso','currentLocation','rightHand','logBox','unlock','Legs:\x20','append','feet','Thanks\x20for\x20playing!','white','\x0aThere\x20are\x20no\x20exits\x20here.','parse','45%','20%','yellow','clear','inventory','Feet:\x20','----->>>>>>\x20Initializing\x20Game','apply','lock','setContent','\x20Inventory\x20','log','7000448JniOYU','1123620jPGEWy','legs','head','3023816WZgwqi','checkIfLockable','getValue','90%','logFilePath'];a59c=function(){return I;};return a59c();}import a59e from'blessed';import{capitalCase}from'change-case';import a59f from'./game.js';import{RoomType}from'./types/enums.js';import{Player}from'./models/player.js';import{Door}from'./models/door.js';import{Logger}from'./utilities/logger.js';export async function main(c,d,e){const B=a59d,f=(function(){let h=!![];return function(i,j){const k=h?function(){const z=a59d;if(j){const l=j[z(0x160)](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const A=a59d;return g[A(0x18d)]()[A(0x198)](A(0x1a1))['toString']()['constructor'](g)[A(0x198)]('(((.+)+)+)+$');});g();try{const h=a59e[B(0x189)]({'smartCSR':!![],'title':'Side\x20Quest\x20Adventure\x20Game'}),i=a59e['box']({'top':'0%','left':B(0x18c),'width':B(0x172),'height':B(0x1b2),'border':{'type':B(0x196)},'label':B(0x163),'content':B(0x16e),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x1b4)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const C=B,u=t[C(0x182)]()['map'](v=>v[C(0x195)]);i[C(0x162)](u[C(0x180)]('\x0a')),h[C(0x193)]();};h[B(0x1ac)](i);const k=a59e[B(0x17f)]({'top':B(0x1b2),'left':B(0x18c),'width':'25%','height':B(0x172),'border':{'type':B(0x196)},'label':B(0x17e),'content':'Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x1b4)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h['append'](k);const l=t=>{const D=B;k[D(0x162)]('Head:\x20'+(t['head']?t[D(0x168)]['name']:D(0x197))+'\x0a'+('Torso:\x20'+(t[D(0x1a6)]?t[D(0x1a6)]['name']:D(0x197))+'\x0a')+(D(0x1ab)+(t[D(0x167)]?t[D(0x167)]['name']:D(0x197))+'\x0a')+(D(0x15e)+(t[D(0x1ad)]?t['feet'][D(0x195)]:D(0x197))+'\x0a')+(D(0x174)+(t['arms']?t['arms'][D(0x195)]:D(0x197))+'\x0a')+(D(0x17a)+(t[D(0x181)]?t[D(0x181)][D(0x195)]:'None')+'\x0a')+(D(0x19e)+(t[D(0x19f)]?t[D(0x19f)]['name']:D(0x197))+'\x0a')+('Right\x20Hand:\x20'+(t[D(0x1a8)]?t['rightHand']['name']:D(0x197))+'\x0a')),h[D(0x193)]();},m=a59e['box']({'top':B(0x183),'left':B(0x18c),'width':B(0x172),'height':B(0x1b3),'border':{'type':B(0x196)},'label':B(0x186),'content':'Available\x20exits\x20will\x20be\x20shown\x20here...','tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x1b4)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0x1ac)](m);const n=t=>{const E=B;let u=E(0x16f)+t[E(0x195)]+'\x0a\x0a';u+=E(0x17d),t['exits']['size']>0x0?t[E(0x17c)][E(0x187)]((v,w)=>{const F=E;if(v instanceof Door){const x=v['getOtherSide'](t);x['roomType']===RoomType['OUTSIDE']?u+=capitalCase(w)+':\x20'+x[F(0x195)]:u+=capitalCase(w)+':\x20'+v[F(0x195)];if(v[F(0x194)]())u+=F(0x1a3);else v[F(0x16a)]()&&(u+=F(0x1a2));u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+=E(0x1b0),m[E(0x162)](u),h[E(0x193)]();},o=a59e['box']({'id':B(0x1a9),'top':'0%','left':'0%','width':B(0x18c),'height':B(0x16c),'border':{'type':B(0x196)},'label':'\x20Game\x20Log\x20','scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x1b4)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o['removeAllListeners'](B(0x199)),h['append'](o);const p=a59e[B(0x175)]({'bottom':0x0,'left':0x0,'width':B(0x188),'height':B(0x190),'tags':!![],'border':{'type':B(0x196)},'style':{'fg':B(0x1af),'border':{'fg':B(0x18a)}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h['append'](p),h[B(0x184)](['escape',B(0x185)],()=>process['exit'](0x0)),p[B(0x170)](),h[B(0x193)]();const q=Logger[B(0x19d)](e[B(0x16d)],h),r=new Player({'playerName':c});q[B(0x178)](B(0x15f));const s=a59f[B(0x19d)](r,d);o[B(0x162)](s[B(0x177)]()),l(s[B(0x192)][B(0x18f)]),j(s[B(0x192)][B(0x15d)]),n(s['player'][B(0x1a7)]),p[B(0x184)](['enter'],async()=>{const G=B,t=p[G(0x16b)](),u=s[G(0x1a0)](t);(t[G(0x18b)]('\x20')[0x0]===G(0x19c)||'equip'||G(0x19b))&&(j(s[G(0x192)][G(0x15d)]),l(s[G(0x192)]['equipment'])),(t[G(0x18b)]('\x20')[0x0]==='go'||G(0x161)||G(0x1aa))&&n(s[G(0x192)][G(0x1a7)]),t[G(0x18b)]('\x20')[0x0]===G(0x15c)&&o[G(0x162)](''),u===null&&(console[G(0x164)](G(0x1ae)),h[G(0x193)](),q['write']('<<<<<<<<---------\x20Terminating\x20game'),process['exit'](0x0)),o['pushLine'](u),o['scroll'](0x1),p[G(0x19a)](),p['focus'](),h[G(0x193)]();});}catch(t){console[B(0x164)](t),process['exit'](0x1);}}function a59d(a,b){const c=a59c();return a59d=function(d,e){d=d-0x15c;let f=c[d];return f;},a59d(a,b);}const args=process[a59H(0x17b)][a59H(0x191)](0x2);main(args[0x0],JSON[a59H(0x1b1)](args[0x1]),JSON[a59H(0x1b1)](args[0x2]));
@@ -1 +1 @@
1
- const a60k=a60d;(function(a,b){const h=a60d,c=a();while(!![]){try{const d=parseInt(h(0x10c))/0x1+parseInt(h(0x11a))/0x2*(parseInt(h(0x114))/0x3)+parseInt(h(0xf6))/0x4*(parseInt(h(0xfd))/0x5)+-parseInt(h(0x113))/0x6*(-parseInt(h(0x100))/0x7)+-parseInt(h(0x10f))/0x8+parseInt(h(0x10e))/0x9+-parseInt(h(0x103))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0x75056));function a60c(){const s=['existsSync','\x20could\x20not\x20be\x20found\x20on\x20screen\x20','19016340PKZgbT','setContent','appendFileSync','mkdirSync','screen','toISOString','.maka','search','write','174399CAxeMR','[INFO]\x20[','5819679jGSllw','1202408sBtqXj','children','instance','apply','18JHBAut','6ohBdWh','scrollTo','dirname','hasScreen','toString','log','705958ichKze','constructor','content','find','options','Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.','ensureLogFileExists','filePath','16Hpqbvl','[ERROR]\x20[','error','getInstance','join','side-quest.log','(((.+)+)+)+$','1062510OscXWg','getScrollHeight','logBox','359933sjhFmZ'];a60c=function(){return s;};return a60c();}const a60b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a60d;if(c){const e=c[i(0x112)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a60a=a60b(this,function(){const j=a60d;return a60a[j(0x118)]()[j(0x10a)](j(0xfc))['toString']()[j(0x11b)](a60a)[j(0x10a)](j(0xfc));});function a60d(a,b){const c=a60c();return a60d=function(d,e){d=d-0xf4;let f=c[d];return f;},a60d(a,b);}a60a();import a60e from'fs';import a60f from'os';import a60g from'path';const homeDir=a60f['homedir']();export class Logger{static [a60k(0x111)];['filePath'];[a60k(0x107)];constructor(a,b){const l=a60k;this[l(0xf5)]=a,this[l(0x107)]=b,this[l(0xf4)]();}static[a60k(0xf9)](a=a60g[a60k(0xfa)](homeDir,a60k(0x109),a60k(0xfb)),b){const m=a60k;if(!Logger[m(0x111)]){if(!b)throw new Error(m(0x11f));Logger['instance']=new Logger(a,b);}return Logger[m(0x111)];}['ensureLogFileExists'](){const n=a60k,a=a60g[n(0x116)](this['filePath']);!a60e[n(0x101)](a)&&a60e[n(0x106)](a,{'recursive':!![]}),!a60e[n(0x101)](this[n(0xf5)])&&a60e['writeFileSync'](this['filePath'],'');}[a60k(0x10b)](a){const o=a60k,b=new Date()['toISOString'](),c=o(0x10d)+b+']\x20'+a+'\x0a';a60e[o(0x105)](this[o(0xf5)],c);}[a60k(0xf8)](a){const p=a60k,b=new Date()[p(0x108)](),c=p(0xf7)+b+']\x20'+a+'\x0a';a60e[p(0x105)](this[p(0xf5)],c);}[a60k(0x119)](a){const q=a60k,b=this['screen']?.[q(0x110)][q(0x11d)](c=>c['type']==='box'&&c[q(0x11e)]['id']===q(0xff));b?(b[q(0x104)](b[q(0x11c)]+'\x0a'+a),b[q(0x115)](b[q(0xfe)]()),this['screen']?.['render']()):this[q(0xf8)]('The\x20logbox\x20'+b+q(0x102)+this['screen']),this[q(0x10b)](a);}[a60k(0x117)](){const r=a60k;return!!this[r(0x107)];}}
1
+ const a60k=a60d;(function(a,b){const h=a60d,c=a();while(!![]){try{const d=parseInt(h(0x95))/0x1+-parseInt(h(0xab))/0x2+parseInt(h(0x9e))/0x3+-parseInt(h(0xb0))/0x4+parseInt(h(0xa2))/0x5+parseInt(h(0x8f))/0x6+-parseInt(h(0xad))/0x7;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0x444ad));const a60b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a60d;if(c){const e=c[i(0x9d)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a60a=a60b(this,function(){const j=a60d;return a60a[j(0x9c)]()[j(0x97)]('(((.+)+)+)+$')[j(0x9c)]()[j(0x90)](a60a)[j(0x97)](j(0xa1));});function a60d(a,b){const c=a60c();return a60d=function(d,e){d=d-0x8c;let f=c[d];return f;},a60d(a,b);}a60a();import a60e from'fs';import a60f from'os';import a60g from'path';const homeDir=a60f[a60k(0xa0)]();export class Logger{static [a60k(0x99)];[a60k(0xb2)];[a60k(0x98)];constructor(a,b){const l=a60k;this['filePath']=a,this[l(0x98)]=b,this[l(0x93)]();}static['getInstance'](a=a60g['join'](homeDir,a60k(0xa4),a60k(0xb3)),b){const m=a60k;if(!Logger[m(0x99)]){if(!b)throw new Error(m(0xa8));Logger[m(0x99)]=new Logger(a,b);}return Logger[m(0x99)];}[a60k(0x93)](){const n=a60k,a=a60g[n(0xa3)](this[n(0xb2)]);!a60e[n(0x94)](a)&&a60e[n(0x9f)](a,{'recursive':!![]}),!a60e[n(0x94)](this['filePath'])&&a60e[n(0x96)](this['filePath'],'');}[a60k(0x8e)](a){const o=a60k,b=new Date()[o(0xa6)](),c=o(0x9b)+b+']\x20'+a+'\x0a';a60e['appendFileSync'](this[o(0xb2)],c);}[a60k(0xae)](a){const p=a60k,b=new Date()[p(0xa6)](),c=p(0xa7)+b+']\x20'+a+'\x0a';a60e[p(0x9a)](this['filePath'],c);}['log'](a){const q=a60k,b=this['screen']?.[q(0x91)][q(0x92)](c=>c[q(0xa5)]===q(0xaf)&&c[q(0xaa)]['id']==='logBox');b?(b[q(0xac)](b[q(0x8c)]+'\x0a'+a),b[q(0xb4)](b[q(0xa9)]()),this['screen']?.[q(0x8d)]()):this[q(0xae)](q(0xb1)+b+'\x20could\x20not\x20be\x20found\x20on\x20screen\x20'+this['screen']),this['write'](a);}['hasScreen'](){const r=a60k;return!!this[r(0x98)];}}function a60c(){const s=['content','render','write','778992PogRRe','constructor','children','find','ensureLogFileExists','existsSync','30421rjTBsR','writeFileSync','search','screen','instance','appendFileSync','[INFO]\x20[','toString','apply','673272JdMegc','mkdirSync','homedir','(((.+)+)+)+$','647515bIUxyP','dirname','.maka','type','toISOString','[ERROR]\x20[','Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.','getScrollHeight','options','325874yfCEyr','setContent','215257yiDawG','error','box','163068NUvXoI','The\x20logbox\x20','filePath','side-quest.log','scrollTo'];a60c=function(){return s;};return a60c();}
@@ -1 +1 @@
1
- const a61n=a61d;function a61d(a,b){const c=a61c();return a61d=function(d,e){d=d-0x17d;let f=c[d];return f;},a61d(a,b);}(function(a,b){const k=a61d,c=a();while(!![]){try{const d=parseInt(k(0x19f))/0x1+-parseInt(k(0x188))/0x2*(parseInt(k(0x196))/0x3)+parseInt(k(0x194))/0x4*(parseInt(k(0x17f))/0x5)+-parseInt(k(0x1a4))/0x6+parseInt(k(0x18d))/0x7+-parseInt(k(0x195))/0x8*(-parseInt(k(0x193))/0x9)+parseInt(k(0x182))/0xa*(-parseInt(k(0x198))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0xa1616));const a61b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a61d;if(c){const e=c[l(0x1a0)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a61a=a61b(this,function(){const m=a61d;return a61a[m(0x187)]()['search'](m(0x19b))[m(0x187)]()[m(0x199)](a61a)['search']('(((.+)+)+)+$');});a61a();import a61e from'path';import{spawn}from'child_process';import a61f from'./play.command.js';import{Command}from'../../command.js';function a61c(){const q=['110737IURnXj','constructor','Thanks\x20for\x20playing!','(((.+)+)+)+$','resolve','shadowrun','getGlobalMakaDir','102078LoLDvW','apply','fsi','What\x20is\x20your\x20name?','./sideQuest/ui.js','3697956JBNUCD','node','url','side-quest.log','ask','5Wmlkne','side-quest','inherit','190AqCOnA','options','sideQuestAnswer','Just\x20a\x20little\x20pet\x20project...\x20I\x20really\x20liked\x20the\x20Dunnet\x20game\x20that\x0a\x20\x20came\x20with\x20MacOS\x20but\x20has\x20been\x20removed.\x20\x20Just\x20messing\x20around\x20and\x20building\x0a\x20\x20out\x20a\x20similar\x20thing...','exit','toString','103786KlieCL','player','stringify','Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','log','5511590lTmOre','maka\x20play:side-quest','create','list','dungeon','Commoner','162pMercV','4655052XIEZFd','293704tnBbNE','72tXsdcT','join'];a61c=function(){return q;};return a61c();}import{Actions}from'../../tools/actions/actions.class.js';import{dungeonConfig,shadowrunConfig}from'./sideQuest/scenes/rooms.js';import{fileURLToPath}from'url';import{dirname}from'path';const __filename=fileURLToPath(import.meta[a61n(0x1a6)]),__dirname=dirname(__filename);Command[a61n(0x18f)]({'name':a61n(0x180),'usage':a61n(0x18e),'shortDesc':'Play\x20a\x20little\x20side-quest','aliases':['sq'],'description':a61n(0x185),'validOpts':[a61n(0x189)]},async function(a,b){const o=a61n;try{const c=this[o(0x1a1)][o(0x19e)](),d=a61e[o(0x197)](c,o(0x17d)),e=b[o(0x189)]?b[o(0x189)]:await Actions[o(0x17e)](o(0x1a2))||o(0x192),f={...b,'logFilePath':d},g={'type':o(0x190),'name':o(0x184),'message':o(0x18b),'choices':[{'name':o(0x191),'value':dungeonConfig},{'name':o(0x19d),'value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions[o(0x183)](g);if(e&&h){const i=spawn(o(0x1a5),[a61e[o(0x19c)](__dirname,o(0x1a3)),e,JSON[o(0x18a)](h),JSON[o(0x18a)](f)],{'stdio':o(0x181)});i['on'](o(0x186),()=>{const p=o;console['log'](p(0x19a));});}}catch(j){console[o(0x18c)](j);}},a61f);
1
+ const a61n=a61d;(function(a,b){const k=a61d,c=a();while(!![]){try{const d=parseInt(k(0x1d1))/0x1*(parseInt(k(0x1d6))/0x2)+parseInt(k(0x1e1))/0x3*(parseInt(k(0x1e8))/0x4)+-parseInt(k(0x1ec))/0x5*(-parseInt(k(0x1d8))/0x6)+parseInt(k(0x1d7))/0x7+-parseInt(k(0x1e2))/0x8*(parseInt(k(0x1f0))/0x9)+-parseInt(k(0x1e5))/0xa+parseInt(k(0x1d4))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0x5949f));const a61b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a61d;if(c){const e=c[l(0x1df)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a61a=a61b(this,function(){const m=a61d;return a61a[m(0x1e3)]()[m(0x1e0)]('(((.+)+)+)+$')[m(0x1e3)]()['constructor'](a61a)[m(0x1e0)](m(0x1eb));});a61a();function a61c(){const q=['Play\x20a\x20little\x20side-quest','6520300YHuPdT','url','side-quest.log','1144604xlBFyq','player','list','(((.+)+)+)+$','35bfMgeQ','Thanks\x20for\x20playing!','What\x20is\x20your\x20name?','log','2201409cfEGsQ','node','options','stringify','maka\x20play:side-quest','12BOnYLt','resolve','side-quest','7146084VANHod','create','4462mrDYhd','460271zVkOlA','410262OpVVjS','getGlobalMakaDir','Commoner','Just\x20a\x20little\x20pet\x20project...\x20I\x20really\x20liked\x20the\x20Dunnet\x20game\x20that\x0a\x20\x20came\x20with\x20MacOS\x20but\x20has\x20been\x20removed.\x20\x20Just\x20messing\x20around\x20and\x20building\x0a\x20\x20out\x20a\x20similar\x20thing...','join','inherit','fsi','apply','search','3Zbeoxy','16AtuFfl','toString'];a61c=function(){return q;};return a61c();}import a61e from'path';import{spawn}from'child_process';import a61f from'./play.command.js';import{Command}from'../../command.js';import{Actions}from'../../tools/actions/actions.class.js';import{dungeonConfig,shadowrunConfig}from'./sideQuest/scenes/rooms.js';import{fileURLToPath}from'url';import{dirname}from'path';function a61d(a,b){const c=a61c();return a61d=function(d,e){d=d-0x1d0;let f=c[d];return f;},a61d(a,b);}const __filename=fileURLToPath(import.meta[a61n(0x1e6)]),__dirname=dirname(__filename);Command[a61n(0x1d5)]({'name':a61n(0x1d3),'usage':a61n(0x1d0),'shortDesc':a61n(0x1e4),'aliases':['sq'],'description':a61n(0x1db),'validOpts':[a61n(0x1e9)]},async function(a,b){const o=a61n;try{const c=this[o(0x1de)][o(0x1d9)](),d=a61e[o(0x1dc)](c,o(0x1e7)),e=b['player']?b[o(0x1e9)]:await Actions['ask'](o(0x1ee))||o(0x1da),f={...b,'logFilePath':d},g={'type':o(0x1ea),'name':'sideQuestAnswer','message':'Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','choices':[{'name':'dungeon','value':dungeonConfig},{'name':'shadowrun','value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions[o(0x1f2)](g);if(e&&h){const i=spawn(o(0x1f1),[a61e[o(0x1d2)](__dirname,'./sideQuest/ui.js'),e,JSON[o(0x1f3)](h),JSON[o(0x1f3)](f)],{'stdio':o(0x1dd)});i['on']('exit',()=>{const p=o;console[p(0x1ef)](p(0x1ed));});}}catch(j){console[o(0x1ef)](j);}},a61f);
@@ -1 +1 @@
1
- var a62i=a62d;(function(a,b){var f=a62d,c=a();while(!![]){try{var d=parseInt(f(0xd3))/0x1+parseInt(f(0xd1))/0x2*(parseInt(f(0xe0))/0x3)+-parseInt(f(0xdc))/0x4+parseInt(f(0xdd))/0x5+-parseInt(f(0xe1))/0x6*(-parseInt(f(0xdf))/0x7)+-parseInt(f(0xd9))/0x8*(-parseInt(f(0xd8))/0x9)+-parseInt(f(0xda))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0xe13b5));var a62b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a62d;if(c){var e=c[g(0xd6)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a62a=a62b(this,function(){var h=a62d;return a62a[h(0xd7)]()['search']('(((.+)+)+)+$')[h(0xd7)]()[h(0xde)](a62a)['search'](h(0xd2));});a62a();function a62c(){var k=['6ghYyjb','4XZOskx','(((.+)+)+)+$','816333icHaTC','npx\x20command-line-snake','maka\x20game:snake','apply','toString','1782McecBn','63696nMtGBx','37321380VzhRgO','create','5836680KuFukK','6115855PgbuXZ','constructor','12813241TkEKEf','1001121zEaQsm'];a62c=function(){return k;};return a62c();}import a62e from'./play.command.js';import{Command}from'../../command.js';function a62d(a,b){var c=a62c();return a62d=function(d,e){d=d-0xd1;var f=c[d];return f;},a62d(a,b);}import{execSync}from'child_process';Command[a62i(0xdb)]({'name':'snake','usage':a62i(0xd5),'shortDesc':'Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','validOpts':[]},async function(){var j=a62i;execSync(j(0xd4),{'stdio':'inherit'});},a62e);
1
+ var a62i=a62d;function a62c(){var k=['constructor','3927781vPlLcx','7XUYzTj','snake','Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','132NPUKgK','create','1746349LgDhQj','8fkosoK','5BmZhZD','20qQeWfy','toString','(((.+)+)+)+$','npx\x20command-line-snake','1949202lgVCOT','1059849iFpoNV','search','inherit','apply','2481576xmqHZc','maka\x20game:snake','2AIRFAB','6248744eJsEht','92317Yjbjes'];a62c=function(){return k;};return a62c();}(function(a,b){var f=a62d,c=a();while(!![]){try{var d=parseInt(f(0xd1))/0x1*(parseInt(f(0xcf))/0x2)+-parseInt(f(0xc8))/0x3*(parseInt(f(0xc2))/0x4)+parseInt(f(0xc3))/0x5*(-parseInt(f(0xcd))/0x6)+-parseInt(f(0xd4))/0x7*(parseInt(f(0xd0))/0x8)+parseInt(f(0xc9))/0x9+parseInt(f(0xc4))/0xa*(-parseInt(f(0xc1))/0xb)+-parseInt(f(0xd7))/0xc*(-parseInt(f(0xd3))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0xb03f6));var a62b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a62d;if(c){var e=c[g(0xcc)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a62a=a62b(this,function(){var h=a62d;return a62a[h(0xc5)]()[h(0xca)](h(0xc6))[h(0xc5)]()[h(0xd2)](a62a)[h(0xca)](h(0xc6));});function a62d(a,b){var c=a62c();return a62d=function(d,e){d=d-0xc1;var f=c[d];return f;},a62d(a,b);}a62a();import a62e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command[a62i(0xd8)]({'name':a62i(0xd5),'usage':a62i(0xce),'shortDesc':a62i(0xd6),'validOpts':[]},async function(){var j=a62i;execSync(j(0xc7),{'stdio':j(0xcb)});},a62e);
@@ -1 +1 @@
1
- var a63i=a63d;(function(a,b){var f=a63d,c=a();while(!![]){try{var d=parseInt(f(0x111))/0x1+-parseInt(f(0x108))/0x2*(parseInt(f(0x10b))/0x3)+parseInt(f(0x113))/0x4+-parseInt(f(0x117))/0x5+parseInt(f(0x10a))/0x6*(parseInt(f(0x10c))/0x7)+-parseInt(f(0x116))/0x8+parseInt(f(0x10e))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0x1d99e));function a63d(a,b){var c=a63c();return a63d=function(d,e){d=d-0x105;var f=c[d];return f;},a63d(a,b);}function a63c(){var k=['(((.+)+)+)+$','apply','25099wyRLxt','constructor','28844XTqGKo','maka\x20game:tetris','toString','1352984ZxobWK','139480adIDdX','search','create','Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','19064JpCtZS','tetris','877164fdbiJi','21coKbnY','7XKRqIj','npx\x20simple-tetris','1858365WdzRMH'];a63c=function(){return k;};return a63c();}var a63b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a63d;if(c){var e=c[g(0x110)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){var h=a63d;return a63a[h(0x115)]()[h(0x105)](h(0x10f))['toString']()[h(0x112)](a63a)[h(0x105)](h(0x10f));});a63a();import a63e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command[a63i(0x106)]({'name':a63i(0x109),'usage':a63i(0x114),'shortDesc':a63i(0x107),'validOpts':[]},async function(){var j=a63i;execSync(j(0x10d),{'stdio':'inherit'});},a63e);
1
+ var a63i=a63d;(function(a,b){var f=a63d,c=a();while(!![]){try{var d=-parseInt(f(0x1bb))/0x1+parseInt(f(0x1c1))/0x2*(parseInt(f(0x1c7))/0x3)+-parseInt(f(0x1ca))/0x4+-parseInt(f(0x1c3))/0x5*(-parseInt(f(0x1c2))/0x6)+parseInt(f(0x1c9))/0x7+-parseInt(f(0x1c4))/0x8+-parseInt(f(0x1cc))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0xb7c11));function a63c(){var k=['9GzlwrA','maka\x20game:tetris','8953525YlSNqY','2155824jXMGdm','search','4499991DyFkQI','toString','551737Axiiqf','(((.+)+)+)+$','apply','tetris','inherit','constructor','562854EpQQWc','354804WnRHFJ','80imafrC','5809208KmewRp','create','Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris'];a63c=function(){return k;};return a63c();}var a63b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a63d;if(c){var e=c[g(0x1bd)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){var h=a63d;return a63a['toString']()['search'](h(0x1bc))[h(0x1ba)]()[h(0x1c0)](a63a)[h(0x1cb)]('(((.+)+)+)+$');});a63a();import a63e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';function a63d(a,b){var c=a63c();return a63d=function(d,e){d=d-0x1ba;var f=c[d];return f;},a63d(a,b);}Command[a63i(0x1c5)]({'name':a63i(0x1be),'usage':a63i(0x1c8),'shortDesc':a63i(0x1c6),'validOpts':[]},async function(){var j=a63i;execSync('npx\x20simple-tetris',{'stdio':j(0x1bf)});},a63e);
@@ -1 +1 @@
1
- const a64i=a64d;function a64c(){const k=['maka\x20{generate,\x20g}:<generator>\x20<name>','(((.+)+)+)+$','7769333bEtjlz','maka\x20g:package\x20package:name','generate','error','help','\x0a\x20\x20For\x20a\x20list\x20of\x20generators,\x20run\x20\x22maka\x20generate\x20--help\x22\x20or\x20\x22maka\x20g\x20--help\x22\x0a\x20\x20','209590rkXPrD','1072472lzPgGN','27rcRHxd','10piYfYc','toString','maka\x20generate:scaffold\x20todos','183310cDGQUN','Scaffold\x20various\x20parts\x20of\x20your\x20application','create','Could\x20not\x20find\x20generator','1088331pHEROh','invoke','7XajUOh','maka\x20g:route\x20todos/edit','424288bLpfdz','apply','4oiGOzd','search','dir','1805352RZVReH'];a64c=function(){return k;};return a64c();}(function(a,b){const f=a64d,c=a();while(!![]){try{const d=parseInt(f(0xbe))/0x1+parseInt(f(0xd2))/0x2+parseInt(f(0xba))/0x3*(parseInt(f(0xc0))/0x4)+-parseInt(f(0xcc))/0x5+-parseInt(f(0xc3))/0x6*(parseInt(f(0xbc))/0x7)+-parseInt(f(0xcd))/0x8*(-parseInt(f(0xce))/0x9)+parseInt(f(0xcf))/0xa*(-parseInt(f(0xc6))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0x38968));const a64b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a64d;if(c){const e=c[g(0xbf)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a64a=a64b(this,function(){const h=a64d;return a64a[h(0xd0)]()[h(0xc1)]('(((.+)+)+)+$')['toString']()['constructor'](a64a)['search'](h(0xc5));});a64a();import{Command}from'../command.js';function a64d(a,b){const c=a64c();return a64d=function(d,e){d=d-0xb8;let f=c[d];return f;},a64d(a,b);}import{Log}from'../tools/log/log.class.js';import a64e from'../generators/maka.gen.js';import{UsageError}from'../error.js';Command[a64i(0xb8)]({'name':a64i(0xc8),'aliases':['g'],'usage':a64i(0xc4),'validOpts':[a64i(0xc2),'where',a64i(0xca)],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':a64i(0xd3),'description':a64i(0xcb),'examples':[a64i(0xd1),'maka\x20g:scaffold\x20todos','maka\x20g:template\x20todos/todo_item',a64i(0xc7),a64i(0xbd),'maka\x20g:api\x20trucks','maka\x20g:dbc\x20geoserver\x20--type=pgsql']},async function(a,b){const j=a64i,c=a[0x0],d=a64e['findGenerator'](c);if(!d){b[j(0xca)]?(Log['notice']('Generators:'),a64e['listGenerators']()):Log[j(0xc9)](j(0xb9));throw new UsageError();}await d[j(0xbb)](a['slice'](0x1),b);});
1
+ const a64h=a64d;(function(a,b){const f=a64d,c=a();while(!![]){try{const d=-parseInt(f(0x139))/0x1*(-parseInt(f(0x12b))/0x2)+parseInt(f(0x13e))/0x3*(-parseInt(f(0x12a))/0x4)+parseInt(f(0x138))/0x5*(parseInt(f(0x136))/0x6)+-parseInt(f(0x149))/0x7*(-parseInt(f(0x135))/0x8)+parseInt(f(0x134))/0x9*(parseInt(f(0x144))/0xa)+parseInt(f(0x132))/0xb*(parseInt(f(0x12d))/0xc)+parseInt(f(0x13d))/0xd*(-parseInt(f(0x14c))/0xe);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0x48ecb));function a64d(a,b){const c=a64c();return a64d=function(d,e){d=d-0x12a;let f=c[d];return f;},a64d(a,b);}const a64b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a64a=a64b(this,function(){const g=a64d;return a64a[g(0x13f)]()[g(0x131)]('(((.+)+)+)+$')[g(0x13f)]()[g(0x13b)](a64a)[g(0x131)](g(0x12e));});a64a();import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import a64e from'../generators/maka.gen.js';import{UsageError}from'../error.js';Command[a64h(0x137)]({'name':a64h(0x140),'aliases':['g'],'usage':a64h(0x14b),'validOpts':['dir',a64h(0x143),'help'],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':a64h(0x141),'description':a64h(0x13c),'examples':[a64h(0x12c),a64h(0x12f),'maka\x20g:template\x20todos/todo_item','maka\x20g:package\x20package:name',a64h(0x145),'maka\x20g:api\x20trucks',a64h(0x147)]},async function(a,b){const i=a64h,c=a[0x0],d=a64e[i(0x130)](c);if(!d){b[i(0x13a)]?(Log[i(0x146)]('Generators:'),a64e[i(0x148)]()):Log[i(0x14a)](i(0x133));throw new UsageError();}await d['invoke'](a[i(0x142)](0x1),b);});function a64c(){const j=['(((.+)+)+)+$','maka\x20g:scaffold\x20todos','findGenerator','search','363ppjCeM','Could\x20not\x20find\x20generator','54ygrOrU','8GREYRH','287004eAMThu','create','5ViZbzT','1ymEUWS','help','constructor','\x0a\x20\x20For\x20a\x20list\x20of\x20generators,\x20run\x20\x22maka\x20generate\x20--help\x22\x20or\x20\x22maka\x20g\x20--help\x22\x0a\x20\x20','65lmDpaZ','368541REBpdZ','toString','generate','Scaffold\x20various\x20parts\x20of\x20your\x20application','slice','where','881410UPIsrA','maka\x20g:route\x20todos/edit','notice','maka\x20g:dbc\x20geoserver\x20--type=pgsql','listGenerators','2288986rewCsB','error','maka\x20{generate,\x20g}:<generator>\x20<name>','1965054RhXBdX','12FQkSAC','393098LTtKKb','maka\x20generate:scaffold\x20todos','97752RdvPGk'];a64c=function(){return j;};return a64c();}
@@ -1 +1 @@
1
- (function(a,b){var f=a65d,c=a();while(!![]){try{var d=parseInt(f(0x1b1))/0x1*(parseInt(f(0x1af))/0x2)+parseInt(f(0x1b8))/0x3*(-parseInt(f(0x1b3))/0x4)+-parseInt(f(0x1ac))/0x5*(parseInt(f(0x1b9))/0x6)+-parseInt(f(0x1b6))/0x7*(-parseInt(f(0x1b7))/0x8)+-parseInt(f(0x1ae))/0x9*(parseInt(f(0x1ba))/0xa)+parseInt(f(0x1bc))/0xb+-parseInt(f(0x1ad))/0xc*(-parseInt(f(0x1b2))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a65c,0xb49c9));var a65b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a65d;if(c){var e=c[g(0x1b4)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a65a=a65b(this,function(){var h=a65d;return a65a[h(0x1b0)]()['search']('(((.+)+)+)+$')[h(0x1b0)]()[h(0x1b5)](a65a)[h(0x1bb)]('(((.+)+)+)+$');});function a65d(a,b){var c=a65c();return a65d=function(d,e){d=d-0x1ac;var f=c[d];return f;},a65d(a,b);}a65a();import'./get.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';import'./whoami.sub.cmd.js';function a65c(){var i=['toString','1033991aRpleM','455eeToIg','164Ebnnwm','apply','constructor','1299053kWUQqc','48iCDyHA','1605TXsDSD','30auhuaJ','110uGwdms','search','3491466aipTBD','1268625rKQZCh','48684Ahcbwv','471699bUpCkh','2ljSyOn'];a65c=function(){return i;};return a65c();}
1
+ (function(a,b){var f=a65d,c=a();while(!![]){try{var d=parseInt(f(0x185))/0x1+parseInt(f(0x189))/0x2*(-parseInt(f(0x18b))/0x3)+-parseInt(f(0x180))/0x4*(parseInt(f(0x18a))/0x5)+parseInt(f(0x18c))/0x6*(-parseInt(f(0x188))/0x7)+-parseInt(f(0x17f))/0x8+parseInt(f(0x186))/0x9+parseInt(f(0x181))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a65c,0x3bdd0));var a65b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a65d;if(c){var e=c[g(0x184)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a65a=a65b(this,function(){var h=a65d;return a65a[h(0x187)]()[h(0x183)](h(0x182))[h(0x187)]()['constructor'](a65a)['search'](h(0x182));});function a65d(a,b){var c=a65c();return a65d=function(d,e){d=d-0x17f;var f=c[d];return f;},a65d(a,b);}a65a();import'./get.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';function a65c(){var i=['(((.+)+)+)+$','search','apply','396998PqJvrA','3114072zgcWXg','toString','43029vUDvTx','156anZBTP','547970JStxIx','10518YXjqQn','414RRBHRw','3843240JSpMVE','4ggNonk','7898040bxsGSL'];a65c=function(){return i;};return a65c();}import'./whoami.sub.cmd.js';
@@ -1 +1 @@
1
- const a66i=a66d;function a66d(a,b){const c=a66c();return a66d=function(d,e){d=d-0x177;let f=c[d];return f;},a66d(a,b);}(function(a,b){const f=a66d,c=a();while(!![]){try{const d=-parseInt(f(0x183))/0x1+-parseInt(f(0x189))/0x2+parseInt(f(0x179))/0x3+-parseInt(f(0x186))/0x4+-parseInt(f(0x17e))/0x5+parseInt(f(0x181))/0x6*(parseInt(f(0x17f))/0x7)+parseInt(f(0x184))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0xd2d6d));const a66b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a66d;if(c){const e=c[g(0x17b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a66a=a66b(this,function(){const h=a66d;return a66a['toString']()[h(0x180)](h(0x177))['toString']()[h(0x18a)](a66a)[h(0x180)](h(0x177));});function a66c(){const k=['get','Get\x20various\x20Maka\x20variables\x20and\x20configurations','951350CoIaIj','37247OkEhIW','search','426ToKxwD','Sub-Command\x20not\x20found','607862GXcPJy','19617184Gnxpmk','findSubCommand','1726052CjCPVJ','runSubCommand','error','2124410LzIANH','constructor','(((.+)+)+)+$','create','976524rzGizM','maka\x20get:<sub-command>','apply'];a66c=function(){return k;};return a66c();}a66a();import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import{UsageErrorWithSubs}from'../../error.js';const GetCommand=Command[a66i(0x178)]({'name':a66i(0x17c),'usage':a66i(0x17a),'minArgLength':0x1,'maxArgLength':0x2,'shortDesc':a66i(0x17d),'validOpts':[]},async function(a,b){const j=a66i,c=a[0x0],d=this[j(0x185)](c);if(d)this[j(0x187)](c,a,b);else{Log[j(0x188)](j(0x182));throw new UsageErrorWithSubs();}});export default GetCommand;
1
+ const a66i=a66d;(function(a,b){const f=a66d,c=a();while(!![]){try{const d=-parseInt(f(0x84))/0x1*(parseInt(f(0x87))/0x2)+-parseInt(f(0x7c))/0x3*(parseInt(f(0x80))/0x4)+parseInt(f(0x8a))/0x5+parseInt(f(0x85))/0x6*(parseInt(f(0x77))/0x7)+parseInt(f(0x79))/0x8*(-parseInt(f(0x78))/0x9)+-parseInt(f(0x89))/0xa+parseInt(f(0x81))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0x57a84));const a66b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a66d;if(c){const e=c[g(0x7e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a66a=a66b(this,function(){const h=a66d;return a66a[h(0x83)]()[h(0x8b)](h(0x88))[h(0x83)]()[h(0x7d)](a66a)[h(0x8b)](h(0x88));});a66a();import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import{UsageErrorWithSubs}from'../../error.js';const GetCommand=Command[a66i(0x82)]({'name':a66i(0x7f),'usage':a66i(0x7b),'minArgLength':0x1,'maxArgLength':0x2,'shortDesc':a66i(0x7a),'validOpts':[]},async function(a,b){const j=a66i,c=a[0x0],d=this['findSubCommand'](c);if(d)this[j(0x86)](c,a,b);else{Log['error']('Sub-Command\x20not\x20found');throw new UsageErrorWithSubs();}});function a66d(a,b){const c=a66c();return a66d=function(d,e){d=d-0x77;let f=c[d];return f;},a66d(a,b);}export default GetCommand;function a66c(){const k=['search','12376BNZpBf','8523RuQADE','4104Rcnksx','Get\x20various\x20Maka\x20variables\x20and\x20configurations','maka\x20get:<sub-command>','358542IDwWho','constructor','apply','get','8LpfUcP','14516480QXIwKQ','create','toString','192614jiiuOj','1098FsGrOD','runSubCommand','4eTgCUd','(((.+)+)+)+$','4992740NZLjkf','1625805fRykec'];a66c=function(){return k;};return a66c();}
@@ -1 +1 @@
1
- const a67i=a67d;function a67c(){const k=['exit','1005wlteBF','(((.+)+)+)+$','88sDwbCY','137261JdUqbe','global-config','10803140yRVzjA','99909UBSYtP','33418132MmvXOx','36918KjxKeT','log','error','getGlobalConfig','apply','4poddNr','118517nwBqBx','search','Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','maka\x20get:global-config','constructor','toString','6264540nWyhRx','616uwdvDE','fsi'];a67c=function(){return k;};return a67c();}(function(a,b){const f=a67d,c=a();while(!![]){try{const d=parseInt(f(0x7f))/0x1*(parseInt(f(0x71))/0x2)+parseInt(f(0x82))/0x3*(-parseInt(f(0x7e))/0x4)+-parseInt(f(0x7c))/0x5*(-parseInt(f(0x84))/0x6)+-parseInt(f(0x72))/0x7*(-parseInt(f(0x79))/0x8)+parseInt(f(0x78))/0x9+parseInt(f(0x81))/0xa+-parseInt(f(0x83))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0xc85b2));const a67b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a67d;if(c){const e=c[g(0x70)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a67a=a67b(this,function(){const h=a67d;return a67a[h(0x77)]()[h(0x73)](h(0x7d))['toString']()[h(0x76)](a67a)[h(0x73)]('(((.+)+)+)+$');});a67a();import a67e from'./get.command.js';import{Command}from'../../command.js';function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0x6e;let f=c[d];return f;},a67d(a,b);}Command['create']({'name':a67i(0x80),'usage':a67i(0x75),'aliases':['gc'],'shortDesc':a67i(0x74),'validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const j=a67i;try{const a=await this[j(0x7a)][j(0x6f)]();console[j(0x85)](a),process[j(0x7b)](0x0);}catch(b){console[j(0x6e)](b),process['exit'](0x0);}},a67e);
1
+ const a67i=a67d;(function(a,b){const f=a67d,c=a();while(!![]){try{const d=-parseInt(f(0x1d9))/0x1*(parseInt(f(0x1e8))/0x2)+-parseInt(f(0x1ec))/0x3*(parseInt(f(0x1dc))/0x4)+-parseInt(f(0x1df))/0x5+parseInt(f(0x1e1))/0x6*(parseInt(f(0x1e0))/0x7)+-parseInt(f(0x1d7))/0x8*(parseInt(f(0x1e5))/0x9)+parseInt(f(0x1e6))/0xa+parseInt(f(0x1eb))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0xc69c5));const a67b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a67d;if(c){const e=c[g(0x1d8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a67a=a67b(this,function(){const h=a67d;return a67a[h(0x1e9)]()[h(0x1e4)](h(0x1e7))['toString']()[h(0x1de)](a67a)['search'](h(0x1e7));});a67a();function a67c(){const k=['search','158094SXyVaa','10164180uJUWqf','(((.+)+)+)+$','2669938twWfsE','toString','exit','27330600EqxOhw','9ygZGTM','464LYrqaQ','apply','1THMWBC','fsi','error','1992356dvIgrJ','log','constructor','2273735sPIISh','4914cHwvTs','13806LbeSnI','Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','create'];a67c=function(){return k;};return a67c();}import a67e from'./get.command.js';import{Command}from'../../command.js';function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0x1d7;let f=c[d];return f;},a67d(a,b);}Command[a67i(0x1e3)]({'name':'global-config','usage':'maka\x20get:global-config','aliases':['gc'],'shortDesc':a67i(0x1e2),'validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const j=a67i;try{const a=await this[j(0x1da)]['getGlobalConfig']();console[j(0x1dd)](a),process[j(0x1ea)](0x0);}catch(b){console[j(0x1db)](b),process[j(0x1ea)](0x0);}},a67e);
@@ -1 +1 @@
1
- const a68i=a68d;(function(a,b){const f=a68d,c=a();while(!![]){try{const d=-parseInt(f(0x144))/0x1*(-parseInt(f(0x149))/0x2)+-parseInt(f(0x138))/0x3*(parseInt(f(0x147))/0x4)+-parseInt(f(0x139))/0x5+parseInt(f(0x142))/0x6*(parseInt(f(0x14a))/0x7)+-parseInt(f(0x137))/0x8+parseInt(f(0x148))/0x9*(parseInt(f(0x145))/0xa)+parseInt(f(0x143))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0x5635c));const a68b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a68d;if(c){const e=c[g(0x141)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a68a=a68b(this,function(){const h=a68d;return a68a['toString']()[h(0x146)](h(0x13d))[h(0x13b)]()['constructor'](a68a)[h(0x146)]('(((.+)+)+)+$');});a68a();import a68e from'./get.command.js';function a68d(a,b){const c=a68c();return a68d=function(d,e){d=d-0x137;let f=c[d];return f;},a68d(a,b);}import{Command}from'../../command.js';Command[a68i(0x13f)]({'name':a68i(0x13a),'usage':a68i(0x140),'mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':a68i(0x14b),'validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const j=a68i,a=await this[j(0x13c)][j(0x14c)]();console[j(0x13e)](a);},a68e);function a68c(){const k=['getProjectConfig','693432SyzeEq','1074lHDbUf','3074935VycbJY','local-config','toString','fsi','(((.+)+)+)+$','log','create','maka\x20get:local-config','apply','12ePKUdz','14628262jTQSkV','188333wugIpd','110ioePQs','search','6764PabZCd','48771ZnBFrw','2wzWfNB','288316zmHloq','Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file'];a68c=function(){return k;};return a68c();}
1
+ function a68c(){const j=['6FIwADE','2220757GwxHuD','48FBjkFw','search','constructor','local-config','128exiAdi','getProjectConfig','maka\x20get:local-config','21680qKBeSt','125821plUtSV','log','(((.+)+)+)+$','2256327hWWTqz','Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file','16865592IQJyUZ','5PQgTRp','26hdZZSL','10588758FLjiDC','toString','275uDqatl','83787NfkXNl'];a68c=function(){return j;};return a68c();}const a68h=a68d;(function(a,b){const f=a68d,c=a();while(!![]){try{const d=parseInt(f(0x131))/0x1*(-parseInt(f(0x127))/0x2)+parseInt(f(0x126))/0x3*(-parseInt(f(0x12d))/0x4)+parseInt(f(0x121))/0x5*(-parseInt(f(0x123))/0x6)+-parseInt(f(0x128))/0x7+parseInt(f(0x129))/0x8*(parseInt(f(0x11e))/0x9)+parseInt(f(0x130))/0xa*(-parseInt(f(0x125))/0xb)+parseInt(f(0x120))/0xc*(parseInt(f(0x122))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0xdd9c3));const a68b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a68a=a68b(this,function(){const g=a68d;return a68a[g(0x124)]()[g(0x12a)]('(((.+)+)+)+$')[g(0x124)]()[g(0x12b)](a68a)[g(0x12a)](g(0x11d));});a68a();import a68e from'./get.command.js';import{Command}from'../../command.js';function a68d(a,b){const c=a68c();return a68d=function(d,e){d=d-0x11d;let f=c[d];return f;},a68d(a,b);}Command['create']({'name':a68h(0x12c),'usage':a68h(0x12f),'mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':a68h(0x11f),'validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const i=a68h,a=await this['fsi'][i(0x12e)]();console[i(0x132)](a);},a68e);
@@ -1 +1 @@
1
- const a69j=a69d;(function(a,b){const g=a69d,c=a();while(!![]){try{const d=parseInt(g(0x97))/0x1*(parseInt(g(0xa6))/0x2)+-parseInt(g(0x95))/0x3*(-parseInt(g(0x8f))/0x4)+-parseInt(g(0x9f))/0x5+-parseInt(g(0xa7))/0x6*(-parseInt(g(0x9b))/0x7)+parseInt(g(0x8a))/0x8+parseInt(g(0xa4))/0x9+-parseInt(g(0x90))/0xa*(parseInt(g(0xa0))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0x19cd0));const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a69d;if(c){const e=c[h(0xa5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const i=a69d;return a69a['toString']()['search']('(((.+)+)+)+$')[i(0x88)]()['constructor'](a69a)['search'](i(0x8d));});a69a();import a69e from'./get.command.js';function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0x88;let f=c[d];return f;},a69d(a,b);}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import a69f from'jsonwebtoken';Command[a69j(0x93)]({'name':a69j(0x89),'usage':'maka\x20get:whoami','shortDesc':a69j(0x94),'validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const k=a69j;try{const a=await this['fsi'][k(0x9a)]();if(a[k(0xa3)]){const b=a69f[k(0x98)](a[k(0xa3)]);Log[k(0x9c)](k(0x8e)+b?.[k(0x8c)]),Log[k(0x9c)](k(0x9e)+a[k(0x8b)]?.[k(0x92)]),Log[k(0x9c)]('User\x20Access\x20Token:\x20\x20'+a[k(0x8b)]?.[k(0x9d)]),Log[k(0x9c)](k(0x91)+b?.[k(0x99)][k(0x96)](',\x20'));}}catch(c){console[k(0xa1)](c),process[k(0xa2)](0x0);}},a69e);function a69c(){const l=['4030IBJBEu','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','userId','create','If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','6GHBQNc','join','1106ZPPiJy','decode','roles','getGlobalConfig','7CFeOtz','notice','authToken','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','678120TgAxgn','10230kGMSXR','error','exit','hash','1155006ntSOab','apply','368hfLtMW','442758gMUbsU','toString','whoami','1290744LpJeFW','token','user','(((.+)+)+)+$','User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20','98240YqoUOY'];a69c=function(){return l;};return a69c();}
1
+ const a69j=a69d;function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0x1c1;let f=c[d];return f;},a69d(a,b);}(function(a,b){const g=a69d,c=a();while(!![]){try{const d=-parseInt(g(0x1c5))/0x1*(parseInt(g(0x1d8))/0x2)+-parseInt(g(0x1de))/0x3*(-parseInt(g(0x1da))/0x4)+parseInt(g(0x1c7))/0x5*(parseInt(g(0x1cd))/0x6)+-parseInt(g(0x1e2))/0x7*(-parseInt(g(0x1c8))/0x8)+-parseInt(g(0x1d7))/0x9+parseInt(g(0x1c3))/0xa*(parseInt(g(0x1d0))/0xb)+-parseInt(g(0x1ce))/0xc*(parseInt(g(0x1d1))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0x2b31d));function a69c(){const l=['join','7023Dlfqhh','User\x20Access\x20Token:\x20\x20','token','user','7aolkXK','apply','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','125820tkYMvE','User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20','5WqNhhY','create','1025UXMNcs','605704dvCjcO','hash','If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','userId','toString','6006DLXmcI','12DwJoiZ','roles','297JPvQYz','1855659wlnPNS','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','notice','fsi','authToken','search','2672667woKiGP','52166qJLhQM','decode','216jqQVBF','exit','(((.+)+)+)+$'];a69c=function(){return l;};return a69c();}const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a69d;if(c){const e=c[h(0x1c1)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const i=a69d;return a69a[i(0x1cc)]()[i(0x1d6)](i(0x1dc))[i(0x1cc)]()['constructor'](a69a)['search'](i(0x1dc));});a69a();import a69e from'./get.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import a69f from'jsonwebtoken';Command[a69j(0x1c6)]({'name':'whoami','usage':'maka\x20get:whoami','shortDesc':a69j(0x1ca),'validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const k=a69j;try{const a=await this[k(0x1d4)]['getGlobalConfig']();if(a[k(0x1c9)]){const b=a69f[k(0x1d9)](a[k(0x1c9)]);Log[k(0x1d3)](k(0x1c4)+b?.[k(0x1e1)]),Log['notice'](k(0x1d2)+a[k(0x1e0)]?.[k(0x1cb)]),Log[k(0x1d3)](k(0x1df)+a[k(0x1e0)]?.[k(0x1d5)]),Log[k(0x1d3)](k(0x1c2)+b?.[k(0x1cf)][k(0x1dd)](',\x20'));}}catch(c){console['error'](c),process[k(0x1db)](0x0);}},a69e);
@@ -1 +1 @@
1
- var a70i=a70d;(function(a,b){var f=a70d,c=a();while(!![]){try{var d=-parseInt(f(0x194))/0x1+parseInt(f(0x18e))/0x2*(parseInt(f(0x18c))/0x3)+parseInt(f(0x191))/0x4+-parseInt(f(0x18d))/0x5+parseInt(f(0x19b))/0x6+-parseInt(f(0x19a))/0x7+parseInt(f(0x196))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0x25161));var a70b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a70d;if(c){var e=c[g(0x190)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a70a=a70b(this,function(){var h=a70d;return a70a[h(0x198)]()[h(0x192)](h(0x197))['toString']()['constructor'](a70a)['search'](h(0x197));});a70a();import{Command}from'../command.js';function a70d(a,b){var c=a70c();return a70d=function(d,e){d=d-0x18c;var f=c[d];return f;},a70d(a,b);}function a70c(){var j=['320495BrAmUv','89168VxYdJT','Deprecated:\x20use\x20--help\x20instead','apply','166116OoabkV','search','Try,\x20maka\x20--help','146359jdcCrq','create','3420440GHpflE','(((.+)+)+)+$','toString','help','1440621eHmkCf','59484kqVIas','6piebNV'];a70c=function(){return j;};return a70c();}import{UsageError}from'../error.js';Command[a70i(0x195)]({'name':a70i(0x199),'description':a70i(0x193),'aliases':['h'],'validOpts':[],'shortDesc':a70i(0x18f)},async function(){throw new UsageError();});
1
+ var a70i=a70d;(function(a,b){var f=a70d,c=a();while(!![]){try{var d=parseInt(f(0xf0))/0x1+parseInt(f(0xf1))/0x2*(-parseInt(f(0xeb))/0x3)+parseInt(f(0xf3))/0x4+parseInt(f(0xee))/0x5+-parseInt(f(0xec))/0x6*(parseInt(f(0xf5))/0x7)+parseInt(f(0xf4))/0x8+parseInt(f(0xea))/0x9*(-parseInt(f(0xf2))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0x49a33));var a70b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a70d;if(c){var e=c[g(0xf7)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a70a=a70b(this,function(){var h=a70d;return a70a[h(0xed)]()[h(0xef)](h(0xe9))[h(0xed)]()['constructor'](a70a)[h(0xef)](h(0xe9));});function a70c(){var j=['toString','2363720oGXCJU','search','278186XHhiLS','2LaajHK','3162010cKuMZs','507096fCuqFN','32080kDErnl','14hPCoGC','Try,\x20maka\x20--help','apply','Deprecated:\x20use\x20--help\x20instead','(((.+)+)+)+$','9NtKszF','397380MPksov','394302qVOhiW'];a70c=function(){return j;};return a70c();}a70a();import{Command}from'../command.js';import{UsageError}from'../error.js';function a70d(a,b){var c=a70c();return a70d=function(d,e){d=d-0xe8;var f=c[d];return f;},a70d(a,b);}Command['create']({'name':'help','description':a70i(0xf6),'aliases':['h'],'validOpts':[],'shortDesc':a70i(0xe8)},async function(){throw new UsageError();});
@@ -1 +1 @@
1
- const a71s=a71d;(function(a,b){const q=a71d,c=a();while(!![]){try{const d=parseInt(q(0x181))/0x1+-parseInt(q(0x170))/0x2+parseInt(q(0x16a))/0x3*(-parseInt(q(0x191))/0x4)+-parseInt(q(0x158))/0x5+parseInt(q(0x15a))/0x6*(parseInt(q(0x17b))/0x7)+parseInt(q(0x16f))/0x8+-parseInt(q(0x16d))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0xd0ced));const a71b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){const r=a71d;return a71a[r(0x171)]()['search'](r(0x175))[r(0x171)]()[r(0x184)](a71a)[r(0x18c)](r(0x175));});a71a();import a71e from'os';function a71d(a,b){const c=a71c();return a71d=function(d,e){d=d-0x158;let f=c[d];return f;},a71d(a,b);}import a71f from'path';function a71c(){const u=['maka\x20i','withSpinner','Aborted','2036555njfrvx','install','1854BfqrES','windows','meteor.tar.gz','arm64','get','This\x20command\x20should\x20NOT\x20be\x20run\x20as\x20sudo\x20or\x20with\x20administrative\x20privileges.\x20\x20Are\x20you\x20ready\x20to\x20proceed?','length','isFile','Using\x20CA\x20Cert\x20','existsSync','Installing\x20meteor\x20','replace','downloadFile','linux','exit','debug','482805LTxmiT','sync','x86_64','3595635wXVkoG','maka\x20install\x20meteor\x20-v\x202.3.6','7827864wZxcZa','2875988reHlQq','toString','Windows\x20is\x20not\x20supported\x20at\x20this\x20time.','error','platform','(((.+)+)+)+$','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','cacert','&release=','RELEASE=','cert','21791qNOYUA','maka\x20install\x20meteor','tar','https://packages.meteor.com/bootstrap-link?arch=os.','force','notice','1642502FUCmwO','fsi','join','constructor','maka\x20install\x20meteor\x20--version\x201.12.1','win32','-rf','create','maka\x20install','success','string','search','keepInstall','osx','version','arch','12ovdJzF'];a71c=function(){return u;};return a71c();}import a71g from'fs';import a71h from'delete';import{SpawnAsync}from'../tools/spawn-async/spawn-async.class.js';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const homeDir=a71e['homedir']();Command[a71s(0x188)]({'name':a71s(0x159),'aliases':['i'],'validOpts':[a71s(0x17f),a71s(0x18f),a71s(0x169),'cacert',a71s(0x18d)],'usage':a71s(0x189),'shortDesc':'Install\x20a\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','examples':[a71s(0x17c),'maka\x20install\x20meteor\x20--force',a71s(0x16e),a71s(0x185),a71s(0x192)]},async function(a,b){const t=a71s;try{let c='';if(b['cacert']){if(this[t(0x182)][t(0x161)](b[t(0x177)]))Log[t(0x180)](t(0x162)+b[t(0x177)]),c=b[t(0x177)];else throw t(0x176)+c;}const d=await this[t(0x182)]['getGlobalConfig']();if(d[t(0x17a)]){if(this[t(0x182)][t(0x161)](d[t(0x17a)]))c=d['cert'];else throw'CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20'+c;}let f=![];b['f']||b[t(0x17f)]?f=!![]:f=await Actions['confirm'](t(0x15f));if(!f)throw t(0x194);const g=process[t(0x174)]===t(0x186),h=await HTTPS[t(0x15e)]({'url':'https://install.meteor.com','cert':c}),i=await this[t(0x182)]['grep'](h['data'],t(0x179));if(i[t(0x160)]===0x0)throw'Network\x20error,\x20please\x20try\x20again.';let j=i[0x0]['replace'](/[^0-9.]/gi,'')[t(0x165)](/\r?\n|\r/,'');(typeof b['v']===t(0x18b)||typeof b['version']===t(0x18b))&&(j=b['v']||b[t(0x18f)]);const k=a71f[t(0x183)](homeDir,'.meteor');if(g)Log[t(0x173)](t(0x172)),process[t(0x168)](0x0);else{a71g[t(0x163)](k)&&await SpawnAsync[t(0x193)]('rm',[t(0x187),k],{'message':'Removing\x20previous\x20install\x20of\x20meteor'});try{const l={'win32':t(0x15b),'darwin':t(0x18e),'linux':t(0x167)},m=t(0x17e)+l[a71e[t(0x174)]()]+'.'+(a71e[t(0x190)]()===t(0x15d)?t(0x15d):t(0x16c))+t(0x178)+j;await HTTPS[t(0x166)]({'url':m,'destPath':a71f[t(0x183)](homeDir,t(0x15c)),'cert':c});const n=['-xzf',a71f['join'](homeDir,t(0x15c)),'-C',homeDir];await SpawnAsync[t(0x193)](t(0x17d),n,{'message':t(0x164)+j}),a71h[t(0x16b)](a71f['join'](homeDir,t(0x15c)),{'force':!![]});}catch(o){console[t(0x173)](o);}Log[t(0x18a)]('Meteor\x20version\x20'+j+'\x20installed.\x0a');}}catch(p){console[t(0x173)](p),process[t(0x168)](0x0);}});
1
+ const a71t=a71d;(function(a,b){const q=a71d,c=a();while(!![]){try{const d=-parseInt(q(0x110))/0x1*(parseInt(q(0xdc))/0x2)+parseInt(q(0xee))/0x3+-parseInt(q(0x102))/0x4+parseInt(q(0xd5))/0x5+parseInt(q(0xe9))/0x6+parseInt(q(0x113))/0x7*(-parseInt(q(0xfe))/0x8)+parseInt(q(0x10e))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0x8c9de));const a71b=(function(){let a=!![];return function(b,c){const d=a?function(){const r=a71d;if(c){const e=c[r(0x108)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){const s=a71d;return a71a[s(0xf1)]()['search'](s(0x10a))['toString']()[s(0x103)](a71a)['search']('(((.+)+)+)+$');});a71a();import a71e from'os';function a71d(a,b){const c=a71c();return a71d=function(d,e){d=d-0xd1;let f=c[d];return f;},a71d(a,b);}import a71f from'path';import a71g from'fs';import a71h from'delete';import{SpawnAsync}from'../tools/spawn-async/spawn-async.class.js';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const homeDir=a71e[a71t(0xf0)]();Command[a71t(0xf4)]({'name':a71t(0xde),'aliases':['i'],'validOpts':['force',a71t(0xe0),a71t(0xe6),a71t(0xef),'keepInstall'],'usage':a71t(0x100),'shortDesc':a71t(0xe3),'examples':[a71t(0x105),a71t(0x112),a71t(0xf9),'maka\x20install\x20meteor\x20--version\x201.12.1',a71t(0xf2)]},async function(a,b){const u=a71t;try{let c='';if(b['cacert']){if(this[u(0xfd)][u(0x104)](b['cacert']))Log[u(0xe7)]('Using\x20CA\x20Cert\x20'+b[u(0xef)]),c=b[u(0xef)];else throw u(0xdd)+c;}const d=await this[u(0xfd)][u(0x106)]();if(d['cert']){if(this[u(0xfd)][u(0x104)](d[u(0x107)]))c=d[u(0x107)];else throw u(0xd6)+c;}let f=![];b['f']||b['force']?f=!![]:f=await Actions[u(0xe8)](u(0xd4));if(!f)throw u(0xf3);const g=process[u(0x10b)]===u(0xd2),h=await HTTPS[u(0xd3)]({'url':u(0xfc),'cert':c}),i=await this[u(0xfd)][u(0xda)](h[u(0x10d)],u(0x10f));if(i[u(0xe2)]===0x0)throw u(0xec);let j=i[0x0][u(0x109)](/[^0-9.]/gi,'')[u(0x109)](/\r?\n|\r/,'');(typeof b['v']===u(0xd9)||typeof b[u(0xe0)]===u(0xd9))&&(j=b['v']||b['version']);const k=a71f[u(0xe4)](homeDir,u(0xf8));if(g)Log['error'](u(0xfa)),process[u(0x101)](0x0);else{a71g[u(0xd1)](k)&&await SpawnAsync[u(0xf7)]('rm',[u(0x111),k],{'message':u(0xd8)});try{const l={'win32':u(0xff),'darwin':'osx','linux':u(0xe1)},m=u(0xdf)+l[a71e[u(0x10b)]()]+'.'+(a71e['arch']()==='arm64'?u(0x10c):u(0xea))+u(0xeb)+j;await HTTPS[u(0xed)]({'url':m,'destPath':a71f['join'](homeDir,u(0xfb)),'cert':c});const n=[u(0xdb),a71f[u(0xe4)](homeDir,u(0xfb)),'-C',homeDir];await SpawnAsync['withSpinner']('tar',n,{'message':'Installing\x20meteor\x20'+j}),a71h['sync'](a71f[u(0xe4)](homeDir,u(0xfb)),{'force':!![]});}catch(o){console[u(0xe5)](o);}Log[u(0xf5)](u(0xd7)+j+u(0xf6));}}catch(p){console[u(0xe5)](p),process[u(0x101)](0x0);}});function a71c(){const v=['Removing\x20previous\x20install\x20of\x20meteor','string','grep','-xzf','4HFNFbw','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','install','https://packages.meteor.com/bootstrap-link?arch=os.','version','linux','length','Install\x20a\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','join','error','debug','notice','confirm','6840648pcczoX','x86_64','&release=','Network\x20error,\x20please\x20try\x20again.','downloadFile','2790375JYJnBE','cacert','homedir','toString','maka\x20i','Aborted','create','success','\x20installed.\x0a','withSpinner','.meteor','maka\x20install\x20meteor\x20-v\x202.3.6','Windows\x20is\x20not\x20supported\x20at\x20this\x20time.','meteor.tar.gz','https://install.meteor.com','fsi','16ulEPEZ','windows','maka\x20install','exit','3438448kYrWhd','constructor','isFile','maka\x20install\x20meteor','getGlobalConfig','cert','apply','replace','(((.+)+)+)+$','platform','arm64','data','7486551qrGGFs','RELEASE=','474955mpQtgP','-rf','maka\x20install\x20meteor\x20--force','3290462fuMWxK','existsSync','win32','get','This\x20command\x20should\x20NOT\x20be\x20run\x20as\x20sudo\x20or\x20with\x20administrative\x20privileges.\x20\x20Are\x20you\x20ready\x20to\x20proceed?','2117740noARql','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','Meteor\x20version\x20'];a71c=function(){return v;};return a71c();}
@@ -1 +1 @@
1
- const a72m=a72d;function a72c(){const o=['(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','app/private','create','1568217tkqDHv','2226200fhPuNJ','plugins/markdown','16ASyiKQ','\x20-c\x20','162066rqNViz','isFile','pathFromProject','inherit','sep','10DhwjDz','constructor','.+\x5c.(j|t)s(doc|x)?$','jsdoc','stop','[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22','closure','utf-8','maka\x20jsdoc','config','Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','logNotice','app/node_modules','logError','(((.+)+)+)+$','join','stringify','1384002Hkkelp','84890nOlFhU','search','apply','1236020tutbcT','\x0a[+]\x20Documentation\x20written\x20to\x20','Running\x20','docs','416726pLJRUw','18DhgrWi','fsi','toString','\x20-r\x20app'];a72c=function(){return o;};return a72c();}(function(a,b){const j=a72d,c=a();while(!![]){try{const d=-parseInt(j(0xb6))/0x1+parseInt(j(0x92))/0x2+parseInt(j(0xb5))/0x3+-parseInt(j(0xb9))/0x4+parseInt(j(0xa4))/0x5*(parseInt(j(0x9f))/0x6)+-parseInt(j(0x9a))/0x7*(parseInt(j(0x9d))/0x8)+parseInt(j(0x93))/0x9*(parseInt(j(0x9b))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0x4fd5a));const a72b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a72d;if(c){const e=c[k(0xb8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a72a=a72b(this,function(){const l=a72d;return a72a[l(0x95)]()[l(0xb7)](l(0xb2))[l(0x95)]()[l(0xa5)](a72a)[l(0xb7)]('(((.+)+)+)+$');});function a72d(a,b){const c=a72c();return a72d=function(d,e){d=d-0x91;let f=c[d];return f;},a72d(a,b);}a72a();import a72e from'path';import a72f from'fs';import{execSync}from'child_process';import{Command}from'../command.js';Command[a72m(0x99)]({'name':a72m(0xa7),'usage':a72m(0xac),'mustBeInMakaProject':!![],'shortDesc':a72m(0xae),'examples':['maka\x20jsdoc\x20--init','maka\x20jsdoc'],'validOpts':[]},function(){const n=a72m,a=a72e[n(0xb3)](this[n(0x94)][n(0xa1)]({}),n(0x91)+a72e[n(0xa3)]),b=a72e[n(0xb3)](this[n(0x94)][n(0xa1)]({}),n(0xad),'jsdoc-config.json'),c=this['fsi'][n(0xa1)]({}),d='jsdoc';if(!this[n(0xa0)](b)){const g={'plugins':[n(0x9c)],'tags':{'allowUnknownTags':!![],'dictionaries':[n(0xa7),n(0xaa)]},'source':{'includePattern':n(0xa6),'excludePattern':n(0x97),'exclude':['app/packages',n(0xb0),'app/public',n(0x98)]},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':n(0xab)}};a72f['writeFileSync'](b,JSON[n(0xb4)](g,null,0x4));}const f=this['logWithSpinner'](n(0xbb)+d);try{const h=d+n(0x9e)+b+n(0x96)+a72e[n(0xa3)]+'\x20-d\x20'+a;execSync(h,{'cwd':c,'stdio':n(0xa2)}),this[n(0xaf)](n(0xba)+a);}catch(i){this['logError'](i),this[n(0xb1)](n(0xa9));}finally{f[n(0xa8)]();}});
1
+ const a72m=a72d;(function(a,b){const j=a72d,c=a();while(!![]){try{const d=-parseInt(j(0xae))/0x1*(-parseInt(j(0xbc))/0x2)+parseInt(j(0xbe))/0x3+-parseInt(j(0x99))/0x4*(-parseInt(j(0xb6))/0x5)+parseInt(j(0x9c))/0x6*(parseInt(j(0xa4))/0x7)+parseInt(j(0xa9))/0x8*(-parseInt(j(0xb1))/0x9)+parseInt(j(0x9f))/0xa*(parseInt(j(0x9d))/0xb)+-parseInt(j(0x97))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0xe5668));const a72b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a72d;if(c){const e=c[k(0xb5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a72a=a72b(this,function(){const l=a72d;return a72a['toString']()['search']('(((.+)+)+)+$')['toString']()['constructor'](a72a)['search'](l(0x9a));});a72a();import a72e from'path';import a72f from'fs';import{execSync}from'child_process';import{Command}from'../command.js';Command[a72m(0xa0)]({'name':a72m(0x98),'usage':a72m(0xac),'mustBeInMakaProject':!![],'shortDesc':a72m(0xb0),'examples':[a72m(0xaf),a72m(0xac)],'validOpts':[]},function(){const n=a72m,a=a72e[n(0xbf)](this[n(0xa6)]['pathFromProject']({}),n(0x9b)+a72e['sep']),b=a72e[n(0xbf)](this['fsi'][n(0xb3)]({}),n(0xad),n(0xb8)),c=this[n(0xa6)][n(0xb3)]({}),d=n(0x98);if(!this[n(0xaa)](b)){const g={'plugins':['plugins/markdown'],'tags':{'allowUnknownTags':!![],'dictionaries':[n(0x98),n(0xa3)]},'source':{'includePattern':'.+\x5c.(j|t)s(doc|x)?$','excludePattern':n(0xa8),'exclude':['app/packages','app/node_modules',n(0x9e),n(0xa2)]},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':n(0xa1)}};a72f[n(0xb9)](b,JSON['stringify'](g,null,0x4));}const f=this[n(0xb7)](n(0xa5)+d);try{const h=d+n(0xbd)+b+n(0xab)+a72e[n(0xb2)]+n(0xba)+a;execSync(h,{'cwd':c,'stdio':'inherit'}),this[n(0xbb)](n(0x96)+a);}catch(i){this[n(0xb4)](i),this[n(0xb4)](n(0xa7));}finally{f['stop']();}});function a72d(a,b){const c=a72c();return a72d=function(d,e){d=d-0x96;let f=c[d];return f;},a72d(a,b);}function a72c(){const o=['(((.+)+)+)+$','docs','474iZgGKH','5152741kauuUP','app/public','30zRXctJ','create','utf-8','app/private','closure','115689vMtHxh','Running\x20','fsi','[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','3358424RBsvbe','isFile','\x20-r\x20app','maka\x20jsdoc','config','35380dYqlNJ','maka\x20jsdoc\x20--init','Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','18XMJkNn','sep','pathFromProject','logError','apply','7032505WPoWnb','logWithSpinner','jsdoc-config.json','writeFileSync','\x20-d\x20','logNotice','34aZdKZz','\x20-c\x20','1459875tFLTNT','join','\x0a[+]\x20Documentation\x20written\x20to\x20','41115384NLLgnc','jsdoc','4HjCimC'];a72c=function(){return o;};return a72c();}
@@ -1 +1 @@
1
- const a73s=a73d;(function(a,b){const p=a73d,c=a();while(!![]){try{const d=parseInt(p(0xdb))/0x1*(-parseInt(p(0xd6))/0x2)+parseInt(p(0xb7))/0x3+parseInt(p(0xcb))/0x4+parseInt(p(0xd1))/0x5+parseInt(p(0xd8))/0x6+parseInt(p(0xc3))/0x7+-parseInt(p(0xc0))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0xc0c23));const a73b=(function(){let a=!![];return function(b,c){const d=a?function(){const q=a73d;if(c){const e=c[q(0xce)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){const r=a73d;return a73a['toString']()[r(0xbf)](r(0xb2))[r(0xcf)]()[r(0xc8)](a73a)[r(0xbf)](r(0xb2));});a73a();import a73e from'path';import{ESLint}from'eslint';import{Log}from'../tools/log/log.class.js';import{Command}from'../command.js';Command[a73s(0xd7)]({'name':'lint','usage':'maka\x20lint','maxArgLength':0x1,'validOpts':[a73s(0xc1)],'mustBeInMakaProject':!![],'shortDesc':a73s(0xc9),'description':'\x0a\x20\x20Lint\x20the\x20\x22./app/imports\x22\x20directory.\x0a\x0a\x20\x20This\x20command\x20will\x20install\x20and\x20conigure\x20ESLint\x20if\x20not\x20already\x20setup.\x0a\x0a\x20\x20You\x20can\x20find\x20the\x20eslint\x20config\x20at\x20\x22./app/.eslintrc.json\x22\x0a\x20\x20','examples':[a73s(0xda)]},async function(a,b){const t=a73s;try{const c=this[t(0xd3)][t(0xd9)](),d=this[t(0xd3)]['checkNpmPackage'](t(0xd2)),f=this[t(0xd3)][t(0xd5)](t(0xb6)),g=this[t(0xd3)][t(0xd5)](t(0xbd)),h=[];!d&&h['push'](t(0xd2));!f&&h[t(0xb3)]('eslint-plugin-react');!g&&h[t(0xb3)]('eslint-plugin-css');h[t(0xc6)]>0x0&&await this[t(0xd3)][t(0xbb)](h[t(0xba)]('\x20'),{'dev':!![]});const i=this[t(0xd3)][t(0xc2)](a73e[t(0xba)](c,'.eslintrc.json'));if(!i){const n={'noRename':!![]};await this[t(0xd3)][t(0xb8)]({'srcPath':t(0xd4),'destPath':a73e[t(0xba)](c,t(0xca)),'framework':t(0xd0),'context':n});}const j=new ESLint(),k=await j[t(0xb4)]([a73e['join'](c,t(0xbe),'**')]),l=await j[t(0xcd)](t(0xbc)),m=l['format'](k);m['length']>0x0?Log['bright'](m):Log['success'](t(0xc7)),Log[t(0xc4)](t(0xb5)+c+t(0xc5)),b[t(0xc1)]?await ESLint['outputFixes'](k):Log['notice'](t(0xcc));}catch(o){console[t(0xb9)](o);}});function a73d(a,b){const c=a73c();return a73d=function(d,e){d=d-0xb2;let f=c[d];return f;},a73d(a,b);}function a73c(){const u=['create','4791732DTrzqZ','findAppDirectory','maka\x20lint\x20--fix','7fWNLho','(((.+)+)+)+$','push','lintFiles','Lint\x20results\x20for\x20','eslint-plugin-react','1935069Rycafo','template','error','join','installNpmPackage','stylish','eslint-plugin-css','imports','search','17448440CqVYxq','fix','isFile','9043580YzgMTf','notice','/imports','length','All\x20good!\x20:)','constructor','Use\x20ESLint\x20to\x20lint\x20the\x20imports\x20directory','.eslintrc.json','959340dpjGoN','Run\x20\x22maka\x20lint\x20--fix\x22\x20to\x20auto\x20fix','loadFormatter','apply','toString','service','4527865asZRZS','eslint','fsi','eslint/eslintrc.json','checkNpmPackage','260114YxdLZM'];a73c=function(){return u;};return a73c();}
1
+ const a73r=a73d;(function(a,b){const p=a73d,c=a();while(!![]){try{const d=parseInt(p(0x191))/0x1+parseInt(p(0x1a6))/0x2*(parseInt(p(0x1a7))/0x3)+-parseInt(p(0x1b4))/0x4*(parseInt(p(0x19a))/0x5)+parseInt(p(0x18d))/0x6*(parseInt(p(0x1b5))/0x7)+parseInt(p(0x199))/0x8*(-parseInt(p(0x1a3))/0x9)+-parseInt(p(0x1ae))/0xa+parseInt(p(0x1b7))/0xb*(-parseInt(p(0x1a8))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0x8439a));const a73b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){const q=a73d;return a73a[q(0x1a9)]()[q(0x1ad)](q(0x19e))[q(0x1a9)]()[q(0x1af)](a73a)[q(0x1ad)](q(0x19e));});a73a();function a73d(a,b){const c=a73c();return a73d=function(d,e){d=d-0x18c;let f=c[d];return f;},a73d(a,b);}import a73e from'path';import{ESLint}from'eslint';import{Log}from'../tools/log/log.class.js';function a73c(){const t=['length','993572ffAgMv','service','eslint','installNpmPackage','eslint-plugin-react','Lint\x20results\x20for\x20','outputFixes','eslint-plugin-css','232oSOTbR','734765CYOvFZ','notice','.eslintrc.json','create','(((.+)+)+)+$','All\x20good!\x20:)','Use\x20ESLint\x20to\x20lint\x20the\x20imports\x20directory','success','error','47079wWdsaO','push','template','876770wAfkBB','3ijNOtE','4430484LhrGNe','toString','loadFormatter','isFile','format','search','6193480rtJNKt','constructor','\x0a\x20\x20Lint\x20the\x20\x22./app/imports\x22\x20directory.\x0a\x0a\x20\x20This\x20command\x20will\x20install\x20and\x20conigure\x20ESLint\x20if\x20not\x20already\x20setup.\x0a\x0a\x20\x20You\x20can\x20find\x20the\x20eslint\x20config\x20at\x20\x22./app/.eslintrc.json\x22\x0a\x20\x20','bright','maka\x20lint','Run\x20\x22maka\x20lint\x20--fix\x22\x20to\x20auto\x20fix','4IFcenx','28oInizL','findAppDirectory','11Prxewf','/imports','checkNpmPackage','imports','595266YkldmD','fsi','join'];a73c=function(){return t;};return a73c();}import{Command}from'../command.js';Command[a73r(0x19d)]({'name':'lint','usage':a73r(0x1b2),'maxArgLength':0x1,'validOpts':['fix'],'mustBeInMakaProject':!![],'shortDesc':a73r(0x1a0),'description':a73r(0x1b0),'examples':['maka\x20lint\x20--fix']},async function(a,b){const s=a73r;try{const c=this[s(0x18e)][s(0x1b6)](),d=this['fsi']['checkNpmPackage'](s(0x193)),f=this['fsi'][s(0x1b9)](s(0x195)),g=this[s(0x18e)][s(0x1b9)](s(0x198)),h=[];!d&&h[s(0x1a4)]('eslint');!f&&h[s(0x1a4)](s(0x195));!g&&h[s(0x1a4)](s(0x198));h['length']>0x0&&await this[s(0x18e)][s(0x194)](h['join']('\x20'),{'dev':!![]});const i=this[s(0x18e)][s(0x1ab)](a73e[s(0x18f)](c,s(0x19c)));if(!i){const n={'noRename':!![]};await this[s(0x18e)][s(0x1a5)]({'srcPath':'eslint/eslintrc.json','destPath':a73e['join'](c,'.eslintrc.json'),'framework':s(0x192),'context':n});}const j=new ESLint(),k=await j['lintFiles']([a73e[s(0x18f)](c,s(0x18c),'**')]),l=await j[s(0x1aa)]('stylish'),m=l[s(0x1ac)](k);m[s(0x190)]>0x0?Log[s(0x1b1)](m):Log[s(0x1a1)](s(0x19f)),Log[s(0x19b)](s(0x196)+c+s(0x1b8)),b['fix']?await ESLint[s(0x197)](k):Log[s(0x19b)](s(0x1b3));}catch(o){console[s(0x1a2)](o);}});
@@ -1 +1 @@
1
- function a74c(){const B=['Logging\x20in','5csmzoS','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','withSpinner','87984ScmlAn','/api/v1/login','search','update','start','header','success','debug','https://','email','getGlobalConfig','password','cert','21807315UONCYs','(((.+)+)+)+$','authToken','2641056SBAsbK','isFile','notice','cacert','setGlobalConfig','exit','Retrieves\x20login\x20information\x20from\x20www.maka-cli.com,\x20and\x20stores\x20a\x20hash\x20in\x20~/.maka','error','assign','maka\x20login\x20--email\x20<address>\x20--password\x20<password>','get','localhost','Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://','Password:\x20','www.maka-cli.com','2965575QfXukE','3549973uWFyoE','digest','11759088tuAMnD','parse','apply','maka\x20login','ask','create','failure','MAKA_DEV','10fpjGfE','480JWvKbe','post','/api/v1/status','fsi','toString','True','3374HKBFXL','Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','toHex'];a74c=function(){return B;};return a74c();}const a74z=a74d;(function(a,b){const w=a74d,c=a();while(!![]){try{const d=parseInt(w(0xeb))/0x1*(parseInt(w(0xe5))/0x2)+parseInt(w(0xd9))/0x3+-parseInt(w(0xf2))/0x4+-parseInt(w(0xef))/0x5*(parseInt(w(0xca))/0x6)+parseInt(w(0xda))/0x7+parseInt(w(0xdc))/0x8+-parseInt(w(0xc7))/0x9*(parseInt(w(0xe4))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0xd94f7));const a74b=(function(){let a=!![];return function(b,c){const d=a?function(){const x=a74d;if(c){const e=c[x(0xde)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a74a=a74b(this,function(){const y=a74d;return a74a[y(0xe9)]()[y(0xf4)](y(0xc8))[y(0xe9)]()['constructor'](a74a)[y(0xf4)](y(0xc8));});function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0xc4;let f=c[d];return f;},a74d(a,b);}a74a();import a74e from'node-forge';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process['env'][a74z(0xe3)]===a74z(0xea)?a74z(0xd5):a74z(0xd8);Command[a74z(0xe1)]({'name':'login','validOpts':[a74z(0xfb),'password','help',a74z(0xcd),a74z(0xf9)],'usage':a74z(0xdf),'maxArgLength':0x2,'disableAuthCheck':!![],'shortDesc':a74z(0xd0),'examples':['maka\x20login',a74z(0xd3)]},async function(a,b){const A=a74z,c=Log[A(0xf1)]();try{let d='';b['cacert']&&(this['fsi'][A(0xcb)](b[A(0xcd)])?(d=b[A(0xcd)],Log[A(0xcc)]('Using\x20CA\x20Cert\x20'+d)):Log[A(0xd1)](A(0xf0)+d));const f=await this[A(0xe8)][A(0xc4)]();if(f[A(0xc6)]){if(this[A(0xe8)][A(0xcb)](f[A(0xc6)]))d=f[A(0xc6)];else{Log[A(0xd1)]('CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20'+d);return;}}Log[A(0xf7)]('Logging\x20into\x20https://'+hostname);const g={'url':A(0xfa)+hostname+A(0xe7)};b[A(0xcd)]&&Object[A(0xd2)](g,{'cert':d});c[A(0xf6)]('Preflight\x20Check');const {statusCode:h}=await HTTPS[A(0xd4)](g);if(h===0x198){c[A(0xe2)]();throw A(0xec);}if(h!==0xc8){c[A(0xe2)]();throw'https://'+hostname+'\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli';}c['success']();const i=b[A(0xfb)]?b[A(0xfb)]:await Actions[A(0xe0)]('Email:'),j=b[A(0xc5)]?b[A(0xc5)]:await Actions[A(0xe0)](A(0xd7),!![]),k=a74e['md']['sha256']['create']();k[A(0xf5)](j);const l=k[A(0xdb)]()[A(0xed)](),m={'hostname':hostname,'path':A(0xf3),'data':{'email':i,'password':l,'hashed':!![]}};b[A(0xcd)]&&Object['assign'](m,{'cert':d});c[A(0xf6)](A(0xee));const {data:n,statusCode:o}=await HTTPS['post'](m);if(o===0x198){c[A(0xe2)]('\x0a');throw A(0xd6)+hostname;}const p=JSON[A(0xdd)](n);if(p[A(0xc9)]){const q={'hostname':hostname,'path':'/api/v1/encodeJwt','headers':{'x-auth-token':p[A(0xc9)]},'data':{}};b[A(0xcd)]&&Object[A(0xd2)](q,{'cert':d});const {data:r,statusCode:s}=await HTTPS[A(0xe6)](q),{token:t}=JSON[A(0xdd)](r);if(s===0x198)throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://'+hostname;const u={'token':p,'hash':t};this[A(0xe8)][A(0xce)](u);}else{c[A(0xe2)]();throw p;}c[A(0xf8)]();}catch(v){c[A(0xe2)](),console[A(0xd1)](v),process[A(0xcf)](0x0);}});
1
+ const a74y=a74d;(function(a,b){const w=a74d,c=a();while(!![]){try{const d=parseInt(w(0x19a))/0x1*(-parseInt(w(0x1aa))/0x2)+parseInt(w(0x1c2))/0x3*(parseInt(w(0x1bb))/0x4)+parseInt(w(0x1ba))/0x5+parseInt(w(0x1b5))/0x6*(parseInt(w(0x193))/0x7)+parseInt(w(0x197))/0x8+-parseInt(w(0x1b2))/0x9+-parseInt(w(0x1c8))/0xa*(parseInt(w(0x1a2))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0x4a719));const a74b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a74a=a74b(this,function(){const x=a74d;return a74a[x(0x1ab)]()[x(0x192)](x(0x1c7))['toString']()[x(0x1a9)](a74a)[x(0x192)](x(0x1c7));});a74a();import a74e from'node-forge';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0x192;let f=c[d];return f;},a74d(a,b);}function a74c(){const A=['login','create','getGlobalConfig','www.maka-cli.com','/api/v1/encodeJwt','55rjEJdr','header','toHex','isFile','Password:\x20','MAKA_DEV','env','constructor','34ynpGDp','toString','parse','start','Retrieves\x20login\x20information\x20from\x20www.maka-cli.com,\x20and\x20stores\x20a\x20hash\x20in\x20~/.maka','ask','localhost','Using\x20CA\x20Cert\x20','1418130LkUUsH','password','\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','2836878DQiQQB','sha256','Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://','error','cert','1980830HFGbcn','3732RcTNxH','/api/v1/status','email','failure','debug','https://','assign','1632oPaTKE','fsi','authToken','notice','Logging\x20into\x20https://','(((.+)+)+)+$','2349530GHJwAJ','success','update','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','cacert','withSpinner','search','7mdjLcJ','help','post','maka\x20login','4800224IcoJor','get','digest','19959fUEXLp','Email:','True'];a74c=function(){return A;};return a74c();}import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a74y(0x1a8)][a74y(0x1a7)]===a74y(0x19c)?a74y(0x1b0):a74y(0x1a0);Command[a74y(0x19e)]({'name':a74y(0x19d),'validOpts':[a74y(0x1bd),a74y(0x1b3),a74y(0x194),a74y(0x1cc),a74y(0x1bf)],'usage':a74y(0x196),'maxArgLength':0x2,'disableAuthCheck':!![],'shortDesc':a74y(0x1ae),'examples':[a74y(0x196),'maka\x20login\x20--email\x20<address>\x20--password\x20<password>']},async function(a,b){const z=a74y,c=Log[z(0x1cd)]();try{let d='';b[z(0x1cc)]&&(this[z(0x1c3)][z(0x1a5)](b[z(0x1cc)])?(d=b[z(0x1cc)],Log[z(0x1c5)](z(0x1b1)+d)):Log[z(0x1b8)](z(0x1cb)+d));const f=await this[z(0x1c3)][z(0x19f)]();if(f[z(0x1b9)]){if(this[z(0x1c3)][z(0x1a5)](f[z(0x1b9)]))d=f['cert'];else{Log['error']('CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20'+d);return;}}Log[z(0x1a3)](z(0x1c6)+hostname);const g={'url':z(0x1c0)+hostname+z(0x1bc)};b[z(0x1cc)]&&Object[z(0x1c1)](g,{'cert':d});c[z(0x1ad)]('Preflight\x20Check');const {statusCode:h}=await HTTPS[z(0x198)](g);if(h===0x198){c['failure']();throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com';}if(h!==0xc8){c[z(0x1be)]();throw z(0x1c0)+hostname+z(0x1b4);}c[z(0x1c9)]();const i=b[z(0x1bd)]?b[z(0x1bd)]:await Actions[z(0x1af)](z(0x19b)),j=b[z(0x1b3)]?b[z(0x1b3)]:await Actions[z(0x1af)](z(0x1a6),!![]),k=a74e['md'][z(0x1b6)][z(0x19e)]();k[z(0x1ca)](j);const l=k[z(0x199)]()[z(0x1a4)](),m={'hostname':hostname,'path':'/api/v1/login','data':{'email':i,'password':l,'hashed':!![]}};b[z(0x1cc)]&&Object[z(0x1c1)](m,{'cert':d});c['start']('Logging\x20in');const {data:n,statusCode:o}=await HTTPS[z(0x195)](m);if(o===0x198){c['failure']('\x0a');throw z(0x1b7)+hostname;}const p=JSON[z(0x1ac)](n);if(p[z(0x1c4)]){const q={'hostname':hostname,'path':z(0x1a1),'headers':{'x-auth-token':p['authToken']},'data':{}};b['cacert']&&Object[z(0x1c1)](q,{'cert':d});const {data:r,statusCode:s}=await HTTPS[z(0x195)](q),{token:t}=JSON['parse'](r);if(s===0x198)throw z(0x1b7)+hostname;const u={'token':p,'hash':t};this[z(0x1c3)]['setGlobalConfig'](u);}else{c[z(0x1be)]();throw p;}c[z(0x1c9)]();}catch(v){c[z(0x1be)](),console[z(0x1b8)](v),process['exit'](0x0);}});