@maka/maka-cli 4.6.22 → 4.7.0

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 (150) hide show
  1. package/bundle/obf/package.json +2 -1
  2. package/bundle/obf/src/command.js +1 -1
  3. package/bundle/obf/src/commands/_index.js +1 -1
  4. package/bundle/obf/src/commands/ai.js +1 -1
  5. package/bundle/obf/src/commands/aws/_index.js +1 -1
  6. package/bundle/obf/src/commands/aws/aws.command.js +1 -1
  7. package/bundle/obf/src/commands/aws/chz.sub.cmd.js +1 -1
  8. package/bundle/obf/src/commands/aws/ci.sub.cmd.js +1 -1
  9. package/bundle/obf/src/commands/aws/ckp.sub.cmd.js +1 -1
  10. package/bundle/obf/src/commands/aws/csg.sub.cmd.js +1 -1
  11. package/bundle/obf/src/commands/aws/di.sub.cmd.js +1 -1
  12. package/bundle/obf/src/commands/aws/dkp.sub.cmd.js +1 -1
  13. package/bundle/obf/src/commands/aws/dsg.sub.cmd.js +1 -1
  14. package/bundle/obf/src/commands/aws/rbi.sub.cmd.js +1 -1
  15. package/bundle/obf/src/commands/aws/rdn.sub.cmd.js +1 -1
  16. package/bundle/obf/src/commands/aws/rkp.sub.cmd.js +1 -1
  17. package/bundle/obf/src/commands/aws/sth.sub.cmd.js +1 -1
  18. package/bundle/obf/src/commands/aws/ti.sub.cmd.js +1 -1
  19. package/bundle/obf/src/commands/build/_index.js +1 -1
  20. package/bundle/obf/src/commands/build/build.js +1 -1
  21. package/bundle/obf/src/commands/build/docker.sub.cmd.js +1 -1
  22. package/bundle/obf/src/commands/create.js +1 -1
  23. package/bundle/obf/src/commands/debug.js +1 -1
  24. package/bundle/obf/src/commands/deploy/_index.js +1 -1
  25. package/bundle/obf/src/commands/deploy/deploy.command.js +1 -1
  26. package/bundle/obf/src/commands/deploy/galaxy.sub.cmd.js +1 -1
  27. package/bundle/obf/src/commands/deploy/ubuntu.sub.cmd.js +1 -1
  28. package/bundle/obf/src/commands/game/_index.js +1 -1
  29. package/bundle/obf/src/commands/game/battleship.sub.cmd.js +1 -1
  30. package/bundle/obf/src/commands/game/play.command.js +1 -1
  31. package/bundle/obf/src/commands/game/pong.sub.cmd.js +1 -1
  32. package/bundle/obf/src/commands/game/sideQuest/commands/command.js +1 -1
  33. package/bundle/obf/src/commands/game/sideQuest/commands/drop.js +1 -1
  34. package/bundle/obf/src/commands/game/sideQuest/commands/equip.js +1 -1
  35. package/bundle/obf/src/commands/game/sideQuest/commands/go.js +1 -1
  36. package/bundle/obf/src/commands/game/sideQuest/commands/lock.js +1 -1
  37. package/bundle/obf/src/commands/game/sideQuest/commands/look.js +1 -1
  38. package/bundle/obf/src/commands/game/sideQuest/commands/say.js +1 -1
  39. package/bundle/obf/src/commands/game/sideQuest/commands/search.js +1 -1
  40. package/bundle/obf/src/commands/game/sideQuest/commands/solve.js +1 -1
  41. package/bundle/obf/src/commands/game/sideQuest/commands/take.js +1 -1
  42. package/bundle/obf/src/commands/game/sideQuest/commands/unequip.js +1 -1
  43. package/bundle/obf/src/commands/game/sideQuest/commands/unlock.js +1 -1
  44. package/bundle/obf/src/commands/game/sideQuest/commands/use.js +1 -1
  45. package/bundle/obf/src/commands/game/sideQuest/factories/commandF.js +1 -1
  46. package/bundle/obf/src/commands/game/sideQuest/factories/roomsF.js +1 -1
  47. package/bundle/obf/src/commands/game/sideQuest/game.js +1 -1
  48. package/bundle/obf/src/commands/game/sideQuest/models/_index.js +1 -1
  49. package/bundle/obf/src/commands/game/sideQuest/models/door.js +1 -1
  50. package/bundle/obf/src/commands/game/sideQuest/models/inventory.js +1 -1
  51. package/bundle/obf/src/commands/game/sideQuest/models/item.js +1 -1
  52. package/bundle/obf/src/commands/game/sideQuest/models/npc.js +1 -1
  53. package/bundle/obf/src/commands/game/sideQuest/models/player.js +1 -1
  54. package/bundle/obf/src/commands/game/sideQuest/models/puzzle.js +1 -1
  55. package/bundle/obf/src/commands/game/sideQuest/models/room.js +1 -1
  56. package/bundle/obf/src/commands/game/sideQuest/models/scene.js +1 -1
  57. package/bundle/obf/src/commands/game/sideQuest/scenes/items.js +1 -1
  58. package/bundle/obf/src/commands/game/sideQuest/scenes/rooms.js +1 -1
  59. package/bundle/obf/src/commands/game/sideQuest/types/abstracts.js +1 -1
  60. package/bundle/obf/src/commands/game/sideQuest/types/enums.js +1 -1
  61. package/bundle/obf/src/commands/game/sideQuest/types/interfaces.js +1 -1
  62. package/bundle/obf/src/commands/game/sideQuest/types/types.js +1 -1
  63. package/bundle/obf/src/commands/game/sideQuest/ui.js +1 -1
  64. package/bundle/obf/src/commands/game/sideQuest/utilities/logger.js +1 -1
  65. package/bundle/obf/src/commands/game/sideQuest.sub.cmd.js +1 -1
  66. package/bundle/obf/src/commands/game/snake.sub.cmd.js +1 -1
  67. package/bundle/obf/src/commands/game/tetris.sub.cmd.js +1 -1
  68. package/bundle/obf/src/commands/generate.js +1 -1
  69. package/bundle/obf/src/commands/get/_index.js +1 -1
  70. package/bundle/obf/src/commands/get/get.command.js +1 -1
  71. package/bundle/obf/src/commands/get/global.sub.cmd.js +1 -1
  72. package/bundle/obf/src/commands/get/local.sub.cmd.js +1 -1
  73. package/bundle/obf/src/commands/get/whoami.sub.cmd.js +1 -1
  74. package/bundle/obf/src/commands/help.js +1 -1
  75. package/bundle/obf/src/commands/install.js +1 -1
  76. package/bundle/obf/src/commands/jsdoc.js +1 -1
  77. package/bundle/obf/src/commands/lint.js +1 -1
  78. package/bundle/obf/src/commands/login.js +1 -1
  79. package/bundle/obf/src/commands/logout.js +1 -1
  80. package/bundle/obf/src/commands/logs.js +1 -1
  81. package/bundle/obf/src/commands/maka.cmd.js +1 -1
  82. package/bundle/obf/src/commands/murder.js +1 -1
  83. package/bundle/obf/src/commands/proxy.js +1 -1
  84. package/bundle/obf/src/commands/reconfig.js +1 -1
  85. package/bundle/obf/src/commands/run/_index.js +1 -1
  86. package/bundle/obf/src/commands/run/docker.sub.cmd.js +1 -1
  87. package/bundle/obf/src/commands/run/run.command.js +1 -1
  88. package/bundle/obf/src/commands/set/_index.js +1 -1
  89. package/bundle/obf/src/commands/set/global.sub.cmd.js +1 -1
  90. package/bundle/obf/src/commands/set/local.sub.cmd.js +1 -1
  91. package/bundle/obf/src/commands/set/set.command.js +1 -1
  92. package/bundle/obf/src/commands/ssh.js +1 -1
  93. package/bundle/obf/src/commands/ssl.js +1 -1
  94. package/bundle/obf/src/commands/test.js +1 -1
  95. package/bundle/obf/src/commands/version.js +1 -1
  96. package/bundle/obf/src/error.js +1 -1
  97. package/bundle/obf/src/exec.js +1 -1
  98. package/bundle/obf/src/generator.js +1 -1
  99. package/bundle/obf/src/generators/_index.js +1 -1
  100. package/bundle/obf/src/generators/api.js +1 -1
  101. package/bundle/obf/src/generators/collection.js +1 -1
  102. package/bundle/obf/src/generators/component.js +1 -1
  103. package/bundle/obf/src/generators/config.js +1 -1
  104. package/bundle/obf/src/generators/dbc.js +1 -1
  105. package/bundle/obf/src/generators/dockerfile.js +1 -1
  106. package/bundle/obf/src/generators/hook.js +1 -1
  107. package/bundle/obf/src/generators/kits/_index.js +1 -1
  108. package/bundle/obf/src/generators/kits/kit.js +1 -1
  109. package/bundle/obf/src/generators/kits/mui/_index.js +1 -1
  110. package/bundle/obf/src/generators/kits/mui/frame.mui.gen.js +1 -0
  111. package/bundle/obf/src/generators/kits/mui/mui.generator.js +1 -1
  112. package/bundle/obf/src/generators/layout.js +1 -1
  113. package/bundle/obf/src/generators/maka.gen.js +1 -1
  114. package/bundle/obf/src/generators/methods.js +1 -1
  115. package/bundle/obf/src/generators/package.js +1 -1
  116. package/bundle/obf/src/generators/page.js +1 -1
  117. package/bundle/obf/src/generators/publish.js +1 -1
  118. package/bundle/obf/src/generators/route.js +1 -1
  119. package/bundle/obf/src/generators/service.js +1 -1
  120. package/bundle/obf/src/generators/services/_index.js +1 -1
  121. package/bundle/obf/src/generators/services/openssl.js +1 -1
  122. package/bundle/obf/src/generators/services/translation.js +1 -1
  123. package/bundle/obf/src/maka.js +1 -1
  124. package/bundle/obf/src/templates/react/kit/mui/frame/{basic-app-bar.js.jsx → app-bars/basic-app-bar.js.jsx} +12 -2
  125. package/bundle/obf/src/templates/react/kit/mui/frame/{basic-app-bar.js → app-bars/basic-app-bar.js.tsx} +10 -2
  126. package/bundle/obf/src/templates/react/kit/mui/frame/drawers/basic-drawer.js.jsx +118 -0
  127. package/bundle/obf/src/templates/react/kit/mui/frame/drawers/basic-drawer.js.tsx +116 -0
  128. package/bundle/obf/src/tool.js +1 -1
  129. package/bundle/obf/src/tools/actions/actions.class.js +1 -1
  130. package/bundle/obf/src/tools/aws/aws.class.js +1 -1
  131. package/bundle/obf/src/tools/aws/aws.interfaces.js +1 -1
  132. package/bundle/obf/src/tools/docker/docker.class.js +1 -1
  133. package/bundle/obf/src/tools/docker/docker.interfaces.js +1 -1
  134. package/bundle/obf/src/tools/fsi/fsi.class.js +1 -1
  135. package/bundle/obf/src/tools/fsi/fsi.interfaces.js +1 -1
  136. package/bundle/obf/src/tools/https/https.class.js +1 -1
  137. package/bundle/obf/src/tools/https/https.interface.js +1 -1
  138. package/bundle/obf/src/tools/log/log.class.js +1 -1
  139. package/bundle/obf/src/tools/log/log.interfaces.js +1 -1
  140. package/bundle/obf/src/tools/options/options.class.js +1 -1
  141. package/bundle/obf/src/tools/progress/progress.class.js +1 -1
  142. package/bundle/obf/src/tools/spawn-async/spawn-async.class.js +1 -1
  143. package/bundle/obf/src/tools/spawn-async/spawn-async.interfaces.js +1 -1
  144. package/bundle/obf/src/tools/ssh/ssh.class.js +1 -1
  145. package/bundle/obf/src/tools/ssh/ssh.interfaces.js +1 -1
  146. package/bundle/obf/src/tools/ssl/ssl.class.js +1 -1
  147. package/package.json +2 -1
  148. package/bundle/obf/src/generators/kits/mui/layout.mui.gen.js +0 -1
  149. package/bundle/obf/src/templates/react/kit/mui/frame/basic-app-bar.js.ts +0 -0
  150. package/bundle/obf/src/templates/react/kit/mui/frame/basic-app-bar.js.tsx +0 -0
@@ -1 +1 @@
1
- var a55i=a55d;(function(a,b){var f=a55d,c=a();while(!![]){try{var d=parseInt(f(0x137))/0x1+-parseInt(f(0x121))/0x2+-parseInt(f(0x14a))/0x3*(parseInt(f(0x136))/0x4)+-parseInt(f(0x12a))/0x5+-parseInt(f(0x133))/0x6+parseInt(f(0x152))/0x7*(-parseInt(f(0x140))/0x8)+parseInt(f(0x14d))/0x9*(parseInt(f(0x14e))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a55c,0xaa77b));var a55b=(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;};}()),a55a=a55b(this,function(){var g=a55d;return a55a[g(0x142)]()[g(0x151)](g(0x12d))['toString']()['constructor'](a55a)['search'](g(0x12d));});a55a();import{Size,Category,Shape,Color,Texture,Rating}from'../types/enums.js';import{Item}from'../models/item.js';function a55c(){var D=['Small','Circle','use','This\x20is\x20a\x20key,\x20and\x20you\x20cannot\x20just\x20\x22use\x22\x20it.\x20Try\x20\x22unlock\x22','Holy\x20Grail','3565080gOjnfy','Yellow','Medium','(((.+)+)+)+$','Smooth','Metallic','ArmArmor','Tiny','Key','6805962jWGsEc','Legendary','name','4XtPird','295340bJPRzx','BodyArmor','description','Brown','A\x20mysterious\x20book.','Common','A\x20well-balanced\x20short\x20sword,\x20ideal\x20for\x20close\x20combat.','Rifle','Unknown\x20Author','2480wErfZY','Blade','toString','A\x20legendary\x20cup\x20believed\x20to\x20have\x20miraculous\x20powers.\x20It\x20shimmers\x20with\x20an\x20ethereal\x20glow.','An\x20accurate,\x20long\x20range,\x205\x20round\x20rifle\x20with\x20a\x208x\x20scope.','Use\x20it\x20for\x20what?\x20Try\x20equipping\x20it\x20\x22equip\x20short\x20sword\x22','Helmet','\x20aloft,\x20feeling\x20its\x20immense\x20power.','author','There\x20is\x20a\x20bookmark,\x20you\x20open\x20the\x20book\x20to\x20the\x20page\x20and\x20you\x20see\x20a\x20note\x20saying\x20\x22secret123\x22','2192331IrMcKo','Large','Gold','99jVyFCE','4588660RucrQG','Unknown','You\x20hold\x20the\x20','search','25445OlrUsp','Gloves','publishDate','Weapon','pageCount','Grey','1879322eCOVPg','Rare','Short\x20Sword','Rectangle'];a55c=function(){return D;};return a55c();}export class BasicItem extends Item{constructor(a,b){var h=a55d;super({'name':a,'description':b,'size':Size[h(0x12c)],'category':Category[h(0x14f)],'shape':Shape['Rectangle'],'color':Color[h(0x12b)],'texture':Texture[h(0x12e)],'rating':Rating[h(0x13c)],'weight':0x1});}[a55i(0x127)](){var j=a55i;return this[j(0x139)];}}export class Sword extends Item{constructor(a,b){var k=a55i;super({'name':a,'description':b,'size':Size[k(0x12c)],'category':Category[k(0x155)],'shape':Shape[k(0x141)],'color':Color['Grey'],'texture':Texture[k(0x12f)],'rating':Rating[k(0x13c)],'weight':0x3});}}export class Rifle extends Item{constructor(a,b){var l=a55i;super({'name':a,'description':b,'size':Size[l(0x14b)],'category':Category[l(0x155)],'shape':Shape[l(0x13e)],'color':Color[l(0x13a)],'texture':Texture['Metallic'],'rating':Rating[l(0x122)],'weight':0x7});}}export class Helmet extends Item{constructor(a,b){var m=a55i;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[m(0x146)],'shape':Shape[m(0x126)],'color':Color[m(0x120)],'texture':Texture['Metallic'],'rating':Rating['Common'],'weight':0x2});}}export class BodyArmor extends Item{constructor(a,b){var n=a55i;super({'name':a,'description':b,'size':Size[n(0x14b)],'category':Category[n(0x138)],'shape':Shape[n(0x124)],'color':Color[n(0x120)],'texture':Texture['Metallic'],'rating':Rating[n(0x13c)],'weight':0xa});}}export class LegArmor extends Item{constructor(a,b){var o=a55i;super({'name':a,'description':b,'size':Size['Medium'],'category':Category['LegArmor'],'shape':Shape[o(0x124)],'color':Color[o(0x120)],'texture':Texture[o(0x12f)],'rating':Rating[o(0x13c)],'weight':0x6});}}export class Boots extends Item{constructor(a,b){var p=a55i;super({'name':a,'description':b,'size':Size['Medium'],'category':Category['Boots'],'shape':Shape[p(0x126)],'color':Color[p(0x13a)],'texture':Texture[p(0x12e)],'rating':Rating[p(0x13c)],'weight':0x2});}}export class Gloves extends Item{constructor(a,b){var q=a55i;super({'name':a,'description':b,'size':Size[q(0x125)],'category':Category[q(0x153)],'shape':Shape[q(0x126)],'color':Color[q(0x13a)],'texture':Texture[q(0x12e)],'rating':Rating[q(0x13c)],'weight':0x1});}}export class Gauntlets extends Item{constructor(a,b){var r=a55i;super({'name':a,'description':b,'size':Size[r(0x12c)],'category':Category[r(0x130)],'shape':Shape[r(0x124)],'color':Color[r(0x120)],'texture':Texture['Metallic'],'rating':Rating[r(0x13c)],'weight':0x3});}}export class Key extends Item{constructor(a,b){var s=a55i;super({'name':a,'description':b,'size':Size[s(0x131)],'category':Category[s(0x132)],'shape':Shape[s(0x124)],'color':Color[s(0x12b)],'texture':Texture[s(0x12e)],'rating':Rating[s(0x13c)],'weight':0x0});}[a55i(0x127)](){var t=a55i;return t(0x128);}}function a55d(a,b){var c=a55c();return a55d=function(d,e){d=d-0x11f;var f=c[d];return f;},a55d(a,b);}export class Weapon extends Item{constructor(a,b){var u=a55i;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[u(0x155)],'shape':Shape[u(0x141)],'color':Color[u(0x120)],'texture':Texture['Metallic'],'rating':Rating[u(0x13c)],'weight':0x3});}[a55i(0x127)](){var v=a55i;return v(0x145);}}export class Book extends Item{['author'];[a55i(0x154)];[a55i(0x11f)];constructor(a,b=a55i(0x13b),c=a55i(0x13f)){var w=a55i;super({'name':a,'description':b,'size':Size['Medium'],'category':Category['Book'],'shape':Shape[w(0x124)],'color':Color[w(0x13a)],'texture':Texture[w(0x12e)],'rating':Rating[w(0x13c)],'weight':0x1}),this[w(0x148)]=c,this['publishDate']=new Date(),this[w(0x11f)]=0x64;}[a55i(0x127)](){var x=a55i;return x(0x149);}}export class ShortSword extends Item{constructor(){var y=a55i;super({'name':y(0x123),'description':y(0x13d),'size':Size[y(0x12c)],'category':Category[y(0x155)],'shape':Shape[y(0x141)],'color':Color['Grey'],'texture':Texture[y(0x12f)],'rating':Rating[y(0x13c)],'weight':0x3});}['use'](){var z=a55i;return z(0x145);}}export class SniperRifle extends Item{constructor(){var A=a55i;super({'name':'Sniper\x20Rifle','description':A(0x144),'size':Size[A(0x14b)],'category':Category[A(0x155)],'shape':Shape[A(0x13e)],'color':Color['Brown'],'texture':Texture[A(0x12e)],'rating':Rating[A(0x13c)],'weight':0x5});}[a55i(0x127)](){return'You\x20suck\x20at\x20using\x20it.\x20\x20Try\x20equipping\x20it\x20\x22equip\x20sniper\x20rifle\x22';}}export class HolyGrail extends Item{constructor(){var B=a55i;super({'name':B(0x129),'description':B(0x143),'size':Size[B(0x125)],'category':Category['Cup'],'shape':Shape['Circle'],'color':Color[B(0x14c)],'texture':Texture[B(0x12f)],'rating':Rating[B(0x134)],'weight':0x1});}[a55i(0x127)](){var C=a55i;return C(0x150)+this[C(0x135)]+C(0x147);}}
1
+ var a55j=a55d;(function(a,b){var f=a55d,c=a();while(!![]){try{var d=-parseInt(f(0x71))/0x1+parseInt(f(0x9b))/0x2+-parseInt(f(0x72))/0x3*(-parseInt(f(0x98))/0x4)+-parseInt(f(0x96))/0x5+parseInt(f(0x85))/0x6*(-parseInt(f(0x78))/0x7)+parseInt(f(0x80))/0x8+-parseInt(f(0x95))/0x9*(-parseInt(f(0x7e))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a55c,0x898ff));var a55b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a55d;if(c){var e=c[g(0x9f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a55a=a55b(this,function(){var h=a55d;return a55a[h(0x7f)]()[h(0x88)](h(0x90))[h(0x7f)]()[h(0x7d)](a55a)[h(0x88)]('(((.+)+)+)+$');});a55a();import{Size,Category,Shape,Color,Texture,Rating}from'../types/enums.js';import{Item}from'../models/item.js';function a55d(a,b){var c=a55c();return a55d=function(d,e){d=d-0x6f;var f=c[d];return f;},a55d(a,b);}export class BasicItem extends Item{constructor(a,b){var i=a55d;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[i(0x97)],'shape':Shape[i(0x7b)],'color':Color['Yellow'],'texture':Texture[i(0x8f)],'rating':Rating['Common'],'weight':0x1});}[a55j(0x91)](){return this['description'];}}export class Sword extends Item{constructor(a,b){var k=a55j;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[k(0x87)],'shape':Shape[k(0x77)],'color':Color[k(0x86)],'texture':Texture[k(0x70)],'rating':Rating[k(0x89)],'weight':0x3});}}export class Rifle extends Item{constructor(a,b){var l=a55j;super({'name':a,'description':b,'size':Size[l(0x8a)],'category':Category['Weapon'],'shape':Shape[l(0x83)],'color':Color[l(0x81)],'texture':Texture[l(0x70)],'rating':Rating['Rare'],'weight':0x7});}}export class Helmet extends Item{constructor(a,b){var m=a55j;super({'name':a,'description':b,'size':Size[m(0x9c)],'category':Category[m(0x8e)],'shape':Shape[m(0x75)],'color':Color[m(0x86)],'texture':Texture[m(0x70)],'rating':Rating[m(0x89)],'weight':0x2});}}export class BodyArmor extends Item{constructor(a,b){var n=a55j;super({'name':a,'description':b,'size':Size[n(0x8a)],'category':Category['BodyArmor'],'shape':Shape[n(0x7b)],'color':Color['Grey'],'texture':Texture[n(0x70)],'rating':Rating['Common'],'weight':0xa});}}export class LegArmor extends Item{constructor(a,b){var o=a55j;super({'name':a,'description':b,'size':Size[o(0x9c)],'category':Category[o(0x84)],'shape':Shape[o(0x7b)],'color':Color[o(0x86)],'texture':Texture['Metallic'],'rating':Rating['Common'],'weight':0x6});}}function a55c(){var C=['Rifle','LegArmor','72SwLkPZ','Grey','Weapon','search','Common','Large','Short\x20Sword','This\x20is\x20a\x20key,\x20and\x20you\x20cannot\x20just\x20\x22use\x22\x20it.\x20Try\x20\x22unlock\x22','author','Helmet','Smooth','(((.+)+)+)+$','use','pageCount','Tiny','publishDate','4734ILDCWd','2726525FfYYdk','Unknown','2048308geqZKp','Small','\x20aloft,\x20feeling\x20its\x20immense\x20power.','548634PuQEFT','Medium','Key','Yellow','apply','Book','Use\x20it\x20for\x20what?\x20Try\x20equipping\x20it\x20\x22equip\x20short\x20sword\x22','Sniper\x20Rifle','You\x20suck\x20at\x20using\x20it.\x20\x20Try\x20equipping\x20it\x20\x22equip\x20sniper\x20rifle\x22','Metallic','1058579WBtTam','3wdoOtL','You\x20hold\x20the\x20','Holy\x20Grail','Circle','A\x20legendary\x20cup\x20believed\x20to\x20have\x20miraculous\x20powers.\x20It\x20shimmers\x20with\x20an\x20ethereal\x20glow.','Blade','25739TiTiKS','An\x20accurate,\x20long\x20range,\x205\x20round\x20rifle\x20with\x20a\x208x\x20scope.','Gloves','Rectangle','Cup','constructor','23290yjQtjj','toString','1600120yHjnWV','Brown','A\x20well-balanced\x20short\x20sword,\x20ideal\x20for\x20close\x20combat.'];a55c=function(){return C;};return a55c();}export class Boots extends Item{constructor(a,b){var p=a55j;super({'name':a,'description':b,'size':Size['Medium'],'category':Category['Boots'],'shape':Shape[p(0x75)],'color':Color[p(0x81)],'texture':Texture[p(0x8f)],'rating':Rating[p(0x89)],'weight':0x2});}}export class Gloves extends Item{constructor(a,b){var q=a55j;super({'name':a,'description':b,'size':Size[q(0x99)],'category':Category[q(0x7a)],'shape':Shape[q(0x75)],'color':Color['Brown'],'texture':Texture['Smooth'],'rating':Rating['Common'],'weight':0x1});}}export class Gauntlets extends Item{constructor(a,b){var r=a55j;super({'name':a,'description':b,'size':Size[r(0x9c)],'category':Category['ArmArmor'],'shape':Shape[r(0x7b)],'color':Color[r(0x86)],'texture':Texture[r(0x70)],'rating':Rating[r(0x89)],'weight':0x3});}}export class Key extends Item{constructor(a,b){var s=a55j;super({'name':a,'description':b,'size':Size[s(0x93)],'category':Category[s(0x9d)],'shape':Shape[s(0x7b)],'color':Color[s(0x9e)],'texture':Texture['Smooth'],'rating':Rating[s(0x89)],'weight':0x0});}[a55j(0x91)](){var t=a55j;return t(0x8c);}}export class Weapon extends Item{constructor(a,b){var u=a55j;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[u(0x87)],'shape':Shape[u(0x77)],'color':Color[u(0x86)],'texture':Texture[u(0x70)],'rating':Rating[u(0x89)],'weight':0x3});}[a55j(0x91)](){return'Use\x20it\x20for\x20what?\x20Try\x20equipping\x20it\x20\x22equip\x20short\x20sword\x22';}}export class Book extends Item{[a55j(0x8d)];[a55j(0x94)];[a55j(0x92)];constructor(a,b='A\x20mysterious\x20book.',c='Unknown\x20Author'){var v=a55j;super({'name':a,'description':b,'size':Size[v(0x9c)],'category':Category[v(0xa0)],'shape':Shape[v(0x7b)],'color':Color[v(0x81)],'texture':Texture[v(0x8f)],'rating':Rating[v(0x89)],'weight':0x1}),this[v(0x8d)]=c,this[v(0x94)]=new Date(),this[v(0x92)]=0x64;}[a55j(0x91)](){return'There\x20is\x20a\x20bookmark,\x20you\x20open\x20the\x20book\x20to\x20the\x20page\x20and\x20you\x20see\x20a\x20note\x20saying\x20\x22secret123\x22';}}export class ShortSword extends Item{constructor(){var w=a55j;super({'name':w(0x8b),'description':w(0x82),'size':Size[w(0x9c)],'category':Category[w(0x87)],'shape':Shape[w(0x77)],'color':Color['Grey'],'texture':Texture[w(0x70)],'rating':Rating[w(0x89)],'weight':0x3});}[a55j(0x91)](){var x=a55j;return x(0xa1);}}export class SniperRifle extends Item{constructor(){var y=a55j;super({'name':y(0xa2),'description':y(0x79),'size':Size[y(0x8a)],'category':Category[y(0x87)],'shape':Shape[y(0x83)],'color':Color[y(0x81)],'texture':Texture['Smooth'],'rating':Rating[y(0x89)],'weight':0x5});}[a55j(0x91)](){var z=a55j;return z(0x6f);}}export class HolyGrail extends Item{constructor(){var A=a55j;super({'name':A(0x74),'description':A(0x76),'size':Size[A(0x99)],'category':Category[A(0x7c)],'shape':Shape[A(0x75)],'color':Color['Gold'],'texture':Texture['Metallic'],'rating':Rating['Legendary'],'weight':0x1});}['use'](){var B=a55j;return B(0x73)+this['name']+B(0x9a);}}
@@ -1 +1 @@
1
- const a57i=a57d;(function(a,b){const f=a57d,c=a();while(!![]){try{const d=-parseInt(f(0xf3))/0x1+parseInt(f(0xeb))/0x2+parseInt(f(0x102))/0x3*(parseInt(f(0x14a))/0x4)+-parseInt(f(0x108))/0x5+-parseInt(f(0xf1))/0x6*(-parseInt(f(0xfd))/0x7)+parseInt(f(0x104))/0x8*(-parseInt(f(0x13f))/0x9)+-parseInt(f(0x157))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a57c,0x95fd8));const a57b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a57d;if(c){const e=c[g(0x111)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a57a=a57b(this,function(){const h=a57d;return a57a['toString']()[h(0x131)](h(0xf2))[h(0xec)]()[h(0xef)](a57a)[h(0x131)](h(0xf2));});a57a();export const rooms=[{'name':a57i(0x10e),'description':a57i(0xf5),'isStartRoom':!![],'items':[{'type':a57i(0x14b),'name':a57i(0x13c),'description':a57i(0x127)},{'type':a57i(0x12d),'name':'Guard\x27s\x20Log\x20Book','description':a57i(0x137),'content':a57i(0x138)}],'exits':[{'direction':a57i(0x141),'targetRoom':'Secret\x20Passage'}]},{'name':a57i(0x10c),'description':'A\x20dimly\x20lit\x20passage\x20with\x20walls\x20made\x20of\x20stone.','exits':[{'direction':a57i(0x110),'targetRoom':'Treasure\x20Room','keyRequired':a57i(0x13c)},{'direction':a57i(0x117),'targetRoom':'Courtyard'}]},{'name':a57i(0x11c),'description':a57i(0x10d),'items':[{'type':'holyGrail','name':a57i(0x136),'description':a57i(0xea)}]},{'name':a57i(0x112),'description':a57i(0x10f),'roomType':a57i(0x107),'exits':[{'direction':'UP','targetRoom':a57i(0xe8)}]},{'name':a57i(0xe8),'description':a57i(0x12c),'roomType':a57i(0x107),'puzzle':{'requiredPhrase':a57i(0x159),'riddle':a57i(0x124),'rewardItem':{'type':a57i(0x106),'name':a57i(0x149),'description':a57i(0x10b)},'successMessage':a57i(0x15d),'failureMessage':a57i(0x128)}}];export const dungeonConfig=[{'name':'Entrance\x20Hall','description':a57i(0x12b),'isStartRoom':!![],'roomType':a57i(0x109),'puzzle':{'requiredPhrase':a57i(0x113),'riddle':a57i(0x12e),'rewardItem':{'type':a57i(0x14b),'name':a57i(0xf6),'description':a57i(0x153)},'successMessage':'The\x20gate\x20slowly\x20opens\x20revealing\x20the\x20path\x20to\x20the\x20Central\x20Chamber.','failureMessage':a57i(0xff)},'exits':[{'direction':a57i(0x118),'targetRoom':'Study'},{'direction':a57i(0x145),'targetRoom':'Central\x20Chamber','keyRequired':a57i(0xf6)}]},{'name':a57i(0x119),'description':a57i(0xe9),'roomType':a57i(0x109),'items':[{'type':a57i(0x12d),'name':'Riddle\x20Book','description':a57i(0x146),'content':a57i(0x103)},{'type':a57i(0x14b),'name':a57i(0xf6),'description':'A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.'}],'exits':[{'direction':a57i(0x100),'targetRoom':a57i(0x120)},{'direction':a57i(0x145),'targetRoom':a57i(0x14f)}]},{'name':a57i(0x14f),'description':'A\x20room\x20filled\x20with\x20potions,\x20beakers,\x20and\x20an\x20enchantment\x20circle.','roomType':'inside','items':[{'type':'basic','name':'Empty\x20vial','description':a57i(0xed)}],'exits':[{'direction':a57i(0x15a),'targetRoom':a57i(0x119)},{'direction':a57i(0x118),'targetRoom':'Armory'}]},{'name':'Armory','description':'Rows\x20of\x20ancient\x20weapons\x20and\x20armors.','roomType':a57i(0x109),'items':[{'type':a57i(0x11a),'name':'Emblem\x20Shield','description':a57i(0x130)},{'type':'sword','name':a57i(0x101),'description':a57i(0xfa)}],'exits':[{'direction':a57i(0x100),'targetRoom':a57i(0x14f)},{'direction':a57i(0x145),'targetRoom':a57i(0x11f)}]},{'name':'Central\x20Chamber','description':a57i(0x150),'roomType':'inside','exits':[{'direction':'west','targetRoom':a57i(0x11b)},{'direction':a57i(0x100),'targetRoom':'Entrance\x20Hall'},{'direction':a57i(0x118),'targetRoom':a57i(0x13b)},{'direction':a57i(0x145),'targetRoom':a57i(0x11c)}]},{'name':a57i(0x13b),'description':a57i(0xf0),'roomType':a57i(0x109),'items':[{'type':'key','name':a57i(0x15c),'description':a57i(0x158)}],'puzzle':{'requiredPhrase':a57i(0xf7),'riddle':a57i(0x134),'rewardItem':{'type':'gem','name':a57i(0x13d),'description':a57i(0x10a)},'successMessage':'The\x20ghost\x20thanks\x20you\x20and\x20disappears,\x20leaving\x20behind\x20the\x20gem.','failureMessage':a57i(0x156)},'exits':[{'direction':a57i(0x100),'targetRoom':a57i(0x11f)}]},{'name':'Treasure\x20Room','description':a57i(0x126),'roomType':a57i(0x109),'puzzle':{'requiredPhrase':'insert\x20gem','riddle':a57i(0x151),'rewardItem':{'type':'cup','name':a57i(0x121),'description':a57i(0xe7)},'successMessage':a57i(0xe6),'failureMessage':a57i(0x114)},'exits':[{'direction':'west','targetRoom':a57i(0x11f)}]}];function a57d(a,b){const c=a57c();return a57d=function(d,e){d=d-0xe5;let f=c[d];return f;},a57d(a,b);}export const shadowrunConfig=[{'name':'Jackpoint\x20Login','description':a57i(0xe5),'isStartRoom':!![],'roomType':a57i(0x109),'exits':[{'direction':'north','targetRoom':a57i(0x105)},{'direction':'up','targetRoom':a57i(0xfc)}]},{'name':a57i(0xfc),'description':a57i(0x116),'roomType':a57i(0x109),'puzzle':{'requiredPhrase':a57i(0x143),'riddle':a57i(0x154),'rewardItem':{'type':a57i(0x14b),'name':a57i(0x148),'description':a57i(0x144)},'successMessage':'The\x20data\x20stream\x20reveals\x20a\x20location:\x20Downtown\x20Seattle.','failureMessage':a57i(0x123)},'exits':[{'direction':a57i(0x12f),'targetRoom':a57i(0x14c)}]},{'name':'Downtown\x20Seattle','description':a57i(0xfb),'roomType':a57i(0x135),'exits':[{'direction':a57i(0x100),'targetRoom':'Jackpoint\x20Login'},{'direction':a57i(0x145),'targetRoom':a57i(0x13e)},{'direction':a57i(0x15a),'targetRoom':a57i(0x13a)}]},{'name':a57i(0x13e),'description':a57i(0x139),'roomType':a57i(0x135),'puzzle':{'requiredPhrase':'show\x20loyalty','riddle':a57i(0x11d),'rewardItem':{'type':'key','name':'Gang\x20Insignia','description':a57i(0x133)},'successMessage':a57i(0x11e),'failureMessage':'The\x20gang\x20members\x20block\x20your\x20way,\x20suspicious\x20of\x20your\x20motives.'},'exits':[{'direction':a57i(0x15a),'targetRoom':a57i(0x105)},{'direction':a57i(0x118),'targetRoom':'Barrens\x20Hideout'}]},{'name':'Corp\x20Enclave','description':a57i(0x147),'roomType':a57i(0x109),'items':[{'type':a57i(0x14e),'name':'Corporate\x20Creditstick','description':a57i(0xfe)},{'type':a57i(0x155),'name':a57i(0xf4),'description':a57i(0x15b)}],'exits':[{'direction':a57i(0x145),'targetRoom':a57i(0x105)}]},{'name':a57i(0x129),'description':a57i(0x12a),'roomType':a57i(0x135),'items':[{'type':'weapon','name':'Ares\x20Predator','description':a57i(0x132)}],'exits':[{'direction':'south','targetRoom':a57i(0x13e)},{'direction':'north','targetRoom':a57i(0x14d)},{'direction':a57i(0x145),'targetRoom':a57i(0x142)}]},{'name':'Mage\x27s\x20Lair','description':a57i(0x140),'roomType':a57i(0x109),'puzzle':{'requiredPhrase':a57i(0xf9),'riddle':a57i(0x122),'rewardItem':{'type':a57i(0x115),'name':a57i(0x152),'description':'A\x20powerful\x20amulet\x20said\x20to\x20wake\x20spirits\x20from\x20slumber.'},'successMessage':'The\x20ward\x20shatters,\x20revealing\x20the\x20amulet.','failureMessage':'The\x20magic\x20in\x20the\x20room\x20grows\x20more\x20oppressive,\x20resisting\x20your\x20efforts.'},'exits':[{'direction':a57i(0x100),'targetRoom':a57i(0x129)}]},{'name':'Rigger\x27s\x20Workshop','description':a57i(0xf8),'roomType':a57i(0x109),'items':[{'type':'drone','name':a57i(0x125),'description':a57i(0xee)}],'exits':[{'direction':a57i(0x15a),'targetRoom':a57i(0x129)}]}];function a57c(){const j=['A\x20creditstick\x20loaded\x20with\x20nuyen.','Nothing\x20happens.','south','Rusted\x20Sword','30087WoPnvi','When\x20is\x20a\x20door\x20not\x20a\x20door?\x20When\x20it\x27s\x20ajar!','72Nbqijn','Downtown\x20Seattle','rifle','OUTSIDE','55600sxAhFo','inside','A\x20gem\x20radiating\x20a\x20mysterious\x20aura.','A\x20long-range\x20weapon.','Secret\x20Passage','A\x20room\x20glittering\x20with\x20gold\x20and\x20jewels.','Library','A\x20serene\x20courtyard\x20with\x20a\x20gentle\x20fountain.\x20There\x20are\x20birds\x20bathing.','NORTH','apply','Courtyard','open\x20sesame','The\x20chest\x20remains\x20firmly\x20shut.','amulet','A\x20digital\x20realm\x20with\x20information\x20streams\x20flowing\x20like\x20rivers.','SOUTH','north','Study','shield','Armory','Treasure\x20Room','To\x20enter\x20deeper\x20into\x20the\x20Barrens,\x20you\x20must\x20show\x20allegiance\x20to\x20one\x20of\x20the\x20gangs.','The\x20gang\x20members\x20nod\x20and\x20let\x20you\x20pass\x20deeper\x20into\x20the\x20Barrens.','Central\x20Chamber','Entrance\x20Hall','Golden\x20Chalice','Break\x20the\x20ward\x20to\x20reveal\x20the\x20hidden\x20magical\x20artifact.','The\x20data\x20remains\x20encrypted.','A\x20locked\x20glass\x20gun\x20cabinet\x20stands\x20here,\x20with\x20a\x20keypad\x20awaiting\x20a\x20password.','MCT\x20Fly-Spy','Glittering\x20treasures\x20from\x20floor\x20to\x20ceiling.','A\x20shiny\x20golden\x20key\x20with\x20intricate\x20engravings.','That\x20passcode\x20is\x20incorrect','Barrens\x20Hideout','A\x20hidden\x20alley\x20in\x20the\x20Barrens\x20where\x20shadowrunners\x20meet\x20up\x20for\x20covert\x20jobs.','A\x20grand\x20entrance\x20with\x20huge\x20wooden\x20doors\x20behind\x20and\x20a\x20dimly\x20lit\x20corridor\x20ahead.','A\x20towering\x20structure\x20giving\x20a\x20bird’s-eye\x20view\x20of\x20the\x20surroundings.','book','Speak\x20the\x20ancient\x20phrase\x20to\x20unlock\x20the\x20Central\x20Chamber.','down','A\x20shield\x20with\x20the\x20emblem\x20of\x20the\x20dungeon.','search','A\x20popular\x20heavy\x20pistol\x20among\x20shadowrunners.','A\x20badge\x20proving\x20your\x20loyalty\x20to\x20one\x20of\x20the\x20Barrens\x27\x20gangs.','Speak\x20the\x20word\x20to\x20free\x20the\x20ghost.','outside','Holy\x20Grail','A\x20thin\x20log\x20book','Chad\x20the\x20stupid\x20guard','The\x20outskirts\x20of\x20the\x20lawless\x20Redmond\x20Barrens.\x20Gang\x20graffiti\x20is\x20everywhere.','Corp\x20Enclave','Torture\x20Chamber','Golden\x20Key','Ancient\x20Gem','Barrens\x20Entrance','54909XsbEpE','A\x20hideout\x20filled\x20with\x20magical\x20artifacts,\x20wards,\x20and\x20a\x20few\x20summoned\x20spirits\x20guarding\x20the\x20place.','EAST','Rigger\x27s\x20Workshop','decrypt','A\x20key\x20made\x20of\x20pure\x20digital\x20energy.','east','A\x20book\x20containing\x20a\x20mysterious\x20riddle.','The\x20high-security\x20corporate\x20zone,\x20complete\x20with\x20looming\x20skyscrapers\x20and\x20security\x20checkpoints.','Encrypted\x20Data\x20Key','Sniper\x20Rifle','180nralvK','key','Jackpoint\x20Login','Mage\x27s\x20Lair','creditstick','Alchemy\x20Lab','A\x20large\x20circular\x20room\x20with\x20four\x20doors.','The\x20chest\x20has\x20a\x20gem-shaped\x20socket.','Amulet\x20of\x20Awakening','A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.','Unlock\x20the\x20encrypted\x20data\x20to\x20receive\x20your\x20next\x20mission.','document','The\x20chains\x20rattle\x20ominously,\x20but\x20nothing\x20else\x20happens.','2890990MlxIvs','A\x20key\x20stained\x20with\x20old\x20blood.','secret123','west','Detailed\x20security\x20plans\x20for\x20a\x20corporate\x20building.','Blood-stained\x20Key','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','A\x20virtual\x20portal\x20in\x20the\x20Matrix.\x20Glowing\x20neon\x20lights\x20everywhere,\x20with\x20digital\x20sprites\x20zipping\x20by.','The\x20chest\x20unlocks\x20revealing\x20the\x20chalice.','A\x20chalice\x20made\x20of\x20pure\x20gold.','Watch\x20Tower','A\x20quiet\x20room\x20filled\x20with\x20bookshelves,\x20a\x20large\x20desk,\x20and\x20scattered\x20papers.','The\x20legendary\x20Holy\x20Grail.','873170IumwoM','toString','A\x20clear\x20glass\x20vial.','A\x20small\x20surveillance\x20drone.','constructor','Dark,\x20grim\x20with\x20chains\x20on\x20walls\x20and\x20an\x20eerie\x20silence.','245640ETcJCv','(((.+)+)+)+$','123102BzNpiI','CorpSec\x20Plans','A\x20vast\x20library\x20filled\x20with\x20ancient\x20books.\x20[START]','Central\x20Chamber\x20Key','release','Drones\x20and\x20vehicles\x20being\x20modified,\x20tools\x20everywhere,\x20and\x20a\x20rigger\x20jacked\x20in\x20to\x20a\x20command\x20console.','disenchant','An\x20old\x20and\x20rusted\x20sword.','The\x20rain-soaked\x20streets\x20of\x20Seattle\x20with\x20neon\x20lights\x20reflecting\x20off\x20wet\x20pavement.\x20The\x20distant\x20sound\x20of\x20corporate\x20security\x20drones\x20can\x20be\x20heard.','Matrix\x20Data\x20Haven','35cEVUlM'];a57c=function(){return j;};return a57c();}
1
+ function a57c(){const j=['decrypt','Alchemy\x20Lab','The\x20ward\x20shatters,\x20revealing\x20the\x20amulet.','The\x20chest\x20has\x20a\x20gem-shaped\x20socket.','Library','Rows\x20of\x20ancient\x20weapons\x20and\x20armors.','NORTH','search','Entrance\x20Hall','west','key','creditstick','A\x20key\x20made\x20of\x20pure\x20digital\x20energy.','open\x20sesame','The\x20high-security\x20corporate\x20zone,\x20complete\x20with\x20looming\x20skyscrapers\x20and\x20security\x20checkpoints.','Gang\x20Insignia','Empty\x20vial','cup','The\x20outskirts\x20of\x20the\x20lawless\x20Redmond\x20Barrens.\x20Gang\x20graffiti\x20is\x20everywhere.','Barrens\x20Entrance','16yFuLXx','CorpSec\x20Plans','The\x20chest\x20remains\x20firmly\x20shut.','east','Watch\x20Tower','Ares\x20Predator','holyGrail','show\x20loyalty','A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.','A\x20grand\x20entrance\x20with\x20huge\x20wooden\x20doors\x20behind\x20and\x20a\x20dimly\x20lit\x20corridor\x20ahead.','When\x20is\x20a\x20door\x20not\x20a\x20door?\x20When\x20it\x27s\x20ajar!','A\x20book\x20containing\x20a\x20mysterious\x20riddle.','Holy\x20Grail','Ancient\x20Gem','rifle','2300706dYnkeE','A\x20hidden\x20alley\x20in\x20the\x20Barrens\x20where\x20shadowrunners\x20meet\x20up\x20for\x20covert\x20jobs.','A\x20long-range\x20weapon.','A\x20hideout\x20filled\x20with\x20magical\x20artifacts,\x20wards,\x20and\x20a\x20few\x20summoned\x20spirits\x20guarding\x20the\x20place.','sword','drone','The\x20chest\x20unlocks\x20revealing\x20the\x20chalice.','Barrens\x20Hideout','Rigger\x27s\x20Workshop','Glittering\x20treasures\x20from\x20floor\x20to\x20ceiling.','basic','Mage\x27s\x20Lair','A\x20shield\x20with\x20the\x20emblem\x20of\x20the\x20dungeon.','A\x20small\x20surveillance\x20drone.','toString','Central\x20Chamber\x20Key','Rusted\x20Sword','insert\x20gem','Torture\x20Chamber','Treasure\x20Room','Riddle\x20Book','Golden\x20Key','A\x20gem\x20radiating\x20a\x20mysterious\x20aura.','The\x20chains\x20rattle\x20ominously,\x20but\x20nothing\x20else\x20happens.','Jackpoint\x20Login','To\x20enter\x20deeper\x20into\x20the\x20Barrens,\x20you\x20must\x20show\x20allegiance\x20to\x20one\x20of\x20the\x20gangs.','2915636zeuUnU','weapon','Drones\x20and\x20vehicles\x20being\x20modified,\x20tools\x20everywhere,\x20and\x20a\x20rigger\x20jacked\x20in\x20to\x20a\x20command\x20console.','SOUTH','The\x20data\x20remains\x20encrypted.','Central\x20Chamber','An\x20old\x20and\x20rusted\x20sword.','Nothing\x20happens.','Sniper\x20Rifle','Emblem\x20Shield','shield','outside','Blood-stained\x20Key','33430dGYNQW','A\x20virtual\x20portal\x20in\x20the\x20Matrix.\x20Glowing\x20neon\x20lights\x20everywhere,\x20with\x20digital\x20sprites\x20zipping\x20by.','down','Chad\x20the\x20stupid\x20guard','A\x20locked\x20glass\x20gun\x20cabinet\x20stands\x20here,\x20with\x20a\x20keypad\x20awaiting\x20a\x20password.','north','The\x20gang\x20members\x20block\x20your\x20way,\x20suspicious\x20of\x20your\x20motives.','A\x20digital\x20realm\x20with\x20information\x20streams\x20flowing\x20like\x20rivers.','A\x20dimly\x20lit\x20passage\x20with\x20walls\x20made\x20of\x20stone.','7518467doluiu','A\x20shiny\x20golden\x20key\x20with\x20intricate\x20engravings.','constructor','secret123','The\x20magic\x20in\x20the\x20room\x20grows\x20more\x20oppressive,\x20resisting\x20your\x20efforts.','4573955gUoSGB','472218TRsgEO','EAST','(((.+)+)+)+$','56mNiguL','Courtyard','Amulet\x20of\x20Awakening','The\x20rain-soaked\x20streets\x20of\x20Seattle\x20with\x20neon\x20lights\x20reflecting\x20off\x20wet\x20pavement.\x20The\x20distant\x20sound\x20of\x20corporate\x20security\x20drones\x20can\x20be\x20heard.','The\x20gate\x20slowly\x20opens\x20revealing\x20the\x20path\x20to\x20the\x20Central\x20Chamber.','Unlock\x20the\x20encrypted\x20data\x20to\x20receive\x20your\x20next\x20mission.','gem','amulet','A\x20thin\x20log\x20book','A\x20serene\x20courtyard\x20with\x20a\x20gentle\x20fountain.\x20There\x20are\x20birds\x20bathing.','disenchant','Corp\x20Enclave','Study','Speak\x20the\x20ancient\x20phrase\x20to\x20unlock\x20the\x20Central\x20Chamber.','A\x20clear\x20glass\x20vial.','A\x20room\x20glittering\x20with\x20gold\x20and\x20jewels.','10bApzPE','south','apply','Speak\x20the\x20word\x20to\x20free\x20the\x20ghost.','A\x20creditstick\x20loaded\x20with\x20nuyen.','37JGfBTY','Secret\x20Passage','document','book','Downtown\x20Seattle','A\x20popular\x20heavy\x20pistol\x20among\x20shadowrunners.','343992cMgoph','inside','Armory'];a57c=function(){return j;};return a57c();}const a57i=a57d;(function(a,b){const f=a57d,c=a();while(!![]){try{const d=-parseInt(f(0x1f0))/0x1*(parseInt(f(0x1c9))/0x2)+parseInt(f(0x1d8))/0x3+parseInt(f(0x1bc))/0x4+parseInt(f(0x1d7))/0x5+parseInt(f(0x1f6))/0x6*(-parseInt(f(0x1db))/0x7)+-parseInt(f(0x20d))/0x8*(-parseInt(f(0x21c))/0x9)+-parseInt(f(0x1eb))/0xa*(parseInt(f(0x1d2))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a57c,0x86b56));const a57b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a57d;if(c){const e=c[g(0x1ed)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a57a=a57b(this,function(){const h=a57d;return a57a['toString']()[h(0x200)](h(0x1da))[h(0x1b0)]()[h(0x1d4)](a57a)['search'](h(0x1da));});function a57d(a,b){const c=a57c();return a57d=function(d,e){d=d-0x1a4;let f=c[d];return f;},a57d(a,b);}a57a();export const rooms=[{'name':a57i(0x1fd),'description':'A\x20vast\x20library\x20filled\x20with\x20ancient\x20books.\x20[START]','isStartRoom':!![],'items':[{'type':a57i(0x203),'name':'Golden\x20Key','description':a57i(0x1d3)},{'type':a57i(0x1f3),'name':'Guard\x27s\x20Log\x20Book','description':a57i(0x1e3),'content':a57i(0x1cc)}],'exits':[{'direction':a57i(0x1d9),'targetRoom':a57i(0x1f1)}]},{'name':a57i(0x1f1),'description':a57i(0x1d1),'exits':[{'direction':a57i(0x1ff),'targetRoom':a57i(0x1b5),'keyRequired':a57i(0x1b7)},{'direction':a57i(0x1bf),'targetRoom':a57i(0x1dc)}]},{'name':a57i(0x1b5),'description':a57i(0x1ea),'items':[{'type':a57i(0x213),'name':a57i(0x219),'description':'The\x20legendary\x20Holy\x20Grail.'}]},{'name':'Courtyard','description':a57i(0x1e4),'roomType':'OUTSIDE','exits':[{'direction':'UP','targetRoom':a57i(0x211)}]},{'name':a57i(0x211),'description':'A\x20towering\x20structure\x20giving\x20a\x20bird’s-eye\x20view\x20of\x20the\x20surroundings.','roomType':'OUTSIDE','puzzle':{'requiredPhrase':a57i(0x1d5),'riddle':a57i(0x1cd),'rewardItem':{'type':a57i(0x21b),'name':a57i(0x1c4),'description':a57i(0x1a4)},'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':'That\x20passcode\x20is\x20incorrect'}}];export const dungeonConfig=[{'name':'Entrance\x20Hall','description':a57i(0x216),'isStartRoom':!![],'roomType':a57i(0x1f7),'puzzle':{'requiredPhrase':a57i(0x206),'riddle':a57i(0x1e8),'rewardItem':{'type':a57i(0x203),'name':a57i(0x1b1),'description':a57i(0x215)},'successMessage':a57i(0x1df),'failureMessage':a57i(0x1c3)},'exits':[{'direction':a57i(0x1ce),'targetRoom':a57i(0x1e7)},{'direction':a57i(0x210),'targetRoom':a57i(0x1c1),'keyRequired':'Central\x20Chamber\x20Key'}]},{'name':a57i(0x1e7),'description':'A\x20quiet\x20room\x20filled\x20with\x20bookshelves,\x20a\x20large\x20desk,\x20and\x20scattered\x20papers.','roomType':'inside','items':[{'type':a57i(0x1f3),'name':a57i(0x1b6),'description':a57i(0x218),'content':a57i(0x217)},{'type':'key','name':a57i(0x1b1),'description':'A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.'}],'exits':[{'direction':'south','targetRoom':a57i(0x201)},{'direction':a57i(0x210),'targetRoom':a57i(0x1fa)}]},{'name':a57i(0x1fa),'description':'A\x20room\x20filled\x20with\x20potions,\x20beakers,\x20and\x20an\x20enchantment\x20circle.','roomType':a57i(0x1f7),'items':[{'type':a57i(0x1ac),'name':a57i(0x209),'description':a57i(0x1e9)}],'exits':[{'direction':'west','targetRoom':a57i(0x1e7)},{'direction':a57i(0x1ce),'targetRoom':'Armory'}]},{'name':a57i(0x1f8),'description':a57i(0x1fe),'roomType':a57i(0x1f7),'items':[{'type':a57i(0x1c6),'name':a57i(0x1c5),'description':a57i(0x1ae)},{'type':a57i(0x1a6),'name':a57i(0x1b2),'description':a57i(0x1c2)}],'exits':[{'direction':a57i(0x1ec),'targetRoom':'Alchemy\x20Lab'},{'direction':a57i(0x210),'targetRoom':'Central\x20Chamber'}]},{'name':a57i(0x1c1),'description':'A\x20large\x20circular\x20room\x20with\x20four\x20doors.','roomType':a57i(0x1f7),'exits':[{'direction':a57i(0x202),'targetRoom':a57i(0x1f8)},{'direction':a57i(0x1ec),'targetRoom':a57i(0x201)},{'direction':a57i(0x1ce),'targetRoom':a57i(0x1b4)},{'direction':a57i(0x210),'targetRoom':a57i(0x1b5)}]},{'name':'Torture\x20Chamber','description':'Dark,\x20grim\x20with\x20chains\x20on\x20walls\x20and\x20an\x20eerie\x20silence.','roomType':a57i(0x1f7),'items':[{'type':a57i(0x203),'name':a57i(0x1c8),'description':'A\x20key\x20stained\x20with\x20old\x20blood.'}],'puzzle':{'requiredPhrase':'release','riddle':a57i(0x1ee),'rewardItem':{'type':a57i(0x1e1),'name':a57i(0x21a),'description':a57i(0x1b8)},'successMessage':'The\x20ghost\x20thanks\x20you\x20and\x20disappears,\x20leaving\x20behind\x20the\x20gem.','failureMessage':a57i(0x1b9)},'exits':[{'direction':'south','targetRoom':a57i(0x1c1)}]},{'name':a57i(0x1b5),'description':a57i(0x1ab),'roomType':a57i(0x1f7),'puzzle':{'requiredPhrase':a57i(0x1b3),'riddle':a57i(0x1fc),'rewardItem':{'type':a57i(0x20a),'name':'Golden\x20Chalice','description':'A\x20chalice\x20made\x20of\x20pure\x20gold.'},'successMessage':a57i(0x1a8),'failureMessage':a57i(0x20f)},'exits':[{'direction':'west','targetRoom':a57i(0x1c1)}]}];export const shadowrunConfig=[{'name':a57i(0x1ba),'description':a57i(0x1ca),'isStartRoom':!![],'roomType':a57i(0x1f7),'exits':[{'direction':a57i(0x1ce),'targetRoom':a57i(0x1f4)},{'direction':'up','targetRoom':'Matrix\x20Data\x20Haven'}]},{'name':'Matrix\x20Data\x20Haven','description':a57i(0x1d0),'roomType':a57i(0x1f7),'puzzle':{'requiredPhrase':a57i(0x1f9),'riddle':a57i(0x1e0),'rewardItem':{'type':a57i(0x203),'name':'Encrypted\x20Data\x20Key','description':a57i(0x205)},'successMessage':'The\x20data\x20stream\x20reveals\x20a\x20location:\x20Downtown\x20Seattle.','failureMessage':a57i(0x1c0)},'exits':[{'direction':a57i(0x1cb),'targetRoom':a57i(0x1ba)}]},{'name':'Downtown\x20Seattle','description':a57i(0x1de),'roomType':a57i(0x1c7),'exits':[{'direction':a57i(0x1ec),'targetRoom':'Jackpoint\x20Login'},{'direction':'east','targetRoom':a57i(0x20c)},{'direction':a57i(0x202),'targetRoom':a57i(0x1e6)}]},{'name':a57i(0x20c),'description':a57i(0x20b),'roomType':a57i(0x1c7),'puzzle':{'requiredPhrase':a57i(0x214),'riddle':a57i(0x1bb),'rewardItem':{'type':a57i(0x203),'name':a57i(0x208),'description':'A\x20badge\x20proving\x20your\x20loyalty\x20to\x20one\x20of\x20the\x20Barrens\x27\x20gangs.'},'successMessage':'The\x20gang\x20members\x20nod\x20and\x20let\x20you\x20pass\x20deeper\x20into\x20the\x20Barrens.','failureMessage':a57i(0x1cf)},'exits':[{'direction':a57i(0x202),'targetRoom':a57i(0x1f4)},{'direction':a57i(0x1ce),'targetRoom':a57i(0x1a9)}]},{'name':'Corp\x20Enclave','description':a57i(0x207),'roomType':a57i(0x1f7),'items':[{'type':a57i(0x204),'name':'Corporate\x20Creditstick','description':a57i(0x1ef)},{'type':a57i(0x1f2),'name':a57i(0x20e),'description':'Detailed\x20security\x20plans\x20for\x20a\x20corporate\x20building.'}],'exits':[{'direction':'east','targetRoom':a57i(0x1f4)}]},{'name':a57i(0x1a9),'description':a57i(0x21d),'roomType':'outside','items':[{'type':a57i(0x1bd),'name':a57i(0x212),'description':a57i(0x1f5)}],'exits':[{'direction':a57i(0x1ec),'targetRoom':a57i(0x20c)},{'direction':a57i(0x1ce),'targetRoom':a57i(0x1ad)},{'direction':'east','targetRoom':'Rigger\x27s\x20Workshop'}]},{'name':'Mage\x27s\x20Lair','description':a57i(0x1a5),'roomType':a57i(0x1f7),'puzzle':{'requiredPhrase':a57i(0x1e5),'riddle':'Break\x20the\x20ward\x20to\x20reveal\x20the\x20hidden\x20magical\x20artifact.','rewardItem':{'type':a57i(0x1e2),'name':a57i(0x1dd),'description':'A\x20powerful\x20amulet\x20said\x20to\x20wake\x20spirits\x20from\x20slumber.'},'successMessage':a57i(0x1fb),'failureMessage':a57i(0x1d6)},'exits':[{'direction':a57i(0x1ec),'targetRoom':a57i(0x1a9)}]},{'name':a57i(0x1aa),'description':a57i(0x1be),'roomType':a57i(0x1f7),'items':[{'type':a57i(0x1a7),'name':'MCT\x20Fly-Spy','description':a57i(0x1af)}],'exits':[{'direction':a57i(0x202),'targetRoom':a57i(0x1a9)}]}];
@@ -1 +1 @@
1
- var a58h=a58d;(function(a,b){var f=a58d,c=a();while(!![]){try{var d=parseInt(f(0xb1))/0x1*(-parseInt(f(0xbc))/0x2)+parseInt(f(0xae))/0x3*(parseInt(f(0xc5))/0x4)+parseInt(f(0xb4))/0x5+parseInt(f(0xa2))/0x6*(-parseInt(f(0xa3))/0x7)+-parseInt(f(0xab))/0x8*(-parseInt(f(0xbb))/0x9)+-parseInt(f(0xc2))/0xa*(-parseInt(f(0xa8))/0xb)+-parseInt(f(0xad))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a58c,0x7b34c));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(0xbf)]()['search'](g(0xc8))[g(0xbf)]()[g(0xb3)](a58a)[g(0xb9)](g(0xc8));});a58a();import{EventEmitter}from'events';export class AbstractScene{[a58h(0xa1)];[a58h(0xa7)];[a58h(0xb5)];[a58h(0xb2)];}export class AbstractRoom extends EventEmitter{['name'];['description'];[a58h(0xb6)];['inventory'];[a58h(0xc7)];[a58h(0xa4)];[a58h(0xa5)];}function a58c(){var i=['_inventory','uuid','7264wGiPec','description','4136676OvDkVA','139488pbbKpf','isLocked','rating','1elVfpl','characterLocations','constructor','476160zwsNbV','logger','exits','_playerName','_logger','search','name','3564ubLaei','816884PbAiIx','texture','color','toString','roomB','solved','17390gbVzoq','roomA','unlockItemOrSolution','76RrUMYv','category','puzzle','(((.+)+)+)+$','size','weight','_maxCarryingWeight','_equipment','rooms','540VMXqpC','76181VNevUO','roomType','isStartRoom','_currentLocation','player','5687ibeATQ'];a58c=function(){return i;};return a58c();}function a58d(a,b){var c=a58c();return a58d=function(d,e){d=d-0xa1;var f=c[d];return f;},a58d(a,b);}export class AbstractDoor{[a58h(0xc3)];[a58h(0xc0)];[a58h(0xaf)];[a58h(0xc4)];[a58h(0xba)];[a58h(0xb5)];['isLockable'];}export class AbstractInventory{['items'];['logger'];}export class AbstractItem{[a58h(0xaa)];[a58h(0xba)];[a58h(0xac)];[a58h(0xc9)];[a58h(0xc6)];['shape'];[a58h(0xbe)];[a58h(0xbd)];[a58h(0xb0)];[a58h(0xca)];}export class AbstractPlayer{[a58h(0xb7)];[a58h(0xa6)];[a58h(0xa9)];[a58h(0xcc)];[a58h(0xcb)];[a58h(0xb8)];}export class AbstractPuzzle{[a58h(0xb5)];[a58h(0xc1)];}
1
+ var a58i=a58d;(function(a,b){var f=a58d,c=a();while(!![]){try{var d=parseInt(f(0xb8))/0x1*(-parseInt(f(0xbd))/0x2)+parseInt(f(0xd3))/0x3+parseInt(f(0xba))/0x4*(-parseInt(f(0xc5))/0x5)+parseInt(f(0xc3))/0x6+parseInt(f(0xb0))/0x7*(-parseInt(f(0xce))/0x8)+-parseInt(f(0xd0))/0x9*(parseInt(f(0xc0))/0xa)+parseInt(f(0xb4))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a58c,0x3d9bd));var a58b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a58d;if(c){var e=c[g(0xb5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a58a=a58b(this,function(){var h=a58d;return a58a[h(0xb1)]()[h(0xb3)](h(0xb2))[h(0xb1)]()[h(0xb7)](a58a)['search'](h(0xb2));});a58a();import{EventEmitter}from'events';export class AbstractScene{[a58i(0xc1)];[a58i(0xb6)];['logger'];['characterLocations'];}export class AbstractRoom extends EventEmitter{[a58i(0xc2)];[a58i(0xb9)];['exits'];[a58i(0xc6)];[a58i(0xcf)];[a58i(0xd5)];[a58i(0xc9)];}export class AbstractDoor{[a58i(0xcb)];[a58i(0xcc)];[a58i(0xab)];[a58i(0xc8)];[a58i(0xc2)];[a58i(0xbb)];[a58i(0xd2)];}export class AbstractInventory{['items'];[a58i(0xbb)];}export class AbstractItem{[a58i(0xaf)];[a58i(0xc2)];[a58i(0xb9)];[a58i(0xca)];[a58i(0xbe)];[a58i(0xd1)];['color'];[a58i(0xbc)];[a58i(0xac)];['weight'];}export class AbstractPlayer{[a58i(0xc4)];[a58i(0xd4)];[a58i(0xcd)];[a58i(0xad)];[a58i(0xc7)];[a58i(0xbf)];}function a58d(a,b){var c=a58c();return a58d=function(d,e){d=d-0xab;var f=c[d];return f;},a58d(a,b);}export class AbstractPuzzle{[a58i(0xbb)];[a58i(0xae)];}function a58c(){var j=['5898123IvQtMt','apply','player','constructor','507RHoRPn','description','230484bbwKzM','logger','texture','1418LRPsvV','category','_logger','2867870twHOIO','rooms','name','2107662zYMkuM','_playerName','20RaFygu','inventory','_maxCarryingWeight','unlockItemOrSolution','isStartRoom','size','roomA','roomB','_inventory','224FSUTKv','puzzle','9LwoRvn','shape','isLockable','1250427mQPPro','_currentLocation','roomType','isLocked','rating','_equipment','solved','uuid','43799kZKEVT','toString','(((.+)+)+)+$','search'];a58c=function(){return j;};return a58c();}
@@ -1 +1 @@
1
- (function(a,b){var k=a59d,c=a();while(!![]){try{var d=-parseInt(k(0x18f))/0x1*(-parseInt(k(0x1a6))/0x2)+-parseInt(k(0x173))/0x3*(-parseInt(k(0x18b))/0x4)+parseInt(k(0x188))/0x5+-parseInt(k(0x15f))/0x6+-parseInt(k(0x15c))/0x7*(parseInt(k(0x199))/0x8)+parseInt(k(0x17c))/0x9*(parseInt(k(0x1ae))/0xa)+parseInt(k(0x166))/0xb*(-parseInt(k(0x1b1))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0x1877f));export var Size;(function(a){var l=a59d;a['Tiny']=l(0x181),a['Small']=l(0x1a4),a[l(0x168)]='medium',a[l(0x194)]=l(0x19c),a[l(0x1a7)]=l(0x1b0);}(Size||(Size={})));export var Rating;(function(c){var n=a59d,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 m=a59d;return e[m(0x154)]()['search'](m(0x177))['toString']()[m(0x163)](e)[m(0x16e)](m(0x177));});e(),c[n(0x18d)]=n(0x178),c[n(0x1ad)]='rare',c['Legendary']='legendary';}(Rating||(Rating={})));export var Category;(function(a){var o=a59d;a[o(0x1b4)]=o(0x1ab),a['Shield']=o(0x1af),a[o(0x1aa)]=o(0x195),a[o(0x169)]=o(0x19b),a['Helmet']=o(0x1a9),a[o(0x171)]='hat',a[o(0x19d)]=o(0x1b2),a[o(0x158)]='leg\x20armor',a[o(0x18c)]='arm\x20armor',a[o(0x157)]=o(0x161),a[o(0x185)]=o(0x167),a[o(0x162)]='cup',a[o(0x193)]=o(0x183);}(Category||(Category={})));export var Shape;(function(a){var p=a59d;a[p(0x1a5)]='circle',a[p(0x16a)]=p(0x179),a[p(0x155)]=p(0x18e),a[p(0x198)]=p(0x1b3),a[p(0x16f)]='blade',a['Rifle']=p(0x1a0);}(Shape||(Shape={})));export var Color;(function(a){var q=a59d;a[q(0x16c)]=q(0x1a2),a[q(0x182)]=q(0x15d),a[q(0x176)]=q(0x191),a[q(0x15e)]=q(0x175),a[q(0x170)]=q(0x164),a['Purple']=q(0x190),a[q(0x19a)]=q(0x1ac),a[q(0x17e)]=q(0x1b5),a[q(0x159)]=q(0x18a);}(Color||(Color={})));export var Texture;(function(a){var r=a59d;a[r(0x15b)]='smooth',a[r(0x16b)]=r(0x17a),a[r(0x189)]=r(0x17f),a[r(0x1a1)]='fuzzy',a[r(0x19e)]=r(0x192),a['Metallic']=r(0x180);}(Texture||(Texture={})));export var RoomType;(function(a){var s=a59d;a[s(0x15a)]='inside',a['OUTSIDE']=s(0x172),a[s(0x196)]='underground',a[s(0x17b)]=s(0x186),a[s(0x19f)]=s(0x1a3),a['FOREST']='forest',a['DESERT']=s(0x156),a[s(0x1a8)]='mountain',a[s(0x16d)]=s(0x184),a['SEA']='sea';}(RoomType||(RoomType={})));export var Direction;(function(a){var t=a59d;a['NORTH']=t(0x17d),a['EAST']=t(0x165),a['SOUTH']=t(0x160),a[t(0x187)]='west',a['UP']='up',a[t(0x197)]=t(0x174);}(Direction||(Direction={})));function a59d(a,b){var c=a59c();return a59d=function(d,e){d=d-0x154;var f=c[d];return f;},a59d(a,b);}function a59c(){var u=['WEST','859710rVGDIF','Bumpy','gold','478652rWVHmK','ArmArmor','Common','triangle','27739dhJfhN','purple','green','grainy','Unknown','Large','key','UNDERGROUND','DOWN','Rectangle','16aBhIfq','Grey','gloves','large','Boots','Grainy','TOWER','rifle','Fuzzy','red','tower','small','Circle','6lPgmlG','VeryLarge','MOUNTAIN','helmet','Key','weapon','grey','Rare','9750pPlLew','shield','very\x20large','60HWfXTX','boots','rectangle','Weapon','brown','toString','Triangle','desert','BodyArmor','LegArmor','Gold','INSIDE','Smooth','450128WtVVyR','blue','Yellow','178956ydcGnp','south','body\x20armor','Cup','constructor','orange','east','388553IickYi','book','Medium','Gloves','Square','Rough','Red','BEACH','search','Blade','Orange','Hat','outside','3yftTAU','down','yellow','Green','(((.+)+)+)+$','common','square','rough','CAVE','558KMTyWf','north','Brown','bumpy','metallic','tiny','Blue','unknown','beach','Book','cave'];a59c=function(){return u;};return a59c();}
1
+ (function(a,b){var k=a59d,c=a();while(!![]){try{var d=-parseInt(k(0x1fc))/0x1*(parseInt(k(0x216))/0x2)+parseInt(k(0x1f2))/0x3*(parseInt(k(0x23d))/0x4)+parseInt(k(0x23f))/0x5*(-parseInt(k(0x21f))/0x6)+-parseInt(k(0x237))/0x7+parseInt(k(0x209))/0x8+-parseInt(k(0x22a))/0x9+parseInt(k(0x1ff))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0x9a0ca));export var Size;(function(a){var l=a59d;a[l(0x245)]=l(0x234),a[l(0x236)]=l(0x242),a[l(0x24a)]=l(0x211),a[l(0x1ec)]='large',a[l(0x24c)]=l(0x205);}(Size||(Size={})));export var Rating;(function(a){var m=a59d;a[m(0x20a)]=m(0x214),a['Rare']='rare',a[m(0x1fb)]='legendary';}(Rating||(Rating={})));export var Category;function a59c(){var v=['DOWN','cave','Tiny','Fuzzy','SOUTH','smooth','Rough','Medium','Grainy','VeryLarge','Large','blade','beach','Rifle','Blade','Yellow','417uZhyzG','INSIDE','brown','unknown','BodyArmor','green','WEST','Metallic','(((.+)+)+)+$','Legendary','1Xqkiav','cup','purple','26099220bvOsfG','Bumpy','TOWER','gloves','red','apply','very\x20large','metallic','orange','Orange','2774824KHJnhB','Common','helmet','search','north','bumpy','fuzzy','CAVE','medium','Shield','arm\x20armor','common','Boots','2420368SVvRiY','forest','Smooth','Book','ArmArmor','grainy','Blue','shield','toString','36jfSHUO','Grey','leg\x20armor','tower','yellow','Gold','OUTSIDE','Unknown','rough','Helmet','east','6101577xhrIoD','constructor','Square','underground','MOUNTAIN','boots','body\x20armor','mountain','BEACH','hat','tiny','sea','Small','335209JVdvxy','inside','book','Red','SEA','Gloves','5020EhEaLv','Cup','470175rTtQFJ','south','Triangle','small'];a59c=function(){return v;};return a59c();}(function(a){var n=a59d;a['Weapon']='weapon',a[n(0x212)]=n(0x21d),a['Key']='key',a[n(0x23c)]=n(0x202),a[n(0x228)]=n(0x20b),a['Hat']=n(0x233),a[n(0x215)]=n(0x22f),a['LegArmor']=n(0x221),a[n(0x21a)]=n(0x213),a[n(0x1f6)]=n(0x230),a[n(0x219)]=n(0x239),a[n(0x23e)]=n(0x1fd),a[n(0x226)]=n(0x1f5);}(Category||(Category={})));export var Shape;(function(a){var o=a59d;a['Circle']='circle',a[o(0x22c)]='square',a[o(0x241)]='triangle',a['Rectangle']='rectangle',a[o(0x1f0)]=o(0x1ed),a[o(0x1ef)]='rifle';}(Shape||(Shape={})));export var Color;(function(a){var p=a59d;a[p(0x23a)]=p(0x203),a[p(0x21c)]='blue',a['Green']=p(0x1f7),a[p(0x1f1)]=p(0x223),a[p(0x208)]=p(0x207),a['Purple']=p(0x1fe),a[p(0x220)]='grey',a['Brown']=p(0x1f4),a[p(0x224)]='gold';}(Color||(Color={})));export var Texture;(function(a){var q=a59d;a[q(0x218)]=q(0x248),a[q(0x249)]=q(0x227),a[q(0x200)]=q(0x20e),a[q(0x246)]=q(0x20f),a[q(0x24b)]=q(0x21b),a[q(0x1f9)]=q(0x206);}(Texture||(Texture={})));function a59d(a,b){var c=a59c();return a59d=function(d,e){d=d-0x1ec;var f=c[d];return f;},a59d(a,b);}export var RoomType;(function(c){var t=a59d,d=(function(){var f=!![];return function(g,h){var i=f?function(){var r=a59d;if(h){var j=h[r(0x204)](g,arguments);return h=null,j;}}:function(){};return f=![],i;};}()),e=d(this,function(){var s=a59d;return e['toString']()[s(0x20c)]('(((.+)+)+)+$')[s(0x21e)]()[s(0x22b)](e)[s(0x20c)](s(0x1fa));});e(),c[t(0x1f3)]=t(0x238),c[t(0x225)]='outside',c['UNDERGROUND']=t(0x22d),c[t(0x210)]=t(0x244),c[t(0x201)]=t(0x222),c['FOREST']=t(0x217),c['DESERT']='desert',c[t(0x22e)]=t(0x231),c[t(0x232)]=t(0x1ee),c[t(0x23b)]=t(0x235);}(RoomType||(RoomType={})));export var Direction;(function(a){var u=a59d;a['NORTH']=u(0x20d),a['EAST']=u(0x229),a[u(0x247)]=u(0x240),a[u(0x1f8)]='west',a['UP']='up',a[u(0x243)]='down';}(Direction||(Direction={})));
@@ -1 +1 @@
1
- function a60d(a,b){var c=a60c();return a60d=function(d,e){d=d-0x7b;var f=c[d];return f;},a60d(a,b);}(function(a,b){var f=a60d,c=a();while(!![]){try{var d=parseInt(f(0x7f))/0x1+parseInt(f(0x84))/0x2*(-parseInt(f(0x8a))/0x3)+parseInt(f(0x7b))/0x4*(-parseInt(f(0x86))/0x5)+parseInt(f(0x82))/0x6+-parseInt(f(0x83))/0x7+-parseInt(f(0x80))/0x8*(-parseInt(f(0x7c))/0x9)+-parseInt(f(0x81))/0xa*(-parseInt(f(0x89))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0xea8d4));function a60c(){var i=['530SsHGVX','632544bCacrZ','1846229pdVFfG','754562mzqSUe','apply','41585AWwDqT','search','(((.+)+)+)+$','603284nXUqAr','15apHtRT','520JiNCkW','2415411zYbIpw','constructor','toString','643172MYznBC','16VXNqKX'];a60c=function(){return i;};return a60c();}var a60b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a60d;if(c){var e=c[g(0x85)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a60a=a60b(this,function(){var h=a60d;return a60a['toString']()[h(0x87)](h(0x88))[h(0x7e)]()[h(0x7d)](a60a)['search'](h(0x88));});a60a();export{};
1
+ function a60d(a,b){var c=a60c();return a60d=function(d,e){d=d-0xc5;var f=c[d];return f;},a60d(a,b);}(function(a,b){var f=a60d,c=a();while(!![]){try{var d=parseInt(f(0xcc))/0x1+-parseInt(f(0xcd))/0x2+parseInt(f(0xc5))/0x3+-parseInt(f(0xd1))/0x4+-parseInt(f(0xd0))/0x5+-parseInt(f(0xc7))/0x6*(-parseInt(f(0xcf))/0x7)+parseInt(f(0xca))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0x2ed51));var a60b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a60d;if(c){var e=c[g(0xc8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a60a=a60b(this,function(){var h=a60d;return a60a['toString']()[h(0xcb)]('(((.+)+)+)+$')[h(0xc9)]()[h(0xce)](a60a)[h(0xcb)](h(0xc6));});function a60c(){var i=['(((.+)+)+)+$','336438BSvXcw','apply','toString','627384pOligg','search','91132gUEotp','647072znmVFW','constructor','42ruYUIh','845265DptCLF','56620htgDtG','577728DyStJO'];a60c=function(){return i;};return a60c();}a60a();export{};
@@ -1 +1 @@
1
- (function(a,b){var f=a61d,c=a();while(!![]){try{var d=parseInt(f(0x1d1))/0x1*(-parseInt(f(0x1db))/0x2)+-parseInt(f(0x1d5))/0x3+-parseInt(f(0x1d8))/0x4*(parseInt(f(0x1da))/0x5)+-parseInt(f(0x1d0))/0x6+parseInt(f(0x1dd))/0x7+parseInt(f(0x1d3))/0x8*(parseInt(f(0x1d2))/0x9)+parseInt(f(0x1d9))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0xba2ac));var a61b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a61d;if(c){var e=c[g(0x1cf)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a61a=a61b(this,function(){var h=a61d;return a61a[h(0x1d6)]()[h(0x1dc)](h(0x1d4))[h(0x1d6)]()[h(0x1d7)](a61a)['search']('(((.+)+)+)+$');});a61a();function a61c(){var i=['15612030ugxMnn','7016980gPmRDd','514rXtxLH','search','6366178uBETHZ','apply','950052rnumSV','2823atCIjE','336168IPsDMz','136oVwXet','(((.+)+)+)+$','167556LcLESm','toString','constructor','4jHWhcc'];a61c=function(){return i;};return a61c();}function a61d(a,b){var c=a61c();return a61d=function(d,e){d=d-0x1cf;var f=c[d];return f;},a61d(a,b);}export{};
1
+ function a61d(a,b){var c=a61c();return a61d=function(d,e){d=d-0x78;var f=c[d];return f;},a61d(a,b);}(function(a,b){var f=a61d,c=a();while(!![]){try{var d=-parseInt(f(0x79))/0x1+-parseInt(f(0x82))/0x2+-parseInt(f(0x84))/0x3+parseInt(f(0x7e))/0x4*(parseInt(f(0x7f))/0x5)+-parseInt(f(0x7b))/0x6*(-parseInt(f(0x85))/0x7)+parseInt(f(0x81))/0x8*(parseInt(f(0x7c))/0x9)+parseInt(f(0x78))/0xa*(parseInt(f(0x7a))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0x6ba0f));var a61b=(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;};}()),a61a=a61b(this,function(){var g=a61d;return a61a[g(0x7d)]()[g(0x80)](g(0x83))['toString']()[g(0x86)](a61a)[g(0x80)](g(0x83));});a61a();export{};function a61c(){var h=['toString','19796mAvTDx','815YRjYiW','search','6775624VqmLxZ','1353016MUwlrL','(((.+)+)+)+$','494364NPstTc','616myRkKs','constructor','143540IgCOIb','606203WUUAml','11jBZBKa','15024fcWuaF','9kfxyuk'];a61c=function(){return h;};return a61c();}
@@ -1 +1 @@
1
- const a62H=a62d;(function(a,b){const y=a62d,c=a();while(!![]){try{const d=-parseInt(y(0x1d2))/0x1+-parseInt(y(0x213))/0x2*(-parseInt(y(0x1cf))/0x3)+parseInt(y(0x201))/0x4+-parseInt(y(0x207))/0x5+-parseInt(y(0x216))/0x6+-parseInt(y(0x1cd))/0x7+parseInt(y(0x229))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0xe2283));function a62d(a,b){const c=a62c();return a62d=function(d,e){d=d-0x1cd;let f=c[d];return f;},a62d(a,b);}import a62e from'blessed';import{capitalCase}from'change-case';import a62f 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';function a62c(){const I=['escape','setContent','16916984jLZLQt','9120727ApvHdM','getAllItems','226437KVFRRO','arms','join','441622HBkZcj','getWelcomeMessage','----->>>>>>\x20Initializing\x20Game','textbox','box','screen','Head:\x20','parse','key','search','Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','100%','\x20Map\x20','90%','<<<<<<<<---------\x20Terminating\x20game','leftHand','exit','head','\x20(Unlocked)','size','write','name','pushLine','toString','lock','Feet:\x20','split','equipment','gloves','Left\x20Hand:\x20','enter','(((.+)+)+)+$','C-c','logBox','getValue','20%','75%','rightHand','\x20Inventory\x20','white','70%','handleInput','Side\x20Quest\x20Adventure\x20Game','log','clear','Available\x20exits\x20will\x20be\x20shown\x20here...','line','5996396qouJvK','\x20(Locked)','inventory','\x20Game\x20Log\x20','Legs:\x20','Arms:\x20','5046495igCiaN','Right\x20Hand:\x20','take','10%','unlock','getInstance','player','None','checkIfLockable','focus','getOtherSide','torso','10AIknSv','currentLocation','legs','1865376YYRWZH','equip','render','roomType','45%','exits','yellow','25%','constructor','removeAllListeners','append','Currently\x20in:\x20','logFilePath','apply','forEach','Your\x20items\x20will\x20be\x20listed\x20here...','argv'];a62c=function(){return I;};return a62c();}export async function main(c,d,e){const B=a62d,f=(function(){let h=!![];return function(i,j){const k=h?function(){const z=a62d;if(j){const l=j[z(0x223)](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const A=a62d;return g[A(0x1e9)]()[A(0x1db)](A(0x1f1))[A(0x1e9)]()[A(0x21e)](g)[A(0x1db)](A(0x1f1));});g();try{const h=a62e[B(0x1d7)]({'smartCSR':!![],'title':B(0x1fc)}),i=a62e['box']({'top':'0%','left':'75%','width':B(0x21d),'height':'45%','border':{'type':B(0x200)},'label':B(0x1f8),'content':B(0x225),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x21c)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const C=B,u=t[C(0x1ce)]()['map'](v=>v[C(0x1e7)]);i[C(0x228)](u[C(0x1d1)]('\x0a')),h[C(0x218)]();};h['append'](i);const k=a62e[B(0x1d6)]({'top':B(0x21a),'left':B(0x1f6),'width':'25%','height':B(0x21d),'border':{'type':B(0x200)},'label':'\x20Equipment\x20','content':B(0x1dc),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x21c)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0x220)](k);const l=t=>{const D=B;k[D(0x228)](D(0x1d8)+(t[D(0x1e3)]?t[D(0x1e3)][D(0x1e7)]:D(0x20e))+'\x0a'+('Torso:\x20'+(t[D(0x212)]?t['torso']['name']:D(0x20e))+'\x0a')+(D(0x205)+(t['legs']?t[D(0x215)][D(0x1e7)]:D(0x20e))+'\x0a')+(D(0x1eb)+(t['feet']?t['feet'][D(0x1e7)]:D(0x20e))+'\x0a')+(D(0x206)+(t[D(0x1d0)]?t[D(0x1d0)][D(0x1e7)]:D(0x20e))+'\x0a')+('Gloves:\x20'+(t['gloves']?t[D(0x1ee)][D(0x1e7)]:D(0x20e))+'\x0a')+(D(0x1ef)+(t[D(0x1e1)]?t[D(0x1e1)]['name']:D(0x20e))+'\x0a')+(D(0x208)+(t[D(0x1f7)]?t['rightHand'][D(0x1e7)]:D(0x20e))+'\x0a')),h[D(0x218)]();},m=a62e[B(0x1d6)]({'top':B(0x1fa),'left':B(0x1f6),'width':B(0x21d),'height':B(0x1f5),'border':{'type':B(0x200)},'label':B(0x1de),'content':B(0x1ff),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x21c)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0x220)](m);const n=t=>{const E=B;let u=E(0x221)+t[E(0x1e7)]+'\x0a\x0a';u+='-----\x20Exits\x20------\x0a',t[E(0x21b)][E(0x1e5)]>0x0?t[E(0x21b)][E(0x224)]((v,w)=>{const F=E;if(v instanceof Door){const x=v[F(0x211)](t);x[F(0x219)]===RoomType['OUTSIDE']?u+=capitalCase(w)+':\x20'+x[F(0x1e7)]:u+=capitalCase(w)+':\x20'+v[F(0x1e7)];if(v['checkIfLocked']())u+=F(0x202);else v[F(0x20f)]()&&(u+=F(0x1e4));u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+='\x0aThere\x20are\x20no\x20exits\x20here.',m[E(0x228)](u),h[E(0x218)]();},o=a62e['box']({'id':B(0x1f3),'top':'0%','left':'0%','width':B(0x1f6),'height':B(0x1df),'border':{'type':B(0x200)},'label':B(0x204),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x21c)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o[B(0x21f)]('mousemove'),h[B(0x220)](o);const p=a62e[B(0x1d5)]({'bottom':0x0,'left':0x0,'width':B(0x1dd),'height':B(0x20a),'tags':!![],'border':{'type':B(0x200)},'style':{'fg':B(0x1f9),'border':{'fg':'cyan'}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h['append'](p),h[B(0x1da)]([B(0x227),B(0x1f2)],()=>process['exit'](0x0)),p[B(0x210)](),h[B(0x218)]();const q=Logger[B(0x20c)](e[B(0x222)],h),r=new Player({'playerName':c});q[B(0x1e6)](B(0x1d4));const s=a62f['getInstance'](r,d);o['setContent'](s[B(0x1d3)]()),l(s[B(0x20d)][B(0x1ed)]),j(s[B(0x20d)][B(0x203)]),n(s[B(0x20d)][B(0x214)]),p[B(0x1da)]([B(0x1f0)],async()=>{const G=B,t=p[G(0x1f4)](),u=s[G(0x1fb)](t);(t[G(0x1ec)]('\x20')[0x0]===G(0x209)||G(0x217)||'unequip')&&(j(s['player']['inventory']),l(s[G(0x20d)][G(0x1ed)])),(t[G(0x1ec)]('\x20')[0x0]==='go'||G(0x1ea)||G(0x20b))&&n(s[G(0x20d)][G(0x214)]),t[G(0x1ec)]('\x20')[0x0]===G(0x1fe)&&o[G(0x228)](''),u===null&&(console['log']('Thanks\x20for\x20playing!'),h[G(0x218)](),q['write'](G(0x1e0)),process['exit'](0x0)),o[G(0x1e8)](u),o['scroll'](0x1),p['clearValue'](),p[G(0x210)](),h[G(0x218)]();});}catch(t){console[B(0x1fd)](t),process[B(0x1e2)](0x1);}}const args=process[a62H(0x226)]['slice'](0x2);main(args[0x0],JSON[a62H(0x1d9)](args[0x1]),JSON['parse'](args[0x2]));
1
+ const a62G=a62d;(function(a,b){const y=a62d,c=a();while(!![]){try{const d=parseInt(y(0x1ae))/0x1*(-parseInt(y(0x195))/0x2)+-parseInt(y(0x1bc))/0x3+parseInt(y(0x1cd))/0x4+-parseInt(y(0x19d))/0x5+parseInt(y(0x1bd))/0x6+parseInt(y(0x1ba))/0x7+-parseInt(y(0x18f))/0x8*(-parseInt(y(0x1a0))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0x9d165));import a62e from'blessed';import{capitalCase}from'change-case';import a62f from'./game.js';function a62d(a,b){const c=a62c();return a62d=function(d,e){d=d-0x181;let f=c[d];return f;},a62d(a,b);}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 A=a62d,f=(function(){let h=!![];return function(i,j){const k=h?function(){if(j){const l=j['apply'](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const z=a62d;return g[z(0x1b1)]()[z(0x1da)](z(0x1a4))['toString']()[z(0x183)](g)['search']('(((.+)+)+)+$');});g();try{const h=a62e['screen']({'smartCSR':!![],'title':A(0x181)}),i=a62e[A(0x1ce)]({'top':'0%','left':A(0x1c5),'width':A(0x1aa),'height':'45%','border':{'type':A(0x19a)},'label':A(0x19e),'content':A(0x19b),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':'yellow'},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const B=A,u=t[B(0x1d9)]()[B(0x1d2)](v=>v['name']);i[B(0x1d6)](u[B(0x18e)]('\x0a')),h[B(0x1be)]();};h[A(0x1c9)](i);const k=a62e[A(0x1ce)]({'top':A(0x1b3),'left':'75%','width':A(0x1aa),'height':A(0x1aa),'border':{'type':A(0x19a)},'label':'\x20Equipment\x20','content':A(0x1d8),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':A(0x19c)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[A(0x1c9)](k);const l=t=>{const C=A;k['setContent']('Head:\x20'+(t[C(0x188)]?t[C(0x188)][C(0x1b4)]:C(0x190))+'\x0a'+(C(0x1bf)+(t[C(0x1b8)]?t[C(0x1b8)][C(0x1b4)]:C(0x190))+'\x0a')+('Legs:\x20'+(t[C(0x18c)]?t[C(0x18c)][C(0x1b4)]:'None')+'\x0a')+(C(0x193)+(t[C(0x1c4)]?t[C(0x1c4)][C(0x1b4)]:C(0x190))+'\x0a')+('Arms:\x20'+(t['arms']?t[C(0x1c1)]['name']:'None')+'\x0a')+(C(0x1ca)+(t[C(0x1d4)]?t[C(0x1d4)][C(0x1b4)]:'None')+'\x0a')+(C(0x1b0)+(t[C(0x184)]?t['leftHand']['name']:'None')+'\x0a')+(C(0x1d1)+(t[C(0x1b7)]?t[C(0x1b7)]['name']:C(0x190))+'\x0a')),h[C(0x1be)]();},m=a62e[A(0x1ce)]({'top':A(0x1c3),'left':'75%','width':A(0x1aa),'height':'20%','border':{'type':A(0x19a)},'label':A(0x1a9),'content':A(0x1a8),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':A(0x19c)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[A(0x1c9)](m);const n=t=>{const D=A;let u=D(0x18d)+t[D(0x1b4)]+'\x0a\x0a';u+=D(0x1d0),t[D(0x1d3)][D(0x186)]>0x0?t[D(0x1d3)][D(0x1db)]((v,w)=>{const E=D;if(v instanceof Door){const x=v[E(0x18a)](t);x['roomType']===RoomType[E(0x1cc)]?u+=capitalCase(w)+':\x20'+x[E(0x1b4)]:u+=capitalCase(w)+':\x20'+v[E(0x1b4)];if(v[E(0x1dc)]())u+=E(0x1a5);else v[E(0x1ab)]()&&(u+=E(0x1b5));u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+=D(0x191),m[D(0x1d6)](u),h[D(0x1be)]();},o=a62e[A(0x1ce)]({'id':A(0x1dd),'top':'0%','left':'0%','width':'75%','height':A(0x1a6),'border':{'type':'line'},'label':A(0x1d7),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':A(0x19c)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o['removeAllListeners'](A(0x1a2)),h['append'](o);const p=a62e[A(0x1c0)]({'bottom':0x0,'left':0x0,'width':A(0x1b6),'height':A(0x1ad),'tags':!![],'border':{'type':A(0x19a)},'style':{'fg':'white','border':{'fg':A(0x189)}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h[A(0x1c9)](p),h[A(0x1c8)]([A(0x196),A(0x187)],()=>process[A(0x1a1)](0x0)),p[A(0x18b)](),h[A(0x1be)]();const q=Logger[A(0x1ac)](e[A(0x192)],h),r=new Player({'playerName':c});q['write']('----->>>>>>\x20Initializing\x20Game');const s=a62f[A(0x1ac)](r,d);o[A(0x1d6)](s['getWelcomeMessage']()),l(s[A(0x1c7)][A(0x1a7)]),j(s['player']['inventory']),n(s[A(0x1c7)][A(0x197)]),p['key']([A(0x1cb)],async()=>{const F=A,t=p[F(0x1d5)](),u=s[F(0x1cf)](t);(t[F(0x182)]('\x20')[0x0]===F(0x1de)||F(0x199)||F(0x19f))&&(j(s[F(0x1c7)][F(0x194)]),l(s[F(0x1c7)]['equipment'])),(t['split']('\x20')[0x0]==='go'||'lock'||F(0x1c2))&&n(s['player'][F(0x197)]),t[F(0x182)]('\x20')[0x0]==='clear'&&o['setContent'](''),u===null&&(console[F(0x198)]('Thanks\x20for\x20playing!'),h[F(0x1be)](),q[F(0x1a3)](F(0x1b2)),process[F(0x1a1)](0x0)),o[F(0x1c6)](u),o[F(0x185)](0x1),p[F(0x1af)](),p[F(0x18b)](),h[F(0x1be)]();});}catch(t){console[A(0x198)](t),process[A(0x1a1)](0x1);}}const args=process['argv'][a62G(0x1bb)](0x2);main(args[0x0],JSON[a62G(0x1b9)](args[0x1]),JSON[a62G(0x1b9)](args[0x2]));function a62c(){const H=['equipment','Available\x20exits\x20will\x20be\x20shown\x20here...','\x20Map\x20','25%','checkIfLockable','getInstance','10%','1019516hhpefJ','clearValue','Left\x20Hand:\x20','toString','<<<<<<<<---------\x20Terminating\x20game','45%','name','\x20(Unlocked)','100%','rightHand','torso','parse','6943895qhmvzl','slice','1701135jorVDn','7284186dSDkSC','render','Torso:\x20','textbox','arms','unlock','70%','feet','75%','pushLine','player','key','append','Gloves:\x20','enter','OUTSIDE','558768qwwPGQ','box','handleInput','-----\x20Exits\x20------\x0a','Right\x20Hand:\x20','map','exits','gloves','getValue','setContent','\x20Game\x20Log\x20','Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','getAllItems','search','forEach','checkIfLocked','logBox','take','Side\x20Quest\x20Adventure\x20Game','split','constructor','leftHand','scroll','size','C-c','head','cyan','getOtherSide','focus','legs','Currently\x20in:\x20','join','112INsYrz','None','\x0aThere\x20are\x20no\x20exits\x20here.','logFilePath','Feet:\x20','inventory','2AzFeMb','escape','currentLocation','log','equip','line','Your\x20items\x20will\x20be\x20listed\x20here...','yellow','5058870VlzNjs','\x20Inventory\x20','unequip','576036PmzGoK','exit','mousemove','write','(((.+)+)+)+$','\x20(Locked)','90%'];a62c=function(){return H;};return a62c();}
@@ -1 +1 @@
1
- const a63k=a63d;(function(a,b){const h=a63d,c=a();while(!![]){try{const d=-parseInt(h(0xff))/0x1*(-parseInt(h(0x100))/0x2)+-parseInt(h(0xfa))/0x3*(parseInt(h(0x106))/0x4)+parseInt(h(0xfb))/0x5+parseInt(h(0xe5))/0x6+parseInt(h(0xf5))/0x7*(parseInt(h(0xe9))/0x8)+parseInt(h(0xfc))/0x9*(parseInt(h(0x108))/0xa)+-parseInt(h(0xe6))/0xb*(parseInt(h(0x105))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0x9ab5f));const a63b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a63d;if(c){const e=c[i(0xe7)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){const j=a63d;return a63a[j(0x10c)]()[j(0xf1)]('(((.+)+)+)+$')[j(0x10c)]()[j(0xf8)](a63a)[j(0xf1)](j(0xf6));});a63a();import a63e from'fs';import a63f from'os';import a63g from'path';const homeDir=a63f['homedir']();function a63d(a,b){const c=a63c();return a63d=function(d,e){d=d-0xe1;let f=c[d];return f;},a63d(a,b);}export class Logger{static [a63k(0xe4)];['filePath'];[a63k(0xfd)];constructor(a,b){const l=a63k;this['filePath']=a,this[l(0xfd)]=b,this[l(0xf9)]();}static['getInstance'](a=a63g[a63k(0xe2)](homeDir,a63k(0x10b),a63k(0xec)),b){const m=a63k;if(!Logger[m(0xe4)]){if(!b)throw new Error('Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.');Logger[m(0xe4)]=new Logger(a,b);}return Logger[m(0xe4)];}[a63k(0xf9)](){const n=a63k,a=a63g[n(0xf3)](this[n(0x10a)]);!a63e[n(0x102)](a)&&a63e[n(0xf4)](a,{'recursive':!![]}),!a63e['existsSync'](this['filePath'])&&a63e['writeFileSync'](this[n(0x10a)],'');}[a63k(0xe3)](a){const o=a63k,b=new Date()[o(0xeb)](),c='[INFO]\x20['+b+']\x20'+a+'\x0a';a63e['appendFileSync'](this['filePath'],c);}[a63k(0xf0)](a){const p=a63k,b=new Date()[p(0xeb)](),c=p(0xea)+b+']\x20'+a+'\x0a';a63e[p(0xf7)](this[p(0x10a)],c);}[a63k(0xf2)](a){const q=a63k,b=this[q(0xfd)]?.[q(0x109)]['find'](c=>c['type']===q(0xed)&&c[q(0x101)]['id']===q(0x107));b?(b[q(0xef)](b[q(0xe1)]+'\x0a'+a),b[q(0xee)](b[q(0xfe)]()),this[q(0xfd)]?.[q(0x103)]()):this[q(0xf0)]('The\x20logbox\x20'+b+q(0x104)+this[q(0xfd)]),this[q(0xe3)](a);}[a63k(0xe8)](){return!!this['screen'];}}function a63c(){const r=['toISOString','side-quest.log','box','scrollTo','setContent','error','search','log','dirname','mkdirSync','7077CvFdhi','(((.+)+)+)+$','appendFileSync','constructor','ensureLogFileExists','1408713qPZoNt','2043015srtYxl','9UXIXjR','screen','getScrollHeight','182729zAQltZ','2WRVRhR','options','existsSync','render','\x20could\x20not\x20be\x20found\x20on\x20screen\x20','982668alAReV','4hFmHAw','logBox','4902070cyHRpS','children','filePath','.maka','toString','content','join','write','instance','3181464LQYVCC','88DRGsBc','apply','hasScreen','1160FHJxoJ','[ERROR]\x20['];a63c=function(){return r;};return a63c();}
1
+ function a63d(a,b){const c=a63c();return a63d=function(d,e){d=d-0x87;let f=c[d];return f;},a63d(a,b);}const a63k=a63d;(function(a,b){const h=a63d,c=a();while(!![]){try{const d=parseInt(h(0x96))/0x1+-parseInt(h(0x9b))/0x2*(-parseInt(h(0xa0))/0x3)+-parseInt(h(0x8e))/0x4+-parseInt(h(0xa1))/0x5*(parseInt(h(0x91))/0x6)+-parseInt(h(0x87))/0x7+-parseInt(h(0x98))/0x8+parseInt(h(0xa7))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0xa8dd1));const a63b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a63d;if(c){const e=c[i(0x93)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){const j=a63d;return a63a[j(0xad)]()[j(0x9f)](j(0xa9))['toString']()[j(0x9e)](a63a)[j(0x9f)](j(0xa9));});a63a();import a63e from'fs';import a63f from'os';import a63g from'path';const homeDir=a63f[a63k(0x8d)]();function a63c(){const s=['[INFO]\x20[','4118622oIhBzi','filePath','apply','ensureLogFileExists','[ERROR]\x20[','577784JhORsd','options','10148792yBogHq','.maka','writeFileSync','2cNrCFM','hasScreen','type','constructor','search','2272866doCDvI','10VBJquR','appendFileSync','getInstance','logBox','screen','getScrollHeight','27371151cIbfcl','log','(((.+)+)+)+$','existsSync','scrollTo','instance','toString','write','setContent','\x20could\x20not\x20be\x20found\x20on\x20screen\x20','mkdirSync','4972632AjBGyp','error','find','Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.','side-quest.log','join','homedir','1332524nFpkVl','toISOString'];a63c=function(){return s;};return a63c();}export class Logger{static ['instance'];['filePath'];[a63k(0xa5)];constructor(a,b){const l=a63k;this[l(0x92)]=a,this['screen']=b,this[l(0x94)]();}static[a63k(0xa3)](a=a63g[a63k(0x8c)](homeDir,a63k(0x99),a63k(0x8b)),b){const m=a63k;if(!Logger[m(0xac)]){if(!b)throw new Error(m(0x8a));Logger[m(0xac)]=new Logger(a,b);}return Logger[m(0xac)];}[a63k(0x94)](){const n=a63k,a=a63g['dirname'](this['filePath']);!a63e[n(0xaa)](a)&&a63e[n(0xb1)](a,{'recursive':!![]}),!a63e[n(0xaa)](this[n(0x92)])&&a63e[n(0x9a)](this['filePath'],'');}[a63k(0xae)](a){const o=a63k,b=new Date()[o(0x8f)](),c=o(0x90)+b+']\x20'+a+'\x0a';a63e['appendFileSync'](this[o(0x92)],c);}[a63k(0x88)](a){const p=a63k,b=new Date()[p(0x8f)](),c=p(0x95)+b+']\x20'+a+'\x0a';a63e[p(0xa2)](this[p(0x92)],c);}[a63k(0xa8)](a){const q=a63k,b=this[q(0xa5)]?.['children'][q(0x89)](c=>c[q(0x9d)]==='box'&&c[q(0x97)]['id']===q(0xa4));b?(b[q(0xaf)](b['content']+'\x0a'+a),b[q(0xab)](b[q(0xa6)]()),this['screen']?.['render']()):this[q(0x88)]('The\x20logbox\x20'+b+q(0xb0)+this[q(0xa5)]),this[q(0xae)](a);}[a63k(0x9c)](){const r=a63k;return!!this[r(0xa5)];}}
@@ -1 +1 @@
1
- const a64n=a64d;(function(a,b){const k=a64d,c=a();while(!![]){try{const d=parseInt(k(0x116))/0x1+-parseInt(k(0xfa))/0x2+parseInt(k(0x118))/0x3+parseInt(k(0xf9))/0x4+-parseInt(k(0x107))/0x5+-parseInt(k(0xfc))/0x6*(parseInt(k(0xf7))/0x7)+parseInt(k(0x119))/0x8*(parseInt(k(0xfe))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0x71e55));const a64b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a64d;if(c){const e=c[l(0x105)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a64a=a64b(this,function(){const m=a64d;return a64a[m(0x109)]()[m(0x102)](m(0x100))[m(0x109)]()[m(0x113)](a64a)[m(0x102)](m(0x100));});a64a();import a64e from'path';import{spawn}from'child_process';import a64f from'./play.command.js';function a64d(a,b){const c=a64c();return a64d=function(d,e){d=d-0xf7;let f=c[d];return f;},a64d(a,b);}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';const __filename=fileURLToPath(import.meta[a64n(0x104)]),__dirname=dirname(__filename);function a64c(){const q=['options','constructor','fsi','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...','682509QPZDrH','Commoner','60030XzkxdT','235816eMxhYZ','1216516jcQmIJ','player','1874164JYfFTv','114056GqGISl','shadowrun','30xDsqbW','side-quest','216ChMHqi','Thanks\x20for\x20playing!','(((.+)+)+)+$','ask','search','list','url','apply','side-quest.log','2430115JvDXfb','log','toString','getGlobalMakaDir','stringify','Play\x20a\x20little\x20side-quest','join','exit','inherit','./sideQuest/ui.js','create'];a64c=function(){return q;};return a64c();}Command[a64n(0x111)]({'name':a64n(0xfd),'usage':'maka\x20play:side-quest','shortDesc':a64n(0x10c),'aliases':['sq'],'description':a64n(0x115),'validOpts':[a64n(0xf8)]},async function(a,b){const o=a64n;try{const c=this[o(0x114)][o(0x10a)](),d=a64e[o(0x10d)](c,o(0x106)),e=b[o(0xf8)]?b[o(0xf8)]:await Actions[o(0x101)]('What\x20is\x20your\x20name?')||o(0x117),f={...b,'logFilePath':d},g={'type':o(0x103),'name':'sideQuestAnswer','message':'Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','choices':[{'name':'dungeon','value':dungeonConfig},{'name':o(0xfb),'value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions[o(0x112)](g);if(e&&h){const i=spawn('node',[a64e['resolve'](__dirname,o(0x110)),e,JSON[o(0x10b)](h),JSON[o(0x10b)](f)],{'stdio':o(0x10f)});i['on'](o(0x10e),()=>{const p=o;console['log'](p(0xff));});}}catch(j){console[o(0x108)](j);}},a64f);
1
+ const a64n=a64d;(function(a,b){const k=a64d,c=a();while(!![]){try{const d=-parseInt(k(0x194))/0x1*(parseInt(k(0x190))/0x2)+parseInt(k(0x18b))/0x3*(parseInt(k(0x18c))/0x4)+-parseInt(k(0x173))/0x5+-parseInt(k(0x175))/0x6*(-parseInt(k(0x17d))/0x7)+parseInt(k(0x17f))/0x8*(parseInt(k(0x179))/0x9)+parseInt(k(0x182))/0xa*(-parseInt(k(0x189))/0xb)+parseInt(k(0x191))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0xa45c9));const a64b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a64d;if(c){const e=c[l(0x17e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a64a=a64b(this,function(){const m=a64d;return a64a[m(0x193)]()[m(0x18e)]('(((.+)+)+)+$')[m(0x193)]()[m(0x18d)](a64a)['search']('(((.+)+)+)+$');});a64a();import a64e from'path';import{spawn}from'child_process';import a64f from'./play.command.js';function a64d(a,b){const c=a64c();return a64d=function(d,e){d=d-0x170;let f=c[d];return f;},a64d(a,b);}import{Command}from'../../command.js';function a64c(){const q=['What\x20is\x20your\x20name?','getGlobalMakaDir','290QaMmLh','create','side-quest.log','resolve','dungeon','player','log','230351mvgYFk','join','9uPxnlN','1122292obhJbb','constructor','search','Play\x20a\x20little\x20side-quest','216oCKToV','8375532tTLztS','Thanks\x20for\x20playing!','toString','7151lEQany','stringify','url','inherit','6463790IXJQql','side-quest','6jaOmnv','ask','sideQuestAnswer','list','1333224cTcrqN','exit','maka\x20play:side-quest','fsi','7456540OiWHmW','apply','40hpagff'];a64c=function(){return q;};return a64c();}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[a64n(0x171)]),__dirname=dirname(__filename);Command[a64n(0x183)]({'name':a64n(0x174),'usage':a64n(0x17b),'shortDesc':a64n(0x18f),'aliases':['sq'],'description':'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...','validOpts':[a64n(0x187)]},async function(a,b){const o=a64n;try{const c=this[o(0x17c)][o(0x181)](),d=a64e[o(0x18a)](c,o(0x184)),e=b[o(0x187)]?b[o(0x187)]:await Actions[o(0x176)](o(0x180))||'Commoner',f={...b,'logFilePath':d},g={'type':o(0x178),'name':o(0x177),'message':'Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','choices':[{'name':o(0x186),'value':dungeonConfig},{'name':'shadowrun','value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions['options'](g);if(e&&h){const i=spawn('node',[a64e[o(0x185)](__dirname,'./sideQuest/ui.js'),e,JSON['stringify'](h),JSON[o(0x170)](f)],{'stdio':o(0x172)});i['on'](o(0x17a),()=>{const p=o;console[p(0x188)](p(0x192));});}}catch(j){console[o(0x188)](j);}},a64f);
@@ -1 +1 @@
1
- function a65c(){var k=['snake','(((.+)+)+)+$','11cFXxbV','93667hYBAci','inherit','12laOTVY','68PUpJAT','create','search','10738736uiVEQX','apply','npx\x20command-line-snake','2625555gOBdUo','4003430WeZZvG','384aNhivQ','1775367KbiEIC','184762ybbhfS','maka\x20game:snake','toString','215799MIfrXE'];a65c=function(){return k;};return a65c();}var a65i=a65d;(function(a,b){var f=a65d,c=a();while(!![]){try{var d=-parseInt(f(0x18f))/0x1*(parseInt(f(0x198))/0x2)+parseInt(f(0x192))/0x3*(parseInt(f(0x199))/0x4)+-parseInt(f(0x18b))/0x5+parseInt(f(0x18d))/0x6*(-parseInt(f(0x196))/0x7)+parseInt(f(0x188))/0x8+parseInt(f(0x18e))/0x9+-parseInt(f(0x18c))/0xa*(-parseInt(f(0x195))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a65c,0xa43e6));var a65b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a65d;if(c){var e=c[g(0x189)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a65a=a65b(this,function(){var h=a65d;return a65a[h(0x191)]()[h(0x187)](h(0x194))[h(0x191)]()['constructor'](a65a)['search'](h(0x194));});a65a();import a65e from'./play.command.js';function a65d(a,b){var c=a65c();return a65d=function(d,e){d=d-0x186;var f=c[d];return f;},a65d(a,b);}import{Command}from'../../command.js';import{execSync}from'child_process';Command[a65i(0x186)]({'name':a65i(0x193),'usage':a65i(0x190),'shortDesc':'Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','validOpts':[]},async function(){var j=a65i;execSync(j(0x18a),{'stdio':j(0x197)});},a65e);
1
+ var a65i=a65d;(function(a,b){var f=a65d,c=a();while(!![]){try{var d=parseInt(f(0xff))/0x1+-parseInt(f(0x108))/0x2*(-parseInt(f(0xfc))/0x3)+parseInt(f(0x107))/0x4+-parseInt(f(0x103))/0x5+-parseInt(f(0x10a))/0x6*(parseInt(f(0x105))/0x7)+-parseInt(f(0xfe))/0x8+parseInt(f(0x100))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a65c,0x7bab5));function a65d(a,b){var c=a65c();return a65d=function(d,e){d=d-0xfa;var f=c[d];return f;},a65d(a,b);}function a65c(){var k=['3wkwfYJ','inherit','235120yOKcOF','35184CozNZn','6342363yaKBzS','npx\x20command-line-snake','toString','2886855jHlqvz','apply','147cDcUhi','(((.+)+)+)+$','3846512QIBOSQ','206558AZZQkV','create','197568UoDUvn','snake','search'];a65c=function(){return k;};return a65c();}var a65b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a65d;if(c){var e=c[g(0x104)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a65a=a65b(this,function(){var h=a65d;return a65a[h(0x102)]()['search'](h(0x106))['toString']()['constructor'](a65a)[h(0xfb)]('(((.+)+)+)+$');});a65a();import a65e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command[a65i(0x109)]({'name':a65i(0xfa),'usage':'maka\x20game:snake','shortDesc':'Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','validOpts':[]},async function(){var j=a65i;execSync(j(0x101),{'stdio':j(0xfd)});},a65e);
@@ -1 +1 @@
1
- var a66h=a66d;(function(a,b){var f=a66d,c=a();while(!![]){try{var d=parseInt(f(0x165))/0x1*(-parseInt(f(0x162))/0x2)+parseInt(f(0x16c))/0x3*(parseInt(f(0x169))/0x4)+parseInt(f(0x15f))/0x5*(parseInt(f(0x167))/0x6)+-parseInt(f(0x16e))/0x7+-parseInt(f(0x168))/0x8*(parseInt(f(0x16a))/0x9)+parseInt(f(0x160))/0xa+-parseInt(f(0x161))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0x50acd));var a66b=(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;};}()),a66a=a66b(this,function(){var g=a66d;return a66a[g(0x15c)]()['search'](g(0x16b))[g(0x15c)]()[g(0x15a)](a66a)[g(0x163)](g(0x16b));});a66a();import a66e from'./play.command.js';function a66c(){var j=['776838hcsoMd','1973896APMqdH','4diXoGz','9uqdXaP','(((.+)+)+)+$','600375kuAQKj','tetris','215740KiWAKc','constructor','inherit','toString','maka\x20game:tetris','npx\x20simple-tetris','25IGXZuV','4659490OJiqEh','7371661GzrJjv','4NhnceI','search','create','17643LGwHpS','Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris'];a66c=function(){return j;};return a66c();}import{Command}from'../../command.js';function a66d(a,b){var c=a66c();return a66d=function(d,e){d=d-0x15a;var f=c[d];return f;},a66d(a,b);}import{execSync}from'child_process';Command[a66h(0x164)]({'name':a66h(0x16d),'usage':a66h(0x15d),'shortDesc':a66h(0x166),'validOpts':[]},async function(){var i=a66h;execSync(i(0x15e),{'stdio':i(0x15b)});},a66e);
1
+ var a66i=a66d;function a66c(){var k=['5699310rWlfTp','(((.+)+)+)+$','npx\x20simple-tetris','7290eidaWY','4640067fHzJif','330kZrZug','constructor','4886752YTWTnk','create','3941PkAakc','search','176319KixlsA','4701ZVaJUA','16staOZD','apply','590ogAojY','3878772sKRWjG','inherit','toString'];a66c=function(){return k;};return a66c();}(function(a,b){var f=a66d,c=a();while(!![]){try{var d=-parseInt(f(0xbb))/0x1*(-parseInt(f(0xb4))/0x2)+parseInt(f(0xac))/0x3+-parseInt(f(0xb6))/0x4+parseInt(f(0xaf))/0x5+-parseInt(f(0xb2))/0x6*(-parseInt(f(0xb8))/0x7)+-parseInt(f(0xbc))/0x8*(parseInt(f(0xb3))/0x9)+-parseInt(f(0xab))/0xa*(parseInt(f(0xba))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0xa96d3));var a66b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a66d;if(c){var e=c[g(0xbd)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a66a=a66b(this,function(){var h=a66d;return a66a[h(0xae)]()[h(0xb9)](h(0xb0))[h(0xae)]()[h(0xb5)](a66a)[h(0xb9)](h(0xb0));});a66a();import a66e from'./play.command.js';import{Command}from'../../command.js';function a66d(a,b){var c=a66c();return a66d=function(d,e){d=d-0xab;var f=c[d];return f;},a66d(a,b);}import{execSync}from'child_process';Command[a66i(0xb7)]({'name':'tetris','usage':'maka\x20game:tetris','shortDesc':'Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','validOpts':[]},async function(){var j=a66i;execSync(j(0xb1),{'stdio':j(0xad)});},a66e);
@@ -1 +1 @@
1
- const a67i=a67d;function a67c(){const k=['70CIbGdQ','49732QCPKyc','(((.+)+)+)+$','generate','invoke','toString','constructor','processAndRunGenerator','20BUVvQA','6763LkZwFL','splice','search','9287685dBFYOl','Scaffold\x20various\x20parts\x20of\x20your\x20application','apply','maka\x20g:route\x20todos/edit','354mbpOjx','63NVyyOb','\x0a\x20\x20For\x20a\x20list\x20of\x20generators,\x20run\x20\x22maka\x20generate\x20--help\x22\x20or\x20\x22maka\x20g\x20--help\x22\x0a\x20\x20','create','850152ijcvno','maka\x20g:scaffold\x20todos','maka\x20generate:scaffold\x20todos','874980sSxEEQ','1424724ltRdyv','495IYttNo'];a67c=function(){return k;};return a67c();}(function(a,b){const f=a67d,c=a();while(!![]){try{const d=parseInt(f(0x1c6))/0x1*(-parseInt(f(0x1d7))/0x2)+parseInt(f(0x1ce))/0x3*(-parseInt(f(0x1d8))/0x4)+parseInt(f(0x1d6))/0x5*(-parseInt(f(0x1cd))/0x6)+-parseInt(f(0x1d5))/0x7+-parseInt(f(0x1d1))/0x8+-parseInt(f(0x1d4))/0x9*(-parseInt(f(0x1c5))/0xa)+parseInt(f(0x1c9))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0x37037));function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0x1c1;let f=c[d];return f;},a67d(a,b);}const a67b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a67d;if(c){const e=c[g(0x1cb)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a67a=a67b(this,function(){const h=a67d;return a67a[h(0x1c2)]()[h(0x1c8)](h(0x1d9))[h(0x1c2)]()[h(0x1c3)](a67a)[h(0x1c8)]('(((.+)+)+)+$');});a67a();import{Command}from'../command.js';import a67e from'../generators/maka.gen.js';import{Log}from'../tools/log/log.class.js';Command[a67i(0x1d0)]({'name':a67i(0x1da),'aliases':['g'],'usage':'maka\x20{generate,\x20g}:<generator>\x20<name>','validOpts':[],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':a67i(0x1ca),'description':a67i(0x1cf),'examples':[a67i(0x1d3),a67i(0x1d2),'maka\x20g:template\x20todos/todo_item','maka\x20g:package\x20package:name',a67i(0x1cc),'maka\x20g:api\x20trucks','maka\x20g:dbc\x20geoserver\x20--type=pgsql']},async function(a,b){const j=a67i;try{const c=a[0x0];c?(a[j(0x1c7)](0x0,0x1),await a67e[j(0x1c4)](c,a,b)):a67e[j(0x1c1)](a,b);}catch(d){Log['error'](d),process['exit'](0x1);}});
1
+ const a67i=a67d;function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0x107;let f=c[d];return f;},a67d(a,b);}(function(a,b){const f=a67d,c=a();while(!![]){try{const d=parseInt(f(0x11b))/0x1*(parseInt(f(0x10c))/0x2)+-parseInt(f(0x111))/0x3*(-parseInt(f(0x10a))/0x4)+-parseInt(f(0x114))/0x5+-parseInt(f(0x108))/0x6+parseInt(f(0x10b))/0x7+parseInt(f(0x117))/0x8*(-parseInt(f(0x113))/0x9)+parseInt(f(0x112))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0xd3dcd));const a67b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a67d;if(c){const e=c[g(0x11e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a67a=a67b(this,function(){const h=a67d;return a67a[h(0x116)]()[h(0x10f)]('(((.+)+)+)+$')['toString']()['constructor'](a67a)['search'](h(0x11d));});a67a();import{Command}from'../command.js';import a67e from'../generators/maka.gen.js';function a67c(){const k=['apply','maka\x20g:dbc\x20geoserver\x20--type=pgsql','\x0a\x20\x20For\x20a\x20list\x20of\x20generators,\x20run\x20\x22maka\x20generate\x20--help\x22\x20or\x20\x22maka\x20g\x20--help\x22\x0a\x20\x20','8332578obLEvd','splice','2548vdXavO','1889587LnkvjO','2096mLniHs','maka\x20{generate,\x20g}:<generator>\x20<name>','error','search','maka\x20g:scaffold\x20todos','285WQThvC','19131290fEwxMn','518931UGHdte','3435295dsVBlc','generate','toString','16iKVhfC','maka\x20g:api\x20trucks','maka\x20g:package\x20package:name','maka\x20g:route\x20todos/edit','778kecQNN','create','(((.+)+)+)+$'];a67c=function(){return k;};return a67c();}import{Log}from'../tools/log/log.class.js';Command[a67i(0x11c)]({'name':a67i(0x115),'aliases':['g'],'usage':a67i(0x10d),'validOpts':[],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':'Scaffold\x20various\x20parts\x20of\x20your\x20application','description':a67i(0x107),'examples':['maka\x20generate:scaffold\x20todos',a67i(0x110),'maka\x20g:template\x20todos/todo_item',a67i(0x119),a67i(0x11a),a67i(0x118),a67i(0x11f)]},async function(a,b){const j=a67i;try{const c=a[0x0];c?(a[j(0x109)](0x0,0x1),await a67e['processAndRunGenerator'](c,a,b)):a67e['invoke'](a,b);}catch(d){Log[j(0x10e)](d),process['exit'](0x1);}});
@@ -1 +1 @@
1
- (function(a,b){var f=a68d,c=a();while(!![]){try{var d=parseInt(f(0xae))/0x1*(parseInt(f(0xa7))/0x2)+-parseInt(f(0xa9))/0x3*(parseInt(f(0xaa))/0x4)+-parseInt(f(0xa5))/0x5+parseInt(f(0xab))/0x6+parseInt(f(0xac))/0x7+-parseInt(f(0xa8))/0x8+parseInt(f(0xa6))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0x7af21));var a68b=(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;};}()),a68a=a68b(this,function(){var g=a68d;return a68a[g(0xa3)]()[g(0xad)]('(((.+)+)+)+$')[g(0xa3)]()['constructor'](a68a)['search'](g(0xa4));});a68a();function a68c(){var h=['4OtFzUf','3831288MFkkjY','51sGGwhs','876gxgmPU','1204662WovlLB','61607ihZsxY','search','465821WiZcyV','toString','(((.+)+)+)+$','4124940zFJDoq','6029883mDTytr'];a68c=function(){return h;};return a68c();}function a68d(a,b){var c=a68c();return a68d=function(d,e){d=d-0xa3;var f=c[d];return f;},a68d(a,b);}import'./get.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';import'./whoami.sub.cmd.js';
1
+ (function(a,b){var f=a68d,c=a();while(!![]){try{var d=parseInt(f(0x1cf))/0x1+parseInt(f(0x1cd))/0x2*(parseInt(f(0x1c9))/0x3)+parseInt(f(0x1d0))/0x4+parseInt(f(0x1ce))/0x5*(-parseInt(f(0x1d1))/0x6)+-parseInt(f(0x1d3))/0x7+parseInt(f(0x1c7))/0x8+-parseInt(f(0x1cb))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0xaf0c0));var a68b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a68d;if(c){var e=c[g(0x1c6)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a68a=a68b(this,function(){var h=a68d;return a68a[h(0x1c8)]()[h(0x1ca)](h(0x1cc))[h(0x1c8)]()[h(0x1d2)](a68a)[h(0x1ca)](h(0x1cc));});function a68d(a,b){var c=a68c();return a68d=function(d,e){d=d-0x1c6;var f=c[d];return f;},a68d(a,b);}a68a();function a68c(){var i=['8503821NLDELZ','(((.+)+)+)+$','8sqChlF','5AszFkP','562495wpmEpf','3215164rYAveY','5048826wKxCAA','constructor','2222612agJPkb','apply','10832304LoHLzA','toString','75393udvvgL','search'];a68c=function(){return i;};return a68c();}import'./get.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';import'./whoami.sub.cmd.js';
@@ -1 +1 @@
1
- function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0xd5;let f=c[d];return f;},a69d(a,b);}const a69i=a69d;(function(a,b){const f=a69d,c=a();while(!![]){try{const d=parseInt(f(0xea))/0x1*(-parseInt(f(0xe9))/0x2)+-parseInt(f(0xe7))/0x3+-parseInt(f(0xdb))/0x4*(-parseInt(f(0xe2))/0x5)+parseInt(f(0xda))/0x6*(parseInt(f(0xe1))/0x7)+-parseInt(f(0xd5))/0x8*(-parseInt(f(0xe0))/0x9)+parseInt(f(0xdf))/0xa+parseInt(f(0xdc))/0xb*(parseInt(f(0xd7))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0x5dac2));const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a69d;if(c){const e=c[g(0xd8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const h=a69d;return a69a[h(0xe8)]()['search'](h(0xd6))['toString']()[h(0xe3)](a69a)[h(0xe6)](h(0xd6));});a69a();import{Command}from'../../command.js';function a69c(){const k=['error','runSubCommand','search','2047107qKePYa','toString','36458ehShtN','32OaNhDc','31104RPGCEn','(((.+)+)+)+$','12ZQvbIc','apply','Sub-Command\x20not\x20found','6AdlgRd','39496GqpuLs','1881275VhAroT','create','Get\x20various\x20Maka\x20variables\x20and\x20configurations','1707360JQsISV','135yVPDcA','5220068Idenec','255zChIPA','constructor'];a69c=function(){return k;};return a69c();}import{Log}from'../../tools/log/log.class.js';import{UsageErrorWithSubs}from'../../error.js';const GetCommand=Command[a69i(0xdd)]({'name':'get','usage':'maka\x20get:<sub-command>','shortDesc':a69i(0xde),'validOpts':[]},async function(a,b){const j=a69i,c=a[0x0],d=this['findSubCommand'](c);if(d)this[j(0xe5)](c,a,b);else{Log[j(0xe4)](j(0xd9));throw new UsageErrorWithSubs();}});export default GetCommand;
1
+ const a69i=a69d;function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0x14b;let f=c[d];return f;},a69d(a,b);}(function(a,b){const f=a69d,c=a();while(!![]){try{const d=parseInt(f(0x155))/0x1+parseInt(f(0x15a))/0x2+parseInt(f(0x14e))/0x3*(-parseInt(f(0x157))/0x4)+-parseInt(f(0x150))/0x5+-parseInt(f(0x154))/0x6*(parseInt(f(0x15c))/0x7)+parseInt(f(0x160))/0x8*(-parseInt(f(0x158))/0x9)+-parseInt(f(0x152))/0xa*(-parseInt(f(0x14b))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0x84223));const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a69d;if(c){const e=c[g(0x15f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const h=a69d;return a69a['toString']()[h(0x14d)]('(((.+)+)+)+$')[h(0x159)]()[h(0x15e)](a69a)[h(0x14d)](h(0x15b));});a69a();import{Command}from'../../command.js';function a69c(){const k=['findSubCommand','search','1203AHeDwR','Sub-Command\x20not\x20found','232000yCziwQ','maka\x20get:<sub-command>','10cTAsOs','create','202614klnfjV','948497PjcQMh','runSubCommand','2356lbsnAa','66537iiaXFO','toString','283064RAvMAt','(((.+)+)+)+$','35UkeXMf','Get\x20various\x20Maka\x20variables\x20and\x20configurations','constructor','apply','272idmKnT','1693846IghtLZ'];a69c=function(){return k;};return a69c();}import{Log}from'../../tools/log/log.class.js';import{UsageErrorWithSubs}from'../../error.js';const GetCommand=Command[a69i(0x153)]({'name':'get','usage':a69i(0x151),'shortDesc':a69i(0x15d),'validOpts':[]},async function(a,b){const j=a69i,c=a[0x0],d=this[j(0x14c)](c);if(d)this[j(0x156)](c,a,b);else{Log['error'](j(0x14f));throw new UsageErrorWithSubs();}});export default GetCommand;
@@ -1 +1 @@
1
- const a70i=a70d;function a70d(a,b){const c=a70c();return a70d=function(d,e){d=d-0x18d;let f=c[d];return f;},a70d(a,b);}function a70c(){const k=['constructor','maka\x20get:global-config','1487349jCeIMp','69015MBKohC','4432959kxhYDO','Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','276790vyANRC','create','572719dwnnXz','40lfyOem','exit','apply','fsi','global-config','76MipYbh','log','toString','10aNlECn','3893214AAmWuL','error','1412316tnjrAq','(((.+)+)+)+$'];a70c=function(){return k;};return a70c();}(function(a,b){const f=a70d,c=a();while(!![]){try{const d=parseInt(f(0x1a2))/0x1+-parseInt(f(0x19a))/0x2+-parseInt(f(0x19e))/0x3+-parseInt(f(0x194))/0x4*(parseInt(f(0x19f))/0x5)+parseInt(f(0x198))/0x6+-parseInt(f(0x18e))/0x7*(-parseInt(f(0x18f))/0x8)+parseInt(f(0x1a0))/0x9*(parseInt(f(0x197))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0x58a59));const a70b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a70d;if(c){const e=c[g(0x191)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a70a=a70b(this,function(){const h=a70d;return a70a[h(0x196)]()['search'](h(0x19b))[h(0x196)]()[h(0x19c)](a70a)['search'](h(0x19b));});a70a();import a70e from'./get.command.js';import{Command}from'../../command.js';Command[a70i(0x18d)]({'name':a70i(0x193),'usage':a70i(0x19d),'aliases':['gc'],'shortDesc':a70i(0x1a1),'validOpts':[]},async function(){const j=a70i;try{const a=await this[j(0x192)]['getGlobalConfig']();console[j(0x195)](a),process['exit'](0x0);}catch(b){console[j(0x199)](b),process[j(0x190)](0x0);}},a70e);
1
+ const a70i=a70d;(function(a,b){const f=a70d,c=a();while(!![]){try{const d=-parseInt(f(0x197))/0x1*(-parseInt(f(0x195))/0x2)+parseInt(f(0x19f))/0x3*(-parseInt(f(0x18d))/0x4)+-parseInt(f(0x19e))/0x5*(parseInt(f(0x19c))/0x6)+-parseInt(f(0x19a))/0x7*(-parseInt(f(0x190))/0x8)+parseInt(f(0x193))/0x9*(parseInt(f(0x186))/0xa)+-parseInt(f(0x19b))/0xb*(-parseInt(f(0x199))/0xc)+-parseInt(f(0x188))/0xd;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0xb28ea));const a70b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a70d;if(c){const e=c[g(0x18f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a70a=a70b(this,function(){const h=a70d;return a70a[h(0x198)]()[h(0x18a)](h(0x1a0))[h(0x198)]()[h(0x194)](a70a)['search'](h(0x1a0));});a70a();function a70c(){const k=['420vqcoOV','196994vylLKx','239327SDTRWe','6Qrftde','exit','1873385zHOcpA','185841LHdvzx','(((.+)+)+)+$','1798280ivzJIP','Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','31126966SzETHo','maka\x20get:global-config','search','global-config','create','48BWKqnZ','error','apply','408JIsRqo','getGlobalConfig','log','72nKYXwq','constructor','1216864Lpayfl','fsi','1ELpZuH','toString'];a70c=function(){return k;};return a70c();}function a70d(a,b){const c=a70c();return a70d=function(d,e){d=d-0x186;let f=c[d];return f;},a70d(a,b);}import a70e from'./get.command.js';import{Command}from'../../command.js';Command[a70i(0x18c)]({'name':a70i(0x18b),'usage':a70i(0x189),'aliases':['gc'],'shortDesc':a70i(0x187),'validOpts':[]},async function(){const j=a70i;try{const a=await this[j(0x196)][j(0x191)]();console[j(0x192)](a),process[j(0x19d)](0x0);}catch(b){console[j(0x18e)](b),process['exit'](0x0);}},a70e);
@@ -1 +1 @@
1
- const a71i=a71d;(function(a,b){const f=a71d,c=a();while(!![]){try{const d=parseInt(f(0x118))/0x1+-parseInt(f(0x10e))/0x2*(-parseInt(f(0x11f))/0x3)+-parseInt(f(0x110))/0x4*(parseInt(f(0x115))/0x5)+parseInt(f(0x10f))/0x6+parseInt(f(0x120))/0x7*(-parseInt(f(0x112))/0x8)+parseInt(f(0x11e))/0x9*(parseInt(f(0x113))/0xa)+parseInt(f(0x116))/0xb*(-parseInt(f(0x11b))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0x7cc40));function a71d(a,b){const c=a71c();return a71d=function(d,e){d=d-0x10d;let f=c[d];return f;},a71d(a,b);}const a71b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a71d;if(c){const e=c[g(0x121)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){const h=a71d;return a71a['toString']()[h(0x11c)](h(0x114))[h(0x119)]()['constructor'](a71a)[h(0x11c)](h(0x114));});a71a();import a71e from'./get.command.js';import{Command}from'../../command.js';Command['create']({'name':a71i(0x10d),'usage':a71i(0x117),'mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':a71i(0x11d),'validOpts':[]},async function(){const j=a71i,a=await this['fsi'][j(0x11a)]();console[j(0x111)](a);},a71e);function a71c(){const k=['maka\x20get:local-config','560197ISYaKZ','toString','getProjectConfig','1961772XkZIJe','search','Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file','198NPJnrL','489YkMLiT','6907607uYUsYT','apply','local-config','4538xenKmd','5377050loBPBe','2241036hYhxlC','log','8PfouOM','179710xMrJoC','(((.+)+)+)+$','5ELyGBL','11viTsgQ'];a71c=function(){return k;};return a71c();}
1
+ const a71i=a71d;(function(a,b){const f=a71d,c=a();while(!![]){try{const d=parseInt(f(0xc6))/0x1+-parseInt(f(0xc1))/0x2*(parseInt(f(0xc8))/0x3)+-parseInt(f(0xc2))/0x4+parseInt(f(0xd0))/0x5*(-parseInt(f(0xbe))/0x6)+parseInt(f(0xc4))/0x7+parseInt(f(0xcd))/0x8+-parseInt(f(0xc7))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0x4e461));const a71b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a71d;if(c){const e=c[g(0xc3)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){const h=a71d;return a71a['toString']()[h(0xcf)]('(((.+)+)+)+$')[h(0xbf)]()['constructor'](a71a)[h(0xcf)](h(0xca));});a71a();function a71d(a,b){const c=a71c();return a71d=function(d,e){d=d-0xbe;let f=c[d];return f;},a71d(a,b);}import a71e from'./get.command.js';import{Command}from'../../command.js';Command[a71i(0xcb)]({'name':a71i(0xc0),'usage':a71i(0xce),'mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':a71i(0xc5),'validOpts':[]},async function(){const j=a71i,a=await this[j(0xc9)]['getMakaProjectConfig']();console[j(0xcc)](a);},a71e);function a71c(){const k=['275YMGyzC','5118ZYqgHj','toString','local-config','2uoemrW','76868Knkbjy','apply','2823135kPYlbQ','Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file','491563czWEbd','3531879ZhzqMh','1639128gZgGBi','fsi','(((.+)+)+)+$','create','log','3445440LCAUQJ','maka\x20get:local-config','search'];a71c=function(){return k;};return a71c();}
@@ -1 +1 @@
1
- const a72i=a72d;(function(a,b){const g=a72d,c=a();while(!![]){try{const d=parseInt(g(0x126))/0x1+parseInt(g(0x13c))/0x2+parseInt(g(0x13a))/0x3*(-parseInt(g(0x138))/0x4)+-parseInt(g(0x128))/0x5+parseInt(g(0x141))/0x6*(parseInt(g(0x12d))/0x7)+parseInt(g(0x124))/0x8*(-parseInt(g(0x13d))/0x9)+parseInt(g(0x131))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0x2077e));const a72b=(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;};}()),a72a=a72b(this,function(){const h=a72d;return a72a[h(0x12c)]()[h(0x129)](h(0x133))[h(0x12c)]()[h(0x12b)](a72a)[h(0x129)](h(0x133));});a72a();import a72e from'./get.command.js';function a72c(){const k=['54066flndeq','error','create','notice','8luPCJd','whoami','255443OeUkoT','roles','857265gmbXWM','search','userId','constructor','toString','98HkLJDb','getGlobalConfig','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','user','816320AfdmMf','authToken','(((.+)+)+)+$','User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20','If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','decode','fsi','8QLyTEI','hash','267969FuiEXN','exit','326224prldBF','1289268fMevGH','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','token','User\x20Access\x20Token:\x20\x20'];a72c=function(){return k;};return a72c();}import{Command}from'../../command.js';function a72d(a,b){const c=a72c();return a72d=function(d,e){d=d-0x123;let f=c[d];return f;},a72d(a,b);}import{Log}from'../../tools/log/log.class.js';import a72f from'jsonwebtoken';Command[a72i(0x143)]({'name':a72i(0x125),'usage':'maka\x20get:whoami','shortDesc':a72i(0x135),'validOpts':[]},async function(){const j=a72i;try{const a=await this[j(0x137)][j(0x12e)]();if(a['hash']){const b=a72f[j(0x136)](a[j(0x139)]);Log[j(0x123)](j(0x134)+b?.[j(0x130)]),Log[j(0x123)](j(0x12f)+a[j(0x13f)]?.[j(0x12a)]),Log[j(0x123)](j(0x140)+a[j(0x13f)]?.[j(0x132)]),Log[j(0x123)](j(0x13e)+b?.[j(0x127)]['join'](',\x20'));}}catch(c){console[j(0x142)](c),process[j(0x13b)](0x0);}},a72e);
1
+ const a72j=a72d;(function(a,b){const g=a72d,c=a();while(!![]){try{const d=parseInt(g(0x1a5))/0x1*(-parseInt(g(0x1ae))/0x2)+parseInt(g(0x1ab))/0x3+parseInt(g(0x198))/0x4+-parseInt(g(0x1a1))/0x5+-parseInt(g(0x1a9))/0x6*(-parseInt(g(0x197))/0x7)+-parseInt(g(0x1ad))/0x8+parseInt(g(0x1a3))/0x9*(-parseInt(g(0x1a8))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0xc452f));function a72c(){const l=['4007457QpzPBM','join','3189AqRMJy','(((.+)+)+)+$','decode','30KbegwQ','2586WJFcxl','User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20','3633933GkKZQN','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','3995928beJfms','326yMwnOi','apply','notice','maka\x20get:whoami','hash','If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','10577imEhXh','5434368klurgj','userId','authToken','roles','toString','error','token','search','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','309420msnkXm','constructor'];a72c=function(){return l;};return a72c();}const a72b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a72d;if(c){const e=c[h(0x1af)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a72a=a72b(this,function(){const i=a72d;return a72a[i(0x19c)]()[i(0x19f)](i(0x1a6))[i(0x19c)]()[i(0x1a2)](a72a)['search'](i(0x1a6));});a72a();import a72e from'./get.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import a72f from'jsonwebtoken';function a72d(a,b){const c=a72c();return a72d=function(d,e){d=d-0x197;let f=c[d];return f;},a72d(a,b);}Command['create']({'name':'whoami','usage':a72j(0x1b1),'shortDesc':a72j(0x1b3),'validOpts':[]},async function(){const k=a72j;try{const a=await this['fsi']['getGlobalConfig']();if(a[k(0x1b2)]){const b=a72f[k(0x1a7)](a[k(0x1b2)]);Log['notice'](k(0x1aa)+b?.['user']),Log[k(0x1b0)](k(0x1ac)+a[k(0x19e)]?.[k(0x199)]),Log['notice']('User\x20Access\x20Token:\x20\x20'+a[k(0x19e)]?.[k(0x19a)]),Log[k(0x1b0)](k(0x1a0)+b?.[k(0x19b)][k(0x1a4)](',\x20'));}}catch(c){console[k(0x19d)](c),process['exit'](0x0);}},a72e);
@@ -1 +1 @@
1
- var a73i=a73d;function a73d(a,b){var c=a73c();return a73d=function(d,e){d=d-0x1a1;var f=c[d];return f;},a73d(a,b);}(function(a,b){var f=a73d,c=a();while(!![]){try{var d=-parseInt(f(0x1af))/0x1*(-parseInt(f(0x1b4))/0x2)+parseInt(f(0x1a5))/0x3*(parseInt(f(0x1a3))/0x4)+parseInt(f(0x1a9))/0x5+-parseInt(f(0x1ad))/0x6*(parseInt(f(0x1a4))/0x7)+parseInt(f(0x1a8))/0x8*(parseInt(f(0x1a6))/0x9)+parseInt(f(0x1ab))/0xa*(-parseInt(f(0x1a1))/0xb)+parseInt(f(0x1b2))/0xc*(-parseInt(f(0x1a2))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0xc99a1));var a73b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a73d;if(c){var e=c[g(0x1b0)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){var h=a73d;return a73a['toString']()[h(0x1ae)]('(((.+)+)+)+$')[h(0x1aa)]()['constructor'](a73a)[h(0x1ae)](h(0x1b3));});a73a();import{Command}from'../command.js';import{UsageError}from'../error.js';Command[a73i(0x1b1)]({'name':'help','description':a73i(0x1a7),'aliases':['h'],'validOpts':[],'shortDesc':a73i(0x1ac)},async function(){throw new UsageError();});function a73c(){var j=['search','373IhnWMB','apply','create','68508lbihHN','(((.+)+)+)+$','1356nRWDnN','25773jjjKZZ','1209EInUNz','26716tnRMbs','11218123neQVem','453QgpizR','54UkWGex','Try,\x20maka\x20--help','1763024hEElzz','2170855HiIHhk','toString','250VqblwI','Deprecated:\x20use\x20--help\x20instead','6DGJSnF'];a73c=function(){return j;};return a73c();}
1
+ var a73i=a73d;function a73c(){var j=['(((.+)+)+)+$','apply','Try,\x20maka\x20--help','2362556rBJbto','787357QJZKeM','Deprecated:\x20use\x20--help\x20instead','142850NESbjx','1474nOAdZu','create','3389784SOZoZX','74HwbXND','search','8705997EkZeFs','7823190MMJuDO','toString','constructor','10ZLFONe','14EOPEhu','107883RtcpCB'];a73c=function(){return j;};return a73c();}(function(a,b){var f=a73d,c=a();while(!![]){try{var d=-parseInt(f(0x86))/0x1+parseInt(f(0x8c))/0x2*(parseInt(f(0x81))/0x3)+parseInt(f(0x85))/0x4*(-parseInt(f(0x7f))/0x5)+parseInt(f(0x8f))/0x6+-parseInt(f(0x80))/0x7*(parseInt(f(0x8b))/0x8)+-parseInt(f(0x8e))/0x9+parseInt(f(0x88))/0xa*(parseInt(f(0x89))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0xbad0e));var a73b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a73d;if(c){var e=c[g(0x83)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){var h=a73d;return a73a[h(0x90)]()[h(0x8d)](h(0x82))[h(0x90)]()[h(0x7e)](a73a)['search'](h(0x82));});function a73d(a,b){var c=a73c();return a73d=function(d,e){d=d-0x7e;var f=c[d];return f;},a73d(a,b);}a73a();import{Command}from'../command.js';import{UsageError}from'../error.js';Command[a73i(0x8a)]({'name':'help','description':a73i(0x84),'aliases':['h'],'validOpts':[],'shortDesc':a73i(0x87)},async function(){throw new UsageError();});
@@ -1 +1 @@
1
- const a74y=a74d;(function(a,b){const v=a74d,c=a();while(!![]){try{const d=parseInt(v(0x1c6))/0x1+parseInt(v(0x20b))/0x2+-parseInt(v(0x1c8))/0x3*(-parseInt(v(0x1ed))/0x4)+-parseInt(v(0x20a))/0x5*(parseInt(v(0x21a))/0x6)+parseInt(v(0x202))/0x7*(-parseInt(v(0x1e8))/0x8)+-parseInt(v(0x1d9))/0x9+parseInt(v(0x203))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0x2a2ba));const a74b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a74d;if(c){const e=c[w(0x1c1)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a74a=a74b(this,function(){const x=a74d;return a74a[x(0x1fd)]()[x(0x1f7)](x(0x219))[x(0x1fd)]()[x(0x1e6)](a74a)[x(0x1f7)](x(0x219));});a74a();import a74e from'os';function a74c(){const C=['NO_NODE_WARNINGS','maka\x20i','946035KsJsyW','error','withSpinner','Path\x20already\x20set\x20in\x20/etc/profile','isFile','You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.','Windows\x20is\x20not\x20supported\x20at\x20this\x20time.','getuid',':$PATH','package-metadata','keepInstallFile','replace','/.zshrc','constructor','Removing\x20previous\x20install\x20of\x20meteor\x20(packages)','8eVtYiC','-rf','https://packages.meteor.com/bootstrap-link?arch=os.','cert','length','69468pbImzK','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','Removing\x20previous\x20install\x20of\x20meteor\x20(main)','Proceed\x20anyway?','injectAtEndOfFile','\x20is\x20not\x20available.','maka\x20install\x20meteor\x20--version\x202.13.3','version','/.bash_profile','grep','search','Meteor\x20version\x20','Setting\x20Path\x20in\x20/etc/profile','notice','confirm','exit','toString','Setting\x20Path\x20in\x20\x20','win32','osx','fileContainsString','1699404juBxAn','4212370SzAGkC','cacert','SHELL','string','downloadFile','.meteor','success','5LUaSKz','348372HvSMuC','existsSync','platform','/etc/profile','extractTarGz','Path\x20already\x20set\x20in\x20','Error\x20extracting\x20meteor.tar.gz\x20file','arch','linux','Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','homedir','meteor.tar.gz','data','https://install.meteor.com','(((.+)+)+)+$','1867080KzsIje','force','arm64','setPath','apply','maka\x20install\x20meteor','join','x86_64','Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?','132172PWElGM','\x0a\x20\x20Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22\x20and\x20will\x20install\x0a\x20\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--force\x20flag\x20will\x20remove\x20the\x20current\x20install\x20of\x20meteor\x20and\x20install\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--version\x20flag\x20will\x20install\x20the\x20specified\x20version\x20of\x20meteor.\x0a\x0a\x20\x20\x20\x20--cacert\x20flag\x20will\x20use\x20the\x20specified\x20CA\x20Cert\x20file,\x20useful\x20for\x20corporate\x20networks.\x0a\x0a\x20\x20\x20\x20--setPath\x20flag\x20will\x20set\x20the\x20path\x20to\x20the\x20meteor\x20install\x20in\x20your\x20.bashrc\x20or\x20.zshrc\x20file\x20w/o\x20installing\x20meteor.\x0a\x20\x20','18lINOxH','Cleaning\x20up','Preparing\x20to\x20install\x20Meteor\x20','info','windows','env','/.bashrc','packages','getGlobalConfig','Setting\x20Path\x20in\x20','Network\x20error,\x20please\x20try\x20again.','maka\x20install','fsi','Aborting\x20install','get'];a74c=function(){return C;};return a74c();}function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0x1c1;let f=c[d];return f;},a74d(a,b);}import a74f from'path';import a74g from'fs';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=a74e[a74y(0x215)]();function isRoot(){const z=a74y;return process[z(0x1e0)]&&process[z(0x1e0)]()===0x0;}Command['create']({'name':'install','aliases':['i'],'validOpts':[a74y(0x21b),a74y(0x1f4),a74y(0x204),'setPath',a74y(0x1e3)],'usage':a74y(0x1d3),'shortDesc':a74y(0x214),'description':a74y(0x1c7),'examples':[a74y(0x1c2),'maka\x20install\x20meteor\x20--force',a74y(0x1f3),a74y(0x1d8)]},async function(a,b){const A=a74y;try{let c='';if(b['cacert']){if(this['fsi'][A(0x1dd)](b[A(0x204)]))Log[A(0x1fa)]('Using\x20CA\x20Cert\x20'+b[A(0x204)]),c=b['cacert'];else throw'CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20'+c;}const d=await this[A(0x1d4)][A(0x1d0)]();if(d[A(0x1eb)]){if(this[A(0x1d4)][A(0x1dd)](d[A(0x1eb)]))c=d[A(0x1eb)];else throw A(0x1ee)+c;}let f=![];if(b['f']||b[A(0x21b)])f=!![];else{const p=isRoot();p?(Log['warn'](A(0x1de)),f=await Actions['confirm'](A(0x1f0),![])):f=!![];}if(!f)throw'Aborted';const g=process[A(0x20d)]===A(0x1ff),h=await HTTPS[A(0x1d6)]({'url':A(0x218),'cert':c}),i=await this[A(0x1d4)][A(0x1f6)](h[A(0x217)],'RELEASE=');if(i[A(0x1ec)]===0x0)throw A(0x1d2);process['env'][A(0x1d7)]='1',Log['notice'](A(0x1ca)+i[0x0][A(0x1e4)](/[^0-9.]/gi,'')[A(0x1e4)](/\r?\n|\r/,''));let j=i[0x0][A(0x1e4)](/[^0-9.]/gi,'')[A(0x1e4)](/\r?\n|\r/,'');(typeof b['v']===A(0x206)||typeof b[A(0x1f4)]===A(0x206))&&(j=b['v']||b[A(0x1f4)]);const k={'win32':A(0x1cc),'darwin':A(0x200),'linux':A(0x213)},l=A(0x1ea)+k[a74e[A(0x20d)]()]+'.'+(a74e[A(0x212)]()===A(0x21c)?A(0x21c):A(0x1c4))+'&release='+j,m=await HTTPS['checkAvailability']({'url':l,'cert':c});!m&&(Log[A(0x1da)](A(0x1f8)+j+A(0x1f2)),process[A(0x1fc)](0x0));const n=a74f[A(0x1c3)](homeDir,A(0x208)),o=async()=>{const B=A,q='export\x20PATH='+n+B(0x1e1);if(process[B(0x1cd)]['SHELL']&&process[B(0x1cd)][B(0x205)]['includes']('zsh')){const r=await this['fsi']['fileContainsString'](homeDir+B(0x1e5),q);if(!r)Log[B(0x1cb)](B(0x1fe)+homeDir+B(0x1e5)),this[B(0x1d4)][B(0x1f1)]({'filePath':homeDir+B(0x1e5),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x21d)]&&Log[B(0x1cb)]('Path\x20already\x20set\x20in\x20'+homeDir+B(0x1e5));}else{const s=await this['fsi'][B(0x201)](homeDir+B(0x1ce),q);if(!s)Log['info']('Setting\x20Path\x20in\x20'+homeDir+B(0x1ce)),this['fsi'][B(0x1f1)]({'filePath':homeDir+B(0x1ce),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x21d)]&&Log[B(0x1cb)](B(0x210)+homeDir+B(0x1ce));const t=await this[B(0x1d4)]['fileContainsString'](homeDir+B(0x1f5),q);if(!t)Log[B(0x1cb)](B(0x1d1)+homeDir+B(0x1f5)),this[B(0x1d4)][B(0x1f1)]({'filePath':homeDir+B(0x1f5),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x21d)]&&Log['info'](B(0x210)+homeDir+B(0x1f5));if(isRoot()){const u=await this[B(0x1d4)][B(0x201)](B(0x20e),q);if(!u)Log['info'](B(0x1f9)),this[B(0x1d4)]['injectAtEndOfFile']({'filePath':B(0x20e),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x21d)]&&Log[B(0x1cb)](B(0x1dc));}}};b[A(0x21d)]&&(await o(),process[A(0x1fc)](0x0));if(g)Log[A(0x1da)](A(0x1df)),process[A(0x1fc)](0x0);else{if(a74g[A(0x20c)](n)){let q=![];b['f']||b[A(0x21b)]?q=!![]:q=await Actions[A(0x1fb)](A(0x1c5),![]),q?(await SpawnAsync[A(0x1db)]('rm',['-rf',a74f['join'](n,A(0x1cf))],{'message':A(0x1e7)}),await SpawnAsync[A(0x1db)]('rm',[A(0x1e9),a74f[A(0x1c3)](n,A(0x1e2))],{'message':'Removing\x20previous\x20install\x20of\x20meteor\x20(package-meta)'}),await SpawnAsync[A(0x1db)]('rm',['-rf',a74f[A(0x1c3)](n,'meteor')],{'message':A(0x1ef)})):(Log[A(0x1cb)](A(0x1d5)),process[A(0x1fc)](0x0));}try{await HTTPS[A(0x207)]({'url':l,'destPath':a74f[A(0x1c3)](homeDir,A(0x216)),'cert':c});try{const r=a74f[A(0x1c3)](homeDir,A(0x216));await this['fsi'][A(0x20f)](r,homeDir);}catch(s){Log[A(0x1da)](A(0x211));}!b[A(0x1e3)]&&await SpawnAsync[A(0x1db)]('rm',[A(0x1e9),a74f[A(0x1c3)](homeDir,A(0x216))],{'message':A(0x1c9)}),await o();}catch(t){console[A(0x1da)](t),process[A(0x1fc)](0x0);}Log[A(0x209)]('Meteor\x20version\x20'+j+'\x20installed.\x0a');}}catch(u){console['error'](u),process[A(0x1fc)](0x0);}});
1
+ const a74x=a74d;(function(a,b){const v=a74d,c=a();while(!![]){try{const d=parseInt(v(0xfc))/0x1+parseInt(v(0xee))/0x2+-parseInt(v(0xb8))/0x3+parseInt(v(0xf4))/0x4*(parseInt(v(0xc8))/0x5)+-parseInt(v(0xf7))/0x6*(-parseInt(v(0xda))/0x7)+parseInt(v(0xf5))/0x8+parseInt(v(0xeb))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0xbbb7f));function a74c(){const B=['Preparing\x20to\x20install\x20Meteor\x20','1842yZjbGn','Error\x20extracting\x20meteor.tar.gz\x20file','Removing\x20previous\x20install\x20of\x20meteor\x20(main)','https://install.meteor.com','cacert','281313PWXstg','toString','Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?','extractTarGz','Aborted','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','/.bashrc','&release=','-rf','get','withSpinner','packages','getGlobalConfig','https://packages.meteor.com/bootstrap-link?arch=os.','error','Meteor\x20version\x20','info','/etc/profile','Windows\x20is\x20not\x20supported\x20at\x20this\x20time.','/.zshrc','maka\x20install\x20meteor\x20--version\x202.13.3','isFile','constructor','Path\x20already\x20set\x20in\x20','cert','meteor.tar.gz','3242283bkxEVO','Setting\x20Path\x20in\x20/etc/profile','export\x20PATH=','install','platform','maka\x20install\x20meteor','includes','data','(((.+)+)+)+$','existsSync','maka\x20install\x20meteor\x20--force','Removing\x20previous\x20install\x20of\x20meteor\x20(packages)','zsh','\x20is\x20not\x20available.','replace','string','16595VlHCjO','checkAvailability','\x0a\x20\x20Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22\x20and\x20will\x20install\x0a\x20\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--force\x20flag\x20will\x20remove\x20the\x20current\x20install\x20of\x20meteor\x20and\x20install\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--version\x20flag\x20will\x20install\x20the\x20specified\x20version\x20of\x20meteor.\x0a\x0a\x20\x20\x20\x20--cacert\x20flag\x20will\x20use\x20the\x20specified\x20CA\x20Cert\x20file,\x20useful\x20for\x20corporate\x20networks.\x0a\x0a\x20\x20\x20\x20--setPath\x20flag\x20will\x20set\x20the\x20path\x20to\x20the\x20meteor\x20install\x20in\x20your\x20.bashrc\x20or\x20.zshrc\x20file\x20w/o\x20installing\x20meteor.\x0a\x20\x20','NO_NODE_WARNINGS','maka\x20install','/.bash_profile','meteor','getuid','force',':$PATH','You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.','fsi','fileContainsString','setPath','notice','homedir','SHELL','Cleaning\x20up','322gzBemt','version','arch','RELEASE=','warn','Removing\x20previous\x20install\x20of\x20meteor\x20(package-meta)','keepInstallFile','Using\x20CA\x20Cert\x20','linux','length','exit','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','search','.meteor','downloadFile','injectAtEndOfFile','Setting\x20Path\x20in\x20\x20','249336BBFYGh','arm64','Aborting\x20install','1535920URrznx','env','join','create','Network\x20error,\x20please\x20try\x20again.','windows','364aaMGpZ','3652224eBqVMw'];a74c=function(){return B;};return a74c();}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 w=a74d;return a74a[w(0xfd)]()['search'](w(0xc0))[w(0xfd)]()[w(0xb4)](a74a)[w(0xe6)](w(0xc0));});a74a();import a74e from'os';import a74f from'path';import a74g from'fs';function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0xa2;let f=c[d];return f;},a74d(a,b);}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=a74e[a74x(0xd7)]();function isRoot(){const y=a74x;return process[y(0xcf)]&&process['getuid']()===0x0;}Command[a74x(0xf1)]({'name':a74x(0xbb),'aliases':['i'],'validOpts':[a74x(0xd0),a74x(0xdb),'cacert','setPath','keepInstallFile'],'usage':a74x(0xcc),'shortDesc':'Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','description':a74x(0xca),'examples':[a74x(0xbd),a74x(0xc2),a74x(0xb2),'maka\x20i']},async function(a,b){const z=a74x;try{let c='';if(b['cacert']){if(this[z(0xd3)][z(0xb3)](b[z(0xfb)]))Log[z(0xd6)](z(0xe1)+b[z(0xfb)]),c=b[z(0xfb)];else throw z(0xe5)+c;}const d=await this[z(0xd3)][z(0xaa)]();if(d[z(0xb6)]){if(this[z(0xd3)][z(0xb3)](d[z(0xb6)]))c=d[z(0xb6)];else throw z(0xa3)+c;}let f=![];if(b['f']||b[z(0xd0)])f=!![];else{const p=isRoot();p?(Log[z(0xde)](z(0xd2)),f=await Actions['confirm']('Proceed\x20anyway?',![])):f=!![];}if(!f)throw z(0xa2);const g=process[z(0xbc)]==='win32',h=await HTTPS[z(0xa7)]({'url':z(0xfa),'cert':c}),i=await this['fsi']['grep'](h[z(0xbf)],z(0xdd));if(i[z(0xe3)]===0x0)throw z(0xf2);process['env'][z(0xcb)]='1',Log['notice'](z(0xf6)+i[0x0][z(0xc6)](/[^0-9.]/gi,'')[z(0xc6)](/\r?\n|\r/,''));let j=i[0x0][z(0xc6)](/[^0-9.]/gi,'')[z(0xc6)](/\r?\n|\r/,'');(typeof b['v']===z(0xc7)||typeof b[z(0xdb)]==='string')&&(j=b['v']||b[z(0xdb)]);const k={'win32':z(0xf3),'darwin':'osx','linux':z(0xe2)},l=z(0xab)+k[a74e['platform']()]+'.'+(a74e[z(0xdc)]()===z(0xec)?z(0xec):'x86_64')+z(0xa5)+j,m=await HTTPS[z(0xc9)]({'url':l,'cert':c});!m&&(Log[z(0xac)](z(0xad)+j+z(0xc5)),process[z(0xe4)](0x0));const n=a74f['join'](homeDir,z(0xe7)),o=async()=>{const A=z,q=A(0xba)+n+A(0xd1);if(process[A(0xef)][A(0xd8)]&&process[A(0xef)]['SHELL'][A(0xbe)](A(0xc4))){const r=await this[A(0xd3)][A(0xd4)](homeDir+A(0xb1),q);if(!r)Log[A(0xae)](A(0xea)+homeDir+A(0xb1)),this[A(0xd3)][A(0xe9)]({'filePath':homeDir+A(0xb1),'content':q+'\x0a','opts':{'verbose':!![]}});else b['setPath']&&Log['info'](A(0xb5)+homeDir+A(0xb1));}else{const s=await this[A(0xd3)][A(0xd4)](homeDir+A(0xa4),q);if(!s)Log[A(0xae)]('Setting\x20Path\x20in\x20'+homeDir+'/.bashrc'),this[A(0xd3)][A(0xe9)]({'filePath':homeDir+'/.bashrc','content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0xd5)]&&Log[A(0xae)]('Path\x20already\x20set\x20in\x20'+homeDir+A(0xa4));const t=await this['fsi'][A(0xd4)](homeDir+A(0xcd),q);if(!t)Log[A(0xae)]('Setting\x20Path\x20in\x20'+homeDir+A(0xcd)),this[A(0xd3)]['injectAtEndOfFile']({'filePath':homeDir+A(0xcd),'content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0xd5)]&&Log[A(0xae)]('Path\x20already\x20set\x20in\x20'+homeDir+A(0xcd));if(isRoot()){const u=await this[A(0xd3)][A(0xd4)](A(0xaf),q);if(!u)Log['info'](A(0xb9)),this[A(0xd3)][A(0xe9)]({'filePath':'/etc/profile','content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0xd5)]&&Log[A(0xae)]('Path\x20already\x20set\x20in\x20/etc/profile');}}};b[z(0xd5)]&&(await o(),process['exit'](0x0));if(g)Log[z(0xac)](z(0xb0)),process[z(0xe4)](0x0);else{if(a74g[z(0xc1)](n)){let q=![];b['f']||b[z(0xd0)]?q=!![]:q=await Actions['confirm'](z(0xfe),![]),q?(await SpawnAsync['withSpinner']('rm',[z(0xa6),a74f[z(0xf0)](n,z(0xa9))],{'message':z(0xc3)}),await SpawnAsync['withSpinner']('rm',[z(0xa6),a74f[z(0xf0)](n,'package-metadata')],{'message':z(0xdf)}),await SpawnAsync[z(0xa8)]('rm',[z(0xa6),a74f['join'](n,z(0xce))],{'message':z(0xf9)})):(Log[z(0xae)](z(0xed)),process[z(0xe4)](0x0));}try{await HTTPS[z(0xe8)]({'url':l,'destPath':a74f['join'](homeDir,'meteor.tar.gz'),'cert':c});try{const r=a74f[z(0xf0)](homeDir,z(0xb7));await this[z(0xd3)][z(0xff)](r,homeDir);}catch(s){Log[z(0xac)](z(0xf8));}!b[z(0xe0)]&&await SpawnAsync[z(0xa8)]('rm',[z(0xa6),a74f[z(0xf0)](homeDir,z(0xb7))],{'message':z(0xd9)}),await o();}catch(t){console[z(0xac)](t),process[z(0xe4)](0x0);}Log['success'](z(0xad)+j+'\x20installed.\x0a');}}catch(u){console[z(0xac)](u),process[z(0xe4)](0x0);}});
@@ -1 +1 @@
1
- const a75m=a75d;function a75c(){const o=['4TdPUkn','toString','maka\x20jsdoc','plugins/markdown','docs','46454fRZbJL','12TCfzbK','jsdoc','app/private','closure','8evlTWz','logWithSpinner','.+\x5c.(j|t)s(doc|x)?$','app/public','join','\x20-c\x20','6743lGBVWQ','stringify','maka\x20jsdoc\x20--init','\x0a[+]\x20Documentation\x20written\x20to\x20','255195zRmAwQ','inherit','Running\x20','logError','113108uhwfBC','utf-8','2364XDgotg','apply','\x20-r\x20app','\x20-d\x20','sep','stop','jsdoc-config.json','(((.+)+)+)+$','writeFileSync','2359FjwNhU','fsi','app/packages','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','736569FmFZzl','Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','app/node_modules','config','307090yxWiIq','252tKAIyR','logNotice'];a75c=function(){return o;};return a75c();}(function(a,b){const j=a75d,c=a();while(!![]){try{const d=-parseInt(j(0x1af))/0x1+parseInt(j(0x19c))/0x2*(parseInt(j(0x19d))/0x3)+parseInt(j(0x197))/0x4*(-parseInt(j(0x1ab))/0x5)+parseInt(j(0x195))/0x6*(parseInt(j(0x1ba))/0x7)+-parseInt(j(0x1a1))/0x8*(-parseInt(j(0x1be))/0x9)+-parseInt(j(0x194))/0xa+-parseInt(j(0x1a7))/0xb*(-parseInt(j(0x1b1))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0x1c078));const a75b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a75d;if(c){const e=c[k(0x1b2)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a75a=a75b(this,function(){const l=a75d;return a75a[l(0x198)]()['search']('(((.+)+)+)+$')[l(0x198)]()['constructor'](a75a)['search'](l(0x1b8));});a75a();import a75e from'path';import a75f from'fs';function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0x192;let f=c[d];return f;},a75d(a,b);}import{execSync}from'child_process';import{Command}from'../command.js';Command['create']({'name':a75m(0x19e),'usage':a75m(0x199),'mustBeInMakaProject':!![],'shortDesc':a75m(0x1bf),'examples':[a75m(0x1a9),a75m(0x199)],'validOpts':[]},function(){const n=a75m,a=a75e['join'](this[n(0x1bb)]['pathFromProject']({}),n(0x19b)+a75e[n(0x1b5)]),b=a75e[n(0x1a5)](this[n(0x1bb)]['pathFromProject']({}),n(0x193),n(0x1b7)),c=this[n(0x1bb)]['pathFromProject']({}),d='jsdoc';if(!this['isFile'](b)){const g={'plugins':[n(0x19a)],'tags':{'allowUnknownTags':!![],'dictionaries':[n(0x19e),n(0x1a0)]},'source':{'includePattern':n(0x1a3),'excludePattern':n(0x1bd),'exclude':[n(0x1bc),n(0x192),n(0x1a4),n(0x19f)]},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':n(0x1b0)}};a75f[n(0x1b9)](b,JSON[n(0x1a8)](g,null,0x4));}const f=this[n(0x1a2)](n(0x1ad)+d);try{const h=d+n(0x1a6)+b+n(0x1b3)+a75e[n(0x1b5)]+n(0x1b4)+a;execSync(h,{'cwd':c,'stdio':n(0x1ac)}),this[n(0x196)](n(0x1aa)+a);}catch(i){this[n(0x1ae)](i),this[n(0x1ae)]('[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22');}finally{f[n(0x1b6)]();}});
1
+ const a75m=a75d;(function(a,b){const j=a75d,c=a();while(!![]){try{const d=-parseInt(j(0x177))/0x1+-parseInt(j(0x185))/0x2*(parseInt(j(0x182))/0x3)+parseInt(j(0x17c))/0x4*(-parseInt(j(0x178))/0x5)+-parseInt(j(0x15d))/0x6+-parseInt(j(0x174))/0x7*(-parseInt(j(0x160))/0x8)+parseInt(j(0x17b))/0x9+parseInt(j(0x181))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0xf17b6));const a75b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a75d;if(c){const e=c[k(0x166)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a75a=a75b(this,function(){const l=a75d;return a75a['toString']()[l(0x175)](l(0x17a))[l(0x180)]()[l(0x163)](a75a)[l(0x175)](l(0x17a));});function a75c(){const o=['stop','closure','inherit','join','7TgfTvs','search','plugins/markdown','965598XDALfe','565HwGXWQ','docs','(((.+)+)+)+$','374607MwpYNJ','62384fCMaMU','\x20-c\x20','Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','maka\x20jsdoc\x20--init','toString','39920350fiMmcJ','1669254sFDsSP','sep','maka\x20jsdoc','2enUzAF','.+\x5c.(j|t)s(doc|x)?$','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','stringify','10334952MAqLzp','app/packages','jsdoc','15698464JtsGMN','pathFromProject','\x20-r\x20app','constructor','\x0a[+]\x20Documentation\x20written\x20to\x20','create','apply','[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22','logError','fsi','\x20-d\x20','config','jsdoc-config.json','app/public','logNotice','app/node_modules'];a75c=function(){return o;};return a75c();}a75a();import a75e from'path';import a75f from'fs';import{execSync}from'child_process';import{Command}from'../command.js';function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0x15c;let f=c[d];return f;},a75d(a,b);}Command[a75m(0x165)]({'name':a75m(0x15f),'usage':a75m(0x184),'mustBeInMakaProject':!![],'shortDesc':a75m(0x17e),'examples':[a75m(0x17f),a75m(0x184)],'validOpts':[]},function(){const n=a75m,a=a75e['join'](this[n(0x169)][n(0x161)]({}),n(0x179)+a75e[n(0x183)]),b=a75e[n(0x173)](this[n(0x169)]['pathFromProject']({}),n(0x16b),n(0x16c)),c=this[n(0x169)][n(0x161)]({}),d=n(0x15f);if(!this['isFile'](b)){const g={'plugins':[n(0x176)],'tags':{'allowUnknownTags':!![],'dictionaries':[n(0x15f),n(0x171)]},'source':{'includePattern':n(0x186),'excludePattern':n(0x187),'exclude':[n(0x15e),n(0x16f),n(0x16d),'app/private']},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':'utf-8'}};a75f['writeFileSync'](b,JSON[n(0x15c)](g,null,0x4));}const f=this['logWithSpinner']('Running\x20'+d);try{const h=d+n(0x17d)+b+n(0x162)+a75e[n(0x183)]+n(0x16a)+a;execSync(h,{'cwd':c,'stdio':n(0x172)}),this[n(0x16e)](n(0x164)+a);}catch(i){this[n(0x168)](i),this[n(0x168)](n(0x167));}finally{f[n(0x170)]();}});