@maka/maka-cli 4.7.13 → 4.7.15

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 (152) hide show
  1. package/.vs/VSWorkspaceState.json +5 -2
  2. package/.vs/maka-cli-src/FileContentIndex/f530d0eb-18c4-4b49-9f77-9bef59b119f3.vsidx +0 -0
  3. package/.vs/maka-cli-src/v17/.wsuo +0 -0
  4. package/.vs/maka-cli-src/v17/workspaceFileList.bin +0 -0
  5. package/.vs/slnx.sqlite +0 -0
  6. package/bundle/obf/package.json +2 -2
  7. package/bundle/obf/src/command.js +1 -1
  8. package/bundle/obf/src/commands/_index.js +1 -1
  9. package/bundle/obf/src/commands/ai.js +1 -1
  10. package/bundle/obf/src/commands/aws/_index.js +1 -1
  11. package/bundle/obf/src/commands/aws/aws.command.js +1 -1
  12. package/bundle/obf/src/commands/aws/chz.sub.cmd.js +1 -1
  13. package/bundle/obf/src/commands/aws/ci.sub.cmd.js +1 -1
  14. package/bundle/obf/src/commands/aws/ckp.sub.cmd.js +1 -1
  15. package/bundle/obf/src/commands/aws/csg.sub.cmd.js +1 -1
  16. package/bundle/obf/src/commands/aws/di.sub.cmd.js +1 -1
  17. package/bundle/obf/src/commands/aws/dkp.sub.cmd.js +1 -1
  18. package/bundle/obf/src/commands/aws/dsg.sub.cmd.js +1 -1
  19. package/bundle/obf/src/commands/aws/rbi.sub.cmd.js +1 -1
  20. package/bundle/obf/src/commands/aws/rdn.sub.cmd.js +1 -1
  21. package/bundle/obf/src/commands/aws/rkp.sub.cmd.js +1 -1
  22. package/bundle/obf/src/commands/aws/sth.sub.cmd.js +1 -1
  23. package/bundle/obf/src/commands/aws/ti.sub.cmd.js +1 -1
  24. package/bundle/obf/src/commands/build/_index.js +1 -1
  25. package/bundle/obf/src/commands/build/build.js +1 -1
  26. package/bundle/obf/src/commands/build/docker.sub.cmd.js +1 -1
  27. package/bundle/obf/src/commands/create.js +1 -1
  28. package/bundle/obf/src/commands/debug.js +1 -1
  29. package/bundle/obf/src/commands/deploy/_index.js +1 -1
  30. package/bundle/obf/src/commands/deploy/deploy.command.js +1 -1
  31. package/bundle/obf/src/commands/deploy/galaxy.sub.cmd.js +1 -1
  32. package/bundle/obf/src/commands/deploy/ubuntu.sub.cmd.js +1 -1
  33. package/bundle/obf/src/commands/game/_index.js +1 -1
  34. package/bundle/obf/src/commands/game/battleship.sub.cmd.js +1 -1
  35. package/bundle/obf/src/commands/game/play.command.js +1 -1
  36. package/bundle/obf/src/commands/game/pong.sub.cmd.js +1 -1
  37. package/bundle/obf/src/commands/game/sideQuest/commands/command.js +1 -1
  38. package/bundle/obf/src/commands/game/sideQuest/commands/drop.js +1 -1
  39. package/bundle/obf/src/commands/game/sideQuest/commands/equip.js +1 -1
  40. package/bundle/obf/src/commands/game/sideQuest/commands/go.js +1 -1
  41. package/bundle/obf/src/commands/game/sideQuest/commands/lock.js +1 -1
  42. package/bundle/obf/src/commands/game/sideQuest/commands/look.js +1 -1
  43. package/bundle/obf/src/commands/game/sideQuest/commands/say.js +1 -1
  44. package/bundle/obf/src/commands/game/sideQuest/commands/search.js +1 -1
  45. package/bundle/obf/src/commands/game/sideQuest/commands/solve.js +1 -1
  46. package/bundle/obf/src/commands/game/sideQuest/commands/take.js +1 -1
  47. package/bundle/obf/src/commands/game/sideQuest/commands/unequip.js +1 -1
  48. package/bundle/obf/src/commands/game/sideQuest/commands/unlock.js +1 -1
  49. package/bundle/obf/src/commands/game/sideQuest/commands/use.js +1 -1
  50. package/bundle/obf/src/commands/game/sideQuest/factories/commandF.js +1 -1
  51. package/bundle/obf/src/commands/game/sideQuest/factories/roomsF.js +1 -1
  52. package/bundle/obf/src/commands/game/sideQuest/game.js +1 -1
  53. package/bundle/obf/src/commands/game/sideQuest/models/_index.js +1 -1
  54. package/bundle/obf/src/commands/game/sideQuest/models/door.js +1 -1
  55. package/bundle/obf/src/commands/game/sideQuest/models/inventory.js +1 -1
  56. package/bundle/obf/src/commands/game/sideQuest/models/item.js +1 -1
  57. package/bundle/obf/src/commands/game/sideQuest/models/npc.js +1 -1
  58. package/bundle/obf/src/commands/game/sideQuest/models/player.js +1 -1
  59. package/bundle/obf/src/commands/game/sideQuest/models/puzzle.js +1 -1
  60. package/bundle/obf/src/commands/game/sideQuest/models/room.js +1 -1
  61. package/bundle/obf/src/commands/game/sideQuest/models/scene.js +1 -1
  62. package/bundle/obf/src/commands/game/sideQuest/scenes/items.js +1 -1
  63. package/bundle/obf/src/commands/game/sideQuest/scenes/rooms.js +1 -1
  64. package/bundle/obf/src/commands/game/sideQuest/types/abstracts.js +1 -1
  65. package/bundle/obf/src/commands/game/sideQuest/types/enums.js +1 -1
  66. package/bundle/obf/src/commands/game/sideQuest/types/interfaces.js +1 -1
  67. package/bundle/obf/src/commands/game/sideQuest/types/types.js +1 -1
  68. package/bundle/obf/src/commands/game/sideQuest/ui.js +1 -1
  69. package/bundle/obf/src/commands/game/sideQuest/utilities/logger.js +1 -1
  70. package/bundle/obf/src/commands/game/sideQuest.sub.cmd.js +1 -1
  71. package/bundle/obf/src/commands/game/snake.sub.cmd.js +1 -1
  72. package/bundle/obf/src/commands/game/tetris.sub.cmd.js +1 -1
  73. package/bundle/obf/src/commands/generate.js +1 -1
  74. package/bundle/obf/src/commands/get/_index.js +1 -1
  75. package/bundle/obf/src/commands/get/get.command.js +1 -1
  76. package/bundle/obf/src/commands/get/global.sub.cmd.js +1 -1
  77. package/bundle/obf/src/commands/get/local.sub.cmd.js +1 -1
  78. package/bundle/obf/src/commands/get/whoami.sub.cmd.js +1 -1
  79. package/bundle/obf/src/commands/help.js +1 -1
  80. package/bundle/obf/src/commands/install.js +1 -1
  81. package/bundle/obf/src/commands/jsdoc.js +1 -1
  82. package/bundle/obf/src/commands/lint.js +1 -1
  83. package/bundle/obf/src/commands/login.js +1 -1
  84. package/bundle/obf/src/commands/logout.js +1 -1
  85. package/bundle/obf/src/commands/logs.js +1 -1
  86. package/bundle/obf/src/commands/maka.cmd.js +1 -1
  87. package/bundle/obf/src/commands/murder.js +1 -1
  88. package/bundle/obf/src/commands/proxy.js +1 -1
  89. package/bundle/obf/src/commands/reconfig.js +1 -1
  90. package/bundle/obf/src/commands/run/_index.js +1 -1
  91. package/bundle/obf/src/commands/run/docker.sub.cmd.js +1 -1
  92. package/bundle/obf/src/commands/run/run.command.js +1 -1
  93. package/bundle/obf/src/commands/set/_index.js +1 -1
  94. package/bundle/obf/src/commands/set/global.sub.cmd.js +1 -1
  95. package/bundle/obf/src/commands/set/local.sub.cmd.js +1 -1
  96. package/bundle/obf/src/commands/set/set.command.js +1 -1
  97. package/bundle/obf/src/commands/ssh.js +1 -1
  98. package/bundle/obf/src/commands/ssl.js +1 -1
  99. package/bundle/obf/src/commands/test.js +1 -1
  100. package/bundle/obf/src/commands/version.js +1 -1
  101. package/bundle/obf/src/error.js +1 -1
  102. package/bundle/obf/src/exec.js +1 -1
  103. package/bundle/obf/src/generator.js +1 -1
  104. package/bundle/obf/src/generators/_index.js +1 -1
  105. package/bundle/obf/src/generators/api.js +1 -1
  106. package/bundle/obf/src/generators/collection.js +1 -1
  107. package/bundle/obf/src/generators/component.js +1 -1
  108. package/bundle/obf/src/generators/config.js +1 -1
  109. package/bundle/obf/src/generators/dbc.js +1 -1
  110. package/bundle/obf/src/generators/dockerfile.js +1 -1
  111. package/bundle/obf/src/generators/hook.js +1 -1
  112. package/bundle/obf/src/generators/kits/_index.js +1 -1
  113. package/bundle/obf/src/generators/kits/esri/_index.js +1 -1
  114. package/bundle/obf/src/generators/kits/esri/esri.generator.js +1 -1
  115. package/bundle/obf/src/generators/kits/esri/map.esri.gen.js +1 -1
  116. package/bundle/obf/src/generators/kits/kit.js +1 -1
  117. package/bundle/obf/src/generators/kits/mui/_index.js +1 -1
  118. package/bundle/obf/src/generators/kits/mui/frame.mui.gen.js +1 -1
  119. package/bundle/obf/src/generators/kits/mui/mui.generator.js +1 -1
  120. package/bundle/obf/src/generators/layout.js +1 -1
  121. package/bundle/obf/src/generators/maka.gen.js +1 -1
  122. package/bundle/obf/src/generators/methods.js +1 -1
  123. package/bundle/obf/src/generators/package.js +1 -1
  124. package/bundle/obf/src/generators/page.js +1 -1
  125. package/bundle/obf/src/generators/publish.js +1 -1
  126. package/bundle/obf/src/generators/route.js +1 -1
  127. package/bundle/obf/src/generators/service.js +1 -1
  128. package/bundle/obf/src/generators/services/_index.js +1 -1
  129. package/bundle/obf/src/generators/services/openssl.js +1 -1
  130. package/bundle/obf/src/generators/services/translation.js +1 -1
  131. package/bundle/obf/src/maka.js +1 -1
  132. package/bundle/obf/src/tool.js +1 -1
  133. package/bundle/obf/src/tools/actions/actions.class.js +1 -1
  134. package/bundle/obf/src/tools/aws/aws.class.js +1 -1
  135. package/bundle/obf/src/tools/aws/aws.interfaces.js +1 -1
  136. package/bundle/obf/src/tools/docker/docker.class.js +1 -1
  137. package/bundle/obf/src/tools/docker/docker.interfaces.js +1 -1
  138. package/bundle/obf/src/tools/fsi/fsi.class.js +1 -1
  139. package/bundle/obf/src/tools/fsi/fsi.interfaces.js +1 -1
  140. package/bundle/obf/src/tools/https/https.class.js +1 -1
  141. package/bundle/obf/src/tools/https/https.interface.js +1 -1
  142. package/bundle/obf/src/tools/log/log.class.js +1 -1
  143. package/bundle/obf/src/tools/log/log.interfaces.js +1 -1
  144. package/bundle/obf/src/tools/options/options.class.js +1 -1
  145. package/bundle/obf/src/tools/progress/progress.class.js +1 -1
  146. package/bundle/obf/src/tools/spawn-async/spawn-async.class.js +1 -1
  147. package/bundle/obf/src/tools/spawn-async/spawn-async.interfaces.js +1 -1
  148. package/bundle/obf/src/tools/ssh/ssh.class.js +1 -1
  149. package/bundle/obf/src/tools/ssh/ssh.interfaces.js +1 -1
  150. package/bundle/obf/src/tools/ssl/ssl.class.js +1 -1
  151. package/package.json +2 -2
  152. package/.vs/maka-cli-src/FileContentIndex/69d2de39-b193-48d9-b520-96bdb73b7b61.vsidx +0 -0
@@ -1 +1 @@
1
- var a53i=a53d;(function(a,b){var f=a53d,c=a();while(!![]){try{var d=parseInt(f(0x83))/0x1*(parseInt(f(0x77))/0x2)+parseInt(f(0x9c))/0x3+parseInt(f(0x8c))/0x4*(parseInt(f(0xa5))/0x5)+parseInt(f(0x9f))/0x6*(parseInt(f(0xa4))/0x7)+parseInt(f(0x8b))/0x8*(parseInt(f(0x74))/0x9)+parseInt(f(0x91))/0xa*(-parseInt(f(0x7b))/0xb)+parseInt(f(0x84))/0xc*(-parseInt(f(0x9b))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a53c,0x48ff9));var a53b=(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;};}()),a53a=a53b(this,function(){var g=a53d;return a53a[g(0x76)]()['search'](g(0x98))['toString']()['constructor'](a53a)['search'](g(0x98));});a53a();import{Size,Category,Shape,Color,Texture,Rating}from'../types/enums.js';import{Item}from'../models/item.js';export class BasicItem extends Item{constructor(a,b){var h=a53d;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[h(0x78)],'shape':Shape[h(0x71)],'color':Color[h(0x7e)],'texture':Texture[h(0xa2)],'rating':Rating[h(0x8e)],'weight':0x1});}[a53i(0x8f)](){var j=a53i;return this[j(0x75)];}}export class Sword extends Item{constructor(a,b){var k=a53i;super({'name':a,'description':b,'size':Size['Medium'],'category':Category['Weapon'],'shape':Shape[k(0x79)],'color':Color[k(0x8d)],'texture':Texture[k(0x70)],'rating':Rating[k(0x8e)],'weight':0x3});}}export class Rifle extends Item{constructor(a,b){var l=a53i;super({'name':a,'description':b,'size':Size['Large'],'category':Category[l(0x86)],'shape':Shape['Rifle'],'color':Color[l(0x96)],'texture':Texture['Metallic'],'rating':Rating[l(0x8a)],'weight':0x7});}}export class Helmet extends Item{constructor(a,b){var m=a53i;super({'name':a,'description':b,'size':Size[m(0x7d)],'category':Category['Helmet'],'shape':Shape[m(0x72)],'color':Color[m(0x8d)],'texture':Texture[m(0x70)],'rating':Rating[m(0x8e)],'weight':0x2});}}export class BodyArmor extends Item{constructor(a,b){var n=a53i;super({'name':a,'description':b,'size':Size[n(0x97)],'category':Category[n(0xa0)],'shape':Shape[n(0x71)],'color':Color['Grey'],'texture':Texture[n(0x70)],'rating':Rating['Common'],'weight':0xa});}}export class LegArmor extends Item{constructor(a,b){var o=a53i;super({'name':a,'description':b,'size':Size[o(0x7d)],'category':Category['LegArmor'],'shape':Shape[o(0x71)],'color':Color['Grey'],'texture':Texture['Metallic'],'rating':Rating[o(0x8e)],'weight':0x6});}}export class Boots extends Item{constructor(a,b){var p=a53i;super({'name':a,'description':b,'size':Size[p(0x7d)],'category':Category['Boots'],'shape':Shape['Circle'],'color':Color[p(0x96)],'texture':Texture[p(0xa2)],'rating':Rating[p(0x8e)],'weight':0x2});}}export class Gloves extends Item{constructor(a,b){var q=a53i;super({'name':a,'description':b,'size':Size[q(0x89)],'category':Category['Gloves'],'shape':Shape[q(0x72)],'color':Color[q(0x96)],'texture':Texture['Smooth'],'rating':Rating[q(0x8e)],'weight':0x1});}}function a53c(){var C=['author','35750WkKAFY','637899WHvWtH','Legendary','ArmArmor','562434ayosVY','BodyArmor','Gold','Smooth','Unknown\x20Author','14AzDLFT','2307905qMRDdY','This\x20is\x20a\x20key,\x20and\x20you\x20cannot\x20just\x20\x22use\x22\x20it.\x20Try\x20\x22unlock\x22','Metallic','Rectangle','Circle','Short\x20Sword','232083JAEuki','description','toString','402JCYuti','Unknown','Blade','Book','14718rCwGfa','Cup','Medium','Yellow','name','Rifle','Use\x20it\x20for\x20what?\x20Try\x20equipping\x20it\x20\x22equip\x20short\x20sword\x22','A\x20legendary\x20cup\x20believed\x20to\x20have\x20miraculous\x20powers.\x20It\x20shimmers\x20with\x20an\x20ethereal\x20glow.','1079cqNRjW','2328ibbveA','pageCount','Weapon','Sniper\x20Rifle','publishDate','Small','Rare','32hmAfyt','4jXPluJ','Grey','Common','use','Holy\x20Grail','2610JEgFER','Tiny','\x20aloft,\x20feeling\x20its\x20immense\x20power.','A\x20well-balanced\x20short\x20sword,\x20ideal\x20for\x20close\x20combat.','You\x20hold\x20the\x20','Brown','Large','(((.+)+)+)+$','Key'];a53c=function(){return C;};return a53c();}export class Gauntlets extends Item{constructor(a,b){var r=a53i;super({'name':a,'description':b,'size':Size[r(0x7d)],'category':Category[r(0x9e)],'shape':Shape[r(0x71)],'color':Color[r(0x8d)],'texture':Texture[r(0x70)],'rating':Rating[r(0x8e)],'weight':0x3});}}function a53d(a,b){var c=a53c();return a53d=function(d,e){d=d-0x6f;var f=c[d];return f;},a53d(a,b);}export class Key extends Item{constructor(a,b){var s=a53i;super({'name':a,'description':b,'size':Size[s(0x92)],'category':Category[s(0x99)],'shape':Shape[s(0x71)],'color':Color[s(0x7e)],'texture':Texture['Smooth'],'rating':Rating[s(0x8e)],'weight':0x0});}[a53i(0x8f)](){var t=a53i;return t(0x6f);}}export class Weapon extends Item{constructor(a,b){var u=a53i;super({'name':a,'description':b,'size':Size[u(0x7d)],'category':Category[u(0x86)],'shape':Shape[u(0x79)],'color':Color[u(0x8d)],'texture':Texture[u(0x70)],'rating':Rating['Common'],'weight':0x3});}[a53i(0x8f)](){var v=a53i;return v(0x81);}}export class Book extends Item{[a53i(0x9a)];['publishDate'];[a53i(0x85)];constructor(a,b='A\x20mysterious\x20book.',c=a53i(0xa3)){var w=a53i;super({'name':a,'description':b,'size':Size[w(0x7d)],'category':Category[w(0x7a)],'shape':Shape[w(0x71)],'color':Color[w(0x96)],'texture':Texture[w(0xa2)],'rating':Rating['Common'],'weight':0x1}),this[w(0x9a)]=c,this[w(0x88)]=new Date(),this[w(0x85)]=0x64;}[a53i(0x8f)](){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 x=a53i;super({'name':x(0x73),'description':x(0x94),'size':Size['Medium'],'category':Category[x(0x86)],'shape':Shape[x(0x79)],'color':Color[x(0x8d)],'texture':Texture['Metallic'],'rating':Rating[x(0x8e)],'weight':0x3});}['use'](){var y=a53i;return y(0x81);}}export class SniperRifle extends Item{constructor(){var z=a53i;super({'name':z(0x87),'description':'An\x20accurate,\x20long\x20range,\x205\x20round\x20rifle\x20with\x20a\x208x\x20scope.','size':Size['Large'],'category':Category[z(0x86)],'shape':Shape[z(0x80)],'color':Color[z(0x96)],'texture':Texture[z(0xa2)],'rating':Rating[z(0x8e)],'weight':0x5});}['use'](){return'You\x20suck\x20at\x20using\x20it.\x20\x20Try\x20equipping\x20it\x20\x22equip\x20sniper\x20rifle\x22';}}export class HolyGrail extends Item{constructor(){var A=a53i;super({'name':A(0x90),'description':A(0x82),'size':Size[A(0x89)],'category':Category[A(0x7c)],'shape':Shape[A(0x72)],'color':Color[A(0xa1)],'texture':Texture[A(0x70)],'rating':Rating[A(0x9d)],'weight':0x1});}['use'](){var B=a53i;return B(0x95)+this[B(0x7f)]+B(0x93);}}
1
+ var a53j=a53d;(function(a,b){var f=a53d,c=a();while(!![]){try{var d=parseInt(f(0x206))/0x1+-parseInt(f(0x1f1))/0x2*(-parseInt(f(0x207))/0x3)+parseInt(f(0x1f0))/0x4*(-parseInt(f(0x20a))/0x5)+-parseInt(f(0x1ef))/0x6*(parseInt(f(0x1fd))/0x7)+-parseInt(f(0x1df))/0x8+parseInt(f(0x201))/0x9+parseInt(f(0x1e2))/0xa*(parseInt(f(0x1ee))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a53c,0x6b1af));var a53b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a53d;if(c){var e=c[g(0x20f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a53a=a53b(this,function(){var h=a53d;return a53a[h(0x1fe)]()[h(0x1db)](h(0x1e9))[h(0x1fe)]()[h(0x1f8)](a53a)[h(0x1db)](h(0x1e9));});a53a();import{Size,Category,Shape,Color,Texture,Rating}from'../types/enums.js';import{Item}from'../models/item.js';export class BasicItem extends Item{constructor(a,b){var i=a53d;super({'name':a,'description':b,'size':Size[i(0x1e7)],'category':Category[i(0x1f7)],'shape':Shape[i(0x1f5)],'color':Color[i(0x1e4)],'texture':Texture[i(0x200)],'rating':Rating[i(0x20c)],'weight':0x1});}[a53j(0x1e1)](){var k=a53j;return this[k(0x202)];}}export class Sword extends Item{constructor(a,b){var l=a53j;super({'name':a,'description':b,'size':Size['Medium'],'category':Category['Weapon'],'shape':Shape['Blade'],'color':Color[l(0x1ec)],'texture':Texture[l(0x1fb)],'rating':Rating[l(0x20c)],'weight':0x3});}}function a53d(a,b){var c=a53c();return a53d=function(d,e){d=d-0x1da;var f=c[d];return f;},a53d(a,b);}export class Rifle extends Item{constructor(a,b){var m=a53j;super({'name':a,'description':b,'size':Size[m(0x211)],'category':Category[m(0x1f2)],'shape':Shape['Rifle'],'color':Color[m(0x204)],'texture':Texture[m(0x1fb)],'rating':Rating['Rare'],'weight':0x7});}}export class Helmet extends Item{constructor(a,b){var n=a53j;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[n(0x1f4)],'shape':Shape[n(0x1e8)],'color':Color[n(0x1ec)],'texture':Texture[n(0x1fb)],'rating':Rating[n(0x20c)],'weight':0x2});}}export class BodyArmor extends Item{constructor(a,b){var o=a53j;super({'name':a,'description':b,'size':Size[o(0x211)],'category':Category[o(0x1fc)],'shape':Shape['Rectangle'],'color':Color['Grey'],'texture':Texture['Metallic'],'rating':Rating[o(0x20c)],'weight':0xa});}}export class LegArmor extends Item{constructor(a,b){var p=a53j;super({'name':a,'description':b,'size':Size[p(0x1e7)],'category':Category[p(0x1e3)],'shape':Shape[p(0x1f5)],'color':Color[p(0x1ec)],'texture':Texture[p(0x1fb)],'rating':Rating[p(0x20c)],'weight':0x6});}}export class Boots extends Item{constructor(a,b){var q=a53j;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[q(0x209)],'shape':Shape[q(0x1e8)],'color':Color[q(0x204)],'texture':Texture[q(0x200)],'rating':Rating[q(0x20c)],'weight':0x2});}}export class Gloves extends Item{constructor(a,b){var r=a53j;super({'name':a,'description':b,'size':Size[r(0x1ea)],'category':Category[r(0x214)],'shape':Shape[r(0x1e8)],'color':Color[r(0x204)],'texture':Texture['Smooth'],'rating':Rating[r(0x20c)],'weight':0x1});}}export class Gauntlets extends Item{constructor(a,b){var s=a53j;super({'name':a,'description':b,'size':Size[s(0x1e7)],'category':Category[s(0x210)],'shape':Shape[s(0x1f5)],'color':Color['Grey'],'texture':Texture[s(0x1fb)],'rating':Rating[s(0x20c)],'weight':0x3});}}export class Key extends Item{constructor(a,b){var t=a53j;super({'name':a,'description':b,'size':Size[t(0x1de)],'category':Category[t(0x203)],'shape':Shape[t(0x1f5)],'color':Color['Yellow'],'texture':Texture[t(0x200)],'rating':Rating['Common'],'weight':0x0});}[a53j(0x1e1)](){var u=a53j;return u(0x1ff);}}export class Weapon extends Item{constructor(a,b){var v=a53j;super({'name':a,'description':b,'size':Size[v(0x1e7)],'category':Category[v(0x1f2)],'shape':Shape['Blade'],'color':Color[v(0x1ec)],'texture':Texture[v(0x1fb)],'rating':Rating[v(0x20c)],'weight':0x3});}['use'](){var w=a53j;return w(0x1dd);}}export class Book extends Item{[a53j(0x1e6)];[a53j(0x20b)];[a53j(0x212)];constructor(a,b='A\x20mysterious\x20book.',c=a53j(0x213)){var x=a53j;super({'name':a,'description':b,'size':Size[x(0x1e7)],'category':Category[x(0x1f3)],'shape':Shape[x(0x1f5)],'color':Color['Brown'],'texture':Texture[x(0x200)],'rating':Rating[x(0x20c)],'weight':0x1}),this[x(0x1e6)]=c,this[x(0x20b)]=new Date(),this[x(0x212)]=0x64;}[a53j(0x1e1)](){return'There\x20is\x20a\x20bookmark,\x20you\x20open\x20the\x20book\x20to\x20the\x20page\x20and\x20you\x20see\x20a\x20note\x20saying\x20\x22secret123\x22';}}function a53c(){var E=['587709HbJCFr','42027jmshPl','You\x20suck\x20at\x20using\x20it.\x20\x20Try\x20equipping\x20it\x20\x22equip\x20sniper\x20rifle\x22','Boots','5lexnGD','publishDate','Common','A\x20well-balanced\x20short\x20sword,\x20ideal\x20for\x20close\x20combat.','Holy\x20Grail','apply','ArmArmor','Large','pageCount','Unknown\x20Author','Gloves','Sniper\x20Rifle','search','\x20aloft,\x20feeling\x20its\x20immense\x20power.','Use\x20it\x20for\x20what?\x20Try\x20equipping\x20it\x20\x22equip\x20short\x20sword\x22','Tiny','5400600LaDXTB','An\x20accurate,\x20long\x20range,\x205\x20round\x20rifle\x20with\x20a\x208x\x20scope.','use','28750BRpCwE','LegArmor','Yellow','Blade','author','Medium','Circle','(((.+)+)+)+$','Small','name','Grey','Cup','1595SOnwQu','73518HrkPzr','2633324CZWpLr','68ILRNhT','Weapon','Book','Helmet','Rectangle','Legendary','Unknown','constructor','Gold','A\x20legendary\x20cup\x20believed\x20to\x20have\x20miraculous\x20powers.\x20It\x20shimmers\x20with\x20an\x20ethereal\x20glow.','Metallic','BodyArmor','287szIIAG','toString','This\x20is\x20a\x20key,\x20and\x20you\x20cannot\x20just\x20\x22use\x22\x20it.\x20Try\x20\x22unlock\x22','Smooth','7142328LLOowr','description','Key','Brown','Short\x20Sword'];a53c=function(){return E;};return a53c();}export class ShortSword extends Item{constructor(){var y=a53j;super({'name':y(0x205),'description':y(0x20d),'size':Size['Medium'],'category':Category[y(0x1f2)],'shape':Shape[y(0x1e5)],'color':Color['Grey'],'texture':Texture[y(0x1fb)],'rating':Rating['Common'],'weight':0x3});}[a53j(0x1e1)](){var z=a53j;return z(0x1dd);}}export class SniperRifle extends Item{constructor(){var A=a53j;super({'name':A(0x1da),'description':A(0x1e0),'size':Size[A(0x211)],'category':Category['Weapon'],'shape':Shape['Rifle'],'color':Color['Brown'],'texture':Texture['Smooth'],'rating':Rating['Common'],'weight':0x5});}[a53j(0x1e1)](){var B=a53j;return B(0x208);}}export class HolyGrail extends Item{constructor(){var C=a53j;super({'name':C(0x20e),'description':C(0x1fa),'size':Size[C(0x1ea)],'category':Category[C(0x1ed)],'shape':Shape['Circle'],'color':Color[C(0x1f9)],'texture':Texture[C(0x1fb)],'rating':Rating[C(0x1f6)],'weight':0x1});}[a53j(0x1e1)](){var D=a53j;return'You\x20hold\x20the\x20'+this[D(0x1eb)]+D(0x1dc);}}
@@ -1 +1 @@
1
- const a55i=a55d;(function(a,b){const f=a55d,c=a();while(!![]){try{const d=-parseInt(f(0x1db))/0x1*(-parseInt(f(0x21a))/0x2)+parseInt(f(0x21f))/0x3*(parseInt(f(0x1e3))/0x4)+parseInt(f(0x1eb))/0x5*(-parseInt(f(0x200))/0x6)+-parseInt(f(0x235))/0x7*(-parseInt(f(0x1e2))/0x8)+-parseInt(f(0x211))/0x9+parseInt(f(0x207))/0xa*(-parseInt(f(0x23a))/0xb)+-parseInt(f(0x1d2))/0xc*(parseInt(f(0x1ea))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a55c,0x87184));function a55c(){const j=['apply','A\x20book\x20containing\x20a\x20mysterious\x20riddle.','Alchemy\x20Lab','A\x20dimly\x20lit\x20passage\x20with\x20walls\x20made\x20of\x20stone.','Holy\x20Grail','holyGrail','Courtyard','A\x20shiny\x20golden\x20key\x20with\x20intricate\x20engravings.','A\x20towering\x20structure\x20giving\x20a\x20bird’s-eye\x20view\x20of\x20the\x20surroundings.','rifle','Amulet\x20of\x20Awakening','Treasure\x20Room','Entrance\x20Hall','Corporate\x20Creditstick','1820JRXaTL','The\x20rain-soaked\x20streets\x20of\x20Seattle\x20with\x20neon\x20lights\x20reflecting\x20off\x20wet\x20pavement.\x20The\x20distant\x20sound\x20of\x20corporate\x20security\x20drones\x20can\x20be\x20heard.','A\x20serene\x20courtyard\x20with\x20a\x20gentle\x20fountain.\x20There\x20are\x20birds\x20bathing.','Golden\x20Key','west','12793kJxkZU','A\x20powerful\x20amulet\x20said\x20to\x20wake\x20spirits\x20from\x20slumber.','inside','NORTH','search','Ancient\x20Gem','Blood-stained\x20Key','basic','A\x20hideout\x20filled\x20with\x20magical\x20artifacts,\x20wards,\x20and\x20a\x20few\x20summoned\x20spirits\x20guarding\x20the\x20place.','SOUTH','Emblem\x20Shield','Sniper\x20Rifle','Central\x20Chamber','release','Central\x20Chamber\x20Key','Ares\x20Predator','Drones\x20and\x20vehicles\x20being\x20modified,\x20tools\x20everywhere,\x20and\x20a\x20rigger\x20jacked\x20in\x20to\x20a\x20command\x20console.','Watch\x20Tower','sword','key','A\x20digital\x20realm\x20with\x20information\x20streams\x20flowing\x20like\x20rivers.','Jackpoint\x20Login','A\x20clear\x20glass\x20vial.','The\x20chains\x20rattle\x20ominously,\x20but\x20nothing\x20else\x20happens.','60bRJMvh','A\x20creditstick\x20loaded\x20with\x20nuyen.','(((.+)+)+)+$','Riddle\x20Book','The\x20legendary\x20Holy\x20Grail.','Secret\x20Passage','south','The\x20chest\x20has\x20a\x20gem-shaped\x20socket.','A\x20gem\x20radiating\x20a\x20mysterious\x20aura.','7073cdFKpt','Corp\x20Enclave','decrypt','A\x20hidden\x20alley\x20in\x20the\x20Barrens\x20where\x20shadowrunners\x20meet\x20up\x20for\x20covert\x20jobs.','A\x20locked\x20glass\x20gun\x20cabinet\x20stands\x20here,\x20with\x20a\x20keypad\x20awaiting\x20a\x20password.','outside','The\x20high-security\x20corporate\x20zone,\x20complete\x20with\x20looming\x20skyscrapers\x20and\x20security\x20checkpoints.','21216nQdkjN','3686516EYuFMe','Empty\x20vial','A\x20grand\x20entrance\x20with\x20huge\x20wooden\x20doors\x20behind\x20and\x20a\x20dimly\x20lit\x20corridor\x20ahead.','Barrens\x20Hideout','The\x20gang\x20members\x20block\x20your\x20way,\x20suspicious\x20of\x20your\x20motives.','Golden\x20Chalice','cup','4595838ppdsDM','152610WQHjrU','Matrix\x20Data\x20Haven','toString','Downtown\x20Seattle','Armory','MCT\x20Fly-Spy','The\x20gang\x20members\x20nod\x20and\x20let\x20you\x20pass\x20deeper\x20into\x20the\x20Barrens.','secret123','Unlock\x20the\x20encrypted\x20data\x20to\x20receive\x20your\x20next\x20mission.','Encrypted\x20Data\x20Key','Glittering\x20treasures\x20from\x20floor\x20to\x20ceiling.','Guard\x27s\x20Log\x20Book','The\x20magic\x20in\x20the\x20room\x20grows\x20more\x20oppressive,\x20resisting\x20your\x20efforts.','weapon','A\x20small\x20surveillance\x20drone.','To\x20enter\x20deeper\x20into\x20the\x20Barrens,\x20you\x20must\x20show\x20allegiance\x20to\x20one\x20of\x20the\x20gangs.','Chad\x20the\x20stupid\x20guard','Barrens\x20Entrance','Mage\x27s\x20Lair','gem','A\x20chalice\x20made\x20of\x20pure\x20gold.','6VEhiQE','north','The\x20gate\x20slowly\x20opens\x20revealing\x20the\x20path\x20to\x20the\x20Central\x20Chamber.','Break\x20the\x20ward\x20to\x20reveal\x20the\x20hidden\x20magical\x20artifact.','A\x20large\x20circular\x20room\x20with\x20four\x20doors.','The\x20chest\x20remains\x20firmly\x20shut.','The\x20chest\x20unlocks\x20revealing\x20the\x20chalice.','1930rXWwmo','An\x20old\x20and\x20rusted\x20sword.','A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.','document','constructor','A\x20key\x20made\x20of\x20pure\x20digital\x20energy.','east','A\x20popular\x20heavy\x20pistol\x20among\x20shadowrunners.','Speak\x20the\x20word\x20to\x20free\x20the\x20ghost.','book','992574XHGgNZ','open\x20sesame','Library','Rigger\x27s\x20Workshop','Gang\x20Insignia','A\x20room\x20glittering\x20with\x20gold\x20and\x20jewels.','EAST','That\x20passcode\x20is\x20incorrect','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','304IcdkiO','OUTSIDE','A\x20virtual\x20portal\x20in\x20the\x20Matrix.\x20Glowing\x20neon\x20lights\x20everywhere,\x20with\x20digital\x20sprites\x20zipping\x20by.','amulet','Torture\x20Chamber','3nAQJYp','Detailed\x20security\x20plans\x20for\x20a\x20corporate\x20building.','A\x20quiet\x20room\x20filled\x20with\x20bookshelves,\x20a\x20large\x20desk,\x20and\x20scattered\x20papers.','Study','A\x20vast\x20library\x20filled\x20with\x20ancient\x20books.\x20[START]','Dark,\x20grim\x20with\x20chains\x20on\x20walls\x20and\x20an\x20eerie\x20silence.','creditstick','The\x20outskirts\x20of\x20the\x20lawless\x20Redmond\x20Barrens.\x20Gang\x20graffiti\x20is\x20everywhere.'];a55c=function(){return j;};return a55c();}const a55b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a55d;if(c){const e=c[g(0x227)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a55a=a55b(this,function(){const h=a55d;return a55a[h(0x1ed)]()['search'](h(0x1d4))[h(0x1ed)]()[h(0x20b)](a55a)[h(0x23e)]('(((.+)+)+)+$');});a55a();function a55d(a,b){const c=a55c();return a55d=function(d,e){d=d-0x1c1;let f=c[d];return f;},a55d(a,b);}export const rooms=[{'name':a55i(0x213),'description':a55i(0x223),'isStartRoom':!![],'items':[{'type':a55i(0x1cd),'name':a55i(0x238),'description':a55i(0x22e)},{'type':a55i(0x210),'name':a55i(0x1f6),'description':'A\x20thin\x20log\x20book','content':a55i(0x1fb)}],'exits':[{'direction':a55i(0x217),'targetRoom':'Secret\x20Passage'}]},{'name':a55i(0x1d7),'description':a55i(0x22a),'exits':[{'direction':a55i(0x23d),'targetRoom':'Treasure\x20Room','keyRequired':a55i(0x238)},{'direction':a55i(0x1c3),'targetRoom':a55i(0x22d)}]},{'name':a55i(0x232),'description':a55i(0x216),'items':[{'type':a55i(0x22c),'name':a55i(0x22b),'description':a55i(0x1d6)}]},{'name':a55i(0x22d),'description':a55i(0x237),'roomType':a55i(0x21b),'exits':[{'direction':'UP','targetRoom':a55i(0x1cb)}]},{'name':a55i(0x1cb),'description':a55i(0x22f),'roomType':a55i(0x21b),'puzzle':{'requiredPhrase':a55i(0x1f2),'riddle':a55i(0x1df),'rewardItem':{'type':a55i(0x230),'name':a55i(0x1c5),'description':'A\x20long-range\x20weapon.'},'successMessage':a55i(0x219),'failureMessage':a55i(0x218)}}];export const dungeonConfig=[{'name':a55i(0x233),'description':a55i(0x1e5),'isStartRoom':!![],'roomType':a55i(0x23c),'puzzle':{'requiredPhrase':a55i(0x212),'riddle':'Speak\x20the\x20ancient\x20phrase\x20to\x20unlock\x20the\x20Central\x20Chamber.','rewardItem':{'type':a55i(0x1cd),'name':'Central\x20Chamber\x20Key','description':'A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.'},'successMessage':a55i(0x202),'failureMessage':'Nothing\x20happens.'},'exits':[{'direction':a55i(0x201),'targetRoom':a55i(0x222)},{'direction':'east','targetRoom':a55i(0x1c6),'keyRequired':a55i(0x1c8)}]},{'name':'Study','description':a55i(0x221),'roomType':a55i(0x23c),'items':[{'type':a55i(0x210),'name':a55i(0x1d5),'description':a55i(0x228),'content':'When\x20is\x20a\x20door\x20not\x20a\x20door?\x20When\x20it\x27s\x20ajar!'},{'type':a55i(0x1cd),'name':'Central\x20Chamber\x20Key','description':a55i(0x209)}],'exits':[{'direction':a55i(0x1d8),'targetRoom':a55i(0x233)},{'direction':a55i(0x20d),'targetRoom':'Alchemy\x20Lab'}]},{'name':'Alchemy\x20Lab','description':'A\x20room\x20filled\x20with\x20potions,\x20beakers,\x20and\x20an\x20enchantment\x20circle.','roomType':a55i(0x23c),'items':[{'type':a55i(0x1c1),'name':a55i(0x1e4),'description':a55i(0x1d0)}],'exits':[{'direction':a55i(0x239),'targetRoom':'Study'},{'direction':a55i(0x201),'targetRoom':'Armory'}]},{'name':a55i(0x1ef),'description':'Rows\x20of\x20ancient\x20weapons\x20and\x20armors.','roomType':a55i(0x23c),'items':[{'type':'shield','name':a55i(0x1c4),'description':'A\x20shield\x20with\x20the\x20emblem\x20of\x20the\x20dungeon.'},{'type':a55i(0x1cc),'name':'Rusted\x20Sword','description':a55i(0x208)}],'exits':[{'direction':a55i(0x1d8),'targetRoom':a55i(0x229)},{'direction':a55i(0x20d),'targetRoom':'Central\x20Chamber'}]},{'name':a55i(0x1c6),'description':a55i(0x204),'roomType':'inside','exits':[{'direction':a55i(0x239),'targetRoom':a55i(0x1ef)},{'direction':a55i(0x1d8),'targetRoom':'Entrance\x20Hall'},{'direction':a55i(0x201),'targetRoom':a55i(0x21e)},{'direction':a55i(0x20d),'targetRoom':a55i(0x232)}]},{'name':'Torture\x20Chamber','description':a55i(0x224),'roomType':a55i(0x23c),'items':[{'type':'key','name':a55i(0x240),'description':'A\x20key\x20stained\x20with\x20old\x20blood.'}],'puzzle':{'requiredPhrase':a55i(0x1c7),'riddle':a55i(0x20f),'rewardItem':{'type':a55i(0x1fe),'name':a55i(0x23f),'description':a55i(0x1da)},'successMessage':'The\x20ghost\x20thanks\x20you\x20and\x20disappears,\x20leaving\x20behind\x20the\x20gem.','failureMessage':a55i(0x1d1)},'exits':[{'direction':a55i(0x1d8),'targetRoom':a55i(0x1c6)}]},{'name':a55i(0x232),'description':a55i(0x1f5),'roomType':a55i(0x23c),'puzzle':{'requiredPhrase':'insert\x20gem','riddle':a55i(0x1d9),'rewardItem':{'type':a55i(0x1e9),'name':a55i(0x1e8),'description':a55i(0x1ff)},'successMessage':a55i(0x206),'failureMessage':a55i(0x205)},'exits':[{'direction':a55i(0x239),'targetRoom':a55i(0x1c6)}]}];export const shadowrunConfig=[{'name':a55i(0x1cf),'description':a55i(0x21c),'isStartRoom':!![],'roomType':a55i(0x23c),'exits':[{'direction':'north','targetRoom':'Downtown\x20Seattle'},{'direction':'up','targetRoom':a55i(0x1ec)}]},{'name':a55i(0x1ec),'description':a55i(0x1ce),'roomType':a55i(0x23c),'puzzle':{'requiredPhrase':a55i(0x1dd),'riddle':a55i(0x1f3),'rewardItem':{'type':a55i(0x1cd),'name':a55i(0x1f4),'description':a55i(0x20c)},'successMessage':'The\x20data\x20stream\x20reveals\x20a\x20location:\x20Downtown\x20Seattle.','failureMessage':'The\x20data\x20remains\x20encrypted.'},'exits':[{'direction':'down','targetRoom':a55i(0x1cf)}]},{'name':'Downtown\x20Seattle','description':a55i(0x236),'roomType':'outside','exits':[{'direction':'south','targetRoom':a55i(0x1cf)},{'direction':a55i(0x20d),'targetRoom':a55i(0x1fc)},{'direction':a55i(0x239),'targetRoom':a55i(0x1dc)}]},{'name':a55i(0x1fc),'description':a55i(0x226),'roomType':a55i(0x1e0),'puzzle':{'requiredPhrase':'show\x20loyalty','riddle':a55i(0x1fa),'rewardItem':{'type':a55i(0x1cd),'name':a55i(0x215),'description':'A\x20badge\x20proving\x20your\x20loyalty\x20to\x20one\x20of\x20the\x20Barrens\x27\x20gangs.'},'successMessage':a55i(0x1f1),'failureMessage':a55i(0x1e7)},'exits':[{'direction':a55i(0x239),'targetRoom':a55i(0x1ee)},{'direction':a55i(0x201),'targetRoom':a55i(0x1e6)}]},{'name':a55i(0x1dc),'description':a55i(0x1e1),'roomType':a55i(0x23c),'items':[{'type':a55i(0x225),'name':a55i(0x234),'description':a55i(0x1d3)},{'type':a55i(0x20a),'name':'CorpSec\x20Plans','description':a55i(0x220)}],'exits':[{'direction':a55i(0x20d),'targetRoom':a55i(0x1ee)}]},{'name':a55i(0x1e6),'description':a55i(0x1de),'roomType':'outside','items':[{'type':a55i(0x1f8),'name':a55i(0x1c9),'description':a55i(0x20e)}],'exits':[{'direction':a55i(0x1d8),'targetRoom':a55i(0x1fc)},{'direction':'north','targetRoom':'Mage\x27s\x20Lair'},{'direction':a55i(0x20d),'targetRoom':a55i(0x214)}]},{'name':a55i(0x1fd),'description':a55i(0x1c2),'roomType':a55i(0x23c),'puzzle':{'requiredPhrase':'disenchant','riddle':a55i(0x203),'rewardItem':{'type':a55i(0x21d),'name':a55i(0x231),'description':a55i(0x23b)},'successMessage':'The\x20ward\x20shatters,\x20revealing\x20the\x20amulet.','failureMessage':a55i(0x1f7)},'exits':[{'direction':a55i(0x1d8),'targetRoom':a55i(0x1e6)}]},{'name':a55i(0x214),'description':a55i(0x1ca),'roomType':a55i(0x23c),'items':[{'type':'drone','name':a55i(0x1f0),'description':a55i(0x1f9)}],'exits':[{'direction':a55i(0x239),'targetRoom':a55i(0x1e6)}]}];
1
+ const a55h=a55d;(function(a,b){const f=a55d,c=a();while(!![]){try{const d=-parseInt(f(0xf4))/0x1*(-parseInt(f(0xf6))/0x2)+-parseInt(f(0xcb))/0x3*(parseInt(f(0x10a))/0x4)+parseInt(f(0x118))/0x5*(parseInt(f(0x110))/0x6)+-parseInt(f(0xef))/0x7*(parseInt(f(0xf2))/0x8)+parseInt(f(0xfa))/0x9+-parseInt(f(0xee))/0xa*(-parseInt(f(0x100))/0xb)+-parseInt(f(0xfc))/0xc*(-parseInt(f(0xd8))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a55c,0xb8bd1));const a55b=(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;};}()),a55a=a55b(this,function(){const g=a55d;return a55a[g(0xd9)]()['search'](g(0xe2))[g(0xd9)]()[g(0xcf)](a55a)[g(0x129)](g(0xe2));});a55a();export const rooms=[{'name':'Library','description':a55h(0xc4),'isStartRoom':!![],'items':[{'type':a55h(0xff),'name':a55h(0xde),'description':'A\x20shiny\x20golden\x20key\x20with\x20intricate\x20engravings.'},{'type':a55h(0x119),'name':a55h(0x101),'description':a55h(0xd6),'content':a55h(0xc9)}],'exits':[{'direction':a55h(0xd5),'targetRoom':a55h(0x112)}]},{'name':a55h(0x112),'description':a55h(0xe0),'exits':[{'direction':'NORTH','targetRoom':a55h(0x12a),'keyRequired':'Golden\x20Key'},{'direction':a55h(0xed),'targetRoom':'Courtyard'}]},{'name':a55h(0x12a),'description':a55h(0x115),'items':[{'type':a55h(0x137),'name':'Holy\x20Grail','description':a55h(0x10d)}]},{'name':a55h(0xe1),'description':a55h(0x134),'roomType':a55h(0xc1),'exits':[{'direction':'UP','targetRoom':a55h(0x12e)}]},{'name':a55h(0x12e),'description':a55h(0x133),'roomType':a55h(0xc1),'puzzle':{'requiredPhrase':a55h(0xbf),'riddle':a55h(0x117),'rewardItem':{'type':'rifle','name':'Sniper\x20Rifle','description':a55h(0xec)},'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':a55h(0xfd)}}];export const dungeonConfig=[{'name':a55h(0x125),'description':'A\x20grand\x20entrance\x20with\x20huge\x20wooden\x20doors\x20behind\x20and\x20a\x20dimly\x20lit\x20corridor\x20ahead.','isStartRoom':!![],'roomType':a55h(0xcc),'puzzle':{'requiredPhrase':a55h(0x11a),'riddle':a55h(0xf3),'rewardItem':{'type':a55h(0xff),'name':a55h(0xdf),'description':'A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.'},'successMessage':a55h(0x121),'failureMessage':a55h(0x114)},'exits':[{'direction':a55h(0xc6),'targetRoom':a55h(0xf8)},{'direction':a55h(0xc3),'targetRoom':a55h(0x116),'keyRequired':a55h(0xdf)}]},{'name':a55h(0xf8),'description':'A\x20quiet\x20room\x20filled\x20with\x20bookshelves,\x20a\x20large\x20desk,\x20and\x20scattered\x20papers.','roomType':a55h(0xcc),'items':[{'type':a55h(0x119),'name':'Riddle\x20Book','description':a55h(0x131),'content':'When\x20is\x20a\x20door\x20not\x20a\x20door?\x20When\x20it\x27s\x20ajar!'},{'type':a55h(0xff),'name':a55h(0xdf),'description':a55h(0xf0)}],'exits':[{'direction':'south','targetRoom':a55h(0x125)},{'direction':a55h(0xc3),'targetRoom':'Alchemy\x20Lab'}]},{'name':a55h(0x109),'description':a55h(0xca),'roomType':a55h(0xcc),'items':[{'type':a55h(0x12f),'name':a55h(0x10e),'description':a55h(0x130)}],'exits':[{'direction':'west','targetRoom':a55h(0xf8)},{'direction':a55h(0xc6),'targetRoom':'Armory'}]},{'name':a55h(0xc2),'description':a55h(0xd2),'roomType':a55h(0xcc),'items':[{'type':a55h(0x105),'name':'Emblem\x20Shield','description':a55h(0x10c)},{'type':a55h(0x132),'name':a55h(0x124),'description':a55h(0xe6)}],'exits':[{'direction':a55h(0xda),'targetRoom':'Alchemy\x20Lab'},{'direction':a55h(0xc3),'targetRoom':a55h(0x116)}]},{'name':a55h(0x116),'description':a55h(0x123),'roomType':a55h(0xcc),'exits':[{'direction':'west','targetRoom':a55h(0xc2)},{'direction':a55h(0xda),'targetRoom':'Entrance\x20Hall'},{'direction':a55h(0xc6),'targetRoom':a55h(0x12b)},{'direction':a55h(0xc3),'targetRoom':a55h(0x12a)}]},{'name':'Torture\x20Chamber','description':a55h(0x10f),'roomType':'inside','items':[{'type':'key','name':a55h(0xe3),'description':a55h(0xf5)}],'puzzle':{'requiredPhrase':'release','riddle':'Speak\x20the\x20word\x20to\x20free\x20the\x20ghost.','rewardItem':{'type':'gem','name':a55h(0xd3),'description':a55h(0x12d)},'successMessage':a55h(0xf9),'failureMessage':a55h(0xd4)},'exits':[{'direction':a55h(0xda),'targetRoom':a55h(0x116)}]},{'name':a55h(0x12a),'description':a55h(0xc0),'roomType':'inside','puzzle':{'requiredPhrase':a55h(0x107),'riddle':a55h(0x128),'rewardItem':{'type':a55h(0xe9),'name':a55h(0xcd),'description':a55h(0xc5)},'successMessage':a55h(0xf1),'failureMessage':a55h(0xdd)},'exits':[{'direction':'west','targetRoom':'Central\x20Chamber'}]}];function a55c(){const i=['The\x20gang\x20members\x20block\x20your\x20way,\x20suspicious\x20of\x20your\x20motives.','A\x20shield\x20with\x20the\x20emblem\x20of\x20the\x20dungeon.','The\x20legendary\x20Holy\x20Grail.','Empty\x20vial','Dark,\x20grim\x20with\x20chains\x20on\x20walls\x20and\x20an\x20eerie\x20silence.','20478UqOxYy','The\x20high-security\x20corporate\x20zone,\x20complete\x20with\x20looming\x20skyscrapers\x20and\x20security\x20checkpoints.','Secret\x20Passage','Ares\x20Predator','Nothing\x20happens.','A\x20room\x20glittering\x20with\x20gold\x20and\x20jewels.','Central\x20Chamber','A\x20locked\x20glass\x20gun\x20cabinet\x20stands\x20here,\x20with\x20a\x20keypad\x20awaiting\x20a\x20password.','80MqZsZC','book','open\x20sesame','document','outside','amulet','Rigger\x27s\x20Workshop','A\x20hideout\x20filled\x20with\x20magical\x20artifacts,\x20wards,\x20and\x20a\x20few\x20summoned\x20spirits\x20guarding\x20the\x20place.','Corporate\x20Creditstick','The\x20gate\x20slowly\x20opens\x20revealing\x20the\x20path\x20to\x20the\x20Central\x20Chamber.','Barrens\x20Entrance','A\x20large\x20circular\x20room\x20with\x20four\x20doors.','Rusted\x20Sword','Entrance\x20Hall','A\x20badge\x20proving\x20your\x20loyalty\x20to\x20one\x20of\x20the\x20Barrens\x27\x20gangs.','west','The\x20chest\x20has\x20a\x20gem-shaped\x20socket.','search','Treasure\x20Room','Torture\x20Chamber','Break\x20the\x20ward\x20to\x20reveal\x20the\x20hidden\x20magical\x20artifact.','A\x20gem\x20radiating\x20a\x20mysterious\x20aura.','Watch\x20Tower','basic','A\x20clear\x20glass\x20vial.','A\x20book\x20containing\x20a\x20mysterious\x20riddle.','sword','A\x20towering\x20structure\x20giving\x20a\x20bird’s-eye\x20view\x20of\x20the\x20surroundings.','A\x20serene\x20courtyard\x20with\x20a\x20gentle\x20fountain.\x20There\x20are\x20birds\x20bathing.','disenchant','A\x20hidden\x20alley\x20in\x20the\x20Barrens\x20where\x20shadowrunners\x20meet\x20up\x20for\x20covert\x20jobs.','holyGrail','Barrens\x20Hideout','secret123','Glittering\x20treasures\x20from\x20floor\x20to\x20ceiling.','OUTSIDE','Armory','east','A\x20vast\x20library\x20filled\x20with\x20ancient\x20books.\x20[START]','A\x20chalice\x20made\x20of\x20pure\x20gold.','north','Amulet\x20of\x20Awakening','Gang\x20Insignia','Chad\x20the\x20stupid\x20guard','A\x20room\x20filled\x20with\x20potions,\x20beakers,\x20and\x20an\x20enchantment\x20circle.','4101XSzKwW','inside','Golden\x20Chalice','decrypt','constructor','Detailed\x20security\x20plans\x20for\x20a\x20corporate\x20building.','The\x20data\x20remains\x20encrypted.','Rows\x20of\x20ancient\x20weapons\x20and\x20armors.','Ancient\x20Gem','The\x20chains\x20rattle\x20ominously,\x20but\x20nothing\x20else\x20happens.','EAST','A\x20thin\x20log\x20book','CorpSec\x20Plans','384358FlzZeW','toString','south','Matrix\x20Data\x20Haven','Jackpoint\x20Login','The\x20chest\x20remains\x20firmly\x20shut.','Golden\x20Key','Central\x20Chamber\x20Key','A\x20dimly\x20lit\x20passage\x20with\x20walls\x20made\x20of\x20stone.','Courtyard','(((.+)+)+)+$','Blood-stained\x20Key','Encrypted\x20Data\x20Key','The\x20gang\x20members\x20nod\x20and\x20let\x20you\x20pass\x20deeper\x20into\x20the\x20Barrens.','An\x20old\x20and\x20rusted\x20sword.','A\x20popular\x20heavy\x20pistol\x20among\x20shadowrunners.','MCT\x20Fly-Spy','cup','A\x20small\x20surveillance\x20drone.','Downtown\x20Seattle','A\x20long-range\x20weapon.','SOUTH','43630VWEOXb','1526kbrDpL','A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.','The\x20chest\x20unlocks\x20revealing\x20the\x20chalice.','13976UilkYZ','Speak\x20the\x20ancient\x20phrase\x20to\x20unlock\x20the\x20Central\x20Chamber.','285827QefStT','A\x20key\x20stained\x20with\x20old\x20blood.','8iYcEwD','Mage\x27s\x20Lair','Study','The\x20ghost\x20thanks\x20you\x20and\x20disappears,\x20leaving\x20behind\x20the\x20gem.','1179693wgnVMX','Drones\x20and\x20vehicles\x20being\x20modified,\x20tools\x20everywhere,\x20and\x20a\x20rigger\x20jacked\x20in\x20to\x20a\x20command\x20console.','36bxHKEg','That\x20passcode\x20is\x20incorrect','A\x20digital\x20realm\x20with\x20information\x20streams\x20flowing\x20like\x20rivers.','key','979WZPRZI','Guard\x27s\x20Log\x20Book','weapon','The\x20data\x20stream\x20reveals\x20a\x20location:\x20Downtown\x20Seattle.','The\x20ward\x20shatters,\x20revealing\x20the\x20amulet.','shield','creditstick','insert\x20gem','The\x20magic\x20in\x20the\x20room\x20grows\x20more\x20oppressive,\x20resisting\x20your\x20efforts.','Alchemy\x20Lab','1956VTmwoo'];a55c=function(){return i;};return a55c();}function a55d(a,b){const c=a55c();return a55d=function(d,e){d=d-0xbf;let f=c[d];return f;},a55d(a,b);}export const shadowrunConfig=[{'name':'Jackpoint\x20Login','description':'A\x20virtual\x20portal\x20in\x20the\x20Matrix.\x20Glowing\x20neon\x20lights\x20everywhere,\x20with\x20digital\x20sprites\x20zipping\x20by.','isStartRoom':!![],'roomType':a55h(0xcc),'exits':[{'direction':a55h(0xc6),'targetRoom':a55h(0xeb)},{'direction':'up','targetRoom':a55h(0xdb)}]},{'name':a55h(0xdb),'description':a55h(0xfe),'roomType':a55h(0xcc),'puzzle':{'requiredPhrase':a55h(0xce),'riddle':'Unlock\x20the\x20encrypted\x20data\x20to\x20receive\x20your\x20next\x20mission.','rewardItem':{'type':a55h(0xff),'name':a55h(0xe4),'description':'A\x20key\x20made\x20of\x20pure\x20digital\x20energy.'},'successMessage':a55h(0x103),'failureMessage':a55h(0xd1)},'exits':[{'direction':'down','targetRoom':'Jackpoint\x20Login'}]},{'name':'Downtown\x20Seattle','description':'The\x20rain-soaked\x20streets\x20of\x20Seattle\x20with\x20neon\x20lights\x20reflecting\x20off\x20wet\x20pavement.\x20The\x20distant\x20sound\x20of\x20corporate\x20security\x20drones\x20can\x20be\x20heard.','roomType':a55h(0x11c),'exits':[{'direction':a55h(0xda),'targetRoom':a55h(0xdc)},{'direction':a55h(0xc3),'targetRoom':a55h(0x122)},{'direction':a55h(0x127),'targetRoom':'Corp\x20Enclave'}]},{'name':a55h(0x122),'description':'The\x20outskirts\x20of\x20the\x20lawless\x20Redmond\x20Barrens.\x20Gang\x20graffiti\x20is\x20everywhere.','roomType':a55h(0x11c),'puzzle':{'requiredPhrase':'show\x20loyalty','riddle':'To\x20enter\x20deeper\x20into\x20the\x20Barrens,\x20you\x20must\x20show\x20allegiance\x20to\x20one\x20of\x20the\x20gangs.','rewardItem':{'type':a55h(0xff),'name':a55h(0xc8),'description':a55h(0x126)},'successMessage':a55h(0xe5),'failureMessage':a55h(0x10b)},'exits':[{'direction':a55h(0x127),'targetRoom':'Downtown\x20Seattle'},{'direction':'north','targetRoom':'Barrens\x20Hideout'}]},{'name':'Corp\x20Enclave','description':a55h(0x111),'roomType':'inside','items':[{'type':a55h(0x106),'name':a55h(0x120),'description':'A\x20creditstick\x20loaded\x20with\x20nuyen.'},{'type':a55h(0x11b),'name':a55h(0xd7),'description':a55h(0xd0)}],'exits':[{'direction':a55h(0xc3),'targetRoom':'Downtown\x20Seattle'}]},{'name':'Barrens\x20Hideout','description':a55h(0x136),'roomType':a55h(0x11c),'items':[{'type':a55h(0x102),'name':a55h(0x113),'description':a55h(0xe7)}],'exits':[{'direction':a55h(0xda),'targetRoom':a55h(0x122)},{'direction':'north','targetRoom':a55h(0xf7)},{'direction':'east','targetRoom':a55h(0x11e)}]},{'name':a55h(0xf7),'description':a55h(0x11f),'roomType':a55h(0xcc),'puzzle':{'requiredPhrase':a55h(0x135),'riddle':a55h(0x12c),'rewardItem':{'type':a55h(0x11d),'name':a55h(0xc7),'description':'A\x20powerful\x20amulet\x20said\x20to\x20wake\x20spirits\x20from\x20slumber.'},'successMessage':a55h(0x104),'failureMessage':a55h(0x108)},'exits':[{'direction':a55h(0xda),'targetRoom':a55h(0x138)}]},{'name':a55h(0x11e),'description':a55h(0xfb),'roomType':a55h(0xcc),'items':[{'type':'drone','name':a55h(0xe8),'description':a55h(0xea)}],'exits':[{'direction':a55h(0x127),'targetRoom':a55h(0x138)}]}];
@@ -1 +1 @@
1
- var a56h=a56d;function a56d(a,b){var c=a56c();return a56d=function(d,e){d=d-0x150;var f=c[d];return f;},a56d(a,b);}(function(a,b){var f=a56d,c=a();while(!![]){try{var d=-parseInt(f(0x15c))/0x1+-parseInt(f(0x16f))/0x2*(-parseInt(f(0x153))/0x3)+parseInt(f(0x15b))/0x4*(-parseInt(f(0x166))/0x5)+parseInt(f(0x155))/0x6+-parseInt(f(0x159))/0x7+-parseInt(f(0x17c))/0x8*(-parseInt(f(0x16c))/0x9)+parseInt(f(0x175))/0xa*(parseInt(f(0x179))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a56c,0x9e17f));var a56b=(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;};}()),a56a=a56b(this,function(){var g=a56d;return a56a['toString']()[g(0x164)](g(0x169))[g(0x17a)]()[g(0x162)](a56a)[g(0x164)](g(0x169));});a56a();import{EventEmitter}from'events';function a56c(){var i=['uuid','_maxCarryingWeight','unlockItemOrSolution','items','puzzle','5273030AxVSdg','roomA','exits','_currentLocation','22CuHbKM','toString','isLockable','3376ffCmKj','size','name','description','43275xmTVff','_playerName','1765884YAtqOb','shape','logger','texture','1113070kFyUBI','category','2280052KgWXuq','398418MTJXPc','solved','rating','inventory','isLocked','_inventory','constructor','isStartRoom','search','_logger','5gTKgXA','roomB','characterLocations','(((.+)+)+)+$','player','color','2934DIyvlU','weight','rooms','40JIHRpg'];a56c=function(){return i;};return a56c();}export class AbstractScene{[a56h(0x16e)];[a56h(0x16a)];[a56h(0x157)];[a56h(0x168)];}export class AbstractRoom extends EventEmitter{['name'];['description'];[a56h(0x177)];[a56h(0x15f)];[a56h(0x174)];['roomType'];[a56h(0x163)];}export class AbstractDoor{[a56h(0x176)];[a56h(0x167)];[a56h(0x160)];[a56h(0x172)];[a56h(0x151)];[a56h(0x157)];[a56h(0x17b)];}export class AbstractInventory{[a56h(0x173)];[a56h(0x157)];}export class AbstractItem{[a56h(0x170)];[a56h(0x151)];[a56h(0x152)];[a56h(0x150)];[a56h(0x15a)];[a56h(0x156)];[a56h(0x16b)];[a56h(0x158)];[a56h(0x15e)];[a56h(0x16d)];}export class AbstractPlayer{[a56h(0x154)];[a56h(0x178)];[a56h(0x161)];['_equipment'];[a56h(0x171)];[a56h(0x165)];}export class AbstractPuzzle{[a56h(0x157)];[a56h(0x15d)];}
1
+ var a56i=a56d;(function(a,b){var f=a56d,c=a();while(!![]){try{var d=-parseInt(f(0x1c8))/0x1+parseInt(f(0x1b9))/0x2+parseInt(f(0x1ba))/0x3+-parseInt(f(0x1a9))/0x4*(-parseInt(f(0x1c9))/0x5)+-parseInt(f(0x1bd))/0x6*(-parseInt(f(0x1aa))/0x7)+parseInt(f(0x1cf))/0x8+-parseInt(f(0x1c7))/0x9*(parseInt(f(0x1c3))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a56c,0xd9186));var a56b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a56d;if(c){var e=c[g(0x1b7)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a56a=a56b(this,function(){var h=a56d;return a56a[h(0x1b2)]()[h(0x1cd)](h(0x1ab))[h(0x1b2)]()[h(0x1b4)](a56a)['search']('(((.+)+)+)+$');});a56a();function a56d(a,b){var c=a56c();return a56d=function(d,e){d=d-0x1a8;var f=c[d];return f;},a56d(a,b);}function a56c(){var j=['items','texture','characterLocations','1004769wzzBFj','612232ioXFnM','908905gslsmE','isLocked','roomB','uuid','search','size','5096544NauxQb','name','4WAYIeN','3631607mMnPIi','(((.+)+)+)+$','rooms','unlockItemOrSolution','roomA','category','_inventory','weight','toString','_logger','constructor','rating','description','apply','_playerName','994168ZynqWn','3807294VOfwwG','_currentLocation','logger','12gIEQip','roomType','solved','player','_equipment','puzzle','190fyqUND'];a56c=function(){return j;};return a56c();}import{EventEmitter}from'events';export class AbstractScene{[a56i(0x1ac)];[a56i(0x1c0)];[a56i(0x1bc)];[a56i(0x1c6)];}export class AbstractRoom extends EventEmitter{['name'];[a56i(0x1b6)];['exits'];['inventory'];[a56i(0x1c2)];[a56i(0x1be)];['isStartRoom'];}export class AbstractDoor{[a56i(0x1ae)];[a56i(0x1cb)];[a56i(0x1ca)];[a56i(0x1ad)];['name'];[a56i(0x1bc)];['isLockable'];}export class AbstractInventory{[a56i(0x1c4)];[a56i(0x1bc)];}export class AbstractItem{[a56i(0x1cc)];[a56i(0x1a8)];[a56i(0x1b6)];[a56i(0x1ce)];[a56i(0x1af)];['shape'];['color'];[a56i(0x1c5)];[a56i(0x1b5)];[a56i(0x1b1)];}export class AbstractPlayer{[a56i(0x1b8)];[a56i(0x1bb)];[a56i(0x1b0)];[a56i(0x1c1)];['_maxCarryingWeight'];[a56i(0x1b3)];}export class AbstractPuzzle{[a56i(0x1bc)];[a56i(0x1bf)];}
@@ -1 +1 @@
1
- (function(a,b){var k=a57d,c=a();while(!![]){try{var d=-parseInt(k(0xef))/0x1*(-parseInt(k(0x107))/0x2)+-parseInt(k(0xbf))/0x3+-parseInt(k(0xcd))/0x4+-parseInt(k(0xf8))/0x5+parseInt(k(0x112))/0x6+parseInt(k(0xbb))/0x7+parseInt(k(0x113))/0x8*(-parseInt(k(0xc0))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a57c,0xaac66));export var Size;(function(a){var l=a57d;a[l(0xb9)]=l(0xcf),a[l(0x116)]='small',a[l(0xba)]=l(0x117),a['Large']=l(0xe9),a[l(0xc8)]=l(0xd2);}(Size||(Size={})));function a57c(){var u=['Rifle','metallic','Red','Book','(((.+)+)+)+$','cave','blue','rare','body\x20armor','sea','7499892enmdwV','8gIkeib','DOWN','ArmArmor','Small','medium','tower','leg\x20armor','Tiny','Medium','2781611XhirGr','north','Square','fuzzy','278862sXGhFU','6127461CqxHcn','south','orange','Grey','toString','smooth','OUTSIDE','INSIDE','VeryLarge','triangle','constructor','shield','Yellow','1662936TxQYoo','Shield','tiny','unknown','Rare','very\x20large','CAVE','Triangle','inside','boots','Blade','Gloves','rough','Key','blade','outside','Weapon','purple','Blue','BEACH','arm\x20armor','SOUTH','Circle','DESERT','Green','Legendary','LegArmor','Brown','large','Rectangle','red','Orange','Helmet','Gold','23GaWmFX','book','circle','FOREST','Cup','Grainy','yellow','search','Hat','1477775rFgWQQ','gloves','west','legendary','desert','beach','SEA','UNDERGROUND','forest','Purple','rifle','underground','Unknown','east','rectangle','46714gHngAy'];a57c=function(){return u;};return a57c();}export var Rating;(function(c){var n=a57d,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=a57d;return e['toString']()[m(0xf6)](m(0x10c))[m(0xc4)]()[m(0xca)](e)['search'](m(0x10c));});e(),c['Common']='common',c[n(0xd1)]=n(0x10f),c[n(0xe6)]=n(0xfb);}(Rating||(Rating={})));export var Category;function a57d(a,b){var c=a57c();return a57d=function(d,e){d=d-0xb9;var f=c[d];return f;},a57d(a,b);}(function(a){var o=a57d;a[o(0xdd)]='weapon',a[o(0xce)]=o(0xcb),a[o(0xda)]='key',a[o(0xd8)]=o(0xf9),a[o(0xed)]='helmet',a[o(0xf7)]='hat',a['Boots']=o(0xd6),a[o(0xe7)]=o(0x119),a[o(0x115)]=o(0xe1),a['BodyArmor']=o(0x110),a[o(0x10b)]=o(0xf0),a[o(0xf3)]='cup',a[o(0x104)]=o(0xd0);}(Category||(Category={})));export var Shape;(function(a){var p=a57d;a[p(0xe3)]=p(0xf1),a[p(0xbd)]='square',a[p(0xd4)]=p(0xc9),a[p(0xea)]=p(0x106),a[p(0xd7)]=p(0xdb),a[p(0x108)]=p(0x102);}(Shape||(Shape={})));export var Color;(function(a){var q=a57d;a[q(0x10a)]=q(0xeb),a[q(0xdf)]=q(0x10e),a[q(0xe5)]='green',a[q(0xcc)]=q(0xf5),a[q(0xec)]=q(0xc2),a[q(0x101)]=q(0xde),a[q(0xc3)]='grey',a[q(0xe8)]='brown',a[q(0xee)]='gold';}(Color||(Color={})));export var Texture;(function(a){var r=a57d;a['Smooth']=r(0xc5),a['Rough']=r(0xd9),a['Bumpy']='bumpy',a['Fuzzy']=r(0xbe),a[r(0xf4)]='grainy',a['Metallic']=r(0x109);}(Texture||(Texture={})));export var RoomType;(function(a){var s=a57d;a[s(0xc7)]=s(0xd5),a[s(0xc6)]=s(0xdc),a[s(0xff)]=s(0x103),a[s(0xd3)]=s(0x10d),a['TOWER']=s(0x118),a[s(0xf2)]=s(0x100),a[s(0xe4)]=s(0xfc),a['MOUNTAIN']='mountain',a[s(0xe0)]=s(0xfd),a[s(0xfe)]=s(0x111);}(RoomType||(RoomType={})));export var Direction;(function(a){var t=a57d;a['NORTH']=t(0xbc),a['EAST']=t(0x105),a[t(0xe2)]=t(0xc1),a['WEST']=t(0xfa),a['UP']='up',a[t(0x114)]='down';}(Direction||(Direction={})));
1
+ (function(a,b){var k=a57d,c=a();while(!![]){try{var d=-parseInt(k(0xcd))/0x1+-parseInt(k(0xdd))/0x2*(parseInt(k(0xf0))/0x3)+parseInt(k(0xcb))/0x4+parseInt(k(0x90))/0x5+-parseInt(k(0xc6))/0x6*(-parseInt(k(0x9a))/0x7)+-parseInt(k(0xab))/0x8+parseInt(k(0xd2))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a57c,0x1e5f3));export var Size;(function(c){var n=a57d,d=(function(){var f=!![];return function(g,h){var i=f?function(){var l=a57d;if(h){var j=h[l(0xba)](g,arguments);return h=null,j;}}:function(){};return f=![],i;};}()),e=d(this,function(){var m=a57d;return e[m(0xaa)]()[m(0xe3)](m(0xca))['toString']()[m(0xc5)](e)[m(0xe3)]('(((.+)+)+)+$');});e(),c[n(0x97)]=n(0xc4),c['Small']=n(0x9c),c[n(0xa0)]='medium',c['Large']=n(0xbb),c[n(0xac)]=n(0x8f);}(Size||(Size={})));export var Rating;(function(a){var o=a57d;a['Common']='common',a[o(0x9b)]=o(0xea),a[o(0xc8)]='legendary';}(Rating||(Rating={})));function a57d(a,b){var c=a57c();return a57d=function(d,e){d=d-0x8f;var f=c[d];return f;},a57d(a,b);}function a57c(){var v=['VeryLarge','metallic','SEA','Boots','leg\x20armor','Cup','Gold','book','weapon','Brown','Orange','bumpy','Triangle','triangle','apply','large','grey','down','DESERT','OUTSIDE','rough','Grey','Smooth','Rectangle','tiny','constructor','63972FjJfRE','FOREST','Legendary','Yellow','(((.+)+)+)+$','293140Xdkpyt','cave','52822GkCopO','sea','BEACH','INSIDE','Blue','992277lUTXpA','MOUNTAIN','EAST','Purple','gold','Square','shield','helmet','key','circle','Book','2hbCsBs','grainy','DOWN','Green','WEST','SOUTH','search','ArmArmor','desert','forest','outside','Rough','red','rare','south','hat','fuzzy','Key','LegArmor','3033tLtzkG','mountain','very\x20large','1060740bJbdUz','underground','beach','rectangle','purple','Unknown','tower','Tiny','smooth','Helmet','7kFDQUR','Rare','small','arm\x20armor','unknown','Hat','Medium','Metallic','Shield','east','Circle','green','Blade','boots','Gloves','UNDERGROUND','toString','1824896AbYwvg'];a57c=function(){return v;};return a57c();}export var Category;(function(a){var p=a57d;a['Weapon']=p(0xb4),a[p(0xa2)]=p(0xd8),a[p(0xee)]=p(0xda),a[p(0xa8)]='gloves',a[p(0x99)]=p(0xd9),a[p(0x9f)]=p(0xec),a[p(0xaf)]=p(0xa7),a[p(0xef)]=p(0xb0),a[p(0xe4)]=p(0x9d),a['BodyArmor']='body\x20armor',a[p(0xdc)]=p(0xb3),a[p(0xb1)]='cup',a[p(0x95)]=p(0x9e);}(Category||(Category={})));export var Shape;(function(a){var q=a57d;a[q(0xa4)]=q(0xdb),a[q(0xd7)]='square',a[q(0xb8)]=q(0xb9),a[q(0xc3)]=q(0x93),a[q(0xa6)]='blade',a['Rifle']='rifle';}(Shape||(Shape={})));export var Color;(function(a){var r=a57d;a['Red']=r(0xe9),a[r(0xd1)]='blue',a[r(0xe0)]=r(0xa5),a[r(0xc9)]='yellow',a[r(0xb6)]='orange',a[r(0xd5)]=r(0x94),a[r(0xc1)]=r(0xbc),a[r(0xb5)]='brown',a[r(0xb2)]=r(0xd6);}(Color||(Color={})));export var Texture;(function(a){var s=a57d;a[s(0xc2)]=s(0x98),a[s(0xe8)]=s(0xc0),a['Bumpy']=s(0xb7),a['Fuzzy']=s(0xed),a['Grainy']=s(0xde),a[s(0xa1)]=s(0xad);}(Texture||(Texture={})));export var RoomType;(function(a){var t=a57d;a[t(0xd0)]='inside',a[t(0xbf)]=t(0xe7),a[t(0xa9)]=t(0x91),a['CAVE']=t(0xcc),a['TOWER']=t(0x96),a[t(0xc7)]=t(0xe6),a[t(0xbe)]=t(0xe5),a[t(0xd3)]=t(0xf1),a[t(0xcf)]=t(0x92),a[t(0xae)]=t(0xce);}(RoomType||(RoomType={})));export var Direction;(function(a){var u=a57d;a['NORTH']='north',a[u(0xd4)]=u(0xa3),a[u(0xe2)]=u(0xeb),a[u(0xe1)]='west',a['UP']='up',a[u(0xdf)]=u(0xbd);}(Direction||(Direction={})));
@@ -1 +1 @@
1
- (function(a,b){var f=a58d,c=a();while(!![]){try{var d=-parseInt(f(0x1a0))/0x1+parseInt(f(0x1a3))/0x2*(parseInt(f(0x199))/0x3)+-parseInt(f(0x19a))/0x4*(parseInt(f(0x1a7))/0x5)+-parseInt(f(0x1a6))/0x6*(parseInt(f(0x1a8))/0x7)+-parseInt(f(0x19c))/0x8*(parseInt(f(0x198))/0x9)+-parseInt(f(0x19f))/0xa*(parseInt(f(0x1a4))/0xb)+parseInt(f(0x19b))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a58c,0x30eed));var a58b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a58d;if(c){var e=c[g(0x19d)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a58a=a58b(this,function(){var h=a58d;return a58a[h(0x1a5)]()[h(0x19e)](h(0x1a1))[h(0x1a5)]()[h(0x1a2)](a58a)[h(0x19e)](h(0x1a1));});a58a();export{};function a58d(a,b){var c=a58c();return a58d=function(d,e){d=d-0x198;var f=c[d];return f;},a58d(a,b);}function a58c(){var i=['7410yhHdcK','72IVNbss','21976896DWUeoq','8sImaTV','apply','search','844150WQygXH','371416RxnJjb','(((.+)+)+)+$','constructor','4FnDeFQ','33jDgBSh','toString','3666RUFeRm','85430oKSlDm','4249FDoydA','2995497ztyZKJ'];a58c=function(){return i;};return a58c();}
1
+ (function(a,b){var f=a58d,c=a();while(!![]){try{var d=parseInt(f(0x198))/0x1*(-parseInt(f(0x190))/0x2)+-parseInt(f(0x191))/0x3+parseInt(f(0x199))/0x4*(parseInt(f(0x19a))/0x5)+-parseInt(f(0x194))/0x6+parseInt(f(0x195))/0x7*(parseInt(f(0x197))/0x8)+parseInt(f(0x19d))/0x9+parseInt(f(0x19e))/0xa*(parseInt(f(0x19c))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a58c,0xb0184));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(0x196)]()[g(0x193)](g(0x192))[g(0x196)]()[g(0x19b)](a58a)[g(0x193)](g(0x192));});a58a();function a58c(){var h=['4578736ctjVfQ','320237JFzoND','4XStSyg','2639485tdXWwL','constructor','11qoYVuB','9468099kEueZB','4348090aAvSaF','2pkzcoR','2362008NaZgUv','(((.+)+)+)+$','search','7983264VtbCQX','14YQBEGM','toString'];a58c=function(){return h;};return a58c();}function a58d(a,b){var c=a58c();return a58d=function(d,e){d=d-0x190;var f=c[d];return f;},a58d(a,b);}export{};
@@ -1 +1 @@
1
- function a59d(a,b){var c=a59c();return a59d=function(d,e){d=d-0x1a1;var f=c[d];return f;},a59d(a,b);}(function(a,b){var f=a59d,c=a();while(!![]){try{var d=parseInt(f(0x1af))/0x1*(parseInt(f(0x1a4))/0x2)+-parseInt(f(0x1a6))/0x3*(parseInt(f(0x1a1))/0x4)+parseInt(f(0x1b0))/0x5*(parseInt(f(0x1ab))/0x6)+-parseInt(f(0x1a8))/0x7*(-parseInt(f(0x1aa))/0x8)+parseInt(f(0x1ac))/0x9*(-parseInt(f(0x1b2))/0xa)+-parseInt(f(0x1b1))/0xb*(parseInt(f(0x1a7))/0xc)+parseInt(f(0x1a2))/0xd;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0xd945f));var a59b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a59d;if(c){var e=c[g(0x1ae)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a59a=a59b(this,function(){var h=a59d;return a59a[h(0x1a5)]()[h(0x1a3)](h(0x1ad))[h(0x1a5)]()[h(0x1a9)](a59a)['search'](h(0x1ad));});a59a();function a59c(){var i=['495000gRATYu','3017ynvjWV','constructor','21136MKTLfq','6yOqghe','427320EGHcbC','(((.+)+)+)+$','apply','3yMoctZ','5162995jnDZGL','231HdgMjr','200zLQdOO','200UxJoVs','20900945DaDgkq','search','118790nVyefs','toString','75087NwVOEt'];a59c=function(){return i;};return a59c();}export{};
1
+ (function(a,b){var f=a59d,c=a();while(!![]){try{var d=parseInt(f(0x18a))/0x1+-parseInt(f(0x17f))/0x2*(parseInt(f(0x184))/0x3)+-parseInt(f(0x180))/0x4+-parseInt(f(0x188))/0x5+parseInt(f(0x17e))/0x6+parseInt(f(0x186))/0x7*(parseInt(f(0x189))/0x8)+parseInt(f(0x181))/0x9*(parseInt(f(0x185))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0x62ec7));function a59c(){var i=['68UhKYqu','62428baZjNQ','144ygUEIj','(((.+)+)+)+$','apply','13899RNMvzA','34910YhXXTz','215992krsbdG','toString','1403100FdhosA','32AUemWr','603313xSkkIV','458082UwvxsE'];a59c=function(){return i;};return a59c();}var a59b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a59d;if(c){var e=c[g(0x183)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a59a=a59b(this,function(){var h=a59d;return a59a['toString']()['search'](h(0x182))[h(0x187)]()['constructor'](a59a)['search'](h(0x182));});function a59d(a,b){var c=a59c();return a59d=function(d,e){d=d-0x17e;var f=c[d];return f;},a59d(a,b);}a59a();export{};
@@ -1 +1 @@
1
- const a60G=a60d;(function(a,b){const y=a60d,c=a();while(!![]){try{const d=-parseInt(y(0xaa))/0x1*(-parseInt(y(0xa9))/0x2)+parseInt(y(0xc5))/0x3*(parseInt(y(0xef))/0x4)+parseInt(y(0xdb))/0x5+-parseInt(y(0xb8))/0x6*(-parseInt(y(0xf6))/0x7)+parseInt(y(0xe9))/0x8*(parseInt(y(0xde))/0x9)+parseInt(y(0xd5))/0xa*(parseInt(y(0xac))/0xb)+-parseInt(y(0xb1))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0xbf2cf));import a60e from'blessed';import{capitalCase}from'change-case';import a60f from'./game.js';import{RoomType}from'./types/enums.js';import{Player}from'./models/player.js';import{Door}from'./models/door.js';import{Logger}from'./utilities/logger.js';export async function main(c,d,e){const A=a60d,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=a60d;return g['toString']()[z(0xe5)]('(((.+)+)+)+$')[z(0xbe)]()[z(0xc2)](g)[z(0xe5)](z(0xd4));});g();try{const h=a60e[A(0xae)]({'smartCSR':!![],'title':A(0xf4)}),i=a60e[A(0xf2)]({'top':'0%','left':A(0xfd),'width':A(0xb6),'height':'45%','border':{'type':'line'},'label':A(0xa4),'content':A(0xa6),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':A(0xd2)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const B=A,u=t[B(0xe2)]()[B(0xec)](v=>v[B(0xe6)]);i['setContent'](u['join']('\x0a')),h[B(0xb2)]();};h[A(0xe0)](i);const k=a60e['box']({'top':A(0xd1),'left':A(0xfd),'width':'25%','height':A(0xb6),'border':{'type':'line'},'label':'\x20Equipment\x20','content':A(0xc4),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':A(0xd2)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h['append'](k);const l=t=>{const C=A;k['setContent'](C(0xf1)+(t[C(0xd7)]?t['head'][C(0xe6)]:'None')+'\x0a'+(C(0xee)+(t['torso']?t[C(0xdf)][C(0xe6)]:'None')+'\x0a')+(C(0xf7)+(t['legs']?t[C(0xed)][C(0xe6)]:C(0xb0))+'\x0a')+(C(0xe1)+(t[C(0xb4)]?t[C(0xb4)][C(0xe6)]:'None')+'\x0a')+(C(0xe7)+(t[C(0xea)]?t[C(0xea)][C(0xe6)]:C(0xb0))+'\x0a')+('Gloves:\x20'+(t[C(0xbb)]?t[C(0xbb)][C(0xe6)]:'None')+'\x0a')+(C(0xad)+(t[C(0xa5)]?t['leftHand']['name']:'None')+'\x0a')+(C(0xb7)+(t[C(0xdc)]?t[C(0xdc)]['name']:C(0xb0))+'\x0a')),h[C(0xb2)]();},m=a60e['box']({'top':'70%','left':'75%','width':A(0xb6),'height':A(0xcf),'border':{'type':A(0xbc)},'label':A(0xf8),'content':A(0xe4),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':'yellow'},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[A(0xe0)](m);const n=t=>{const D=A;let u='Currently\x20in:\x20'+t[D(0xe6)]+'\x0a\x0a';u+=D(0xb5),t['exits'][D(0xd8)]>0x0?t['exits'][D(0xcc)]((v,w)=>{const E=D;if(v instanceof Door){const x=v[E(0xa7)](t);x[E(0xc0)]===RoomType['OUTSIDE']?u+=capitalCase(w)+':\x20'+x[E(0xe6)]:u+=capitalCase(w)+':\x20'+v[E(0xe6)];if(v['checkIfLocked']())u+=E(0xca);else v[E(0xfe)]()&&(u+='\x20(Unlocked)');u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+=D(0xd6),m[D(0xff)](u),h[D(0xb2)]();},o=a60e[A(0xf2)]({'id':'logBox','top':'0%','left':'0%','width':A(0xfd),'height':A(0xfc),'border':{'type':'line'},'label':A(0x100),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':A(0xd2)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o[A(0xbd)]('mousemove'),h['append'](o);const p=a60e[A(0xc1)]({'bottom':0x0,'left':0x0,'width':A(0xdd),'height':A(0xc3),'tags':!![],'border':{'type':A(0xbc)},'style':{'fg':A(0xf9),'border':{'fg':A(0xfb)}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h[A(0xe0)](p),h[A(0xb3)](['escape',A(0xc6)],()=>process[A(0xcd)](0x0)),p[A(0xb9)](),h[A(0xb2)]();const q=Logger[A(0xab)](e[A(0xfa)],h),r=new Player({'playerName':c});q[A(0x101)]('----->>>>>>\x20Initializing\x20Game');const s=a60f[A(0xab)](r,d);o[A(0xff)](s[A(0xd3)]()),l(s[A(0xeb)][A(0xcb)]),j(s[A(0xeb)][A(0xd0)]),n(s['player']['currentLocation']),p[A(0xb3)]([A(0xce)],async()=>{const F=A,t=p[F(0xd9)](),u=s[F(0xe8)](t);(t[F(0xba)]('\x20')[0x0]==='take'||F(0xf3)||F(0xf5))&&(j(s[F(0xeb)][F(0xd0)]),l(s[F(0xeb)][F(0xcb)])),(t[F(0xba)]('\x20')[0x0]==='go'||'lock'||'unlock')&&n(s['player'][F(0xc9)]),t[F(0xba)]('\x20')[0x0]==='clear'&&o[F(0xff)](''),u===null&&(console[F(0xaf)](F(0xc7)),h[F(0xb2)](),q['write'](F(0xc8)),process[F(0xcd)](0x0)),o[F(0xa8)](u),o[F(0xe3)](0x1),p[F(0xf0)](),p[F(0xb9)](),h[F(0xb2)]();});}catch(t){console[A(0xaf)](t),process[A(0xcd)](0x1);}}const args=process['argv'][a60G(0xbf)](0x2);function a60d(a,b){const c=a60c();return a60d=function(d,e){d=d-0xa4;let f=c[d];return f;},a60d(a,b);}main(args[0x0],JSON[a60G(0xda)](args[0x1]),JSON[a60G(0xda)](args[0x2]));function a60c(){const H=['C-c','Thanks\x20for\x20playing!','<<<<<<<<---------\x20Terminating\x20game','currentLocation','\x20(Locked)','equipment','forEach','exit','enter','20%','inventory','45%','yellow','getWelcomeMessage','(((.+)+)+)+$','232210OgxdYN','\x0aThere\x20are\x20no\x20exits\x20here.','head','size','getValue','parse','1129090mDUrll','rightHand','100%','243odUIxK','torso','append','Feet:\x20','getAllItems','scroll','Available\x20exits\x20will\x20be\x20shown\x20here...','search','name','Arms:\x20','handleInput','375504BIfXKJ','arms','player','map','legs','Torso:\x20','36VMNLbm','clearValue','Head:\x20','box','equip','Side\x20Quest\x20Adventure\x20Game','unequip','9289329LWmdNn','Legs:\x20','\x20Map\x20','white','logFilePath','cyan','90%','75%','checkIfLockable','setContent','\x20Game\x20Log\x20','write','\x20Inventory\x20','leftHand','Your\x20items\x20will\x20be\x20listed\x20here...','getOtherSide','pushLine','17186jsMZFT','113FdevNi','getInstance','22pTxBmM','Left\x20Hand:\x20','screen','log','None','48304572IgbbZE','render','key','feet','-----\x20Exits\x20------\x0a','25%','Right\x20Hand:\x20','6aXeqZu','focus','split','gloves','line','removeAllListeners','toString','slice','roomType','textbox','constructor','10%','Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','323598JEifir'];a60c=function(){return H;};return a60c();}
1
+ const a60H=a60d;(function(a,b){const y=a60d,c=a();while(!![]){try{const d=parseInt(y(0xaa))/0x1+parseInt(y(0xa1))/0x2*(-parseInt(y(0xc3))/0x3)+-parseInt(y(0x74))/0x4+parseInt(y(0x77))/0x5+parseInt(y(0xc5))/0x6+-parseInt(y(0x8b))/0x7+parseInt(y(0xb5))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0xc7dc7));import a60e from'blessed';function a60c(){const I=['81FDLTkT','append','8501664MziEhI','write','equip','yellow','render','inventory','player','handleInput','4751648KOiiTD','90%','head','2737655AVKssq','argv','torso','apply','getInstance','logBox','focus','\x20Equipment\x20','getWelcomeMessage','feet','\x20Game\x20Log\x20','70%','None','box','Gloves:\x20','Left\x20Hand:\x20','lock','Available\x20exits\x20will\x20be\x20shown\x20here...','currentLocation','forEach','5749919InyrtV','----->>>>>>\x20Initializing\x20Game','line','<<<<<<<<---------\x20Terminating\x20game','exit','(((.+)+)+)+$','leftHand','45%','Side\x20Quest\x20Adventure\x20Game','20%','exits','\x20(Locked)','arms','rightHand','25%','size','unequip','setContent','mousemove','legs','Legs:\x20','unlock','49650izJzJs','toString','scroll','split','search','name','join','75%','Head:\x20','956460EcRcDm','parse','Feet:\x20','checkIfLockable','-----\x20Exits\x20------\x0a','Right\x20Hand:\x20','Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','getValue','equipment','Your\x20items\x20will\x20be\x20listed\x20here...','100%','4618400RFXfBZ','\x0aThere\x20are\x20no\x20exits\x20here.','Thanks\x20for\x20playing!','log','key','take','10%','escape','clearValue','\x20Map\x20','gloves','getOtherSide','enter','removeAllListeners'];a60c=function(){return I;};return a60c();}import{capitalCase}from'change-case';import a60f from'./game.js';import{RoomType}from'./types/enums.js';import{Player}from'./models/player.js';import{Door}from'./models/door.js';import{Logger}from'./utilities/logger.js';export async function main(c,d,e){const B=a60d,f=(function(){let h=!![];return function(i,j){const k=h?function(){const z=a60d;if(j){const l=j[z(0x7a)](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const A=a60d;return g[A(0xa2)]()[A(0xa5)](A(0x90))['toString']()['constructor'](g)[A(0xa5)](A(0x90));});g();try{const h=a60e['screen']({'smartCSR':!![],'title':B(0x93)}),i=a60e[B(0x84)]({'top':'0%','left':'75%','width':'25%','height':B(0x92),'border':{'type':'line'},'label':'\x20Inventory\x20','content':B(0xb3),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x6f)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const C=B,u=t['getAllItems']()['map'](v=>v[C(0xa6)]);i[C(0x9c)](u[C(0xa7)]('\x0a')),h[C(0x70)]();};h[B(0xc4)](i);const k=a60e['box']({'top':B(0x92),'left':B(0xa8),'width':B(0x99),'height':B(0x99),'border':{'type':'line'},'label':B(0x7e),'content':B(0xb0),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x6f)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0xc4)](k);const l=t=>{const D=B;k[D(0x9c)](D(0xa9)+(t[D(0x76)]?t[D(0x76)]['name']:D(0x83))+'\x0a'+('Torso:\x20'+(t[D(0x79)]?t[D(0x79)][D(0xa6)]:D(0x83))+'\x0a')+(D(0x9f)+(t[D(0x9e)]?t['legs'][D(0xa6)]:D(0x83))+'\x0a')+(D(0xac)+(t[D(0x80)]?t[D(0x80)][D(0xa6)]:D(0x83))+'\x0a')+('Arms:\x20'+(t['arms']?t[D(0x97)][D(0xa6)]:D(0x83))+'\x0a')+(D(0x85)+(t['gloves']?t[D(0xbf)][D(0xa6)]:D(0x83))+'\x0a')+(D(0x86)+(t['leftHand']?t[D(0x91)][D(0xa6)]:'None')+'\x0a')+(D(0xaf)+(t['rightHand']?t[D(0x98)][D(0xa6)]:D(0x83))+'\x0a')),h[D(0x70)]();},m=a60e[B(0x84)]({'top':B(0x82),'left':B(0xa8),'width':B(0x99),'height':B(0x94),'border':{'type':B(0x8d)},'label':B(0xbe),'content':B(0x88),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x6f)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h['append'](m);const n=t=>{const E=B;let u='Currently\x20in:\x20'+t['name']+'\x0a\x0a';u+=E(0xae),t[E(0x95)][E(0x9a)]>0x0?t[E(0x95)][E(0x8a)]((v,w)=>{const F=E;if(v instanceof Door){const x=v[F(0xc0)](t);x['roomType']===RoomType['OUTSIDE']?u+=capitalCase(w)+':\x20'+x['name']:u+=capitalCase(w)+':\x20'+v[F(0xa6)];if(v['checkIfLocked']())u+=F(0x96);else v[F(0xad)]()&&(u+='\x20(Unlocked)');u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+=E(0xb6),m[E(0x9c)](u),h[E(0x70)]();},o=a60e[B(0x84)]({'id':B(0x7c),'top':'0%','left':'0%','width':B(0xa8),'height':B(0x75),'border':{'type':B(0x8d)},'label':B(0x81),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x6f)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o[B(0xc2)](B(0x9d)),h[B(0xc4)](o);const p=a60e['textbox']({'bottom':0x0,'left':0x0,'width':B(0xb4),'height':B(0xbb),'tags':!![],'border':{'type':B(0x8d)},'style':{'fg':'white','border':{'fg':'cyan'}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h['append'](p),h[B(0xb9)]([B(0xbc),'C-c'],()=>process[B(0x8f)](0x0)),p[B(0x7d)](),h[B(0x70)]();const q=Logger[B(0x7b)](e['logFilePath'],h),r=new Player({'playerName':c});q[B(0xc6)](B(0x8c));const s=a60f[B(0x7b)](r,d);o[B(0x9c)](s[B(0x7f)]()),l(s[B(0x72)][B(0xb2)]),j(s['player'][B(0x71)]),n(s[B(0x72)][B(0x89)]),p[B(0xb9)]([B(0xc1)],async()=>{const G=B,t=p[G(0xb1)](),u=s[G(0x73)](t);(t[G(0xa4)]('\x20')[0x0]===G(0xba)||G(0x6e)||G(0x9b))&&(j(s[G(0x72)][G(0x71)]),l(s[G(0x72)][G(0xb2)])),(t[G(0xa4)]('\x20')[0x0]==='go'||G(0x87)||G(0xa0))&&n(s[G(0x72)][G(0x89)]),t[G(0xa4)]('\x20')[0x0]==='clear'&&o[G(0x9c)](''),u===null&&(console[G(0xb8)](G(0xb7)),h[G(0x70)](),q['write'](G(0x8e)),process[G(0x8f)](0x0)),o['pushLine'](u),o[G(0xa3)](0x1),p[G(0xbd)](),p[G(0x7d)](),h[G(0x70)]();});}catch(t){console[B(0xb8)](t),process['exit'](0x1);}}const args=process[a60H(0x78)]['slice'](0x2);function a60d(a,b){const c=a60c();return a60d=function(d,e){d=d-0x6e;let f=c[d];return f;},a60d(a,b);}main(args[0x0],JSON[a60H(0xab)](args[0x1]),JSON[a60H(0xab)](args[0x2]));
@@ -1 +1 @@
1
- const a61j=a61d;(function(a,b){const h=a61d,c=a();while(!![]){try{const d=parseInt(h(0x138))/0x1*(parseInt(h(0x131))/0x2)+-parseInt(h(0x133))/0x3+-parseInt(h(0x135))/0x4+-parseInt(h(0x139))/0x5+parseInt(h(0x11a))/0x6+parseInt(h(0x124))/0x7+parseInt(h(0x12b))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0xb7f65));const a61b=(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;};}()),a61a=a61b(this,function(){const i=a61d;return a61a[i(0x118)]()[i(0x12e)](i(0x11c))[i(0x118)]()[i(0x11e)](a61a)[i(0x12e)](i(0x11c));});a61a();import a61e from'fs';function a61d(a,b){const c=a61c();return a61d=function(d,e){d=d-0x112;let f=c[d];return f;},a61d(a,b);}import a61f from'os';import a61g from'path';function a61c(){const r=['writeFileSync','existsSync','433019BGiOHR','5766340XxyZYE','screen','options','log','instance','find','.maka','toString','hasScreen','4430160DddIDq','[INFO]\x20[','(((.+)+)+)+$','write','constructor','scrollTo','filePath','appendFileSync','error','dirname','93387PREkwz','The\x20logbox\x20','toISOString','\x20could\x20not\x20be\x20found\x20on\x20screen\x20','[ERROR]\x20[','side-quest.log','getScrollHeight','11738584ULobXC','logBox','getInstance','search','children','setContent','4iUfhaO','ensureLogFileExists','1297584FQqAik','Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.','2983028DSfjYG'];a61c=function(){return r;};return a61c();}const homeDir=a61f['homedir']();export class Logger{static [a61j(0x115)];[a61j(0x120)];[a61j(0x112)];constructor(a,b){const k=a61j;this[k(0x120)]=a,this[k(0x112)]=b,this[k(0x132)]();}static[a61j(0x12d)](a=a61g['join'](homeDir,a61j(0x117),a61j(0x129)),b){const l=a61j;if(!Logger[l(0x115)]){if(!b)throw new Error(l(0x134));Logger[l(0x115)]=new Logger(a,b);}return Logger[l(0x115)];}[a61j(0x132)](){const m=a61j,a=a61g[m(0x123)](this[m(0x120)]);!a61e[m(0x137)](a)&&a61e['mkdirSync'](a,{'recursive':!![]}),!a61e['existsSync'](this[m(0x120)])&&a61e[m(0x136)](this[m(0x120)],'');}[a61j(0x11d)](a){const n=a61j,b=new Date()[n(0x126)](),c=n(0x11b)+b+']\x20'+a+'\x0a';a61e[n(0x121)](this['filePath'],c);}[a61j(0x122)](a){const o=a61j,b=new Date()['toISOString'](),c=o(0x128)+b+']\x20'+a+'\x0a';a61e['appendFileSync'](this[o(0x120)],c);}[a61j(0x114)](a){const p=a61j,b=this[p(0x112)]?.[p(0x12f)][p(0x116)](c=>c['type']==='box'&&c[p(0x113)]['id']===p(0x12c));b?(b[p(0x130)](b['content']+'\x0a'+a),b[p(0x11f)](b[p(0x12a)]()),this[p(0x112)]?.['render']()):this['error'](p(0x125)+b+p(0x127)+this[p(0x112)]),this['write'](a);}[a61j(0x119)](){const q=a61j;return!!this[q(0x112)];}}
1
+ const a61k=a61d;(function(a,b){const h=a61d,c=a();while(!![]){try{const d=-parseInt(h(0x157))/0x1*(parseInt(h(0x15b))/0x2)+parseInt(h(0x14a))/0x3*(parseInt(h(0x153))/0x4)+parseInt(h(0x147))/0x5*(parseInt(h(0x15a))/0x6)+-parseInt(h(0x14f))/0x7*(parseInt(h(0x164))/0x8)+parseInt(h(0x15f))/0x9*(parseInt(h(0x14e))/0xa)+parseInt(h(0x165))/0xb*(-parseInt(h(0x162))/0xc)+-parseInt(h(0x163))/0xd*(-parseInt(h(0x166))/0xe);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0x3a256));function a61d(a,b){const c=a61c();return a61d=function(d,e){d=d-0x13a;let f=c[d];return f;},a61d(a,b);}const a61b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a61d;if(c){const e=c[i(0x14b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a61a=a61b(this,function(){const j=a61d;return a61a[j(0x151)]()['search'](j(0x155))[j(0x151)]()[j(0x146)](a61a)[j(0x158)]('(((.+)+)+)+$');});a61a();function a61c(){const s=['The\x20logbox\x20','filePath','setContent','13878JZSMct','side-quest.log','appendFileSync','132zOkxrD','914901QDRMRr','8tHyTaJ','105127dTRZWC','56vFCvnO','options','scrollTo','toISOString','ensureLogFileExists','type','box','find','error','existsSync','instance','Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.','children','writeFileSync','hasScreen','join','mkdirSync','constructor','5BTJTtJ','getInstance','[INFO]\x20[','990LemMZq','apply','content','\x20could\x20not\x20be\x20found\x20on\x20screen\x20','2930ZpbmqX','229677gWjsqF','write','toString','screen','148NSxTEY','[ERROR]\x20[','(((.+)+)+)+$','dirname','1mzWdKN','search','log','100086LUZxdI','772202wBdncf'];a61c=function(){return s;};return a61c();}import a61e from'fs';import a61f from'os';import a61g from'path';const homeDir=a61f['homedir']();export class Logger{static [a61k(0x13f)];[a61k(0x15d)];[a61k(0x152)];constructor(a,b){const l=a61k;this['filePath']=a,this[l(0x152)]=b,this[l(0x16a)]();}static[a61k(0x148)](a=a61g[a61k(0x144)](homeDir,'.maka',a61k(0x160)),b){const m=a61k;if(!Logger[m(0x13f)]){if(!b)throw new Error(m(0x140));Logger['instance']=new Logger(a,b);}return Logger[m(0x13f)];}[a61k(0x16a)](){const n=a61k,a=a61g[n(0x156)](this[n(0x15d)]);!a61e[n(0x13e)](a)&&a61e[n(0x145)](a,{'recursive':!![]}),!a61e[n(0x13e)](this[n(0x15d)])&&a61e[n(0x142)](this['filePath'],'');}[a61k(0x150)](a){const o=a61k,b=new Date()[o(0x169)](),c=o(0x149)+b+']\x20'+a+'\x0a';a61e[o(0x161)](this['filePath'],c);}[a61k(0x13d)](a){const p=a61k,b=new Date()[p(0x169)](),c=p(0x154)+b+']\x20'+a+'\x0a';a61e[p(0x161)](this['filePath'],c);}[a61k(0x159)](a){const q=a61k,b=this['screen']?.[q(0x141)][q(0x13c)](c=>c[q(0x13a)]===q(0x13b)&&c[q(0x167)]['id']==='logBox');b?(b[q(0x15e)](b[q(0x14c)]+'\x0a'+a),b[q(0x168)](b['getScrollHeight']()),this[q(0x152)]?.['render']()):this['error'](q(0x15c)+b+q(0x14d)+this['screen']),this[q(0x150)](a);}[a61k(0x143)](){const r=a61k;return!!this[r(0x152)];}}
@@ -1 +1 @@
1
- const a62n=a62d;(function(a,b){const k=a62d,c=a();while(!![]){try{const d=parseInt(k(0x1c9))/0x1+-parseInt(k(0x1bf))/0x2*(parseInt(k(0x1c2))/0x3)+-parseInt(k(0x1af))/0x4+-parseInt(k(0x1c7))/0x5*(parseInt(k(0x1c6))/0x6)+parseInt(k(0x1c4))/0x7*(-parseInt(k(0x1b8))/0x8)+-parseInt(k(0x1d0))/0x9+parseInt(k(0x1bb))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0xda2bf));const a62b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a62d;if(c){const e=c[l(0x1b6)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a62a=a62b(this,function(){const m=a62d;return a62a['toString']()[m(0x1ca)](m(0x1ba))[m(0x1bd)]()[m(0x1b4)](a62a)[m(0x1ca)]('(((.+)+)+)+$');});a62a();function a62c(){const q=['resolve','constructor','exit','apply','Commoner','16asBwVs','list','(((.+)+)+)+$','38685990looaqs','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...','toString','Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','64WOFvrD','shadowrun','player','19059evHpex','stringify','5019847WhEwKz','fsi','600jfWVuL','12220pWAvkt','getGlobalMakaDir','932141EZOQYd','search','What\x20is\x20your\x20name?','side-quest','sideQuestAnswer','Play\x20a\x20little\x20side-quest','join','7875630klOIvz','side-quest.log','options','dungeon','log','4600404hKXvmC','ask','node','inherit'];a62c=function(){return q;};return a62c();}import a62e from'path';function a62d(a,b){const c=a62c();return a62d=function(d,e){d=d-0x1ab;let f=c[d];return f;},a62d(a,b);}import{spawn}from'child_process';import a62f from'./play.command.js';import{Command}from'../../command.js';import{Actions}from'../../tools/actions/actions.class.js';import{dungeonConfig,shadowrunConfig}from'./sideQuest/scenes/rooms.js';import{fileURLToPath}from'url';import{dirname}from'path';const __filename=fileURLToPath(import.meta['url']),__dirname=dirname(__filename);Command['create']({'name':a62n(0x1cc),'usage':'maka\x20play:side-quest','shortDesc':a62n(0x1ce),'aliases':['sq'],'description':a62n(0x1bc),'validOpts':[a62n(0x1c1)]},async function(a,b){const o=a62n;try{const c=this[o(0x1c5)][o(0x1c8)](),d=a62e[o(0x1cf)](c,o(0x1ab)),e=b[o(0x1c1)]?b['player']:await Actions[o(0x1b0)](o(0x1cb))||o(0x1b7),f={...b,'logFilePath':d},g={'type':o(0x1b9),'name':o(0x1cd),'message':o(0x1be),'choices':[{'name':o(0x1ad),'value':dungeonConfig},{'name':o(0x1c0),'value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions[o(0x1ac)](g);if(e&&h){const i=spawn(o(0x1b1),[a62e[o(0x1b3)](__dirname,'./sideQuest/ui.js'),e,JSON[o(0x1c3)](h),JSON['stringify'](f)],{'stdio':o(0x1b2)});i['on'](o(0x1b5),()=>{const p=o;console[p(0x1ae)]('Thanks\x20for\x20playing!');});}}catch(j){console['log'](j);}},a62f);
1
+ const a62n=a62d;(function(a,b){const k=a62d,c=a();while(!![]){try{const d=-parseInt(k(0x208))/0x1*(parseInt(k(0x1f8))/0x2)+parseInt(k(0x20c))/0x3*(-parseInt(k(0x1f5))/0x4)+parseInt(k(0x206))/0x5*(-parseInt(k(0x1fa))/0x6)+-parseInt(k(0x1ef))/0x7*(parseInt(k(0x204))/0x8)+parseInt(k(0x1f0))/0x9*(parseInt(k(0x201))/0xa)+-parseInt(k(0x209))/0xb+-parseInt(k(0x1f2))/0xc*(-parseInt(k(0x1f6))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0xb9cb0));const a62b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a62d;if(c){const e=c[l(0x1fc)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a62a=a62b(this,function(){const m=a62d;return a62a['toString']()['search']('(((.+)+)+)+$')[m(0x20e)]()['constructor'](a62a)[m(0x1fd)](m(0x1f1));});a62a();import a62e from'path';import{spawn}from'child_process';import a62f from'./play.command.js';import{Command}from'../../command.js';function a62c(){const p=['search','maka\x20play:side-quest','join','dungeon','220FtqvqX','list','url','4535976ZLHukp','stringify','29645DHhDNl','What\x20is\x20your\x20name?','85247qbvCUa','1414897Ribyru','create','getGlobalMakaDir','12zWkSjS','ask','toString','player','side-quest','Commoner','Just\x20a\x20little\x20pet\x20project...\x20I\x20really\x20liked\x20the\x20Dunnet\x20game\x20that\x0a\x20\x20came\x20with\x20MacOS\x20but\x20has\x20been\x20removed.\x20\x20Just\x20messing\x20around\x20and\x20building\x0a\x20\x20out\x20a\x20similar\x20thing...','options','exit','14aZsTEV','453996BGcHLL','(((.+)+)+)+$','658752rgRycT','node','fsi','1328260jjUVNN','806KaLqWT','sideQuestAnswer','10OfigBs','Play\x20a\x20little\x20side-quest','744sADPzL','log','apply'];a62c=function(){return p;};return a62c();}import{Actions}from'../../tools/actions/actions.class.js';import{dungeonConfig,shadowrunConfig}from'./sideQuest/scenes/rooms.js';import{fileURLToPath}from'url';import{dirname}from'path';function a62d(a,b){const c=a62c();return a62d=function(d,e){d=d-0x1eb;let f=c[d];return f;},a62d(a,b);}const __filename=fileURLToPath(import.meta[a62n(0x203)]),__dirname=dirname(__filename);Command[a62n(0x20a)]({'name':a62n(0x210),'usage':a62n(0x1fe),'shortDesc':a62n(0x1f9),'aliases':['sq'],'description':a62n(0x1ec),'validOpts':[a62n(0x20f)]},async function(a,b){const o=a62n;try{const c=this[o(0x1f4)][o(0x20b)](),d=a62e[o(0x1ff)](c,'side-quest.log'),e=b[o(0x20f)]?b[o(0x20f)]:await Actions[o(0x20d)](o(0x207))||o(0x1eb),f={...b,'logFilePath':d},g={'type':o(0x202),'name':o(0x1f7),'message':'Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','choices':[{'name':o(0x200),'value':dungeonConfig},{'name':'shadowrun','value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions[o(0x1ed)](g);if(e&&h){const i=spawn(o(0x1f3),[a62e['resolve'](__dirname,'./sideQuest/ui.js'),e,JSON[o(0x205)](h),JSON[o(0x205)](f)],{'stdio':'inherit'});i['on'](o(0x1ee),()=>{console['log']('Thanks\x20for\x20playing!');});}}catch(j){console[o(0x1fb)](j);}},a62f);
@@ -1 +1 @@
1
- var a63i=a63d;function a63c(){var k=['575720IAzDIq','3525393SWCigX','43764ijEBqj','create','736688FezBwK','1219185ytyPWh','search','inherit','Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','3454194SLMnWz','constructor','toString','(((.+)+)+)+$','npx\x20command-line-snake','snake','594464zjCKQI','maka\x20game:snake','apply'];a63c=function(){return k;};return a63c();}(function(a,b){var f=a63d,c=a();while(!![]){try{var d=parseInt(f(0x13e))/0x1+parseInt(f(0x145))/0x2+-parseInt(f(0x142))/0x3+parseInt(f(0x141))/0x4+parseInt(f(0x146))/0x5+parseInt(f(0x138))/0x6+parseInt(f(0x143))/0x7;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0xb8e93));function a63d(a,b){var c=a63c();return a63d=function(d,e){d=d-0x136;var f=c[d];return f;},a63d(a,b);}var a63b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a63d;if(c){var e=c[g(0x140)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){var h=a63d;return a63a[h(0x13a)]()[h(0x147)](h(0x13b))['toString']()[h(0x139)](a63a)[h(0x147)](h(0x13b));});a63a();import a63e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command[a63i(0x144)]({'name':a63i(0x13d),'usage':a63i(0x13f),'shortDesc':a63i(0x137),'validOpts':[]},async function(){var j=a63i;execSync(j(0x13c),{'stdio':j(0x136)});},a63e);
1
+ var a63h=a63d;(function(a,b){var f=a63d,c=a();while(!![]){try{var d=parseInt(f(0x9d))/0x1+parseInt(f(0x9f))/0x2*(-parseInt(f(0xab))/0x3)+-parseInt(f(0x98))/0x4*(-parseInt(f(0xa2))/0x5)+-parseInt(f(0x9e))/0x6*(-parseInt(f(0xa6))/0x7)+parseInt(f(0xa4))/0x8*(-parseInt(f(0x9a))/0x9)+parseInt(f(0x9c))/0xa*(-parseInt(f(0x9b))/0xb)+parseInt(f(0xa7))/0xc*(-parseInt(f(0x99))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0x8f6aa));var a63b=(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;};}()),a63a=a63b(this,function(){var g=a63d;return a63a[g(0xa9)]()[g(0xa1)]('(((.+)+)+)+$')[g(0xa9)]()[g(0xa0)](a63a)[g(0xa1)](g(0xa8));});a63a();import a63e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';function a63d(a,b){var c=a63c();return a63d=function(d,e){d=d-0x97;var f=c[d];return f;},a63d(a,b);}Command[a63h(0x97)]({'name':a63h(0xaa),'usage':a63h(0xa5),'shortDesc':'Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','validOpts':[]},async function(){var i=a63h;execSync('npx\x20command-line-snake',{'stdio':i(0xa3)});},a63e);function a63c(){var j=['18FutNXq','create','4YjAGjG','3870893POlWQw','9XybRHW','539yixrOa','30890VnhqaJ','339129MCqsCo','56076weYCrO','102478hRKIud','constructor','search','2909205pEcBHl','inherit','888104WEoQpr','maka\x20game:snake','623mubaNy','24NIWWti','(((.+)+)+)+$','toString','snake'];a63c=function(){return j;};return a63c();}
@@ -1 +1 @@
1
- var a64i=a64d;(function(a,b){var f=a64d,c=a();while(!![]){try{var d=parseInt(f(0x138))/0x1+parseInt(f(0x13e))/0x2+parseInt(f(0x133))/0x3+-parseInt(f(0x137))/0x4+parseInt(f(0x136))/0x5+parseInt(f(0x13c))/0x6*(parseInt(f(0x13a))/0x7)+parseInt(f(0x130))/0x8*(-parseInt(f(0x135))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0x8a718));var a64b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a64d;if(c){var e=c[g(0x140)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a64a=a64b(this,function(){var h=a64d;return a64a[h(0x12f)]()[h(0x139)](h(0x131))['toString']()[h(0x13b)](a64a)[h(0x139)](h(0x131));});function a64d(a,b){var c=a64c();return a64d=function(d,e){d=d-0x12e;var f=c[d];return f;},a64d(a,b);}a64a();import a64e from'./play.command.js';function a64c(){var k=['create','apply','npx\x20simple-tetris','toString','10627544kVdnJj','(((.+)+)+)+$','maka\x20game:tetris','1433592XZkJcL','tetris','9IVTnME','3044935OcNizZ','517276KibIAd','609790smmwQt','search','42FnVjBf','constructor','155718EWXmDX','Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','344934xDfRFu'];a64c=function(){return k;};return a64c();}import{Command}from'../../command.js';import{execSync}from'child_process';Command[a64i(0x13f)]({'name':a64i(0x134),'usage':a64i(0x132),'shortDesc':a64i(0x13d),'validOpts':[]},async function(){var j=a64i;execSync(j(0x12e),{'stdio':'inherit'});},a64e);
1
+ var a64h=a64d;(function(a,b){var f=a64d,c=a();while(!![]){try{var d=-parseInt(f(0x93))/0x1+-parseInt(f(0x88))/0x2*(-parseInt(f(0x92))/0x3)+-parseInt(f(0x96))/0x4+parseInt(f(0x8d))/0x5*(parseInt(f(0x8c))/0x6)+parseInt(f(0x86))/0x7*(parseInt(f(0x89))/0x8)+parseInt(f(0x83))/0x9*(-parseInt(f(0x94))/0xa)+parseInt(f(0x91))/0xb*(-parseInt(f(0x8e))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0xac69e));function a64c(){var j=['2751310ymqlJt','191784QMAaUV','create','constructor','275sUnJJK','1344177NwlRcT','571856SmbqjO','10PeaCjh','inherit','2158732nmJSgS','2000619mdIcsU','tetris','(((.+)+)+)+$','7Iczjcc','Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','6feywfp','4361176NxXnKE','toString','maka\x20game:tetris','6gVjYSO'];a64c=function(){return j;};return a64c();}var a64b=(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;};}()),a64a=a64b(this,function(){var g=a64d;return a64a[g(0x8a)]()['search'](g(0x85))['toString']()[g(0x90)](a64a)['search'](g(0x85));});a64a();import a64e from'./play.command.js';function a64d(a,b){var c=a64c();return a64d=function(d,e){d=d-0x83;var f=c[d];return f;},a64d(a,b);}import{Command}from'../../command.js';import{execSync}from'child_process';Command[a64h(0x8f)]({'name':a64h(0x84),'usage':a64h(0x8b),'shortDesc':a64h(0x87),'validOpts':[]},async function(){var i=a64h;execSync('npx\x20simple-tetris',{'stdio':i(0x95)});},a64e);
@@ -1 +1 @@
1
- const a66i=a66d;(function(a,b){const f=a66d,c=a();while(!![]){try{const d=-parseInt(f(0x1b0))/0x1*(parseInt(f(0x1b2))/0x2)+-parseInt(f(0x1b1))/0x3+-parseInt(f(0x195))/0x4*(parseInt(f(0x19c))/0x5)+-parseInt(f(0x1ae))/0x6*(-parseInt(f(0x1af))/0x7)+-parseInt(f(0x19b))/0x8*(-parseInt(f(0x1a7))/0x9)+parseInt(f(0x1a1))/0xa+parseInt(f(0x1a9))/0xb*(-parseInt(f(0x1a5))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0x54646));function a66c(){const k=['search','177488LYGAQu','65jIxEGn','generate','error','apply','Scaffold\x20various\x20parts\x20of\x20your\x20application','2991480MziLuY','constructor','invoke','create','43224zVTeYa','processAndRunGenerator','144vZgApo','\x0a\x20\x20For\x20a\x20list\x20of\x20generators,\x20run\x20\x22maka\x20generate\x20--help\x22\x20or\x20\x22maka\x20g\x20--help\x22\x0a\x20\x20','99jmPDew','maka\x20g:dbc\x20geoserver\x20--type=pgsql','toString','maka\x20g:api\x20trucks','maka\x20g:template\x20todos/todo_item','114DLdquf','167181pOSXTp','336901gNGSEs','1152762bZKSyp','2DPtgjL','2664ObpUZC','(((.+)+)+)+$','maka\x20g:route\x20todos/edit','maka\x20{generate,\x20g}:<generator>\x20<name>','maka\x20g:scaffold\x20todos'];a66c=function(){return k;};return a66c();}const a66b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a66d;if(c){const e=c[g(0x19f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a66a=a66b(this,function(){const h=a66d;return a66a[h(0x1ab)]()['search'](h(0x196))[h(0x1ab)]()[h(0x1a2)](a66a)[h(0x19a)]('(((.+)+)+)+$');});a66a();import{Command}from'../command.js';import a66e from'../generators/maka.gen.js';import{Log}from'../tools/log/log.class.js';function a66d(a,b){const c=a66c();return a66d=function(d,e){d=d-0x195;let f=c[d];return f;},a66d(a,b);}Command[a66i(0x1a4)]({'name':a66i(0x19d),'aliases':['g'],'usage':a66i(0x198),'validOpts':[],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':a66i(0x1a0),'description':a66i(0x1a8),'examples':['maka\x20generate:scaffold\x20todos',a66i(0x199),a66i(0x1ad),'maka\x20g:package\x20package:name',a66i(0x197),a66i(0x1ac),a66i(0x1aa)]},async function(a,b){const j=a66i;try{const c=a[0x0];c?(a['splice'](0x0,0x1),await a66e[j(0x1a6)](c,a,b)):a66e[j(0x1a3)](a,b);}catch(d){Log[j(0x19e)](d),process['exit'](0x1);}});
1
+ const a66i=a66d;function a66d(a,b){const c=a66c();return a66d=function(d,e){d=d-0x1e3;let f=c[d];return f;},a66d(a,b);}function a66c(){const k=['constructor','generate','maka\x20g:scaffold\x20todos','52974mMClEp','invoke','(((.+)+)+)+$','maka\x20{generate,\x20g}:<generator>\x20<name>','splice','maka\x20g:route\x20todos/edit','8746376IpJVyg','295684Hsacea','search','maka\x20g:template\x20todos/todo_item','4ThtldM','6EQgMfo','apply','1031740efCzxW','error','maka\x20g:dbc\x20geoserver\x20--type=pgsql','5029787AkPQfd','14874129OLdMNs','\x0a\x20\x20For\x20a\x20list\x20of\x20generators,\x20run\x20\x22maka\x20generate\x20--help\x22\x20or\x20\x22maka\x20g\x20--help\x22\x0a\x20\x20','maka\x20g:package\x20package:name','toString','3956270fCfHkB','exit','processAndRunGenerator','maka\x20g:api\x20trucks'];a66c=function(){return k;};return a66c();}(function(a,b){const f=a66d,c=a();while(!![]){try{const d=-parseInt(f(0x1ec))/0x1+parseInt(f(0x1f2))/0x2+-parseInt(f(0x1e5))/0x3*(-parseInt(f(0x1ef))/0x4)+-parseInt(f(0x1fa))/0x5+-parseInt(f(0x1f0))/0x6*(-parseInt(f(0x1f5))/0x7)+-parseInt(f(0x1eb))/0x8+parseInt(f(0x1f6))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0xb0e23));const a66b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a66d;if(c){const e=c[g(0x1f1)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a66a=a66b(this,function(){const h=a66d;return a66a[h(0x1f9)]()['search'](h(0x1e7))[h(0x1f9)]()[h(0x1fe)](a66a)[h(0x1ed)](h(0x1e7));});a66a();import{Command}from'../command.js';import a66e from'../generators/maka.gen.js';import{Log}from'../tools/log/log.class.js';Command['create']({'name':a66i(0x1e3),'aliases':['g'],'usage':a66i(0x1e8),'validOpts':[],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':'Scaffold\x20various\x20parts\x20of\x20your\x20application','description':a66i(0x1f7),'examples':['maka\x20generate:scaffold\x20todos',a66i(0x1e4),a66i(0x1ee),a66i(0x1f8),a66i(0x1ea),a66i(0x1fd),a66i(0x1f4)]},async function(a,b){const j=a66i;try{const c=a[0x0];c?(a[j(0x1e9)](0x0,0x1),await a66e[j(0x1fc)](c,a,b)):a66e[j(0x1e6)](a,b);}catch(d){Log[j(0x1f3)](d),process[j(0x1fb)](0x1);}});
@@ -1 +1 @@
1
- (function(a,b){var f=a71d,c=a();while(!![]){try{var d=-parseInt(f(0xea))/0x1+-parseInt(f(0xdc))/0x2+-parseInt(f(0xe1))/0x3*(-parseInt(f(0xde))/0x4)+-parseInt(f(0xe6))/0x5*(-parseInt(f(0xe0))/0x6)+-parseInt(f(0xe8))/0x7*(parseInt(f(0xe2))/0x8)+-parseInt(f(0xe3))/0x9*(parseInt(f(0xe4))/0xa)+parseInt(f(0xdf))/0xb*(parseInt(f(0xdb))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0xc357d));var a71b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a71d;if(c){var e=c[g(0xe5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){var h=a71d;return a71a[h(0xdd)]()[h(0xe9)](h(0xe7))['toString']()['constructor'](a71a)[h(0xe9)](h(0xe7));});a71a();import'./get.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';import'./whoami.sub.cmd.js';function a71d(a,b){var c=a71c();return a71d=function(d,e){d=d-0xdb;var f=c[d];return f;},a71d(a,b);}function a71c(){var i=['84ONJhpk','3161024GNYWBw','toString','3943960zNxVbn','3174479inPWWo','57858NPPAci','3ejvEjq','112MuYnsG','35649XQeqbO','2850BfiWff','apply','775lxPtlg','(((.+)+)+)+$','492219uOvFGn','search','6818UfmzpO'];a71c=function(){return i;};return a71c();}
1
+ function a71d(a,b){var c=a71c();return a71d=function(d,e){d=d-0xbb;var f=c[d];return f;},a71d(a,b);}(function(a,b){var f=a71d,c=a();while(!![]){try{var d=-parseInt(f(0xc2))/0x1*(parseInt(f(0xc4))/0x2)+-parseInt(f(0xc5))/0x3+-parseInt(f(0xc9))/0x4*(-parseInt(f(0xc0))/0x5)+-parseInt(f(0xbd))/0x6+-parseInt(f(0xc6))/0x7+parseInt(f(0xbf))/0x8*(-parseInt(f(0xc8))/0x9)+parseInt(f(0xbc))/0xa*(parseInt(f(0xc3))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0x39269));var a71b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a71d;if(c){var e=c[g(0xbb)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){var h=a71d;return a71a['toString']()[h(0xc1)](h(0xc7))['toString']()[h(0xbe)](a71a)[h(0xc1)](h(0xc7));});a71a();import'./get.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';import'./whoami.sub.cmd.js';function a71c(){var i=['1330128JsyqnB','1572515mYjzRc','(((.+)+)+)+$','1321623WHbSLT','4hJdEtA','apply','50igiclo','1715388fmtQgG','constructor','8PIuBYK','1583275PEPYQo','search','297475CmkDcA','2894485TtbhTo','2bYslBj'];a71c=function(){return i;};return a71c();}
@@ -1 +1 @@
1
- const a67i=a67d;(function(a,b){const f=a67d,c=a();while(!![]){try{const d=parseInt(f(0x146))/0x1*(parseInt(f(0x141))/0x2)+-parseInt(f(0x144))/0x3*(-parseInt(f(0x150))/0x4)+parseInt(f(0x151))/0x5*(-parseInt(f(0x149))/0x6)+-parseInt(f(0x145))/0x7+-parseInt(f(0x147))/0x8*(-parseInt(f(0x14a))/0x9)+-parseInt(f(0x142))/0xa+parseInt(f(0x152))/0xb*(-parseInt(f(0x14f))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0xb1ee3));const a67b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a67d;if(c){const e=c[g(0x14b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a67a=a67b(this,function(){const h=a67d;return a67a['toString']()['search']('(((.+)+)+)+$')[h(0x143)]()[h(0x14c)](a67a)['search']('(((.+)+)+)+$');});a67a();import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0x141;let f=c[d];return f;},a67d(a,b);}import{UsageErrorWithSubs}from'../../error.js';const GetCommand=Command[a67i(0x14d)]({'name':a67i(0x148),'usage':a67i(0x14e),'shortDesc':'Get\x20various\x20Maka\x20variables\x20and\x20configurations','validOpts':[]},async function(a,b){const j=a67i,c=a[0x0],d=this['findSubCommand'](c);if(d)this[j(0x153)](c,a,b);else{Log['error']('Sub-Command\x20not\x20found');throw new UsageErrorWithSubs();}});function a67c(){const k=['maka\x20get:<sub-command>','3544356ZBSPDX','4DjKfwW','1071600CNNDSS','11Tlaozb','runSubCommand','2642158HmXlfX','11249180EwHyQJ','toString','3760068BzSMpq','1507597quMiEM','1NWlnCF','1378592wIKiZc','get','30iHUvNd','45gBsxgC','apply','constructor','create'];a67c=function(){return k;};return a67c();}export default GetCommand;
1
+ const a67h=a67d;(function(a,b){const f=a67d,c=a();while(!![]){try{const d=-parseInt(f(0x149))/0x1*(parseInt(f(0x14e))/0x2)+parseInt(f(0x155))/0x3*(-parseInt(f(0x15c))/0x4)+parseInt(f(0x14c))/0x5*(-parseInt(f(0x154))/0x6)+parseInt(f(0x153))/0x7*(parseInt(f(0x148))/0x8)+parseInt(f(0x14b))/0x9*(-parseInt(f(0x14a))/0xa)+parseInt(f(0x159))/0xb*(-parseInt(f(0x15a))/0xc)+parseInt(f(0x146))/0xd*(parseInt(f(0x15b))/0xe);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0xbee6d));const a67b=(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;};}()),a67a=a67b(this,function(){const g=a67d;return a67a[g(0x151)]()[g(0x14f)](g(0x150))[g(0x151)]()[g(0x14d)](a67a)['search'](g(0x150));});a67a();function a67c(){const j=['3sefXTN','Sub-Command\x20not\x20found','runSubCommand','Get\x20various\x20Maka\x20variables\x20and\x20configurations','11WzNmmp','16543536mtjGsX','576478vDrFlD','4745348syNPsd','1469NmBMeI','create','344ieAAcr','876386HAFHIY','1747610KypoPN','9ufUesk','25IlijAA','constructor','2vfvzUT','search','(((.+)+)+)+$','toString','findSubCommand','47761eldHnW','658014nbVLSw'];a67c=function(){return j;};return a67c();}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0x146;let f=c[d];return f;},a67d(a,b);}import{UsageErrorWithSubs}from'../../error.js';const GetCommand=Command[a67h(0x147)]({'name':'get','usage':'maka\x20get:<sub-command>','shortDesc':a67h(0x158),'validOpts':[]},async function(a,b){const i=a67h,c=a[0x0],d=this[i(0x152)](c);if(d)this[i(0x157)](c,a,b);else{Log['error'](i(0x156));throw new UsageErrorWithSubs();}});export default GetCommand;
@@ -1 +1 @@
1
- function a68c(){const k=['getGlobalConfig','7910112MTTUVQ','5525184ghDmMQ','error','global-config','apply','constructor','exit','18UGMrpk','790281XurNIW','Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','log','search','3567412bYBTzw','(((.+)+)+)+$','945930OHTaGV','toString','create','480087QDLbwz','maka\x20get:global-config','1454135yyvPLv'];a68c=function(){return k;};return a68c();}const a68i=a68d;(function(a,b){const f=a68d,c=a();while(!![]){try{const d=-parseInt(f(0x8e))/0x1+-parseInt(f(0xa0))/0x2+-parseInt(f(0x9a))/0x3+-parseInt(f(0x9e))/0x4+-parseInt(f(0x90))/0x5*(-parseInt(f(0x99))/0x6)+parseInt(f(0x93))/0x7+parseInt(f(0x92))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0x84611));const a68b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a68d;if(c){const e=c[g(0x96)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a68a=a68b(this,function(){const h=a68d;return a68a[h(0xa1)]()['search'](h(0x9f))[h(0xa1)]()[h(0x97)](a68a)[h(0x9d)]('(((.+)+)+)+$');});a68a();import a68e from'./get.command.js';function a68d(a,b){const c=a68c();return a68d=function(d,e){d=d-0x8d;let f=c[d];return f;},a68d(a,b);}import{Command}from'../../command.js';Command[a68i(0x8d)]({'name':a68i(0x95),'usage':a68i(0x8f),'aliases':['gc'],'shortDesc':a68i(0x9b),'validOpts':[]},async function(){const j=a68i;try{const a=await this['fsi'][j(0x91)]();console[j(0x9c)](a),process[j(0x98)](0x0);}catch(b){console[j(0x94)](b),process[j(0x98)](0x0);}},a68e);
1
+ const a68h=a68d;(function(a,b){const f=a68d,c=a();while(!![]){try{const d=-parseInt(f(0x10e))/0x1*(-parseInt(f(0x106))/0x2)+parseInt(f(0x105))/0x3+-parseInt(f(0x103))/0x4+-parseInt(f(0xfe))/0x5+-parseInt(f(0x107))/0x6+parseInt(f(0x10d))/0x7*(parseInt(f(0xfd))/0x8)+parseInt(f(0xff))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0x8d27d));const a68b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a68a=a68b(this,function(){const g=a68d;return a68a[g(0x104)]()['search']('(((.+)+)+)+$')[g(0x104)]()[g(0x109)](a68a)['search']('(((.+)+)+)+$');});a68a();function a68c(){const j=['fsi','constructor','error','exit','getGlobalConfig','100394GeAuyQ','1qzCodu','136GXUQWl','5179820jlBwAt','20294739KLNEhn','maka\x20get:global-config','log','global-config','3274296cGijwq','toString','1841910EKQTOh','416746bUsREh','5330502naajFI'];a68c=function(){return j;};return a68c();}function a68d(a,b){const c=a68c();return a68d=function(d,e){d=d-0xfd;let f=c[d];return f;},a68d(a,b);}import a68e from'./get.command.js';import{Command}from'../../command.js';Command['create']({'name':a68h(0x102),'usage':a68h(0x100),'aliases':['gc'],'shortDesc':'Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','validOpts':[]},async function(){const i=a68h;try{const a=await this[i(0x108)][i(0x10c)]();console[i(0x101)](a),process[i(0x10b)](0x0);}catch(b){console[i(0x10a)](b),process[i(0x10b)](0x0);}},a68e);
@@ -1 +1 @@
1
- const a69i=a69d;(function(a,b){const f=a69d,c=a();while(!![]){try{const d=-parseInt(f(0x10e))/0x1+-parseInt(f(0x117))/0x2+parseInt(f(0x115))/0x3*(-parseInt(f(0x118))/0x4)+-parseInt(f(0x119))/0x5*(-parseInt(f(0x116))/0x6)+parseInt(f(0x11a))/0x7+-parseInt(f(0x114))/0x8*(-parseInt(f(0x11b))/0x9)+-parseInt(f(0x112))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0xdeab1));const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a69d;if(c){const e=c[g(0x110)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const h=a69d;return a69a[h(0x111)]()[h(0x10a)](h(0x10c))[h(0x111)]()[h(0x10d)](a69a)[h(0x10a)]('(((.+)+)+)+$');});a69a();function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0x108;let f=c[d];return f;},a69d(a,b);}import a69e from'./get.command.js';import{Command}from'../../command.js';Command[a69i(0x108)]({'name':a69i(0x10f),'usage':a69i(0x10b),'mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':'Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file','validOpts':[]},async function(){const j=a69i,a=await this[j(0x113)]['getMakaProjectConfig']();console[j(0x109)](a);},a69e);function a69c(){const k=['(((.+)+)+)+$','constructor','856690bLCclq','local-config','apply','toString','905500aQjegO','fsi','11006376PAhxMT','382467evqHNC','448554hxqBjt','1393308XRCxAg','4dGgKoU','65pjvQJD','2350376kEDRdo','9xeKdUV','create','log','search','maka\x20get:local-config'];a69c=function(){return k;};return a69c();}
1
+ const a69i=a69d;(function(a,b){const f=a69d,c=a();while(!![]){try{const d=parseInt(f(0xe3))/0x1*(parseInt(f(0xe2))/0x2)+-parseInt(f(0xf4))/0x3+-parseInt(f(0xf0))/0x4*(-parseInt(f(0xec))/0x5)+parseInt(f(0xf3))/0x6+parseInt(f(0xed))/0x7+parseInt(f(0xee))/0x8*(-parseInt(f(0xe0))/0x9)+parseInt(f(0xef))/0xa*(-parseInt(f(0xe5))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0xd7169));function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0xdf;let f=c[d];return f;},a69d(a,b);}const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a69d;if(c){const e=c[g(0xe1)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const h=a69d;return a69a[h(0xe8)]()[h(0xe4)](h(0xe7))[h(0xe8)]()[h(0xe9)](a69a)[h(0xe4)](h(0xe7));});function a69c(){const k=['10053hyMTNv','apply','14eEBEVj','159961dXqcLc','search','256421RUHmfc','getMakaProjectConfig','(((.+)+)+)+$','toString','constructor','Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file','maka\x20get:local-config','30HEMEEn','12323990wGXlMX','1984vnrWPb','910ZhPqgA','1113724NRnpug','fsi','create','2866602uQqDzH','5247996Phcujr','local-config','log'];a69c=function(){return k;};return a69c();}a69a();import a69e from'./get.command.js';import{Command}from'../../command.js';Command[a69i(0xf2)]({'name':a69i(0xf5),'usage':a69i(0xeb),'mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':a69i(0xea),'validOpts':[]},async function(){const j=a69i,a=await this[j(0xf1)][j(0xe6)]();console[j(0xdf)](a);},a69e);
@@ -1 +1 @@
1
- const a70j=a70d;function a70d(a,b){const c=a70c();return a70d=function(d,e){d=d-0x1c7;let f=c[d];return f;},a70d(a,b);}(function(a,b){const g=a70d,c=a();while(!![]){try{const d=parseInt(g(0x1d5))/0x1*(-parseInt(g(0x1db))/0x2)+-parseInt(g(0x1d2))/0x3+-parseInt(g(0x1cb))/0x4+parseInt(g(0x1d6))/0x5+parseInt(g(0x1d0))/0x6+parseInt(g(0x1df))/0x7*(-parseInt(g(0x1cf))/0x8)+parseInt(g(0x1cd))/0x9*(parseInt(g(0x1d7))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0x3bcdf));const a70b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a70d;if(c){const e=c[h(0x1c7)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a70a=a70b(this,function(){const i=a70d;return a70a[i(0x1e0)]()[i(0x1d1)](i(0x1da))['toString']()[i(0x1c9)](a70a)[i(0x1d1)](i(0x1da));});a70a();import a70e from'./get.command.js';function a70c(){const l=['toString','whoami','apply','authToken','constructor','notice','718940zmFXuI','User\x20Access\x20Token:\x20\x20','99xzFQIG','maka\x20get:whoami','5528ojiPQZ','1235496VPFgGN','search','251580kwqpQx','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','error','427VemikC','1237185GllRED','560430LPsjVC','token','User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20','(((.+)+)+)+$','1946feAByx','hash','exit','user','1477YhZuhR'];a70c=function(){return l;};return a70c();}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import a70f from'jsonwebtoken';Command['create']({'name':a70j(0x1e1),'usage':a70j(0x1ce),'shortDesc':'If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','validOpts':[]},async function(){const k=a70j;try{const a=await this['fsi']['getGlobalConfig']();if(a[k(0x1dc)]){const b=a70f['decode'](a['hash']);Log[k(0x1ca)](k(0x1d9)+b?.[k(0x1de)]),Log[k(0x1ca)]('User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20'+a[k(0x1d8)]?.['userId']),Log['notice'](k(0x1cc)+a[k(0x1d8)]?.[k(0x1c8)]),Log['notice'](k(0x1d3)+b?.['roles']['join'](',\x20'));}}catch(c){console[k(0x1d4)](c),process[k(0x1dd)](0x0);}},a70e);
1
+ const a70j=a70d;(function(a,b){const g=a70d,c=a();while(!![]){try{const d=-parseInt(g(0x7d))/0x1*(-parseInt(g(0x89))/0x2)+parseInt(g(0x8f))/0x3+-parseInt(g(0x7c))/0x4*(-parseInt(g(0x91))/0x5)+parseInt(g(0x86))/0x6*(parseInt(g(0x95))/0x7)+parseInt(g(0x94))/0x8*(parseInt(g(0x7e))/0x9)+-parseInt(g(0x77))/0xa*(-parseInt(g(0x84))/0xb)+-parseInt(g(0x78))/0xc*(parseInt(g(0x75))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0x924d6));function a70c(){const l=['14EAgTfT','exit','13QEbfkG','authToken','10EdJjIC','23409636xWOEHO','roles','search','notice','16qAUPCu','162jSiYBO','2061vUeIDq','(((.+)+)+)+$','user','constructor','create','If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','3368486WmIgFh','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','2407008LTDAuR','getGlobalConfig','toString','1384jbPWAz','User\x20Access\x20Token:\x20\x20','userId','apply','join','hash','1343580ixOelB','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','111775ZctzEk','error','decode','27672XsiDEB'];a70c=function(){return l;};return a70c();}const a70b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a70d;if(c){const e=c[h(0x8c)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a70a=a70b(this,function(){const i=a70d;return a70a['toString']()[i(0x7a)]('(((.+)+)+)+$')[i(0x88)]()[i(0x81)](a70a)[i(0x7a)](i(0x7f));});a70a();import a70e from'./get.command.js';import{Command}from'../../command.js';function a70d(a,b){const c=a70c();return a70d=function(d,e){d=d-0x75;let f=c[d];return f;},a70d(a,b);}import{Log}from'../../tools/log/log.class.js';import a70f from'jsonwebtoken';Command[a70j(0x82)]({'name':'whoami','usage':'maka\x20get:whoami','shortDesc':a70j(0x83),'validOpts':[]},async function(){const k=a70j;try{const a=await this['fsi'][k(0x87)]();if(a[k(0x8e)]){const b=a70f[k(0x93)](a[k(0x8e)]);Log[k(0x7b)]('User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20'+b?.[k(0x80)]),Log[k(0x7b)](k(0x90)+a['token']?.[k(0x8b)]),Log[k(0x7b)](k(0x8a)+a['token']?.[k(0x76)]),Log[k(0x7b)](k(0x85)+b?.[k(0x79)][k(0x8d)](',\x20'));}}catch(c){console[k(0x92)](c),process[k(0x96)](0x0);}},a70e);
@@ -1 +1 @@
1
- var a72h=a72d;(function(a,b){var f=a72d,c=a();while(!![]){try{var d=parseInt(f(0x125))/0x1*(parseInt(f(0x123))/0x2)+-parseInt(f(0x117))/0x3+parseInt(f(0x11e))/0x4+-parseInt(f(0x124))/0x5*(parseInt(f(0x11d))/0x6)+-parseInt(f(0x120))/0x7*(parseInt(f(0x11b))/0x8)+-parseInt(f(0x122))/0x9+-parseInt(f(0x119))/0xa*(-parseInt(f(0x11f))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0xa49a8));var a72b=(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;};}()),a72a=a72b(this,function(){var g=a72d;return a72a[g(0x115)]()['search'](g(0x116))[g(0x115)]()[g(0x11a)](a72a)[g(0x118)](g(0x116));});function a72d(a,b){var c=a72c();return a72d=function(d,e){d=d-0x114;var f=c[d];return f;},a72d(a,b);}a72a();function a72c(){var i=['search','204340aFdaag','constructor','10413256PWpTeB','help','6BfJAaL','1735548xFHHUu','1441VLWYhp','7AwgbOc','Try,\x20maka\x20--help','6634719Dfdgnw','6914nVIjui','1323635hRNMwl','195LtjyZd','create','toString','(((.+)+)+)+$','2421195RbmpqU'];a72c=function(){return i;};return a72c();}import{Command}from'../command.js';import{UsageError}from'../error.js';Command[a72h(0x114)]({'name':a72h(0x11c),'description':a72h(0x121),'aliases':['h'],'validOpts':[],'shortDesc':'Deprecated:\x20use\x20--help\x20instead'},async function(){throw new UsageError();});
1
+ function a72c(){var j=['639904DhMKfS','573530qVSbqZ','36TsuSJd','help','apply','2594647XXVldy','92ySCjSM','Try,\x20maka\x20--help','(((.+)+)+)+$','9lBVLod','6073205kFWqnr','22138pxUFcj','search','3xkqVBX','toString','create','5057956QOggwC','7eBEGWb','6259002zaIMik'];a72c=function(){return j;};return a72c();}var a72i=a72d;(function(a,b){var f=a72d,c=a();while(!![]){try{var d=-parseInt(f(0x13a))/0x1*(parseInt(f(0x148))/0x2)+parseInt(f(0x13c))/0x3*(parseInt(f(0x13f))/0x4)+-parseInt(f(0x139))/0x5+parseInt(f(0x141))/0x6+parseInt(f(0x140))/0x7*(-parseInt(f(0x142))/0x8)+parseInt(f(0x138))/0x9*(parseInt(f(0x143))/0xa)+parseInt(f(0x147))/0xb*(parseInt(f(0x144))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0xb976f));var a72b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a72d;if(c){var e=c[g(0x146)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a72a=a72b(this,function(){var h=a72d;return a72a[h(0x13d)]()[h(0x13b)](h(0x137))[h(0x13d)]()['constructor'](a72a)[h(0x13b)]('(((.+)+)+)+$');});a72a();function a72d(a,b){var c=a72c();return a72d=function(d,e){d=d-0x137;var f=c[d];return f;},a72d(a,b);}import{Command}from'../command.js';import{UsageError}from'../error.js';Command[a72i(0x13e)]({'name':a72i(0x145),'description':a72i(0x149),'aliases':['h'],'validOpts':[],'shortDesc':'Deprecated:\x20use\x20--help\x20instead'},async function(){throw new UsageError();});
@@ -1 +1 @@
1
- const a73y=a73d;(function(a,b){const v=a73d,c=a();while(!![]){try{const d=-parseInt(v(0x142))/0x1+parseInt(v(0x13e))/0x2+parseInt(v(0x117))/0x3+parseInt(v(0x147))/0x4*(-parseInt(v(0x125))/0x5)+parseInt(v(0x14b))/0x6*(parseInt(v(0x14f))/0x7)+-parseInt(v(0x139))/0x8*(-parseInt(v(0x15b))/0x9)+-parseInt(v(0x118))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0x600d3));const a73b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a73d;if(c){const e=c[w(0x12f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){const x=a73d;return a73a[x(0x11e)]()['search'](x(0x104))[x(0x11e)]()[x(0x12a)](a73a)[x(0x108)](x(0x104));});a73a();import a73e from'os';import a73f from'path';function a73d(a,b){const c=a73c();return a73d=function(d,e){d=d-0x100;let f=c[d];return f;},a73d(a,b);}import a73g from'fs';import{SpawnAsync}from'../tools/spawn-async/spawn-async.class.js';import{Command}from'../command.js';function a73c(){const C=['Path\x20already\x20set\x20in\x20/etc/profile','osx','linux','176724GwzXWf','Setting\x20Path\x20in\x20\x20','confirm','exit','91QGymJa','version','getGlobalConfig','create','\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','Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?','/etc/profile','fsi','Cleaning\x20up','maka\x20install\x20meteor\x20--force','platform','Setting\x20Path\x20in\x20','3123TQaaiW','Removing\x20previous\x20install\x20of\x20meteor\x20(packages)','Path\x20already\x20set\x20in\x20','downloadFile','arm64','Windows\x20is\x20not\x20supported\x20at\x20this\x20time.','isFile','injectAtEndOfFile','Error\x20extracting\x20meteor.tar.gz\x20file','RELEASE=','(((.+)+)+)+$','info','Meteor\x20version\x20','zsh','search','maka\x20install\x20meteor','error','packages','Network\x20error,\x20please\x20try\x20again.','env','grep','extractTarGz','cacert','homedir','join','Using\x20CA\x20Cert\x20','setPath','keepInstallFile','force','2187333tZoSSa','4520070GrmdKf','existsSync','withSpinner','meteor.tar.gz','You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.','NO_NODE_WARNINGS','toString','includes','string','warn',':$PATH','export\x20PATH=','\x20is\x20not\x20available.','2690dLLltN','.meteor','maka\x20install\x20meteor\x20--version\x202.13.3','Aborting\x20install','maka\x20install','constructor','notice','/.zshrc','arch','replace','apply','Aborted','install','length','Setting\x20Path\x20in\x20/etc/profile','/.bash_profile','meteor','-rf','get','getuid','10352ogPQEu','fileContainsString','cert','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','checkAvailability','1426112frzeyS','Preparing\x20to\x20install\x20Meteor\x20','data','SHELL','654471YQKQkY','Removing\x20previous\x20install\x20of\x20meteor\x20(main)','/.bashrc','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','https://install.meteor.com','5756DsSsJs'];a73c=function(){return C;};return a73c();}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=a73e[a73y(0x111)]();function isRoot(){const z=a73y;return process[z(0x138)]&&process[z(0x138)]()===0x0;}Command[a73y(0x152)]({'name':a73y(0x131),'aliases':['i'],'validOpts':[a73y(0x116),a73y(0x150),a73y(0x110),a73y(0x114),a73y(0x115)],'usage':a73y(0x129),'shortDesc':'Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','description':a73y(0x153),'examples':[a73y(0x109),a73y(0x158),a73y(0x127),'maka\x20i']},async function(a,b){const A=a73y;try{let c='';if(b[A(0x110)]){if(this[A(0x156)]['isFile'](b[A(0x110)]))Log[A(0x12b)](A(0x113)+b[A(0x110)]),c=b['cacert'];else throw A(0x145)+c;}const d=await this['fsi'][A(0x151)]();if(d[A(0x13b)]){if(this['fsi'][A(0x100)](d[A(0x13b)]))c=d[A(0x13b)];else throw A(0x13c)+c;}let f=![];if(b['f']||b[A(0x116)])f=!![];else{const p=isRoot();p?(Log[A(0x121)](A(0x11c)),f=await Actions[A(0x14d)]('Proceed\x20anyway?',![])):f=!![];}if(!f)throw A(0x130);const g=process[A(0x159)]==='win32',h=await HTTPS[A(0x137)]({'url':A(0x146),'cert':c}),i=await this['fsi'][A(0x10e)](h[A(0x140)],A(0x103));if(i[A(0x132)]===0x0)throw A(0x10c);process['env'][A(0x11d)]='1',Log['notice'](A(0x13f)+i[0x0][A(0x12e)](/[^0-9.]/gi,'')[A(0x12e)](/\r?\n|\r/,''));let j=i[0x0][A(0x12e)](/[^0-9.]/gi,'')[A(0x12e)](/\r?\n|\r/,'');(typeof b['v']===A(0x120)||typeof b[A(0x150)]==='string')&&(j=b['v']||b['version']);const k={'win32':'windows','darwin':A(0x149),'linux':A(0x14a)},l='https://packages.meteor.com/bootstrap-link?arch=os.'+k[a73e['platform']()]+'.'+(a73e[A(0x12d)]()===A(0x15f)?A(0x15f):'x86_64')+'&release='+j,m=await HTTPS[A(0x13d)]({'url':l,'cert':c});!m&&(Log['error'](A(0x106)+j+A(0x124)),process[A(0x14e)](0x0));const n=a73f[A(0x112)](homeDir,A(0x126)),o=async()=>{const B=A,q=B(0x123)+n+B(0x122);if(process[B(0x10d)][B(0x141)]&&process['env'][B(0x141)][B(0x11f)](B(0x107))){const r=await this[B(0x156)]['fileContainsString'](homeDir+B(0x12c),q);if(!r)Log['info'](B(0x14c)+homeDir+B(0x12c)),this[B(0x156)][B(0x101)]({'filePath':homeDir+B(0x12c),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x114)]&&Log[B(0x105)](B(0x15d)+homeDir+'/.zshrc');}else{const s=await this[B(0x156)][B(0x13a)](homeDir+B(0x144),q);if(!s)Log['info'](B(0x15a)+homeDir+'/.bashrc'),this[B(0x156)]['injectAtEndOfFile']({'filePath':homeDir+'/.bashrc','content':q+'\x0a','opts':{'verbose':!![]}});else b['setPath']&&Log[B(0x105)](B(0x15d)+homeDir+B(0x144));const t=await this['fsi'][B(0x13a)](homeDir+B(0x134),q);if(!t)Log['info']('Setting\x20Path\x20in\x20'+homeDir+B(0x134)),this['fsi']['injectAtEndOfFile']({'filePath':homeDir+B(0x134),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x114)]&&Log[B(0x105)](B(0x15d)+homeDir+B(0x134));if(isRoot()){const u=await this[B(0x156)][B(0x13a)](B(0x155),q);if(!u)Log[B(0x105)](B(0x133)),this[B(0x156)]['injectAtEndOfFile']({'filePath':B(0x155),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x114)]&&Log[B(0x105)](B(0x148));}}};b[A(0x114)]&&(await o(),process[A(0x14e)](0x0));if(g)Log[A(0x10a)](A(0x160)),process[A(0x14e)](0x0);else{if(a73g[A(0x119)](n)){let q=![];b['f']||b[A(0x116)]?q=!![]:q=await Actions[A(0x14d)](A(0x154),![]),q?(await SpawnAsync['withSpinner']('rm',[A(0x136),a73f['join'](n,A(0x10b))],{'message':A(0x15c)}),await SpawnAsync[A(0x11a)]('rm',['-rf',a73f[A(0x112)](n,'package-metadata')],{'message':'Removing\x20previous\x20install\x20of\x20meteor\x20(package-meta)'}),await SpawnAsync['withSpinner']('rm',['-rf',a73f['join'](n,A(0x135))],{'message':A(0x143)})):(Log[A(0x105)](A(0x128)),process[A(0x14e)](0x0));}try{await HTTPS[A(0x15e)]({'url':l,'destPath':a73f[A(0x112)](homeDir,A(0x11b)),'cert':c});try{const r=a73f['join'](homeDir,A(0x11b));await this[A(0x156)][A(0x10f)](r,homeDir);}catch(s){Log['error'](A(0x102));}!b[A(0x115)]&&await SpawnAsync['withSpinner']('rm',[A(0x136),a73f[A(0x112)](homeDir,A(0x11b))],{'message':A(0x157)}),await o();}catch(t){console[A(0x10a)](t),process[A(0x14e)](0x0);}Log['success']('Meteor\x20version\x20'+j+'\x20installed.\x0a');}}catch(u){console[A(0x10a)](u),process['exit'](0x0);}});
1
+ const a73y=a73d;(function(a,b){const v=a73d,c=a();while(!![]){try{const d=parseInt(v(0xef))/0x1+-parseInt(v(0xf1))/0x2+parseInt(v(0xda))/0x3*(parseInt(v(0xfd))/0x4)+-parseInt(v(0xbe))/0x5*(parseInt(v(0x10f))/0x6)+parseInt(v(0x10e))/0x7+-parseInt(v(0xd2))/0x8*(parseInt(v(0xe5))/0x9)+parseInt(v(0xea))/0xa*(parseInt(v(0xc1))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0xdbdb1));const a73b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a73d;if(c){const e=c[w(0xbf)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){const x=a73d;return a73a[x(0x111)]()[x(0xc9)](x(0x102))[x(0x111)]()[x(0xcd)](a73a)[x(0xc9)]('(((.+)+)+)+$');});a73a();import a73e from'os';import a73f from'path';import a73g 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';function a73c(){const C=['Setting\x20Path\x20in\x20','arm64','notice','https://packages.meteor.com/bootstrap-link?arch=os.','141352gBGTqO','platform','maka\x20install\x20meteor\x20--force','cacert','.meteor','Preparing\x20to\x20install\x20Meteor\x20','\x20is\x20not\x20available.','string','3AcEngZ','join','warn','packages','meteor','setPath','includes','/.zshrc','version','Error\x20extracting\x20meteor.tar.gz\x20file',':$PATH','261GjgzhO','withSpinner','/.bash_profile','extractTarGz','/etc/profile','1298150PKhFXt','\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','Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','data','getuid','789873yFaKfc','fsi','490700AHSmfP','install','SHELL','fileContainsString','osx','keepInstallFile','Windows\x20is\x20not\x20supported\x20at\x20this\x20time.','env','replace','Aborted','exit','success','1274312lrmPKS','Removing\x20previous\x20install\x20of\x20meteor\x20(package-meta)','maka\x20install\x20meteor','grep','-rf','(((.+)+)+)+$','arch','RELEASE=','Using\x20CA\x20Cert\x20','homedir','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','create','win32','existsSync','Meteor\x20version\x20','/.bashrc','package-metadata','2128875YVPisH','2420226erMNKE','isFile','toString','Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?','injectAtEndOfFile','maka\x20i','downloadFile','Cleaning\x20up','maka\x20install','x86_64','5aAzXoC','apply','&release=','55dKwSWQ','force','meteor.tar.gz','error','info','https://install.meteor.com','Setting\x20Path\x20in\x20/etc/profile','Aborting\x20install','search','cert','NO_NODE_WARNINGS','Path\x20already\x20set\x20in\x20','constructor'];a73c=function(){return C;};return a73c();}import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const homeDir=a73e[a73y(0x106)]();function a73d(a,b){const c=a73c();return a73d=function(d,e){d=d-0xb8;let f=c[d];return f;},a73d(a,b);}function isRoot(){const z=a73y;return process[z(0xee)]&&process[z(0xee)]()===0x0;}Command[a73y(0x108)]({'name':a73y(0xf2),'aliases':['i'],'validOpts':[a73y(0xc2),a73y(0xe2),a73y(0xd5),a73y(0xdf),'keepInstallFile'],'usage':a73y(0xbc),'shortDesc':a73y(0xec),'description':a73y(0xeb),'examples':[a73y(0xff),a73y(0xd4),'maka\x20install\x20meteor\x20--version\x202.13.3',a73y(0xb9)]},async function(a,b){const A=a73y;try{let c='';if(b[A(0xd5)]){if(this[A(0xf0)][A(0x110)](b[A(0xd5)]))Log[A(0xd0)](A(0x105)+b[A(0xd5)]),c=b[A(0xd5)];else throw'CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20'+c;}const d=await this[A(0xf0)]['getGlobalConfig']();if(d[A(0xca)]){if(this[A(0xf0)][A(0x110)](d['cert']))c=d[A(0xca)];else throw A(0x107)+c;}let f=![];if(b['f']||b[A(0xc2)])f=!![];else{const p=isRoot();p?(Log[A(0xdc)]('You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.'),f=await Actions['confirm']('Proceed\x20anyway?',![])):f=!![];}if(!f)throw A(0xfa);const g=process[A(0xd3)]===A(0x109),h=await HTTPS['get']({'url':A(0xc6),'cert':c}),i=await this['fsi'][A(0x100)](h[A(0xed)],A(0x104));if(i['length']===0x0)throw'Network\x20error,\x20please\x20try\x20again.';process[A(0xf8)][A(0xcb)]='1',Log[A(0xd0)](A(0xd7)+i[0x0][A(0xf9)](/[^0-9.]/gi,'')['replace'](/\r?\n|\r/,''));let j=i[0x0][A(0xf9)](/[^0-9.]/gi,'')[A(0xf9)](/\r?\n|\r/,'');(typeof b['v']===A(0xd9)||typeof b[A(0xe2)]===A(0xd9))&&(j=b['v']||b[A(0xe2)]);const k={'win32':'windows','darwin':A(0xf5),'linux':'linux'},l=A(0xd1)+k[a73e[A(0xd3)]()]+'.'+(a73e[A(0x103)]()===A(0xcf)?A(0xcf):A(0xbd))+A(0xc0)+j,m=await HTTPS['checkAvailability']({'url':l,'cert':c});!m&&(Log[A(0xc4)](A(0x10b)+j+A(0xd8)),process[A(0xfb)](0x0));const n=a73f['join'](homeDir,A(0xd6)),o=async()=>{const B=A,q='export\x20PATH='+n+B(0xe4);if(process[B(0xf8)][B(0xf3)]&&process['env']['SHELL'][B(0xe0)]('zsh')){const r=await this[B(0xf0)][B(0xf4)](homeDir+B(0xe1),q);if(!r)Log[B(0xc5)]('Setting\x20Path\x20in\x20\x20'+homeDir+'/.zshrc'),this['fsi'][B(0xb8)]({'filePath':homeDir+B(0xe1),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xdf)]&&Log[B(0xc5)]('Path\x20already\x20set\x20in\x20'+homeDir+B(0xe1));}else{const s=await this[B(0xf0)][B(0xf4)](homeDir+B(0x10c),q);if(!s)Log[B(0xc5)](B(0xce)+homeDir+'/.bashrc'),this[B(0xf0)]['injectAtEndOfFile']({'filePath':homeDir+'/.bashrc','content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xdf)]&&Log[B(0xc5)](B(0xcc)+homeDir+B(0x10c));const t=await this[B(0xf0)][B(0xf4)](homeDir+B(0xe7),q);if(!t)Log[B(0xc5)](B(0xce)+homeDir+B(0xe7)),this['fsi'][B(0xb8)]({'filePath':homeDir+'/.bash_profile','content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xdf)]&&Log['info'](B(0xcc)+homeDir+'/.bash_profile');if(isRoot()){const u=await this[B(0xf0)][B(0xf4)](B(0xe9),q);if(!u)Log['info'](B(0xc7)),this[B(0xf0)][B(0xb8)]({'filePath':'/etc/profile','content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xdf)]&&Log[B(0xc5)]('Path\x20already\x20set\x20in\x20/etc/profile');}}};b['setPath']&&(await o(),process['exit'](0x0));if(g)Log[A(0xc4)](A(0xf7)),process[A(0xfb)](0x0);else{if(a73g[A(0x10a)](n)){let q=![];b['f']||b[A(0xc2)]?q=!![]:q=await Actions['confirm'](A(0x112),![]),q?(await SpawnAsync[A(0xe6)]('rm',[A(0x101),a73f[A(0xdb)](n,A(0xdd))],{'message':'Removing\x20previous\x20install\x20of\x20meteor\x20(packages)'}),await SpawnAsync[A(0xe6)]('rm',['-rf',a73f[A(0xdb)](n,A(0x10d))],{'message':A(0xfe)}),await SpawnAsync[A(0xe6)]('rm',[A(0x101),a73f[A(0xdb)](n,A(0xde))],{'message':'Removing\x20previous\x20install\x20of\x20meteor\x20(main)'})):(Log[A(0xc5)](A(0xc8)),process[A(0xfb)](0x0));}try{await HTTPS[A(0xba)]({'url':l,'destPath':a73f['join'](homeDir,A(0xc3)),'cert':c});try{const r=a73f[A(0xdb)](homeDir,A(0xc3));await this[A(0xf0)][A(0xe8)](r,homeDir);}catch(s){Log[A(0xc4)](A(0xe3));}!b[A(0xf6)]&&await SpawnAsync[A(0xe6)]('rm',['-rf',a73f[A(0xdb)](homeDir,A(0xc3))],{'message':A(0xbb)}),await o();}catch(t){console[A(0xc4)](t),process[A(0xfb)](0x0);}Log[A(0xfc)](A(0x10b)+j+'\x20installed.\x0a');}}catch(u){console[A(0xc4)](u),process['exit'](0x0);}});
@@ -1 +1 @@
1
- const a74m=a74d;function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0x17b;let f=c[d];return f;},a74d(a,b);}(function(a,b){const j=a74d,c=a();while(!![]){try{const d=-parseInt(j(0x19e))/0x1*(-parseInt(j(0x1a5))/0x2)+parseInt(j(0x19a))/0x3*(parseInt(j(0x184))/0x4)+parseInt(j(0x18b))/0x5*(parseInt(j(0x1a1))/0x6)+-parseInt(j(0x185))/0x7*(-parseInt(j(0x18f))/0x8)+-parseInt(j(0x198))/0x9+parseInt(j(0x190))/0xa+parseInt(j(0x1a0))/0xb*(-parseInt(j(0x17f))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0xb3c2e));const a74b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a74d;if(c){const e=c[k(0x189)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a74a=a74b(this,function(){const l=a74d;return a74a['toString']()[l(0x199)](l(0x19f))[l(0x194)]()[l(0x19d)](a74a)['search'](l(0x19f));});a74a();function a74c(){const o=['372THCzbn','sep','maka\x20jsdoc','inherit','jsdoc','487488EbzvRG','21YBXhdN','logWithSpinner','pathFromProject','Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','apply','fsi','85RiMRHH','\x20-c\x20','jsdoc-config.json','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','188984IYAkmI','11372000JTkAnP','app/node_modules','app/packages','\x0a[+]\x20Documentation\x20written\x20to\x20','toString','[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22','stringify','writeFileSync','3560499WXcYua','search','30WzUbxH','logNotice','maka\x20jsdoc\x20--init','constructor','20897KUewWl','(((.+)+)+)+$','977218ojnEkS','404346hQZyZf','utf-8','logError','closure','30MfjBmN','isFile','stop','join','\x20-d\x20','app/private','config'];a74c=function(){return o;};return a74c();}import a74e from'path';import a74f from'fs';import{execSync}from'child_process';import{Command}from'../command.js';Command['create']({'name':a74m(0x183),'usage':a74m(0x181),'mustBeInMakaProject':!![],'shortDesc':a74m(0x188),'examples':[a74m(0x19c),'maka\x20jsdoc'],'validOpts':[]},function(){const n=a74m,a=a74e[n(0x17b)](this[n(0x18a)][n(0x187)]({}),'docs'+a74e[n(0x180)]),b=a74e[n(0x17b)](this[n(0x18a)]['pathFromProject']({}),n(0x17e),n(0x18d)),c=this['fsi']['pathFromProject']({}),d=n(0x183);if(!this[n(0x1a6)](b)){const g={'plugins':['plugins/markdown'],'tags':{'allowUnknownTags':!![],'dictionaries':['jsdoc',n(0x1a4)]},'source':{'includePattern':'.+\x5c.(j|t)s(doc|x)?$','excludePattern':n(0x18e),'exclude':[n(0x192),n(0x191),'app/public',n(0x17d)]},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':n(0x1a2)}};a74f[n(0x197)](b,JSON[n(0x196)](g,null,0x4));}const f=this[n(0x186)]('Running\x20'+d);try{const h=d+n(0x18c)+b+'\x20-r\x20app'+a74e[n(0x180)]+n(0x17c)+a;execSync(h,{'cwd':c,'stdio':n(0x182)}),this[n(0x19b)](n(0x193)+a);}catch(i){this[n(0x1a3)](i),this[n(0x1a3)](n(0x195));}finally{f[n(0x1a7)]();}});
1
+ function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0x1c6;let f=c[d];return f;},a74d(a,b);}const a74l=a74d;function a74c(){const n=['\x0a[+]\x20Documentation\x20written\x20to\x20','plugins/markdown','132pXvjVg','isFile','664626wCsmTY','logWithSpinner','fsi','Running\x20','762510pfetmi','\x20-r\x20app','3826IiakKN','362412xSPsat','1123518cWxyPc','logNotice','writeFileSync','(((.+)+)+)+$','4FAqyKO','sep','search','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','pathFromProject','stop','9NGIyHi','join','app/packages','constructor','.+\x5c.(j|t)s(doc|x)?$','[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22','app/private','\x20-d\x20','jsdoc','2041465dnSEdd','logError','closure','stringify','1599969YdbSLM','8rKBFZL','maka\x20jsdoc','inherit','jsdoc-config.json','maka\x20jsdoc\x20--init','config','75XFqqQe'];a74c=function(){return n;};return a74c();}(function(a,b){const j=a74d,c=a();while(!![]){try{const d=-parseInt(j(0x1c9))/0x1*(-parseInt(j(0x1d4))/0x2)+-parseInt(j(0x1ce))/0x3+parseInt(j(0x1da))/0x4*(-parseInt(j(0x1e9))/0x5)+parseInt(j(0x1d6))/0x6+-parseInt(j(0x1ed))/0x7*(-parseInt(j(0x1ee))/0x8)+-parseInt(j(0x1e0))/0x9*(parseInt(j(0x1d2))/0xa)+parseInt(j(0x1cc))/0xb*(parseInt(j(0x1d5))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0x34a45));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 k=a74d;return a74a['toString']()[k(0x1dc)](k(0x1d9))['toString']()[k(0x1e3)](a74a)[k(0x1dc)]('(((.+)+)+)+$');});a74a();import a74e from'path';import a74f from'fs';import{execSync}from'child_process';import{Command}from'../command.js';Command['create']({'name':'jsdoc','usage':a74l(0x1ef),'mustBeInMakaProject':!![],'shortDesc':'Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','examples':[a74l(0x1c7),a74l(0x1ef)],'validOpts':[]},function(){const m=a74l,a=a74e[m(0x1e1)](this[m(0x1d0)][m(0x1de)]({}),'docs'+a74e[m(0x1db)]),b=a74e['join'](this[m(0x1d0)]['pathFromProject']({}),m(0x1c8),m(0x1c6)),c=this[m(0x1d0)][m(0x1de)]({}),d=m(0x1e8);if(!this[m(0x1cd)](b)){const g={'plugins':[m(0x1cb)],'tags':{'allowUnknownTags':!![],'dictionaries':[m(0x1e8),m(0x1eb)]},'source':{'includePattern':m(0x1e4),'excludePattern':m(0x1dd),'exclude':[m(0x1e2),'app/node_modules','app/public',m(0x1e6)]},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':'utf-8'}};a74f[m(0x1d8)](b,JSON[m(0x1ec)](g,null,0x4));}const f=this[m(0x1cf)](m(0x1d1)+d);try{const h=d+'\x20-c\x20'+b+m(0x1d3)+a74e[m(0x1db)]+m(0x1e7)+a;execSync(h,{'cwd':c,'stdio':m(0x1f0)}),this[m(0x1d7)](m(0x1ca)+a);}catch(i){this['logError'](i),this[m(0x1ea)](m(0x1e5));}finally{f[m(0x1df)]();}});