@profoundlogic/coderflow-server 0.2.5 → 0.2.7

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 (141) hide show
  1. package/dist/base-image/Dockerfile +5 -0
  2. package/dist/base-image/agent-wrapper.sh +12 -2
  3. package/dist/coder-server.js +1 -1
  4. package/dist/config.js +1 -1
  5. package/dist/lib/agent-keepalive.js +1 -1
  6. package/dist/lib/api-keys.js +1 -1
  7. package/dist/lib/apiKeys.js +1 -1
  8. package/dist/lib/app-server-ports.js +1 -1
  9. package/dist/lib/auto-judge.js +1 -1
  10. package/dist/lib/basic-auth.js +1 -1
  11. package/dist/lib/build-history.js +1 -1
  12. package/dist/lib/build-output-service.js +1 -1
  13. package/dist/lib/build-scheduler.js +1 -1
  14. package/dist/lib/build-service.js +1 -1
  15. package/dist/lib/ca-certificates.js +1 -1
  16. package/dist/lib/claude-oauth-refresh.js +1 -1
  17. package/dist/lib/cli/build.js +1 -1
  18. package/dist/lib/cli/config-command.js +1 -1
  19. package/dist/lib/cli/config.js +1 -1
  20. package/dist/lib/cli/create-user.js +1 -1
  21. package/dist/lib/cli/init.js +1 -1
  22. package/dist/lib/cli/jira.js +1 -1
  23. package/dist/lib/cli/license.js +1 -1
  24. package/dist/lib/cli/server-manager.js +1 -1
  25. package/dist/lib/container-tokens.js +1 -1
  26. package/dist/lib/data-dir.js +1 -1
  27. package/dist/lib/deployment-history.js +1 -1
  28. package/dist/lib/deployment-service.js +1 -1
  29. package/dist/lib/docker-utils.js +1 -1
  30. package/dist/lib/email.js +1 -1
  31. package/dist/lib/emailTemplates.js +1 -1
  32. package/dist/lib/entitlement.js +1 -1
  33. package/dist/lib/fetch-utils.js +1 -1
  34. package/dist/lib/git-commit-details-route.js +1 -1
  35. package/dist/lib/git-history-diff-guardrails.js +1 -1
  36. package/dist/lib/git-provider-service.js +1 -1
  37. package/dist/lib/git-provider-setup/github-setup-handler.js +1 -1
  38. package/dist/lib/git-provider-setup/index.js +1 -1
  39. package/dist/lib/git-provider-setup/setup-factory.js +1 -1
  40. package/dist/lib/git-provider-setup/setup-interface.js +1 -1
  41. package/dist/lib/git-providers/azure-devops-provider.js +1 -1
  42. package/dist/lib/git-providers/github-app-provider.js +1 -1
  43. package/dist/lib/git-providers/index.js +1 -1
  44. package/dist/lib/git-providers/provider-factory.js +1 -1
  45. package/dist/lib/git-providers/provider-interface.js +1 -1
  46. package/dist/lib/github-urls.js +1 -1
  47. package/dist/lib/group-objective-linking.js +1 -0
  48. package/dist/lib/jira-client.js +1 -1
  49. package/dist/lib/judge-blinding.js +1 -0
  50. package/dist/lib/logger.js +1 -1
  51. package/dist/lib/model-fetcher.js +1 -1
  52. package/dist/lib/notifications.js +1 -1
  53. package/dist/lib/oidc-auth.js +1 -1
  54. package/dist/lib/oidc-device-flow.js +1 -1
  55. package/dist/lib/passwordTokens.js +1 -1
  56. package/dist/lib/pin-cascade.js +1 -1
  57. package/dist/lib/provider-accounts.js +1 -1
  58. package/dist/lib/provider-oauth.js +1 -1
  59. package/dist/lib/provider-profile.js +1 -1
  60. package/dist/lib/provider-token-refresh.js +1 -1
  61. package/dist/lib/request-url.js +1 -1
  62. package/dist/lib/rewind.js +1 -1
  63. package/dist/lib/roles.js +1 -1
  64. package/dist/lib/secrets.js +1 -1
  65. package/dist/lib/setup-repo-git-auth.js +1 -1
  66. package/dist/lib/state-capture.js +1 -1
  67. package/dist/lib/static-files.js +1 -1
  68. package/dist/lib/task-name-generator.js +1 -1
  69. package/dist/lib/user-git-oauth.js +1 -1
  70. package/dist/lib/user-git-tokens.js +1 -1
  71. package/dist/lib/users.js +1 -1
  72. package/dist/middleware/requireAuth.js +1 -1
  73. package/dist/middleware/requireInit.js +1 -1
  74. package/dist/middleware/requirePermission.js +1 -1
  75. package/dist/package.json +1 -1
  76. package/dist/routes/apiKeys.js +1 -1
  77. package/dist/routes/auth-oidc.js +1 -1
  78. package/dist/routes/auth.js +1 -1
  79. package/dist/routes/build.js +1 -1
  80. package/dist/routes/containers.js +1 -1
  81. package/dist/routes/deploy-task.js +1 -1
  82. package/dist/routes/environment-management.js +1 -1
  83. package/dist/routes/environments.js +1 -1
  84. package/dist/routes/external-skills.js +1 -1
  85. package/dist/routes/git-credentials.js +1 -1
  86. package/dist/routes/git-oauth.js +1 -1
  87. package/dist/routes/git-provider-setup.js +1 -1
  88. package/dist/routes/health.js +1 -1
  89. package/dist/routes/jira.js +1 -1
  90. package/dist/routes/objective-management.js +1 -1
  91. package/dist/routes/password.js +1 -1
  92. package/dist/routes/prompt.js +1 -1
  93. package/dist/routes/provider-auth.js +1 -1
  94. package/dist/routes/qa.js +1 -1
  95. package/dist/routes/settings.js +1 -1
  96. package/dist/routes/skill-management.js +1 -1
  97. package/dist/routes/skills.js +1 -1
  98. package/dist/routes/tasks.js +1 -1
  99. package/dist/routes/templates.js +1 -1
  100. package/dist/routes/test-task.js +1 -1
  101. package/dist/routes/test.js +1 -1
  102. package/dist/routes/users.js +1 -1
  103. package/dist/routes/visualizations.js +1 -1
  104. package/dist/scripts/create-user.js +1 -1
  105. package/dist/start.js +1 -1
  106. package/dist/web-ui/public/activity-detail-modal.js +1 -1
  107. package/dist/web-ui/public/activity-feed.js +1 -1
  108. package/dist/web-ui/public/activity-formatters.js +1 -1
  109. package/dist/web-ui/public/agent-event-parser.js +1 -1
  110. package/dist/web-ui/public/app.js +1 -1
  111. package/dist/web-ui/public/approve-dialog.js +1 -1
  112. package/dist/web-ui/public/comments-widget.js +1 -1
  113. package/dist/web-ui/public/diff-utils.js +1 -1
  114. package/dist/web-ui/public/environments.html +4 -1
  115. package/dist/web-ui/public/environments.js +1 -1
  116. package/dist/web-ui/public/feedback-widget.js +1 -1
  117. package/dist/web-ui/public/git-history-lazy-utils.js +1 -1
  118. package/dist/web-ui/public/git-history.js +1 -1
  119. package/dist/web-ui/public/git-status.js +1 -1
  120. package/dist/web-ui/public/index.html +2 -0
  121. package/dist/web-ui/public/index.js +1 -1
  122. package/dist/web-ui/public/login.js +1 -1
  123. package/dist/web-ui/public/markdown-editor.js +1 -1
  124. package/dist/web-ui/public/markdown-file-editor.js +1 -1
  125. package/dist/web-ui/public/modal-maximize.js +1 -1
  126. package/dist/web-ui/public/notifications.js +1 -1
  127. package/dist/web-ui/public/server-health.js +1 -1
  128. package/dist/web-ui/public/settings.css +181 -44
  129. package/dist/web-ui/public/settings.html +156 -167
  130. package/dist/web-ui/public/settings.js +1 -1
  131. package/dist/web-ui/public/setup-password.js +1 -1
  132. package/dist/web-ui/public/skills.js +1 -1
  133. package/dist/web-ui/public/sse-client.js +1 -1
  134. package/dist/web-ui/public/sse-shared-worker.js +1 -1
  135. package/dist/web-ui/public/styles.css +136 -2
  136. package/dist/web-ui/public/task.js +1 -1
  137. package/dist/web-ui/public/terminal.js +1 -1
  138. package/dist/web-ui/public/theme.js +1 -1
  139. package/dist/web-ui/public/users.js +1 -1
  140. package/dist/web-ui/public/variant-grouping.js +1 -1
  141. package/package.json +1 -1
@@ -1 +1 @@
1
- function _0x198df7(_0x4aef29,_0x9dbc2b,_0x4f1e23,_0x5144fb){return _0x4eb5(_0x5144fb- -0xbb,_0x4aef29);}(function(_0x4dab49,_0x27d321){const _0x3e23ba={_0x32cbc3:0x18,_0x8b509a:0x14,_0xe9fe49:0x34,_0x4a2310:0x4d,_0x4798d4:0x29,_0x14169a:0x5,_0x360a99:0x2a,_0x397cd9:0x349,_0xad9fb4:0x357,_0x5a88e7:0x2ef,_0x25cb2b:0x34e,_0x4629f9:0x31e,_0x5daee4:0x341,_0x550f02:0x17,_0x5c9e3e:0x1c,_0xc29641:0x31f,_0xd05b0c:0x334,_0x46d71f:0x352,_0x5a042a:0x8,_0x1ef304:0x11,_0xe2f4be:0x1c,_0x5b1921:0x30},_0x48d756={_0x1bad41:0x20d};function _0x21c16b(_0x4d9761,_0x4423bb,_0x34935d,_0x5211a4){return _0x4eb5(_0x4423bb- -0x135,_0x34935d);}function _0x3fcabf(_0xc38e07,_0x4858f1,_0x15aebe,_0x17fc1b){return _0x4eb5(_0x15aebe-_0x48d756._0x1bad41,_0xc38e07);}const _0x3dfeab=_0x4dab49();while(!![]){try{const _0x39b73e=parseInt(_0x21c16b(_0x3e23ba._0x32cbc3,-_0x3e23ba._0x8b509a,0x13,-0x8))/(-0x3ca+-0x1304+0x16cf)*(parseInt(_0x21c16b(0x49,_0x3e23ba._0xe9fe49,_0x3e23ba._0x4a2310,0x13))/(-0x6*0x10d+-0x104c+0x169c*0x1))+-parseInt(_0x21c16b(-_0x3e23ba._0x4798d4,_0x3e23ba._0x14169a,0x21,-_0x3e23ba._0x360a99))/(0x7c*-0x4c+0x1223+0x12b0)+-parseInt(_0x3fcabf(_0x3e23ba._0x397cd9,0x353,0x375,_0x3e23ba._0xad9fb4))/(-0x22*0x20+0x110c+-0x1*0xcc8)*(parseInt(_0x3fcabf(_0x3e23ba._0x5a88e7,_0x3e23ba._0x25cb2b,_0x3e23ba._0x4629f9,_0x3e23ba._0x5daee4))/(-0x3e3+-0x1759*-0x1+-0x1371))+parseInt(_0x21c16b(0xf,_0x3e23ba._0x550f02,-0x6,0x10))/(0x24c6+-0x7*-0x49+-0x589*0x7)+-parseInt(_0x21c16b(0x27,_0x3e23ba._0x5c9e3e,0x16,_0x3e23ba._0x360a99))/(-0x266c+0x23d8+-0x29b*-0x1)+-parseInt(_0x3fcabf(_0x3e23ba._0xc29641,0x30f,_0x3e23ba._0xd05b0c,_0x3e23ba._0x46d71f))/(-0x3af+0x1660+-0x12a9)*(-parseInt(_0x21c16b(-_0x3e23ba._0x5a042a,-_0x3e23ba._0x4798d4,-_0x3e23ba._0x1ef304,-0x59))/(-0x5*-0x44c+-0x17f1+0x27e))+parseInt(_0x3fcabf(0x324,0x2ed,0x31b,0x2ef))/(0x117e+0x103f+-0x1*0x21b3)*(parseInt(_0x21c16b(_0x3e23ba._0xe2f4be,_0x3e23ba._0x5b1921,0x3a,0x6))/(-0x1a88+-0x1f40+0x39d3));if(_0x39b73e===_0x27d321)break;else _0x3dfeab['push'](_0x3dfeab['shift']());}catch(_0x59580f){_0x3dfeab['push'](_0x3dfeab['shift']());}}}(_0x1df5,0xc7098+-0x3*-0x75ecf+0x7*-0x2c7fd));import{promises as _0x1d14db,constants as _0x3b1940}from'fs';function _0x1df5(){const _0xdd1321=['DxrMltG','zsaOCgvYBwLZCW','t21LDwK','rK1Jwwq','vvDtAM0','tNLzyKu','mte3nZG3mtjcCw1tC3O','u3nyDhy','y1nJvwC','mJCYAMftD1HJ','mJC0ywDZA3zK','DgPeyNC','r2zpzNm','C3nSx2TLEv9Wyq','z0XZufO','nJm3nda3r3zTB1Le','igzPBgu6ia','mtbLBeH6A0y','DKDYrfu','EfPgz0e','ntC0ndvhr2rMt1G','s0TkzKm','AMXpvwS','qKDLDwG','ELfsqLO','yxrO','zxnZia','vfjvu1rFufjpwa','igzPBguGBM90ia','rxzXD2K','uvnqsu4','zM91BMq6ia','ru5pru5u','D1vvshq','A2zbq1q','y29KzxjFC2v0Dq','nJiYofn6t1vUtq','txvWrhG','D3jPDgvgAwXL','A3bkwKW','EMzmB08','q09ervjFu0vuvq','mtKYswfswvL4','CMvJDxjZAxzL','zvr2ExO','wgLJwuW','ug9VDNe','C3rYAw5NAwz5','t0HTDwK','rufdq0vt','rgffz08','ywLABxe','BwTKAxi','qwPNv2C','ELHxuhm','y29Kzq','Cf9WyxrO','sgTXENe','zg1ZChK','igzPBguGAxmGBG','y29UzMLNlMPZBW','ntq1ode1nu9it1PMtW','yuf3yMS','AvPcs0K','C3nSx2nLCNrFCa','qwLMvxm','Aw9UigrLBMLLza','zgLYBMfTzq','AM9PBG','EfHnyuO','yw9lDMG','su1itfi','D0Lmu3G','r2nxzgK','C3nSx2nHx3bHDa','B3qGCMvHzgfIBa','Dhj1C3rFChjVEa','rKnnr2e','zw52','ntu3mJmWohvpB1vuzq','tuDzAgm','wKfdDxm','ue9sva','A2PyCKy','nJC0mZKZm0LKEgP0vW','EufTB2K','BwvZC2fNzq','B3b5zNu','Eejtwvi','C2vYDMvYx3bVCG','uf9qqvri','q2fUBM90igfJyW','lMnVzgvY','tfjoCg4','Ag9TzwrPCG','CMvHzezPBgu','qvri','uL9psW'];_0x1df5=function(){return _0xdd1321;};return _0x1df5();}import _0x572ad2 from'path';import _0x53c8ff from'os';const CONFIG_PATH=_0x572ad2[_0x198df7(0x7c,0xb3,0x60,0x86)](_0x53c8ff[_0x1bc43f(0x3b7,0x406,0x3d5,0x3e2)](),_0x198df7(0x7b,0x7d,0x6e,0x9e),_0x1bc43f(0x39d,0x3a9,0x3ec,0x3c0)+'n');async function loadConfig(){const _0x1f5232={_0x24fbd9:0x18,_0x21fae8:0x3,_0xb9171b:0x26,_0x264666:0xf0,_0x4feef6:0xf6,_0x4ada4a:0xc},_0x469771={_0x164c1f:0x82},_0x182d76={_0xdb4ca0:0x69,_0x496e02:0x160},_0x1d44be={};_0x1d44be[_0x1f4324(-_0x1f5232._0x24fbd9,-_0x1f5232._0x21fae8,-_0x1f5232._0xb9171b,-0x56)]='utf-8';function _0x8ec465(_0x3c0d5b,_0x12f624,_0x3d2ce1,_0x170d32){return _0x198df7(_0x170d32,_0x12f624-0x6,_0x3d2ce1-_0x182d76._0xdb4ca0,_0x3d2ce1- -_0x182d76._0x496e02);}const _0x9895cb=_0x1d44be;function _0x1f4324(_0xd04392,_0xb91eb9,_0x3fc6ee,_0x59a944){return _0x198df7(_0xd04392,_0xb91eb9-0x81,_0x3fc6ee-_0x469771._0x164c1f,_0x3fc6ee- -0x96);}try{const _0x57bd8a=await _0x1d14db[_0x1f4324(0x26,-0xe,0xb,0x25)](CONFIG_PATH,_0x9895cb[_0x8ec465(-0xd5,-0x113,-_0x1f5232._0x264666,-_0x1f5232._0x4feef6)]);return JSON['parse'](_0x57bd8a);}catch(_0x51d070){if(_0x51d070[_0x1f4324(-0x3b,-0x28,-0x1d,-0x27)]===_0x1f4324(-_0x1f5232._0x4ada4a,-0x47,-0x34,-0x11))return{};throw _0x51d070;}}async function saveConfig(_0x13bd10){const _0x2dfd54={_0x227af8:0xba,_0x25d964:0xb7,_0x4e16c5:0xb9,_0x222ba1:0xc6,_0x5b8d83:0xd5,_0x5d8c0f:0xb7,_0x1cd4e0:0xf0,_0x2a9411:0xcf,_0x4348f5:0xe8,_0x2a7ef5:0xb9,_0x4830b5:0xc1,_0x33e119:0xa8,_0x3ffa5e:0x9b,_0x267469:0x2ab},_0x23ace4={_0x302892:0xdd,_0x70d073:0xa5,_0x294bac:0x115};function _0xf5c43(_0x3456c4,_0x11ef95,_0x48c8a2,_0x5902c1){return _0x1bc43f(_0x5902c1,_0x11ef95-0x18f,_0x48c8a2-0x109,_0x48c8a2- -0x2e9);}const _0x1ccbbf=_0x572ad2[_0xf5c43(0xd1,_0x2dfd54._0x227af8,0xde,_0x2dfd54._0x25d964)](CONFIG_PATH);function _0xac0dfa(_0x23644e,_0x54ec23,_0x57171b,_0x27fb09){return _0x1bc43f(_0x23644e,_0x54ec23-_0x23ace4._0x302892,_0x57171b-_0x23ace4._0x70d073,_0x27fb09- -_0x23ace4._0x294bac);}const _0x4ec196={};_0x4ec196[_0xf5c43(_0x2dfd54._0x4e16c5,0xb5,_0x2dfd54._0x222ba1,_0x2dfd54._0x5b8d83)]=!![],await _0x1d14db[_0xf5c43(_0x2dfd54._0x5d8c0f,_0x2dfd54._0x1cd4e0,_0x2dfd54._0x2a9411,_0x2dfd54._0x4348f5)](_0x1ccbbf,_0x4ec196),await _0x1d14db[_0xf5c43(_0x2dfd54._0x2a7ef5,0xce,_0x2dfd54._0x4830b5,0xb6)](CONFIG_PATH,JSON[_0xf5c43(_0x2dfd54._0x33e119,_0x2dfd54._0x3ffa5e,0xca,0xcc)](_0x13bd10,null,0x1df2+-0x556+-0x189a),_0xac0dfa(0x2ff,_0x2dfd54._0x267469,0x2c3,0x2d1));}export async function getCoderSetupPath(){const _0x482175={_0x2a9263:0x78,_0x3bde41:0x51,_0x33be95:0xe5,_0x566a1c:0x10b,_0x4428d7:0xe3,_0x48249b:0xb4,_0x14a637:0x31,_0x1827a6:0x67,_0x446247:0xa9,_0x24b6ee:0xc0,_0x1c98ce:0x8f,_0x3920d8:0x39,_0x870b0b:0x67,_0x55dfc0:0x7c,_0x394fb1:0xd6,_0x2e0fad:0xcf,_0x34cff5:0xdf},_0x46afad={_0x512e61:0x1be},_0x3817c8={_0x19c08c:0x1d9,_0x5853d1:0x150};function _0x66814c(_0x39b9a6,_0x239ecb,_0xc3f04f,_0x4772b8){return _0x198df7(_0xc3f04f,_0x239ecb-_0x3817c8._0x19c08c,_0xc3f04f-0x6,_0x39b9a6- -_0x3817c8._0x5853d1);}const _0x21c679={'dmspy':function(_0x16fbad){return _0x16fbad();}};if(process[_0x3b3fd4(-_0x482175._0x2a9263,-0x73,-_0x482175._0x3bde41,-0x59)][_0x66814c(-_0x482175._0x33be95,-0x109,-_0x482175._0x566a1c,-_0x482175._0x4428d7)+_0x66814c(-_0x482175._0x48249b,-0xa1,-0x95,-0xa1)])return process[_0x3b3fd4(-0x52,-_0x482175._0x14a637,-_0x482175._0x3bde41,-_0x482175._0x1827a6)][_0x3b3fd4(-0x8f,-0x95,-0x76,-0x69)+_0x66814c(-_0x482175._0x48249b,-_0x482175._0x446247,-_0x482175._0x24b6ee,-_0x482175._0x1c98ce)];const _0x2fede6=await _0x21c679[_0x3b3fd4(-_0x482175._0x3920d8,-0x8c,-0x65,-0x3e)](loadConfig);function _0x3b3fd4(_0x11a6cb,_0x1404a1,_0x4a0e1b,_0x48f3db){return _0x198df7(_0x1404a1,_0x1404a1-0x1c6,_0x4a0e1b-_0x46afad._0x512e61,_0x4a0e1b- -0xe1);}return _0x2fede6[_0x3b3fd4(-_0x482175._0x870b0b,-0x4e,-_0x482175._0x55dfc0,-0x53)+_0x66814c(-_0x482175._0x394fb1,-_0x482175._0x2e0fad,-_0x482175._0x34cff5,-0xd9)]||null;}function _0x1bc43f(_0x329d34,_0x3e4b3b,_0x4dc050,_0x291077){return _0x4eb5(_0x291077-0x287,_0x329d34);}export async function saveCoderSetupPath(_0x37f6cb){const _0x357b17={_0x2c0e84:0x180,_0x249afe:0x16a,_0x3db8a3:0x17e,_0x7951bc:0x1a8,_0xbb2eb5:0x190,_0x2b761f:0x1c1,_0x25497d:0x1de,_0x547d63:0x1d1,_0x3eff6c:0x1d0,_0x118772:0x183,_0x465d77:0x187,_0x3f2b9f:0x1ac,_0x284a04:0x188,_0x228cf6:0x1f9,_0x3d45f8:0x1cc,_0x3e67be:0x1e2,_0xa9b9cf:0x19f,_0x1b3109:0x1cd,_0x58d0e4:0x1fd,_0x489f8c:0x1f3,_0x436919:0x1e9},_0x4615e2={_0x2835d0:0x3a,_0x49971f:0x52b},_0xf84f02={_0x28ef23:0x131,_0x4f0be2:0x12,_0x3f2546:0x247},_0x53f0ea={'aUsPo':function(_0x810d87){return _0x810d87();},'BGeuh':function(_0x360969,_0x262aa6){return _0x360969===_0x262aa6;},'gzTZa':function(_0x1446b5,_0x51853e){return _0x1446b5!==_0x51853e;},'AjgWg':_0x48725e(-_0x357b17._0x2c0e84,-_0x357b17._0x249afe,-_0x357b17._0x3db8a3,-_0x357b17._0x7951bc)},_0xb43f8a=await _0x53f0ea['aUsPo'](loadConfig);function _0x4bde3f(_0x4a802f,_0x3b5a1d,_0x570a89,_0x242d3b){return _0x198df7(_0x570a89,_0x3b5a1d-_0xf84f02._0x28ef23,_0x570a89-_0xf84f02._0x4f0be2,_0x242d3b- -_0xf84f02._0x3f2546);}if(_0x53f0ea[_0x48725e(-_0x357b17._0xbb2eb5,-0x186,-_0x357b17._0x2b761f,-0x1b1)](_0x37f6cb,null)){if(_0x53f0ea['gzTZa'](_0x53f0ea[_0x4bde3f(-_0x357b17._0x25497d,-_0x357b17._0x547d63,-0x1e9,-_0x357b17._0x3eff6c)],_0x53f0ea[_0x48725e(-0x172,-0x173,-0x142,-0x151)]))throw new _0x55250e(_0x4bde3f(-_0x357b17._0x118772,-_0x357b17._0x465d77,-0x17e,-0x1aa)+_0x48725e(-0x18d,-_0x357b17._0x3f2b9f,-_0x357b17._0x284a04,-0x170)+_0x3cd66a+_0x48725e(-0x197,-0x19b,-0x1a4,-_0x357b17._0x118772)+_0x3328d4+'\x20('+_0x5c9ed7['message']+')');else delete _0xb43f8a[_0x4bde3f(-0x204,-_0x357b17._0x228cf6,-_0x357b17._0x3d45f8,-_0x357b17._0x3e67be)+_0x4bde3f(-_0x357b17._0xa9b9cf,-0x1db,-0x1d8,-_0x357b17._0x1b3109)];}else _0xb43f8a[_0x4bde3f(-0x20d,-0x213,-_0x357b17._0x58d0e4,-0x1e2)+_0x4bde3f(-0x1cd,-_0x357b17._0x489f8c,-_0x357b17._0x436919,-0x1cd)]=_0x37f6cb;function _0x48725e(_0x51a647,_0xad0112,_0xc52e3d,_0xd6b36c){return _0x1bc43f(_0xd6b36c,_0xad0112-0x164,_0xc52e3d-_0x4615e2._0x2835d0,_0x51a647- -_0x4615e2._0x49971f);}await saveConfig(_0xb43f8a);}export async function getServerPort(){const _0x5b6446={_0xb3eb35:0x3b4,_0x452b7f:0x516,_0x3e6440:0x4c9,_0x3ad76f:0x4bf,_0x89ee72:0x4ad,_0x2bf2ea:0x501,_0x5c8e51:0x4e2,_0xc3857f:0x404,_0x110064:0x3d4,_0x4e4874:0x395,_0x106be5:0x3c3,_0x3142ac:0x3aa,_0x448489:0x4d0,_0x59d55a:0x4e5,_0x3e4557:0x4ba,_0x1f148a:0x4d1,_0x3d725b:0x511,_0x20af68:0x4dd,_0x36b40e:0x4f0},_0x379fbe={_0x51d84b:0xe2,_0x25b97f:0xa8},_0x5f0e40={_0x4529ba:0x84,_0x4f03d0:0x113},_0x278966={'Hkqzq':function(_0x219532,_0xee9362){return _0x219532!==_0xee9362;},'cScUg':_0x366b09(0x38f,0x3bb,_0x5b6446._0xb3eb35,0x3a8),'GcWdi':function(_0x113430,_0x537336,_0x46d4d9){return _0x113430(_0x537336,_0x46d4d9);}};if(process[_0x29da1f(0x4e5,_0x5b6446._0x452b7f,0x4c3,0x4bf)][_0x29da1f(0x4e9,_0x5b6446._0x3e6440,0x504,_0x5b6446._0x3ad76f)]){if(_0x278966[_0x29da1f(0x4d0,0x4e2,_0x5b6446._0x89ee72,0x4ab)](_0x278966[_0x29da1f(_0x5b6446._0x2bf2ea,0x4d9,_0x5b6446._0x5c8e51,0x4e0)],_0x278966[_0x366b09(0x3bf,_0x5b6446._0xc3857f,0x3d4,_0x5b6446._0x110064)]))delete _0x5f5980[_0x366b09(_0x5b6446._0x4e4874,0x3d3,_0x5b6446._0x106be5,_0x5b6446._0x3142ac)+_0x366b09(0x3a4,0x390,0x3a6,0x383)];else return _0x278966[_0x29da1f(0x4e0,0x4c7,_0x5b6446._0x448489,0x506)](parseInt,process[_0x29da1f(_0x5b6446._0x59d55a,0x4d5,0x4bc,_0x5b6446._0x3e4557)][_0x29da1f(0x4e9,_0x5b6446._0x1f148a,_0x5b6446._0x3d725b,_0x5b6446._0x20af68)],0xa6*0x2b+0x179+-0x4f*0x5f);}function _0x29da1f(_0x39c310,_0x57e51c,_0x26a373,_0x1429ee){return _0x1bc43f(_0x1429ee,_0x57e51c-_0x5f0e40._0x4529ba,_0x26a373-0x43,_0x39c310-_0x5f0e40._0x4f03d0);}function _0x366b09(_0x5c6b82,_0x55d281,_0x4da810,_0x22932a){return _0x1bc43f(_0x55d281,_0x55d281-_0x379fbe._0x51d84b,_0x4da810-_0x379fbe._0x25b97f,_0x22932a- -0x1a);}const _0x3253b2=await loadConfig();return _0x3253b2[_0x29da1f(_0x5b6446._0x36b40e,0x500,0x4c8,0x516)+'t']||-0x2339+-0x1a20+0x4911;}export async function saveServerPort(_0x2f05f3){const _0x166cff={_0x279050:0x1d8,_0x5a9e7e:0x1d6,_0x55a171:0x1a9},_0x5c5224={_0x3a7e61:0x121,_0x2174c4:0x26,_0x3545db:0x574},_0x411398={'zQRBZ':function(_0x5b967d){return _0x5b967d();}};function _0x1d3f0f(_0xfa9809,_0x3e61f6,_0x380669,_0x29f91e){return _0x1bc43f(_0x29f91e,_0x3e61f6-_0x5c5224._0x3a7e61,_0x380669-_0x5c5224._0x2174c4,_0xfa9809- -_0x5c5224._0x3545db);}const _0x26256b=await _0x411398[_0x1d3f0f(-_0x166cff._0x279050,-_0x166cff._0x5a9e7e,-0x1ae,-_0x166cff._0x55a171)](loadConfig);_0x26256b['server_por'+'t']=_0x2f05f3,await saveConfig(_0x26256b);}export function getConfigPath(){return CONFIG_PATH;}export async function getSslCertPath(){const _0x3a3dec={_0x52a4b7:0x47c,_0x2255d6:0x4a0,_0x17fee8:0x46c,_0x2c7664:0x48a,_0x334c06:0x48f,_0x41f358:0x4bd,_0x16a49d:0x4db,_0x24083c:0x4fa,_0x155de3:0x4c4,_0xac84ed:0x4b3,_0x25efac:0x492,_0x1ef340:0x4c2,_0x2b620c:0x4bb,_0x128e16:0x48f,_0x53e908:0x4b5,_0x5be8c8:0x4b9,_0x906043:0x4d1,_0x3a5646:0x506,_0x125b1d:0x4d9,_0x5ed94b:0x4ad,_0x3cdfbe:0x4a3,_0xae672b:0x4a5,_0x5aaa0f:0x486,_0x1fe7ef:0x4ae,_0x9e1157:0x4ab,_0x34eb78:0x509,_0x3623d6:0x4be,_0x6b82d7:0x516,_0x131479:0x50a},_0x34d2d2={_0x593721:0x42b},_0x2caf9d={_0x1b0cf9:0x178,_0xd37299:0x109},_0x4b4ffd={'opyfu':function(_0x14b6e4){return _0x14b6e4();},'yAmoi':function(_0x481193,_0x1e4a62){return _0x481193===_0x1e4a62;},'SsXtv':_0x4f54f9(0x4ac,0x4ca,_0x3a3dec._0x52a4b7,_0x3a3dec._0x2255d6),'wILSx':_0x5704db(_0x3a3dec._0x17fee8,_0x3a3dec._0x2c7664,_0x3a3dec._0x334c06,0x48d)},_0x39d5c2=await _0x4b4ffd[_0x4f54f9(_0x3a3dec._0x41f358,_0x3a3dec._0x16a49d,_0x3a3dec._0x24083c,0x4e4)](loadConfig);if(_0x39d5c2['ssl_cert_p'+_0x4f54f9(_0x3a3dec._0x155de3,0x4cc,_0x3a3dec._0xac84ed,0x4a6)]){if(_0x4b4ffd[_0x5704db(_0x3a3dec._0x25efac,_0x3a3dec._0x1ef340,0x496,_0x3a3dec._0x2b620c)](_0x4b4ffd[_0x5704db(0x4eb,0x4d6,0x4d7,0x4ba)],_0x4b4ffd[_0x5704db(_0x3a3dec._0x128e16,_0x3a3dec._0x53e908,0x4c7,0x48c)]))_0x3176db[_0x4f54f9(_0x3a3dec._0x5be8c8,_0x3a3dec._0x906043,_0x3a3dec._0x3a5646,_0x3a3dec._0x125b1d)+'y']=_0x5f2dbe;else return _0x39d5c2[_0x5704db(0x4c2,_0x3a3dec._0x5ed94b,_0x3a3dec._0x3cdfbe,0x48a)+_0x5704db(_0x3a3dec._0xae672b,_0x3a3dec._0x5aaa0f,_0x3a3dec._0x1fe7ef,0x470)];}function _0x4f54f9(_0x424f55,_0x2170e2,_0x2fa599,_0x4c34d6){return _0x1bc43f(_0x2170e2,_0x2170e2-_0x2caf9d._0x1b0cf9,_0x2fa599-0x98,_0x4c34d6-_0x2caf9d._0xd37299);}function _0x5704db(_0x3c2497,_0x2179c8,_0x550cbe,_0x1aad9b){return _0x198df7(_0x1aad9b,_0x2179c8-0x1e8,_0x550cbe-0xc1,_0x2179c8-_0x34d2d2._0x593721);}return process[_0x4f54f9(0x4cd,_0x3a3dec._0x9e1157,_0x3a3dec._0x34eb78,_0x3a3dec._0x16a49d)]['SSL_CERT_P'+_0x4f54f9(_0x3a3dec._0x3623d6,_0x3a3dec._0x6b82d7,_0x3a3dec._0x131479,0x4ed)]||null;}export async function saveSslCertPath(_0xd47590){const _0x4fc1b4={_0x39eaa5:0x123,_0x19f568:0x12b,_0x105390:0x15a,_0x85ef5a:0xd6,_0x41cef7:0x109,_0x31a6aa:0x11d,_0x2a6516:0x137,_0xb96cf7:0xdf,_0x2a037d:0x138,_0x3b38a4:0x101,_0x300e29:0xfe,_0x29901f:0xea,_0x547834:0x275,_0x1d1c8a:0x27b,_0x47883d:0x285,_0xf61176:0x12d,_0x882d67:0x246,_0x4a08e7:0x216,_0xb7b309:0x23a,_0x3c1e2f:0x239,_0x3f596a:0xdc,_0x4799cd:0xfd,_0x1120b4:0x23a,_0x23737f:0x21f,_0x39694c:0x267,_0x4e06b5:0x275,_0x517876:0x25c,_0x1dff4a:0x102,_0x4c8926:0x121,_0x11d239:0x112,_0x48acdb:0x11e,_0x273b86:0x25b,_0x5dd241:0x233,_0x3cfd0a:0x106,_0x23e072:0x241,_0x335ead:0x257,_0x1922b2:0x291,_0x171da6:0xef,_0x2c9715:0xc7,_0x52bf74:0x24b,_0x2f56ae:0x263,_0x29785c:0x2ab,_0x1901a3:0x253,_0x12d42b:0x250,_0x56b8c4:0x213,_0x3cfd99:0x231,_0x26c482:0x249},_0x5910c0={_0x194cf9:0x199,_0x2320d1:0x4c1},_0x11f55d={_0x5c2c03:0x1c0},_0x4b07e6={};_0x4b07e6[_0x5bc8d0(-_0x4fc1b4._0x39eaa5,-0x11a,-_0x4fc1b4._0x19f568,-_0x4fc1b4._0x105390)]=function(_0x2d11d4,_0x3ef980){return _0x2d11d4===_0x3ef980;};function _0x494a2f(_0x129a9d,_0x17f913,_0xc11e22,_0x498a0){return _0x198df7(_0x129a9d,_0x17f913-_0x11f55d._0x5c2c03,_0xc11e22-0x1d4,_0xc11e22-0x1df);}function _0x5bc8d0(_0xe52799,_0x5b4b21,_0x2b8ec6,_0x336b07){return _0x1bc43f(_0x336b07,_0x5b4b21-0x156,_0x2b8ec6-_0x5910c0._0x194cf9,_0x2b8ec6- -_0x5910c0._0x2320d1);}_0x4b07e6[_0x5bc8d0(-_0x4fc1b4._0x85ef5a,-0xd6,-0xf0,-_0x4fc1b4._0x41cef7)]=_0x5bc8d0(-0x106,-0xfd,-_0x4fc1b4._0x31a6aa,-_0x4fc1b4._0x2a6516),_0x4b07e6['tjDbw']=_0x5bc8d0(-_0x4fc1b4._0xb96cf7,-_0x4fc1b4._0x2a037d,-0x10c,-_0x4fc1b4._0x3b38a4),_0x4b07e6[_0x5bc8d0(-0x101,-_0x4fc1b4._0x300e29,-_0x4fc1b4._0x29901f,-0xe4)]=_0x494a2f(_0x4fc1b4._0x547834,_0x4fc1b4._0x1d1c8a,_0x4fc1b4._0x47883d,0x2af);const _0x5d70fa=_0x4b07e6,_0x291d35=await loadConfig();if(_0x5d70fa[_0x5bc8d0(-0x136,-0x15a,-0x12b,-_0x4fc1b4._0xf61176)](_0xd47590,null))delete _0x291d35['ssl_cert_p'+_0x494a2f(_0x4fc1b4._0x882d67,_0x4fc1b4._0x4a08e7,_0x4fc1b4._0xb7b309,_0x4fc1b4._0x3c1e2f)];else{if(_0x5d70fa[_0x494a2f(0x273,0x29c,0x274,0x285)]===_0x5d70fa['kjXrF'])_0x291d35[_0x5bc8d0(-_0x4fc1b4._0x3f596a,-0xcd,-0xfd,-_0x4fc1b4._0x4799cd)+_0x494a2f(0x24f,0x25a,_0x4fc1b4._0x1120b4,0x225)]=_0xd47590;else{if(_0x5d70fa[_0x494a2f(0x245,_0x4fc1b4._0x23737f,0x233,0x262)](_0x5598c6['code'],_0x5d70fa[_0x494a2f(_0x4fc1b4._0x39694c,_0x4fc1b4._0x4e06b5,0x26e,_0x4fc1b4._0x517876)]))throw new _0x619ad(_0x4f7076+(_0x5bc8d0(-0x13a,-_0x4fc1b4._0x1dff4a,-_0x4fc1b4._0x4c8926,-_0x4fc1b4._0x11d239)+_0x5bc8d0(-0x129,-0x141,-_0x4fc1b4._0x48acdb,-_0x4fc1b4._0x48acdb))+_0x2488c1);else{if(_0x5d70fa[_0x494a2f(_0x4fc1b4._0x273b86,0x215,_0x4fc1b4._0x5dd241,0x228)](_0x56f715[_0x5bc8d0(-0x103,-0xf4,-_0x4fc1b4._0x3cfd0a,-_0x4fc1b4._0x300e29)],_0x5d70fa[_0x5bc8d0(-0x145,-0x142,-0x132,-0x12e)]))throw new _0x170163(_0xcadc81+('\x20file\x20is\x20n'+_0x494a2f(_0x4fc1b4._0x23e072,_0x4fc1b4._0x335ead,0x26c,_0x4fc1b4._0x1922b2)+_0x5bc8d0(-_0x4fc1b4._0x171da6,-0xbe,-0xda,-_0x4fc1b4._0x2c9715)+_0x494a2f(_0x4fc1b4._0x52bf74,0x256,_0x4fc1b4._0x2f56ae,0x271)+'):\x20')+_0x3c0caa);else throw new _0x49e000(_0x494a2f(0x27c,_0x4fc1b4._0x29785c,0x27c,_0x4fc1b4._0x1901a3)+_0x494a2f(_0x4fc1b4._0x517876,_0x4fc1b4._0x12d42b,0x23b,_0x4fc1b4._0x56b8c4)+_0x27b650+_0x494a2f(0x249,_0x4fc1b4._0x3cfd99,0x231,0x211)+_0x2877ec+'\x20('+_0x418c5c[_0x494a2f(_0x4fc1b4._0x26c482,0x254,0x277,0x27b)]+')');}}}await saveConfig(_0x291d35);}export async function getSslKeyPath(){const _0x4d4753={_0x45b4e2:0xa0,_0x435645:0xac,_0x4ec35f:0xb0,_0x4bb834:0x3fa,_0x136c92:0xaf,_0x199ca1:0x85,_0x18e4df:0xba,_0x3b11f0:0xc5,_0x372ccf:0xb0,_0x26128b:0x3f5,_0x53cb33:0x3ff,_0x406c51:0x46c,_0x49c49d:0x44a,_0x19883a:0x447,_0x2a4977:0x433,_0x44e749:0x414,_0x1b77fc:0x43b},_0x22b93b={_0x4a73af:0x1a1},_0x3f8223={_0x136b6c:0xf2,_0x22afaf:0x12};function _0x20e9a5(_0x3db636,_0x2dd3fc,_0x35ac3d,_0x5d05a5){return _0x198df7(_0x35ac3d,_0x2dd3fc-_0x3f8223._0x136b6c,_0x35ac3d-_0x3f8223._0x22afaf,_0x5d05a5-0x3ab);}const _0x210988={};_0x210988[_0x20e9a5(0x3f8,0x434,0x401,0x403)]=function(_0x4119cd,_0x2a7ce3){return _0x4119cd===_0x2a7ce3;},_0x210988[_0x108673(-_0x4d4753._0x45b4e2,-_0x4d4753._0x435645,-0xbf,-_0x4d4753._0x4ec35f)]='USZZF';const _0x405f0b=_0x210988,_0x3366ae=await loadConfig();if(_0x3366ae[_0x20e9a5(0x3f0,0x410,0x40b,_0x4d4753._0x4bb834)+'th'])return _0x405f0b['jlOUk'](_0x405f0b[_0x108673(-_0x4d4753._0x136c92,-_0x4d4753._0x199ca1,-_0x4d4753._0x18e4df,-0xb0)],_0x405f0b[_0x108673(-_0x4d4753._0x3b11f0,-0xd5,-0x97,-_0x4d4753._0x372ccf)])?_0x3366ae['ssl_key_pa'+'th']:_0x355289[_0x20e9a5(0x468,0x432,0x42e,0x43b)][_0x20e9a5(0x415,_0x4d4753._0x26128b,_0x4d4753._0x53cb33,0x416)+_0x20e9a5(_0x4d4753._0x406c51,_0x4d4753._0x49c49d,0x445,_0x4d4753._0x19883a)];function _0x108673(_0x34735a,_0x59c442,_0x25de94,_0x12ff2b){return _0x1bc43f(_0x59c442,_0x59c442-_0x22b93b._0x4a73af,_0x25de94-0x1ac,_0x12ff2b- -0x47a);}return process[_0x20e9a5(_0x4d4753._0x2a4977,_0x4d4753._0x44e749,0x41f,_0x4d4753._0x1b77fc)]['SSL_KEY_PA'+'TH']||null;}export async function saveSslKeyPath(_0xab61cd){const _0x37d200={_0x140cb9:0x3dd,_0x219123:0x3c0,_0x50dc4b:0x40b,_0x5b1106:0x4ec,_0x275937:0x50b,_0x299d47:0x4ea,_0x505385:0x529,_0x25968e:0x4c9,_0x3e958b:0x4b0,_0x58adc4:0x40f,_0x64d7a3:0x3f4,_0x191edc:0x40e,_0x499a08:0x4f8,_0x3bbc32:0x525,_0x1e61c4:0x4da,_0x3a7c72:0x4b1,_0x284b5f:0x4b5,_0x3a1854:0x4df},_0xf4542e={_0x53932f:0x133,_0x4564f5:0x4d},_0x4c58c0={};function _0x4340ba(_0x27141b,_0x4d2566,_0x5e6510,_0x876c64){return _0x1bc43f(_0x5e6510,_0x4d2566-0xb6,_0x5e6510-0x108,_0x4d2566-0x120);}_0x4c58c0[_0x28eeaf(_0x37d200._0x140cb9,_0x37d200._0x219123,0x3f4,_0x37d200._0x50dc4b)]=function(_0x105291,_0x11fa1){return _0x105291===_0x11fa1;};function _0x28eeaf(_0x537c8e,_0x335c0b,_0x26102b,_0x38ee31){return _0x1bc43f(_0x26102b,_0x335c0b-_0xf4542e._0x53932f,_0x26102b-0x1b6,_0x537c8e-_0xf4542e._0x4564f5);}_0x4c58c0['IMHLR']=function(_0x4ea72a,_0x3fc32f){return _0x4ea72a!==_0x3fc32f;},_0x4c58c0[_0x4340ba(0x4eb,0x4fc,0x51a,0x4d5)]=_0x4340ba(_0x37d200._0x5b1106,_0x37d200._0x275937,_0x37d200._0x299d47,_0x37d200._0x505385);const _0x2cf580=_0x4c58c0,_0x18dc86=await loadConfig();if(_0x2cf580[_0x4340ba(_0x37d200._0x25968e,_0x37d200._0x3e958b,0x4b9,0x481)](_0xab61cd,null)){if(_0x2cf580[_0x28eeaf(0x418,_0x37d200._0x58adc4,_0x37d200._0x64d7a3,_0x37d200._0x191edc)](_0x2cf580['xBSYR'],_0x4340ba(_0x37d200._0x499a08,_0x37d200._0x275937,_0x37d200._0x3bbc32,0x4e2))){if(_0x2cf580['GfOfs'](_0x17d013['code'],_0x28eeaf(0x3f1,0x3f5,0x411,0x40d)))return{};throw _0x49e4b7;}else delete _0x18dc86[_0x4340ba(0x4d3,0x4b1,0x4bf,_0x37d200._0x1e61c4)+'th'];}else _0x18dc86[_0x4340ba(0x4db,_0x37d200._0x3a7c72,_0x37d200._0x284b5f,_0x37d200._0x3a1854)+'th']=_0xab61cd;await saveConfig(_0x18dc86);}export async function getSslCaPath(){const _0x25748b={_0x3b1263:0x13,_0x13379e:0x22,_0x4133fa:0x26,_0x4d0a6d:0x139,_0x3194b7:0x1a,_0x274b9b:0x155,_0xf86c22:0x156,_0x2353fd:0x144,_0x3f55fd:0x13b,_0x1b454c:0x11d},_0x59ea00={_0x62ff9a:0x65,_0x1669c3:0x13a},_0x5abf9e={_0x2ce77d:0x1b2,_0x320e1b:0x28},_0x54fa33={};function _0x4206b7(_0x59c198,_0x38417a,_0x28c929,_0x1b7c8c){return _0x198df7(_0x38417a,_0x38417a-_0x5abf9e._0x2ce77d,_0x28c929-_0x5abf9e._0x320e1b,_0x1b7c8c- -0x1d0);}_0x54fa33['iZBKI']=function(_0x214385,_0x4a7471){return _0x214385===_0x4a7471;};function _0x85819d(_0x338a51,_0x462b60,_0x3f25d7,_0x38d125){return _0x1bc43f(_0x338a51,_0x462b60-_0x59ea00._0x62ff9a,_0x3f25d7-_0x59ea00._0x1669c3,_0x38d125- -0x3b8);}const _0x416998=_0x54fa33,_0xd8e3c1=await loadConfig();if(_0xd8e3c1[_0x4206b7(-0x170,-0x139,-0x12e,-0x144)+'h'])return _0x416998[_0x85819d(-_0x25748b._0x3b1263,_0x25748b._0x13379e,-_0x25748b._0x4133fa,0xb)](_0x4206b7(-0x12e,-0x153,-_0x25748b._0x4d0a6d,-0x13d),_0x85819d(0x39,0x16,_0x25748b._0x3194b7,0x1d))?_0xd8e3c1[_0x4206b7(-_0x25748b._0x4d0a6d,-_0x25748b._0x274b9b,-_0x25748b._0xf86c22,-_0x25748b._0x2353fd)+'h']:_0x101925;return process[_0x4206b7(-_0x25748b._0x3f55fd,-0x140,-_0x25748b._0x1b454c,-0x140)]['SSL_CA_PAT'+'H']||null;}export async function saveSslCaPath(_0x576a28){const _0xf05cff={_0x3bf42f:0x4fc,_0x449b24:0x513,_0x305ab3:0x516,_0x2e7757:0x525,_0x56cd07:0x188,_0x184f44:0x1a4,_0x9f52fb:0x191,_0x3e9c3e:0x1ad,_0x5cb774:0x184,_0x368283:0x1c3,_0x2f1504:0x1b2,_0x250c98:0x1ac,_0x1a5dc9:0x1b9,_0x545939:0x51f,_0x57e397:0x4ec,_0x44074a:0x505,_0x5c0549:0x4d6,_0x344530:0x4d6},_0x2fe0c0={_0x5c11f7:0x1e5,_0x4040c7:0x92},_0xcbf486={'FMcYd':function(_0xf79134){return _0xf79134();},'AHMPM':function(_0x7c830c,_0x20a979){return _0x7c830c===_0x20a979;},'KKJfC':function(_0x2d90b8,_0x624b59){return _0x2d90b8===_0x624b59;},'MupDx':function(_0x4fd17a,_0x6648fc){return _0x4fd17a(_0x6648fc);}};function _0x45d20e(_0x53a6f2,_0x1dbeb5,_0x60a8e4,_0x12c766){return _0x198df7(_0x12c766,_0x1dbeb5-0x188,_0x60a8e4-0x1dc,_0x60a8e4-0x13a);}const _0x51d1de=await _0xcbf486[_0xf0c2a1(_0xf05cff._0x3bf42f,_0xf05cff._0x449b24,_0xf05cff._0x305ab3,_0xf05cff._0x2e7757)](loadConfig);function _0xf0c2a1(_0x5311e4,_0x5b3ee6,_0x5c923c,_0xe65f8c){return _0x198df7(_0xe65f8c,_0x5b3ee6-_0x2fe0c0._0x5c11f7,_0x5c923c-_0x2fe0c0._0x4040c7,_0x5c923c-0x46f);}if(_0xcbf486['AHMPM'](_0x576a28,null)){if(_0xcbf486[_0x45d20e(_0xf05cff._0x56cd07,_0xf05cff._0x184f44,_0xf05cff._0x9f52fb,_0xf05cff._0x3e9c3e)](_0x45d20e(_0xf05cff._0x5cb774,_0xf05cff._0x368283,_0xf05cff._0x2f1504,_0xf05cff._0x250c98),'zXWPs'))delete _0x51d1de[_0x45d20e(_0xf05cff._0x1a5dc9,0x19d,0x1c6,0x1dd)+'h'];else throw new _0x2a1128(_0x4f676e+(_0xf0c2a1(0x4e4,0x4fc,0x4cd,0x4c1)+'found:\x20')+_0x10b74f);}else _0x51d1de[_0xf0c2a1(_0xf05cff._0x545939,_0xf05cff._0x57e397,0x4fb,0x4f4)+'h']=_0x576a28;await _0xcbf486[_0xf0c2a1(0x4fa,_0xf05cff._0x44074a,_0xf05cff._0x5c0549,_0xf05cff._0x344530)](saveConfig,_0x51d1de);}function _0x4eb5(_0x3c0caa,_0x49e000){_0x3c0caa=_0x3c0caa-(-0x1004+0x15d*-0x7+0x1*0x1a97);const _0x27b650=_0x1df5();let _0x2877ec=_0x27b650[_0x3c0caa];if(_0x4eb5['fYpNDk']===undefined){var _0x418c5c=function(_0x2a1128){const _0x4f676e='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x10b74f='',_0x41f36c='';for(let _0x419dd2=-0x61e+-0xb*0xaf+0xda3,_0x2b9401,_0x1f5529,_0x3dcca5=0x1578+-0x134f+-0x229;_0x1f5529=_0x2a1128['charAt'](_0x3dcca5++);~_0x1f5529&&(_0x2b9401=_0x419dd2%(-0x1*0x8b3+0x25*0x81+-0x9ee)?_0x2b9401*(0x249b+-0x5e*-0x43+-0x3cf5)+_0x1f5529:_0x1f5529,_0x419dd2++%(-0x1*-0x270d+-0x2*0x470+-0x1*0x1e29))?_0x10b74f+=String['fromCharCode'](0x1726+-0x1*0x2039+-0x1*-0xa12&_0x2b9401>>(-(-0x603*-0x5+-0x1583+-0x88a)*_0x419dd2&-0x18e7+-0x1*-0x1f99+-0x6ac)):0x174*0x1+0x26e9+0x1*-0x285d){_0x1f5529=_0x4f676e['indexOf'](_0x1f5529);}for(let _0x43c6d9=-0x15a4+0x430+0x1174,_0xea4697=_0x10b74f['length'];_0x43c6d9<_0xea4697;_0x43c6d9++){_0x41f36c+='%'+('00'+_0x10b74f['charCodeAt'](_0x43c6d9)['toString'](-0x141e+0x7*0x2de+0x1c))['slice'](-(-0x202e*-0x1+0xf*-0x1a+0x1*-0x1ea6));}return decodeURIComponent(_0x41f36c);};_0x4eb5['jzAvtM']=_0x418c5c,_0x4eb5['VLCoHc']={},_0x4eb5['fYpNDk']=!![];}const _0x152013=_0x27b650[-0x26c3+0x1a04+0xcbf],_0x5e452b=_0x3c0caa+_0x152013,_0x4ca71c=_0x4eb5['VLCoHc'][_0x5e452b];return!_0x4ca71c?(_0x2877ec=_0x4eb5['jzAvtM'](_0x2877ec),_0x4eb5['VLCoHc'][_0x5e452b]=_0x2877ec):_0x2877ec=_0x4ca71c,_0x2877ec;}export async function getTrustProxy(){const _0x52a7c1={_0x15be1c:0x1b0,_0x24298d:0x168,_0x404db5:0x190,_0x3bac07:0x196,_0x14dd37:0xf2,_0x365117:0xc5,_0x1053bb:0xe6,_0x7adc5d:0xd3,_0x1e0b5a:0x16c,_0x2de4af:0x151,_0x28e4c4:0x17a,_0x36871d:0x1a7,_0x27872d:0x1cc,_0x3e10c6:0x1bc,_0xa90366:0x1df},_0x4c7ac6={_0x4d143c:0x96,_0xe0dadc:0x564},_0x3ac66f={_0x38dfec:0x1a1,_0x393adc:0x58},_0x58aa69={};_0x58aa69[_0x147339(-_0x52a7c1._0x15be1c,-_0x52a7c1._0x24298d,-_0x52a7c1._0x404db5,-0x187)]=function(_0x36ef18,_0xdc10e8){return _0x36ef18!==_0xdc10e8;};function _0x2bd392(_0xadc860,_0x593c4f,_0x2589a5,_0x5e2802){return _0x198df7(_0xadc860,_0x593c4f-0x149,_0x2589a5-_0x3ac66f._0x38dfec,_0x2589a5-_0x3ac66f._0x393adc);}_0x58aa69[_0x147339(-_0x52a7c1._0x3bac07,-0x16c,-0x17a,-0x195)]=_0x2bd392(0xcd,0xd1,0xdf,_0x52a7c1._0x14dd37);const _0xb1e9d9=_0x58aa69,_0x2e1a27=await loadConfig();if(_0x2e1a27[_0x2bd392(0x114,_0x52a7c1._0x365117,_0x52a7c1._0x1053bb,_0x52a7c1._0x7adc5d)+'y']!==undefined)return _0xb1e9d9[_0x147339(-0x17c,-0x185,-0x190,-0x177)](_0xb1e9d9[_0x147339(-_0x52a7c1._0x1e0b5a,-_0x52a7c1._0x2de4af,-_0x52a7c1._0x28e4c4,-0x15f)],_0xb1e9d9[_0x147339(-_0x52a7c1._0x36871d,-0x1a9,-0x17a,-0x162)])?_0x29126d['ssl_ca_pat'+'h']:_0x2e1a27['trust_prox'+'y'];function _0x147339(_0x1be5be,_0x15e372,_0x5dba68,_0x2c4187){return _0x1bc43f(_0x15e372,_0x15e372-_0x4c7ac6._0x4d143c,_0x5dba68-0x15e,_0x5dba68- -_0x4c7ac6._0xe0dadc);}return process['env'][_0x147339(-_0x52a7c1._0x27872d,-_0x52a7c1._0x3e10c6,-0x1c5,-_0x52a7c1._0xa90366)+'Y']||null;}export async function saveTrustProxy(_0x4505c6){const _0x4e4b37={_0x19bce0:0x2bd,_0x24a997:0x36a,_0x4886b0:0x351,_0x1d1074:0x35a,_0x5ef22e:0x379,_0xc91e0f:0x2c1,_0x1d9d8a:0x2aa,_0x2ae8cd:0x29e,_0x3c24a1:0x2f5,_0x139040:0x2b9,_0x15f000:0x35b,_0x539b3b:0x367,_0x2bdc17:0x2d7,_0x1ddb28:0x2a6,_0x5df9ad:0x2a0},_0x5e6591={_0x25d210:0x164,_0x508614:0x6e,_0x50f67f:0xfc},_0x4d5ab6={_0x3bb639:0x68},_0x34e738={'xRpAA':function(_0x254ef9){return _0x254ef9();},'JlLyw':function(_0x1c3784,_0x4a9bd5){return _0x1c3784===_0x4a9bd5;},'DaEgO':function(_0x28d9ff,_0x26b939){return _0x28d9ff===_0x26b939;},'kfACT':_0x2dfe82(_0x4e4b37._0x19bce0,0x2c9,0x2d9,0x2e3),'QSPIN':function(_0xf49d03,_0x2047e9){return _0xf49d03(_0x2047e9);}},_0x4a15dd=await _0x34e738['xRpAA'](loadConfig);_0x34e738['JlLyw'](_0x4505c6,null)?_0x34e738[_0x2a144f(_0x4e4b37._0x24a997,0x378,_0x4e4b37._0x4886b0,0x393)](_0x34e738[_0x2a144f(_0x4e4b37._0x1d1074,0x382,_0x4e4b37._0x5ef22e,0x351)],_0x34e738[_0x2dfe82(_0x4e4b37._0xc91e0f,_0x4e4b37._0x1d9d8a,_0x4e4b37._0x2ae8cd,0x294)])?delete _0x4a15dd[_0x2dfe82(_0x4e4b37._0x3c24a1,0x2d4,_0x4e4b37._0x139040,0x304)+'y']:delete _0x156e94[_0x2a144f(0x382,_0x4e4b37._0x15f000,_0x4e4b37._0x15f000,0x3ad)+'h']:_0x4a15dd[_0x2a144f(0x384,0x369,_0x4e4b37._0x539b3b,0x3a9)+'y']=_0x4505c6;function _0x2a144f(_0x4019f1,_0x2bf46d,_0x7473dd,_0x1e1573){return _0x198df7(_0x2bf46d,_0x2bf46d-0xbd,_0x7473dd-_0x4d5ab6._0x3bb639,_0x4019f1-0x2f6);}function _0x2dfe82(_0x32733c,_0x1d7d8d,_0x2ba6c0,_0x4abc51){return _0x1bc43f(_0x4abc51,_0x1d7d8d-_0x5e6591._0x25d210,_0x2ba6c0-_0x5e6591._0x508614,_0x1d7d8d- -_0x5e6591._0x50f67f);}await _0x34e738[_0x2dfe82(_0x4e4b37._0x2bdc17,_0x4e4b37._0x1ddb28,0x27c,_0x4e4b37._0x5df9ad)](saveConfig,_0x4a15dd);}export async function validateSslFile(_0x501d34,_0x1e8432){const _0x21c79d={_0xabdf9d:0x1b8,_0x5cea90:0x1e5,_0x2cbcaf:0x1b7,_0x1515a1:0x159,_0x1b5be4:0x17c,_0x2c4b58:0x187,_0x360fd2:0x162,_0x269222:0x164,_0x135c18:0x178,_0x455118:0x196,_0x24e562:0x16b,_0x177dce:0x186,_0x45d1ab:0x183,_0x3496ca:0x15b,_0x33c62b:0x180,_0x58dd9a:0x16c,_0x32d938:0x165,_0x3c1a3c:0x1b1,_0x1c520e:0x1a0,_0x48b805:0x154,_0x2e0021:0x187,_0x496162:0x1e0,_0x285050:0x1c7,_0x22f219:0x1df,_0x5912f5:0x18b,_0x36616f:0x1bc,_0x578bc4:0x19d,_0x20c293:0x1b7,_0x586b78:0x1ad,_0x246904:0x172,_0x568fab:0x18e,_0x2ab69a:0x1be,_0x103349:0x194,_0x1012b6:0x177,_0x362998:0x14a,_0x593c26:0x174,_0x319f85:0x17a,_0x50442a:0x156,_0x17ab6d:0x1ac,_0x43856b:0x1a4,_0x3cd4eb:0x1bd,_0x5a6a18:0x1b5,_0x3bc65a:0x195,_0x52d295:0x1c0,_0x49e086:0x1be,_0x4ae41b:0x1c1,_0x2289ce:0x16a},_0x20b001={_0x1f4c78:0xf4,_0x31fbfb:0x229},_0x2d148c={_0xb668d5:0xdd,_0x160319:0x124},_0x3a9cba={};_0x3a9cba[_0x1ec0eb(_0x21c79d._0xabdf9d,_0x21c79d._0x5cea90,_0x21c79d._0x2cbcaf,0x1ba)]=function(_0x56aeb2,_0x37b9c0){return _0x56aeb2!==_0x37b9c0;},_0x3a9cba['hHzIv']=_0x32e768(_0x21c79d._0x1515a1,_0x21c79d._0x1b5be4,_0x21c79d._0x2c4b58,_0x21c79d._0xabdf9d),_0x3a9cba[_0x32e768(_0x21c79d._0x360fd2,0x14f,0x174,_0x21c79d._0x269222)]='yRjZH',_0x3a9cba[_0x32e768(0x178,_0x21c79d._0x135c18,_0x21c79d._0x455118,0x1a1)]=function(_0xb4a8ce,_0x4afe79){return _0xb4a8ce!==_0x4afe79;},_0x3a9cba[_0x1ec0eb(0x188,_0x21c79d._0x24e562,0x1ab,0x18c)]=_0x32e768(0x16a,0x156,_0x21c79d._0x177dce,0x16d),_0x3a9cba[_0x1ec0eb(_0x21c79d._0x45d1ab,_0x21c79d._0x3496ca,_0x21c79d._0x33c62b,_0x21c79d._0x58dd9a)]=function(_0x133b53,_0x355684){return _0x133b53===_0x355684;},_0x3a9cba[_0x1ec0eb(0x18e,0x1a4,_0x21c79d._0x32d938,0x178)]=_0x1ec0eb(0x18c,_0x21c79d._0x3c1a3c,0x185,_0x21c79d._0x1c520e);function _0x32e768(_0x72e004,_0x59ced0,_0x4f5a07,_0x2a5410){return _0x198df7(_0x2a5410,_0x59ced0-0x146,_0x4f5a07-_0x2d148c._0xb668d5,_0x4f5a07-_0x2d148c._0x160319);}function _0x1ec0eb(_0x857a32,_0x2998e5,_0x28e16e,_0x5358dd){return _0x1bc43f(_0x5358dd,_0x2998e5-0x1e0,_0x28e16e-_0x20b001._0x1f4c78,_0x857a32- -_0x20b001._0x31fbfb);}const _0x3c15f8=_0x3a9cba;try{_0x3c15f8['LRNpn'](_0x3c15f8['hHzIv'],_0x3c15f8[_0x32e768(0x18b,_0x21c79d._0x48b805,0x174,_0x21c79d._0x2e0021)])?await _0x1d14db['access'](_0x501d34,_0x3b1940[_0x32e768(0x1a3,_0x21c79d._0x496162,_0x21c79d._0x285050,_0x21c79d._0x22f219)]):delete _0x55fd3f['trust_prox'+'y'];}catch(_0x167bac){if(_0x3c15f8[_0x1ec0eb(_0x21c79d._0x5912f5,0x165,0x160,_0x21c79d._0x36616f)]('eTvyz',_0x32e768(_0x21c79d._0x578bc4,_0x21c79d._0x20c293,0x192,_0x21c79d._0x586b78)))delete _0x940786[_0x32e768(0x19c,_0x21c79d._0x246904,0x189,0x1a0)+_0x32e768(0x184,_0x21c79d._0x2cbcaf,0x19e,0x18c)];else{if(_0x167bac[_0x32e768(_0x21c79d._0x568fab,0x1bc,_0x21c79d._0x578bc4,_0x21c79d._0x2ab69a)]===_0x3c15f8[_0x1ec0eb(0x188,_0x21c79d._0x103349,0x158,0x173)])throw new Error(_0x1e8432+(_0x1ec0eb(_0x21c79d._0x1012b6,0x187,_0x21c79d._0x362998,_0x21c79d._0x593c26)+_0x1ec0eb(_0x21c79d._0x319f85,0x184,_0x21c79d._0x50442a,0x15d))+_0x501d34);else{if(_0x3c15f8['zfLoO'](_0x167bac[_0x1ec0eb(0x192,_0x21c79d._0x17ab6d,0x1a8,_0x21c79d._0x43856b)],_0x3c15f8[_0x1ec0eb(0x18e,_0x21c79d._0x3cd4eb,0x178,_0x21c79d._0x5a6a18)]))throw new Error(_0x1e8432+(_0x1ec0eb(0x196,_0x21c79d._0x17ab6d,0x1c5,_0x21c79d._0x3bc65a)+_0x32e768(0x1ca,0x19a,0x1b1,_0x21c79d._0x52d295)+'e\x20(permiss'+'ion\x20denied'+'):\x20')+_0x501d34);else throw new Error(_0x32e768(0x1de,_0x21c79d._0x49e086,_0x21c79d._0x4ae41b,0x1a2)+_0x32e768(0x162,0x1a6,_0x21c79d._0x33c62b,_0x21c79d._0x2289ce)+_0x1e8432+'\x20file:\x20'+_0x501d34+'\x20('+_0x167bac['message']+')');}}}}
1
+ (function(_0x5018d6,_0xb351ee){const _0x3151ea={_0x533e61:0x2ee,_0x60198a:0x32b,_0x24b960:0x329,_0x2fd742:0x35c,_0x594fcd:0x341,_0x171376:0x30d,_0x1fce2b:0x317,_0x1e84cf:0x2ed,_0x39ca8f:0x2e3,_0x2ca35f:0x312,_0x2dbd94:0x320,_0x2f0fe0:0x369,_0x53f596:0x332,_0x30202a:0x324,_0x5054f4:0x2d9,_0x368fd8:0x33d,_0x2b8366:0x302},_0x29eea5={_0x5acdbb:0x213},_0x41f9de=_0x5018d6();function _0x3f4c53(_0x144cf6,_0x1bcfc6,_0xfd76a8,_0x37d141){return _0x4d81(_0x37d141-0x1cb,_0x144cf6);}function _0x3772a3(_0x27086f,_0x541b5e,_0x1a5f9c,_0x44fb1d){return _0x4d81(_0x27086f-_0x29eea5._0x5acdbb,_0x1a5f9c);}while(!![]){try{const _0x3f2b00=-parseInt(_0x3f4c53(_0x3151ea._0x533e61,0x2ed,0x312,0x307))/(0xdc9*0x2+0xa*0x1c1+-0x2d1b)+-parseInt(_0x3772a3(_0x3151ea._0x60198a,0x31e,0x348,_0x3151ea._0x24b960))/(0x8c5+0x84e*-0x1+-0x75)+parseInt(_0x3772a3(_0x3151ea._0x2fd742,_0x3151ea._0x594fcd,0x36e,0x33b))/(-0xcf8+-0x15ef+-0xda*-0x29)*(parseInt(_0x3f4c53(_0x3151ea._0x171376,0x31b,_0x3151ea._0x1fce2b,_0x3151ea._0x1e84cf))/(-0x1d*0x6e+0x5*-0x765+0x3173))+parseInt(_0x3f4c53(_0x3151ea._0x39ca8f,0x333,0x32b,_0x3151ea._0x2ca35f))/(-0x26fe+-0xbf6+0x1*0x32f9)+-parseInt(_0x3772a3(0x33b,0x35a,_0x3151ea._0x2dbd94,_0x3151ea._0x2f0fe0))/(-0x170b+-0xb7f+-0x452*-0x8)+parseInt(_0x3772a3(0x32e,0x329,_0x3151ea._0x53f596,_0x3151ea._0x30202a))/(0x20d+-0x1be8+0x19e2)+-parseInt(_0x3f4c53(0x2cb,0x2e7,0x2d6,_0x3151ea._0x5054f4))/(-0x7*-0x14b+0x104a+0x1*-0x194f)*(parseInt(_0x3772a3(0x31d,_0x3151ea._0x368fd8,0x327,_0x3151ea._0x2b8366))/(-0xa7*-0x3a+0x3*0x1de+-0x2b67));if(_0x3f2b00===_0xb351ee)break;else _0x41f9de['push'](_0x41f9de['shift']());}catch(_0x232bf6){_0x41f9de['push'](_0x41f9de['shift']());}}}(_0x9960,-0x2*0x1ee4a+0x15406+0x59616));import{promises as _0x3e605f,constants as _0x4fca0d}from'fs';import _0x2c81ea from'path';import _0x12d92d from'os';function _0x512b1c(_0x1a5a4a,_0x3172a2,_0x34a45f,_0x2f1770){return _0x4d81(_0x1a5a4a-0x3d3,_0x3172a2);}const CONFIG_PATH=_0x2c81ea[_0x186322(0x30b,0x2e7,0x318,0x30f)](_0x12d92d[_0x512b1c(0x511,0x52e,0x50e,0x52c)](),_0x186322(0x318,0x30c,0x2e9,0x2f4),_0x186322(0x339,0x353,0x326,0x35c)+'n');async function loadConfig(){const _0x2540d9={_0x339056:0x8a,_0x232500:0x5a,_0x48631f:0x37,_0x1d38ff:0x283,_0x256721:0x293,_0x4ac807:0x293,_0x2d87be:0x29a,_0x284c09:0x2b2,_0xd49e54:0x3d,_0x3f8e2c:0x2c4,_0x59c86a:0x2a9,_0x347703:0x2bc,_0x21451b:0x2bd,_0x4f34db:0x2b9,_0x15c3a9:0x2de,_0x390bfd:0x4b,_0x76ee1c:0x2c,_0x2d24d4:0x66,_0x1926a1:0x5e,_0x258abb:0x26e,_0x6160d5:0x3a,_0x423af7:0x2e,_0x1142b6:0x1},_0x2007c7={_0x8b4572:0x250,_0x4e2402:0x123},_0x43b467={_0x201842:0xc0,_0x4a24b1:0xb0},_0x514a94={};_0x514a94[_0x3758cd(-_0x2540d9._0x339056,-0x5e,-_0x2540d9._0x232500,-_0x2540d9._0x48631f)]=function(_0x3221df,_0x224746){return _0x3221df===_0x224746;},_0x514a94[_0x3621c8(0x2b2,_0x2540d9._0x1d38ff,_0x2540d9._0x256721,_0x2540d9._0x4ac807)]=_0x3621c8(0x2c7,0x2c3,_0x2540d9._0x2d87be,_0x2540d9._0x284c09);function _0x3758cd(_0x4e4fbe,_0x328e3a,_0x28d53a,_0x3879ff){return _0x186322(_0x328e3a- -0x36b,_0x328e3a-_0x43b467._0x201842,_0x28d53a-_0x43b467._0x4a24b1,_0x3879ff);}_0x514a94[_0x3758cd(-_0x2540d9._0xd49e54,-0x51,-0x51,-0x3e)]=function(_0x230bdc,_0x5bf925){return _0x230bdc!==_0x5bf925;},_0x514a94[_0x3621c8(0x2cb,_0x2540d9._0x3f8e2c,_0x2540d9._0x59c86a,_0x2540d9._0x347703)]=_0x3621c8(0x2a6,_0x2540d9._0x21451b,0x2c6,_0x2540d9._0x4f34db),_0x514a94['SlnQK']=_0x3621c8(0x2f8,0x2ec,_0x2540d9._0x15c3a9,_0x2540d9._0x347703);const _0x231215=_0x514a94;function _0x3621c8(_0x4c626f,_0x278e6d,_0x4981f6,_0x51b950){return _0x512b1c(_0x4981f6- -_0x2007c7._0x8b4572,_0x51b950,_0x4981f6-0x1f3,_0x51b950-_0x2007c7._0x4e2402);}try{const _0x54342c=await _0x3e605f[_0x3621c8(0x2e6,0x2a1,0x2c4,0x299)](CONFIG_PATH,_0x3758cd(-0x6d,-0x59,-_0x2540d9._0x390bfd,-_0x2540d9._0x76ee1c));return JSON['parse'](_0x54342c);}catch(_0x218fbc){if(_0x231215[_0x3758cd(-_0x2540d9._0x2d24d4,-_0x2540d9._0x1926a1,-0x62,-0x7c)](_0x218fbc['code'],_0x231215[_0x3621c8(_0x2540d9._0x258abb,0x297,_0x2540d9._0x4ac807,0x2aa)]))return _0x231215[_0x3621c8(0x2ae,0x2bb,0x2af,0x2dd)](_0x231215[_0x3758cd(-_0x2540d9._0x6160d5,-0x57,-0x4b,-0x66)],_0x231215[_0x3758cd(-_0x2540d9._0x423af7,-0x1b,_0x2540d9._0x1142b6,-0x13)])?{}:_0x57c373['trust_prox'+'y'];throw _0x218fbc;}}async function saveConfig(_0x20b78b){const _0x41b44a={_0x4aeacb:0x130,_0x372532:0x132,_0x5ea4d9:0x11a,_0x2eb1d9:0x11c,_0x2a5543:0x116,_0x48e321:0x139,_0x131e84:0x239,_0x3506a4:0x268,_0x54c72d:0xfb,_0x5dbc16:0x104,_0x3c8787:0x117,_0x5a61a6:0x11e},_0x40078={_0x25cdb8:0x13e,_0x1e1a76:0x1aa},_0xd254ee={_0x4cf11c:0x12f,_0x1f1e70:0x1db},_0x539216={};_0x539216[_0x264fc8(-_0x41b44a._0x4aeacb,-0x12a,-_0x41b44a._0x372532,-_0x41b44a._0x5ea4d9)]='utf-8';const _0x4b284d=_0x539216,_0x3ec7a2=_0x2c81ea[_0x264fc8(-0x117,-_0x41b44a._0x2eb1d9,-_0x41b44a._0x2a5543,-_0x41b44a._0x48e321)](CONFIG_PATH),_0x3dec1c={};function _0x264fc8(_0x2c671c,_0x43f8f5,_0x52799a,_0x380073){return _0x186322(_0x52799a- -0x449,_0x43f8f5-_0xd254ee._0x4cf11c,_0x52799a-_0xd254ee._0x1f1e70,_0x43f8f5);}function _0x1cb513(_0x403e60,_0x2d0952,_0x31f4f4,_0xe0aaef){return _0x512b1c(_0xe0aaef- -0x758,_0x2d0952,_0x31f4f4-_0x40078._0x25cdb8,_0xe0aaef-_0x40078._0x1e1a76);}_0x3dec1c[_0x1cb513(-_0x41b44a._0x131e84,-_0x41b44a._0x3506a4,-0x246,-0x25e)]=!![],await _0x3e605f[_0x264fc8(-0x127,-_0x41b44a._0x54c72d,-0x101,-_0x41b44a._0x5dbc16)](_0x3ec7a2,_0x3dec1c),await _0x3e605f[_0x1cb513(-0x246,-0x243,-0x273,-0x270)](CONFIG_PATH,JSON[_0x264fc8(-_0x41b44a._0x3c8787,-0x101,-0x115,-_0x41b44a._0x5a61a6)](_0x20b78b,null,0x432*-0x7+0x728+0x1638),_0x4b284d[_0x264fc8(-0x11d,-0x150,-0x132,-0x137)]);}function _0x186322(_0x2bab42,_0x284f41,_0x55619a,_0x13966c){return _0x4d81(_0x2bab42-0x1ee,_0x13966c);}export async function getCoderSetupPath(){const _0x2cff1f={_0x4f28e0:0x22a,_0x2f7c45:0x32,_0x34d713:0x33,_0x2bed1e:0x38,_0x1cbafb:0x53,_0x3b7aa7:0x6a,_0x1b9870:0x64,_0x269ad7:0x207,_0x14cf40:0x218,_0x4b2173:0x249,_0x4289cb:0x2f,_0x53865a:0x31},_0x33d917={_0x3f0efd:0x4bc},_0x432791={_0x235ced:0x565,_0xc62e85:0x83,_0xe84f40:0x1ef};function _0x2fb315(_0x136dd3,_0x4bcbed,_0x16c8e9,_0x24916d){return _0x186322(_0x136dd3- -_0x432791._0x235ced,_0x4bcbed-_0x432791._0xc62e85,_0x16c8e9-_0x432791._0xe84f40,_0x24916d);}function _0x300ca1(_0x27e0e3,_0x2ac541,_0x367dfc,_0x11891a){return _0x512b1c(_0x11891a- -_0x33d917._0x3f0efd,_0x27e0e3,_0x367dfc-0x17,_0x11891a-0xc6);}const _0x1c7fca={'zlYpf':function(_0x1ce9a2){return _0x1ce9a2();}};if(process[_0x2fb315(-_0x2cff1f._0x4f28e0,-0x253,-0x246,-0x210)][_0x300ca1(_0x2cff1f._0x2f7c45,_0x2cff1f._0x34d713,0x13,_0x2cff1f._0x2bed1e)+_0x300ca1(0x3d,_0x2cff1f._0x1cbafb,0x47,0x69)])return process[_0x300ca1(_0x2cff1f._0x3b7aa7,0x3e,0x90,_0x2cff1f._0x1b9870)]['CODER_SETU'+_0x2fb315(-0x225,-0x1fb,-_0x2cff1f._0x269ad7,-0x204)];const _0x508c5a=await _0x1c7fca['zlYpf'](loadConfig);return _0x508c5a[_0x2fb315(-0x223,-_0x2cff1f._0x14cf40,-_0x2cff1f._0x4b2173,-0x1f7)+_0x300ca1(_0x2cff1f._0x4289cb,0x35,_0x2cff1f._0x53865a,_0x2cff1f._0x34d713)]||null;}export async function saveCoderSetupPath(_0x52584e){const _0x1daf88={_0x588f67:0x2d8,_0x1379a4:0x2ab,_0x22b63f:0x251,_0x43d529:0x28d,_0x27d6ed:0x2a3,_0x41265a:0x28f,_0x34aff7:0x281,_0xc15c12:0x280,_0x69d4ac:0x272,_0xa838d3:0x29b,_0x30059c:0x2f5,_0x55a8a:0x2f3,_0x297161:0x2d8,_0x5a15fb:0x2b9,_0x5252bc:0x2e9},_0x36e4ad={_0x4222f1:0x5d1,_0x286614:0x43,_0x1d4375:0x1da},_0x3545f9={_0x30bbcd:0xdb,_0x10ce74:0x1b};function _0xf12d2e(_0x1630bf,_0x14e65c,_0x55e913,_0x5c3132){return _0x512b1c(_0x55e913- -0x7a2,_0x14e65c,_0x55e913-_0x3545f9._0x30bbcd,_0x5c3132-_0x3545f9._0x10ce74);}function _0xdd1c4(_0x7370af,_0x4b03da,_0x51a5b9,_0xc021db){return _0x186322(_0xc021db- -_0x36e4ad._0x4222f1,_0x4b03da-_0x36e4ad._0x286614,_0x51a5b9-_0x36e4ad._0x1d4375,_0x51a5b9);}const _0x136ee3={'LnCao':function(_0x2b88d6){return _0x2b88d6();},'sExaz':_0xdd1c4(-0x28e,-0x2ad,-0x2dc,-0x2b4),'rkaUu':_0xdd1c4(-0x2da,-_0x1daf88._0x588f67,-_0x1daf88._0x1379a4,-0x2b5),'TzRTS':function(_0x29dc91,_0x3067e2){return _0x29dc91(_0x3067e2);}},_0x4d3a31=await _0x136ee3[_0xf12d2e(-_0x1daf88._0x22b63f,-_0x1daf88._0x43d529,-0x26f,-0x24e)](loadConfig);_0x52584e===null?delete _0x4d3a31[_0xdd1c4(-0x2a1,-_0x1daf88._0x27d6ed,-0x2a5,-_0x1daf88._0x41265a)+'p_path']:_0x136ee3[_0xf12d2e(-_0x1daf88._0x34aff7,-0x2a9,-_0x1daf88._0xc15c12,-_0x1daf88._0x69d4ac)]!==_0x136ee3[_0xdd1c4(-0x2c9,-_0x1daf88._0xa838d3,-0x2d4,-0x2b2)]?_0x4d3a31['coder_setu'+'p_path']=_0x52584e:_0x1a1a0c[_0xdd1c4(-_0x1daf88._0x30059c,-_0x1daf88._0x55a8a,-0x2cc,-_0x1daf88._0x297161)+'h']=_0x232187,await _0x136ee3[_0xf12d2e(-_0x1daf88._0x5a15fb,-0x2a1,-0x2c3,-_0x1daf88._0x5252bc)](saveConfig,_0x4d3a31);}export async function getServerPort(){const _0x4e9736={_0x2a3892:0x150,_0x5732e5:0x14a,_0x1d733d:0x12e,_0xce5bc1:0x16e,_0x1bf57f:0x185,_0x2b831f:0x2d9,_0x307ef9:0x168,_0x250782:0x147,_0x745cdf:0x151,_0x156655:0x14a,_0xff92e9:0x13a,_0x394851:0x170,_0x161d2f:0x337,_0x3dcbee:0x2e9,_0x2aefc9:0x30d},_0x44b414={_0x3e0747:0x67a,_0x4728a1:0x162},_0x548740={_0x25379d:0x21e},_0x18223d={'zZrPa':function(_0x1c8750,_0x4cc245){return _0x1c8750===_0x4cc245;},'EwgXH':function(_0x27480e,_0x3cd71d,_0x127144){return _0x27480e(_0x3cd71d,_0x127144);}};function _0xa92e2f(_0x2aca61,_0x519dc0,_0x1b8a5c,_0x314519){return _0x512b1c(_0x314519- -_0x548740._0x25379d,_0x519dc0,_0x1b8a5c-0x64,_0x314519-0x90);}if(process[_0x2d391a(-_0x4e9736._0x2a3892,-_0x4e9736._0x5732e5,-0x15a,-_0x4e9736._0x1d733d)][_0x2d391a(-0x146,-_0x4e9736._0xce5bc1,-0x14f,-0x172)]){if(_0x18223d['zZrPa'](_0x2d391a(-0x164,-_0x4e9736._0x1bf57f,-0x193,-0x1a8),_0xa92e2f(0x2cb,0x29c,_0x4e9736._0x2b831f,0x2c7)))throw new _0x58db26(_0x2cb7bc+(_0x2d391a(-_0x4e9736._0x307ef9,-_0x4e9736._0x250782,-0x16d,-_0x4e9736._0x745cdf)+'found:\x20')+_0x2f43e8);else return _0x18223d[_0x2d391a(-_0x4e9736._0x1d733d,-0x169,-0x15b,-_0x4e9736._0x156655)](parseInt,process[_0x2d391a(-_0x4e9736._0xff92e9,-0x132,-0x15a,-_0x4e9736._0x394851)][_0xa92e2f(0x323,_0x4e9736._0x161d2f,_0x4e9736._0x3dcbee,_0x4e9736._0x2aefc9)],0x185*0x2+-0xcf7*0x1+0x9f7);}function _0x2d391a(_0xf982a4,_0x57ebc3,_0x40835b,_0x429e97){return _0x512b1c(_0x40835b- -_0x44b414._0x3e0747,_0x57ebc3,_0x40835b-_0x44b414._0x4728a1,_0x429e97-0x3c);}const _0x27d057=await loadConfig();return _0x27d057['server_por'+'t']||0x21d1+0x3b4*-0x2+-0xeb1;}export async function saveServerPort(_0x586936){const _0x3f6b2e={_0x2b4928:0x4b9,_0x353c21:0x4e3,_0x5dc2c0:0x501},_0x1dce1e={_0x25d5c3:0x4e,_0x7177c5:0x174},_0x357d0c={_0x53a499:0x1b8};function _0x9ef7ee(_0x123a03,_0x3d2483,_0xfad444,_0x300ef0){return _0x186322(_0x300ef0-0x1bd,_0x3d2483-_0x357d0c._0x53a499,_0xfad444-0xa9,_0x123a03);}const _0x50b09e={'OrYfk':function(_0x93e028){return _0x93e028();},'NeETd':function(_0x35e3a7,_0x368623){return _0x35e3a7(_0x368623);}},_0x39d0a3=await _0x50b09e[_0x9ef7ee(_0x3f6b2e._0x2b4928,0x4fc,_0x3f6b2e._0x353c21,0x4e3)](loadConfig);_0x39d0a3[_0x9ef7ee(0x4e3,0x50b,0x4fd,_0x3f6b2e._0x5dc2c0)+'t']=_0x586936;function _0x4e01e7(_0x3c917f,_0x3c50a4,_0x4aeed7,_0x51604f){return _0x512b1c(_0x4aeed7- -0x667,_0x3c917f,_0x4aeed7-_0x1dce1e._0x25d5c3,_0x51604f-_0x1dce1e._0x7177c5);}await _0x50b09e['NeETd'](saveConfig,_0x39d0a3);}export function getConfigPath(){return CONFIG_PATH;}export async function getSslCertPath(){const _0xe82139={_0x842784:0x174,_0x3216f8:0x2d0,_0x23cdd0:0x2b2,_0xe46651:0x302,_0x566bac:0x2fa,_0x531635:0x2e9,_0x522217:0x2e9,_0x387ee2:0x19e,_0x55e34b:0x187,_0xcfb6ba:0x177,_0x57dd73:0x1b8,_0x13d985:0x193,_0x8596dc:0x2d8,_0x5e0484:0x2cf,_0xa05504:0x2ea,_0xdef907:0x19f,_0x2af8e1:0x182,_0x15112a:0x1d4},_0x55848f={_0x3d68d3:0x197,_0x3b638c:0x62},_0x4b8854={_0x4da07f:0x121,_0x1cb4f8:0x131};function _0x161848(_0x3bc495,_0x4825b8,_0x2f99eb,_0x2bca60){return _0x186322(_0x2bca60- -0x4be,_0x4825b8-_0x4b8854._0x4da07f,_0x2f99eb-_0x4b8854._0x1cb4f8,_0x4825b8);}const _0x31de45={'Txsqo':function(_0x43263b){return _0x43263b();},'GMLmC':_0x161848(-_0xe82139._0x842784,-0x166,-0x1bb,-0x190)};function _0x561f5a(_0x4f8d81,_0x1bc975,_0x285ce6,_0xd22afd){return _0x512b1c(_0x1bc975- -0x22e,_0xd22afd,_0x285ce6-_0x55848f._0x3d68d3,_0xd22afd-_0x55848f._0x3b638c);}const _0x2de89e=await _0x31de45[_0x561f5a(_0xe82139._0x3216f8,_0xe82139._0x23cdd0,0x2da,0x2cc)](loadConfig);if(_0x2de89e[_0x561f5a(_0xe82139._0xe46651,_0xe82139._0x566bac,_0xe82139._0x531635,_0xe82139._0x522217)+_0x161848(-0x1ae,-_0xe82139._0x387ee2,-0x1af,-0x19d)]){if(_0x31de45[_0x161848(-0x183,-_0xe82139._0x55e34b,-_0xe82139._0xcfb6ba,-0x182)]!==_0x161848(-0x197,-_0xe82139._0x57dd73,-0x172,-_0xe82139._0x13d985))return _0x2de89e['ssl_cert_p'+_0x561f5a(0x2ae,_0xe82139._0x8596dc,_0xe82139._0x5e0484,_0xe82139._0xa05504)];else delete _0x34fad3['ssl_cert_p'+_0x161848(-0x174,-_0xe82139._0xdef907,-_0xe82139._0x2af8e1,-0x19d)];}return process['env'][_0x161848(-0x1d2,-_0xe82139._0x15112a,-0x1d7,-0x1b6)+'ATH']||null;}export async function saveSslCertPath(_0x151b4a){const _0x26ebb4={_0x25c783:0xd9,_0x5e941b:0xdf,_0x248706:0xbe,_0x1b2a22:0x28,_0x354829:0x48,_0x2b8319:0x29,_0x496cef:0x39,_0x12930c:0x8f,_0x5daaca:0xba,_0x255300:0xbd,_0x4b87a9:0xdb},_0x76f9a4={_0x4954b3:0x449,_0x4c8657:0x145,_0x3af86c:0x2a},_0x4777c1={'QzYVg':function(_0x231779){return _0x231779();},'gOJbS':function(_0x1335c2,_0xf5b591){return _0x1335c2(_0xf5b591);}},_0x5d4140=await _0x4777c1['QzYVg'](loadConfig);_0x151b4a===null?delete _0x5d4140[_0xc9f671(_0x26ebb4._0x25c783,0x109,_0x26ebb4._0x5e941b,_0x26ebb4._0x248706)+'ath']:_0x5d4140[_0x5ec114(_0x26ebb4._0x1b2a22,_0x26ebb4._0x354829,_0x26ebb4._0x2b8319,_0x26ebb4._0x496cef)+_0xc9f671(_0x26ebb4._0x12930c,_0x26ebb4._0x5daaca,_0x26ebb4._0x255300,0xd9)]=_0x151b4a;function _0xc9f671(_0x3d8ee6,_0x334ac4,_0xc80d52,_0x3e9b44){return _0x512b1c(_0xc80d52- -_0x76f9a4._0x4954b3,_0x3e9b44,_0xc80d52-_0x76f9a4._0x4c8657,_0x3e9b44-_0x76f9a4._0x3af86c);}function _0x5ec114(_0x100165,_0x3b0847,_0x36abb9,_0x5e06b3){return _0x512b1c(_0x36abb9- -0x4ff,_0x5e06b3,_0x36abb9-0xaf,_0x5e06b3-0x1af);}await _0x4777c1[_0xc9f671(_0x26ebb4._0x4b87a9,0x98,0xaf,0x88)](saveConfig,_0x5d4140);}export async function getSslKeyPath(){const _0x2ff082={_0x33845a:0x4e7,_0x2f84f1:0x51d,_0x5716d:0x3bd,_0x16dd9a:0x3da,_0x324861:0x3bb,_0x2ed97c:0x3c5,_0x4888b6:0x520,_0x20ac0a:0x504,_0x1f232d:0x51a,_0xf365bf:0x539,_0x329590:0x4c3,_0x3d2891:0x4d0,_0xf285b2:0x39d,_0x47bb99:0x37b,_0x56a68e:0x3b7,_0xc7d8c9:0x3ce,_0x5ece6e:0x3ae,_0x419cf9:0x392,_0x26a158:0x3cd,_0x3de426:0x398,_0x446b60:0x3d9,_0x36687a:0x390,_0x4b3476:0x377,_0x525b59:0x367,_0x3e690f:0x3f8,_0x1811cb:0x3a8,_0x3d1423:0x3a7,_0x1ad3b5:0x3ee,_0x6d55ad:0x379,_0x57db25:0x370,_0x340460:0x38e,_0x3a8751:0x529,_0x52c565:0x542,_0x22ff50:0x3dc,_0xc6da06:0x404,_0x412398:0x523,_0x255fb3:0x500,_0x3f0625:0x3ad,_0xfa9a60:0x3ca,_0x387c70:0x395,_0x54eb90:0x531,_0x2c65b6:0x537},_0x38c7c2={_0x5e836a:0x156,_0x1a4056:0xaa,_0x5dcf97:0xe},_0x5c3439={'ItuXl':function(_0x387fee,_0x3e9a6f){return _0x387fee===_0x3e9a6f;},'TGIKl':_0x3914c8(_0x2ff082._0x33845a,0x4fb,0x4db,_0x2ff082._0x2f84f1),'ADatd':function(_0x65a0f8,_0xb3153b){return _0x65a0f8===_0xb3153b;},'ooYmN':_0x3914c8(0x54a,0x53b,0x55b,0x531),'RmJNT':function(_0xa799b){return _0xa799b();},'LyvJI':_0x2f707c(0x3ce,0x3a6,0x3d5,_0x2ff082._0x5716d),'WEzFX':_0x2f707c(_0x2ff082._0x16dd9a,_0x2ff082._0x324861,0x3de,_0x2ff082._0x2ed97c)},_0x4ef809=await _0x5c3439['RmJNT'](loadConfig);if(_0x4ef809[_0x3914c8(_0x2ff082._0x4888b6,_0x2ff082._0x20ac0a,0x51f,0x4da)+'th']){if(_0x5c3439[_0x3914c8(0x537,_0x2ff082._0x1f232d,0x500,_0x2ff082._0xf365bf)]!==_0x5c3439[_0x3914c8(_0x2ff082._0x329590,0x4ea,0x4c0,_0x2ff082._0x3d2891)])return _0x4ef809[_0x2f707c(_0x2ff082._0xf285b2,0x3b7,0x38b,_0x2ff082._0x47bb99)+'th'];else{if(_0x5c3439['ItuXl'](_0xd47494['code'],_0x5c3439['TGIKl']))throw new _0x5108ff(_0x3aec42+(_0x2f707c(_0x2ff082._0x56a68e,_0x2ff082._0xc7d8c9,_0x2ff082._0x5ece6e,_0x2ff082._0x419cf9)+_0x2f707c(0x3b2,_0x2ff082._0x26a158,_0x2ff082._0x3de426,_0x2ff082._0x446b60))+_0x41b5bb);else{if(_0x5c3439['ADatd'](_0x4e1df6[_0x2f707c(_0x2ff082._0x36687a,0x3b8,_0x2ff082._0x4b3476,_0x2ff082._0x525b59)],_0x5c3439[_0x2f707c(0x3cd,_0x2ff082._0x3e690f,_0x2ff082._0x1811cb,_0x2ff082._0x3d1423)]))throw new _0x1ec653(_0x560b58+(_0x2f707c(0x3c7,0x3d6,0x3ab,_0x2ff082._0x1ad3b5)+'ot\x20readabl'+_0x2f707c(0x385,_0x2ff082._0x6d55ad,_0x2ff082._0x57db25,_0x2ff082._0x340460)+_0x3914c8(_0x2ff082._0x3a8751,0x518,0x51b,0x4f1)+_0x3914c8(0x55b,_0x2ff082._0x52c565,0x540,_0x2ff082._0x1f232d))+_0x14171a);else throw new _0x1df49f(_0x2f707c(_0x2ff082._0x22ff50,0x3f1,_0x2ff082._0xc6da06,0x3c8)+_0x3914c8(0x518,_0x2ff082._0x412398,_0x2ff082._0x255fb3,0x540)+_0x3e0f72+_0x2f707c(_0x2ff082._0x3f0625,_0x2ff082._0xfa9a60,_0x2ff082._0x387c70,0x396)+_0x1df59f+'\x20('+_0x176769['message']+')');}}}function _0x3914c8(_0x5d5cb3,_0x3904af,_0x5ac378,_0x13ab40){return _0x512b1c(_0x3904af-0x11,_0x5d5cb3,_0x5ac378-0x1e,_0x13ab40-0x84);}function _0x2f707c(_0x1548cb,_0x2bf16a,_0x16e6f4,_0x3818c6){return _0x512b1c(_0x1548cb- -_0x38c7c2._0x5e836a,_0x3818c6,_0x16e6f4-_0x38c7c2._0x1a4056,_0x3818c6-_0x38c7c2._0x5dcf97);}return process[_0x3914c8(0x555,_0x2ff082._0x54eb90,0x503,0x540)][_0x3914c8(0x513,0x53d,_0x2ff082._0x2c65b6,0x554)+'TH']||null;}export async function saveSslKeyPath(_0x58bfdd){const _0x41fc50={_0x1fd812:0x15e,_0x4964c7:0x16a,_0x18a5b3:0x18c,_0x4e915c:0x170},_0x19e06c={_0x437dc9:0x105};function _0x3b8d4d(_0x19439d,_0x36480f,_0x5d1719,_0x5d57b2){return _0x186322(_0x5d1719- -0x493,_0x36480f-0x14a,_0x5d1719-0x77,_0x5d57b2);}const _0x1ff145={'lEaaz':function(_0x2ec067){return _0x2ec067();},'oLZTQ':function(_0x1c7673,_0x2484f2){return _0x1c7673===_0x2484f2;},'KEDcb':function(_0x13dda3,_0x375a46){return _0x13dda3(_0x375a46);}},_0x30e5b3=await _0x1ff145[_0x3b8d4d(-0x189,-_0x41fc50._0x1fd812,-0x18c,-0x1b8)](loadConfig);function _0x2dd898(_0x15e7f5,_0x7c9f6d,_0x5b6f39,_0x128c07){return _0x512b1c(_0x128c07- -0x776,_0x15e7f5,_0x5b6f39-0x139,_0x128c07-_0x19e06c._0x437dc9);}_0x1ff145[_0x3b8d4d(-0x164,-0x17a,-_0x41fc50._0x4964c7,-0x165)](_0x58bfdd,null)?delete _0x30e5b3[_0x3b8d4d(-0x1a9,-_0x41fc50._0x18a5b3,-0x185,-_0x41fc50._0x4e915c)+'th']:_0x30e5b3[_0x3b8d4d(-0x19a,-0x166,-0x185,-0x164)+'th']=_0x58bfdd,await _0x1ff145[_0x2dd898(-0x234,-0x246,-0x22d,-0x25b)](saveConfig,_0x30e5b3);}export async function getSslCaPath(){const _0x115578={_0x384171:0x1d4,_0x214fbb:0x1f7,_0x4db86b:0x216,_0x38d629:0x1f0,_0x39358a:0x1b2,_0x3222a:0x1cb,_0x4ebcec:0x1b9},_0x23d099={_0x24ce68:0xd0},_0x9b0df2={_0x5d3ca6:0x510};function _0x328dc2(_0x734b1c,_0x934c3,_0x2fceb5,_0x2b64a8){return _0x186322(_0x934c3- -_0x9b0df2._0x5d3ca6,_0x934c3-0xaf,_0x2fceb5-0x20,_0x734b1c);}const _0x18aae5={'dxqgQ':function(_0x474a0c){return _0x474a0c();}};function _0xb370c9(_0x250023,_0xfa151e,_0x39deab,_0x41cb03){return _0x512b1c(_0x39deab- -0x313,_0x250023,_0x39deab-0xb9,_0x41cb03-_0x23d099._0x24ce68);}const _0x3634af=await _0x18aae5[_0x328dc2(-_0x115578._0x384171,-_0x115578._0x214fbb,-0x20a,-_0x115578._0x4db86b)](loadConfig);if(_0x3634af[_0xb370c9(_0x115578._0x38d629,_0x115578._0x39358a,_0x115578._0x3222a,0x1b4)+'h'])return _0x3634af['ssl_ca_pat'+'h'];return process['env'][_0xb370c9(0x1b8,_0x115578._0x4ebcec,0x1e3,0x1b8)+'H']||null;}export async function saveSslCaPath(_0x432aa7){const _0x52279b={_0x39f21b:0x15f,_0x398bfe:0x133,_0x525a35:0x11d,_0x58bc81:0x150,_0x37709d:0x11c,_0x4f3dc2:0xb0,_0x4fc127:0x97,_0x40b6ac:0xc0,_0x17c83f:0x83},_0x107383={_0x5f011a:0x3e2,_0x1ab77b:0x3},_0x55f742={_0x45557b:0x2e},_0x310b1c={'uwgMe':function(_0x47c28f){return _0x47c28f();},'wQZRe':function(_0x2bbf85,_0x1d12fa){return _0x2bbf85===_0x1d12fa;},'HPHLY':'wbKvl','SWYGv':'DpRxL'};function _0x5544d8(_0x14ecc0,_0x1db2a5,_0x4049cd,_0x57ac30){return _0x186322(_0x57ac30- -0x25e,_0x1db2a5-_0x55f742._0x45557b,_0x4049cd-0xa8,_0x4049cd);}const _0x4929e2=await _0x310b1c[_0xf73e2d(0x15f,0x127,_0x52279b._0x39f21b,_0x52279b._0x398bfe)](loadConfig);if(_0x310b1c[_0xf73e2d(_0x52279b._0x525a35,0x12f,_0x52279b._0x58bc81,0x135)](_0x432aa7,null)){if(_0x310b1c[_0x5544d8(0xe4,_0x52279b._0x37709d,0xea,0xf1)]===_0x310b1c[_0x5544d8(_0x52279b._0x4f3dc2,0x91,0xc6,_0x52279b._0x4fc127)])return _0x5d3b21;else delete _0x4929e2['ssl_ca_pat'+'h'];}else _0x4929e2[_0x5544d8(_0x52279b._0x40b6ac,_0x52279b._0x17c83f,0x9d,0x9b)+'h']=_0x432aa7;function _0xf73e2d(_0x3428c1,_0x1e7ce1,_0x1daaef,_0x2a70fe){return _0x512b1c(_0x2a70fe- -_0x107383._0x5f011a,_0x1e7ce1,_0x1daaef-0x7b,_0x2a70fe-_0x107383._0x1ab77b);}await saveConfig(_0x4929e2);}export async function getTrustProxy(){const _0x4b903e={_0x3dfaeb:0x3b1,_0x11177a:0x3d6,_0x4dc7f4:0xb1,_0x55ec2a:0x79,_0xb7c90d:0x97,_0x40d96f:0x396,_0x381908:0x3af,_0x1532a3:0x9c,_0x804696:0x85,_0x5bddf6:0xb3,_0x27db3b:0x383,_0x21e6fb:0x3a4,_0x24aef0:0x3e2},_0x5da964={_0x5b5ef:0x82,_0xabc562:0x18,_0x2d2cb1:0x5f},_0x3e48a4={_0x2bc939:0x59f,_0x495f2b:0x3a,_0x1f887b:0x2b};function _0x3418cb(_0x29458d,_0x6523e6,_0x539867,_0x5eb4df){return _0x512b1c(_0x29458d- -_0x3e48a4._0x2bc939,_0x5eb4df,_0x539867-_0x3e48a4._0x495f2b,_0x5eb4df-_0x3e48a4._0x1f887b);}const _0x557a43={'UcYbF':function(_0x8854ce){return _0x8854ce();},'lXhJv':function(_0x5eef26,_0x279ebd){return _0x5eef26!==_0x279ebd;},'iSKpe':function(_0x1e1732,_0x1a7f5e){return _0x1e1732!==_0x1a7f5e;},'VxmJT':'WbehP'},_0x39c66c=await _0x557a43[_0x2459d6(_0x4b903e._0x3dfaeb,_0x4b903e._0x11177a,0x3d6,0x3a7)](loadConfig);function _0x2459d6(_0x53501b,_0x884a20,_0x587d3c,_0x4cd37f){return _0x186322(_0x4cd37f-_0x5da964._0x5b5ef,_0x884a20-_0x5da964._0xabc562,_0x587d3c-_0x5da964._0x2d2cb1,_0x53501b);}if(_0x557a43[_0x3418cb(-0x9f,-0xc4,-_0x4b903e._0x4dc7f4,-0x78)](_0x39c66c['trust_prox'+'y'],undefined)){if(_0x557a43['iSKpe'](_0x557a43[_0x3418cb(-_0x4b903e._0x55ec2a,-0x51,-_0x4b903e._0xb7c90d,-0x57)],_0x557a43['VxmJT']))throw new _0xa0e096('Cannot\x20acc'+_0x2459d6(_0x4b903e._0x40d96f,0x3b2,0x3a3,_0x4b903e._0x381908)+_0x2c32ea+_0x3418cb(-_0x4b903e._0x1532a3,-_0x4b903e._0x804696,-0x78,-_0x4b903e._0x5bddf6)+_0x4c4875+'\x20('+_0x42726f[_0x2459d6(0x376,_0x4b903e._0x27db3b,_0x4b903e._0x21e6fb,0x37f)]+')');else return _0x39c66c['trust_prox'+'y'];}return process[_0x2459d6(_0x4b903e._0x3dfaeb,_0x4b903e._0x24aef0,0x39d,0x3bd)]['TRUST_PROX'+'Y']||null;}function _0x4d81(_0x3e0f72,_0x1df59f){_0x3e0f72=_0x3e0f72-(0x1fd+0x2*-0x117e+-0x3*-0xb57);const _0x176769=_0x9960();let _0x33e7dc=_0x176769[_0x3e0f72];if(_0x4d81['BhBYIh']===undefined){var _0x1707ff=function(_0x2f43e8){const _0x227d23='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x556a6f='',_0x93b2fc='';for(let _0x5a9315=0x151b+0x1979+0x43c*-0xb,_0x3f7df3,_0x22d78b,_0x38b7c9=-0x1607*0x1+0x1*0x154f+0x4*0x2e;_0x22d78b=_0x2f43e8['charAt'](_0x38b7c9++);~_0x22d78b&&(_0x3f7df3=_0x5a9315%(0x3c5+0x32*-0x4f+0xbad)?_0x3f7df3*(0x2550+0x3*-0x34d+-0x1b29)+_0x22d78b:_0x22d78b,_0x5a9315++%(0x12e2*0x1+0x2*-0xf2b+0x2*0x5bc))?_0x556a6f+=String['fromCharCode'](-0x16be+0x1f5a*0x1+0x1*-0x79d&_0x3f7df3>>(-(-0x23c+0x25ce+-0x2390)*_0x5a9315&0x20d6*0x1+0x1a5c+-0x3b2c)):0xb80+0x1*0x24b+-0xdcb){_0x22d78b=_0x227d23['indexOf'](_0x22d78b);}for(let _0x31748f=0x74e+0xb*-0x123+0x533,_0x13c1fa=_0x556a6f['length'];_0x31748f<_0x13c1fa;_0x31748f++){_0x93b2fc+='%'+('00'+_0x556a6f['charCodeAt'](_0x31748f)['toString'](0x1b25*-0x1+0x407*-0x7+0x3766))['slice'](-(-0x3e6*-0x6+-0x5a9+-0x11b9));}return decodeURIComponent(_0x93b2fc);};_0x4d81['FpEoIf']=_0x1707ff,_0x4d81['KrxFHC']={},_0x4d81['BhBYIh']=!![];}const _0x298dc5=_0x176769[-0xd*-0x21a+-0x3e*-0x26+-0x2486],_0x58db26=_0x3e0f72+_0x298dc5,_0x2cb7bc=_0x4d81['KrxFHC'][_0x58db26];return!_0x2cb7bc?(_0x33e7dc=_0x4d81['FpEoIf'](_0x33e7dc),_0x4d81['KrxFHC'][_0x58db26]=_0x33e7dc):_0x33e7dc=_0x2cb7bc,_0x33e7dc;}function _0x9960(){const _0x1547ef=['ktOG','q2fUBM90igfJyW','tg5dyw8','sfbitfK','u2XUuuS','uL9psW','v0v6rLG','u1Dzr3y','zsaOCgvYBwLZCW','sMfdDum','mte3mde3mxvIyw1kBW','C3nSx2nHx3bHDa','vhPsvfm','vhHZCw8','ofLXD05oyW','BwvZC2fNzq','vwzqAhu','rMX4A04','uwfdy0W','y29Kzq','u3jsBLq','D3jPDgvgAwXL','sfLlyKy','ru5pru5u','mtC2mtuWq1Pnt0jX','BevHyxO','u1nmx0nfuLrFua','mJmZnZm2m1ncvwHJCq','Cf9WyxrO','AM9PBG','thH6CM4','wxDeq2G','C3nSx2TLEv9Wyq','q09ervjFu0vuvq','ntjoy2Lwrfi','u1nmx0nbx1bbva','DxrMltG','z09kyLm','zvHYDgK','CMvJDxjZAxzL','nJu1ote0uMjNwuvO','whrut3G','lMnVzgvY','zhHXz1e','B1ndDeK','BfHOsNy','sxnjENC','quDSshm','igzPBgu6ia','CMTHvxu','uwzkCwu','yxrO','Aw9UigrLBMLLza','zM91BMq6ia','thL2sKK','vwnzyKy','t3jzzMS','Dhj1C3rFChjVEa','igzPBguGBM90ia','B0XAvfe','mJm1mZu3Eg1ZrKXe','u0f3Bui','Ag9TzwrPCG','zxnZia','rLnLyuK','CMvHzezPBgu','DxDNtwu','Bw5otMC','D1fAuMu','zgLYBMfTzq','C3rYAw5NAwz5','otiWotC1D1P4qwvS','s0vey2i','nty0nZHov2flu1q','igzPBguGAxmGBG','y29UzMLNlMPZBW','rxDNweG','zw52','r01mBum','C0v4yxO','B29zBu4','AuL1BuW','uf9qqvri','vNHTsLq','y29KzxjFC2v0Dq','C3nSx2nLCNrFCa','C2vYDMvYx3bVCG','rufdq0vt','ue9sva','u1nmx0Tfwv9qqq','BwTKAxi','DeLyA3m','BNDeB1C','zhnuEwe'];_0x9960=function(){return _0x1547ef;};return _0x9960();}export async function saveTrustProxy(_0x479006){const _0x52215d={_0x40619a:0x7,_0x5caf37:0x248},_0x57a79f={_0x1cf880:0x565},_0x194b3f={_0x2d9fff:0x4f4,_0x5117b8:0x124};function _0xa83ab7(_0x570c0e,_0x29d7fd,_0x50baf0,_0x266b51){return _0x512b1c(_0x266b51- -_0x194b3f._0x2d9fff,_0x29d7fd,_0x50baf0-0x114,_0x266b51-_0x194b3f._0x5117b8);}const _0xaf24fa={'Lxzrn':function(_0x3297f2){return _0x3297f2();}},_0x1acd39=await _0xaf24fa[_0xa83ab7(-_0x52215d._0x40619a,-0x2c,-0x30,-0x3)](loadConfig);function _0x49dbf7(_0x3a6ccd,_0x32ddde,_0x2cdfb0,_0x1ff2b6){return _0x186322(_0x1ff2b6- -_0x57a79f._0x1cf880,_0x32ddde-0x1db,_0x2cdfb0-0x125,_0x32ddde);}_0x479006===null?delete _0x1acd39['trust_prox'+'y']:_0x1acd39[_0x49dbf7(-_0x52215d._0x5caf37,-0x268,-0x218,-0x23e)+'y']=_0x479006,await saveConfig(_0x1acd39);}export async function validateSslFile(_0x375acc,_0x254439){const _0x5ef3a5={_0x4169a9:0x4ad,_0x2f7e8e:0x4b7,_0x20fa52:0x459,_0x1f9d48:0x43c,_0xa70cfb:0x42d,_0x350968:0x4bd,_0x11369c:0x4f0,_0x15978a:0x511,_0x1dca46:0x50f,_0x9305ec:0x4bd,_0x5339f:0x4ab,_0x398619:0x4b7,_0x1f1627:0x490,_0x159b39:0x4da,_0x41c77c:0x493,_0x19d0cd:0x479,_0x428c5d:0x450,_0x52abc9:0x456,_0x4d5cfc:0x4c7,_0x315ec0:0x4cf,_0xc5a9f7:0x4b2,_0x5a7b7f:0x4b2,_0x3d9d4a:0x463,_0x228417:0x443,_0x90d69b:0x4e3,_0x2bb1a2:0x4bc,_0x6c5d53:0x4b7,_0x412c60:0x47a,_0x4cc6d6:0x4e4,_0xa1d79d:0x4ba,_0x3060ea:0x4d2,_0x3a5734:0x501,_0x2876d2:0x4ec,_0x4b3ccc:0x46c,_0x156fb5:0x473,_0x5e461f:0x49d,_0x4a4bf0:0x4bf},_0x2b9dbc={_0x616b78:0xca,_0x29e806:0x145},_0x507dea={};_0x507dea[_0x2b62f2(0x496,0x4a5,_0x5ef3a5._0x4169a9,_0x5ef3a5._0x2f7e8e)]=function(_0x21e5f6,_0x327a47){return _0x21e5f6===_0x327a47;},_0x507dea['kgKKo']=_0x5ea022(_0x5ef3a5._0x20fa52,_0x5ef3a5._0x1f9d48,0x431,_0x5ef3a5._0xa70cfb),_0x507dea[_0x2b62f2(_0x5ef3a5._0x2f7e8e,0x4b1,_0x5ef3a5._0x350968,0x4e1)]=function(_0x4dd28d,_0x3614fe){return _0x4dd28d===_0x3614fe;},_0x507dea['nwDoW']=_0x5ea022(0x41e,0x42d,0x432,0x40b);function _0x5ea022(_0x335530,_0x32a592,_0x14ab2a,_0x5f26f5){return _0x512b1c(_0x14ab2a- -0xb8,_0x32a592,_0x14ab2a-0x127,_0x5f26f5-0xad);}_0x507dea['wiZJQ']=function(_0x14fa19,_0x1dbafa){return _0x14fa19===_0x1dbafa;};function _0x2b62f2(_0x3e1fc6,_0x59349a,_0x4362fb,_0x361598){return _0x186322(_0x3e1fc6-0x197,_0x59349a-_0x2b9dbc._0x616b78,_0x4362fb-_0x2b9dbc._0x29e806,_0x59349a);}const _0x5d9d3a=_0x507dea;try{await _0x3e605f['access'](_0x375acc,_0x4fca0d[_0x2b62f2(0x4e8,_0x5ef3a5._0x11369c,_0x5ef3a5._0x15978a,_0x5ef3a5._0x1dca46)]);}catch(_0xf1c8c6){if(_0x5d9d3a[_0x2b62f2(0x496,_0x5ef3a5._0x9305ec,0x46e,_0x5ef3a5._0x5339f)](_0x5d9d3a['kgKKo'],_0x2b62f2(0x49b,0x477,0x4b3,0x491))){if(_0x5d9d3a[_0x2b62f2(_0x5ef3a5._0x398619,_0x5ef3a5._0x1f1627,_0x5ef3a5._0x159b39,0x4e0)](_0xf1c8c6['code'],_0x5d9d3a[_0x5ea022(0x454,_0x5ef3a5._0x41c77c,0x477,_0x5ef3a5._0x19d0cd)]))throw new Error(_0x254439+('\x20file\x20not\x20'+_0x5ea022(0x42e,0x47c,_0x5ef3a5._0x428c5d,_0x5ef3a5._0x52abc9))+_0x375acc);else{if(_0x5d9d3a['FlxkN'](_0xf1c8c6['code'],_0x2b62f2(0x4dc,0x501,0x4fe,_0x5ef3a5._0x4d5cfc)))throw new Error(_0x254439+(_0x2b62f2(_0x5ef3a5._0x315ec0,0x4fb,_0x5ef3a5._0xc5a9f7,_0x5ef3a5._0x5a7b7f)+'ot\x20readabl'+_0x2b62f2(0x48d,0x4b7,_0x5ef3a5._0x3d9d4a,0x4a1)+_0x5ea022(0x430,0x47b,0x44f,_0x5ef3a5._0x228417)+_0x2b62f2(_0x5ef3a5._0x90d69b,_0x5ef3a5._0x2bb1a2,0x504,_0x5ef3a5._0x6c5d53))+_0x375acc);else{if(_0x5d9d3a['wiZJQ'](_0x2b62f2(0x48e,0x4a8,0x4b6,_0x5ef3a5._0x412c60),'JaCuC'))throw new Error(_0x2b62f2(_0x5ef3a5._0x4cc6d6,_0x5ef3a5._0xa1d79d,0x4b8,0x511)+'ess\x20'+_0x254439+'\x20file:\x20'+_0x375acc+'\x20('+_0xf1c8c6[_0x2b62f2(0x494,0x4c0,0x4ac,0x490)]+')');else return _0x33bfa2(_0x46c275[_0x2b62f2(_0x5ef3a5._0x3060ea,_0x5ef3a5._0x3a5734,_0x5ef3a5._0x2876d2,0x4c3)][_0x5ea022(_0x5ef3a5._0x4b3ccc,0x485,_0x5ef3a5._0x156fb5,_0x5ef3a5._0x5e461f)],-0x1d25+0x412*0x3+0x4f*0x37);}}}else return _0x54feff[_0x2b62f2(0x490,_0x5ef3a5._0x4a4bf0,0x463,0x4a5)+'h'];}}
@@ -1 +1 @@
1
- (function(_0x29c3ac,_0x4324f9){const _0x509d39={_0x5b7717:0x3de,_0x55e270:0x3f8,_0x56303a:0x413,_0x1757fa:0x407,_0x5c74a4:0x3c4,_0x294983:0xa8,_0x1ee970:0x6e,_0x5ce761:0xe0,_0x3e958e:0x3f0,_0x3ef944:0x3e1,_0x410abc:0x416,_0x10a895:0x442,_0x57d009:0x437,_0x1cbe26:0x47a,_0x51dcf0:0xc1,_0x4d2040:0x76,_0x1dd65f:0x43,_0x2d503d:0x50,_0x454730:0xd};function _0x2bdb40(_0xc0922f,_0x3cc99b,_0x3d68e6,_0x868e85){return _0x1b10(_0xc0922f- -0x35,_0x3d68e6);}function _0x22d780(_0x4fd2fa,_0x1772ff,_0x19c6ff,_0x21550f){return _0x1b10(_0x1772ff-0x334,_0x21550f);}const _0x52d0e8=_0x29c3ac();while(!![]){try{const _0x3c08ef=-parseInt(_0x22d780(0x3a4,_0x509d39._0x5b7717,_0x509d39._0x55e270,_0x509d39._0x56303a))/(0x1586+0xa85*-0x1+-0x580*0x2)*(-parseInt(_0x22d780(_0x509d39._0x1757fa,_0x509d39._0x5c74a4,0x3c4,0x3d4))/(-0xf0d*0x1+-0x8d6*-0x1+0x1b*0x3b))+parseInt(_0x2bdb40(_0x509d39._0x294983,_0x509d39._0x1ee970,0xde,_0x509d39._0x5ce761))/(0x97d*0x1+0x1be9+-0x233*0x11)+parseInt(_0x22d780(_0x509d39._0x3e958e,_0x509d39._0x3ef944,_0x509d39._0x410abc,0x3ca))/(0x113c+-0x23f8*-0x1+-0x3530)+-parseInt(_0x22d780(_0x509d39._0x10a895,_0x509d39._0x57d009,_0x509d39._0x1cbe26,0x433))/(-0x8eb+0x1ee1+0x15f1*-0x1)+parseInt(_0x2bdb40(0xbc,0xa2,_0x509d39._0x51dcf0,0xfb))/(-0x2477*0x1+-0xa6*0x22+0x1b*0x22b)+-parseInt(_0x2bdb40(0x61,_0x509d39._0x4d2040,0xa2,_0x509d39._0x1dd65f))/(-0x13b6+0x10c2+0x2fb)+parseInt(_0x2bdb40(_0x509d39._0x2d503d,0x1c,0x87,_0x509d39._0x454730))/(0x7ae*-0x3+-0x1422+-0x316*-0xe);if(_0x3c08ef===_0x4324f9)break;else _0x52d0e8['push'](_0x52d0e8['shift']());}catch(_0x3db4ee){_0x52d0e8['push'](_0x52d0e8['shift']());}}}(_0x3d7b,-0x1*0x2e73f+-0x16f53+0x6f891));function _0x1b10(_0x50c35c,_0x26112b){_0x50c35c=_0x50c35c-(-0x21*0x6b+0x1*0x363+0xadc);const _0x3934b4=_0x3d7b();let _0x584692=_0x3934b4[_0x50c35c];if(_0x1b10['ybvpUH']===undefined){var _0x41a28e=function(_0xf19700){const _0x3cebcf='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x854e5e='',_0xdc4f='';for(let _0x11ffbc=0xed6+0x15e9*0x1+-0x24bf,_0x2df332,_0x8604c3,_0x4d49db=-0x10e7*0x2+0x3c*0x49+-0x1*-0x10b2;_0x8604c3=_0xf19700['charAt'](_0x4d49db++);~_0x8604c3&&(_0x2df332=_0x11ffbc%(-0x131d+-0x16f2+-0x2a13*-0x1)?_0x2df332*(-0x1*0x755+0x98*-0x13+0x12dd)+_0x8604c3:_0x8604c3,_0x11ffbc++%(-0x24f*-0x1+0x101*-0x1b+-0x2*-0xc68))?_0x854e5e+=String['fromCharCode'](-0x1325+-0x16*0x1b+0xa*0x23f&_0x2df332>>(-(-0x5b2+-0x162b+0x593*0x5)*_0x11ffbc&0x263*-0x8+-0x182b*0x1+-0x2b49*-0x1)):0xa*-0x15a+0x1233*-0x1+0x1fb7){_0x8604c3=_0x3cebcf['indexOf'](_0x8604c3);}for(let _0x36cc3c=0x20b+0xa*0x1a0+-0x124b,_0x363021=_0x854e5e['length'];_0x36cc3c<_0x363021;_0x36cc3c++){_0xdc4f+='%'+('00'+_0x854e5e['charCodeAt'](_0x36cc3c)['toString'](-0x411*0x1+0x11*0x139+0x1*-0x10a8))['slice'](-(-0x1575+0x8*-0x6e+0x18e7));}return decodeURIComponent(_0xdc4f);};_0x1b10['KlWitM']=_0x41a28e,_0x1b10['ZAAZLD']={},_0x1b10['ybvpUH']=!![];}const _0x30b4f6=_0x3934b4[0x9f1+0x1411+0x1*-0x1e02],_0x56ea50=_0x50c35c+_0x30b4f6,_0x2d8a37=_0x1b10['ZAAZLD'][_0x56ea50];return!_0x2d8a37?(_0x584692=_0x1b10['KlWitM'](_0x584692),_0x1b10['ZAAZLD'][_0x56ea50]=_0x584692):_0x584692=_0x2d8a37,_0x584692;}import _0x3e5df2 from'readline';import{Writable}from'stream';import{createUser,findUserByUsername}from'../users.js';import{logger}from'../logger.js';function _0x3d7b(){const _0x18bc60=['v1bzChy','BgvKihrVignYzq','zKjgCw0','mtLpqKrNv2m','CYWGyw5KigH5Ca','vwTirgm','nduXntjxBvH0CgW','BwvZC2fNzq','zNL2wvq','rw1HAwW6ia','Aejev1y','sLPrthi','C3rHCNrZv2L0Aa','y3jLyxrLsw50zq','Cgj0v2i','Bhm6','AwvOtvO','ug9tt0G','zsbPCYbYzxf1Aq','rxjYB3i6ifvZzq','zxHPC3rZlG','DgvYBwLUywW','CMvK','B3v0Chv0','rMfPBgvKihrVia','zxjYB3i','CM5HBwuGAxmGCG','EsbSzxr0zxjZla','rvfsqLm','zxPzwuS','AwzHwLa','AgvUCY4','AvnKzKK','C3qGocbJAgfYyq','igLUihDPDgGGDa','ELjov2W','yw4GBM93igXVzW','ENvhs08','iI4UlG','EKnIu2S','iI4GvxnLig9UBa','C3bSAxq','ig51BwjLCNmSia','sMvVAuW','vxnLCM5HBwu6ia','ls1LBwfPBd0','icbjrdOGicaGia','CIaI','CxvLC3rPB24','DxnLCG','icbfBwfPBdOGia','y3rLCNm','rxjYB3i6ievTyq','zLjVuuG','odm2mZuYD0HOCunR','zLnJz1K','C3DVCMrZigrVia','wxPxr2y','icbvC2vYBMfTzq','EwnkD3e','Dw5KzxjZy29Yzq','C2vYici','q0vizfi','tNrXvLG','uenHCuC','ls1Uyw1Lpq','rMDxuMq','t2rjt3K','rxjYB3i6iezHAq','DgvZDa','icjHzg1PBIiGBW','ugfZC3DVCMq6ia','AeTKwM8','igjLigf0igXLyq','mty2oty4nNzXC3Hdwa','zw1HAwW','CwDrALm','iIbHBhjLywr5ia','tvLXtvK','q014vLy','C3rKB3v0','Dfbfs3K','Bg9N','A25js24','vxnLCIbezxrHAq','zxLfsxO','u3fAs0m','Dw5tC1G','y3jLyxrLihvZzq','y2XVC2u','CMLnBhe','igzVCM1HDcaI','mtuXmtuZmhD1Cwz5CW','BMfTzq','ls1WyxnZD29Yza','C252vuO','AxjLza','CLf1Deu','rNvSBcboyw1LoG','t1zvsMC','ls1YB2XLpq','CMzHy2u','tunLr0i','ywXPzcbLBwfPBa','vKXmBMS','rg9nAeu','BvLdAMm','CM9Szq','DhjPBq','icbsB2XLoIaGia','v0PQCum','D3jPDgu','EgnSALq','D29JD0G','mZC3nZC2vK1lu1zr','Bu9isNG','vgHLihvZzxiGyW','CgfZC3DVCMq','ywXPzcb1C2vYBG','rK9Ur1q','C3rKAw4','BNv0EM0','thH3sNC','AgvPCIb1C2vYBG','s2HZyMm','mtq1mdjnufnLq1K','zMnRA08','C3n3B3jKlG','quHnBKy','BM90ig1HDgnO','Aw5WDxq','mtK0otq2nwHfEhbNqq','rxjYB3i6ifbHCW','yw1Lici','rxjYB3i6ieLUDG','y1nIAMi','vvDNEvO','wgv1yva','AwWGAxmGCMvXDq','iI4GtxvZDcbIzq','s1v3A2q','zxHPDa','q3jLyxrPBMCGDq','wgniru4','DxnLCM5HBwu','CIaIDxnLCIiU','wvbhDwi','ywXPzcbYB2XLia'];_0x3d7b=function(){return _0x18bc60;};return _0x3d7b();}function prompt(_0x48f08f,_0x559628=![]){const _0x5076e9={_0x3e5973:0x8f,_0x5d649d:0xb5,_0x13a41f:0x56,_0x568613:0x5a,_0x30e85e:0x91,_0x24532f:0x37e,_0x5be4e1:0x353,_0x28d968:0x3b7,_0x179ff9:0x369,_0xe888b0:0x35e,_0x5e5f43:0x341,_0x309787:0x37c},_0x26f68a={_0x70fed7:0x141,_0x4ea2ac:0x122,_0x9218f3:0x14f,_0x374ff3:0x15a,_0x44b891:0x119,_0x6d5e0e:0x16b,_0x1567a5:0x14d,_0x3f8e88:0x14d,_0x1f7224:0x15e,_0x2a1e47:0x11c,_0x2e86fc:0x197,_0x2a12ee:0x187,_0x486f9e:0xfb,_0x4eb0ad:0x132,_0x5e247f:0x13c,_0x3afd24:0x156,_0x521b53:0x164,_0x2a36f1:0x120,_0x5b5a87:0x106,_0x4e4c03:0xdd,_0x1fb2c5:0x171,_0x18f99a:0x159,_0xb62b0b:0xed,_0x5f028c:0x155,_0x45bcf6:0x142,_0x3b6cf4:0x113,_0x49fc76:0x128,_0x12cf1a:0xd7,_0x56b791:0xff,_0x3cf102:0x109,_0x11ad23:0x14a,_0x5151ea:0x12d,_0x1920f0:0x15b,_0x3c1724:0x132,_0x2e1e7c:0xf6,_0x171ee0:0xde,_0x304fb4:0xc5},_0x2f90f7={_0x2e3a14:0x23e,_0x4f6cf8:0x277,_0xc3eb9b:0x238,_0x5d36ee:0x1d2,_0x2d28f1:0x21d,_0xbd3abc:0x218,_0x51b7b1:0x258,_0x5c4012:0x220,_0x57d7be:0x222,_0x272ec4:0x27a,_0x50bb05:0x2b2,_0x2e02da:0x2c9,_0x292137:0x2c8,_0x467b32:0x294,_0x329c36:0x263,_0x3e7288:0x298},_0xabb61f={_0x304678:0x2d4,_0x2f5448:0x2a4,_0x1ba0fe:0x2f9,_0x72efd6:0x2e0},_0x5e0d27={_0x36b34c:0x221,_0x2a577e:0xca},_0x5d4313={_0x275305:0xc3,_0x373b11:0x105,_0xd996c8:0xa0,_0xd600ee:0x9f},_0x4cb065={_0x2d4c13:0x138};function _0x5d02d2(_0x59c345,_0x4a131f,_0x2b10f8,_0x56be81){return _0x1b10(_0x4a131f-0x29f,_0x59c345);}function _0x9c4e54(_0x3bdf56,_0x23082a,_0x5051cf,_0x5aa0b6){return _0x1b10(_0x3bdf56- -_0x4cb065._0x2d4c13,_0x5051cf);}const _0x23c994={'MCeGB':_0x9c4e54(-_0x5076e9._0x3e5973,-_0x5076e9._0x5d649d,-_0x5076e9._0x13a41f,-_0x5076e9._0x568613),'NtqVX':_0x9c4e54(-_0x5076e9._0x30e85e,-0x67,-0x5e,-0x9e),'Khsbc':function(_0xc39995){return _0xc39995();},'OdIOy':function(_0x215ded){return _0x215ded();},'XeuaP':function(_0x26bca4,_0x4b737c){return _0x26bca4(_0x4b737c);},'EQRBS':'Error:\x20Pas'+_0x5d02d2(0x3c1,_0x5076e9._0x24532f,_0x5076e9._0x5be4e1,_0x5076e9._0x28d968)+'not\x20match','fyvYT':_0x5d02d2(0x343,_0x5076e9._0x179ff9,_0x5076e9._0xe888b0,_0x5076e9._0x5e5f43),'zuGKO':function(_0xdcb8ba,_0x19e709){return _0xdcb8ba===_0x19e709;},'YzWGf':_0x5d02d2(0x359,0x34b,0x34a,_0x5076e9._0x309787)};return new Promise(_0x45d8af=>{const _0x474703={_0x13a847:0xed},_0x15159a={_0x6ed622:0x3b6,_0xccc8a6:0x126},_0x2f0d50={_0x29428c:0x45f},_0x38696d={_0xa566e7:0x6f,_0xcc71dd:0xb7,_0x10687e:0x72,_0x30db9f:0x9d,_0xc0618a:0x30,_0x5cf758:0x84,_0x9037c9:0x77,_0xe3f97d:0x51},_0x5e52bc={_0x5c4881:0xbc,_0x5fb8ce:0x16},_0x37b711={_0x530d90:0x1c6},_0x40dec8={_0x44ac57:0x27},_0x2b24bd={'KUwkd':function(_0x37e431){function _0x510d9f(_0xa2af24,_0xfe434c,_0x111091,_0x1504eb){return _0x1b10(_0xa2af24- -_0x40dec8._0x44ac57,_0xfe434c);}return _0x23c994[_0x510d9f(_0x5d4313._0x275305,_0x5d4313._0x373b11,_0x5d4313._0xd996c8,_0x5d4313._0xd600ee)](_0x37e431);},'riMlq':function(_0x1de386,_0x3720c1){function _0x530347(_0x2d9afb,_0x2b3093,_0x5f56d2,_0x4ee378){return _0x1b10(_0x2d9afb-0x394,_0x4ee378);}return _0x23c994[_0x530347(0x430,0x40b,0x407,0x446)](_0x1de386,_0x3720c1);},'mOHJx':_0x23c994[_0x384c53(_0x26f68a._0x70fed7,0x178,_0x26f68a._0x4ea2ac,_0x26f68a._0x9218f3)],'iSdfI':function(_0x5001dd,_0x2f811e){return _0x5001dd!==_0x2f811e;},'cTEdx':_0x23c994[_0x384c53(0x12d,0x157,0x143,0x10d)]};function _0x5c40e4(_0x13489e,_0x1552e1,_0xe8bc8a,_0x803cab){return _0x9c4e54(_0x1552e1-_0x37b711._0x530d90,_0x1552e1-0x1d1,_0x13489e,_0x803cab-0x1ac);}function _0x384c53(_0x5e7ef8,_0x13dc53,_0x455b5d,_0x45f690){return _0x5d02d2(_0x455b5d,_0x5e7ef8- -_0x5e0d27._0x36b34c,_0x455b5d-_0x5e0d27._0x2a577e,_0x45f690-0x1f0);}if(_0x559628){if(_0x23c994[_0x5c40e4(0x19d,_0x26f68a._0x374ff3,_0x26f68a._0x44b891,_0x26f68a._0x6d5e0e)](_0x23c994[_0x5c40e4(_0x26f68a._0x1567a5,0x16e,0x192,_0x26f68a._0x3f8e88)],_0x23c994[_0x384c53(_0x26f68a._0x1f7224,_0x26f68a._0x2a1e47,_0x26f68a._0x2e86fc,_0x26f68a._0x2a12ee)])){const _0xa4baac=new Writable({'write':(_0x155a69,_0x392510,_0x242ed1)=>{const _0x13346f={_0x2e6f89:0x130,_0x436cfe:0x186};function _0x587194(_0x8c5e2d,_0xad5693,_0x1c5449,_0x276ccc){return _0x5c40e4(_0x276ccc,_0x8c5e2d- -0x176,_0x1c5449-_0x13346f._0x2e6f89,_0x276ccc-_0x13346f._0x436cfe);}function _0x103ab6(_0x44714f,_0x235813,_0x590a50,_0x9de1f){return _0x384c53(_0x9de1f- -_0x5e52bc._0x5c4881,_0x235813-_0x5e52bc._0x5fb8ce,_0x44714f,_0x9de1f-0x141);}_0x23c994[_0x587194(-_0x38696d._0xa566e7,-0x56,-_0x38696d._0xcc71dd,-_0x38696d._0x10687e)]===_0x23c994[_0x587194(-0x2,-0x13,-0x2,0x38)]?_0x2b24bd[_0x103ab6(_0x38696d._0x30db9f,_0x38696d._0xc0618a,_0x38696d._0x5cf758,0x61)](_0x516f86):_0x23c994[_0x103ab6(_0x38696d._0x9037c9,0x4d,0x69,_0x38696d._0xe3f97d)](_0x242ed1);}}),_0x1ae572={};_0x1ae572[_0x5c40e4(0x118,0x123,_0x26f68a._0x486f9e,_0x26f68a._0x4eb0ad)]=process[_0x5c40e4(0xd9,_0x26f68a._0x44b891,0x131,0xeb)],_0x1ae572[_0x384c53(_0x26f68a._0x5e247f,0x111,0x129,0x110)]=_0xa4baac,_0x1ae572[_0x384c53(0x13a,0x159,_0x26f68a._0x3afd24,0x177)]=!![];const _0x553a4b=_0x3e5df2[_0x384c53(_0x26f68a._0x4eb0ad,_0x26f68a._0x521b53,_0x26f68a._0x2a36f1,0x107)+_0x5c40e4(0x131,_0x26f68a._0x5b5a87,0xf6,_0x26f68a._0x4e4c03)](_0x1ae572);process[_0x384c53(0x175,_0x26f68a._0x1fb2c5,_0x26f68a._0x1567a5,0x12e)][_0x5c40e4(_0x26f68a._0x18f99a,0x110,_0x26f68a._0xb62b0b,0x131)](_0x48f08f),_0x553a4b[_0x384c53(_0x26f68a._0x5f028c,_0x26f68a._0x45bcf6,0x146,0x19f)]('',_0x2c7e84=>{const _0x4c009f={_0x5e467b:0x189,_0x3ad051:0x98};_0x553a4b[_0x4179d0(-0x2f9,-_0xabb61f._0x304678,-0x314,-0x2e1)]();function _0x4179d0(_0x1fea51,_0xb12407,_0x5952af,_0x8b6187){return _0x384c53(_0x8b6187- -_0x2f0d50._0x29428c,_0xb12407-0x1a5,_0x1fea51,_0x8b6187-0xd9);}function _0x4abf05(_0x20c436,_0x1bed1e,_0x1d894b,_0x231f4a){return _0x384c53(_0x1bed1e-_0x4c009f._0x5e467b,_0x1bed1e-0x146,_0x231f4a,_0x231f4a-_0x4c009f._0x3ad051);}console['log'](''),_0x2b24bd[_0x4179d0(-0x2b4,-_0xabb61f._0x2f5448,-_0xabb61f._0x1ba0fe,-_0xabb61f._0x72efd6)](_0x45d8af,_0x2c7e84);});}else _0x301bd2['error'](_0x2b24bd[_0x384c53(0x104,0xfc,0xf5,0xd7)]),_0x158058['exit'](0x2*0xfc1+0x1b*-0x155+0x476*0x1);}else{const _0x37926f={};_0x37926f[_0x384c53(_0x26f68a._0x3b6cf4,_0x26f68a._0x49fc76,_0x26f68a._0x12cf1a,_0x26f68a._0x56b791)]=process[_0x384c53(_0x26f68a._0x3cf102,_0x26f68a._0x11ad23,0xff,_0x26f68a._0x5151ea)],_0x37926f['output']=process[_0x5c40e4(0x1ca,0x185,0x1b3,_0x26f68a._0x1920f0)];const _0x27116d=_0x3e5df2[_0x384c53(_0x26f68a._0x3c1724,0xfb,_0x26f68a._0x1920f0,0x100)+_0x384c53(_0x26f68a._0x2e1e7c,0xbe,_0x26f68a._0x171ee0,_0x26f68a._0x304fb4)](_0x37926f);_0x27116d[_0x5c40e4(0x145,0x165,_0x26f68a._0x6d5e0e,0x151)](_0x48f08f,_0x1dd7cc=>{function _0x228e07(_0x2b79b9,_0x117af9,_0x1219b0,_0x14d048){return _0x384c53(_0x14d048- -_0x15159a._0x6ed622,_0x117af9-_0x15159a._0xccc8a6,_0x1219b0,_0x14d048-0x183);}function _0x31ad38(_0x4dbff7,_0x74d456,_0x1fe0b5,_0x5b01f9){return _0x5c40e4(_0x74d456,_0x5b01f9- -0x34c,_0x1fe0b5-0x150,_0x5b01f9-_0x474703._0x13a847);}_0x2b24bd[_0x228e07(-0x268,-0x228,-_0x2f90f7._0x2e3a14,-0x271)](_0x228e07(-0x214,-0x218,-_0x2f90f7._0x4f6cf8,-0x23b),_0x2b24bd['cTEdx'])?(_0x27116d[_0x228e07(-0x268,-0x207,-0x20b,-_0x2f90f7._0xc3eb9b)](),_0x2b24bd['riMlq'](_0x45d8af,_0x1dd7cc)):(_0xf19700['error']('Error:\x20Inv'+_0x31ad38(-_0x2f90f7._0x5d36ee,-_0x2f90f7._0x2d28f1,-0x234,-_0x2f90f7._0xbd3abc)+'\x22'+_0x3cebcf[_0x228e07(-0x27e,-0x29d,-0x2b9,-0x2ba)]+(_0x31ad38(-_0x2f90f7._0x51b7b1,-0x1f2,-0x213,-_0x2f90f7._0x5c4012)+_0x228e07(-_0x2f90f7._0x57d7be,-_0x2f90f7._0x272ec4,-0x295,-0x24b)+_0x228e07(-_0x2f90f7._0x50bb05,-_0x2f90f7._0x2e02da,-_0x2f90f7._0x292137,-_0x2f90f7._0x467b32))),_0x854e5e[_0x228e07(-_0x2f90f7._0x329c36,-0x2c0,-0x2bd,-_0x2f90f7._0x3e7288)](0xfc0+0x48c+-0x144b));});}});}function parseArgs(_0x1a0918){const _0x501f1f={_0x2fad30:0x1d7,_0x1f2845:0x1f3,_0x4b18a9:0x255,_0x1fe7e9:0x18c,_0x4d9fb3:0x1c1,_0x2e8422:0x2bc,_0xe0b5fa:0x232,_0x4da6a5:0x292,_0x489776:0x24e,_0x81c6b3:0x24c,_0x55f43a:0x281,_0x4f7f3f:0x272,_0x3f2f16:0x1d2,_0x55fb06:0x1be,_0x8b05d7:0x1a7,_0x4fb372:0x1b0,_0x323790:0x1f0,_0x58332a:0x1f9,_0x5cc2da:0x1e5,_0x59fa78:0x21f,_0x4f0b73:0x24f,_0x5b2e5f:0x24a,_0x24aec1:0x237,_0x2cd16e:0x2a7,_0x5f00d1:0x277,_0x505c2c:0x1d6,_0x37d665:0x246,_0x238ff8:0x222,_0x31579a:0x244,_0x1c6c0c:0x24a,_0x49c3df:0x238,_0x39ef95:0x1d3,_0x1d03e4:0x1ce,_0x2c511f:0x1a6,_0x5258c7:0x165,_0x3455c8:0x170,_0xfad055:0x254,_0x355383:0x2c5,_0x482550:0x256,_0x5747b2:0x21a,_0x3af682:0x206,_0x19721a:0x1c0,_0xa26c39:0x208,_0xba356f:0x199,_0x350e0c:0x1da,_0x18e2cf:0x1f1,_0x48eb23:0x20b,_0x22b4f4:0x23b,_0xdf2554:0x21c,_0x1a8523:0x1eb,_0x2ae9ab:0x1c8,_0x594167:0x1d8,_0x534584:0x1d7,_0x4a9306:0x1d2,_0x399193:0x1f8,_0xd946d3:0x1ef,_0x3045ad:0x225,_0x265e5b:0x238,_0xed1003:0x21e,_0x1b55f9:0x22d,_0x4a7d8a:0x23a,_0x5d9b34:0x19a,_0x9bfa83:0x1a0,_0x572b7c:0x1bb,_0x393316:0x1e0,_0x1efb4a:0x1a6,_0x499063:0x200,_0x9a842e:0x1ee,_0xf802a7:0x214,_0xd94a13:0x214,_0x3d4bd4:0x1b6,_0x4e31ed:0x1e5,_0x5eacb4:0x1d1,_0x523129:0x245,_0x37ab45:0x27e,_0x4a877f:0x288,_0x5835d8:0x179,_0x581e1e:0x185,_0x4d9acd:0x25d,_0x449646:0x265,_0x59f3bf:0x1fe,_0x308809:0x216,_0x7c946b:0x1ed,_0xdeafa3:0x2b8,_0x17c71b:0x207,_0x47c285:0x207,_0x25f53d:0x236,_0xc1b993:0x194,_0x271bad:0x164,_0x3a24ab:0x205,_0x23dd64:0x280,_0x4e9582:0x1fc,_0x3dcd99:0x1f1,_0x27ad98:0x1f5,_0x399f96:0x1dc},_0x281d41={_0xb14900:0x17a},_0xc6aebe={_0x2c0f6a:0x298},_0x277781={};_0x277781[_0x5aa6a0(-_0x501f1f._0x2fad30,-0x207,-0x1e8,-0x1e2)]='--username'+'=',_0x277781['otKfa']=function(_0x2370dd,_0x3982e1){return _0x2370dd===_0x3982e1;},_0x277781[_0x1e31da(0x21c,_0x501f1f._0x1f2845,_0x501f1f._0x4b18a9,_0x501f1f._0x1f2845)]=_0x5aa6a0(-_0x501f1f._0x1fe7e9,-0x1b6,-_0x501f1f._0x4d9fb3,-0x1d1),_0x277781[_0x1e31da(0x278,_0x501f1f._0x2e8422,_0x501f1f._0xe0b5fa,_0x501f1f._0x4da6a5)]=_0x1e31da(_0x501f1f._0x489776,_0x501f1f._0x81c6b3,_0x501f1f._0x55f43a,_0x501f1f._0x4f7f3f),_0x277781[_0x1e31da(0x1fe,_0x501f1f._0x3f2f16,_0x501f1f._0x55fb06,0x23f)]=_0x5aa6a0(-_0x501f1f._0x8b05d7,-_0x501f1f._0x4fb372,-_0x501f1f._0x323790,-0x1f8);function _0x5aa6a0(_0x438140,_0x2f102b,_0x329b3b,_0x4f3213){return _0x1b10(_0x2f102b- -_0xc6aebe._0x2c0f6a,_0x4f3213);}_0x277781[_0x1e31da(0x1ee,0x1a6,_0x501f1f._0x58332a,_0x501f1f._0x5cc2da)]=function(_0x574d67,_0x58c1d2){return _0x574d67!==_0x58c1d2;},_0x277781[_0x1e31da(_0x501f1f._0x59fa78,0x1db,_0x501f1f._0x4f0b73,_0x501f1f._0x5b2e5f)]='Ouffz',_0x277781['MYqMY']=_0x1e31da(0x27f,_0x501f1f._0x24aec1,_0x501f1f._0x2cd16e,_0x501f1f._0x5f00d1)+'=',_0x277781[_0x5aa6a0(-0x24c,-0x20b,-_0x501f1f._0x505c2c,-_0x501f1f._0x37d665)]=_0x5aa6a0(-0x220,-_0x501f1f._0x238ff8,-_0x501f1f._0x31579a,-_0x501f1f._0x1c6c0c);const _0x2034a7=_0x277781,_0xeba0a2={};_0xeba0a2[_0x5aa6a0(-_0x501f1f._0x49c3df,-0x1f5,-_0x501f1f._0x39ef95,-_0x501f1f._0x1d03e4)]=null,_0xeba0a2[_0x5aa6a0(-0x16a,-_0x501f1f._0x2c511f,-_0x501f1f._0x5258c7,-_0x501f1f._0x3455c8)]=null,_0xeba0a2[_0x1e31da(0x27e,0x236,_0x501f1f._0xfad055,_0x501f1f._0x355383)]=null,_0xeba0a2['password']=null;function _0x1e31da(_0x1a3aea,_0x361312,_0x40d7ed,_0x1a42e8){return _0x1b10(_0x1a3aea-_0x281d41._0xb14900,_0x1a42e8);}_0xeba0a2[_0x5aa6a0(-_0x501f1f._0x482550,-_0x501f1f._0x5747b2,-0x20f,-_0x501f1f._0x3af682)]=_0x5aa6a0(-0x190,-_0x501f1f._0x19721a,-_0x501f1f._0xa26c39,-_0x501f1f._0xba356f);const _0x2982e0=_0xeba0a2;for(const _0x2b4c8a of _0x1a0918){if(_0x2b4c8a[_0x5aa6a0(-0x1bf,-0x1e5,-_0x501f1f._0x350e0c,-_0x501f1f._0x18e2cf)](_0x2034a7[_0x1e31da(_0x501f1f._0x48eb23,_0x501f1f._0x37d665,0x1e2,_0x501f1f._0x22b4f4)]))_0x2034a7['otKfa'](_0x1e31da(0x269,0x293,0x27e,0x289),_0x2034a7[_0x1e31da(_0x501f1f._0xdf2554,0x25a,_0x501f1f._0x1a8523,0x209)])?(_0x8604c3[_0x5aa6a0(-_0x501f1f._0x2ae9ab,-_0x501f1f._0x594167,-_0x501f1f._0x39ef95,-0x1d1)](_0x5aa6a0(-0x225,-0x1ff,-_0x501f1f._0x534584,-_0x501f1f._0x4a9306)+'alid\x20email'+'\x20format\x20\x22'+_0x4d49db['email']+'\x22.'),_0x36cc3c[_0x5aa6a0(-0x1fa,-_0x501f1f._0x399193,-_0x501f1f._0xd946d3,-0x240)](-0x1*-0x1b1a+-0x1682+-0x497)):_0x2982e0[_0x1e31da(0x21d,_0x501f1f._0x3045ad,_0x501f1f._0x265e5b,_0x501f1f._0xed1003)]=_0x2b4c8a['split']('=')[0x13b3+0x5d9*-0x2+-0x40*0x20];else{if(_0x2b4c8a[_0x1e31da(_0x501f1f._0x1b55f9,_0x501f1f._0x4a7d8a,0x208,0x230)](_0x2034a7[_0x5aa6a0(-0x1a1,-_0x501f1f._0x5d9b34,-_0x501f1f._0x9bfa83,-0x17b)]))_0x2982e0[_0x5aa6a0(-0x1cc,-0x1a6,-0x1c8,-_0x501f1f._0x572b7c)]=_0x2b4c8a['split']('=')[0x135+0x25ab+0xcf5*-0x3];else{if(_0x2b4c8a[_0x5aa6a0(-_0x501f1f._0x393316,-_0x501f1f._0x5cc2da,-_0x501f1f._0x1efb4a,-_0x501f1f._0x499063)](_0x2034a7[_0x5aa6a0(-0x1d0,-0x214,-0x202,-0x220)]))_0x2034a7[_0x1e31da(_0x501f1f._0x9a842e,_0x501f1f._0xf802a7,_0x501f1f._0xd94a13,0x1ad)](_0x2034a7[_0x5aa6a0(-_0x501f1f._0x3d4bd4,-0x1f3,-_0x501f1f._0x4e31ed,-_0x501f1f._0x5eacb4)],_0x2034a7[_0x1e31da(0x21f,0x1e9,0x214,_0x501f1f._0x523129)])?_0x43851a[_0x1e31da(_0x501f1f._0x37ab45,_0x501f1f._0x4a877f,0x2a0,0x299)]=_0x221c0d['split']('=')[0x1940+0xa90*-0x1+-0x7*0x219]:_0x2982e0[_0x5aa6a0(-0x1bd,-0x194,-_0x501f1f._0x5835d8,-_0x501f1f._0x581e1e)]=_0x2b4c8a[_0x1e31da(0x24a,0x23b,_0x501f1f._0x4d9acd,_0x501f1f._0x449646)]('=')[-0x1c39+0x61*0x3e+0x1*0x4bc];else{if(_0x2b4c8a[_0x5aa6a0(-_0x501f1f._0x59f3bf,-_0x501f1f._0x5cc2da,-_0x501f1f._0x308809,-_0x501f1f._0x7c946b)](_0x2034a7[_0x1e31da(0x26f,0x25e,_0x501f1f._0xdeafa3,0x275)]))_0x2034a7['LxwJw']!==_0x2034a7[_0x1e31da(_0x501f1f._0x17c71b,_0x501f1f._0x47c285,0x1f6,_0x501f1f._0x25f53d)]?_0x3503fb[_0x5aa6a0(-_0x501f1f._0x9a842e,-0x1a6,-_0x501f1f._0xc1b993,-_0x501f1f._0x271bad)]=_0x53d8bd[_0x1e31da(0x24a,_0x501f1f._0x3a24ab,_0x501f1f._0x23dd64,0x233)]('=')[-0x1*0x2441+-0x1af*0x12+0x4290]:_0x2982e0[_0x1e31da(0x202,0x23e,_0x501f1f._0x4e9582,0x1c3)]=_0x2b4c8a[_0x5aa6a0(-0x1a2,-_0x501f1f._0x2ae9ab,-0x1cf,-0x1e1)]('=')[0x95*-0x3f+0x1351+0x115b];else _0x2b4c8a[_0x5aa6a0(-0x1ef,-_0x501f1f._0x4e31ed,-0x1ea,-0x1df)](_0x1e31da(_0x501f1f._0x3dcd99,_0x501f1f._0x534584,_0x501f1f._0x27ad98,_0x501f1f._0x399f96))&&(_0x2982e0['role']=_0x2b4c8a['split']('=')[0x13ed+-0x2*0x11b5+0xf7e]);}}}}return _0x2982e0;}export async function createUserCommand(_0x57f710){const _0x906070={_0x441431:0x2b7,_0x5c3160:0x23d,_0x3b15:0xf3,_0x3ab4ed:0xd0,_0x29a3fa:0xe6,_0x1409ba:0xf9,_0x1a990e:0x100,_0x56c699:0xfc,_0x36e4c8:0x2a6,_0x2e46a3:0x2f3,_0x225cbd:0xe1,_0xc0abbe:0x2ed,_0x22c26e:0x120,_0x2385f4:0xaa,_0x11b9da:0x266,_0x5164dd:0x290,_0x153a48:0x274,_0x1d36a5:0x2cc,_0x11f21c:0x287,_0x3915d1:0x2c5,_0x2fac96:0x227,_0x5a7ea5:0x2cc,_0x538a66:0x2a1,_0x1b1b73:0x220,_0xf0a63b:0x23a,_0x5da1fa:0x28f,_0x28cb76:0xdb,_0x59184e:0x92,_0x44cb83:0x94,_0x353f5d:0xb6,_0x2f9cfb:0x12d,_0x2f9742:0xd9,_0x2272a2:0x141,_0x412dd3:0x239,_0x3bea73:0x273,_0x5cc872:0x263,_0x1b960f:0xea,_0x4966db:0x177,_0x4d5973:0x16f,_0x70cf52:0x2da,_0x56e137:0x2fd,_0x28dd51:0x28e,_0x209a93:0x2d6,_0x1d0aa8:0x2b5,_0x43f372:0x113,_0x32851e:0xca,_0x1ef796:0x2dc,_0x2ea6ea:0x2d8,_0x5554b5:0x11b,_0x34b68b:0x130,_0x5c71d3:0x10b,_0x20d13d:0x103,_0x543204:0x10e,_0x24e8d4:0xcd,_0x4fd041:0x272,_0xf36b3:0x294,_0x4d77f3:0x283,_0x2e57ee:0x264,_0x23b234:0x26c,_0x5aa44f:0x2aa,_0x525acd:0x2be,_0x313f71:0x2db,_0x557ed4:0x29b,_0x48b3a0:0x2c3,_0x2889e7:0x115,_0x100737:0xd3,_0x3c9e65:0xb5,_0x5c5b6e:0x9b,_0x56791d:0xaf,_0x35e49e:0x244,_0x21ada2:0x8c,_0xa077ee:0xd7,_0x13eac0:0xed,_0x22f8b6:0x24c,_0x254865:0xcf,_0x308df8:0xa7,_0x4d6551:0xfb,_0x33ef89:0x118,_0x9ac18c:0xb2,_0x2296a1:0x17d,_0x2260ca:0x2c5,_0x49f2d5:0x30b,_0x323abb:0x236,_0x3a5335:0x268,_0x94410b:0x280,_0x24bb9d:0x2c7,_0x411847:0x2aa,_0xf622e8:0xce,_0x34b6e1:0x257,_0x5047fc:0x29e,_0xedfea6:0x2c7,_0x169151:0x2a0,_0x5dd9d3:0x13c,_0x5daf2c:0xf5,_0x54420e:0xfb,_0x580bb9:0x132,_0x3832b1:0x2c0,_0x25af4f:0x2ce,_0x4e6dff:0x2fb,_0x5761e3:0x281,_0x1122ff:0x2c9,_0x2c3846:0x2a8,_0x1df0b2:0x301,_0x1626f3:0x30c,_0x24a059:0x307,_0x36bfa6:0x2c8,_0xdeb8c7:0x2ca,_0xc5b9:0x2a8,_0x3402e8:0x29a,_0x146857:0x29e,_0xfbf9dd:0x104,_0x3ede93:0x2e3,_0x199c29:0x29d,_0x3e58de:0x2b4,_0x1a6fda:0x27f,_0x31b563:0xe7,_0x324b04:0x10d,_0x439476:0x123,_0x5a7044:0x2a3,_0x5c1dc7:0x27c,_0x49ff17:0x2c2,_0x13f8ca:0x2dc,_0x11f7c6:0x2e2,_0x16af82:0x2c7,_0x3251cf:0x2f0,_0x24d8e2:0x243,_0x30e22b:0xb3,_0x5ace94:0x110,_0x2f0ca0:0x16c,_0xc1fc3c:0x15d,_0x5771cd:0xcf,_0x2a8413:0x97,_0x4bf2e5:0xa2,_0x556511:0x295,_0xe3283:0x29f,_0x47a4a1:0x25e,_0x67ebd0:0x275,_0x4afed7:0x14e,_0x43deb9:0x14f,_0x328d8a:0x2a9,_0x42b3fe:0x160,_0x1d1f57:0x18d,_0x58223c:0x288,_0x2439c9:0x2ad,_0x456062:0x265,_0x4322cf:0x166,_0x4cd270:0x303,_0x389c73:0x128,_0x58bf92:0x101,_0x2de204:0x2a2,_0x422489:0x2a2,_0x416ce7:0x2ee,_0x44d021:0x28b,_0x3949c5:0x2cd,_0x54d638:0x287,_0xa8309a:0x2e4,_0x4648da:0x326,_0x241139:0xe5,_0x238d72:0xe4,_0xd484b7:0xe6,_0x44e580:0x150,_0x4c5e60:0x16e,_0x5afc24:0x170,_0xb8543f:0x2c7,_0x303992:0x28d,_0x1be325:0x2cb,_0x277996:0x270,_0x47e6e:0x2ac,_0x1f409b:0x2c9,_0x385f03:0x12d,_0x11416a:0x175,_0x16c997:0xed,_0x244537:0x171,_0x3611c8:0x27d,_0x197f35:0x12f,_0x597dd6:0x15a,_0x42ecaa:0x2c3,_0x35fe88:0x309,_0xaa668f:0x2c2,_0x1986ab:0x21d,_0x6a261f:0x262,_0x493cdf:0x2bb,_0x2f8bff:0x235,_0x708ce0:0x286,_0xde2d44:0xda,_0x33d7ba:0x277,_0x5d00f2:0x2a2,_0x2ddcd5:0x2c0,_0x533880:0x319,_0x195ee3:0x2a3,_0x3917bb:0x288,_0x56e17d:0x25c,_0x2f3d4e:0xe7,_0x181e61:0x10d,_0x376313:0x157,_0x5d40b5:0x15e,_0xe04a4a:0x198,_0x26fe6f:0x2a8,_0x2e9b20:0x26e,_0x45963a:0x133,_0x3b3cb3:0x108,_0x55db56:0x31a,_0x33c72c:0x2d9,_0x4a0931:0x2bf,_0x5a7ee6:0x111,_0x41a25b:0x122,_0x221ff3:0xd0,_0x15604a:0x2ba,_0x1be52f:0x291,_0x121791:0x24f,_0x2e2265:0x123,_0x4c1c52:0x126,_0x197a90:0xcb,_0x548bd1:0x23b,_0x2cbd21:0x2bf,_0x2ee624:0x286,_0x89c15f:0x114,_0xa0ddcb:0x147,_0x5cac9d:0xf1,_0x1950da:0x108,_0x18f09e:0x12c,_0x3e171b:0xa2,_0x27b0c6:0x2d3,_0x37baef:0x179,_0xcfd2bc:0x152,_0x1834e2:0x131,_0x154c44:0xda,_0x52261f:0xdd,_0x338b25:0x9b,_0x934167:0x12d,_0x46bb71:0x299,_0x17acd0:0x292,_0x46a85f:0x288,_0x1579c0:0x2b1,_0x27ebe8:0x295,_0x21d22b:0x12c,_0x34e432:0x2a1,_0x3be513:0x270,_0x3d4f4d:0x100,_0x5a69ea:0xc5,_0x254396:0x220,_0x4c42df:0x25e,_0x37aaf0:0x291,_0x1fbe7c:0x2c0,_0x2dbfe3:0x2be,_0xc83422:0x155,_0x1a9ba1:0x12d,_0x3143f5:0x269,_0x59d378:0x276,_0x475b20:0x298,_0x2247e0:0x2cf,_0x40bfb8:0x253,_0x42eaa0:0x2bd,_0x342f5b:0xda,_0x5e5674:0x10a,_0x2c5aba:0x26d,_0x1a846e:0x130,_0x5b745e:0xfa,_0x28acc2:0xda,_0x269420:0xdb,_0x29997c:0xc3,_0x1498b4:0x2c6,_0x54decc:0x289,_0x14facd:0x107,_0x8ffa8c:0x10d,_0x5779dc:0xf4,_0x26d679:0x154,_0x438c02:0x14a,_0x345023:0x282,_0x2b4532:0x224,_0x22fed8:0x18b,_0x1eac6a:0x14b,_0x548d30:0x12a,_0x346fe0:0xde,_0x35608b:0x299,_0xf3dcce:0x138,_0x1fa537:0x16b,_0x2e08fe:0x290,_0x4353bf:0x2d0,_0x1905d3:0x2e5,_0x459381:0x28c,_0xb2a032:0x125,_0x4a1f8c:0xe8,_0x58661b:0xeb,_0x2b168b:0xa8,_0x1ac859:0x12b,_0x34acae:0x2d5,_0x3305bf:0x299,_0x57c1c4:0x294},_0x36dfa0={_0x3438c6:0x362},_0x4e3c9e={'FOnGT':_0x2caeda(-0x2aa,-_0x906070._0x441431,-0x2cb,-0x2d8)+'sword\x20must'+_0x2caeda(-0x22a,-_0x906070._0x5c3160,-0x272,-0x234)+_0x5be1bf(-0x10b,-_0x906070._0x3b15,-_0x906070._0x3ab4ed,-_0x906070._0x29a3fa)+_0x5be1bf(-_0x906070._0x1409ba,-0x141,-0x120,-0xe3),'FNuND':function(_0x14521a,_0x1acd4f){return _0x14521a(_0x1acd4f);},'NMpxH':'Error:\x20Use'+'rname\x20is\x20r'+'equired','ifaZP':function(_0x2a7d94,_0x4618e6){return _0x2a7d94(_0x4618e6);},'atcrS':function(_0x4e9ab2,_0x162f80){return _0x4e9ab2!==_0x162f80;},'nutzm':_0x5be1bf(-0x121,-0x167,-0xea,-0x130),'hBDWV':_0x5be1bf(-_0x906070._0x1a990e,-0x12d,-_0x906070._0x56c699,-0xb8),'CMxVV':function(_0x26cabe,_0x12591a){return _0x26cabe===_0x12591a;},'PoSOH':'itKHI','CEHdR':function(_0xb9ce7d,_0x37ce0b){return _0xb9ce7d(_0x37ce0b);},'fScgY':_0x2caeda(-_0x906070._0x36e4c8,-0x286,-0x2b2,-_0x906070._0x2e46a3),'eyEIz':_0x5be1bf(-0xec,-0xcb,-_0x906070._0x225cbd,-0xb0),'WJjqC':_0x2caeda(-0x312,-0x2f4,-_0x906070._0xc0abbe,-0x308)+'\x20','JeoiL':_0x5be1bf(-0xd9,-0x91,-_0x906070._0x22c26e,-_0x906070._0x2385f4),'ezYYK':function(_0x802b47,_0x566056,_0x26af50){return _0x802b47(_0x566056,_0x26af50);},'swNfJ':_0x2caeda(-_0x906070._0x11b9da,-_0x906070._0x5164dd,-_0x906070._0x153a48,-0x251),'CgCXh':'Confirm\x20Pa'+'ssword:\x20','KoEsf':_0x2caeda(-_0x906070._0x1d36a5,-0x298,-_0x906070._0x11f21c,-0x244)+_0x2caeda(-0x2dd,-0x2db,-_0x906070._0x3915d1,-0x2e7)+_0x2caeda(-0x225,-_0x906070._0x2fac96,-0x25b,-0x270),'pbtWb':function(_0x5c4a12,_0x5ed84e){return _0x5c4a12<_0x5ed84e;},'SBZhH':function(_0xc75185,_0x4cefa7){return _0xc75185===_0x4cefa7;},'cSbjb':'cpXJN','iehMZ':function(_0x36d564,_0x53a3a4){return _0x36d564!==_0x53a3a4;},'FgWRd':'admin','xcljT':_0x2caeda(-_0x906070._0x5a7ea5,-0x296,-0x286,-_0x906070._0x538a66),'UWgyZ':_0x2caeda(-0x2b5,-0x2a3,-0x2e5,-0x2b7),'gUbgH':_0x2caeda(-_0x906070._0x1b1b73,-_0x906070._0xf0a63b,-0x25c,-_0x906070._0x5da1fa),'DoMhE':_0x5be1bf(-_0x906070._0x28cb76,-0x9d,-0xcf,-0x119),'AHMnF':_0x5be1bf(-0xd8,-_0x906070._0x59184e,-_0x906070._0x44cb83,-_0x906070._0x353f5d)+_0x5be1bf(-0x11d,-_0x906070._0x2f9cfb,-_0x906070._0x2f9742,-_0x906070._0x2272a2),'VLLnk':_0x2caeda(-0x2ed,-0x282,-0x2a3,-0x2ba)+_0x2caeda(-_0x906070._0x412dd3,-_0x906070._0x3bea73,-_0x906070._0x5cc872,-0x25a)+'r'};function _0x5be1bf(_0x115fa3,_0x3e894e,_0x171869,_0x59074){return _0x1b10(_0x115fa3- -0x1d3,_0x3e894e);}function _0x2caeda(_0x418dfd,_0x48940a,_0x2678ec,_0x269457){return _0x1b10(_0x2678ec- -_0x36dfa0._0x3438c6,_0x269457);}const _0x2cb90f=parseArgs(_0x57f710);!_0x2cb90f[_0x5be1bf(-0x130,-_0x906070._0x1b960f,-_0x906070._0x4966db,-_0x906070._0x4d5973)]&&(_0x4e3c9e['atcrS'](_0x4e3c9e[_0x2caeda(-_0x906070._0x70cf52,-0x2c5,-0x2d6,-_0x906070._0x56e137)],_0x4e3c9e[_0x2caeda(-0x2b8,-_0x906070._0x28dd51,-_0x906070._0x209a93,-_0x906070._0x1d0aa8)])?(_0x584692[_0x5be1bf(-_0x906070._0x43f372,-_0x906070._0x32851e,-0x10e,-0x10c)](_0x4e3c9e[_0x2caeda(-_0x906070._0x1ef796,-0x319,-_0x906070._0x2ea6ea,-0x320)]),_0x41a28e[_0x5be1bf(-0x133,-0x175,-0xee,-_0x906070._0x5554b5)](-0x2*0x1105+0x526+0x1ce5*0x1)):_0x2cb90f[_0x5be1bf(-_0x906070._0x34b68b,-_0x906070._0x5c71d3,-0x15c,-_0x906070._0x20d13d)]=await _0x4e3c9e[_0x5be1bf(-_0x906070._0x543204,-0x153,-_0x906070._0x24e8d4,-0xf2)](prompt,_0x4e3c9e[_0x2caeda(-_0x906070._0x4fd041,-_0x906070._0xf36b3,-0x2b1,-_0x906070._0x4d77f3)]));!_0x2cb90f[_0x2caeda(-0x2a9,-_0x906070._0x2e57ee,-0x270,-_0x906070._0x23b234)]&&(_0x4e3c9e['CMxVV'](_0x4e3c9e[_0x2caeda(-0x28a,-0x2b7,-_0x906070._0x5aa44f,-_0x906070._0x525acd)],_0x4e3c9e[_0x2caeda(-_0x906070._0x313f71,-_0x906070._0x557ed4,-_0x906070._0x5aa44f,-_0x906070._0x48b3a0)])?_0x2cb90f['email']=await _0x4e3c9e['CEHdR'](prompt,_0x4e3c9e[_0x5be1bf(-0xf5,-0xba,-0x132,-_0x906070._0x2889e7)]):(_0x5f0990[_0x5be1bf(-_0x906070._0x100737,-_0x906070._0x3c9e65,-_0x906070._0x5c5b6e,-_0x906070._0x56791d)](),_0x4b3190[_0x2caeda(-0x2a1,-_0x906070._0x35e49e,-0x269,-0x263)](''),_0x4e3c9e['FNuND'](_0x541e20,_0x27841d)));!_0x2cb90f[_0x5be1bf(-0xcf,-0xe8,-_0x906070._0x21ada2,-0xac)]&&(_0x4e3c9e[_0x5be1bf(-_0x906070._0xa077ee,-0xd8,-_0x906070._0x13eac0,-0xda)]===_0x4e3c9e[_0x2caeda(-0x29c,-_0x906070._0x22f8b6,-_0x906070._0x11b9da,-0x24f)]?_0x2cb90f[_0x5be1bf(-_0x906070._0x254865,-_0x906070._0x308df8,-0x8c,-_0x906070._0x4d6551)]=await _0x4e3c9e[_0x5be1bf(-0xee,-0xc1,-_0x906070._0x33ef89,-_0x906070._0x9ac18c)](prompt,_0x4e3c9e[_0x5be1bf(-0x152,-0x108,-_0x906070._0x2296a1,-0x167)]):(_0x482df8['error']('Error:\x20Ema'+_0x2caeda(-_0x906070._0xc0abbe,-0x28e,-_0x906070._0x2260ca,-_0x906070._0x49f2d5)+_0x2caeda(-0x283,-_0x906070._0x323abb,-0x25b,-_0x906070._0x3a5335)),_0x1a64e5[_0x2caeda(-_0x906070._0x94410b,-_0x906070._0x24bb9d,-0x2c2,-0x2cd)](-0x2*0xb32+-0x2601+0x3c66)));if(!_0x2cb90f[_0x2caeda(-_0x906070._0x411847,-0x31d,-0x2da,-0x2ba)]){if(_0x5be1bf(-0xe0,-_0x906070._0xf622e8,-0x110,-0x11c)!==_0x4e3c9e[_0x2caeda(-_0x906070._0x34b6e1,-0x2c1,-_0x906070._0x5164dd,-0x253)]){_0x2cb90f['password']=await _0x4e3c9e[_0x2caeda(-0x284,-0x25d,-_0x906070._0x5047fc,-_0x906070._0xedfea6)](prompt,_0x4e3c9e['swNfJ'],!![]);const _0x1118fb=await prompt(_0x4e3c9e['CgCXh'],!![]);_0x2cb90f[_0x2caeda(-0x2fc,-_0x906070._0x169151,-_0x906070._0x70cf52,-0x2e8)]!==_0x1118fb&&(console['error'](_0x5be1bf(-_0x906070._0x5dd9d3,-_0x906070._0x5daf2c,-_0x906070._0x54420e,-_0x906070._0x580bb9)+'swords\x20do\x20'+_0x2caeda(-0x2ff,-_0x906070._0x3832b1,-_0x906070._0x25af4f,-_0x906070._0x4e6dff)),process['exit'](0x9e7+0x1*-0x1e13+0x142d));}else _0x1dbdf8[_0x2caeda(-_0x906070._0x5761e3,-_0x906070._0x1122ff,-0x2a2,-_0x906070._0x2c3846)](_0x2caeda(-0x302,-_0x906070._0x1df0b2,-0x2c9,-_0x906070._0x1626f3)+_0x2caeda(-0x2b1,-_0x906070._0x24a059,-0x2d9,-0x2da)+_0x2caeda(-_0x906070._0x36bfa6,-0x307,-_0x906070._0xdeb8c7,-0x284)+_0x4d794a[_0x2caeda(-_0x906070._0xc5b9,-_0x906070._0x3402e8,-0x2bf,-_0x906070._0x146857)]+(_0x5be1bf(-_0x906070._0xfbf9dd,-0x134,-0xd4,-0x128)+_0x2caeda(-_0x906070._0x3ede93,-_0x906070._0x199c29,-0x2a0,-_0x906070._0x3e58de)+_0x2caeda(-0x2cc,-0x273,-0x291,-0x290)+_0x2caeda(-0x2a9,-0x295,-_0x906070._0x1a6fda,-0x23d)+_0x5be1bf(-0x128,-_0x906070._0x31b563,-0x104,-0xe8)+_0x5be1bf(-_0x906070._0x324b04,-0xd3,-0xf0,-_0x906070._0x439476))),_0x4f13fa[_0x2caeda(-_0x906070._0x5a7044,-_0x906070._0x5c1dc7,-_0x906070._0x49ff17,-0x2cc)](0x349*-0xb+0x1cb0+0x774);}(!_0x2cb90f['username']||_0x4e3c9e['CMxVV'](_0x2cb90f['username']['trim'](),''))&&(console[_0x5be1bf(-0x113,-0x125,-0x12d,-_0x906070._0x20d13d)](_0x2caeda(-0x272,-_0x906070._0x13f8ca,-0x2a8,-0x287)+_0x2caeda(-_0x906070._0x11f7c6,-_0x906070._0x16af82,-0x2a1,-0x2c0)+'equired'),process[_0x2caeda(-_0x906070._0x3251cf,-0x2e3,-0x2c2,-0x2fc)](0x15e1+-0x3*0x377+-0xb7b));(!_0x2cb90f[_0x2caeda(-_0x906070._0x24d8e2,-0x282,-0x270,-0x2b6)]||_0x4e3c9e[_0x5be1bf(-0xdd,-0x9d,-_0x906070._0x30e22b,-0xf1)](_0x2cb90f[_0x5be1bf(-_0x906070._0x225cbd,-0xaa,-0x9c,-_0x906070._0x5ace94)][_0x5be1bf(-0x154,-0x151,-0x17d,-_0x906070._0x2f0ca0)](),''))&&(console['error'](_0x4e3c9e['KoEsf']),process[_0x5be1bf(-0x133,-0x14f,-0x122,-_0x906070._0xc1fc3c)](-0x9c8*-0x2+0xe3c+-0x21cb));(!_0x2cb90f[_0x5be1bf(-_0x906070._0x5771cd,-_0x906070._0x2a8413,-_0x906070._0x4bf2e5,-0xf7)]||_0x2cb90f[_0x2caeda(-_0x906070._0x556511,-_0x906070._0xe3283,-_0x906070._0x47a4a1,-_0x906070._0x67ebd0)]['trim']()==='')&&(console[_0x5be1bf(-_0x906070._0x43f372,-0x15a,-_0x906070._0x4afed7,-_0x906070._0x43deb9)]('Error:\x20Nam'+_0x2caeda(-0x2bd,-0x263,-_0x906070._0x328d8a,-0x299)+_0x2caeda(-0x27b,-0x28b,-0x2a5,-0x27a)),process['exit'](0x1*-0xf62+0x726+0x83d));(!_0x2cb90f[_0x5be1bf(-0x14b,-_0x906070._0x42b3fe,-_0x906070._0x1d1f57,-0x102)]||_0x4e3c9e[_0x2caeda(-_0x906070._0x58223c,-0x2d3,-_0x906070._0x2439c9,-_0x906070._0x456062)](_0x2cb90f[_0x5be1bf(-0x14b,-_0x906070._0x4322cf,-0x136,-0x15c)]['length'],0x125*-0x1d+0xc7*0x32+-0x5*0x121))&&(_0x4e3c9e['SBZhH'](_0x4e3c9e[_0x2caeda(-_0x906070._0x16af82,-0x301,-_0x906070._0x36bfa6,-_0x906070._0x4cd270)],_0x5be1bf(-0x105,-_0x906070._0x389c73,-0x136,-_0x906070._0x58bf92))?(_0x4f69d8[_0x2caeda(-_0x906070._0x2de204,-0x2a2,-_0x906070._0x422489,-0x27c)](_0x4e3c9e['NMpxH']),_0x39b0d3['exit'](-0x26a0+0x14b0+0x11f1)):(console['error'](_0x4e3c9e['FOnGT']),process[_0x2caeda(-_0x906070._0x416ce7,-0x2ff,-0x2c2,-_0x906070._0x44d021)](0x17*-0x83+0x98c+0xf*0x26)));_0x4e3c9e[_0x2caeda(-0x299,-_0x906070._0x3949c5,-0x2ab,-_0x906070._0x54d638)](_0x2cb90f[_0x2caeda(-_0x906070._0x169151,-0x2b1,-_0x906070._0xa8309a,-_0x906070._0x4648da)],_0x4e3c9e[_0x5be1bf(-_0x906070._0x1b960f,-_0x906070._0x241139,-0xb3,-_0x906070._0x580bb9)])&&_0x4e3c9e[_0x5be1bf(-0x11c,-0xdb,-_0x906070._0x238d72,-0x128)](_0x2cb90f[_0x2caeda(-0x30d,-0x2c8,-0x2e4,-0x302)],_0x5be1bf(-0xfb,-0x137,-_0x906070._0xd484b7,-_0x906070._0x1b960f))&&(_0x4e3c9e['atcrS'](_0x4e3c9e[_0x5be1bf(-_0x906070._0x44e580,-0x196,-_0x906070._0x4c5e60,-_0x906070._0x5afc24)],_0x4e3c9e[_0x2caeda(-0x2de,-0x2c2,-_0x906070._0xb8543f,-0x2ba)])?(console[_0x2caeda(-_0x906070._0x303992,-_0x906070._0x1be325,-0x2a2,-_0x906070._0x277996)](_0x2caeda(-0x2d7,-_0x906070._0x47e6e,-_0x906070._0x1f409b,-0x309)+_0x5be1bf(-_0x906070._0x385f03,-_0x906070._0xc1fc3c,-_0x906070._0x11416a,-_0x906070._0x16c997)+'\x22'+_0x2cb90f[_0x5be1bf(-0x155,-_0x906070._0x244537,-_0x906070._0x4c5e60,-0x129)]+('\x22.\x20Must\x20be'+_0x2caeda(-_0x906070._0x3611c8,-0x271,-0x275,-0x267)+_0x5be1bf(-_0x906070._0x197f35,-0x10a,-_0x906070._0x597dd6,-0x105))),process[_0x2caeda(-_0x906070._0x42ecaa,-_0x906070._0x35fe88,-_0x906070._0xaa668f,-0x28a)](-0x15*0x16+-0x1795*0x1+-0x514*-0x5)):(_0x565173[_0x2caeda(-_0x906070._0x1986ab,-0x235,-_0x906070._0x6a261f,-0x228)](),_0x4e3c9e['ifaZP'](_0x574ce2,_0xa2ac09)));const _0x26088c=/^[^\s@]+@[^\s@]+\.[^\s@]+$/;!_0x26088c[_0x2caeda(-_0x906070._0x493cdf,-_0x906070._0x2f8bff,-0x276,-_0x906070._0x708ce0)](_0x2cb90f[_0x5be1bf(-0xe1,-0xc8,-0x10b,-_0x906070._0xde2d44)])&&(console[_0x2caeda(-0x272,-_0x906070._0x33d7ba,-_0x906070._0x5d00f2,-0x269)]('Error:\x20Inv'+_0x2caeda(-_0x906070._0x2ddcd5,-_0x906070._0x533880,-0x2e8,-_0x906070._0x195ee3)+_0x2caeda(-_0x906070._0x3917bb,-0x217,-0x260,-_0x906070._0x56e17d)+_0x2cb90f['email']+'\x22.'),process['exit'](-0x1d74+-0x10ca+0x2e3f));const _0x1ba2e5=/^[a-zA-Z0-9_-]+$/;!_0x1ba2e5[_0x2caeda(-0x2ba,-0x296,-0x276,-0x26a)](_0x2cb90f[_0x5be1bf(-0x130,-_0x906070._0x2f3d4e,-_0x906070._0x181e61,-_0x906070._0x5dd9d3)])&&(_0x4e3c9e['gUbgH']===_0x4e3c9e[_0x5be1bf(-_0x906070._0x376313,-0x160,-_0x906070._0x5d40b5,-_0x906070._0xe04a4a)]?(_0x3264a1['error'](_0x2caeda(-0x2d4,-0x291,-_0x906070._0x26fe6f,-0x286)+'r\x20\x22'+_0x6921b8['username']+(_0x2caeda(-_0x906070._0x303992,-0x29f,-_0x906070._0x2e9b20,-0x246)+'exists.')),_0x3d3ad3[_0x5be1bf(-_0x906070._0x45963a,-0xfe,-_0x906070._0x3b3cb3,-0x14d)](0x10a3*0x1+-0x1*0xb49+0x559*-0x1)):(console[_0x5be1bf(-_0x906070._0x43f372,-_0x906070._0x2889e7,-0x15a,-0x141)]('Error:\x20Inv'+_0x2caeda(-_0x906070._0x55db56,-0x2f6,-_0x906070._0x33c72c,-0x320)+'ame\x20\x22'+_0x2cb90f[_0x2caeda(-0x2cc,-0x2ba,-_0x906070._0x4a0931,-0x2d2)]+('\x22.\x20Use\x20onl'+_0x5be1bf(-_0x906070._0x5a7ee6,-_0x906070._0x41a25b,-_0x906070._0x221ff3,-0x111)+_0x2caeda(-0x269,-_0x906070._0x15604a,-_0x906070._0x1be52f,-_0x906070._0x121791)+'underscore'+'s,\x20and\x20hyp'+_0x5be1bf(-0x10d,-_0x906070._0x2e2265,-_0x906070._0x4c1c52,-_0x906070._0x197a90))),process[_0x5be1bf(-0x133,-0x134,-_0x906070._0x5554b5,-0x172)](-0x8d*0x2f+-0x15*0x1a5+0x3c6d*0x1)));try{const _0xcbc257=await _0x4e3c9e[_0x2caeda(-_0x906070._0x44d021,-0x288,-_0x906070._0x3611c8,-_0x906070._0x548bd1)](findUserByUsername,_0x2cb90f[_0x2caeda(-_0x906070._0x1a6fda,-_0x906070._0xc0abbe,-_0x906070._0x2cbd21,-_0x906070._0x2ee624)]);_0xcbc257&&(console[_0x5be1bf(-0x113,-_0x906070._0x89c15f,-_0x906070._0xa0ddcb,-0xd3)](_0x5be1bf(-0x119,-_0x906070._0x5cac9d,-_0x906070._0x1950da,-_0x906070._0x5554b5)+_0x5be1bf(-0xfd,-_0x906070._0x5dd9d3,-0x135,-0x10b)+_0x2cb90f[_0x5be1bf(-0x130,-0x12e,-0x174,-_0x906070._0x18f09e)]+(_0x5be1bf(-0xdf,-_0x906070._0x3e171b,-0x102,-0x9f)+_0x2caeda(-_0x906070._0x27b0c6,-_0x906070._0x15604a,-0x2a7,-0x2d7))),process[_0x5be1bf(-_0x906070._0x45963a,-_0x906070._0x37baef,-_0x906070._0xcfd2bc,-_0x906070._0x1834e2)](0x20f9+-0x1539*0x1+-0xbbf*0x1));console[_0x5be1bf(-_0x906070._0x154c44,-0xe3,-_0x906070._0x52261f,-_0x906070._0x338b25)](_0x5be1bf(-0x132,-0x166,-_0x906070._0x934167,-0x160)+_0x2caeda(-_0x906070._0x46bb71,-_0x906070._0x17acd0,-0x27e,-_0x906070._0x46a85f)+_0x2cb90f[_0x5be1bf(-0x130,-0xfa,-0x124,-0x118)]+_0x2caeda(-0x2ce,-_0x906070._0x1579c0,-_0x906070._0x27ebe8,-_0x906070._0x17acd0));const _0x4e93b4={};_0x4e93b4['username']=_0x2cb90f[_0x5be1bf(-0x130,-0x15a,-0x157,-_0x906070._0x21d22b)],_0x4e93b4[_0x5be1bf(-_0x906070._0x225cbd,-0xd0,-0xfe,-_0x906070._0x58bf92)]=_0x2cb90f[_0x2caeda(-0x236,-_0x906070._0x34e432,-_0x906070._0x3be513,-0x229)],_0x4e93b4[_0x5be1bf(-_0x906070._0x254865,-_0x906070._0x3d4f4d,-_0x906070._0x5a69ea,-0xfe)]=_0x2cb90f[_0x2caeda(-_0x906070._0x254396,-0x226,-_0x906070._0x4c42df,-_0x906070._0x5cc872)],_0x4e93b4[_0x2caeda(-0x323,-0x2a9,-_0x906070._0x70cf52,-_0x906070._0x37aaf0)]=_0x2cb90f[_0x2caeda(-0x306,-_0x906070._0x1fbe7c,-0x2da,-_0x906070._0x2dbfe3)],_0x4e93b4[_0x5be1bf(-_0x906070._0xc83422,-0x16b,-_0x906070._0x1a9ba1,-0x15f)]=_0x2cb90f['role'];const _0x35230e=await createUser(_0x4e93b4);console[_0x2caeda(-0x250,-_0x906070._0x5da1fa,-_0x906070._0x3143f5,-0x248)](''),console['log']('✓\x20User\x20cre'+'ated\x20succe'+'ssfully!'),console[_0x2caeda(-_0x906070._0x47e6e,-_0x906070._0x59d378,-0x269,-_0x906070._0x475b20)](''),console[_0x5be1bf(-_0x906070._0xde2d44,-0x107,-0xf6,-_0x906070._0x1b960f)](_0x4e3c9e[_0x2caeda(-0x2f5,-0x295,-_0x906070._0x2247e0,-0x2c1)]),console['log'](_0x2caeda(-_0x906070._0x40bfb8,-_0x906070._0x42eaa0,-0x28d,-0x29e)+'\x20\x20'+_0x35230e['id']),console[_0x5be1bf(-_0x906070._0x342f5b,-_0x906070._0x5e5674,-0x118,-0xf4)](_0x2caeda(-_0x906070._0x2c5aba,-0x2c7,-0x281,-_0x906070._0x67ebd0)+':\x20'+_0x35230e[_0x5be1bf(-_0x906070._0x1a846e,-_0x906070._0x5b745e,-0x136,-0x16b)]),console[_0x5be1bf(-_0x906070._0x28acc2,-_0x906070._0x269420,-_0x906070._0x29997c,-0x11d)](_0x2caeda(-_0x906070._0x1498b4,-0x2bf,-0x289,-_0x906070._0x54decc)+'\x20\x20'+_0x35230e[_0x5be1bf(-_0x906070._0x225cbd,-0xa1,-_0x906070._0x2a8413,-0xd7)]),console[_0x5be1bf(-0xda,-_0x906070._0x14facd,-_0x906070._0x8ffa8c,-_0x906070._0x5779dc)]('\x20\x20Name:\x20\x20\x20'+'\x20\x20'+_0x35230e['name']),console[_0x2caeda(-0x275,-0x291,-0x269,-0x288)](_0x5be1bf(-0x153,-_0x906070._0x26d679,-0x130,-0x197)+'\x20\x20'+_0x35230e[_0x5be1bf(-0x155,-0x13d,-0x125,-_0x906070._0x438c02)]),console[_0x2caeda(-0x2af,-_0x906070._0x11b9da,-0x269,-_0x906070._0x345023)](''),console[_0x2caeda(-_0x906070._0x2b4532,-_0x906070._0x146857,-0x269,-0x262)](_0x5be1bf(-0x14c,-_0x906070._0x22fed8,-0x177,-_0x906070._0x1eac6a)+_0x5be1bf(-0x108,-_0x906070._0x548d30,-0x10a,-_0x906070._0x346fe0)+_0x2caeda(-0x28d,-_0x906070._0x328d8a,-_0x906070._0x35608b,-_0x906070._0x146857)+_0x5be1bf(-0x145,-_0x906070._0xf3dcce,-_0x906070._0x1fa537,-0x159)+'ame\x20and\x20pa'+_0x2caeda(-0x2fb,-_0x906070._0x2e08fe,-_0x906070._0x4353bf,-0x29f));}catch(_0x26d598){logger[_0x2caeda(-_0x906070._0x1905d3,-_0x906070._0x459381,-_0x906070._0x5d00f2,-0x25b)](_0x4e3c9e[_0x5be1bf(-0x158,-0x173,-0x18e,-_0x906070._0xb2a032)],_0x26d598),console['error'](_0x5be1bf(-_0x906070._0x4a1f8c,-_0x906070._0x58661b,-_0x906070._0x197f35,-_0x906070._0x2b168b)+_0x5be1bf(-_0x906070._0x1ac859,-0xe8,-0x165,-0x165)+'ate\x20user\x20-'+'\x20'+_0x26d598[_0x2caeda(-0x277,-_0x906070._0x34acae,-0x2b4,-0x28e)]),process[_0x2caeda(-_0x906070._0x3305bf,-0x2c1,-0x2c2,-_0x906070._0x57c1c4)](-0x227a+-0x274*-0x7+-0x15*-0xd3);}}
1
+ (function(_0x23999b,_0x190cc0){const _0x394aae={_0x25eb5b:0x168,_0x3a986e:0x170,_0x23ccc8:0x127,_0x21b28:0x106,_0x3ee4bd:0x349,_0x1a21da:0x30b,_0x24684c:0x34e,_0x54f928:0x2db,_0x7763c9:0x337,_0x16c0a6:0x302,_0x1da190:0x313,_0x12757d:0x371,_0x2c6354:0x2f8,_0x5249ef:0x334,_0x37aa61:0x37f,_0x27a276:0x196,_0x56be96:0x166,_0x1bd266:0x15f,_0x198d56:0x14b,_0xe4ec67:0x189,_0x132a56:0x1de},_0x5d4fc0={_0x1ce0b4:0x23},_0x1effaa=_0x23999b();function _0x54ed5c(_0x2a5af9,_0x367f95,_0x1b282a,_0x8638e){return _0x8da7(_0x8638e-0x1a6,_0x1b282a);}function _0x57f20a(_0x935243,_0x4903fd,_0x5cfef9,_0x52b6d8){return _0x8da7(_0x4903fd- -_0x5d4fc0._0x1ce0b4,_0x935243);}while(!![]){try{const _0x354b3b=parseInt(_0x57f20a(0xe5,0x133,_0x394aae._0x25eb5b,0x15a))/(-0x7fa+0x688+0x7*0x35)*(parseInt(_0x57f20a(_0x394aae._0x3a986e,_0x394aae._0x23ccc8,_0x394aae._0x21b28,0x13b))/(-0x770*0x1+-0x4bb+0xc2d*0x1))+-parseInt(_0x54ed5c(0x326,0x373,0x302,0x349))/(-0x9*-0x35c+0xc5a+-0x2a93)*(parseInt(_0x54ed5c(_0x394aae._0x3ee4bd,_0x394aae._0x1a21da,0x347,_0x394aae._0x24684c))/(-0x110b+0x2a7+0xe68))+parseInt(_0x54ed5c(_0x394aae._0x54f928,_0x394aae._0x7763c9,_0x394aae._0x16c0a6,_0x394aae._0x1da190))/(-0x2b*0xa3+0x80f+0x1357*0x1)*(-parseInt(_0x57f20a(0x1b5,0x1ad,0x1f0,0x182))/(-0x1*-0x1d6f+-0x2026*0x1+0x2bd))+-parseInt(_0x54ed5c(_0x394aae._0x12757d,_0x394aae._0x2c6354,0x32b,_0x394aae._0x5249ef))/(-0x13c*0x1f+0x176a+-0xee1*-0x1)+-parseInt(_0x54ed5c(0x351,_0x394aae._0x37aa61,0x380,0x33a))/(-0x1ef3+0x16*0x34+-0x269*-0xb)+-parseInt(_0x57f20a(_0x394aae._0x27a276,0x18f,_0x394aae._0x56be96,_0x394aae._0x1bd266))/(0x281*-0x3+-0x55*0x19+-0x1*-0xfd9)+parseInt(_0x57f20a(_0x394aae._0x198d56,0x161,0x1a3,0x198))/(-0x201*0x3+0x17a0+0x1*-0x1193)*(parseInt(_0x57f20a(_0x394aae._0xe4ec67,0x1a0,0x1ae,_0x394aae._0x132a56))/(-0x22ca+0x5f3+-0xe71*-0x2));if(_0x354b3b===_0x190cc0)break;else _0x1effaa['push'](_0x1effaa['shift']());}catch(_0x2d8c8c){_0x1effaa['push'](_0x1effaa['shift']());}}}(_0x5cb5,0x85550+-0xfd4d1+0x10c92e));function _0x5cb5(){const _0x92ae2=['zLfoB04','B3v0Chv0','BM90ig1HDgnO','CLvVzge','icbjrdOGicaGia','v3zVBeC','yxrLihvZzxiGlq','nMH2qvzdtW','C2j0B3G','4PYtifvZzxiGy3jL','C3DVCMrZigrVia','CxvLC3rPB24','CIaI','CM5HBwuGAxmGCG','EgnNv3a','zxjYB3i','DgfetLm','ywrTAw4','shzky2S','zLbvENm','CunnuwW','zw1HAwW','zKXyBgi','ywXPzcb1C2vYBG','CMzHy2u','AxjLza','t0PhEMG','rxjYB3i6ie5HBq','zfDsy0W','ntK4s1P6vhzM','yw1LigfUzcbWyq','qMDwAMW','D3DIseS','ig51BwjLCNmSia','BgvUz3rO','BfffCuu','rxjYB3i6ifvZzq','qLPVB08','zNL3zMC','C3bSAxq','CeHUvMy','mtyWowHjAhD0yW','DhjPBq','ywXPzcbYB2XLia','icbfBwfPBdOGia','EhfWvxm','CgfZC3DVCMq','DgvYBwLUywW','AwzWCvC','A2HLs3m','zxf1AxjLza','rw1HAwW6ia','q29UzMLYBsbqyq','C3n3B3jKlG','uu50sg4','CM9Szq','rxjYB3i6iezHAq','iI4GvxnLig9UBa','vvnlC08','rxjYB3i6ieLUDG','y0LXDLG','Aw5WDxq','DxH5vLu','ls1WyxnZD29Yza','mZeXotG1nwreDw12rq','BgHzqu8','vxnLCIbezxrHAq','tvr1EfK','yMXyqLK','AgvUCY4','EwnSuvO','qM1TshG','C3qGocbJAgfYyq','uwfozuW','icbsB2XLoIaGia','BMfTzq','u1DhDgO','uMHbBNm','C3nMDwXSEse','BgLys2S','AfDhCMW','CMvK','vg1XA2C','y3rLCNm','y2XVC2u','zxHPDa','zsbPCYbYzxf1Aq','otuWwMTyu0nY','DgvZDa','icjHzg1PBIiGBW','rxjYB3i6ifbHCW','ugXbrMW','Dw5KzxjZy29Yzq','ls1LBwfPBd0','Bg9N','yvjdvu4','C3rKB3v0','mte2mta2owjXyvPZqG','zeD0Dwq','yw4GBM93igXVzW','igjLigf0igXLyq','EsbSzxr0zxjZla','iIbHBhjLywr5ia','mZyYoda4s3LduMvv','D3jPDgu','BgL4s0C','BwHly2S','C3rHCNrZv2L0Aa','AgvPCIb1C2vYBG','CMXtExi','Bhm6','rxjYB3i6ievTyq','ywXPzcbLBwfPBa','rMfPBgvKihrVia','C3DVCMqGBxvZDa','y3jLyxrLsw50zq','yuvUvxy','yw1Lici','m0XwqvfXuG','igLUihDPDgGGDa','AuPzwfG','BMTzuKq','zNvdEgq','mJKZmZyZnMzjDu1xvW','AwWGAxmGCMvXDq','uMjMvLe','B1PiwMO','yxrLzcbZDwnJzq','BgvKihrVignYzq','CYWGyw5KigH5Ca','igzVCM1HDcaI','DxnLCG','uwvcs2W','ode2nJqWmLH4Ahvpua','zNrLwxu','C3rKAw4','Dvzxue0','r1D4ufy','zM5YDM4','AfHdsuW','vxnLCM5HBwu6ia','yMfzwMi','vNbirMy','CIaIDxnLCIiU','s2PsAwO','uwzQzw8','DxnLCM5HBwu','uvrIAvC','uK9hB3O','BwvZC2fNzq','mZaXndy2yxL2Evzw','thnOt1G','ls11C2vYBMfTzq','ls1Uyw1Lpq','zxHPC3rZlG','icbvC2vYBMfTzq'];_0x5cb5=function(){return _0x92ae2;};return _0x5cb5();}import _0x3aea75 from'readline';import{Writable}from'stream';import{createUser,findUserByUsername}from'../users.js';function _0x8da7(_0x36445a,_0x61ae7c){_0x36445a=_0x36445a-(-0x7f4*0x2+-0x1*-0x1af3+-0x9c3);const _0x508995=_0x5cb5();let _0xe67041=_0x508995[_0x36445a];if(_0x8da7['QREOWo']===undefined){var _0x172bb1=function(_0x226bf8){const _0x58bef1='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0xc22600='',_0x4816fc='';for(let _0x561d14=-0x1f18+-0x2*0x10be+-0x4*-0x1025,_0x50d72f,_0x2c962d,_0x38aea9=0x5*-0x6f9+-0x2000+0x42dd;_0x2c962d=_0x226bf8['charAt'](_0x38aea9++);~_0x2c962d&&(_0x50d72f=_0x561d14%(0x1512+0x1*0x209+-0x1717)?_0x50d72f*(-0xe42+-0x3*0x1e2+-0x8*-0x285)+_0x2c962d:_0x2c962d,_0x561d14++%(0x1*0xa7f+-0x71*0x31+0xb26))?_0xc22600+=String['fromCharCode'](0x9*-0x2f+0x4ba*-0x1+0x760&_0x50d72f>>(-(-0x5*-0x650+0x3e5*-0x6+-0x830)*_0x561d14&-0x9d9+0x29*0x39+-0x2*-0x5f)):-0x17*-0x192+-0xbdb*0x3+-0x8d){_0x2c962d=_0x58bef1['indexOf'](_0x2c962d);}for(let _0x440329=-0x65*-0x43+-0x1*0x1b68+0xf9,_0x14a000=_0xc22600['length'];_0x440329<_0x14a000;_0x440329++){_0x4816fc+='%'+('00'+_0xc22600['charCodeAt'](_0x440329)['toString'](-0x1*-0x103f+0x36c*-0x6+0x459))['slice'](-(0x332+0x1f8d+-0x22bd));}return decodeURIComponent(_0x4816fc);};_0x8da7['FZxVVB']=_0x172bb1,_0x8da7['snibPO']={},_0x8da7['QREOWo']=!![];}const _0x5cf178=_0x508995[-0xc8b+-0x495*-0x7+-0x1388],_0x244fe1=_0x36445a+_0x5cf178,_0x5dedd0=_0x8da7['snibPO'][_0x244fe1];return!_0x5dedd0?(_0xe67041=_0x8da7['FZxVVB'](_0xe67041),_0x8da7['snibPO'][_0x244fe1]=_0xe67041):_0xe67041=_0x5dedd0,_0xe67041;}import{logger}from'../logger.js';function prompt(_0x302569,_0x58325b=![]){const _0x2b79fd={_0x59f209:0x492,_0x400a2b:0x43e,_0x29530b:0x47c,_0x3d6f08:0x49f,_0x592f1c:0x47e,_0x51857b:0x46f,_0xc8cefd:0x413,_0x37fcc0:0x420,_0x2beaf1:0x418,_0x32dc9b:0x407,_0x40f474:0x403,_0x4d34c0:0x440,_0x586b9c:0x43c,_0x8f437b:0x3e2,_0x5b085c:0x406,_0xdd0e20:0x489,_0x3227b2:0x47d,_0x51b16f:0x43c,_0x4d5de2:0x405,_0xf67235:0x438,_0x14466f:0x3fc,_0x5667e2:0x477,_0x1ceada:0x4cc,_0x298bbf:0x44c,_0x1713ef:0x43d,_0x18b4d7:0x3e2,_0x1050ce:0x3d1,_0x59b474:0x3c1,_0x4f2983:0x3b1,_0x25d3a6:0x3d4,_0x350d54:0x3d8,_0x45fb2e:0x3fc,_0x1f172c:0x42d,_0x231041:0x47f,_0x271e6c:0x3f9,_0x37ac53:0x3dc,_0x22b157:0x3cc,_0x2af3cc:0x40d},_0x30b943={_0x240279:0xdf,_0x292bec:0xfe},_0x47fcd8={_0x317067:0x123,_0x12451d:0x8c},_0x15d468={'fteYu':function(_0x78659c){return _0x78659c();},'RhAns':function(_0x17cbe3,_0x18b624){return _0x17cbe3(_0x18b624);},'GONXl':function(_0x40b480,_0x1198d9){return _0x40b480!==_0x1198d9;},'QaNeL':_0x2d65b6(0x519,0x540,0x4db,0x4fb)};function _0x2d65b6(_0x59cfc9,_0x46f5fe,_0x289eab,_0x1c1174){return _0x8da7(_0x1c1174-0x361,_0x289eab);}return new Promise(_0x29c689=>{const _0x1ea522={_0x55f257:0x399,_0xb1a166:0x39a,_0x1645a2:0x35d},_0x3c4928={_0x425364:0x54f,_0x4ee42a:0x52a},_0x3c1ebc={_0xe382e2:0x240,_0x27900d:0x206,_0x4c95e9:0x284,_0x4ab323:0x216,_0x564311:0x22b},_0x3ccb92={_0x4cf9cf:0xe7},_0x1029d6={_0x56d508:0x1d7,_0x2be707:0x4b},_0x3de6e9={_0x2b136f:0x3e8,_0x1d8bcd:0x3b1,_0x38c52e:0x1d8,_0x471607:0x1ef,_0x2522f3:0x434,_0x5d8f12:0x3f4,_0x2fe2df:0x405,_0x7227c4:0x46a,_0x3d3c42:0x195,_0x37e4b6:0x13b,_0x169f4c:0x171},_0x4d8345={_0x5adb0d:0x55},_0x38646c={_0x556464:0x1ba},_0x1fe540={_0x4c4f44:0xd7,_0x12da74:0x151,_0x5e5eb0:0xe9};function _0x222c85(_0x4e4a8b,_0x33925b,_0x24ab54,_0x84684a){return _0x2d65b6(_0x4e4a8b-_0x1fe540._0x4c4f44,_0x33925b-_0x1fe540._0x12da74,_0x4e4a8b,_0x33925b- -_0x1fe540._0x5e5eb0);}function _0x4b1852(_0x3bc4bc,_0x969a74,_0x8c3c01,_0x1984d0){return _0x2d65b6(_0x3bc4bc-0x5f,_0x969a74-_0x47fcd8._0x317067,_0x3bc4bc,_0x969a74- -_0x47fcd8._0x12451d);}const _0x1d9bb8={'BmmHx':function(_0x5093e0,_0x9169a3){return _0x15d468['RhAns'](_0x5093e0,_0x9169a3);},'BgVjl':function(_0x561da3,_0x1ee2d2){return _0x561da3(_0x1ee2d2);},'uxyVU':function(_0x36bef8){function _0x1c33e4(_0x3b4afc,_0x579168,_0x315430,_0x1466ba){return _0x8da7(_0x315430- -0x27b,_0x3b4afc);}return _0x15d468[_0x1c33e4(-_0x30b943._0x240279,-0xa4,-0xc8,-_0x30b943._0x292bec)](_0x36bef8);}};if(_0x15d468['GONXl'](_0x15d468[_0x4b1852(0x44f,0x44b,0x478,_0x2b79fd._0x59f209)],'alcWo')){if(_0x58325b){const _0x16c843=new Writable({'write':(_0xe88fd4,_0x5a628e,_0x5c11b3)=>{function _0x206e5b(_0x288e2e,_0x930741,_0x565275,_0xd0861b){return _0x4b1852(_0x930741,_0x288e2e- -0x54,_0x565275-0x1a9,_0xd0861b-_0x38646c._0x556464);}function _0x4d5b9f(_0x248257,_0x419397,_0x3df360,_0x3e6caf){return _0x4b1852(_0x3e6caf,_0x3df360- -0x2b8,_0x3df360-_0x4d8345._0x5adb0d,_0x3e6caf-0x15a);}_0x206e5b(_0x3de6e9._0x2b136f,_0x3de6e9._0x1d8bcd,0x40b,0x436)!==_0x4d5b9f(_0x3de6e9._0x38c52e,_0x3de6e9._0x471607,0x1fa,0x1d3)?_0x15d468[_0x206e5b(_0x3de6e9._0x2522f3,_0x3de6e9._0x5d8f12,0x3fd,0x41e)](_0x5c11b3):_0x320650[_0x206e5b(0x440,0x431,_0x3de6e9._0x2fe2df,_0x3de6e9._0x7227c4)]=_0x2168ea[_0x4d5b9f(_0x3de6e9._0x3d3c42,_0x3de6e9._0x37e4b6,_0x3de6e9._0x169f4c,0x12c)]('=')[0x1*0x269+-0x224+-0x44];}}),_0x43e64e={};_0x43e64e['input']=process[_0x4b1852(0x4b4,0x489,_0x2b79fd._0x400a2b,_0x2b79fd._0x29530b)],_0x43e64e[_0x4b1852(0x4a7,_0x2b79fd._0x3d6f08,0x4bb,0x4ea)]=_0x16c843,_0x43e64e[_0x4b1852(_0x2b79fd._0x592f1c,0x431,_0x2b79fd._0x51857b,_0x2b79fd._0xc8cefd)]=!![];const _0x20d6ea=_0x3aea75[_0x222c85(_0x2b79fd._0x37fcc0,_0x2b79fd._0x2beaf1,_0x2b79fd._0x32dc9b,_0x2b79fd._0x40f474)+'rface'](_0x43e64e);process[_0x222c85(0x3cf,0x405,0x427,0x42c)][_0x222c85(_0x2b79fd._0x4d34c0,0x40d,_0x2b79fd._0x586b9c,0x3d1)](_0x302569),_0x20d6ea['question']('',_0x481211=>{const _0x5b1961={_0x6a8517:0x192,_0x144a40:0x30};function _0x3112fe(_0x26c794,_0x2a8959,_0x368a8b,_0x5524c8){return _0x4b1852(_0x2a8959,_0x368a8b- -0x437,_0x368a8b-_0x5b1961._0x6a8517,_0x5524c8-_0x5b1961._0x144a40);}_0x20d6ea['close'](),console[_0x3112fe(-0x13,-0xc,0x29,0x70)]('');function _0xe26425(_0x56ae9f,_0x25393d,_0x2e3dde,_0x9317b8){return _0x4b1852(_0x2e3dde,_0x9317b8- -_0x1029d6._0x56d508,_0x2e3dde-0x6a,_0x9317b8-_0x1029d6._0x2be707);}_0x1d9bb8[_0xe26425(0x23a,0x24e,0x245,0x272)](_0x29c689,_0x481211);});}else{const _0x3b94d5={};_0x3b94d5[_0x222c85(0x425,_0x2b79fd._0x8f437b,0x3c4,_0x2b79fd._0x5b085c)]=process[_0x4b1852(0x48c,_0x2b79fd._0xdd0e20,0x471,0x4c3)],_0x3b94d5[_0x4b1852(0x4e3,0x49f,_0x2b79fd._0x3227b2,0x4ac)]=process[_0x222c85(_0x2b79fd._0x51b16f,_0x2b79fd._0x4d5de2,_0x2b79fd._0xf67235,_0x2b79fd._0x14466f)];const _0xae564c=_0x3aea75[_0x222c85(0x3f6,0x418,0x421,0x44b)+_0x4b1852(_0x2b79fd._0x5667e2,0x4b6,_0x2b79fd._0x1ceada,0x4f5)](_0x3b94d5);_0xae564c[_0x222c85(0x46b,_0x2b79fd._0x298bbf,0x414,_0x2b79fd._0x1713ef)](_0x302569,_0x55725b=>{const _0x56f78c={_0x2de731:0x6a3};function _0x17e2f4(_0x1419e4,_0x1093e3,_0x1f715a,_0x169dd2){return _0x4b1852(_0x1f715a,_0x1419e4- -_0x56f78c._0x2de731,_0x1f715a-0x63,_0x169dd2-0x1e8);}_0xae564c[_0x4a25ae(-_0x3c1ebc._0xe382e2,-_0x3c1ebc._0x27900d,-0x208,-0x221)]();function _0x4a25ae(_0x4d986b,_0x4743e,_0x363fd2,_0x103178){return _0x222c85(_0x4743e,_0x363fd2- -0x601,_0x363fd2-0x141,_0x103178-_0x3ccb92._0x4cf9cf);}_0x15d468[_0x17e2f4(-0x254,-_0x3c1ebc._0x4c95e9,-_0x3c1ebc._0x4ab323,-_0x3c1ebc._0x564311)](_0x29c689,_0x55725b);});}}else{const _0x1b000c={_0x2b537c:0x9c,_0x16d8be:0xce},_0x4d916e={'yclQZ':function(_0x5d401c){function _0x5388d9(_0x5de859,_0x4bc54b,_0x1f403f,_0x19063d){return _0x222c85(_0x4bc54b,_0x19063d-0x147,_0x1f403f-0x54,_0x19063d-0xcd);}return _0x1d9bb8[_0x5388d9(_0x3c4928._0x425364,0x557,0x558,_0x3c4928._0x4ee42a)](_0x5d401c);}},_0x199db0=new _0x34827c({'write':(_0x5922b0,_0x15e5e4,_0x585b57)=>{function _0x452b81(_0x3cb632,_0x3de75e,_0xdf81fd,_0x14b207){return _0x222c85(_0x14b207,_0x3de75e- -0x52,_0xdf81fd-0x1c0,_0x14b207-0x180);}_0x4d916e[_0x452b81(0x37b,_0x1ea522._0x55f257,_0x1ea522._0xb1a166,_0x1ea522._0x1645a2)](_0x585b57);}}),_0x4212a8={};_0x4212a8[_0x222c85(0x3d3,_0x2b79fd._0x18b4d7,_0x2b79fd._0x1050ce,_0x2b79fd._0x59b474)]=_0x3ccd9a[_0x222c85(0x461,0x42c,0x46f,0x3fa)],_0x4212a8[_0x222c85(0x45c,0x442,0x431,0x414)]=_0x199db0,_0x4212a8[_0x222c85(_0x2b79fd._0x4f2983,_0x2b79fd._0x25d3a6,0x3d3,0x3a5)]=!![];const _0x295fc1=_0x16a7a6[_0x222c85(_0x2b79fd._0x350d54,0x418,0x408,_0x2b79fd._0x45fb2e)+_0x222c85(0x475,0x459,_0x2b79fd._0x1f172c,_0x2b79fd._0x231041)](_0x4212a8);_0x49674e[_0x222c85(_0x2b79fd._0x271e6c,0x405,_0x2b79fd._0x37ac53,_0x2b79fd._0x22b157)][_0x222c85(0x3eb,_0x2b79fd._0x2af3cc,0x3e5,_0x2b79fd._0x400a2b)](_0x322c02),_0x295fc1['question']('',_0x4d3fba=>{const _0x48060f={_0x5c8a10:0x328};_0x295fc1['close']();function _0x3420d8(_0x35d6c5,_0x4e9f83,_0x7bb2d,_0x19597f){return _0x222c85(_0x4e9f83,_0x35d6c5- -_0x48060f._0x5c8a10,_0x7bb2d-0x1a9,_0x19597f-0x168);}_0x390639['log'](''),_0x1d9bb8[_0x3420d8(_0x1b000c._0x2b537c,0xce,_0x1b000c._0x16d8be,0x74)](_0x225e4e,_0x4d3fba);});}});}function parseArgs(_0x8db62c){const _0x3de43e={_0x25a75a:0x63,_0x564304:0x34,_0x3dd8c4:0x15b,_0x1f50e3:0x176,_0x2b04b7:0x17f,_0x3dcfaa:0x56,_0x44483c:0x1c,_0x55f467:0x6d,_0x22e76e:0x44,_0x11e42b:0x125,_0x5eccf5:0x172,_0x230c42:0xb5,_0x204f28:0x7a,_0x1dd17c:0xa0,_0x5321c5:0x5b,_0x136489:0x4f,_0x4b8c43:0x26,_0x536d31:0x15e,_0x31f4ba:0x154,_0x1ab0a3:0x13f,_0x6a964a:0x8b,_0x90c78d:0x7c,_0x379a76:0x99,_0x694fea:0xd4,_0x292b0c:0x1c9,_0x24ab66:0x180,_0x2a01ae:0x1b2,_0x239621:0x38,_0x157977:0x4b,_0x3c3638:0x9c,_0x4f9d5b:0x160,_0x311489:0x190,_0x3d381b:0x62,_0x2fd550:0x12f,_0x2e8864:0x140,_0x268592:0x3d,_0x481b40:0x53,_0xb69ec:0x40,_0x43b6f6:0x5d,_0x44bbff:0x20,_0x27c538:0x42,_0x19f955:0x35,_0x1bd569:0x72,_0x19d450:0x7e,_0x28f6a6:0x5d,_0x5e2a70:0x94,_0x4bee68:0x4b,_0x396eda:0x32,_0x5f0dcb:0x16,_0x2cf3b6:0xa6,_0x273d2b:0x86,_0x369099:0x146,_0x4fa562:0x212,_0x3473c8:0x1e6,_0x36fb64:0x5a,_0x1f0b39:0x52,_0xf3d283:0x144,_0x5d9b35:0x171,_0x3b939b:0x14f,_0xe7030:0xa1,_0x48c2d9:0x3c,_0x5152ba:0x15f,_0x411d0f:0x1bd,_0x320ca1:0x83,_0x3b2b4b:0x5b,_0x2a4f46:0xa5,_0x3254a1:0x7,_0x356548:0xb,_0x3aeb40:0x184,_0x29d2c4:0x21b,_0x5f2e23:0x209,_0x1cb1bf:0x1dc,_0x3071a9:0x1cd,_0x5ef5d3:0x194,_0x3d6c5c:0x47,_0x14a690:0x73,_0x57772c:0x3,_0x24041b:0x11f,_0x286c49:0x120,_0x3b732f:0x19a,_0x1394e3:0x5d,_0x14e001:0x89,_0x2a5b45:0xaa,_0x15fbae:0x3a,_0x5a35fe:0x3b,_0x94900:0x2a,_0x4253f9:0x14e,_0x54ac15:0x185,_0x26f499:0xf,_0xcab849:0x39,_0x18ea88:0x9c,_0x59cfa2:0x7b,_0x554d30:0x3b,_0x145476:0x131,_0x4a6923:0x3e,_0x405bc3:0x2d,_0x7d2ed2:0x6,_0xbe2d5a:0x19,_0x3f9b85:0x114,_0x26a91f:0x139},_0x52369d={_0x3d9a47:0x31e},_0x3ad2be={'lQEqE':_0xf6b91b(_0x3de43e._0x25a75a,_0x3de43e._0x564304,0xa8,0x2f)+'create\x20use'+'r','cIqvX':_0x5325be(-0x17d,-0x1ba,-0x1a4,-0x197)+_0x5325be(-_0x3de43e._0x3dd8c4,-0x18e,-_0x3de43e._0x1f50e3,-_0x3de43e._0x2b04b7)+_0xf6b91b(_0x3de43e._0x3dcfaa,0xf,_0x3de43e._0x44483c,_0x3de43e._0x55f467)+_0xf6b91b(0x3a,_0x3de43e._0x22e76e,-0x5,0x76)+'cters','WvolG':function(_0x460b98){return _0x460b98();},'MTuxY':_0x5325be(-0x1b3,-_0x3de43e._0x11e42b,-_0x3de43e._0x5eccf5,-0x16e),'ifpqW':_0xf6b91b(0x8a,_0x3de43e._0x230c42,0x76,0xce)+'=','OJGzh':function(_0x9e3e13,_0x14c457){return _0x9e3e13!==_0x14c457;},'HvJck':_0xf6b91b(_0x3de43e._0x204f28,0xad,_0x3de43e._0x1dd17c,_0x3de43e._0x5321c5),'hHvDs':_0xf6b91b(_0x3de43e._0x136489,_0x3de43e._0x4b8c43,0x44,0x48),'reSVq':function(_0x10a172,_0x1d58a6){return _0x10a172===_0x1d58a6;},'rUoda':_0x5325be(-0x11b,-_0x3de43e._0x536d31,-_0x3de43e._0x31f4ba,-_0x3de43e._0x1ab0a3),'AhIvB':_0xf6b91b(_0x3de43e._0x6a964a,_0x3de43e._0x90c78d,_0x3de43e._0x379a76,_0x3de43e._0x694fea),'LshOX':_0xf6b91b(0x51,0x25,0x9,0x38),'GWxPV':_0x5325be(-_0x3de43e._0x292b0c,-_0x3de43e._0x24ab66,-0x1d0,-_0x3de43e._0x2a01ae)+'=','fnrvn':_0xf6b91b(0x7f,_0x3de43e._0x239621,_0x3de43e._0x157977,_0x3de43e._0x3c3638),'sNFoN':_0x5325be(-_0x3de43e._0x4f9d5b,-0x19b,-_0x3de43e._0x311489,-0x1a5),'ihvNk':'--role='},_0x55204d={};_0x55204d[_0xf6b91b(0x84,_0x3de43e._0x239621,0xa2,_0x3de43e._0x3d381b)]=null,_0x55204d[_0x5325be(-0x148,-0x120,-_0x3de43e._0x2fd550,-_0x3de43e._0x2e8864)]=null;function _0xf6b91b(_0x182dbe,_0x145b74,_0x2f8ceb,_0x235e5e){return _0x8da7(_0x182dbe- -0x13b,_0x2f8ceb);}_0x55204d[_0xf6b91b(_0x3de43e._0x268592,_0x3de43e._0x481b40,_0x3de43e._0xb69ec,_0x3de43e._0x43b6f6)]=null,_0x55204d[_0xf6b91b(_0x3de43e._0x44bbff,_0x3de43e._0x27c538,0x60,-0xb)]=null;function _0x5325be(_0x4cf98a,_0x1c6229,_0x5a86b1,_0x21135a){return _0x8da7(_0x21135a- -_0x52369d._0x3d9a47,_0x5a86b1);}_0x55204d['role']=_0x3ad2be[_0xf6b91b(_0x3de43e._0x19f955,_0x3de43e._0x1bd569,_0x3de43e._0x19d450,0x3b)];const _0x7bce40=_0x55204d;for(const _0x4b5162 of _0x8db62c){if(_0x4b5162[_0xf6b91b(_0x3de43e._0x28f6a6,0x8a,_0x3de43e._0x5e2a70,_0x3de43e._0x4bee68)](_0x3ad2be[_0xf6b91b(0x22,0x12,_0x3de43e._0x396eda,_0x3de43e._0x5f0dcb)]))_0x3ad2be[_0xf6b91b(0xa8,_0x3de43e._0x1dd17c,0xba,0xe2)]('uVWPM',_0x3ad2be[_0xf6b91b(_0x3de43e._0x1dd17c,_0x3de43e._0x2cf3b6,_0x3de43e._0x273d2b,0xc9)])?(_0x14365[_0x5325be(-0x180,-0x12a,-0x107,-_0x3de43e._0x369099)](_0x3ad2be[_0x5325be(-_0x3de43e._0x4fa562,-0x1a6,-_0x3de43e._0x3473c8,-0x1ce)],_0x5a4d2a),_0x383495[_0xf6b91b(0x9d,_0x3de43e._0x36fb64,_0x3de43e._0x1f0b39,0x57)]('Error:\x20Fai'+_0x5325be(-0x152,-0x140,-_0x3de43e._0xf3d283,-_0x3de43e._0x5d9b35)+_0x5325be(-0x18d,-_0x3de43e._0x536d31,-0x19a,-_0x3de43e._0x3b939b)+'\x20'+_0x49d6b7[_0xf6b91b(0x87,_0x3de43e._0xe7030,0x67,0x46)]),_0x10930c[_0xf6b91b(0x47,_0x3de43e._0x48c2d9,0x1a,0x44)](-0xa7c+0x1*0x43+0x16*0x77)):_0x7bce40[_0x5325be(-0x1a4,-0x192,-0x111,-_0x3de43e._0x5152ba)]=_0x4b5162[_0x5325be(-_0x3de43e._0x411d0f,-0x20c,-0x1a2,-0x1ca)]('=')[-0x3d*-0x1d+0xe55+-0x153d];else{if(_0x4b5162['startsWith'](_0x3ad2be['hHvDs']))_0x3ad2be['reSVq'](_0x3ad2be[_0xf6b91b(0x91,_0x3de43e._0x320ca1,_0x3de43e._0x3b2b4b,_0x3de43e._0x2a4f46)],_0xf6b91b(0xe,0x50,-_0x3de43e._0x3254a1,_0x3de43e._0x356548))?(_0x2060a9[_0x5325be(-0x10a,-_0x3de43e._0x3aeb40,-0x109,-0x146)](_0x5325be(-_0x3de43e._0x29d2c4,-_0x3de43e._0x5f2e23,-_0x3de43e._0x1cb1bf,-_0x3de43e._0x3071a9)+_0x5325be(-0x11c,-_0x3de43e._0x5ef5d3,-_0x3de43e._0x3b939b,-0x148)+'equired'),_0x56d5f1[_0xf6b91b(_0x3de43e._0x3d6c5c,_0x3de43e._0x14a690,_0x3de43e._0x57772c,0x5b)](0x1b73+0x5e*0x63+-0x3fcc)):_0x7bce40[_0x5325be(-0x120,-_0x3de43e._0x24041b,-_0x3de43e._0x286c49,-0x140)]=_0x4b5162[_0x5325be(-0x17d,-0x19f,-_0x3de43e._0x3b732f,-0x1ca)]('=')[0x5*0x6f3+-0x13*0x71+-0x1a5b];else{if(_0x4b5162[_0xf6b91b(_0x3de43e._0x1394e3,0x90,0x99,0x4f)](_0x3ad2be['AhIvB']))_0x3ad2be['reSVq'](_0x3ad2be['LshOX'],_0x3ad2be[_0xf6b91b(_0x3de43e._0x14e001,_0x3de43e._0x2a5b45,0x82,0x5b)])?_0x7bce40[_0xf6b91b(_0x3de43e._0x268592,_0x3de43e._0x15fbae,0x75,_0x3de43e._0x5a35fe)]=_0x4b5162[_0xf6b91b(0x19,0x4e,-0x18,-_0x3de43e._0x94900)]('=')[0x1fa6+-0x59d*-0x2+-0x893*0x5]:(_0x244fe1[_0x5325be(-_0x3de43e._0x4253f9,-0xfe,-_0x3de43e._0x54ac15,-0x146)](_0x3ad2be[_0xf6b91b(0x2e,-0xd,0x26,_0x3de43e._0x26f499)]),_0x5dedd0[_0xf6b91b(_0x3de43e._0x3d6c5c,0x13,-0x4,_0x3de43e._0xcab849)](-0x7*0x387+-0x3*0x5de+-0x1526*-0x2));else{if(_0x4b5162[_0xf6b91b(0x5d,0x20,_0x3de43e._0x90c78d,_0x3de43e._0x18ea88)](_0x3ad2be[_0xf6b91b(_0x3de43e._0x59cfa2,0xad,_0x3de43e._0x554d30,0x5d)]))_0x3ad2be[_0x5325be(-_0x3de43e._0x145476,-0x152,-0xf4,-0x13b)](_0x3ad2be[_0xf6b91b(0x7c,0x63,_0x3de43e._0x4a6923,0x4d)],_0x3ad2be['sNFoN'])?_0x7bce40[_0xf6b91b(0x20,-_0x3de43e._0x405bc3,0x28,-_0x3de43e._0x7d2ed2)]=_0x4b5162[_0xf6b91b(_0x3de43e._0xbe2d5a,-0x1a,0x26,-0x33)]('=')[-0x1*0x2f7+-0x1b7*-0xb+-0xfe5]:_0x3ad2be[_0x5325be(-0x129,-_0x3de43e._0x3f9b85,-0x102,-0x150)](_0x3c8053);else _0x4b5162[_0x5325be(-0x16b,-_0x3de43e._0x26a91f,-0x1b5,-0x186)](_0x3ad2be['ihvNk'])&&(_0x7bce40[_0x5325be(-0x1d5,-0x1cb,-0x1c3,-0x1ba)]=_0x4b5162[_0x5325be(-0x18a,-0x198,-0x199,-0x1ca)]('=')[-0x16db+-0x95e*-0x3+-0x53e]);}}}}return _0x7bce40;}export async function createUserCommand(_0x146bff){const _0x4ac705={_0x13204b:0xd2,_0x4b9cce:0x93,_0x31ffbb:0x459,_0x5aced0:0x498,_0x5937d9:0xeb,_0x4bd675:0x11a,_0x3389ed:0x159,_0x439332:0xfc,_0x1db8fe:0x151,_0x38f6de:0x126,_0x21b421:0xe0,_0x4391dc:0x85,_0x259616:0xa2,_0x39ff57:0x466,_0x1aa7e3:0x49c,_0x4aaca4:0xac,_0x4c7c2d:0x9f,_0x39e6c8:0x99,_0x11aa61:0x68,_0x54e909:0x424,_0x5b9bf3:0x42b,_0x304c22:0x53,_0x202ecf:0xa1,_0x2ee518:0xe2,_0x6ff120:0xe5,_0x3a49d9:0x4b9,_0x1a6b18:0x46c,_0x3e76d5:0x437,_0x48ad76:0x434,_0x3f7559:0x470,_0x5da0a1:0x464,_0x40d312:0x439,_0x1e8245:0x43f,_0x3ba9c0:0x41e,_0x7d4e2d:0x465,_0x24e883:0x426,_0x8e7b2c:0x439,_0x2d93cb:0x460,_0x49cef9:0x113,_0x4c2cef:0x120,_0x123a09:0xdd,_0x24fa4c:0xee,_0x4a0036:0x101,_0x23721d:0x475,_0x20bdb1:0x41d,_0x3751a8:0x40a,_0x22848a:0x455,_0x2888e3:0x99,_0x463762:0xfe,_0x4fba8d:0x127,_0x152869:0xe2,_0x4a7012:0xb7,_0x30a5ce:0x7c,_0x263e43:0x9d,_0x49e97b:0x423,_0x49acf7:0x11d,_0x1963ad:0xd9,_0x48957c:0x103,_0xb79534:0x3e3,_0x516462:0x92,_0x503f68:0xa4,_0x575b98:0x11f,_0xa9fdb4:0xe9,_0x2d16ec:0x462,_0x5b7ebe:0x442,_0x48b5eb:0x46f,_0x36b073:0x76,_0x1b802b:0x6e,_0x5e1108:0x86,_0x94d8d5:0x8d,_0x199b05:0x425,_0x1eb665:0x443,_0x14bf46:0x446,_0x285681:0x4ae,_0x486ead:0x4a6,_0x23ecba:0x4e7,_0x9a6f4:0x123,_0x3ebb0e:0x14a,_0x2bcfb2:0x425,_0x2bb6b4:0x482,_0x61fc40:0x44d,_0x5052df:0x4a5,_0x46cc4a:0x4a2,_0x38f47f:0x4be,_0x1baa5e:0x4a1,_0x33620d:0x451,_0x3deab8:0x473,_0xb57b47:0x484,_0x30d956:0xa8,_0x243512:0x5f,_0x4c002a:0x495,_0x13c489:0x49e,_0x283126:0x44c,_0x167a06:0x411,_0x479e67:0x109,_0xd53968:0xfa,_0x291504:0x49b,_0x2d79be:0x4dd,_0x589188:0x489,_0x4fc322:0x40a,_0x1a5530:0x44e,_0x2fd7c8:0x4d8,_0x187649:0x429,_0x138b24:0x45b,_0x44e662:0xd5,_0x22b23d:0x42c,_0x136bee:0x4c0,_0x5a2d31:0x441,_0xdcf44c:0x142,_0xac08d6:0xf5,_0x36a6d2:0xbf,_0x5189ef:0x12d,_0x470385:0x164,_0x1de6da:0x453,_0x32701f:0x438,_0x31a1b1:0x470,_0x144fc5:0xd7,_0x30b590:0xcd,_0x2f7aad:0xb4,_0x1aced9:0x13b,_0x5f3033:0x444,_0x36618d:0x52,_0xc7c7e1:0x9d,_0x584323:0xe7,_0x5b8209:0x421,_0x90a2a6:0x456,_0x4d5a9a:0x433,_0x312c1c:0xc8,_0x312da5:0xe5,_0x517df2:0x441,_0x4efad2:0x4b9,_0x24d56e:0x432,_0x1f3cf6:0x430,_0x381336:0x42d,_0x50bf01:0x450,_0x53e1ad:0x46c,_0x77789e:0x141,_0x2d7377:0x104,_0x58aa4d:0x10d,_0xa60f29:0x14e,_0x160cd5:0xb7,_0x5c404f:0x85,_0x531d03:0x79,_0x4eac6e:0x45c,_0x28d14a:0x409,_0x5b0ed4:0x44d,_0x9b56cf:0x42d,_0xd4b1ea:0x448,_0x37026e:0x46c,_0x4954f3:0x490,_0x10df9:0xd4,_0x41bb0a:0x122,_0x41633f:0x10a,_0x53f46c:0x113,_0x5c8bc2:0x120,_0x2f8917:0x154,_0x30e586:0x407,_0x307106:0x3e6,_0x3f144:0x12c,_0x121978:0xf9,_0x101423:0x6e,_0x17a84e:0x59,_0x5ed7cb:0x408,_0x2254ec:0x466,_0x4b0835:0xea,_0x1f3435:0x44a,_0x450529:0x3fd,_0x24de37:0x48a,_0x255497:0x46e,_0x2c4cd4:0x445,_0x1de100:0x156,_0xa2ab45:0xe0,_0x438e52:0x14c,_0x3baa6c:0x120,_0x3c5cb4:0x116,_0x3ea75b:0xf3,_0x5501ad:0xc1,_0x52a0fd:0x3f8,_0x19a170:0x118,_0x3e203c:0x117,_0x4cbcdf:0x155,_0x45e969:0xd0,_0x52cd01:0x493,_0x4ab5d2:0x45e,_0x387470:0xe8,_0x4ea7b7:0xc0,_0x3e6dc0:0xe5,_0x332ada:0x4a2,_0x5c8cdc:0x4e6,_0x51aa18:0x47d,_0x1c76c8:0x4a2,_0x14e629:0x496,_0x4d10b8:0x422,_0x30031e:0x454,_0xed4f4a:0x100,_0x25933f:0x449,_0x38c3d0:0x43e,_0x1118f8:0x77,_0x301097:0x44f,_0x247757:0x482,_0x1302a2:0x413,_0x27c4f8:0xb8,_0x282217:0xb1,_0xede211:0x479,_0xced2a9:0xc5,_0x50c910:0x495,_0x7fc3eb:0x81,_0xba3bb0:0x9e,_0x22232c:0xf8,_0x379302:0xe8,_0x2a8da1:0xc8,_0x17dbff:0x4c9,_0x3f7ab4:0x491,_0x4d5a6a:0xb2,_0x4521c3:0xaf,_0x2d8b5e:0x11b,_0x1e4c06:0xde,_0x2586b0:0xf6,_0x457826:0x128,_0x340dda:0xdb,_0x20eed7:0xbc,_0x302252:0xf2,_0x5c0832:0x124,_0x487dba:0x478,_0x292b63:0x46a,_0x3c3576:0x42a,_0x378925:0x434,_0x5441fd:0xf0,_0x329e40:0x40b,_0x20f8d3:0x43b,_0x5deba7:0x125,_0x553b5f:0x145,_0x380d02:0x141,_0x26916c:0x492,_0x2fd9c9:0x4c4,_0x3f4621:0x479,_0x532cdb:0xbc,_0x374d61:0xde,_0x188f4d:0xcf,_0x3e625a:0x483,_0x298a7e:0x494,_0x122a9d:0x44c,_0x537760:0x414,_0x29fe05:0x134,_0x376f9c:0x133,_0x1b9efc:0x448,_0x2ab7c5:0x489,_0xb92380:0x4d6,_0x466bf2:0xb2,_0xcf2cb1:0xf4,_0x1df965:0x72,_0x2dfc5d:0x4a8,_0x3266c7:0x490,_0x5d42f2:0x492,_0x4c8495:0x4a8,_0x2c0fc8:0x4c1,_0xcf0005:0x420,_0x4d5e2c:0x43e,_0x5eb8f8:0x11a,_0x577fc8:0x153,_0x573bfa:0x455,_0x166deb:0x415,_0x3fb35a:0x102,_0x161bee:0x42f,_0x218b1f:0x41d,_0x5a0bea:0xed,_0x24794f:0x8c,_0x4b0aaa:0xb9,_0x477e37:0x492,_0x258d9c:0x4d4,_0x3a667e:0x46d,_0x14ddb8:0x49d,_0x56e875:0x129,_0x3e0c38:0x120,_0x24d7d4:0x12c,_0x297992:0x4e6,_0x34d282:0xf0,_0x3442dd:0xcc,_0x1d332e:0x46b,_0x5274ae:0xf0,_0x2a654a:0x10e,_0x116df7:0x104,_0x881b51:0x40e,_0x1318c1:0x42e,_0x14624:0x452,_0x3470f:0x498,_0x198c96:0xa6,_0x25aa7f:0x126,_0x59f30e:0xeb,_0x27657b:0x114,_0x25237b:0x46e,_0x154752:0x4b7,_0xdab459:0x4ab,_0x9887d2:0x453,_0x418999:0x130,_0x4e7e23:0x47a,_0x163a3e:0x41c,_0x311c27:0xb6,_0x126580:0xd1,_0x5a3156:0x8b,_0x569b8a:0x434,_0x4a1848:0x430,_0x51da62:0x44c,_0x57c2da:0x4ad,_0x146f95:0x475,_0x1156f3:0xc9,_0x3d256b:0xe1,_0x190423:0x9a,_0x1aace3:0x431,_0x344831:0x437,_0x48a29e:0xa3,_0x34ec42:0x43b,_0x2e40a0:0x477,_0x298a9c:0x4b5,_0xb09c2a:0x462,_0x273da7:0x49f},_0x430f1c={_0x355005:0x2ca},_0x4ed70a={'sbtox':function(_0x56e476,_0xc033ce){return _0x56e476(_0xc033ce);},'PYdqr':'Error:\x20Pas'+_0x4aa900(-_0x4ac705._0x13204b,-0x82,-0xa8,-0x98)+_0x43415a(0x495,0x4c1,0x451,0x4cc),'fuCxd':function(_0x4289e0,_0x309171){return _0x4289e0(_0x309171);},'QeBKl':function(_0x3204cb,_0x18d909){return _0x3204cb(_0x18d909);},'fywfg':'nkYRD','MLjBX':_0x4aa900(-0x79,-0xaa,-0xc2,-_0x4ac705._0x4b9cce),'BZooO':function(_0x3a6759,_0x52543d){return _0x3a6759!==_0x52543d;},'xcgWp':_0x43415a(_0x4ac705._0x31ffbb,0x464,_0x4ac705._0x5aced0,0x45b),'Qfjeo':'Full\x20Name:'+'\x20','ROGoz':function(_0x2e0ee8,_0x358c11,_0x5c41f6){return _0x2e0ee8(_0x358c11,_0x5c41f6);},'yvGCT':'Password:\x20','fPUzs':function(_0x5bdcd1,_0x4aa1ed,_0x2eebb5){return _0x5bdcd1(_0x4aa1ed,_0x2eebb5);},'Tmqkg':_0x4aa900(-_0x4ac705._0x5937d9,-0xf1,-_0x4ac705._0x4bd675,-_0x4ac705._0x3389ed)+'ssword:\x20','hXCIL':function(_0x5865c9,_0x3595d5){return _0x5865c9!==_0x3595d5;},'PZrYE':_0x4aa900(-0x121,-0x168,-0x12e,-_0x4ac705._0x439332),'bmVVc':_0x4aa900(-0xdb,-_0x4ac705._0x1db8fe,-_0x4ac705._0x38f6de,-_0x4ac705._0x21b421),'hWGrl':function(_0x93c2ee,_0x527b59){return _0x93c2ee===_0x527b59;},'gacpX':_0x4aa900(-0x117,-0x115,-0x118,-0xfd),'aEnUv':_0x4aa900(-0xc7,-_0x4ac705._0x4391dc,-_0x4ac705._0x259616,-0x5b),'aINsy':_0x43415a(_0x4ac705._0x39ff57,0x485,0x482,0x45f)+_0x43415a(0x473,0x425,_0x4ac705._0x1aa7e3,0x4b4)+_0x4aa900(-_0x4ac705._0x4aaca4,-_0x4ac705._0x4c7c2d,-_0x4ac705._0x39e6c8,-_0x4ac705._0x11aa61),'lhYAO':_0x43415a(_0x4ac705._0x54e909,0x430,0x42a,_0x4ac705._0x5b9bf3),'cUCfx':function(_0x4cf742,_0x48869b){return _0x4cf742<_0x48869b;},'QTbiW':function(_0x1837db,_0x421aec){return _0x1837db!==_0x421aec;},'PlAFl':_0x4aa900(-_0x4ac705._0x304c22,-0xac,-_0x4ac705._0x202ecf,-0x8d),'liXKk':function(_0x3618ab,_0x11b28e){return _0x3618ab!==_0x11b28e;},'oZHZj':_0x4aa900(-0xce,-_0x4ac705._0x2ee518,-0xcb,-_0x4ac705._0x6ff120),'fQNoN':function(_0x39c3bb,_0x499c2f){return _0x39c3bb===_0x499c2f;},'blXBY':'KTDek','kheKs':function(_0x4b7a53,_0x258486){return _0x4b7a53(_0x258486);},'mhKck':_0x43415a(0x49c,0x474,_0x4ac705._0x3a49d9,_0x4ac705._0x1a6b18)+_0x43415a(0x476,0x44c,_0x4ac705._0x3e76d5,0x446)+_0x43415a(0x445,_0x4ac705._0x48ad76,_0x4ac705._0x3f7559,_0x4ac705._0x5da0a1),'eCAhR':_0x43415a(_0x4ac705._0x40d312,_0x4ac705._0x1e8245,0x3f4,_0x4ac705._0x3ba9c0)+_0x43415a(_0x4ac705._0x7d4e2d,_0x4ac705._0x24e883,0x484,_0x4ac705._0x8e7b2c),'RbfVQ':_0x43415a(0x487,0x450,_0x4ac705._0x2d93cb,0x4d4),'iJYXX':_0x4aa900(-_0x4ac705._0x49cef9,-_0x4ac705._0x4c2cef,-_0x4ac705._0x123a09,-_0x4ac705._0x24fa4c)+'create\x20use'+'r'},_0x1d0ba9=_0x4ed70a[_0x4aa900(-0x9b,-_0x4ac705._0x4a0036,-0xca,-0xb6)](parseArgs,_0x146bff);!_0x1d0ba9['username']&&(_0x43415a(0x470,0x48c,0x43f,_0x4ac705._0x23721d)===_0x4ed70a[_0x43415a(_0x4ac705._0x20bdb1,0x3fe,_0x4ac705._0x3751a8,_0x4ac705._0x22848a)]?_0x1d0ba9[_0x4aa900(-_0x4ac705._0x2888e3,-0x81,-0xbc,-_0x4ac705._0x463762)]=await prompt(_0x4ed70a['MLjBX']):_0x12be27[_0x43415a(0x442,0x460,0x41e,0x470)]=_0x492e8c[_0x4aa900(-0x13e,-0x11b,-_0x4ac705._0x4fba8d,-_0x4ac705._0x152869)]('=')[-0x2*-0x6cd+0x4f*-0x37+0x360]);!_0x1d0ba9[_0x4aa900(-_0x4ac705._0x4a7012,-_0x4ac705._0x30a5ce,-_0x4ac705._0x263e43,-0xc7)]&&(_0x1d0ba9['email']=await _0x4ed70a['QeBKl'](prompt,_0x43415a(0x42a,0x435,0x40d,_0x4ac705._0x49e97b)));!_0x1d0ba9[_0x4aa900(-_0x4ac705._0x49acf7,-_0x4ac705._0x1963ad,-_0x4ac705._0x48957c,-0x11f)]&&(_0x4ed70a[_0x43415a(0x41c,0x45f,_0x4ac705._0xb79534,0x3ee)](_0x4ed70a[_0x4aa900(-0xe1,-_0x4ac705._0x516462,-_0x4ac705._0x503f68,-0x66)],_0x4ed70a[_0x4aa900(-0x64,-0x92,-0xa4,-0xe5)])?_0x438473[_0x4aa900(-_0x4ac705._0x575b98,-0x140,-0x120,-_0x4ac705._0xa9fdb4)]=_0x16a192[_0x43415a(0x41e,0x40e,0x464,_0x4ac705._0x2d16ec)]('=')[-0x78b+0x1b28+-0x139c]:_0x1d0ba9[_0x43415a(_0x4ac705._0x5b7ebe,0x489,_0x4ac705._0x48b5eb,0x455)]=await _0x4ed70a[_0x4aa900(-_0x4ac705._0x36b073,-_0x4ac705._0x1b802b,-0xaa,-0x5e)](prompt,_0x4ed70a[_0x4aa900(-_0x4ac705._0x5e1108,-_0x4ac705._0x94d8d5,-0xbd,-0x79)]));if(!_0x1d0ba9[_0x43415a(_0x4ac705._0x199b05,_0x4ac705._0x1eb665,0x45a,0x404)]){_0x1d0ba9[_0x4aa900(-0x131,-0x11d,-0x120,-0x122)]=await _0x4ed70a[_0x43415a(0x48b,0x492,_0x4ac705._0x14bf46,_0x4ac705._0x285681)](prompt,_0x4ed70a['yvGCT'],!![]);const _0x3b4c0b=await _0x4ed70a[_0x43415a(_0x4ac705._0x486ead,_0x4ac705._0x23ecba,0x4bd,0x466)](prompt,_0x4ed70a[_0x4aa900(-_0x4ac705._0x9a6f4,-_0x4ac705._0x48957c,-0xfc,-_0x4ac705._0x3ebb0e)],!![]);_0x1d0ba9[_0x43415a(_0x4ac705._0x2bcfb2,0x454,0x41e,0x420)]!==_0x3b4c0b&&(_0x4ed70a[_0x43415a(_0x4ac705._0x2bb6b4,_0x4ac705._0x61fc40,0x475,_0x4ac705._0x5052df)](_0x4ed70a['PZrYE'],_0x4ed70a['bmVVc'])?(console[_0x43415a(_0x4ac705._0x46cc4a,0x4e6,_0x4ac705._0x38f47f,_0x4ac705._0x1baa5e)](_0x43415a(_0x4ac705._0x33620d,_0x4ac705._0x3deab8,_0x4ac705._0xb57b47,0x48c)+_0x4aa900(-0x66,-0x87,-_0x4ac705._0x30d956,-_0x4ac705._0x243512)+_0x43415a(_0x4ac705._0x4c002a,0x4aa,_0x4ac705._0x13c489,0x4c2)),process[_0x43415a(_0x4ac705._0x283126,0x463,0x45f,_0x4ac705._0x167a06)](-0x107a+0x153d+0x15*-0x3a)):(_0x4215d5[_0x4aa900(-_0x4ac705._0x479e67,-0xf6,-_0x4ac705._0xd53968,-0xaf)](),_0x4ed70a[_0x43415a(_0x4ac705._0x291504,_0x4ac705._0x2d93cb,_0x4ac705._0x2d79be,0x4ad)](_0x48ace2,_0x2602f7)));}function _0x43415a(_0x18ed49,_0x201f21,_0x1096a4,_0x4809c2){return _0x8da7(_0x18ed49-_0x430f1c._0x355005,_0x4809c2);}(!_0x1d0ba9[_0x43415a(_0x4ac705._0x589188,0x4a8,0x44b,0x48d)]||_0x4ed70a[_0x43415a(0x447,0x43c,_0x4ac705._0x4fc322,_0x4ac705._0x1a5530)](_0x1d0ba9['username']['trim'](),''))&&(_0x4ed70a['gacpX']!=='Zumml'?(console['error'](_0x43415a(0x41b,0x3d2,0x419,0x3ef)+_0x43415a(0x4a0,0x4de,0x4a7,_0x4ac705._0x2fd7c8)+_0x43415a(_0x4ac705._0x187649,0x431,0x3e3,0x3e4)),process[_0x43415a(0x44c,_0x4ac705._0x138b24,_0x4ac705._0x3e76d5,0x474)](0xb*0xca+0x25e4+-0x7*0x6a7)):(_0x86a54b[_0x4aa900(-_0x4ac705._0x44e662,-0xeb,-0xa3,-0x7c)](_0x4aa900(-0x11f,-_0x4ac705._0x38f6de,-0x113,-0xcb)+'alid\x20usern'+_0x43415a(_0x4ac705._0x1a6b18,0x44d,_0x4ac705._0x22b23d,0x498)+_0x5ab1ce[_0x43415a(0x489,0x485,_0x4ac705._0x136bee,_0x4ac705._0x5a2d31)]+(_0x4aa900(-_0x4ac705._0x38f6de,-0xd8,-0x115,-_0x4ac705._0xdcf44c)+_0x4aa900(-_0x4ac705._0xac08d6,-_0x4ac705._0x36a6d2,-0xe9,-0xbe)+_0x4aa900(-0x16a,-0x126,-_0x4ac705._0x5189ef,-_0x4ac705._0x470385)+_0x43415a(_0x4ac705._0x1de6da,_0x4ac705._0x32701f,_0x4ac705._0x31a1b1,0x441)+_0x4aa900(-_0x4ac705._0x144fc5,-0xe7,-_0x4ac705._0x30b590,-_0x4ac705._0x2f7aad)+_0x4aa900(-_0x4ac705._0x1aced9,-0x112,-0x109,-0xe2))),_0x3595ff[_0x43415a(_0x4ac705._0x283126,0x46b,0x431,_0x4ac705._0x5f3033)](0x8ff+0xe30+-0x172e)));(!_0x1d0ba9[_0x4aa900(-0x84,-_0x4ac705._0x36618d,-0x9d,-0xa7)]||_0x1d0ba9[_0x4aa900(-0xba,-_0x4ac705._0x2f7aad,-_0x4ac705._0xc7c7e1,-_0x4ac705._0x584323)][_0x43415a(_0x4ac705._0x5b8209,_0x4ac705._0x90a2a6,_0x4ac705._0x283126,_0x4ac705._0x4d5a9a)]()==='')&&(_0x4aa900(-0xc3,-_0x4ac705._0x312c1c,-_0x4ac705._0x259616,-_0x4ac705._0x312da5)===_0x4ed70a[_0x43415a(0x46b,0x4b7,_0x4ac705._0x517df2,0x45e)]?(console[_0x43415a(0x4a2,0x485,_0x4ac705._0x4efad2,0x49a)](_0x4ed70a['aINsy']),process['exit'](-0xd*-0x6+-0x8fd+-0x458*-0x2)):(_0x100da1[_0x43415a(0x44b,0x416,_0x4ac705._0x24d56e,_0x4ac705._0x1a5530)](),_0x10fd1c[_0x43415a(_0x4ac705._0x22848a,_0x4ac705._0x1f3cf6,0x42a,_0x4ac705._0x381336)](''),_0x4ed70a[_0x43415a(0x49b,_0x4ac705._0x50bf01,0x462,0x494)](_0x2dac87,_0x29eb5d)));(!_0x1d0ba9['name']||_0x4ed70a[_0x43415a(0x447,_0x4ac705._0x53e1ad,0x45f,0x436)](_0x1d0ba9['name'][_0x4aa900(-0x16f,-_0x4ac705._0x77789e,-0x124,-0xe8)](),''))&&(_0x4ed70a[_0x4aa900(-_0x4ac705._0x2d7377,-0xd9,-_0x4ac705._0x58aa4d,-_0x4ac705._0xa60f29)]==='xqpUs'?(console[_0x4aa900(-_0x4ac705._0x160cd5,-_0x4ac705._0x5c404f,-0xa3,-_0x4ac705._0x531d03)](_0x43415a(0x412,_0x4ac705._0x4eac6e,0x405,_0x4ac705._0x28d14a)+_0x43415a(_0x4ac705._0x5b0ed4,_0x4ac705._0x9b56cf,0x45b,0x45d)+_0x43415a(_0x4ac705._0xd4b1ea,_0x4ac705._0x37026e,0x444,0x485)),process['exit'](0x226+0x15b6+-0x1*0x17db)):(_0x8efdd2[_0x4aa900(-_0x4ac705._0x1963ad,-0xb0,-0xa3,-0x95)]('Error:\x20Ema'+_0x43415a(_0x4ac705._0x3deab8,0x496,_0x4ac705._0x4954f3,0x4b5)+'ired'),_0x1c768c[_0x4aa900(-_0x4ac705._0x10df9,-_0x4ac705._0x41bb0a,-0xf9,-0xb1)](0x2*0xca0+0x1*0x907+-0x2246)));(!_0x1d0ba9[_0x4aa900(-_0x4ac705._0x41633f,-_0x4ac705._0x53f46c,-_0x4ac705._0x5c8bc2,-_0x4ac705._0x2f8917)]||_0x4ed70a['cUCfx'](_0x1d0ba9[_0x43415a(0x425,_0x4ac705._0x30e586,_0x4ac705._0x307106,0x46d)][_0x4aa900(-0x127,-0x116,-_0x4ac705._0x3f144,-_0x4ac705._0x121978)],0x24*-0xa3+-0x18b3*-0x1+-0x1bf))&&(console[_0x4aa900(-_0x4ac705._0x101423,-_0x4ac705._0x17a84e,-0xa3,-0xb8)](_0x43415a(0x451,0x432,_0x4ac705._0x5ed7cb,_0x4ac705._0x2254ec)+'sword\x20must'+_0x4aa900(-_0x4ac705._0x41bb0a,-0xbc,-_0x4ac705._0x4b0835,-0x138)+'st\x208\x20chara'+_0x43415a(_0x4ac705._0x1f3435,0x417,0x437,_0x4ac705._0x450529)),process['exit'](-0x767*0x3+0x6*-0x19b+0x1fd8));function _0x4aa900(_0x1824d2,_0x233693,_0x45e8a8,_0x37d5a6){return _0x8da7(_0x45e8a8- -0x27b,_0x37d5a6);}_0x4ed70a[_0x43415a(_0x4ac705._0x24de37,_0x4ac705._0x255497,_0x4ac705._0x2c4cd4,0x452)](_0x1d0ba9[_0x4aa900(-_0x4ac705._0x1de100,-_0x4ac705._0xa2ab45,-0x117,-_0x4ac705._0x438e52)],_0x4ed70a[_0x4aa900(-_0x4ac705._0x3baa6c,-_0x4ac705._0x3c5cb4,-_0x4ac705._0x3ea75b,-_0x4ac705._0x5501ad)])&&_0x4ed70a[_0x43415a(0x446,0x429,_0x4ac705._0x52a0fd,0x451)](_0x1d0ba9[_0x4aa900(-0x157,-_0x4ac705._0x19a170,-_0x4ac705._0x3e203c,-_0x4ac705._0x4cbcdf)],_0x4ed70a[_0x4aa900(-_0x4ac705._0x49acf7,-0x9e,-_0x4ac705._0x45e969,-0x10b)])&&(_0x4ed70a[_0x43415a(_0x4ac705._0x52cd01,0x4aa,_0x4ac705._0x4ab5d2,0x4a8)](_0x4aa900(-_0x4ac705._0x387470,-0xf7,-_0x4ac705._0x4ea7b7,-0x8b),_0x4aa900(-0xc6,-0x10d,-_0x4ac705._0x3e6dc0,-0x108))?(_0x5632ff[_0x43415a(_0x4ac705._0x332ada,_0x4ac705._0x5c8cdc,_0x4ac705._0x51aa18,0x46b)](_0x4ed70a['PYdqr']),_0x2f991b['exit'](0x859*0x2+0x26e9+0x2*-0x1bcd)):(console[_0x43415a(_0x4ac705._0x1c76c8,_0x4ac705._0x14e629,0x45b,_0x4ac705._0x23721d)]('Error:\x20Inv'+_0x43415a(_0x4ac705._0x4d10b8,_0x4ac705._0x90a2a6,_0x4ac705._0x30031e,0x437)+'\x22'+_0x1d0ba9[_0x4aa900(-0xd2,-_0x4ac705._0xed4f4a,-0x117,-0x117)]+('\x22.\x20Must\x20be'+_0x43415a(_0x4ac705._0x50bf01,_0x4ac705._0x25933f,_0x4ac705._0x38c3d0,0x46a)+_0x4aa900(-0x86,-0x80,-0xbf,-_0x4ac705._0x1118f8))),process[_0x43415a(0x44c,0x46e,0x460,0x488)](-0x15d*0x1c+0x1*-0x12c4+0x38f1)));const _0x3eb8a7=/^[^\s@]+@[^\s@]+\.[^\s@]+$/;!_0x3eb8a7[_0x43415a(_0x4ac705._0x301097,0x493,_0x4ac705._0x247757,_0x4ac705._0x1302a2)](_0x1d0ba9['email'])&&(console['error'](_0x43415a(0x432,0x479,0x40e,0x415)+_0x4aa900(-_0x4ac705._0x27c4f8,-0xb2,-0xde,-_0x4ac705._0x282217)+_0x43415a(_0x4ac705._0xede211,_0x4ac705._0xb57b47,0x4a8,0x458)+_0x1d0ba9[_0x4aa900(-_0x4ac705._0xced2a9,-0x78,-0x9d,-0x78)]+'\x22.'),process[_0x43415a(_0x4ac705._0x283126,0x451,_0x4ac705._0x50c910,0x437)](0x1829+0xa1f+0x9*-0x3cf));const _0x193f62=/^[a-zA-Z0-9_-]+$/;!_0x193f62['test'](_0x1d0ba9[_0x4aa900(-_0x4ac705._0x7fc3eb,-_0x4ac705._0xba3bb0,-0xbc,-_0x4ac705._0x22232c)])&&(console['error'](_0x4aa900(-_0x4ac705._0x379302,-_0x4ac705._0x2a8da1,-_0x4ac705._0x49cef9,-0x10c)+_0x43415a(0x4aa,0x4e8,0x4bb,_0x4ac705._0x17dbff)+_0x43415a(0x46c,0x47e,_0x4ac705._0x3f7ab4,0x499)+_0x1d0ba9[_0x4aa900(-_0x4ac705._0x4d5a6a,-_0x4ac705._0x4521c3,-0xbc,-_0x4ac705._0x503f68)]+(_0x4aa900(-0x14a,-0x128,-0x115,-_0x4ac705._0x2d8b5e)+_0x4aa900(-_0x4ac705._0x1e4c06,-0x10d,-0xe9,-_0x4ac705._0x2586b0)+_0x4aa900(-0x132,-_0x4ac705._0x457826,-0x12d,-0x11b)+_0x4aa900(-_0x4ac705._0x340dda,-_0x4ac705._0x20eed7,-_0x4ac705._0x302252,-_0x4ac705._0x5c0832)+_0x43415a(_0x4ac705._0x487dba,_0x4ac705._0x292b63,_0x4ac705._0x3c3576,_0x4ac705._0x378925)+_0x4aa900(-_0x4ac705._0x5441fd,-0x140,-_0x4ac705._0x479e67,-_0x4ac705._0x5441fd))),process[_0x43415a(_0x4ac705._0x283126,_0x4ac705._0x30031e,_0x4ac705._0x329e40,0x451)](-0x341*0x8+0x1fa9+-0x5a0));try{const _0xfd630d=await _0x4ed70a['QeBKl'](findUserByUsername,_0x1d0ba9['username']);_0xfd630d&&('KTDek'===_0x4ed70a[_0x43415a(_0x4ac705._0x20f8d3,0x487,0x45e,0x46d)]?(console['error'](_0x4aa900(-_0x4ac705._0x5deba7,-_0x4ac705._0x553b5f,-0x12a,-_0x4ac705._0x380d02)+_0x43415a(0x49f,_0x4ac705._0x26916c,_0x4ac705._0x2fd9c9,_0x4ac705._0x3f4621)+_0x1d0ba9[_0x4aa900(-0x107,-0x109,-_0x4ac705._0x532cdb,-_0x4ac705._0x374d61)]+(_0x4aa900(-_0x4ac705._0x4d5a6a,-0x114,-_0x4ac705._0x379302,-_0x4ac705._0x188f4d)+_0x43415a(0x491,_0x4ac705._0x5052df,_0x4ac705._0x3e625a,_0x4ac705._0x298a7e))),process[_0x43415a(_0x4ac705._0x122a9d,0x485,_0x4ac705._0x537760,0x43e)](0x1ee7*0x1+0x2146+0xab2*-0x6)):(_0x508995['error'](_0x4aa900(-_0x4ac705._0x29fe05,-0x12e,-_0x4ac705._0x376f9c,-0x172)+_0x4aa900(-0xe1,-0xd8,-0xf8,-0xbc)+_0x43415a(_0x4ac705._0x1b9efc,0x44d,0x445,0x400)),_0xe67041['exit'](-0x2*0x3d3+0x176b+0x2*-0x7e2)));console[_0x4aa900(-0x107,-0xd5,-_0x4ac705._0x5441fd,-0xf4)]('Creating\x20u'+'ser\x20\x22'+_0x1d0ba9[_0x43415a(_0x4ac705._0x2ab7c5,0x49e,0x4d1,_0x4ac705._0xb92380)]+'\x22...');const _0xf63db0={};_0xf63db0[_0x4aa900(-_0x4ac705._0x466bf2,-_0x4ac705._0x36b073,-0xbc,-0x85)]=_0x1d0ba9[_0x4aa900(-_0x4ac705._0xcf2cb1,-_0x4ac705._0x1df965,-0xbc,-0xef)],_0xf63db0[_0x43415a(_0x4ac705._0x2dfc5d,_0x4ac705._0x3266c7,_0x4ac705._0x5d42f2,0x474)]=_0x1d0ba9[_0x43415a(_0x4ac705._0x4c8495,0x4ea,_0x4ac705._0x2c0fc8,0x4bf)],_0xf63db0[_0x43415a(0x442,_0x4ac705._0x31ffbb,_0x4ac705._0xcf0005,0x447)]=_0x1d0ba9[_0x43415a(0x442,0x430,_0x4ac705._0x4d5e2c,0x447)],_0xf63db0[_0x4aa900(-0xf9,-_0x4ac705._0x3e6dc0,-0x120,-0x143)]=_0x1d0ba9[_0x4aa900(-0x118,-0x14c,-0x120,-0x115)],_0xf63db0[_0x4aa900(-0x13c,-_0x4ac705._0x41633f,-_0x4ac705._0x3e203c,-0xe2)]=_0x1d0ba9[_0x4aa900(-_0x4ac705._0x5eb8f8,-0xe3,-_0x4ac705._0x3e203c,-_0x4ac705._0x577fc8)];const _0x37afef=await _0x4ed70a[_0x43415a(0x428,0x3e9,0x406,0x43f)](createUser,_0xf63db0);console['log'](''),console[_0x43415a(_0x4ac705._0x573bfa,_0x4ac705._0x166deb,0x46b,_0x4ac705._0x2d16ec)](_0x4ed70a[_0x4aa900(-0xad,-_0x4ac705._0x3fb35a,-0xe4,-_0x4ac705._0x44e662)]),console['log'](''),console[_0x43415a(0x455,_0x4ac705._0x161bee,0x427,0x444)](_0x4ed70a['eCAhR']),console[_0x43415a(0x455,0x4a0,_0x4ac705._0x218b1f,0x48b)](_0x4aa900(-_0x4ac705._0x5a0bea,-_0x4ac705._0x24794f,-0xae,-_0x4ac705._0xc7c7e1)+'\x20\x20'+_0x37afef['id']),console[_0x4aa900(-0x131,-_0x4ac705._0x4b0aaa,-_0x4ac705._0x5441fd,-_0x4ac705._0x4fba8d)](_0x43415a(_0x4ac705._0x477e37,0x495,0x460,_0x4ac705._0x258d9c)+':\x20'+_0x37afef[_0x43415a(_0x4ac705._0x589188,_0x4ac705._0x3a667e,_0x4ac705._0x14ddb8,0x4aa)]),console[_0x4aa900(-_0x4ac705._0x188f4d,-0x11a,-_0x4ac705._0x5441fd,-0xa8)](_0x4aa900(-_0x4ac705._0x56e875,-_0x4ac705._0x3e0c38,-_0x4ac705._0x41bb0a,-_0x4ac705._0x24d7d4)+'\x20\x20'+_0x37afef[_0x43415a(0x4a8,0x4db,0x462,_0x4ac705._0x297992)]),console[_0x4aa900(-_0x4ac705._0x144fc5,-0x12b,-_0x4ac705._0x34d282,-_0x4ac705._0x3442dd)]('\x20\x20Name:\x20\x20\x20'+'\x20\x20'+_0x37afef[_0x43415a(0x442,0x431,_0x4ac705._0x1d332e,0x44e)]),console[_0x4aa900(-_0x4ac705._0x584323,-0xc6,-_0x4ac705._0x5274ae,-_0x4ac705._0x2a654a)](_0x4aa900(-0x10a,-_0x4ac705._0x4ea7b7,-_0x4ac705._0x116df7,-_0x4ac705._0x553b5f)+'\x20\x20'+_0x37afef['role']),console[_0x43415a(_0x4ac705._0x22848a,0x42f,_0x4ac705._0x881b51,_0x4ac705._0x1318c1)](''),console[_0x43415a(0x455,0x430,_0x4ac705._0x14624,_0x4ac705._0x3470f)]('The\x20user\x20c'+_0x4aa900(-_0x4ac705._0x198c96,-_0x4ac705._0x25aa7f,-_0x4ac705._0x59f30e,-_0x4ac705._0x27657b)+_0x43415a(_0x4ac705._0x25237b,_0x4ac705._0x154752,_0x4ac705._0xdab459,_0x4ac705._0x9887d2)+_0x43415a(0x463,0x435,0x484,0x4aa)+_0x4aa900(-0x110,-0xe7,-_0x4ac705._0x418999,-0xeb)+_0x43415a(0x42c,0x477,_0x4ac705._0x4e7e23,0x3f6));}catch(_0x48e4ac){if(_0x4ed70a[_0x43415a(_0x4ac705._0x163a3e,0x3f7,_0x4ac705._0x3c3576,_0x4ac705._0x32701f)](_0x4ed70a[_0x4aa900(-0xdd,-_0x4ac705._0x311c27,-_0x4ac705._0x126580,-_0x4ac705._0x5a3156)],_0x4ed70a[_0x4aa900(-0x117,-0xf1,-_0x4ac705._0x126580,-0x102)])){const _0x5d95c2={_0x51470d:0x425,_0x25b41f:0x488,_0x5124c2:0x471,_0x126177:0x48b,_0x512073:0x45d,_0x155b04:0x46e},_0x2e785e={};_0x2e785e[_0x43415a(_0x4ac705._0x569b8a,_0x4ac705._0x4a1848,0x47b,_0x4ac705._0x51da62)]=_0x132abf[_0x43415a(0x47e,0x489,_0x4ac705._0x57c2da,_0x4ac705._0x146f95)],_0x2e785e['output']=_0x3c833e['stdout'];const _0x5729de=_0x5635c0[_0x4aa900(-_0x4ac705._0x1963ad,-_0x4ac705._0x1156f3,-_0x4ac705._0x340dda,-0x101)+_0x4aa900(-_0x4ac705._0x3d256b,-0xd2,-_0x4ac705._0x190423,-0x6a)](_0x2e785e);_0x5729de[_0x4aa900(-_0x4ac705._0x584323,-_0x4ac705._0x4b0835,-0xa7,-0x5f)](_0x271e0d,_0x5e1296=>{const _0x103f70={_0x6c0047:0x3ec,_0x45fa56:0x74},_0x239f35={_0x58e41c:0x1a,_0x852f90:0x1f3};_0x5729de[_0x1107bd(0x465,_0x5d95c2._0x51470d,_0x5d95c2._0x25b41f,_0x5d95c2._0x5124c2)]();function _0x1107bd(_0x28cb67,_0x397cb8,_0x339ec7,_0x4d810a){return _0x43415a(_0x28cb67-_0x239f35._0x58e41c,_0x397cb8-0x1ac,_0x339ec7-_0x239f35._0x852f90,_0x397cb8);}function _0x19571f(_0x275c56,_0x320e4d,_0x37e260,_0x207f0b){return _0x43415a(_0x207f0b- -_0x103f70._0x6c0047,_0x320e4d-0x189,_0x37e260-_0x103f70._0x45fa56,_0x37e260);}_0x4ed70a[_0x1107bd(_0x5d95c2._0x126177,0x447,_0x5d95c2._0x512073,_0x5d95c2._0x155b04)](_0x4c33db,_0x5e1296);});}else logger['error'](_0x4ed70a[_0x43415a(_0x4ac705._0x48b5eb,0x436,_0x4ac705._0x1aace3,_0x4ac705._0x344831)],_0x48e4ac),console[_0x4aa900(-0xe5,-0xdd,-_0x4ac705._0x48a29e,-0x78)](_0x43415a(0x42f,_0x4ac705._0x34ec42,0x3ec,0x477)+_0x43415a(_0x4ac705._0x2e40a0,_0x4ac705._0x1eb665,_0x4ac705._0x298a9c,_0x4ac705._0xb09c2a)+_0x43415a(0x499,0x4c5,0x48d,_0x4ac705._0x273da7)+'\x20'+_0x48e4ac['message']),process[_0x4aa900(-0x11c,-_0x4ac705._0x2d7377,-0xf9,-0xc6)](0x1fe4*0x1+-0xb31+-0x14b2);}}