@profoundlogic/coderflow-server 0.2.3 → 0.2.5
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.
- package/README.md +24 -0
- package/dist/README.md +24 -0
- package/dist/base-image/agent-wrapper.sh +4 -2
- package/dist/coder-server.js +1 -1
- package/dist/config/skill-catalog.json +27 -0
- package/dist/config.js +1 -1
- package/dist/lib/agent-keepalive.js +1 -1
- package/dist/lib/api-keys.js +1 -1
- package/dist/lib/apiKeys.js +1 -1
- package/dist/lib/app-server-ports.js +1 -1
- package/dist/lib/auto-judge.js +1 -1
- package/dist/lib/basic-auth.js +1 -1
- package/dist/lib/build-history.js +1 -1
- package/dist/lib/build-output-service.js +1 -1
- package/dist/lib/build-scheduler.js +1 -1
- package/dist/lib/build-service.js +1 -1
- package/dist/lib/ca-certificates.js +1 -1
- package/dist/lib/claude-oauth-refresh.js +1 -1
- package/dist/lib/cli/build.js +1 -1
- package/dist/lib/cli/config-command.js +1 -1
- package/dist/lib/cli/config.js +1 -1
- package/dist/lib/cli/create-user.js +1 -1
- package/dist/lib/cli/init.js +1 -1
- package/dist/lib/cli/jira.js +1 -1
- package/dist/lib/cli/license.js +1 -1
- package/dist/lib/cli/server-manager.js +1 -1
- package/dist/lib/container-tokens.js +1 -1
- package/dist/lib/data-dir.js +1 -1
- package/dist/lib/deployment-history.js +1 -1
- package/dist/lib/deployment-service.js +1 -1
- package/dist/lib/docker-utils.js +1 -1
- package/dist/lib/email.js +1 -1
- package/dist/lib/emailTemplates.js +1 -1
- package/dist/lib/entitlement.js +1 -1
- package/dist/lib/fetch-utils.js +1 -1
- package/dist/lib/git-commit-details-route.js +1 -0
- package/dist/lib/git-history-diff-guardrails.js +1 -0
- package/dist/lib/git-provider-service.js +1 -1
- package/dist/lib/git-provider-setup/github-setup-handler.js +1 -1
- package/dist/lib/git-provider-setup/index.js +1 -1
- package/dist/lib/git-provider-setup/setup-factory.js +1 -1
- package/dist/lib/git-provider-setup/setup-interface.js +1 -1
- package/dist/lib/git-providers/azure-devops-provider.js +1 -1
- package/dist/lib/git-providers/github-app-provider.js +1 -1
- package/dist/lib/git-providers/index.js +1 -1
- package/dist/lib/git-providers/provider-factory.js +1 -1
- package/dist/lib/git-providers/provider-interface.js +1 -1
- package/dist/lib/github-urls.js +1 -1
- package/dist/lib/jira-client.js +1 -1
- package/dist/lib/logger.js +1 -1
- package/dist/lib/model-fetcher.js +1 -1
- package/dist/lib/notifications.js +1 -1
- package/dist/lib/oidc-auth.js +1 -1
- package/dist/lib/oidc-device-flow.js +1 -1
- package/dist/lib/passwordTokens.js +1 -1
- package/dist/lib/pin-cascade.js +1 -1
- package/dist/lib/provider-accounts.js +1 -1
- package/dist/lib/provider-oauth.js +1 -1
- package/dist/lib/provider-profile.js +1 -1
- package/dist/lib/provider-token-refresh.js +1 -1
- package/dist/lib/request-url.js +1 -1
- package/dist/lib/rewind.js +1 -1
- package/dist/lib/roles.js +1 -1
- package/dist/lib/secrets.js +1 -1
- package/dist/lib/setup-repo-git-auth.js +1 -0
- package/dist/lib/state-capture.js +1 -1
- package/dist/lib/static-files.js +1 -1
- package/dist/lib/task-name-generator.js +1 -1
- package/dist/lib/user-git-oauth.js +1 -1
- package/dist/lib/user-git-tokens.js +1 -1
- package/dist/lib/users.js +1 -1
- package/dist/middleware/requireAuth.js +1 -1
- package/dist/middleware/requireInit.js +1 -1
- package/dist/middleware/requirePermission.js +1 -1
- package/dist/package.json +1 -1
- package/dist/routes/apiKeys.js +1 -1
- package/dist/routes/auth-oidc.js +1 -1
- package/dist/routes/auth.js +1 -1
- package/dist/routes/build.js +1 -1
- package/dist/routes/containers.js +1 -1
- package/dist/routes/deploy-task.js +1 -1
- package/dist/routes/environment-management.js +1 -1
- package/dist/routes/environments.js +1 -1
- package/dist/routes/external-skills.js +1 -1
- package/dist/routes/git-credentials.js +1 -1
- package/dist/routes/git-oauth.js +1 -1
- package/dist/routes/git-provider-setup.js +1 -1
- package/dist/routes/health.js +1 -1
- package/dist/routes/jira.js +1 -1
- package/dist/routes/objective-management.js +1 -1
- package/dist/routes/password.js +1 -1
- package/dist/routes/prompt.js +1 -1
- package/dist/routes/provider-auth.js +1 -1
- package/dist/routes/qa.js +1 -1
- package/dist/routes/settings.js +1 -1
- package/dist/routes/skill-management.js +1 -1
- package/dist/routes/skills.js +1 -1
- package/dist/routes/tasks.js +1 -1
- package/dist/routes/templates.js +1 -1
- package/dist/routes/test-task.js +1 -1
- package/dist/routes/test.js +1 -1
- package/dist/routes/users.js +1 -1
- package/dist/routes/visualizations.js +1 -1
- package/dist/scripts/create-user.js +1 -1
- package/dist/start.js +1 -1
- package/dist/web-ui/public/activity-detail-modal.js +1 -1
- package/dist/web-ui/public/activity-feed.js +1 -1
- package/dist/web-ui/public/activity-formatters.js +1 -1
- package/dist/web-ui/public/agent-event-parser.js +1 -1
- package/dist/web-ui/public/app.js +1 -1
- package/dist/web-ui/public/approve-dialog.js +1 -1
- package/dist/web-ui/public/comments-widget.js +1 -1
- package/dist/web-ui/public/diff-utils.js +1 -1
- package/dist/web-ui/public/docs/tasks/providing-feedback.md +1 -1
- package/dist/web-ui/public/environments.css +23 -0
- package/dist/web-ui/public/environments.html +3 -2
- package/dist/web-ui/public/environments.js +1 -1
- package/dist/web-ui/public/feedback-widget.js +1 -1
- package/dist/web-ui/public/git-history-lazy-utils.js +1 -0
- package/dist/web-ui/public/git-history.css +56 -0
- package/dist/web-ui/public/git-history.html +2 -2
- package/dist/web-ui/public/git-history.js +1 -1
- package/dist/web-ui/public/git-status.js +1 -1
- package/dist/web-ui/public/index.html +38 -2
- package/dist/web-ui/public/index.js +1 -1
- package/dist/web-ui/public/login.js +1 -1
- package/dist/web-ui/public/markdown-editor.js +1 -1
- package/dist/web-ui/public/markdown-file-editor.js +1 -1
- package/dist/web-ui/public/modal-maximize.js +1 -1
- package/dist/web-ui/public/notifications.js +1 -1
- package/dist/web-ui/public/server-health.js +1 -1
- package/dist/web-ui/public/settings.css +92 -0
- package/dist/web-ui/public/settings.html +31 -2
- package/dist/web-ui/public/settings.js +1 -1
- package/dist/web-ui/public/setup-password.js +1 -1
- package/dist/web-ui/public/skills.css +23 -0
- package/dist/web-ui/public/skills.html +3 -2
- package/dist/web-ui/public/skills.js +1 -1
- package/dist/web-ui/public/sse-client.js +1 -1
- package/dist/web-ui/public/sse-shared-worker.js +1 -1
- package/dist/web-ui/public/styles.css +373 -7
- package/dist/web-ui/public/task.html +102 -0
- package/dist/web-ui/public/task.js +1 -1
- package/dist/web-ui/public/terminal.js +1 -1
- package/dist/web-ui/public/theme.js +1 -1
- package/dist/web-ui/public/users.js +1 -1
- package/dist/web-ui/public/variant-grouping.js +1 -1
- package/package.json +1 -1
package/dist/lib/cli/jira.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(_0x299b81,_0x155fcd){const _0x1f424e={_0x510c0e:0x52,_0x55b530:0x15,_0xf85937:0x10e,_0x263638:0x2c,_0x362f1d:0x19b,_0x19d8d6:0x19a,_0xcbb963:0xfd,_0x2b9231:0x46,_0x1dd7c6:0xc8,_0x2c17d5:0xc,_0x429fc9:0x63,_0x23392b:0xa5,_0x589a8c:0x19,_0xeab9d0:0x6,_0x29160f:0x18,_0x385429:0xb1},_0x3aafce=_0x299b81();function _0x5b9200(_0x23a9e3,_0x3d8d5f,_0xc9fb25,_0x1adf6f){return _0x5836(_0x23a9e3- -0x31a,_0x1adf6f);}function _0x321ac3(_0x1ec3e1,_0x33b8e2,_0x1ddede,_0x1fdac8){return _0x5836(_0x1ddede- -0x298,_0x1ec3e1);}while(!![]){try{const _0x1557cd=-parseInt(_0x321ac3(-0xbd,-_0x1f424e._0x510c0e,-0x35,-_0x1f424e._0x55b530))/(0x1b80+-0x19*-0x110+-0x7*0x7b9)+parseInt(_0x321ac3(-0x1a5,-0x12b,-_0x1f424e._0xf85937,-0xe7))/(0x156*0x18+0xb43*0x3+-0x5*0xd2b)*(parseInt(_0x321ac3(0x82,0x18,_0x1f424e._0x263638,0x8))/(0x1a2e+0x10c*-0x2+0x1*-0x1813))+parseInt(_0x5b9200(-_0x1f424e._0x362f1d,-0x223,-_0x1f424e._0x19d8d6,-0x184))/(0x37a*0x1+-0x2207+0x5*0x61d)*(-parseInt(_0x5b9200(-0x130,-0x95,-_0x1f424e._0xcbb963,-0x1a9))/(0x283*-0xd+0x2*-0xf57+0x3ba*0x11))+-parseInt(_0x321ac3(0x3d,-0xc0,-0x7c,0x18))/(0xe5*0x18+0x1154+-0x26c6*0x1)+-parseInt(_0x5b9200(-0x15d,-0xaa,-0x150,-0x1bd))/(-0xbee+-0x1*-0x632+0x3b*0x19)*(-parseInt(_0x5b9200(-_0x1f424e._0x2b9231,-_0x1f424e._0x1dd7c6,_0x1f424e._0x2c17d5,-0x101))/(0xf48+0x1*0x10af+-0x19*0x147))+-parseInt(_0x5b9200(-0xc3,-0x155,-_0x1f424e._0x429fc9,-0x4c))/(0x1*-0x18e6+-0x1da+0x1*0x1ac9)+parseInt(_0x321ac3(_0x1f424e._0x23392b,0x21,_0x1f424e._0x589a8c,_0x1f424e._0xeab9d0))/(-0x95b+0x8ac+0xb9)*(parseInt(_0x321ac3(-_0x1f424e._0x29160f,-0x106,-_0x1f424e._0x385429,-0x6f))/(0x103a+-0xda0+-0x28f));if(_0x1557cd===_0x155fcd)break;else _0x3aafce['push'](_0x3aafce['shift']());}catch(_0x378a5f){_0x3aafce['push'](_0x3aafce['shift']());}}}(_0x572e,-0xcd08f+-0xe8ea4+-0x10*-0x22b7c));import _0x40c450 from'readline';import{promises as _0x429619}from'fs';import _0x2abf47 from'path';import{exec}from'child_process';import{promisify}from'util';import{getCoderSetupPath}from'./config.js';const execAsync=promisify(exec);function parseSetupPath(_0x237c7a){const _0x4f383b={_0x3aabfa:0x474,_0x46074a:0x4be,_0x5ee5f7:0x335,_0x175211:0x29d,_0x181d9f:0x2b8,_0x3fcf01:0x46c,_0x484b6e:0x33b,_0x1b5709:0x2cf,_0x2b31fc:0x2a1,_0x2f648a:0x330,_0x1b997b:0x31f,_0x55d90a:0x333,_0x19f3cc:0x28b,_0x1757a5:0x3b8,_0xccd905:0x38c,_0x58423f:0x3a2,_0x2b9c68:0x420,_0x105858:0x378,_0x170ee3:0x424,_0x591975:0x406,_0x39bdf3:0x40f,_0x4ad2f2:0x3e3,_0x503ade:0x2f1,_0x483114:0x2af,_0x18c4e1:0x45c,_0x1cf8c5:0x42a,_0x273efb:0x408,_0x3830d5:0x2a6,_0x537f98:0x2d5,_0x40962b:0x318,_0xb2a5f2:0x317,_0x1cd336:0x29e},_0x48044e={_0x44cb55:0x7f},_0x377d19={_0x26de48:0x1a7},_0x479d23={'KeUac':_0x2e7952(_0x4f383b._0x3aabfa,0x477,_0x4f383b._0x46074a,0x3d6)+_0x2e7952(_0x4f383b._0x5ee5f7,0x3b9,0x333,0x3bb)+'p\x20path\x20con'+_0x3ce6b3(_0x4f383b._0x175211,0x21f,0x2f6,_0x4f383b._0x181d9f),'VICBj':function(_0xcedc87,_0x2e2a0e){return _0xcedc87(_0x2e2a0e);},'gkEBg':function(_0x142552,_0x410222){return _0x142552===_0x410222;},'lNEyM':_0x2e7952(0x3b2,_0x4f383b._0x3fcf01,0x450,0x3cb),'esetP':_0x3ce6b3(0x295,_0x4f383b._0x484b6e,_0x4f383b._0x1b5709,_0x4f383b._0x2b31fc)+_0x2e7952(_0x4f383b._0x2f648a,0x3e6,0x37d,_0x4f383b._0x1b997b),'dcUOz':function(_0x41a87f,_0x4e0045){return _0x41a87f===_0x4e0045;},'HMxFJ':_0x2e7952(0x33f,_0x4f383b._0x55d90a,_0x4f383b._0x19f3cc,0x3ba),'IBZZY':_0x2e7952(_0x4f383b._0x1757a5,0x335,0x3f2,0x312)};for(const _0x39ad22 of _0x237c7a){if(_0x479d23[_0x2e7952(_0x4f383b._0xccd905,0x389,_0x4f383b._0x58423f,_0x4f383b._0x2b9c68)](_0x479d23['lNEyM'],_0x479d23[_0x3ce6b3(0x3a3,0x3f0,_0x4f383b._0x105858,0x34a)])){if(_0x39ad22[_0x2e7952(0x406,0x451,_0x4f383b._0x170ee3,0x3b3)](_0x479d23['esetP'])||_0x39ad22[_0x2e7952(_0x4f383b._0x591975,0x395,_0x4f383b._0x39bdf3,0x4ac)](_0x2e7952(0x33e,_0x4f383b._0x4ad2f2,_0x4f383b._0x503ade,_0x4f383b._0x483114))){if(_0x479d23[_0x2e7952(0x479,_0x4f383b._0x18c4e1,0x3f6,_0x4f383b._0x1cf8c5)](_0x479d23['HMxFJ'],_0x479d23[_0x3ce6b3(0x30d,_0x4f383b._0x273efb,0x34f,0x35d)]))_0x59e9e0[_0x3ce6b3(_0x4f383b._0x3830d5,_0x4f383b._0x537f98,0x2e2,_0x4f383b._0x40962b)](_0x479d23[_0x3ce6b3(0x2a4,_0x4f383b._0xb2a5f2,0x22f,_0x4f383b._0x19f3cc)]),_0x1b20fc[_0x3ce6b3(0x29c,0x275,_0x4f383b._0x1cd336,0x241)](-0x10*-0x22+-0x1a*0x76+0x9dd);else return _0x39ad22['split']('=')[0x3*0x8d+-0x5*-0x6df+-0x2401];}}else return _0x479d23['VICBj'](_0x502ab1,_0x344d40);}function _0x2e7952(_0x9372c3,_0x4b678c,_0x5f0956,_0x1e8447){return _0x5836(_0x9372c3-_0x377d19._0x26de48,_0x5f0956);}function _0x3ce6b3(_0x258bfb,_0x4d1518,_0x5b5db8,_0x18d05e){return _0x5836(_0x18d05e-_0x48044e._0x44cb55,_0x4d1518);}return null;}function prompt(_0x52c228){const _0x2c3434={_0x3467f8:0x331,_0x406ad6:0x430,_0x5c2b0b:0x3e9,_0x183701:0x292,_0x24a142:0x369,_0x57ab21:0x2fc,_0x1a3bc7:0x89,_0x41f442:0xaf,_0x3cd7a1:0x18,_0x2884ff:0x69,_0x6a760a:0x22e,_0x280086:0x351,_0x2a0c03:0xe2,_0x10be1b:0x12e,_0x1e3844:0x31a,_0x444a57:0x3d3,_0x4e3e34:0x359},_0x143a0d={_0x5aa49f:0x617,_0x2059a3:0x4de,_0x4001c9:0x510},_0x37c625={_0x2a439f:0x605,_0x29f180:0x517,_0x1ac63a:0x472},_0x4f75c4={_0x1c0df5:0x190,_0x2f5887:0x133},_0x3235a4={_0x21bd62:0x1f,_0x3af633:0x50a},_0xe7cbc1={_0x2f7997:0x156},_0x2573d1={_0x1fa3f0:0x1b1},_0x4f19a1={'eJlGZ':function(_0x2cb2e1,_0x4fafb5){return _0x2cb2e1(_0x4fafb5);},'VaeyW':_0x4fbe6f(0x3e6,_0x2c3434._0x3467f8,_0x2c3434._0x406ad6,_0x2c3434._0x5c2b0b)+_0x4fbe6f(_0x2c3434._0x183701,_0x2c3434._0x24a142,_0x2c3434._0x57ab21,0x334)+'d.','yySuQ':_0x5eb2f8(0x13b,_0x2c3434._0x1a3bc7,_0x2c3434._0x41f442,0xbf)},_0x130ee4={};function _0x5eb2f8(_0x275d72,_0x51044d,_0x2d7731,_0x19de8f){return _0x5836(_0x19de8f- -_0x2573d1._0x1fa3f0,_0x51044d);}_0x130ee4[_0x5eb2f8(_0x2c3434._0x3cd7a1,-0x49,0x94,_0x2c3434._0x2884ff)]=process[_0x4fbe6f(0x32c,0x2a7,_0x2c3434._0x6a760a,0x2d4)],_0x130ee4['output']=process[_0x4fbe6f(0x2ba,_0x2c3434._0x280086,0x2b7,0x32d)];function _0x4fbe6f(_0x5c14df,_0x2f49bd,_0xe74463,_0x554623){return _0x5836(_0x554623-_0xe7cbc1._0x2f7997,_0xe74463);}const _0x530dcf=_0x40c450[_0x5eb2f8(_0x2c3434._0x2a0c03,0x129,_0x2c3434._0x10be1b,0xe3)+_0x4fbe6f(_0x2c3434._0x1e3844,0x2aa,_0x2c3434._0x444a57,_0x2c3434._0x4e3e34)](_0x130ee4);return new Promise((_0x1fc181,_0x26a0b8)=>{const _0x509460={_0x5e1b19:0xb0,_0x3c9b32:0x10c};let _0x2416c1=![];function _0x1e188d(_0x4931b0,_0x9c03e9,_0x336739,_0x59083b){return _0x5eb2f8(_0x4931b0-_0x3235a4._0x21bd62,_0x9c03e9,_0x336739-0x18c,_0x336739-_0x3235a4._0x3af633);}_0x530dcf[_0x3db74d(0x667,_0x143a0d._0x5aa49f,0x69b,0x6ac)](_0x52c228,_0x333e0a=>{function _0x31a7a0(_0x59ca94,_0x26c329,_0x17bfa7,_0x528fc0){return _0x3db74d(_0x59ca94- -0x7aa,_0x26c329-0x100,_0x17bfa7-0x1a5,_0x26c329);}_0x2416c1=!![],_0x530dcf['close'](),_0x4f19a1[_0x31a7a0(-_0x4f75c4._0x1c0df5,-0x1d6,-_0x4f75c4._0x2f5887,-0x24b)](_0x1fc181,_0x333e0a);});function _0x3db74d(_0x70ceb3,_0x36dcaf,_0x446682,_0x4b8565){return _0x4fbe6f(_0x70ceb3-_0x509460._0x5e1b19,_0x36dcaf-_0x509460._0x3c9b32,_0x4b8565,_0x70ceb3-0x272);}_0x530dcf['on'](_0x4f19a1[_0x1e188d(_0x143a0d._0x2059a3,_0x143a0d._0x4001c9,0x4d2,0x42d)],()=>{const _0x961ee0={_0x2bc683:0x122,_0x19474c:0x145};function _0x3579f4(_0x55d80c,_0x24dfaf,_0x2a9867,_0x4da3fa){return _0x3db74d(_0x24dfaf- -0x606,_0x24dfaf-_0x961ee0._0x2bc683,_0x2a9867-_0x961ee0._0x19474c,_0x2a9867);}function _0xa84b04(_0x360321,_0x30944f,_0x555dc1,_0xe157d9){return _0x1e188d(_0x360321-0x168,_0x360321,_0x30944f- -0x4,_0xe157d9-0xad);}!_0x2416c1&&(console[_0xa84b04(0x5d7,_0x37c625._0x2a439f,0x590,0x658)](_0x4f19a1['VaeyW']),process[_0xa84b04(0x4ab,_0x37c625._0x29f180,0x4c5,_0x37c625._0x1ac63a)](-0x22af+0x40+-0x5*-0x6e3));});});}function promptSecret(_0x40989b){const _0x466f74={_0x3b7a2e:0x3c2},_0x29a4ec={'rHJBD':function(_0x2ef51e,_0x21a0dd){return _0x2ef51e(_0x21a0dd);}};function _0x301b9b(_0x3a1d62,_0x40028f,_0x4fb19e,_0x2384d5){return _0x5836(_0x40028f- -_0x466f74._0x3b7a2e,_0x2384d5);}return _0x29a4ec[_0x301b9b(-0x19f,-0x1cd,-0x238,-0x266)](prompt,_0x40989b);}function _0x5836(_0x4f4cc8,_0x1f1dcb){_0x4f4cc8=_0x4f4cc8-(0x520*-0x4+0x1*0x153b+0xad);const _0x8ec8df=_0x572e();let _0x2f0cef=_0x8ec8df[_0x4f4cc8];if(_0x5836['phkEij']===undefined){var _0xdd7301=function(_0x254d6b){const _0x25e952='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x452857='',_0x36f0c9='';for(let _0x56e4be=0x80b*0x2+0x1aa4+-0x2aba,_0x44d315,_0x50b535,_0x4c4e99=0x1576+0x2178+-0x36ee;_0x50b535=_0x254d6b['charAt'](_0x4c4e99++);~_0x50b535&&(_0x44d315=_0x56e4be%(-0x1fef+0x19e8+-0x60b*-0x1)?_0x44d315*(-0x3a3*-0x1+-0x58f+0x22c)+_0x50b535:_0x50b535,_0x56e4be++%(0x85c+-0x22*0x6d+0x622))?_0x452857+=String['fromCharCode'](-0x425*-0x9+0x1*0x265a+-0x4aa8&_0x44d315>>(-(-0x1f47+0x106+0x1e43)*_0x56e4be&-0x1e7b+0x198f+0x4f2)):0x6b2*0x4+-0x2e*-0xc5+-0x3e2e){_0x50b535=_0x25e952['indexOf'](_0x50b535);}for(let _0x38d654=-0x935+-0x1b9+-0x2*-0x577,_0x38f295=_0x452857['length'];_0x38d654<_0x38f295;_0x38d654++){_0x36f0c9+='%'+('00'+_0x452857['charCodeAt'](_0x38d654)['toString'](-0x2569*0x1+0x1a9c+0xadd))['slice'](-(0xe27*-0x1+-0x384+0x5*0x389));}return decodeURIComponent(_0x36f0c9);};_0x5836['iOFBCE']=_0xdd7301,_0x5836['txMaPQ']={},_0x5836['phkEij']=!![];}const _0x25c492=_0x8ec8df[-0xc9d*0x2+-0x717+-0x1*-0x2051],_0x3ed359=_0x4f4cc8+_0x25c492,_0xb75b65=_0x5836['txMaPQ'][_0x3ed359];return!_0xb75b65?(_0x2f0cef=_0x5836['iOFBCE'](_0x2f0cef),_0x5836['txMaPQ'][_0x3ed359]=_0x2f0cef):_0x2f0cef=_0xb75b65,_0x2f0cef;}async function testJiraConnection(_0x1123d1,_0x34076a,_0x486985){const _0xa5e6e0={_0x399732:0x3e1,_0x2ed646:0x4ed,_0x444a39:0x48e,_0x47da9c:0x476,_0x226a36:0x357,_0x1c75c3:0x1f7,_0x337868:0x19c,_0x2b2b4d:0x1eb,_0x50c53b:0x210,_0x228914:0x260,_0x858e26:0x502,_0x590a75:0x458,_0x34c16a:0x3c7,_0xa6a679:0x383,_0x26aab4:0x57b,_0x4204ab:0x34a,_0x1f3322:0x567,_0x8aa9c7:0x4c0,_0x26a8b6:0x4f9,_0xe7537e:0x596,_0x26a60d:0x46c,_0x351c91:0x4af,_0x466c2b:0x47d,_0x4d2fff:0x4d9,_0xaee3e0:0x47f,_0x4f8996:0x459,_0x37624c:0x449,_0x5d6276:0x4df,_0x24ca18:0x4f9,_0x5ac319:0x130,_0x5de146:0x1ba,_0x55bed4:0x119,_0x288c76:0x48d,_0x5e705d:0x4b3,_0x1d8ca5:0x2a2,_0x1fe5e0:0x1fb,_0x2fef92:0x36a,_0x5dec59:0x4bd,_0x22b287:0x26c,_0x373aec:0x1fd,_0x5c9011:0x36b,_0x170b87:0x49d,_0x558641:0x297,_0x1b146a:0x327,_0x26af2a:0x374,_0x4cadba:0x3b7,_0xea2325:0x407,_0x3f629a:0x27d,_0x4a5625:0x39d,_0x95740c:0x2ab,_0x202dfa:0x4b8,_0x11305e:0x431,_0x135417:0x2cb,_0x24d9dd:0x2df,_0xb60cd:0x23f,_0x4fa3a9:0x345,_0xd755c:0x44f,_0x130f96:0x4fd,_0x1a3768:0x429,_0x1dc2bb:0x477,_0x4360e4:0x501,_0xcb236a:0x472,_0x33fdee:0x4b6,_0x375eec:0x232,_0x70cf1f:0x23e,_0x499d6c:0x2fa,_0x5aa108:0x2df,_0x424564:0x42c,_0x393caf:0x511,_0x6d5644:0x457,_0x2ca2c5:0x4a1,_0x45069f:0x4e3,_0x19ffab:0x446,_0x49af3d:0x25d,_0x4b759e:0x242,_0x230434:0x2c9,_0x4b2b5c:0x44e,_0xa882b7:0x4e2,_0x109342:0x29f,_0x581a67:0x221,_0x145867:0x430,_0x155208:0x4cd},_0x16da14={_0x45e7f5:0x2f},_0x6f0880={_0x58d76c:0x249},_0x5224f3={'GQEao':_0x464a4b(0x406,0x3a9,_0xa5e6e0._0x399732,0x423)+_0x464a4b(_0xa5e6e0._0x2ed646,0x4d4,_0xa5e6e0._0x444a39,_0xa5e6e0._0x47da9c)+_0x464a4b(_0xa5e6e0._0x226a36,0x305,0x431,0x3bb)+'e-profile/'+_0x44461a(0x233,_0xa5e6e0._0x1c75c3,0x297,0x244)+_0x44461a(_0xa5e6e0._0x337868,0x1b3,_0xa5e6e0._0x2b2b4d,_0xa5e6e0._0x50c53b),'BXVCF':_0x44461a(0x23b,0x233,0x279,0x2e4)+'on\x20success'+'ful!','Cgnie':function(_0x3bdef8,_0x59fc75){return _0x3bdef8(_0x59fc75);},'CJbgk':function(_0x1ab67e,_0x288ec1){return _0x1ab67e===_0x288ec1;},'WZtEI':'pkmNI','fRfow':_0x44461a(0x1b3,0x1d3,_0xa5e6e0._0x228914,0x1be),'yDNaC':function(_0x48678f,_0x35901e,_0x4947c8){return _0x48678f(_0x35901e,_0x4947c8);},'jAzmy':_0x464a4b(0x57f,_0xa5e6e0._0x858e26,_0xa5e6e0._0x590a75,0x505)+_0x464a4b(0x43c,_0xa5e6e0._0x34c16a,_0xa5e6e0._0xa6a679,0x3e8),'EpUBi':function(_0xeb0de9,_0x5f306c){return _0xeb0de9===_0x5f306c;},'jIiXL':'MFSAZ','PTnJu':_0x464a4b(_0xa5e6e0._0x26aab4,0x4da,0x50d,0x508)};function _0x464a4b(_0x3a0bf6,_0x341d29,_0x44f6bc,_0x15cf54){return _0x5836(_0x15cf54-_0x6f0880._0x58d76c,_0x44f6bc);}function _0x44461a(_0x56d399,_0xaed154,_0x3effc1,_0x5f14b8){return _0x5836(_0xaed154-_0x16da14._0x45e7f5,_0x5f14b8);}try{if(_0x5224f3['CJbgk'](_0x5224f3[_0x44461a(0x2dc,0x2a8,0x2c3,_0xa5e6e0._0x4204ab)],_0x5224f3['fRfow']))_0x578a52[_0x464a4b(_0xa5e6e0._0x1f3322,0x48f,_0xa5e6e0._0x8aa9c7,_0xa5e6e0._0x26a8b6)](''),_0x351f39[_0x464a4b(_0xa5e6e0._0xe7537e,_0xa5e6e0._0x26a60d,_0xa5e6e0._0x351c91,_0xa5e6e0._0x26a8b6)](_0x464a4b(0x586,_0xa5e6e0._0x466c2b,0x4c5,_0xa5e6e0._0x4d2fff)+_0x464a4b(_0xa5e6e0._0xaee3e0,_0xa5e6e0._0x4f8996,0x4df,_0xa5e6e0._0x37624c)+'t:'),_0x3dab52['log'](_0x5224f3[_0x464a4b(0x51c,0x554,0x45b,0x4b5)]),_0x252c6a[_0x464a4b(0x453,_0xa5e6e0._0x5d6276,0x525,_0xa5e6e0._0x24ca18)]('');else{const _0x2614d8=Buffer[_0x44461a(_0xa5e6e0._0x5ac319,_0xa5e6e0._0x5de146,_0xa5e6e0._0x55bed4,0x113)](_0x34076a+':'+_0x486985)[_0x464a4b(0x52a,0x526,_0xa5e6e0._0x288c76,_0xa5e6e0._0x5e705d)]('base64'),_0x2b596f=await _0x5224f3[_0x44461a(_0xa5e6e0._0x1d8ca5,0x289,0x33d,0x2c5)](fetch,_0x1123d1+(_0x44461a(0x28b,0x220,0x27f,0x1b7)+_0x44461a(0x189,_0xa5e6e0._0x1fe5e0,0x196,0x23c)),{'headers':{'Authorization':_0x464a4b(0x437,_0xa5e6e0._0x2fef92,_0xa5e6e0._0x5dec59,0x40a)+_0x2614d8,'Accept':_0x5224f3[_0x44461a(0x243,_0xa5e6e0._0x22b287,_0xa5e6e0._0x373aec,0x312)]}});if(_0x2b596f['ok']){const _0xf85660=await _0x2b596f[_0x464a4b(_0xa5e6e0._0x5c9011,_0xa5e6e0._0x170b87,0x4a1,0x414)](),_0x3d160b={};return _0x3d160b[_0x44461a(0x21a,0x2c9,_0xa5e6e0._0x558641,_0xa5e6e0._0x1b146a)]=!![],_0x3d160b[_0x464a4b(_0xa5e6e0._0x26af2a,0x3f3,_0xa5e6e0._0x4cadba,_0xa5e6e0._0xea2325)]=_0xf85660,_0x3d160b;}else{if(_0x5224f3[_0x44461a(0x2cc,0x27f,0x2f6,0x1eb)](_0x44461a(_0xa5e6e0._0x3f629a,0x2ed,_0xa5e6e0._0x4a5625,_0xa5e6e0._0x95740c),_0x5224f3[_0x464a4b(0x41c,0x3f5,_0xa5e6e0._0x202dfa,_0xa5e6e0._0x11305e)]))_0x231656[_0x44461a(_0xa5e6e0._0x135417,_0xa5e6e0._0x24d9dd,_0xa5e6e0._0xb60cd,_0xa5e6e0._0x4fa3a9)](_0x5224f3['BXVCF']),_0x3052d7[_0x464a4b(_0xa5e6e0._0xd755c,0x5af,_0xa5e6e0._0x130f96,0x4f9)](_0x464a4b(_0xa5e6e0._0x1a3768,_0xa5e6e0._0x1dc2bb,0x422,0x4b7)+(_0x55aed5['user'][_0x464a4b(0x43e,_0xa5e6e0._0x4360e4,_0xa5e6e0._0xcb236a,_0xa5e6e0._0x33fdee)+'e']||_0x4a07f0[_0x44461a(0x26d,0x1f5,_0xa5e6e0._0x375eec,_0xa5e6e0._0x70cf1f)]['email'])),_0x5ecdd6[_0x44461a(_0xa5e6e0._0x499d6c,_0xa5e6e0._0x5aa108,0x38b,0x29e)]('');else{const _0x4bbad5=await _0x2b596f[_0x464a4b(_0xa5e6e0._0x424564,_0xa5e6e0._0x393caf,_0xa5e6e0._0x6d5644,_0xa5e6e0._0x2ca2c5)](),_0x125083={};return _0x125083[_0x464a4b(0x51f,_0xa5e6e0._0xe7537e,0x52b,_0xa5e6e0._0x45069f)]=![],_0x125083['error']=_0x464a4b(0x451,_0xa5e6e0._0x19ffab,0x457,0x4ea)+_0x2b596f[_0x44461a(_0xa5e6e0._0x49af3d,0x2e3,_0xa5e6e0._0x4b759e,0x2d6)]+':\x20'+_0x4bbad5,_0x125083;}}}}catch(_0x86f356){if('yHzzN'===_0x5224f3['PTnJu']){const _0x368509={};return _0x368509[_0x44461a(0x216,_0xa5e6e0._0x230434,0x33d,_0xa5e6e0._0x558641)]=![],_0x368509[_0x464a4b(_0xa5e6e0._0x4b2b5c,0x53f,0x4d4,_0xa5e6e0._0xa882b7)]=_0x86f356['message'],_0x368509;}else _0x4ee279=!![],_0x1c5e37[_0x44461a(0x213,_0xa5e6e0._0x109342,0x1fb,_0xa5e6e0._0x581a67)](),_0x5224f3[_0x464a4b(_0xa5e6e0._0x145867,0x495,_0xa5e6e0._0x155208,0x4b0)](_0x84a135,_0x2be79e);}}function _0x572e(){const _0x26b2dc=['y0zUzem','DfPhC0y','yxv0Aa','AwD1CMvKiq','C2vJDxjPDhKVyq','icbuB2TLBJOGia','ihrViePjuKeUlG','ANnVBG','mY9TExnLBgy','Aw5Nig9UzsbVzG','uNfrwxm','CgPrufi','ztOG','EMrTtwW','rhnXz3K','zNjVBsbksvjblG','tgPju2q','ruj6CNu','EhnHB0q','C3rKB3v0','icaGiePjuKeGsq','rxjYB3iGCMvHza','Ahr0Chm6lY9Pza','z09Psu4','icaYlIbhAxzLia','rw1HAwWGwW','BIbJyw5JzwXSzq','DwXSEsbHCYa','AxjLza','r2LPt24','vvjm','qw1TCfK','EhbbwLu','z2TfqMC','yxrOps9WyxrOlW','mZCYmtndDhPJAhG','AKLPweW','u2f2zwqGDg86ia','nuDtA1DUAW','DhjPBq','B246','ve9uzMu','rgPVvgK','v3jVru0','y3Huz2C','l3jLC3qVyxbPlW','t3bLBIbICM93CW','wwHQrM8','veXNBuK','CKHkqKq','C2vYDMvYigPPCG','zwqGEwv0lG','D3jPDgvgAwXL','DxaGCgf0Acb1CW','Ahr0Chm6lY95BW','rxjYB3i6ifnLDa','icbcyxnLifvsta','DgfYDa','qu12zxa','BYbJB2rLCI1Zzq','ueKGDg9Rzw4Gyq','lM5LDa','BM5Ly3rPB24','CMzHy2u','4PYtienVBM5Ly3rP','mxW2Fdj8nxWZFa','y3rPB24','q3LrBK4','tMv4DcbZDgvWCW','vgvZDgLUzYbksq','uefuscbLBNzPCG','wxPQzfa','s2vvywm','DxrMltG','sLfWt2e','twz2qxK','B3j5','DeDuy0K','ysbJB25Uzwn0ia','lI4U','y1DwvKK','xtOG','whLTwhG','icbKAxnJB25Uzq','BvrTwwW','icaGicbuzxn0ia','Aw5WDxq','q0Pbtge','ndu0mdqXnMXlAuLiDW','t3bLBMLUzYbICG','qvbjifrVA2vUoG','y29UBMvJDcaTlq','AwnHBgX5lG','CcbWyxrOignVBG','ls1Zzxr1Cc1Wyq','zwrLBNrPywXZia','y2zozuq','icb0zxn0icaGia','B24U','DgHLihrVA2vU','ic0TC2v0DxaTCa','B2TLBG','C3q6ia','vwjVwfK','CcbksvjbigLUDa','lMf0BgfZC2LHBG','CMfrvve','AMLYysa8y29TBq','s3fMwuy','ywnJzxnZ','zMLNDxjHDgLVBG','DxiTy29TCgfUEq','ihDPBgWGyxv0BW','Dg9mB3DLCKnHCW','icbJB2rLCI1Zzq','z25xtLa','zxiTC2vYDMvYia','zMLNDxjLzc4','ugXLyxnLihnWzq','vLzKt0O','rwLwD0m','AKf6BxK','zNzfy3K','ihbLCNnVBMfSia','wwvZ','zs1WCM9MAwXLlW','vxnHz2u6ignVza','ifrVA2vUigLZia','zg5HzeG','rxjYB3i6','kguUzY4SicjdBW','ps9WyxrOl3rVlW','z3vYyxrPB24GCW','4PYtiezVDw5Kigv4','wwjJyK0','EwvZ','zgfpEMW','CgXHDgzVCM0','rxjvAMm','ifTzl25DoIa','rxbvqMK','AM9PBG','zuPSr1O','icbJB25Uzwn0ia','CMvWBgfJzq','y3q6ignVzgvYlq','sKLsqsbbueKGva','nJmZmta2ohvosgLTvq','Dgv4Da','zxiGyxv0B21HDa','Euroyum','u3rLCca0lZq6ia','yxrPB24GC2f2zq','zwDYyxrPB24Gka','B24GC3vJy2vZCW','C3rHCNrZv2L0Aa','ru5pru5u','BgfTAwK','rw1HAwW6ia','mZa2mJi1zw9mvMfA','yw5KigXVB2SGzG','q29UzMLNigzPBa','z25rveS','q2DUAwu','sg1IyLy','4PYxienVBM5Ly3rP','Dg9tDhjPBMC','CNzLCIbQAxjHia','r1ffyw8','zgLZCgXHEu5HBq','icbvC2vYoIa','C3bSAxq','y2XVC2u','zsbksvjbignVBG','tM90ihnLDa','yw5KpG','CMvXDwLYzwq','rvvsBfq','C3rYAw5NAwz5','zKj3wKW','uLbOtNq','v1P0ruK','icdIGkiGu2v0ienp','4PYxiezHAwXLzcb0','rxjYB3i6ievTyq','ww91ig5LzwqGyq','uwP5AeC','icjdCMvHDguGqq','sKLsqsbPBNrLzW','Bwf0AwnHBgX5ia','4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq','4PYtienVBM5Ly3rL','Exfdtvy','BY9Zzxr1Ca','q0n5rMm','y29Kzq','icdIGkiGy29KzxiT','tg1gr1q','svnJAeS','sKLsqsbJB25MAq','DgvZDa','CLjyt20','yK9zCMu','pIaGifbHDgGGDa','r2v0ihLVDxiGqq','yw5KihrYEsbHzW','EwPZzLu','cGPpCgvYyxrPBW','y3jLyxrLsw50zq','y2LMEsbHihnLDa','DvfVz3O','t3HSyMi','De9Vtxy','zxjYB3i','C3vJy2vZCW','AwWGAxmGCMvXDq','EMzVAwy','CLvzqM0','wuzADfy','CxvLC3rPB24','lxnLCNzLCIbQAq','sfruuca','t3b0Aw9UCZO','CvbevxO','sKLsqsbJB25Uzq','shnyA2W','yMfZzvvYBa','yxbPvg9Rzw4','BerWrwC','AMLYys5QC29U','yxrPB24','Cgf0Ad08Cgf0Aa','sw5ZDhj1y3rPBW','DvL3zM0','AMXlwha','y2SGEw91CIbJCG','Bg9N','nta0mhbor3zzua','yLfbExy','u1f5wva','C3rHDhvZ','zw5HyMXLza','4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq','zgLZy29UBMvJDa','ifnLDhvW','BgvUz3rO','zwHpqw4','icaGicbtzxqGDq','yxbWBgLJyxrPBW','B3bLBIaI','yuDZtKC','EuH6EK4','DM5oy0O','BNrLz3jHDgLVBG','icdIGkiGt3bLBIb0','s1Dnvey','mZy5mdnNuwHOvKq','D2LUmZi','C3rHCNqGiG','q29UBMvJDgLUzW','DeLpzNG','z3vxrhK','sKLsqsbtDgf0Dq','Be5fEu0','zw1HAwW','rxjYB3i6ie5Via','q291BgqGBM90ia','seLSwKu','ugXLyxnLignOzq','B3DZzxiUlI4','zgnvt3O','u3rLCcaYlZq6ia','ndm5ndrby2vJzfu','y3qGicbszw1VDG','icbZDgf0DxmGia','thbWtui','CMvKiokCKW','zcbZDwnJzxnZzG','uNvUoIbJB2rLCG','Dgf0Dxm','v0vxrvG','vwPIt00','sujAwLK','wMLRAvy','vMvSDK8','Aw9UlI4U','icbfBMfIBgvKoG','Dcb0AguGC2vYDG','vKTbwM8','CMvHzezPBgu','qvbjihrVA2vUia','icaGicbtAg93ia','B3bLBIbICM93CW','D293BNO','lMnVBs9Tyw5HzW','ica0lIbqyxn0zq','rurluwu','CgfYC2u','Aw5NiePjuKeGyW','nhWXma','C2vYDMvYihjLCW','ExLtDve','CYbUB3CGy29UzG','nhWYFdf8m3WW','sKLsqsbfBwfPBa','zxmGBM90igv4Aq','C3rKAw4','mtKXmtuYnfzTyxHtyq','vvjmifS','EgrNlw9Wzw4GiG','CZOGtM90ignVBG','D2XdzgW','CgKTDg9Rzw5Z','icbfBwfPBdOGia','z050Cei','BwvZC2fNzq','EKnNvhq','DgG9','odjKAMjry2u','zNjVBq','Axq6ia','DxaGCgf0AcbKBW','y29KzxiTC2v0Dq','wgz5wei','CMvYwNC','ELzrs20','zwqU','sM51uwG','C01ZD20','txPkCMW','C2v0Dxa','ls1Zzxr1Cd0','uw5QvNG','CMeGy29UBMvJDa','Buz0yNi','z0z5DK8','zxiGDg8Gz2v0ia','B3iGiKLTCg9YDa','vgHLihnLCNzLCG','BI9QC29U','CMf0Aw9UigLZia','igzYB20GsKLsqq','u3rLCcaXlZq6ia','CxvyDKq','Cun4Ew8','4Psa4Psa4Psa4Psa4Psa4Psa4Psa4Psa4Psa4Psa','qMTsAKC','DhvWigrPCMvJDa','rxjYB3i6iefqsq','DgG9l3bHDgGVDa','zMLNDxjLza','DcbJB25MAwD1CG','4PYtiePjuKeGAw50','zxi6ignVzgvYlq','qsbJB25MAwD1CG','zgvYrMXVDYiP','revsx1nfvfvqxW','BMnJv2S','qvbjihrVA2vUpW','B24GzMfPBgvK','yw15qNq','tKHitNi','icaZlIbdB3b5ia','uKeGy29UBMvJDa','DxnLihrOAxmGyW','sKLsqsbcyxnLia','CenTDfO','AgDLv1a','mhW3Fdv8mxWXmq','nJu4tMfjserR','DxnLCG','sKLsqsbPCYbUBW','zgfYD2LU','qMfZAwmG','zxHPDa','CZOGq29UzMLNDq'];_0x572e=function(){return _0x26b2dc;};return _0x572e();}async function openTokenPage(){const _0x352d56={_0x342361:0x3d1,_0x77d9:0x532,_0x294cae:0x50e,_0x3b3c38:0x59b,_0x16adc1:0x3b0,_0x5077bb:0x528,_0x1a5823:0x479,_0x5456f2:0x460,_0x3724ec:0x63,_0x7f6556:0xa6,_0x439b02:0x3b2,_0x419dfa:0x3d5,_0x4b54cc:0x3b3,_0x153ff4:0x45,_0x12f05a:0x4f,_0x937421:0x137,_0x59d7c1:0xc8,_0x34a3d0:0x87,_0x4e1c96:0x414,_0x4b2c29:0x477,_0x1c3de1:0x4db,_0x29d90a:0x4fd,_0x4192ba:0xd5,_0x3a5466:0x13b,_0x3c0229:0x3a,_0x2a7376:0x386,_0x3e0cf5:0x3c1,_0x23004a:0x23,_0x2785f6:0x104,_0x251238:0x17a};function _0x4cafa3(_0x437c12,_0x319f26,_0x4ac25b,_0x486d39){return _0x5836(_0x319f26-0x240,_0x4ac25b);}const _0x25d3fd={'vbiYn':_0x4cafa3(0x441,0x400,0x448,_0x352d56._0x342361),'hgeWP':_0x4cafa3(_0x352d56._0x77d9,0x505,0x44e,0x518),'aeVRH':function(_0x190f80,_0x362307){return _0x190f80(_0x362307);},'RqQYs':_0x4cafa3(0x53a,_0x352d56._0x294cae,_0x352d56._0x3b3c38,0x4e8)+_0x4cafa3(0x42e,_0x352d56._0x16adc1,0x30a,0x3f0)+_0x4cafa3(0x48b,0x499,0x431,_0x352d56._0x5077bb)+_0x4cafa3(_0x352d56._0x1a5823,_0x352d56._0x5456f2,0x3e1,0x3b5)};function _0x41f3b0(_0x4fcf41,_0xfa2ec4,_0x2ccf61,_0x124cc0){return _0x5836(_0xfa2ec4- -0x290,_0x124cc0);}const _0x444a29=_0x4cafa3(0x378,0x41a,0x48b,0x38d)+_0x41f3b0(-0x24,-_0x352d56._0x3724ec,0x27,-_0x352d56._0x7f6556)+_0x4cafa3(0x37f,_0x352d56._0x439b02,_0x352d56._0x419dfa,_0x352d56._0x4b54cc)+_0x41f3b0(-_0x352d56._0x153ff4,-_0x352d56._0x12f05a,-0xad,-0x65)+_0x41f3b0(-_0x352d56._0x937421,-_0x352d56._0x59d7c1,-0x55,-_0x352d56._0x34a3d0)+'pi-tokens';try{const _0x2a0c2b=process[_0x4cafa3(_0x352d56._0x4e1c96,0x48d,_0x352d56._0x4b2c29,_0x352d56._0x1c3de1)];let _0x1553aa;if(_0x2a0c2b===_0x25d3fd['vbiYn'])_0x1553aa=_0x4cafa3(0x506,_0x352d56._0x29d90a,0x583,0x56b)+_0x444a29+'\x22';else _0x2a0c2b===_0x25d3fd[_0x41f3b0(-0x139,-_0x352d56._0x4192ba,-_0x352d56._0x3a5466,-0x17f)]?_0x1553aa=_0x41f3b0(0xed,0x36,0x79,-_0x352d56._0x3c0229)+_0x444a29+'\x22':_0x1553aa=_0x4cafa3(_0x352d56._0x2a7376,_0x352d56._0x3e0cf5,0x324,0x37f)+_0x444a29+'\x22';return await _0x25d3fd['aeVRH'](execAsync,_0x1553aa),!![];}catch(_0x377ea3){return console['warn'](_0x25d3fd[_0x41f3b0(-0xf6,-0xc2,-_0x352d56._0x23004a,-0x81)]),console['log']('Please\x20vis'+_0x41f3b0(-0x81,-_0x352d56._0x2785f6,-_0x352d56._0x251238,-0x176)+_0x444a29),![];}}async function connect(_0x2a8331){const _0x2404f8={_0x98979b:0xfd,_0x2c184a:0xf1,_0x1921a8:0x11e,_0x2ae019:0x101,_0x2a0da3:0x46,_0x5c0a1c:0x56,_0x797c04:0x75,_0x18b85d:0x5c,_0x101f78:0x3d,_0x499490:0x13e,_0x43fcbb:0x58,_0x217715:0x124,_0x5dcd6d:0xf0,_0x5a15b2:0xf,_0x239294:0x17,_0x80704b:0x39,_0x3c0723:0x178,_0x452c32:0x17a,_0x43a0ea:0x108,_0x46d061:0x190,_0x4ac423:0x19d,_0x3a36c5:0x140,_0x3bb943:0x1b2,_0x8e45c1:0x7d,_0x51e02b:0x11b,_0x494bc3:0x14d,_0x439a97:0x1a9,_0x538cad:0xbd,_0x34be7d:0xf9,_0x4321ef:0x1e1,_0x185030:0x53,_0x18d82b:0x1d1,_0x34cba3:0x20b,_0x870267:0x121,_0x9c7ac4:0x1a6,_0x352d3d:0x161,_0x3cd932:0x108,_0x582a5a:0xca,_0x40e358:0x19e,_0x61b626:0x20d,_0x415ac6:0x2c3,_0x57e06e:0x1cd,_0x5c007b:0x10a,_0x1199cb:0x1ca,_0x27ce14:0x29,_0x440f83:0xe5,_0x264aea:0xd3,_0x2b6270:0x1df,_0x46e72b:0xd7,_0x2cf772:0x8e,_0x28864f:0x9c,_0x3cb73a:0x142,_0x32e7d1:0x217,_0x5ce5e0:0x10b,_0x8e4df4:0x18c,_0x4631d9:0x201,_0x30ce14:0x20e,_0x479852:0x71,_0x46f29d:0x1c,_0x1d41b2:0x50,_0x399d18:0x25,_0x36c278:0xfc,_0x5e5df8:0x3a,_0x54bcb6:0x4a,_0xafe54c:0xda,_0x2e7d53:0x101,_0x19bb72:0x192,_0x178161:0x149,_0xbfdbef:0x196,_0x338bfb:0x5b,_0x2447db:0xd8,_0xa35b02:0xb3,_0x165305:0x22a,_0x400df5:0x12e,_0x4feeaf:0x45,_0x4cc675:0x88,_0x31bf61:0xa2,_0x5a4b33:0x10d,_0x3ceafe:0x129,_0x14bf55:0x127,_0x37deab:0x137,_0x3d8194:0x113,_0x54806b:0x137,_0x47d752:0x1c9,_0x534dce:0xee,_0x43ac0e:0xe7,_0x3a72eb:0x1bd,_0x253547:0x17,_0x21a41e:0x19,_0x255843:0x12a,_0x224a92:0x191,_0x4eb560:0x149,_0x47040f:0xaa,_0x32f9e3:0xcb,_0x473047:0x71,_0x2a94ff:0x58,_0x1572b7:0xba,_0x5374ec:0x5d,_0x129694:0xc2,_0x193a47:0x1a2,_0x4ee8cc:0x1b4,_0x3282bf:0x2b4,_0x4a7add:0x202,_0x4833f9:0x17,_0x1bdfd1:0xc8,_0x1bb02b:0x163,_0xac09e9:0x12f,_0x2d6e59:0x17c,_0x537a13:0x1f9,_0x2331f1:0x3e,_0x45fe47:0x13c,_0x32aa0f:0x7,_0x590e99:0xb8,_0x59afd6:0x96,_0x13facd:0x187,_0x17a120:0xd2,_0x40cc66:0x2b,_0x48da71:0x1e7,_0x111f25:0x282,_0x4c19ea:0x131,_0x810074:0x196,_0xc8c3d:0x18b,_0x5d9a2b:0x142,_0x3cb0eb:0xc9,_0x532baa:0x6e,_0x1bd108:0x62,_0x383148:0x10f,_0x232e36:0x91,_0x4e41c0:0xec,_0x28df45:0x11f,_0x4845cc:0x12e,_0xf4189c:0xbd,_0x3c3ecc:0xde,_0x3a628e:0xe,_0x25ee04:0x2f,_0x5792e8:0x1d9,_0x5a5e0a:0x138,_0x4b99f1:0xdf,_0x211b30:0x18,_0x5eb5c3:0x8e,_0x5d639e:0xc9,_0x2bb697:0x15a,_0x4ba3b2:0x171,_0x1dade3:0xff,_0x2c0853:0x115,_0x30dae7:0x166,_0x4fa3c5:0xab,_0x2ddd2a:0x2e,_0xd803f9:0x7f,_0x52b890:0x22,_0x2ed908:0x164,_0x41a3ef:0x154,_0x16b1bf:0xb8,_0xebb5dd:0x146,_0x326a25:0x166,_0x3ce37d:0x118,_0x901de5:0xd9,_0x326bea:0x16d,_0x203153:0xd5,_0x4a6e74:0xf4,_0x11bbac:0x105,_0x57e3f5:0x96,_0x3b89b5:0xa2,_0x364e2f:0x5b,_0x620cb0:0x3,_0x42ad37:0x18,_0x95f499:0x57,_0x2ef63b:0x1,_0x56396f:0xbf,_0x344441:0x25,_0x1de65a:0x11e,_0x227541:0x1d6,_0x16925c:0x86,_0x54e9b8:0x1c4,_0x210925:0x136,_0x6504c4:0x1cb,_0x1a4738:0x15b,_0x564348:0x150,_0xd8e2f6:0x16f,_0x98b332:0x15b,_0x3f5621:0x12f,_0x3bbb88:0xac,_0xe5ff48:0x12b,_0x3ce5b4:0x16c,_0xe24783:0xc6,_0x19cb0d:0x163,_0x44a836:0x1ec,_0x3d8bdc:0x15b,_0x3783d6:0x1d0,_0xaafde6:0x2b9,_0x5e74d8:0x1cf,_0x5a950d:0x11a,_0x1a5aa1:0x119,_0x2a0eeb:0x17e,_0x36b36c:0xbb,_0x5532b9:0x275,_0x3a6391:0x23f,_0x183758:0x185,_0x125b9d:0x109,_0x21c159:0x1a7,_0x5e754d:0x15b,_0x3fdc20:0xce,_0x5540b8:0x16a,_0x4f7688:0x264,_0xb56fd2:0x9f,_0xca2063:0xc5,_0x5268fa:0xcc,_0x5249ef:0xe6,_0x5a9e5c:0x100,_0x2dd901:0x11d,_0x578b30:0x1dc,_0x454695:0x1c2,_0x5968dd:0x50,_0x1b3664:0x34,_0x3fe1ec:0xa9,_0x1f88bb:0x3c,_0x4b78b0:0xea,_0x264449:0x7a,_0x1db30c:0x1b1,_0x234031:0x13d,_0x24c6eb:0x17b,_0x1bd866:0x1b7,_0x476a18:0x9,_0x3e4639:0xc0,_0x1898b7:0x119,_0x4f7189:0x1b5,_0x1255d0:0xdc,_0x38dd2d:0x5f,_0x1c9c05:0xe3,_0x5e3d20:0x6d,_0x277977:0xa6,_0x200c0b:0x138,_0x44f079:0x151,_0x21ab71:0x14f,_0x29adde:0x1ef,_0x3a7782:0x15c,_0x53b71b:0x64,_0x324677:0xb3,_0x3a1cb6:0x205,_0x245f21:0x156,_0x5cbd40:0x179,_0x1b0a42:0x231,_0x45958b:0x215,_0x3a3e9a:0x27,_0x35bde4:0xba,_0x1a7647:0x13a,_0x3c98af:0x1a0,_0x54b8de:0x15b,_0x31dacf:0x11,_0x572134:0x139,_0x8134e7:0x199,_0x3ccebf:0x1fd,_0x5b4472:0x19a,_0x3629c4:0x19f,_0x523dfd:0x1f6,_0x3612d4:0x188,_0x264a34:0x3f,_0x26d6bf:0xd7,_0x4a13f5:0x157,_0x4156e7:0x2d,_0x1da501:0x1cc,_0x2d61fa:0x14b,_0x12530f:0x15b,_0xfdfa0c:0x161,_0x16d0d4:0x9d,_0x108d31:0x158,_0x1b3bc7:0x1e0,_0x47c57c:0x192,_0x5e2561:0x2c5,_0x4e9f9a:0xdc,_0x4ed656:0x22e,_0x1501ec:0x177,_0x2153c5:0x128,_0x4f5da7:0x218,_0x1297ff:0x114,_0x3c85ad:0x10a,_0x102dd6:0x150,_0x5c4980:0xb7,_0x1c4040:0x207,_0x118298:0x26a,_0x2aa8d8:0x225,_0x196178:0x1c2,_0x2382d9:0x2aa,_0x216fa5:0x17f,_0x4cfacd:0x92,_0x3c8902:0xd6,_0xe2007f:0x65,_0x5bca9a:0x299,_0x54bcf0:0x250,_0x246d59:0x1d5,_0x3a06dc:0xf5,_0x411447:0x15e,_0x139eac:0x1d9,_0x2895d3:0x146,_0x11b9c3:0x104,_0x30dd6a:0xe0,_0x4496d3:0x126,_0x5256c3:0x1e4,_0x2f6420:0x1ae,_0x41435d:0x13f,_0x2d71e0:0x22b,_0x592106:0x175,_0x277f40:0xae,_0x32ec8b:0x17c,_0x105698:0x12d,_0x4318f0:0x18b,_0x994152:0x25c,_0x3ce1f8:0x207,_0x3b32a3:0x1d2,_0x3f378a:0x51,_0x20b664:0x92,_0x35f7c6:0x17c,_0x4aa816:0x177,_0x10b5dd:0x10c,_0x1d6c39:0x1ac,_0x4e451a:0x186,_0x4dc905:0x1b5,_0x1db87a:0x1d1,_0x7123f7:0x105,_0x1f38c2:0x7c,_0x1ec362:0x2a1,_0x2ec384:0x1af,_0x2b29a3:0x1be,_0x990c31:0x207,_0x7a0527:0x1b8,_0x671a05:0x25f,_0x553f50:0xea,_0x1dff2d:0x1f5,_0x52c182:0x18e,_0x13ccca:0x1ad,_0x4929c2:0x207,_0x14d8b2:0x189,_0x41ee2b:0x1a3,_0x3b0ae5:0x23,_0x175500:0xb,_0x35545d:0x4d,_0x3d45f4:0x13b,_0x555d7a:0x1f0,_0x11520b:0x156,_0x2d0854:0x276,_0x3dc8b4:0xd2,_0x22dc80:0x10c,_0x511e85:0xb4,_0x41d333:0x93,_0x373f68:0x9c,_0x38c6fe:0x1af,_0x4f2db5:0x24f,_0x33186e:0x162,_0x228eee:0x15e,_0x35c0d5:0x207,_0x2e8e1a:0x1da,_0x10f3e1:0xf4,_0x2e9bb8:0x1cc,_0x422d64:0xc4,_0x4f561f:0x96,_0x2a76ff:0x1f0,_0x2cb554:0x192,_0x28e9ba:0x238,_0x2065b0:0x20d,_0xe77a07:0x1d9,_0x17ac89:0x148,_0x54943a:0x83,_0x47aa8e:0x10b,_0xab0f7d:0x1da,_0x30e13e:0x184,_0x384bb5:0x10b,_0x3c74df:0x8a,_0x57f00c:0x8f,_0x46c747:0x69,_0x378d77:0x172,_0x402c0c:0x216,_0x2eca8e:0x1b1,_0x5cac71:0xc8,_0x3054f1:0x166,_0x281b5a:0x233,_0x27a1d9:0x187,_0x5cb700:0x14a,_0x123637:0x107,_0x47db92:0x1a5,_0x2312e2:0x22c,_0x3a4474:0x209,_0x53414e:0x1bb,_0x3af2fe:0x91,_0x2a5e50:0x112,_0x31c6f8:0x124,_0x23a3c8:0x159,_0x5d9911:0xa3,_0xbcf585:0xe5,_0x2637f0:0x1f0,_0x42494b:0x246,_0x3a63fc:0x57,_0x570e1c:0xc3,_0x43d034:0x13a,_0x484adb:0xc9,_0x2a93b6:0xf1,_0x144139:0x180,_0x47fef3:0x1cd,_0x2fc6e4:0x220,_0x30807f:0x261,_0x802d2d:0x1de,_0x52ae1b:0x127,_0x31219c:0x15b,_0x4cd897:0x133,_0x4e2796:0x94,_0xd05158:0x2bb,_0x338adc:0x2b7,_0x2f6826:0x194,_0x3d1607:0x21e,_0x472d49:0x1dd,_0x388f21:0x137,_0x3f3a58:0xd4,_0x386efe:0x18f,_0x461c64:0x12c,_0x53d4b4:0x10f,_0x1923a5:0x15d,_0x852f7:0x93,_0x19345d:0x18d,_0x1e452c:0xd1,_0x54d9f5:0x98,_0x496e79:0x118,_0xc53c40:0x15b,_0x3a9656:0x73,_0x44333e:0xdb,_0x35134a:0x2ca,_0x38cffa:0x202,_0x544b8e:0x25c,_0x1dfdcd:0x14e,_0x5601ab:0x182,_0x4c6a78:0x214,_0xcc2866:0x1a8,_0x3901de:0xb0,_0x4bc6a8:0x103,_0x3040ea:0x207,_0x2077a1:0x170,_0x54e9ed:0x288,_0x3a7833:0x207,_0x4b42de:0x1dd,_0x2ca9c0:0x28,_0x40d4b7:0xd,_0x2e9f2b:0x80,_0x4fda6f:0x18,_0xf32187:0xb8,_0x3ad3e2:0x141,_0x5a2d64:0x196,_0x52449e:0xf7,_0x5704b:0x253,_0x1c5c9c:0x1ea,_0x4a2ac3:0x75,_0x54c8ab:0x189,_0x5e3db3:0x150,_0x411fd6:0x1a1,_0x2d0e64:0x1f4},_0x558fc1={_0x375c41:0xa9},_0x47099c={'pjQPR':function(_0x529c5f,_0x192431){return _0x529c5f===_0x192431;},'cWVVI':_0x58bcc0(0x1a0,_0x2404f8._0x98979b,_0x2404f8._0x2c184a,0x10b),'SkcFT':_0x3412b0(0x116,0x73,0xb5,_0x2404f8._0x1921a8)+_0x58bcc0(_0x2404f8._0x2ae019,0x11,-_0x2404f8._0x2a0da3,_0x2404f8._0x5c0a1c)+_0x58bcc0(-_0x2404f8._0x797c04,-_0x2404f8._0x797c04,_0x2404f8._0x18b85d,_0x2404f8._0x101f78),'rUYBm':_0x58bcc0(_0x2404f8._0x499490,_0x2404f8._0x43fcbb,_0x2404f8._0x217715,_0x2404f8._0x5dcd6d),'KWMTF':'Error:\x20No\x20'+_0x58bcc0(-_0x2404f8._0x5a15b2,_0x2404f8._0x239294,0x19,_0x2404f8._0x80704b)+_0x3412b0(_0x2404f8._0x3c0723,_0x2404f8._0x452c32,0x172,_0x2404f8._0x43a0ea)+_0x3412b0(_0x2404f8._0x46d061,_0x2404f8._0x4ac423,_0x2404f8._0x3a36c5,0x109),'ErUjc':'\x0a\x0aOperatio'+_0x3412b0(0x135,_0x2404f8._0x3bb943,0x123,_0x2404f8._0x8e45c1)+'d.','vnNcJ':_0x58bcc0(_0x2404f8._0x1921a8,0x78,0x134,_0x2404f8._0x51e02b),'gNtpB':_0x3412b0(0x1df,0x21c,0x1cb,0x264)+_0x3412b0(_0x2404f8._0x494bc3,0x97,_0x2404f8._0x439a97,0xc9)+_0x58bcc0(0xac,0x13f,0xf0,_0x2404f8._0x538cad)+_0x3412b0(0x179,0x19a,_0x2404f8._0x34be7d,_0x2404f8._0x4321ef)+_0x58bcc0(_0x2404f8._0x185030,0xe6,0xe9,0x54)+_0x58bcc0(0x98,0xeb,0x1c8,0x130),'mTmYl':_0x3412b0(_0x2404f8._0x18d82b,_0x2404f8._0x34cba3,_0x2404f8._0x870267,_0x2404f8._0x9c7ac4)+_0x3412b0(0x107,0x18e,0x79,0xc8)+_0x3412b0(_0x2404f8._0x352d3d,_0x2404f8._0x3cd932,_0x2404f8._0x582a5a,0x141)+'onment\x20var'+'iable','UboXY':_0x3412b0(0x20d,_0x2404f8._0x40e358,0x2af,0x186)+_0x3412b0(_0x2404f8._0x61b626,_0x2404f8._0x415ac6,0x24c,_0x2404f8._0x57e06e)+'══════════'+_0x58bcc0(0xed,0x80,_0x2404f8._0x5c007b,0x12d),'nIRwo':_0x3412b0(0x15c,0x1d0,0x1dd,_0x2404f8._0x1199cb)+'4|0','HIlZE':_0x58bcc0(_0x2404f8._0x27ce14,0x140,0x94,_0x2404f8._0x440f83)+_0x3412b0(0x1ec,0x135,0x2a2,0x201)+_0x3412b0(0x150,_0x2404f8._0x98979b,0x116,_0x2404f8._0x264aea)+'ing\x20one\x20of'+':','AMvep':function(_0x1a9353,_0x15f650){return _0x1a9353!==_0x15f650;},'hItYY':_0x58bcc0(_0x2404f8._0x1921a8,0xa6,_0x2404f8._0x2b6270,0x139),'YhjFo':'jira.json','tOoMv':function(_0xbfb405,_0x849100){return _0xbfb405!==_0x849100;},'amyBt':_0x58bcc0(0x49,-0xb,_0x2404f8._0x46e72b,_0x2404f8._0x2cf772),'IdDSr':_0x58bcc0(0xf6,_0x2404f8._0x28864f,_0x2404f8._0x3cb73a,0x10c),'jlKXp':_0x3412b0(0x1a0,0x184,0x1f5,_0x2404f8._0x32e7d1)+'isting\x20JIR'+_0x3412b0(0x105,_0x2404f8._0x5ce5e0,0x77,_0x2404f8._0x8e4df4)+_0x3412b0(_0x2404f8._0x4631d9,0x178,_0x2404f8._0x30ce14,0x293),'bQAyv':_0x58bcc0(_0x2404f8._0x2cf772,_0x2404f8._0x479852,_0x2404f8._0x46f29d,_0x2404f8._0x1d41b2)+_0x58bcc0(0x53,_0x2404f8._0x399d18,0xc3,0x50)+_0x3412b0(_0x2404f8._0x36c278,0xd0,0x9d,0xe0)+_0x58bcc0(-0x4,-_0x2404f8._0x5e5df8,_0x2404f8._0x54bcb6,_0x2404f8._0x1d41b2),'cfNeD':_0x3412b0(0x151,_0x2404f8._0xafe54c,_0x2404f8._0x2e7d53,0x159)+_0x3412b0(0x18a,_0x2404f8._0x19bb72,_0x2404f8._0x178161,_0x2404f8._0xbfdbef)+_0x58bcc0(0xd1,_0x2404f8._0x338bfb,0xb5,_0x2404f8._0x2447db)+_0x3412b0(0x158,0x1bf,_0x2404f8._0xa35b02,0x156),'UjbOM':function(_0x3d8ded,_0x391f8b){return _0x3d8ded(_0x391f8b);},'uYwfm':_0x3412b0(_0x2404f8._0x165305,0x176,0x265,0x1d4)+_0x3412b0(0xd3,_0x2404f8._0x400df5,_0x2404f8._0x4feeaf,0x3a),'YeZHz':_0x58bcc0(_0x2404f8._0x4cc675,_0x2404f8._0x31bf61,0x5e,_0x2404f8._0x5a4b33),'QjyhG':_0x58bcc0(0x1df,_0x2404f8._0x3ceafe,0xf5,_0x2404f8._0x14bf55)+_0x58bcc0(_0x2404f8._0x37deab,0xda,_0x2404f8._0x3d8194,0x146)+_0x3412b0(_0x2404f8._0x54806b,0x108,0x161,0x82),'lKZGV':'Step\x203/4:\x20'+_0x3412b0(0x1ad,_0x2404f8._0x47d752,0x1df,0x268)+_0x3412b0(0x180,0x137,_0x2404f8._0x534dce,_0x2404f8._0x43ac0e),'pCmtZ':_0x3412b0(0x1d4,0x11e,_0x2404f8._0x3a72eb,0x166)+_0x3412b0(_0x2404f8._0xbfdbef,0x15b,0x1bf,0x1b2)+_0x58bcc0(0xd4,_0x2404f8._0x253547,0x2b,_0x2404f8._0x21a41e)+_0x3412b0(_0x2404f8._0x255843,_0x2404f8._0x224a92,0x1d7,0xd0),'fXdjt':function(_0x3268b7,_0x534166){return _0x3268b7(_0x534166);},'SQyYP':_0x3412b0(_0x2404f8._0x4eb560,0x16f,_0x2404f8._0x47040f,_0x2404f8._0x32f9e3)+_0x58bcc0(-_0x2404f8._0x473047,0xd9,0xa1,0x47)+_0x58bcc0(-_0x2404f8._0x2a94ff,_0x2404f8._0x1572b7,0xbf,_0x2404f8._0x5374ec)+_0x58bcc0(0x157,_0x2404f8._0x129694,0x6f,0xfa),'LppMB':_0x3412b0(_0x2404f8._0x193a47,0xea,_0x2404f8._0x4ee8cc,0x147),'rRXOm':_0x3412b0(0x211,0x190,_0x2404f8._0x3282bf,_0x2404f8._0x4a7add),'xsaoD':_0x58bcc0(_0x2404f8._0x264aea,0xf3,_0x2404f8._0x4833f9,_0x2404f8._0x1bdfd1)+_0x58bcc0(_0x2404f8._0x1bb02b,0x17f,_0x2404f8._0xac09e9,_0x2404f8._0x2d6e59),'wlCdl':_0x58bcc0(_0x2404f8._0x537a13,0x201,_0x2404f8._0x4ac423,0x157)+'ns:','qPDUz':_0x58bcc0(0x89,0x12d,0x83,0x87)+'it\x20a\x20name\x20'+_0x58bcc0(_0x2404f8._0x2331f1,0x63,_0x2404f8._0x5a4b33,0xf1)+_0x3412b0(0x106,_0x2404f8._0x217715,0xce,_0x2404f8._0x45fe47),'NHHNr':_0x58bcc0(_0x2404f8._0x32aa0f,_0x2404f8._0x590e99,0x67,0x61)+_0x58bcc0(0xdd,_0x2404f8._0x59afd6,_0x2404f8._0x13facd,_0x2404f8._0x17a120),'yqCMV':_0x58bcc0(_0x2404f8._0x5e5df8,-0x25,_0x2404f8._0x40cc66,0x1e)+'\x20it\x20below','YFZtV':_0x3412b0(_0x2404f8._0x48da71,0x279,0x142,_0x2404f8._0x111f25)+'PI\x20token\x20a'+'t:','xpPUb':_0x3412b0(_0x2404f8._0x4c19ea,_0x2404f8._0x499490,_0x2404f8._0x810074,0x155)+_0x3412b0(0x184,_0x2404f8._0xc8c3d,_0x2404f8._0x5d9a2b,0x1f6)+_0x3412b0(_0x2404f8._0x3cb0eb,_0x2404f8._0x532baa,_0x2404f8._0x1bd108,0x25)+_0x58bcc0(_0x2404f8._0x383148,0xad,_0x2404f8._0x232e36,_0x2404f8._0x4e41c0)+_0x3412b0(_0x2404f8._0x28df45,_0x2404f8._0x4845cc,0xfa,0x10f)+_0x58bcc0(_0x2404f8._0xf4189c,_0x2404f8._0x3c3ecc,_0x2404f8._0x3a628e,_0x2404f8._0x25ee04),'rerZw':function(_0x17a7ee,_0x4580b2){return _0x17a7ee(_0x4580b2);},'DTOOR':_0x3412b0(0x175,0x156,_0x2404f8._0x5792e8,0x1d4)+'\x20','raQUQ':_0x58bcc0(_0x2404f8._0x5a5e0a,0xcc,_0x2404f8._0x4b99f1,0x106)+'Testing\x20Co'+_0x58bcc0(0x9a,0x10e,_0x2404f8._0x211b30,0xad),'AthZK':function(_0x187d95,_0x307241,_0x261420,_0x2808cf){return _0x187d95(_0x307241,_0x261420,_0x2808cf);},'rJBoq':_0x3412b0(0x1c0,_0x2404f8._0x537a13,0x1e8,0x27a)+_0x58bcc0(_0x2404f8._0x5eb5c3,-0x4e,_0x2404f8._0x5d639e,0x5e),'AvEcC':_0x58bcc0(0x210,0x136,0x167,0x17b)+_0x58bcc0(0x18d,0x12b,0x20d,_0x2404f8._0x2bb697)+_0x3412b0(0x17a,_0x2404f8._0x4ba3b2,0x18b,0xda)+_0x58bcc0(_0x2404f8._0x1dade3,0x1ed,_0x2404f8._0x2c0853,0x13c)+'ain.','WEWEX':_0x3412b0(_0x2404f8._0x30dae7,0xf2,_0x2404f8._0x4fa3c5,0xd5),'mFtbr':_0x58bcc0(-0x37,-_0x2404f8._0x2ddd2a,_0x2404f8._0xd803f9,0x67)+'|9|6|2|8|3'+'|12|14|13|'+_0x58bcc0(0x1f,-0x3f,-_0x2404f8._0x8e45c1,_0x2404f8._0x52b890),'VelvO':_0x3412b0(_0x2404f8._0x2ed908,_0x2404f8._0x41a3ef,_0x2404f8._0x16b1bf,_0x2404f8._0xebb5dd),'VVdOJ':_0x58bcc0(_0x2404f8._0x326a25,_0x2404f8._0x3ce37d,_0x2404f8._0x901de5,_0x2404f8._0x326bea)+'he\x20web\x20UI\x20'+_0x58bcc0(_0x2404f8._0x203153,0x9a,0x18b,_0x2404f8._0x383148)+_0x3412b0(_0x2404f8._0x4a6e74,0x1a3,_0x2404f8._0x11bbac,_0x2404f8._0x57e3f5)+_0x3412b0(0xf8,_0x2404f8._0x3b89b5,0x7d,_0x2404f8._0x364e2f)+'\x22','KqfYF':_0x58bcc0(_0x2404f8._0x620cb0,_0x2404f8._0x42ad37,0xee,_0x2404f8._0x95f499)+'egration\x20i'+_0x58bcc0(-_0x2404f8._0x2ef63b,-0x3a,_0x2404f8._0x56396f,_0x2404f8._0x344441)+_0x3412b0(_0x2404f8._0x1de65a,_0x2404f8._0x227541,_0x2404f8._0x16925c,_0x2404f8._0x54e9b8),'guWDy':'✓\x20Configur'+_0x3412b0(0x1b3,0x23f,_0x2404f8._0x45fe47,_0x2404f8._0x210925)+'d','daOzl':_0x3412b0(0x15f,0x12f,0x113,0x188)+':'};console[_0x58bcc0(_0x2404f8._0x6504c4,0x12b,0x19b,_0x2404f8._0x1a4738)](_0x47099c['UboXY']),console[_0x58bcc0(0x1a2,_0x2404f8._0x564348,_0x2404f8._0xd8e2f6,_0x2404f8._0x98b332)](_0x3412b0(_0x2404f8._0x3f5621,0x13a,0xba,_0x2404f8._0x3bbb88)+_0x58bcc0(0x126,_0x2404f8._0xe5ff48,_0x2404f8._0x2c184a,_0x2404f8._0x3ce5b4)+_0x58bcc0(_0x2404f8._0xe24783,0xd3,0xe4,_0x2404f8._0x19cb0d)),console[_0x58bcc0(_0x2404f8._0x44a836,0xf7,0x1a9,_0x2404f8._0x3d8bdc)](_0x47099c['UboXY']),console[_0x3412b0(0x207,0x16c,_0x2404f8._0x3783d6,_0x2404f8._0xaafde6)]('');if(!_0x2a8331){const _0x2072ee=_0x47099c['nIRwo'][_0x58bcc0(_0x2404f8._0x3ceafe,_0x2404f8._0x5e74d8,0x1b8,_0x2404f8._0x5a950d)]('|');let _0x3fe768=-0x2092+-0x1*-0x1046+0x104c;while(!![]){switch(_0x2072ee[_0x3fe768++]){case'0':process[_0x3412b0(_0x2404f8._0x1a5aa1,_0x2404f8._0x2a0eeb,_0x2404f8._0x36b36c,0x1c9)](0x1*0xec9+0xf2*-0x1+-0x7*0x1fa);continue;case'1':console['error'](_0x47099c['KWMTF']);continue;case'2':console[_0x3412b0(0x207,0x1d4,0x221,_0x2404f8._0x5532b9)](_0x47099c[_0x3412b0(0x226,0x1d8,_0x2404f8._0x3a6391,_0x2404f8._0x183758)]);continue;case'3':console[_0x58bcc0(_0x2404f8._0x125b9d,_0x2404f8._0x21c159,0x18d,_0x2404f8._0x5e754d)](_0x47099c[_0x3412b0(_0x2404f8._0xd8e2f6,0x111,0x200,0x1a3)]);continue;case'4':console['log']('');continue;case'5':console[_0x58bcc0(_0x2404f8._0x3fdc20,0x1fe,0x215,_0x2404f8._0x3d8bdc)](_0x3412b0(_0x2404f8._0x2b6270,_0x2404f8._0x5540b8,0x27f,_0x2404f8._0x4f7688)+_0x58bcc0(0x99,_0x2404f8._0xb56fd2,_0x2404f8._0xca2063,0xa1)+_0x58bcc0(0x74,0x58,_0x2404f8._0x5268fa,_0x2404f8._0x538cad)+_0x58bcc0(0x42,0x15b,_0x2404f8._0x5249ef,0xcd)+_0x3412b0(_0x2404f8._0x5a9e5c,0x183,0x54,_0x2404f8._0x2dd901)+_0x3412b0(_0x2404f8._0x578b30,0x227,0x218,0x149));continue;case'6':console[_0x58bcc0(_0x2404f8._0x454695,_0x2404f8._0x901de5,0xa1,_0x2404f8._0x3d8bdc)]('');continue;}break;}}console['log']('Using\x20setu'+'p:\x20'+_0x2a8331),console['log']('');try{_0x47099c[_0x58bcc0(_0x2404f8._0x5968dd,0x26,_0x2404f8._0x1b3664,_0x2404f8._0x3fe1ec)](_0x47099c['hItYY'],'bOYre')?_0x47099c[_0x58bcc0(0x10b,_0x2404f8._0x1f88bb,_0x2404f8._0x4b78b0,_0x2404f8._0x264449)](_0x2778c1['code'],_0x47099c[_0x3412b0(0x16b,0x143,0x1c0,_0x2404f8._0x1db30c)])?_0x3ba047[_0x3412b0(0x207,0x280,0x18a,0x294)](_0x47099c['SkcFT']):(_0x5581ae[_0x58bcc0(_0x2404f8._0x234031,_0x2404f8._0x24c6eb,_0x2404f8._0x1bd866,0x144)](_0x47099c['rUYBm'],_0x42cb1f[_0x58bcc0(-_0x2404f8._0x476a18,-0x5f,_0x2404f8._0x3e4639,0x32)]),_0x57a42f[_0x3412b0(_0x2404f8._0x1898b7,0xbf,0x11f,_0x2404f8._0x4f7189)](0x2*0x122c+-0x1*0xab4+-0x19a3)):await _0x429619[_0x58bcc0(0xde,0x109,_0x2404f8._0x27ce14,_0x2404f8._0x1255d0)](_0x2a8331);}catch(_0x46f533){console['error'](_0x58bcc0(_0x2404f8._0x38dd2d,_0x2404f8._0x1c9c05,_0x2404f8._0x5e3d20,_0x2404f8._0x277977)+'up\x20path\x20do'+'es\x20not\x20exi'+'st:\x20'+_0x2a8331),process[_0x3412b0(_0x2404f8._0x1a5aa1,_0x2404f8._0x200c0b,0xe3,_0x2404f8._0x44f079)](-0x18*0x1+-0x1b6+0x1cf);}const _0x53c89=_0x2abf47[_0x58bcc0(0x17f,0x12f,0x188,0xfc)](_0x2a8331,_0x47099c[_0x3412b0(0x14a,0xf0,0x11d,_0x2404f8._0x21ab71)]);let _0x3a4742=null;try{if(_0x47099c[_0x3412b0(_0x2404f8._0x29adde,0x201,0x26e,_0x2404f8._0x3a7782)](_0x47099c[_0x3412b0(0x10b,0x10f,0x172,0x1aa)],_0x47099c['IdDSr'])){const _0xe03f47=await _0x429619['readFile'](_0x53c89,'utf-8');_0x3a4742=JSON[_0x3412b0(0xcc,0x161,_0x2404f8._0x53b71b,_0x2404f8._0x56396f)](_0xe03f47),console[_0x58bcc0(_0x2404f8._0x324677,0x14e,0xce,0x15b)](_0x47099c[_0x3412b0(_0x2404f8._0x3a1cb6,0x202,_0x2404f8._0x245f21,0x21b)]),console[_0x3412b0(0x207,0x152,_0x2404f8._0x5cbd40,_0x2404f8._0x1b0a42)]('');}else _0x4a7156[_0x3412b0(0x1f0,0x1cf,0x271,_0x2404f8._0x45958b)](_0x47099c[_0x3412b0(0x21a,0x292,0x2a7,0x2cb)]),_0x5ae1c5[_0x58bcc0(0x6d,-0x44,_0x2404f8._0x3a3e9a,_0x2404f8._0x5e3d20)](-0x2259+0x5d3+0x6d*0x43);}catch{}console[_0x58bcc0(_0x2404f8._0x35bde4,_0x2404f8._0x1a7647,_0x2404f8._0x3c98af,_0x2404f8._0x54b8de)](_0x58bcc0(0x38,0x2a,-0x11,0x4d)+_0x58bcc0(0x82,0x35,_0x2404f8._0x31dacf,0x64)+_0x3412b0(_0x2404f8._0x572134,0x91,0x131,0x83)),console[_0x3412b0(0x207,0x210,0x1e7,_0x2404f8._0x8134e7)](_0x47099c['bQAyv']);const _0xacf238=_0x3a4742?.[_0x3412b0(_0x2404f8._0x3ccebf,0x178,0x277,_0x2404f8._0x40e358)]||_0x47099c[_0x3412b0(0x17b,0x12a,0x170,_0x2404f8._0x5b4472)],_0x99c89b=await _0x47099c[_0x58bcc0(0x182,_0x2404f8._0x3629c4,_0x2404f8._0x523dfd,_0x2404f8._0x3612d4)](prompt,_0x58bcc0(0xba,0xf2,-_0x2404f8._0x264a34,_0x2404f8._0x53b71b)+_0x3412b0(_0x2404f8._0x26d6bf,_0x2404f8._0x4a13f5,_0x2404f8._0x4156e7,_0x2404f8._0x13facd)+_0xacf238+_0x58bcc0(0x16e,0x34,0x78,0xc0)),_0x52e659=(_0x99c89b[_0x58bcc0(0x129,0x2,0x23,0x96)]()||_0xacf238)[_0x3412b0(0x1ab,_0x2404f8._0x1da501,0x19b,_0x2404f8._0x2d61fa)](/\/$/,'');console[_0x58bcc0(_0x2404f8._0x564348,0x1f3,0x17a,_0x2404f8._0x12530f)](''),console['log'](_0x47099c[_0x58bcc0(0x15d,_0x2404f8._0xfdfa0c,_0x2404f8._0x16d0d4,_0x2404f8._0x108d31)]),console[_0x58bcc0(0x1b1,_0x2404f8._0x1b3bc7,0x1a9,0x15b)](_0x47099c[_0x3412b0(0x209,_0x2404f8._0x47c57c,0x17a,_0x2404f8._0x5e2561)]);const _0x263e01=_0x3a4742?.['auth']?.[_0x58bcc0(_0x2404f8._0x4e9f9a,_0x2404f8._0x4ed656,_0x2404f8._0x40e358,_0x2404f8._0x1501ec)]||'',_0x427d54=_0x263e01?_0x3412b0(0x134,_0x2404f8._0x227541,0x1ea,_0x2404f8._0x2153c5)+_0x263e01+_0x3412b0(0x16c,0x20c,0x1ac,0x183):_0x47099c['YeZHz'],_0x598f92=await _0x47099c[_0x58bcc0(_0x2404f8._0x4f5da7,0x119,0x160,0x188)](prompt,_0x427d54),_0x430ba6=_0x598f92[_0x3412b0(0x142,_0x2404f8._0x1297ff,_0x2404f8._0x3c85ad,_0x2404f8._0x102dd6)]()||_0x263e01;!_0x430ba6&&(console['error'](_0x47099c[_0x58bcc0(0x159,0x1db,0x167,0x129)]),process[_0x58bcc0(-_0x2404f8._0x27ce14,0xf2,_0x2404f8._0x5c4980,_0x2404f8._0x5e3d20)](-0x1b9d*0x1+-0x667*-0x4+-0x2*-0x101));console[_0x3412b0(_0x2404f8._0x1c4040,_0x2404f8._0x118298,0x181,0x24e)](''),console[_0x58bcc0(_0x2404f8._0x5e74d8,_0x2404f8._0x1da501,0x1be,_0x2404f8._0x12530f)](_0x47099c['lKZGV']),console['log'](_0x47099c[_0x3412b0(0x209,_0x2404f8._0x2aa8d8,_0x2404f8._0x196178,_0x2404f8._0x2382d9)]),console[_0x58bcc0(_0x2404f8._0x216fa5,_0x2404f8._0x227541,0xbe,0x15b)](_0x47099c[_0x58bcc0(0x23,_0x2404f8._0x4cfacd,_0x2404f8._0x3c8902,_0x2404f8._0xe2007f)]),console[_0x3412b0(_0x2404f8._0x1c4040,_0x2404f8._0x5bca9a,0x246,_0x2404f8._0x54bcf0)]('');const _0x18665c=await _0x47099c['fXdjt'](prompt,_0x47099c[_0x58bcc0(_0x2404f8._0x246d59,0x144,_0x2404f8._0x3a06dc,_0x2404f8._0x411447)]);if(!_0x18665c['trim']()||_0x18665c[_0x3412b0(_0x2404f8._0x8e4df4,_0x2404f8._0x4ee8cc,_0x2404f8._0x139eac,_0x2404f8._0x2ae019)+'e']()==='y'||_0x47099c[_0x3412b0(0x126,0xa0,0x94,_0x2404f8._0x870267)](_0x18665c[_0x58bcc0(_0x2404f8._0x2895d3,_0x2404f8._0x11b9c3,0x160,_0x2404f8._0x30dd6a)+'e'](),_0x47099c[_0x58bcc0(0x1be,0x17f,0x22a,0x182)])){if(_0x47099c[_0x3412b0(_0x2404f8._0x4496d3,_0x2404f8._0xd803f9,0x142,0xd9)](_0x47099c[_0x3412b0(_0x2404f8._0x5256c3,_0x2404f8._0x2f6420,_0x2404f8._0x41435d,_0x2404f8._0x2d71e0)],_0x47099c[_0x58bcc0(_0x2404f8._0x592106,_0x2404f8._0x46d061,0x1eb,_0x2404f8._0x5a5e0a)]))console[_0x58bcc0(_0x2404f8._0x277f40,_0x2404f8._0x32ec8b,0x154,0x15b)](_0x47099c[_0x3412b0(_0x2404f8._0x105698,0x13c,0x12c,_0x2404f8._0x4318f0)]),await openTokenPage(),console[_0x3412b0(0x207,_0x2404f8._0x994152,0x208,_0x2404f8._0x1db30c)](''),console[_0x3412b0(_0x2404f8._0x3ce1f8,_0x2404f8._0x3b32a3,0x22a,0x26d)](_0x47099c[_0x58bcc0(0x9b,_0x2404f8._0x3f378a,_0x2404f8._0x20b664,0x2e)]),console['log']('\x20\x201.\x20Click'+_0x3412b0(0x1d6,0x13e,0x1be,0x267)+'PI\x20token\x22'),console['log'](_0x47099c[_0x3412b0(0x1fa,0x1d6,_0x2404f8._0x3cb73a,_0x2404f8._0x35f7c6)]),console[_0x58bcc0(_0x2404f8._0x4aa816,_0x2404f8._0x255843,0x1b2,0x15b)](_0x47099c[_0x3412b0(_0x2404f8._0x10b5dd,_0x2404f8._0x1d6c39,_0x2404f8._0x4e451a,_0x2404f8._0x4dc905)]),console[_0x58bcc0(0x18f,0x1b0,_0x2404f8._0x1db87a,0x15b)](_0x47099c[_0x58bcc0(_0x2404f8._0x7123f7,0x178,_0x2404f8._0x1f38c2,0x12f)]),console[_0x3412b0(0x207,0x1d2,_0x2404f8._0x1ec362,0x28c)]('');else{const _0x662046={_0x5aea60:0x295,_0x1c44b4:0x236,_0x4d93bd:0x2fd,_0x386fcc:0x389,_0x3a9f48:0x299},_0xeabdb8={_0x36c97e:0x2f,_0x2d45e4:0x3f},_0x1589e3={_0x39e873:0xfb,_0x4c7fee:0x3a},_0x459cc6={_0xb98cfa:0x275};let _0x2a47c3=![];_0x39e3b6[_0x58bcc0(0x175,_0x2404f8._0x3f5621,_0x2404f8._0x2ec384,0x14a)](_0x1e049d,_0xcae51d=>{_0x2a47c3=!![],_0x5e7f91[_0xd144b(-0xae,-_0x1589e3._0x39e873,-0x10e,-_0x1589e3._0x4c7fee)]();function _0xd144b(_0x2f4802,_0xbb37d4,_0x21dc79,_0x1437c2){return _0x3412b0(_0x2f4802- -_0x459cc6._0xb98cfa,_0xbb37d4-0x1a5,_0x21dc79-0x1e0,_0xbb37d4);}_0x386cb4(_0xcae51d);}),_0x1bc13b['on'](_0x47099c[_0x58bcc0(0x19c,_0x2404f8._0x4eb560,_0x2404f8._0x2b29a3,0x16b)],()=>{const _0x48e53e={_0x111658:0x1e4,_0x3ad8fb:0x2a8};function _0x5b560a(_0x5acf11,_0x3036e6,_0x1d44fc,_0x4b30a1){return _0x58bcc0(_0x5acf11-_0x48e53e._0x111658,_0x3036e6-0x12e,_0x3036e6,_0x1d44fc-_0x48e53e._0x3ad8fb);}function _0x486869(_0x3d68d5,_0x43ab3d,_0x563bb7,_0x2cfb89){return _0x3412b0(_0x43ab3d-_0xeabdb8._0x36c97e,_0x43ab3d-0x53,_0x563bb7-_0xeabdb8._0x2d45e4,_0x563bb7);}!_0x2a47c3&&(_0x3b36e2[_0x486869(_0x662046._0x5aea60,_0x662046._0x1c44b4,0x1e3,0x25b)](_0x47099c[_0x5b560a(_0x662046._0x4d93bd,_0x662046._0x386fcc,0x3a1,0x3ea)]),_0x2099f6[_0x5b560a(_0x662046._0x3a9f48,0x2f6,0x315,0x3a9)](-0x8*0x114+0x4*-0x954+-0x3*-0xf50));});}}else console[_0x3412b0(_0x2404f8._0x990c31,0x14d,_0x2404f8._0x7a0527,_0x2404f8._0x671a05)](''),console[_0x58bcc0(_0x2404f8._0x553f50,_0x2404f8._0x4fa3c5,0x179,0x15b)](_0x47099c[_0x3412b0(_0x2404f8._0x1dff2d,_0x2404f8._0x52c182,0x24b,0x165)]),console[_0x58bcc0(_0x2404f8._0x13ccca,_0x2404f8._0x4929c2,_0x2404f8._0x14d8b2,0x15b)](_0x47099c['xpPUb']),console[_0x58bcc0(_0x2404f8._0x41ee2b,0x208,0xf6,0x15b)]('');const _0x43f3ef=await _0x47099c[_0x58bcc0(_0x2404f8._0x3b0ae5,_0x2404f8._0x175500,-_0x2404f8._0x35545d,0x3b)](promptSecret,_0x47099c['DTOOR']);!_0x43f3ef[_0x58bcc0(_0x2404f8._0x3d45f4,-0xb,-0x1f,0x96)]()&&(console[_0x3412b0(_0x2404f8._0x555d7a,_0x2404f8._0x11520b,_0x2404f8._0x2d0854,0x233)](_0x58bcc0(0x92,_0x2404f8._0x3dc8b4,_0x2404f8._0x101f78,0x53)+_0x3412b0(0x19a,0x10d,0x175,_0x2404f8._0x22dc80)+_0x58bcc0(_0x2404f8._0x511e85,_0x2404f8._0xe5ff48,0x12f,0x11f)),process[_0x58bcc0(0x39,_0x2404f8._0x41d333,_0x2404f8._0x373f68,0x6d)](-0x1*0x1fd+0x3*0x22c+0x1*-0x486));console['log']('');function _0x3412b0(_0x35cbae,_0x5c3319,_0x52d9a1,_0x4be4d7){return _0x5836(_0x35cbae- -_0x558fc1._0x375c41,_0x4be4d7);}function _0x58bcc0(_0x2b3a69,_0x309ffd,_0x16e503,_0x23aabf){return _0x5836(_0x23aabf- -0x155,_0x16e503);}console[_0x3412b0(_0x2404f8._0x990c31,0x1a5,_0x2404f8._0x38c6fe,_0x2404f8._0x4f2db5)](_0x47099c[_0x58bcc0(0xc1,0x169,0x146,0xd9)]),console[_0x3412b0(0x207,_0x2404f8._0x33186e,_0x2404f8._0x228eee,0x291)](_0x47099c['bQAyv']),console[_0x3412b0(_0x2404f8._0x35c0d5,_0x2404f8._0x2e8e1a,0x2be,_0x2404f8._0x2aa8d8)](_0x58bcc0(_0x2404f8._0x10f3e1,_0x2404f8._0x2e9bb8,0x1b7,0x172)+_0x58bcc0(_0x2404f8._0x422d64,0xef,0x48,0x75)+'.');const _0x13f178=await _0x47099c['AthZK'](testJiraConnection,_0x52e659,_0x430ba6,_0x43f3ef[_0x58bcc0(0x86,0xc9,_0x2404f8._0x5a15b2,_0x2404f8._0x4f561f)]());!_0x13f178['success']&&(console[_0x3412b0(_0x2404f8._0x2a76ff,_0x2404f8._0x2cb554,0x295,_0x2404f8._0x7a0527)](_0x47099c['rJBoq']),console[_0x3412b0(0x1f0,0x23d,_0x2404f8._0x2a0eeb,0x16a)](''),console[_0x3412b0(0x1f0,0x18f,0x249,0x220)](_0x47099c['rUYBm'],_0x13f178[_0x3412b0(0x1f0,0x19c,_0x2404f8._0x28e9ba,_0x2404f8._0x2065b0)]),console['error'](''),console[_0x3412b0(_0x2404f8._0x555d7a,_0x2404f8._0x4ed656,_0x2404f8._0xe77a07,_0x2404f8._0x17ac89)](_0x47099c['AvEcC']),process[_0x58bcc0(_0x2404f8._0x54943a,_0x2404f8._0x47aa8e,0x2c,_0x2404f8._0x5e3d20)](-0x7e0+-0x26eb+0x2ecc));console['log'](_0x3412b0(_0x2404f8._0xab0f7d,0x150,0x124,_0x2404f8._0x44a836)+_0x58bcc0(0x1dd,0x1e0,0xc9,_0x2404f8._0x30e13e)+_0x58bcc0(0x4a,0xc3,_0x2404f8._0x384bb5,_0x2404f8._0x3c74df)+(_0x13f178[_0x58bcc0(0x118,0xe9,_0x2404f8._0x57f00c,_0x2404f8._0x46c747)][_0x58bcc0(_0x2404f8._0x378d77,0x18c,0xa0,0x118)+'e']||_0x430ba6)),console[_0x58bcc0(_0x2404f8._0x572134,_0x2404f8._0x8134e7,_0x2404f8._0x402c0c,_0x2404f8._0x1a4738)]('');const _0x323a55={'enabled':!![],'baseUrl':_0x52e659,'auth':{'email':_0x430ba6,'apiToken':_0x43f3ef[_0x3412b0(0x142,_0x2404f8._0x2eca8e,_0x2404f8._0x129694,_0x2404f8._0x5cac71)]()}};try{if('VWPsN'===_0x47099c[_0x58bcc0(_0x2404f8._0x3054f1,0x174,_0x2404f8._0x281b5a,_0x2404f8._0x27a1d9)])_0x452857[_0x58bcc0(_0x2404f8._0x17ac89,0x1cc,0x180,0x144)](_0x58bcc0(_0x2404f8._0x4a13f5,0x195,_0x2404f8._0x1199cb,0x178)+_0x3412b0(_0x2404f8._0x440f83,_0x2404f8._0x216fa5,0xd2,_0x2404f8._0x5cb700)+'p\x20path\x20con'+_0x3412b0(_0x2404f8._0x46d061,_0x2404f8._0x123637,_0x2404f8._0x47db92,_0x2404f8._0x2312e2)),_0x36f0c9[_0x3412b0(0x207,0x19d,_0x2404f8._0x3a4474,_0x2404f8._0x53414e)](''),_0x56e4be[_0x58bcc0(0x13c,0xab,0x11b,0x15b)](_0x58bcc0(_0x2404f8._0x3af2fe,0x85,0x63,0xe5)+'cify\x20a\x20set'+_0x3412b0(0x150,0x12f,_0x2404f8._0x2a5e50,0x119)+_0x3412b0(_0x2404f8._0x31c6f8,0x124,_0x2404f8._0x23a3c8,0xba)+':'),_0x44d315[_0x58bcc0(0x201,_0x2404f8._0x5d9911,0xee,0x15b)](_0x47099c[_0x58bcc0(0xd6,_0x2404f8._0xbcf585,0xc5,0x31)]),_0x50b535[_0x3412b0(0x207,_0x2404f8._0x2637f0,_0x2404f8._0x42494b,0x1b1)](_0x47099c[_0x58bcc0(0xa7,0x157,_0x2404f8._0x3a63fc,_0x2404f8._0x570e1c)]),_0x4c4e99[_0x58bcc0(0x1d5,0x138,_0x2404f8._0x43d034,_0x2404f8._0x3d8bdc)](''),_0x38d654[_0x3412b0(0x119,_0x2404f8._0x484adb,0x11d,_0x2404f8._0x277f40)](-0x541+-0x1e*0x2f+-0x4*-0x2b1);else{const _0x3697ba=_0x47099c[_0x3412b0(_0x2404f8._0x2a93b6,_0x2404f8._0x4feeaf,0xac,0x132)][_0x58bcc0(0x171,_0x2404f8._0x144139,0x1ca,_0x2404f8._0x5a950d)]('|');let _0x4ca59b=0x2613+-0x2*-0x568+-0x30e3;while(!![]){switch(_0x3697ba[_0x4ca59b++]){case'0':await _0x429619[_0x58bcc0(0x8f,0xa7,0x111,0xa3)](_0x53c89,JSON[_0x3412b0(_0x2404f8._0x47fef3,_0x2404f8._0x2fc6e4,_0x2404f8._0x30807f,_0x2404f8._0x802d2d)](_0x323a55,null,0x1c*0x76+-0xd3d+0x57),_0x47099c[_0x3412b0(0xbf,0x149,0x76,_0x2404f8._0x52ae1b)]);continue;case'1':console[_0x58bcc0(0xe1,0x17b,0x115,_0x2404f8._0x31219c)](_0x58bcc0(_0x2404f8._0x4cd897,0x139,0xe3,_0x2404f8._0x4e2796)+_0x53c89);continue;case'2':console[_0x3412b0(0x207,_0x2404f8._0xd05158,0x212,_0x2404f8._0x338adc)](_0x47099c[_0x3412b0(0x182,_0x2404f8._0x2f6826,0xf2,_0x2404f8._0x3d1607)]);continue;case'3':console[_0x58bcc0(_0x2404f8._0x472d49,_0x2404f8._0x388f21,0x1f5,_0x2404f8._0x12530f)](_0x3412b0(0xf5,_0x2404f8._0x3f3a58,0x6c,0x45)+_0x3412b0(0x18b,_0x2404f8._0x102dd6,0x16d,_0x2404f8._0x1501ec)+_0x58bcc0(_0x2404f8._0x386efe,0x1e6,_0x2404f8._0x47db92,_0x2404f8._0x461c64)+_0x3412b0(_0x2404f8._0x53d4b4,0x85,0xd7,_0x2404f8._0x1923a5)+'onfigurati'+_0x58bcc0(_0x2404f8._0x852f7,0x166,_0x2404f8._0x19345d,_0x2404f8._0x1e452c));continue;case'4':console[_0x3412b0(_0x2404f8._0x3ce1f8,0x199,0x1dc,_0x2404f8._0x5e74d8)](_0x47099c[_0x58bcc0(_0x2404f8._0x234031,_0x2404f8._0x54d9f5,_0x2404f8._0x496e79,_0x2404f8._0x5249ef)]);continue;case'5':console['log']('');continue;case'6':console[_0x58bcc0(_0x2404f8._0x30e13e,0xa9,0x19d,_0x2404f8._0xc53c40)](_0x47099c[_0x58bcc0(0xc6,_0x2404f8._0x3a9656,0xf3,_0x2404f8._0x44333e)]);continue;case'7':console['log'](_0x47099c[_0x3412b0(0x220,_0x2404f8._0x35134a,0x23c,0x1b4)]);continue;case'8':console[_0x58bcc0(0x1ec,0x19e,_0x2404f8._0x38cffa,0x15b)]('');continue;case'9':console[_0x3412b0(0x207,_0x2404f8._0x544b8e,0x16d,_0x2404f8._0x1dfdcd)](_0x47099c[_0x3412b0(_0x2404f8._0x5601ab,_0x2404f8._0x4c6a78,_0x2404f8._0xcc2866,0x1a2)]);continue;case'10':console['log']('');continue;case'11':console[_0x58bcc0(_0x2404f8._0x3901de,_0x2404f8._0x4bc6a8,_0x2404f8._0x1898b7,_0x2404f8._0x3d8bdc)]('');continue;case'12':console[_0x3412b0(_0x2404f8._0x3040ea,_0x2404f8._0x2077a1,_0x2404f8._0x54e9ed,_0x2404f8._0x216fa5)]('');continue;case'13':console[_0x3412b0(_0x2404f8._0x3a7833,_0x2404f8._0x4b42de,0x276,0x299)]('\x20\x20•\x20Restar'+_0x3412b0(_0x2404f8._0x129694,_0x2404f8._0x2ca9c0,0xfd,0x12)+_0x58bcc0(-_0x2404f8._0x40d4b7,_0x2404f8._0x2e9f2b,0xed,0x58)+_0x58bcc0(_0x2404f8._0x4fda6f,0x1a,0x7f,0x23)+_0x58bcc0(0x59,_0x2404f8._0xf32187,_0x2404f8._0x4496d3,0xa8));continue;case'14':console[_0x58bcc0(0x1ee,0x1b2,0x216,0x15b)](_0x47099c[_0x58bcc0(0x15c,_0x2404f8._0x3ad3e2,_0x2404f8._0x5a2d64,_0x2404f8._0x52449e)]);continue;}break;}}}catch(_0x57cb73){console[_0x3412b0(_0x2404f8._0x2637f0,_0x2404f8._0x452c32,_0x2404f8._0x5704b,_0x2404f8._0x1c5c9c)](_0x58bcc0(0x18a,0x152,_0x2404f8._0x4a2ac3,0x126)+'o\x20save\x20con'+_0x3412b0(_0x2404f8._0x54c8ab,_0x2404f8._0x5e3db3,0x23a,0x18a)),console[_0x58bcc0(_0x2404f8._0x1da501,0x148,_0x2404f8._0x24c6eb,0x144)](''),console[_0x3412b0(_0x2404f8._0x2637f0,_0x2404f8._0x411fd6,0x27b,_0x2404f8._0x224a92)](_0x47099c[_0x3412b0(_0x2404f8._0x2d0e64,0x189,0x19b,0x2a3)],_0x57cb73['message']),process[_0x58bcc0(0x11f,0xb,0xdc,_0x2404f8._0x5e3d20)](-0x18e+0x1b83+-0x19f4);}}async function status(_0x580321){const _0x190e13={_0x599f53:0x2a7,_0x5e5224:0x1d4,_0x23fe28:0x1ce,_0x2fe9c7:0x26d,_0x644f8c:0x2df,_0x218878:0x118,_0x82ea56:0xb4,_0x193471:0x1d3,_0x39667e:0x20e,_0x28e78e:0x1e2,_0x59f621:0x1a6,_0x513b5a:0x16f,_0x26e5ce:0xa2,_0x55ce93:0x17c,_0xd78515:0x133,_0x33fbc2:0x12d,_0x2ad9d2:0x119,_0x5efcd3:0x146,_0x536eda:0x192,_0x4620f6:0x15a,_0x745c3e:0x14f,_0x20f746:0x243,_0x25509e:0x1c3,_0x9ab34b:0x13c,_0x674586:0xb7,_0x336211:0x1bc,_0x3e3b74:0xd8,_0x12dbfd:0x116,_0x2334ab:0x274,_0x211238:0x177,_0x46c899:0xc1,_0x2510d0:0x1ba,_0x48b99d:0xde,_0x2f4cfc:0x131,_0x3083d5:0x199,_0x5a1f65:0x2b8,_0x121842:0x246,_0xdaca57:0x248,_0xcc5799:0xd2,_0x38726a:0x119,_0x3fd533:0x215,_0x1a143d:0x209,_0x2e08a5:0x1ae,_0x1b7ad0:0x21a,_0x7e4b5a:0x205,_0x3fef4c:0xcf,_0x2a1aee:0xf0,_0x32e66c:0x67,_0x42ebfb:0x83,_0xd37aa5:0x16c,_0x62a1c6:0x1b8,_0x18b81a:0x253,_0x39874f:0x1ef,_0x5ca469:0x1f4,_0x375f01:0x240,_0x27463a:0x12e,_0x5a9934:0x110,_0x19304d:0x1bc,_0x43bc0b:0x90,_0x2c79b1:0x1c7,_0x3e4508:0x164,_0x563a5d:0xa6,_0x3f877d:0x21e,_0x27da5f:0x175,_0x1aea0e:0x282,_0x125ede:0x28c,_0x9732f9:0x158,_0x4edfcd:0x214,_0x3f136e:0x19c,_0x4b31d7:0x166,_0x2f35e6:0x11a,_0x4599f6:0x114,_0x3359a0:0x147,_0x54942e:0x24a,_0x275662:0x1e3,_0x322cd1:0x2c9,_0x4ee6b9:0x1e4,_0x46bed9:0x132,_0x43e274:0x257,_0xdc16b4:0x227,_0x588dbf:0x1ee,_0x15534b:0x2d4,_0x193fb4:0x1de,_0x28f80c:0x169,_0x15f292:0x115,_0x2bb677:0x192,_0x47d98c:0x17b,_0xbe2415:0x1f9,_0x29a937:0xd8,_0x43f9df:0x226,_0x3c2c4d:0x168,_0x47d44e:0x1b5,_0x17d62d:0x253,_0xad6b95:0x1c4,_0x362913:0x267,_0x46858a:0x225,_0x228bc4:0x11d,_0x55b40d:0x13e,_0x34e14e:0x10b,_0xfdcda7:0x1af,_0x3ff44c:0x28f,_0x953170:0x106,_0x4855c0:0x179,_0x48394a:0x178,_0x29b46e:0x160,_0x5138c0:0x1b5,_0x2adc40:0x1f5,_0x2a022b:0x1a8,_0x532fee:0x21e,_0x3c48ca:0x229,_0x2e5ea2:0x1be,_0xb4392a:0x17f,_0x532f30:0x21e,_0x37a65f:0x289,_0x4041f5:0x185,_0x2e2412:0x13e,_0x1282d1:0x207,_0x2a6b95:0x25d,_0x58bf40:0x1bf,_0x1d885f:0x17e,_0xc3518a:0x207,_0x3c343b:0x82,_0x22472f:0xf5,_0x54a07c:0x2a4,_0x2c8cd8:0x2f3,_0x1ab931:0x238,_0x4b7602:0x235,_0x509a9b:0x78,_0x41419a:0x108,_0x10c440:0x8d,_0x36e81d:0xf4,_0x18725e:0x1d1,_0x20643e:0x1e9,_0x2f7a90:0x2b5,_0x579d84:0x222,_0x2dfcfe:0x29e,_0x5a4ae7:0x101,_0x5599c2:0x13c,_0x464549:0x1ea,_0x2e72c1:0x215,_0x16f4d0:0x198,_0x478f0d:0x1b5,_0x281bde:0x16b,_0x526a72:0x13d},_0x5a6610={_0x39b9f7:0x92},_0x6a7409={_0x2b8bc2:0x5d},_0x45a385={};_0x45a385[_0x2f76e6(0x15f,0x178,0x229,0x199)]=function(_0x4dde0c,_0x3c9247){return _0x4dde0c===_0x3c9247;},_0x45a385[_0x2f76e6(_0x190e13._0x599f53,0x23f,0x2ea,0x2f4)]=_0x2f76e6(0x150,0x203,0x1c9,_0x190e13._0x5e5224);function _0x2f76e6(_0x29294a,_0x269730,_0x2cc848,_0xf70d1c){return _0x5836(_0x269730- -_0x6a7409._0x2b8bc2,_0x29294a);}_0x45a385['CJALa']=_0x2f76e6(_0x190e13._0x23fe28,_0x190e13._0x2fe9c7,0x262,_0x190e13._0x644f8c)+'s:\x20Not\x20con'+_0x2907ec(0xdd,_0x190e13._0x218878,0x183,0x149),_0x45a385[_0x2907ec(0x199,0x109,0xe8,_0x190e13._0x82ea56)]=_0x2f76e6(_0x190e13._0x193471,0x27d,0x2eb,0x20d)+_0x2907ec(0x1cf,_0x190e13._0x39667e,_0x190e13._0x28e78e,_0x190e13._0x59f621)+_0x2f76e6(_0x190e13._0x513b5a,0x13c,0x1e6,_0x190e13._0x26e5ce),_0x45a385['gOiIN']=_0x2f76e6(0x16d,_0x190e13._0x55ce93,0x22e,_0x190e13._0xd78515)+_0x2f76e6(_0x190e13._0x33fbc2,_0x190e13._0x2ad9d2,_0x190e13._0x5efcd3,_0x190e13._0x536eda)+'onfigurati'+_0x2907ec(0x1b2,_0x190e13._0x4620f6,0xe5,0x157),_0x45a385[_0x2907ec(0x184,_0x190e13._0x745c3e,0x1c9,0xe5)]=_0x2f76e6(_0x190e13._0x599f53,0x27d,0x1c1,0x32e)+_0x2f76e6(0x2d5,_0x190e13._0x20f746,0x1bc,0x1c4)+_0x2f76e6(_0x190e13._0x25509e,_0x190e13._0x9ab34b,0xea,_0x190e13._0x674586)+_0x2f76e6(0x225,0x1cb,_0x190e13._0x336211,0x24c)+_0x2907ec(_0x190e13._0x3e3b74,0x154,0x1d0,_0x190e13._0x12dbfd)+'to/setup',_0x45a385[_0x2f76e6(0x193,0x20b,_0x190e13._0x2334ab,0x1f1)]='jira.json',_0x45a385[_0x2f76e6(0xbf,_0x190e13._0x211238,0x19b,_0x190e13._0x46c899)]=_0x2907ec(0x1fc,0x238,0x2c0,_0x190e13._0x2510d0)+_0x2907ec(_0x190e13._0x48b99d,_0x190e13._0x2f4cfc,_0x190e13._0x3083d5,0x111)+_0x2907ec(_0x190e13._0x5a1f65,_0x190e13._0x121842,0x1e5,_0x190e13._0xdaca57),_0x45a385[_0x2f76e6(_0x190e13._0xcc5799,0x149,0x1de,_0x190e13._0x38726a)]=_0x2f76e6(0x175,_0x190e13._0x3fd533,0x26a,_0x190e13._0x1a143d),_0x45a385['PLLYj']=function(_0x2d99db,_0x532081){return _0x2d99db-_0x532081;},_0x45a385['tZGsF']=_0x2907ec(0x20b,_0x190e13._0x2e08a5,_0x190e13._0x1b7ad0,0x20a),_0x45a385[_0x2907ec(0x24a,_0x190e13._0x7e4b5a,0x288,0x212)]=function(_0x65464b,_0x602007){return _0x65464b===_0x602007;};const _0x2ed7f4=_0x45a385;function _0x2907ec(_0x4a9e6e,_0x2f8fd6,_0x39fe6a,_0x129d5e){return _0x5836(_0x2f8fd6- -_0x5a6610._0x39b9f7,_0x4a9e6e);}if(!_0x580321){console['log']('JIRA\x20Statu'+_0x2907ec(_0x190e13._0x3fef4c,_0x190e13._0x2a1aee,0xae,_0x190e13._0x32e66c)+_0x2907ec(_0x190e13._0x42ebfb,0x118,_0x190e13._0xd37aa5,_0x190e13._0x62a1c6)),console['log'](''),console[_0x2f76e6(0x1dc,_0x190e13._0x18b81a,0x203,0x279)](_0x2ed7f4['GiiOn']);return;}const _0x2e9712=_0x2abf47[_0x2f76e6(_0x190e13._0x39874f,_0x190e13._0x5ca469,_0x190e13._0x375f01,0x27f)](_0x580321,_0x2ed7f4[_0x2f76e6(0x17b,0x20b,0x19e,_0x190e13._0x1a143d)]);try{const _0x1f2252=await _0x429619[_0x2f76e6(_0x190e13._0x27463a,_0x190e13._0x5a9934,_0x190e13._0x19304d,_0x190e13._0x43bc0b)](_0x2e9712,_0x2f76e6(_0x190e13._0x2c79b1,0x1b0,0x20a,0x1c8)),_0x57cc1c=JSON[_0x2907ec(_0x190e13._0x3e4508,0xe3,_0x190e13._0x563a5d,0x10f)](_0x1f2252);console[_0x2907ec(0x265,_0x190e13._0x3f877d,0x27d,_0x190e13._0x27da5f)](_0x2ed7f4['LjISd']),console[_0x2f76e6(_0x190e13._0x1aea0e,0x253,0x1d8,_0x190e13._0x125ede)](''),console['log'](_0x2907ec(0x203,0x16a,_0x190e13._0x9732f9,0x190)+':\x20'+_0x57cc1c[_0x2907ec(0x254,_0x190e13._0x4edfcd,_0x190e13._0x3f136e,_0x190e13._0x4b31d7)]),console['log'](_0x2907ec(0xa8,0xf3,0x183,0xf2)+'\x20\x20'+(_0x57cc1c[_0x2907ec(0x12a,0x134,0x11e,0xdf)]?.[_0x2907ec(0x186,0x23a,0x2dc,0x1b3)]||_0x2ed7f4[_0x2907ec(_0x190e13._0x2f35e6,_0x190e13._0x4599f6,0x19b,_0x190e13._0x3359a0)]));const _0x4e4e60=_0x57cc1c['auth']?.[_0x2f76e6(0x277,_0x190e13._0x54942e,_0x190e13._0x275662,_0x190e13._0x322cd1)]||'',_0xa3ce0=_0x4e4e60['length']>-0x25b8+0x1*0xd8f+0x1833?_0x4e4e60['substring'](-0x2e7*0x5+-0x16*-0x74+-0x48b*-0x1,-0x2559+0x2410+0x151)+_0x2f76e6(0x22b,0x1b6,_0x190e13._0x4ee6b9,_0x190e13._0x46bed9)+_0x4e4e60['substring'](_0x2ed7f4['PLLYj'](_0x4e4e60[_0x2907ec(_0x190e13._0x43e274,_0x190e13._0xdc16b4,0x213,0x192)],0x277*-0x1+-0x1091+0x4*0x4c4)):_0x4e4e60?'*'['repeat'](_0x4e4e60[_0x2f76e6(_0x190e13._0x588dbf,0x25c,0x29b,0x24e)]):_0x2f76e6(_0x190e13._0x3f136e,0x215,0x179,0x183);console[_0x2907ec(_0x190e13._0x15534b,0x21e,_0x190e13._0x193fb4,0x1ed)](_0x2f76e6(_0x190e13._0x28f80c,0x16c,_0x190e13._0x15f292,0x142)+'\x20\x20'+_0xa3ce0),console[_0x2907ec(_0x190e13._0x2bb677,_0x190e13._0x3f877d,_0x190e13._0x47d98c,_0x190e13._0xbe2415)](_0x2907ec(0x55,_0x190e13._0x29a937,0x126,0x6a)+'\x20\x20'+(_0x57cc1c[_0x2f76e6(_0x190e13._0x43f9df,0x258,0x1ee,0x218)]?_0x2ed7f4[_0x2f76e6(_0x190e13._0x9732f9,_0x190e13._0x3c2c4d,0xdf,0x111)]:'No')),console['log'](''),console[_0x2f76e6(_0x190e13._0x47d44e,_0x190e13._0x17d62d,_0x190e13._0xad6b95,_0x190e13._0x362913)](_0x2f76e6(0x18d,0x208,0x21f,_0x190e13._0x46858a)+_0x2907ec(_0x190e13._0x228bc4,_0x190e13._0x55b40d,_0x190e13._0x28f80c,_0x190e13._0x34e14e)+_0x2e9712);}catch(_0x47fe89){_0x47fe89[_0x2f76e6(0x194,0x22a,_0x190e13._0xfdcda7,_0x190e13._0x3ff44c)]==='ENOENT'?_0x2ed7f4['Oxlbb'](_0x2907ec(0x217,_0x190e13._0x5e5224,0x233,0x214),_0x2f76e6(0xf8,0x187,_0x190e13._0x953170,_0x190e13._0x4855c0))?_0x2ed7f4[_0x2f76e6(0x180,_0x190e13._0x48394a,0x20f,_0x190e13._0x29b46e)](_0x1bb5a5[_0x2907ec(_0x190e13._0x5138c0,_0x190e13._0x2adc40,0x20a,0x150)],_0x2ed7f4[_0x2907ec(0x1da,0x20a,0x14e,_0x190e13._0x2a022b)])?(_0x571c92[_0x2907ec(0x19c,_0x190e13._0x532fee,_0x190e13._0x3c48ca,0x1a1)](_0x2ed7f4[_0x2f76e6(0x25f,_0x190e13._0x2e5ea2,0x1a0,0x259)]),_0x441fc0[_0x2907ec(_0x190e13._0xb4392a,_0x190e13._0x532f30,0x2da,_0x190e13._0x37a65f)](''),_0x2d09f5['log'](_0x2ed7f4[_0x2f76e6(_0x190e13._0x4041f5,_0x190e13._0x2e2412,0x167,0x126)])):_0x532127[_0x2907ec(0x188,_0x190e13._0x1282d1,0x1eb,_0x190e13._0x2a6b95)](_0x2ed7f4[_0x2f76e6(_0x190e13._0x58bf40,_0x190e13._0x1d885f,_0x190e13._0xc3518a,0x230)],_0x43d28b[_0x2907ec(_0x190e13._0x3c343b,_0x190e13._0x22472f,0x54,0x1ae)]):(console[_0x2f76e6(_0x190e13._0x1282d1,0x253,_0x190e13._0x322cd1,_0x190e13._0x54a07c)](_0x2907ec(_0x190e13._0x2c8cd8,_0x190e13._0x1ab931,_0x190e13._0x37a65f,_0x190e13._0x4b7602)+_0x2f76e6(_0x190e13._0x509a9b,0x125,0x8f,_0x190e13._0x41419a)+_0x2907ec(0x185,0x118,_0x190e13._0x10c440,_0x190e13._0x36e81d)),console[_0x2f76e6(_0x190e13._0x18725e,0x253,0x22f,0x211)](''),console[_0x2f76e6(_0x190e13._0x4edfcd,_0x190e13._0x17d62d,0x294,_0x190e13._0x20643e)](_0x2f76e6(0x1ee,0x27d,0x1f8,_0x190e13._0x2f7a90)+_0x2f76e6(_0x190e13._0x579d84,0x243,0x1be,_0x190e13._0x2dfcfe)+_0x2f76e6(_0x190e13._0x5a4ae7,_0x190e13._0x5599c2,0xdb,0x15a))):console[_0x2907ec(_0x190e13._0x464549,_0x190e13._0xc3518a,_0x190e13._0x2e72c1,_0x190e13._0x16f4d0)](_0x2ed7f4[_0x2907ec(_0x190e13._0x478f0d,0x149,0x198,0xa8)],_0x47fe89[_0x2907ec(_0x190e13._0x281bde,0xf5,_0x190e13._0x526a72,0x144)]);}}async function disconnect(_0xd06e3f){const _0xd1ee90={_0xe72686:0x58a,_0x29f909:0x588,_0x1a6984:0x624,_0x563023:0x51b,_0x32d81d:0x552,_0x486264:0x56c,_0x338d6f:0x562,_0x2b6219:0x60f,_0x5b5690:0x668,_0x3311f0:0x5ec,_0x14a299:0x6d8,_0x185276:0x5db,_0x37765a:0x5df,_0x5b4192:0x59a,_0x47df45:0x590,_0x1a8b41:0x602,_0x596b7e:0x58f,_0x26bdf1:0x4d5,_0x579a96:0x52a,_0x5e8951:0x63c,_0x40f066:0x52a,_0x1ede76:0x53b,_0x4c6570:0x551,_0x3bc8f5:0x59d,_0xf0a0b6:0x5d6,_0x2e0a44:0x66e,_0x37cc18:0x5b7,_0x44377d:0x6ff,_0x1826b4:0x607,_0x5c0b59:0x593,_0x235ddb:0x50c,_0x55edf1:0x585,_0xbe593b:0x690,_0x7bc109:0x6d9,_0x518b21:0x50f,_0x57f5ad:0x545,_0x307697:0x5c8,_0x5e9b1:0x5e0,_0x1ff242:0x56b,_0xbb0541:0x63f,_0x1bbbe0:0x6b0,_0x49d720:0x585,_0x92a149:0x583,_0x37a7f3:0x4c8,_0x440c54:0x51e,_0x272c57:0x5bf,_0x4ebbd1:0x59a,_0x1ce9f5:0x503,_0x1b5e20:0x596,_0xf1b9ad:0x586,_0x178615:0x5c3,_0x5c1ec0:0x6f4,_0x299419:0x5e3,_0x750464:0x6a0,_0x5e3194:0x704,_0x22276c:0x5b6,_0x165ffd:0x5e6,_0x282f84:0x6a5,_0xf8f664:0x663,_0x5ee275:0x62d,_0x2f0dcf:0x5bc,_0x62a92:0x5b1,_0x1a4302:0x6dc,_0x3e150f:0x696,_0x5d5e4a:0x517,_0x2d6124:0x46a,_0x18bde0:0x4cf,_0x24edaf:0x6d3,_0x17a93f:0x5c4,_0x3a7382:0x5aa,_0x55f386:0x69f,_0x3f4489:0x688,_0x211d31:0x568,_0x3702cb:0x61b,_0x2bb77a:0x608,_0x46a1ad:0x5a7,_0x21e20f:0x5ae,_0x113385:0x642,_0x3c6610:0x5ce,_0x5c139b:0x5ab,_0x309575:0x5e6,_0x5720e7:0x60d},_0x28a598={_0x528554:0x3a6},_0x329882={_0x5c0875:0x39b},_0x3d7250={};_0x3d7250[_0x59ba2e(0x620,_0xd1ee90._0xe72686,_0xd1ee90._0x29f909,_0xd1ee90._0x1a6984)]='\x0a\x0aOperatio'+_0x59ba2e(_0xd1ee90._0x563023,0x579,0x601,0x600)+'d.',_0x3d7250[_0x59ba2e(_0xd1ee90._0x32d81d,_0xd1ee90._0x486264,0x523,_0xd1ee90._0x338d6f)]=_0x59ba2e(_0xd1ee90._0x2b6219,_0xd1ee90._0x5b5690,_0xd1ee90._0x3311f0,_0xd1ee90._0x14a299)+'coder-setu'+_0x59ba2e(0x614,0x5bc,0x625,_0xd1ee90._0x185276)+_0x31fb62(_0xd1ee90._0x37765a,_0xd1ee90._0x5b4192,_0xd1ee90._0x47df45,_0xd1ee90._0x1a8b41);function _0x59ba2e(_0x5da44c,_0x401131,_0x480970,_0x5bef6d){return _0x5836(_0x401131-_0x329882._0x5c0875,_0x480970);}_0x3d7250[_0x59ba2e(0x50b,_0xd1ee90._0x596b7e,_0xd1ee90._0x26bdf1,_0xd1ee90._0x338d6f)]=_0x59ba2e(0x6ea,0x644,0x672,0x6cc),_0x3d7250[_0x31fb62(0x596,_0xd1ee90._0x579a96,_0xd1ee90._0x5e8951,0x4dd)]='✓\x20JIRA\x20con'+_0x59ba2e(0x522,0x5cd,_0xd1ee90._0x40f066,0x565)+'\x20removed',_0x3d7250['YbcbM']='To\x20reconne'+_0x59ba2e(0x54f,0x5f0,_0xd1ee90._0x1ede76,_0xd1ee90._0x4c6570)+_0x59ba2e(_0xd1ee90._0x3bc8f5,0x591,0x607,_0xd1ee90._0xf0a0b6)+'a\x20connect',_0x3d7250[_0x31fb62(_0xd1ee90._0x2e0a44,_0xd1ee90._0x37cc18,_0xd1ee90._0x44377d,_0xd1ee90._0x1826b4)]=function(_0x54a3fd,_0x407249){return _0x54a3fd===_0x407249;},_0x3d7250[_0x31fb62(0x594,0x580,_0xd1ee90._0x5c0b59,0x5f5)]=function(_0x4eeb64,_0x1864a9){return _0x4eeb64!==_0x1864a9;},_0x3d7250[_0x59ba2e(0x57b,_0xd1ee90._0x235ddb,0x516,_0xd1ee90._0x55edf1)]='owySN',_0x3d7250[_0x31fb62(0x638,0x62e,_0xd1ee90._0xbe593b,_0xd1ee90._0x7bc109)]=_0x59ba2e(0x55e,_0xd1ee90._0x518b21,_0xd1ee90._0x57f5ad,0x58b),_0x3d7250['EURlT']=_0x59ba2e(_0xd1ee90._0x307697,_0xd1ee90._0x5e9b1,_0xd1ee90._0x1ff242,0x64e);const _0x5e2d6e=_0x3d7250;!_0xd06e3f&&(console[_0x31fb62(_0xd1ee90._0xbb0541,_0xd1ee90._0x1bbbe0,_0xd1ee90._0x49d720,_0xd1ee90._0x92a149)](_0x5e2d6e[_0x59ba2e(_0xd1ee90._0x37a7f3,0x56c,_0xd1ee90._0x440c54,_0xd1ee90._0x272c57)]),process['exit'](0xa4b+-0x1*-0x2501+-0x2f4b));const _0x33acd9=_0x2abf47['join'](_0xd06e3f,_0x5e2d6e[_0x31fb62(_0xd1ee90._0x4ebbd1,_0xd1ee90._0x47df45,_0xd1ee90._0x1ce9f5,_0xd1ee90._0x37cc18)]);function _0x31fb62(_0x28cabb,_0x2cbf8c,_0x2e0eba,_0x31a84f){return _0x5836(_0x28cabb-_0x28a598._0x528554,_0x31a84f);}try{await _0x429619['unlink'](_0x33acd9),console['log'](_0x5e2d6e[_0x31fb62(_0xd1ee90._0x1b5e20,0x5ac,_0xd1ee90._0xf1b9ad,_0xd1ee90._0x178615)]),console[_0x31fb62(0x656,_0xd1ee90._0x5c1ec0,_0xd1ee90._0x299419,0x5d4)](''),console[_0x31fb62(0x656,0x681,_0xd1ee90._0x750464,_0xd1ee90._0x5e3194)](_0x5e2d6e[_0x31fb62(0x5f0,_0xd1ee90._0x22276c,_0xd1ee90._0x165ffd,0x62b)]);}catch(_0x5dfcc1){_0x5e2d6e[_0x59ba2e(_0xd1ee90._0x282f84,_0xd1ee90._0xf8f664,0x5ac,0x6fc)](_0x5dfcc1[_0x31fb62(_0xd1ee90._0x5ee275,_0xd1ee90._0x2f0dcf,_0xd1ee90._0x62a92,_0xd1ee90._0x1a4302)],_0x31fb62(0x606,0x5a7,0x64e,_0xd1ee90._0x3e150f))?_0x5e2d6e['DjoTi'](_0x5e2d6e[_0x31fb62(_0xd1ee90._0x5d5e4a,_0xd1ee90._0x2d6124,_0xd1ee90._0x440c54,_0xd1ee90._0x18bde0)],_0x5e2d6e[_0x59ba2e(_0xd1ee90._0x24edaf,0x62d,_0xd1ee90._0x17a93f,0x5e8)])?console[_0x31fb62(0x656,_0xd1ee90._0x3a7382,0x657,_0xd1ee90._0x55f386)]('JIRA\x20is\x20no'+'t\x20configur'+_0x59ba2e(0x5e8,0x52d,0x551,0x50f)):!_0x4e6ed4&&(_0x254459[_0x31fb62(0x656,0x6b7,0x6ed,_0xd1ee90._0x3f4489)](_0x5e2d6e['WroEM']),_0x24738d[_0x31fb62(_0xd1ee90._0x211d31,0x610,_0xd1ee90._0x3702cb,_0xd1ee90._0x2bb77a)](0xf45+-0x225a+0x1315)):(console[_0x59ba2e(0x6ab,0x634,_0xd1ee90._0x46a1ad,_0xd1ee90._0x21e20f)](_0x5e2d6e[_0x31fb62(0x61b,0x658,_0xd1ee90._0x113385,0x5d3)],_0x5dfcc1[_0x31fb62(0x52d,_0xd1ee90._0x3c6610,_0xd1ee90._0x5c139b,0x520)]),process[_0x59ba2e(_0xd1ee90._0x309575,0x55d,_0xd1ee90._0x5720e7,_0xd1ee90._0x37765a)](0x1e5c+-0x1d4b*-0x1+-0x1*0x3ba6));}}async function test(_0x38b8c7){const _0x3affd2={_0x5c6dc4:0x1b4,_0x270239:0x1c8,_0x4ead67:0xf3,_0x57b926:0x15c,_0x3f206a:0x133,_0x2eebcb:0x97,_0x422459:0x1c7,_0x1cebb4:0x52,_0x2633f6:0x10c,_0x4ddefa:0xee,_0x2fea24:0x722,_0x5bc48c:0x6ac,_0x1f8b28:0x749,_0x4e8ba1:0x17d,_0x126d4a:0x6a9,_0x57cca3:0x664,_0x5d92d6:0x6c6,_0x371468:0x5de,_0x3014ce:0x584,_0x51d9a2:0x613,_0x618579:0x59b,_0x1b191e:0x548,_0x317820:0x5d2,_0x4a0ffc:0x1fe,_0xb76adf:0x569,_0x26a9ed:0x17e,_0x576b88:0x112,_0x5550de:0x81,_0x455b14:0x29,_0x1d9be7:0x725,_0x286ae6:0x5e5,_0x5bd5da:0x601,_0x55e332:0x625,_0x221ab7:0x675,_0x17660e:0xd6,_0xf3f4c:0x136,_0x5ccce4:0x15d,_0x57b752:0x116,_0x65bdb9:0x14e,_0x43f2c6:0x159,_0x10350f:0x5b7,_0x244f21:0x635,_0x1e75c9:0xea,_0x4e85b6:0x187,_0x3c6b87:0x1ad,_0x8992ad:0xec,_0x511f45:0xc0,_0x39c08c:0x9b,_0x5b6fd9:0x110,_0x29201c:0x1bd,_0x41df0d:0x161,_0x195f42:0x542,_0x9b78bb:0x559,_0x3befe8:0x589,_0xec9c27:0x6b6,_0x2e00ff:0x183,_0x1b67d4:0x4e2,_0x9a3861:0x1e9,_0x1de2ce:0x1c8,_0x446d72:0x19e,_0x240b1f:0x5be,_0x428fe7:0x601,_0x1cdef3:0x1ce,_0x41bda2:0x186,_0x2065a1:0x144,_0x5129e7:0x591,_0x4336b6:0x633,_0x762556:0x5aa,_0x94af8d:0x579,_0xa98089:0x14c,_0x48a038:0x1bc,_0x470519:0x182,_0x10c46d:0x179,_0xbd4202:0x1af,_0x110ab9:0x18e,_0x4eead1:0x1c5,_0x473cc9:0x5a6,_0x30a2f3:0x5dc,_0x170307:0x27c,_0x259730:0x1c5,_0x4b7d32:0x1d1,_0x145da6:0x64e,_0x59e2cd:0x69c,_0x3a0dfc:0x1e6,_0x3bffc2:0x56,_0x1b13da:0x1ab,_0x1bdfda:0x66f,_0x5e36d6:0x68d,_0x3dc626:0xff,_0x1b588b:0x184,_0x24be13:0x105,_0x2e5cf4:0x7b,_0x415997:0xd7,_0x4b0c39:0x6ad,_0x3372cb:0x67d,_0x4d9946:0x635,_0x34f044:0x25b,_0x135760:0x12c,_0x185fcb:0x6f2,_0x32ee89:0x670,_0x346c82:0x25a,_0x22d5d7:0x1ae,_0x3a6a63:0x7b,_0xc6a587:0x12b,_0x7d8e93:0x18d,_0x3392d0:0x19d,_0x5c86b5:0xbd,_0x249bd8:0x607,_0xfe5f73:0x571,_0x34f011:0x26,_0x82f715:0x16,_0x101f4a:0x575,_0x21bbe4:0x6b0,_0x492fd3:0x6cd,_0x367b98:0x642,_0x2eebf9:0x65c,_0x502df2:0x644,_0x401f8b:0x587,_0x3e2e41:0x145,_0x5f5821:0x247,_0x4ed8f9:0x121,_0x4a915b:0x1a9,_0x30a6d0:0x19a,_0x17869b:0x162,_0x419d50:0x15b,_0x38c456:0x13b,_0x10bcba:0x1a,_0x23fd4c:0x5f2,_0x1f5e86:0x5f1,_0x523851:0x51f,_0x3c0bbf:0x627,_0x1febee:0x6f2,_0x41b4b9:0x66b,_0x2e98b3:0x620,_0x127dee:0x5b6,_0x32d51c:0x269,_0x30cf1e:0x1b2,_0x4b097e:0x201,_0xd03cc8:0x260,_0x1b15a4:0x5df,_0x53517d:0x694,_0x43b8d9:0x65f,_0x4d4eb3:0x25a,_0x1e2b08:0x4ed,_0x5aa7c1:0x122,_0x4b86bb:0x102,_0x36e9d2:0x5ec,_0x29fd74:0x5eb,_0x57db0c:0x5f6,_0x184098:0x9c,_0x23a176:0x18,_0x40510f:0x5b2,_0x16c4a4:0x1ab,_0x5509a4:0x1ae,_0x1091dc:0x629,_0x18fdba:0x56b,_0x425c0c:0x56},_0x1fbd40={_0x315dce:0x3e4},_0x3e60a1={'fmKhu':_0x39b325(_0x3affd2._0x5c6dc4,0x16a,0x1a8,_0x3affd2._0x270239)+_0x39b325(0x53,0x182,_0x3affd2._0x4ead67,0x1a3)+'d.','zVQKm':function(_0x83e50d,_0x82cc8c){return _0x83e50d===_0x82cc8c;},'Dsqgy':'ENOENT','uQogz':_0x39b325(0x13f,0x83,0xd4,_0x3affd2._0x57b926)+_0x39b325(0x1c,_0x3affd2._0x3f206a,0xc0,_0x3affd2._0x2eebcb)+_0x39b325(_0x3affd2._0x422459,_0x3affd2._0x1cebb4,_0x3affd2._0x2633f6,_0x3affd2._0x4ddefa),'nccWk':_0x54bef4(_0x3affd2._0x2fea24,_0x3affd2._0x5bc48c,0x6be,_0x3affd2._0x1f8b28)+'-server\x20ji'+'ra\x20connect','CyQnN':_0x39b325(0x172,0x187,0x15a,_0x3affd2._0x4e8ba1),'TOTfe':'jira.json','CCyFc':function(_0xa44348,_0x171cf4){return _0xa44348===_0x171cf4;},'MzJrl':'lDpEg','JnuQh':_0x54bef4(0x6f9,_0x3affd2._0x126d4a,_0x3affd2._0x57cca3,_0x3affd2._0x5d92d6)+_0x54bef4(_0x3affd2._0x371468,0x640,_0x3affd2._0x3014ce,0x52b)+'disabled.','LmFGT':_0x54bef4(0x564,0x624,0x5ed,0x618)+_0x54bef4(0x5c5,_0x3affd2._0x51d9a2,_0x3affd2._0x618579,0x643)+_0x54bef4(0x5ab,_0x3affd2._0x1b191e,0x54d,_0x3affd2._0x317820),'TMzpf':function(_0xf286e0,_0x1b5cba,_0x10f8d4,_0x2bf666){return _0xf286e0(_0x1b5cba,_0x10f8d4,_0x2bf666);},'dnadH':'✓\x20Connecti'+_0x39b325(0x19f,0xca,0x173,_0x3affd2._0x4a0ffc)+'ful!','gnWNP':_0x54bef4(_0x3affd2._0xb76adf,0x4d2,0x55f,0x4ed),'XymXx':_0x39b325(0x186,0x1b4,_0x3affd2._0x26a9ed,_0x3affd2._0x576b88)+'on\x20failed','RPhNt':function(_0x2279bc,_0xe1c2a8){return _0x2279bc!==_0xe1c2a8;},'quXvD':_0x39b325(0x49,-0x21,_0x3affd2._0x5550de,_0x3affd2._0x455b14),'zsUWO':'PrDdq','JQpOa':_0x54bef4(_0x3affd2._0x1d9be7,_0x3affd2._0x286ae6,0x66e,_0x3affd2._0x5bd5da)};function _0x54bef4(_0x268829,_0x44af3d,_0x4a78d2,_0x570e64){return _0x5836(_0x4a78d2-_0x1fbd40._0x315dce,_0x570e64);}!_0x38b8c7&&(console[_0x54bef4(0x639,_0x3affd2._0x55e332,0x67d,_0x3affd2._0x221ab7)]('Error:\x20No\x20'+_0x39b325(0x2f,0xc5,0xa3,0x147)+_0x39b325(0x1d5,_0x3affd2._0x17660e,_0x3affd2._0xf3f4c,0x1c9)+_0x39b325(_0x3affd2._0x5ccce4,_0x3affd2._0x57b752,_0x3affd2._0x65bdb9,_0x3affd2._0x43f2c6)),process['exit'](0x261*0x8+0xe99+0x10d0*-0x2));function _0x39b325(_0x7b885f,_0x457e75,_0x355f5e,_0x336c7e){return _0x5836(_0x355f5e- -0xeb,_0x336c7e);}const _0x4fc026=_0x2abf47[_0x54bef4(_0x3affd2._0x10350f,0x69c,_0x3affd2._0x244f21,_0x3affd2._0x57cca3)](_0x38b8c7,_0x3e60a1[_0x39b325(_0x3affd2._0x1e75c9,_0x3affd2._0x4ddefa,0x102,_0x3affd2._0x4e85b6)]);try{if(_0x3e60a1[_0x39b325(0x1c9,_0x3affd2._0x3c6b87,0x19b,0x166)](_0x3e60a1[_0x39b325(_0x3affd2._0x8992ad,_0x3affd2._0x511f45,0xaa,_0x3affd2._0x39c08c)],_0x39b325(_0x3affd2._0x5b6fd9,0x234,_0x3affd2._0x29201c,_0x3affd2._0x41df0d))){const _0x410a92=await _0x429619[_0x39b325(-0xa,0xe9,0x82,0x60)](_0x4fc026,'utf-8'),_0x1d567b=JSON[_0x54bef4(0x4ca,_0x3affd2._0x195f42,_0x3affd2._0x9b78bb,_0x3affd2._0x3befe8)](_0x410a92);if(!_0x1d567b[_0x54bef4(0x6b1,_0x3affd2._0xec9c27,0x699,0x5e2)]){console[_0x39b325(0x20b,0x210,0x1c5,_0x3affd2._0x2e00ff)](_0x3e60a1[_0x54bef4(0x569,_0x3affd2._0x1b67d4,0x577,0x605)]);return;}console['log'](_0x3e60a1[_0x39b325(_0x3affd2._0x9a3861,_0x3affd2._0x1de2ce,_0x3affd2._0x446d72,0x13f)]),console['log']('');const _0x1fa90a=await _0x3e60a1['TMzpf'](testJiraConnection,_0x1d567b['baseUrl'],_0x1d567b[_0x54bef4(0x541,_0x3affd2._0x240b1f,0x5aa,_0x3affd2._0x428fe7)][_0x39b325(_0x3affd2._0x1cdef3,_0x3affd2._0x41bda2,0x1e1,_0x3affd2._0x2065a1)],_0x1d567b[_0x54bef4(_0x3affd2._0x5129e7,_0x3affd2._0x4336b6,_0x3affd2._0x762556,_0x3affd2._0x94af8d)][_0x39b325(_0x3affd2._0xa98089,0x1da,_0x3affd2._0x48a038,_0x3affd2._0x470519)]);if(_0x1fa90a[_0x39b325(_0x3affd2._0x10c46d,0x241,_0x3affd2._0xbd4202,_0x3affd2._0x110ab9)])console[_0x39b325(0x240,0x126,_0x3affd2._0x4eead1,0x11e)](_0x3e60a1[_0x54bef4(0x5b6,_0x3affd2._0x473cc9,0x628,_0x3affd2._0x30a2f3)]),console[_0x39b325(_0x3affd2._0x170307,0x152,_0x3affd2._0x259730,_0x3affd2._0x4b7d32)](_0x54bef4(0x5bd,_0x3affd2._0x145da6,0x652,_0x3affd2._0x59e2cd)+(_0x1fa90a['user'][_0x39b325(0x119,_0x3affd2._0x3a0dfc,_0x3affd2._0x470519,0xef)+'e']||_0x1d567b[_0x39b325(_0x3affd2._0x3bffc2,0x87,0xdb,_0x3affd2._0x3f206a)]['email'])),console[_0x39b325(0x23a,0x198,0x1c5,_0x3affd2._0x1b13da)]('');else{const _0x4c962c=_0x3e60a1[_0x54bef4(_0x3affd2._0x1bdfda,_0x3affd2._0x5e36d6,0x61b,0x611)][_0x39b325(0x153,_0x3affd2._0x3dc626,_0x3affd2._0x1b588b,0x151)]('|');let _0x31204d=-0x22c1+-0x1c23+0x3ee4;while(!![]){switch(_0x4c962c[_0x31204d++]){case'0':process[_0x39b325(_0x3affd2._0x24be13,_0x3affd2._0x2e5cf4,_0x3affd2._0x415997,0xee)](-0x1f8c+0x26ff+0x1*-0x772);continue;case'1':console[_0x54bef4(_0x3affd2._0x4b0c39,0x663,_0x3affd2._0x3372cb,_0x3affd2._0x4d9946)](_0x3e60a1['CyQnN'],_0x1fa90a[_0x39b325(_0x3affd2._0x34f044,0x24e,0x1ae,_0x3affd2._0x135760)]);continue;case'2':console[_0x54bef4(_0x3affd2._0x185fcb,_0x3affd2._0x32ee89,_0x3affd2._0x3372cb,0x647)]('');continue;case'3':console['error']('');continue;case'4':console[_0x39b325(_0x3affd2._0x346c82,0x1d6,_0x3affd2._0x22d5d7,_0x3affd2._0x24be13)](_0x3e60a1[_0x39b325(0x148,_0x3affd2._0x3a6a63,_0x3affd2._0xc6a587,0x126)]);continue;}break;}}}else _0x321be2[_0x39b325(_0x3affd2._0x7d8e93,0x11c,0x1ae,_0x3affd2._0x3392d0)](_0x39b325(0x140,0x1a3,0x110,_0x3affd2._0x5c86b5)+_0x54bef4(0x514,_0x3affd2._0x249bd8,_0x3affd2._0xfe5f73,0x53b)+_0x39b325(_0x3affd2._0x34f011,_0x3affd2._0x82f715,0x92,0x1a)+_0x54bef4(0x69e,0x553,0x60e,0x634)+_0x181f6f),_0x38ea4d['exit'](-0x10d5*-0x2+-0x1be9+-0x5c0);}catch(_0x2ade12){_0x3e60a1[_0x54bef4(0x608,0x510,_0x3affd2._0x101f4a,0x61e)](_0x2ade12[_0x54bef4(0x61b,_0x3affd2._0x21bbe4,0x66b,_0x3affd2._0x492fd3)],_0x3e60a1['Dsqgy'])?_0x3e60a1[_0x54bef4(_0x3affd2._0x367b98,0x689,_0x3affd2._0x2eebf9,_0x3affd2._0x502df2)]('VKAZo',_0x3e60a1[_0x54bef4(0x604,0x62a,_0x3affd2._0x401f8b,0x57b)])?(_0x1ef18d[_0x39b325(_0x3affd2._0x3e2e41,_0x3affd2._0x5f5821,_0x3affd2._0x259730,0x20e)](_0x3e60a1['fmKhu']),_0x4b54a1['exit'](0xe*-0x9+-0xa*-0x10b+0x13e*-0x8)):(console[_0x39b325(_0x3affd2._0x4ed8f9,_0x3affd2._0x4a915b,0x1c5,_0x3affd2._0x30a6d0)](_0x3e60a1[_0x39b325(0x1fa,_0x3affd2._0x17869b,0x1ab,0x25e)]),console['log'](''),console[_0x39b325(0x274,0x269,_0x3affd2._0x4eead1,_0x3affd2._0x419d50)](_0x3e60a1[_0x39b325(0x9a,_0x3affd2._0x38c456,0xc6,_0x3affd2._0x10bcba)])):_0x3e60a1['zsUWO']===_0x3e60a1[_0x54bef4(0x60d,0x5c4,_0x3affd2._0x23fd4c,_0x3affd2._0x1f5e86)]?_0x3e60a1[_0x54bef4(_0x3affd2._0x523851,_0x3affd2._0x3c0bbf,_0x3affd2._0x101f4a,0x615)](_0x4a9b72[_0x54bef4(_0x3affd2._0x1febee,0x5b6,_0x3affd2._0x41b4b9,_0x3affd2._0x2e98b3)],_0x3e60a1[_0x54bef4(0x60c,0x62d,_0x3affd2._0x127dee,0x5fa)])?(_0x4e66fc[_0x39b325(_0x3affd2._0x32d51c,_0x3affd2._0x30cf1e,0x1c5,_0x3affd2._0x4b097e)](_0x3e60a1[_0x39b325(0x1ca,_0x3affd2._0xd03cc8,0x1ab,0x16f)]),_0x219474[_0x54bef4(0x6aa,_0x3affd2._0x1b15a4,_0x3affd2._0x53517d,_0x3affd2._0x43b8d9)](''),_0x3484c8[_0x39b325(0x13e,_0x3affd2._0x4d4eb3,0x1c5,0x1b2)](_0x3e60a1[_0x54bef4(0x5a6,0x5a3,0x595,_0x3affd2._0x1e2b08)])):(_0x5e593c[_0x39b325(_0x3affd2._0x5aa7c1,_0x3affd2._0x4b86bb,0x1ae,0x215)](_0x3e60a1[_0x54bef4(_0x3affd2._0x36e9d2,0x69d,_0x3affd2._0x29fd74,_0x3affd2._0x57db0c)],_0x2b1154[_0x39b325(0xd0,0x51,_0x3affd2._0x184098,-_0x3affd2._0x23a176)]),_0x23f984[_0x54bef4(_0x3affd2._0x40510f,0x52d,_0x3affd2._0x473cc9,0x56f)](0x1*0x2b+0xf9b+-0xfc5)):(console[_0x39b325(0x15c,_0x3affd2._0x16c4a4,_0x3affd2._0x5509a4,0x1cc)](_0x54bef4(0x591,0x610,_0x3affd2._0x1091dc,_0x3affd2._0x5bc48c),_0x2ade12[_0x54bef4(0x5aa,0x523,_0x3affd2._0x18fdba,0x59f)]),process[_0x39b325(0x124,_0x3affd2._0x425c0c,_0x3affd2._0x415997,0x54)](0x18fb+0x5a1*0x5+0x3*-0x11b5));}}export async function handleJira(_0x5afad0){const _0x40d02a={_0x364813:0x2fa,_0x1e7a34:0x2c5,_0x4f40be:0x95,_0x5ee94e:0x14d,_0x4adb51:0x2b7,_0x45d269:0x24b,_0x4a85c1:0x245,_0x4f1db2:0xd1,_0x1636a1:0xbe,_0x2ef6f3:0x175,_0x3fb6eb:0x144,_0x4d77cb:0xc2,_0x38af2c:0x10c,_0x1c5f4a:0x145,_0x1999ab:0x13b,_0x5bef8c:0x292,_0x4d2dfc:0x2db,_0x5ca845:0x365,_0x41b2a0:0xd6,_0x3b34c7:0x154,_0x262e95:0x1dc,_0x587584:0xe4,_0x3f63d0:0x16d,_0x5ee286:0x25c,_0x45b860:0x27b,_0x5a8dbd:0xdf,_0x402031:0x16f,_0x21d92d:0x213,_0x3c5bcd:0x17f,_0x2590d7:0x74,_0x1d2d4b:0x6d,_0x30cb1e:0x18a,_0xd143c7:0x36a,_0x43573f:0x392,_0x27c9ce:0x29a,_0x532626:0xac,_0xbff4b2:0x38b,_0x4e6836:0x331,_0x1b84bc:0x71,_0xe4ccd9:0x6,_0x50ccca:0xc0,_0x1af7d3:0x5d,_0x234f21:0xb0,_0x49d599:0x19,_0x1da320:0x396,_0x440e29:0x374,_0x49e940:0x2e6,_0x2b17a6:0x268,_0x5eb118:0x2ec,_0x23c4ef:0xcb,_0x492011:0x5d,_0x4293cf:0x171,_0x113666:0x12e,_0xaaf16a:0x1ec,_0x259fac:0x274,_0x125d9b:0x1d2,_0x4fe181:0x258,_0x26f6d8:0x2d4,_0x42d694:0x42,_0x2dec99:0x86,_0x378ee3:0x73,_0x237c88:0x2ab,_0x49eb79:0x27a,_0x2116b0:0x72,_0x36d051:0xb8,_0x23544a:0x8e,_0x599b5:0xb5,_0x760137:0x84,_0x1f5df0:0x68,_0x182a3f:0x2f,_0x3b30f8:0x7f,_0x576d57:0x29,_0x61cbb8:0x7d,_0xa91192:0x209,_0x458845:0x152,_0x148355:0x2d,_0xeda660:0xc0,_0x116d8f:0x7e,_0x465735:0x2d,_0x471296:0x42,_0x6102ef:0x209,_0x2c25fa:0x27c,_0x1de3b0:0x34f,_0x956f1b:0x6f,_0x401cca:0x345,_0x18b839:0x2a5,_0x43a446:0x1,_0x1d60d4:0x87,_0x4ac893:0x9a,_0x2e79c1:0x1ed,_0x47e9cb:0x2d1,_0x593c12:0x277,_0x4a2ea3:0x193,_0x4bfaf2:0xd7,_0x298dcf:0x91,_0x30db07:0x149,_0x2bd34a:0x325,_0x2aebb9:0x3b0,_0x5543b6:0x327,_0x320a20:0x2f3,_0x23a00d:0x178,_0x191965:0x1a0,_0x342aed:0x325,_0x5ef88c:0x2e3,_0x489934:0x3c8,_0x54de89:0x31a,_0x18230e:0x273,_0x1cb5c6:0x3b4,_0x2b4842:0x297,_0x4be355:0x29e,_0xa0489c:0x30e,_0x44d512:0x88,_0x3a5ae4:0x104,_0xfe700c:0x129,_0x2707af:0x120,_0x272fa1:0x2f3,_0x4bbacc:0x364,_0x303025:0xd4,_0x74dc54:0x110,_0xc05ae7:0xe0};function _0x164e9c(_0x16d30b,_0x4fa11a,_0x1539aa,_0x27a8f2){return _0x5836(_0x16d30b-0x75,_0x27a8f2);}const _0x57daf9={'sMswm':function(_0x3f5691,_0x3b9af3){return _0x3f5691(_0x3b9af3);},'qDlPu':function(_0x5093b4){return _0x5093b4();},'IXdPL':_0x164e9c(0x329,_0x40d02a._0x364813,0x3bf,_0x40d02a._0x1e7a34),'eFGAp':'test','SqyKq':_0x2f2ce8(_0x40d02a._0x4f40be,0x150,0x11f,_0x40d02a._0x5ee94e),'EiVwC':_0x164e9c(_0x40d02a._0x4adb51,_0x40d02a._0x45d269,0x2a6,_0x40d02a._0x4a85c1)+_0x2f2ce8(0xb1,_0x40d02a._0x4f1db2,_0x40d02a._0x1636a1,0xf4)+_0x2f2ce8(_0x40d02a._0x2ef6f3,0xc8,_0x40d02a._0x3fb6eb,_0x40d02a._0x4d77cb)+_0x2f2ce8(0x9a,_0x40d02a._0x38af2c,_0x40d02a._0x1c5f4a,_0x40d02a._0x1999ab),'cFndC':'Commands:','hpsBl':_0x164e9c(0x2c8,_0x40d02a._0x5bef8c,_0x40d02a._0x4d2dfc,_0x40d02a._0x5ca845)+_0x2f2ce8(_0x40d02a._0x41b2a0,_0x40d02a._0x3b34c7,0x208,_0x40d02a._0x262e95)+_0x2f2ce8(_0x40d02a._0x587584,0xc5,0x4c,_0x40d02a._0x3f63d0)+_0x164e9c(0x2d2,_0x40d02a._0x5ee286,_0x40d02a._0x45b860,0x2e9)+'interactiv'+'e)','fvEcy':_0x2f2ce8(_0x40d02a._0x5a8dbd,_0x40d02a._0x402031,_0x40d02a._0x21d92d,0x211)+_0x2f2ce8(-0x87,0x8,-0x27,-0x5)+_0x2f2ce8(_0x40d02a._0x3c5bcd,0x124,_0x40d02a._0x2590d7,0x115)+_0x2f2ce8(0xbf,0xe1,_0x40d02a._0x1d2d4b,_0x40d02a._0x30cb1e)+_0x164e9c(0x350,_0x40d02a._0xd143c7,_0x40d02a._0x43573f,0x375),'zCgTt':_0x164e9c(_0x40d02a._0x27c9ce,0x297,0x2bc,0x220)+_0x2f2ce8(0x56,0xb2,_0x40d02a._0x532626,0x130)+_0x164e9c(0x319,_0x40d02a._0xbff4b2,_0x40d02a._0x4e6836,0x29d)+_0x2f2ce8(_0x40d02a._0x1b84bc,0x9f,_0x40d02a._0xe4ccd9,_0x40d02a._0x50ccca),'XfyXB':_0x2f2ce8(_0x40d02a._0x1af7d3,_0x40d02a._0x234f21,0x135,_0x40d02a._0x49d599)+_0x164e9c(0x34a,_0x40d02a._0x1da320,0x2e7,_0x40d02a._0x440e29)+_0x164e9c(_0x40d02a._0x49e940,0x32f,_0x40d02a._0x2b17a6,_0x40d02a._0x5eb118)+_0x2f2ce8(0x104,_0x40d02a._0x23c4ef,0x17f,_0x40d02a._0x492011),'ZikiV':_0x2f2ce8(_0x40d02a._0x4293cf,0x13b,0x108,_0x40d02a._0x113666),'Uwoyo':'\x20\x20--setup-'+_0x2f2ce8(0x1f5,0x144,_0x40d02a._0xaaf16a,0x149)+_0x2f2ce8(0x195,0x128,0xc2,0x72)+_0x164e9c(_0x40d02a._0x259fac,_0x40d02a._0x125d9b,_0x40d02a._0x4fe181,_0x40d02a._0x26f6d8)+_0x2f2ce8(-0x29,0x40,_0x40d02a._0x42d694,-0x2c)+_0x2f2ce8(0x7f,0xa9,_0x40d02a._0x2dec99,_0x40d02a._0x378ee3),'HsXkl':'Examples:','fBwZL':_0x164e9c(_0x40d02a._0x237c88,_0x40d02a._0x49eb79,0x203,0x321)+'rver\x20jira\x20'+_0x2f2ce8(_0x40d02a._0x2116b0,_0x40d02a._0x36d051,_0x40d02a._0x23544a,_0x40d02a._0x599b5)+'setup-path'+_0x2f2ce8(_0x40d02a._0x760137,0xe0,0xf8,0xd1)+_0x2f2ce8(_0x40d02a._0x1f5df0,_0x40d02a._0x182a3f,0x6,-_0x40d02a._0x3b30f8)};function _0x2f2ce8(_0x224888,_0x589efa,_0x36f16f,_0x2b3d76){return _0x5836(_0x589efa- -0x167,_0x2b3d76);}const _0x3f02a5=_0x5afad0[0x16be+0x14e8+-0x2ba6],_0x8364ec=_0x57daf9[_0x2f2ce8(_0x40d02a._0x576d57,0x2d,-_0x40d02a._0x61cbb8,-0x1d)](parseSetupPath,_0x5afad0)||await _0x57daf9['qDlPu'](getCoderSetupPath);switch(_0x3f02a5){case'connect':await _0x57daf9[_0x164e9c(_0x40d02a._0xa91192,0x1ec,0x204,_0x40d02a._0x458845)](connect,_0x8364ec);break;case _0x57daf9['IXdPL']:await _0x57daf9[_0x2f2ce8(-0x34,_0x40d02a._0x148355,0x66,_0x40d02a._0xeda660)](status,_0x8364ec);break;case _0x57daf9['eFGAp']:await _0x57daf9[_0x2f2ce8(-_0x40d02a._0x116d8f,_0x40d02a._0x465735,-0x41,_0x40d02a._0x471296)](test,_0x8364ec);break;case _0x57daf9['SqyKq']:await _0x57daf9[_0x164e9c(_0x40d02a._0x6102ef,_0x40d02a._0x2c25fa,0x205,0x1a9)](disconnect,_0x8364ec);break;default:console[_0x164e9c(0x325,0x313,0x36f,_0x40d02a._0x1de3b0)](_0x57daf9[_0x2f2ce8(_0x40d02a._0x956f1b,0xd5,0x120,0x104)]),console[_0x164e9c(0x325,_0x40d02a._0x401cca,0x27f,0x363)](''),console[_0x164e9c(0x325,0x37d,0x2f0,_0x40d02a._0x18b839)](_0x57daf9[_0x2f2ce8(0xb2,0x5d,_0x40d02a._0x43a446,_0x40d02a._0x1d60d4)]),console[_0x2f2ce8(_0x40d02a._0x4ac893,0x149,_0x40d02a._0x2e79c1,0x96)](_0x57daf9['hpsBl']),console[_0x164e9c(0x325,0x2cf,_0x40d02a._0x47e9cb,_0x40d02a._0x593c12)](_0x57daf9[_0x2f2ce8(_0x40d02a._0x4a2ea3,_0x40d02a._0x4bfaf2,0x8c,0xdc)]),console['log'](_0x57daf9[_0x2f2ce8(-_0x40d02a._0x298dcf,0x21,-0x43,0xc0)]),console[_0x2f2ce8(0x1a5,_0x40d02a._0x30db07,0xb6,0x1da)](_0x57daf9[_0x164e9c(0x204,0x156,0x1e1,0x168)]),console[_0x164e9c(_0x40d02a._0x2bd34a,_0x40d02a._0x2aebb9,_0x40d02a._0x5543b6,_0x40d02a._0x320a20)](''),console[_0x2f2ce8(0x10b,0x149,0x125,0x1f8)](_0x57daf9[_0x2f2ce8(0x17c,_0x40d02a._0x23a00d,_0x40d02a._0x191965,0xd8)]),console['log'](_0x57daf9['Uwoyo']),console[_0x164e9c(_0x40d02a._0x342aed,_0x40d02a._0x5ef88c,0x3e0,0x2b4)](''),console[_0x164e9c(0x325,0x3c7,0x3c1,_0x40d02a._0x489934)](_0x57daf9[_0x164e9c(_0x40d02a._0x54de89,_0x40d02a._0x18230e,_0x40d02a._0x1cb5c6,0x28c)]),console[_0x164e9c(0x325,0x2d1,0x28c,_0x40d02a._0x2b4842)]('\x20\x20coder-se'+_0x164e9c(0x2e0,_0x40d02a._0x4be355,_0x40d02a._0xa0489c,0x24e)+'connect'),console[_0x2f2ce8(0x90,0x149,0x1ec,0x139)]('\x20\x20coder-se'+_0x2f2ce8(_0x40d02a._0x44d512,_0x40d02a._0x3a5ae4,_0x40d02a._0xfe700c,_0x40d02a._0x2707af)+'status'),console[_0x2f2ce8(0x130,0x149,0xf9,0x116)](_0x164e9c(0x2ab,_0x40d02a._0x272fa1,_0x40d02a._0x4bbacc,0x224)+'rver\x20jira\x20'+_0x164e9c(0x301,0x26c,0x363,0x354)),console[_0x2f2ce8(0x171,_0x40d02a._0x30db07,0x1f4,_0x40d02a._0x303025)](_0x57daf9[_0x2f2ce8(0x13f,_0x40d02a._0x74dc54,_0x40d02a._0xc05ae7,0x146)]);break;}}
|
|
1
|
+
(function(_0x291345,_0x2b11c3){const _0xc2d38d={_0x1fecfc:0x683,_0x283808:0x67d,_0x234c76:0x158,_0x25875e:0x50,_0x1bb41f:0x4ea,_0x2e733b:0x504,_0x10fa22:0x45d,_0x2ccba8:0x51,_0x248af1:0x7b,_0x101d5e:0x4fd,_0xe02fd2:0x6dd,_0x184033:0x691,_0x39a2d2:0x74,_0x1d5623:0x42,_0x3f7eab:0x79,_0x30c40a:0x58a,_0x42d3ea:0x4d7,_0x5d9b29:0x20,_0x39f66e:0x80,_0x92f6aa:0x1d,_0x1e0bb6:0x5ba,_0xdada40:0xf1,_0x4cd74d:0x76},_0x555048={_0x1faf36:0x305};function _0x17a0c0(_0x3881eb,_0x791636,_0x4f55ee,_0x2ec7ed){return _0x195c(_0x3881eb-_0x555048._0x1faf36,_0x4f55ee);}function _0x2027d0(_0x2c9c69,_0x58f197,_0x5c3335,_0x4e1da4){return _0x195c(_0x5c3335- -0x261,_0x4e1da4);}const _0x4b595b=_0x291345();while(!![]){try{const _0x2b6c4e=parseInt(_0x17a0c0(0x5db,_0xc2d38d._0x1fecfc,_0xc2d38d._0x283808,0x678))/(-0x4d7+0x18b*0x3+0x37*0x1)*(parseInt(_0x2027d0(_0xc2d38d._0x234c76,0x5a,0xf6,_0xc2d38d._0x25875e))/(0x15dc+-0x86e*-0x1+-0x1e48))+-parseInt(_0x17a0c0(_0xc2d38d._0x1bb41f,_0xc2d38d._0x2e733b,_0xc2d38d._0x10fa22,0x466))/(-0x4b0+-0x5*0x4ed+0x1d54)*(-parseInt(_0x2027d0(-0xf3,-_0xc2d38d._0x2ccba8,-_0xc2d38d._0x248af1,-0xf0))/(-0x11*0x213+-0x1057+-0x1*-0x339e))+parseInt(_0x17a0c0(0x60d,0x60c,0x5e0,0x5d3))/(0x1a9*-0xb+-0x3*-0x629+-0x33)+parseInt(_0x17a0c0(0x5b2,_0xc2d38d._0x101d5e,0x58f,0x605))/(0x8f9+-0x6e+-0x3*0x2d7)*(parseInt(_0x17a0c0(0x669,_0xc2d38d._0xe02fd2,0x71f,_0xc2d38d._0x184033))/(-0x1*0xe2+0x86c+-0x3*0x281))+parseInt(_0x2027d0(_0xc2d38d._0x39a2d2,-_0xc2d38d._0x1d5623,_0xc2d38d._0x3f7eab,0xe1))/(0x1dbe+0x2b6+-0x206c)*(-parseInt(_0x17a0c0(_0xc2d38d._0x30c40a,0x630,_0xc2d38d._0x42d3ea,0x5f4))/(-0x2*-0xc5c+-0x5a3+-0x130c))+-parseInt(_0x2027d0(0xfe,0x94,0x93,0x81))/(-0x1f65+0x1*-0x1c0f+0xa*0x5f3)*(parseInt(_0x2027d0(-0x43,_0xc2d38d._0x5d9b29,-_0xc2d38d._0x39f66e,_0xc2d38d._0x92f6aa))/(0x760+-0x971*-0x2+-0x1a37))+parseInt(_0x17a0c0(0x609,0x597,_0xc2d38d._0x1e0bb6,0x5f6))/(0xf68+-0xfb0+0x54)*(-parseInt(_0x2027d0(0xa1,0x48,_0xc2d38d._0xdada40,_0xc2d38d._0x4cd74d))/(0x15df+0x10c1+-0x2693));if(_0x2b6c4e===_0x2b11c3)break;else _0x4b595b['push'](_0x4b595b['shift']());}catch(_0x306c59){_0x4b595b['push'](_0x4b595b['shift']());}}}(_0x485f,0x7*-0x22ea+-0x15ba1*-0x1+0x1facb));import _0x4463f2 from'readline';import{promises as _0x1c2414}from'fs';import _0x5575b5 from'path';import{exec}from'child_process';import{promisify}from'util';import{getCoderSetupPath}from'./config.js';function _0x485f(){const _0x40ab9c=['tMfLq24','B2TLBG','rNLrveS','C3rHDhvZ','txz6shO','y3q6ignVzgvYlq','mtb8mtr8ohWXmG','icaGicbtAg93ia','zMLNDxjLzc4','BMzQzNe','B24GC3vJy2vZCW','ifrVA2vUigLZia','AxfMz0C','vvvqCLa','rxjYB3i6iefqsq','icaGiePjuKeGsq','vgvZDgLUzYbksq','DxnLihrOAxmGyW','nK5vv0XHBG','DgfYDa','nhW3Fdb8nNW1Fa','BuHcqxq','D2fYBG','r1vHy1y','EuLftxG','yNHpAKG','zKX3rhy','D0HXtuO','tM93Cw0','sKnsCNy','AwWGAxmGCMvXDq','zuviDw4','zcbZDwnJzxnZzG','s05Iufi','Cgf0Ad08Cgf0Aa','B24U','icbZDgf0DxmGia','BhzXuhK','zK1zy2m','AwThswC','ls1Zzxr1Cc1Wyq','u2DAAgG','CgXHDgzVCM0','lMf0BgfZC2LHBG','CMvXDwLYzwq','DgG9','Dg9mB3DLCKnHCW','wMHSv0i','zwDYyxrPB24Gka','ww91ig5LzwqGyq','Cffqr2u','C3vIC3rYAw5N','DMn2u1m','ChH1wxC','zKTnCwW','yxbPvg9Rzw4','Bg9N','4PYtienVBMzPz3vY','AMLYys5QC29U','mty2ou9sC2DYAq','ruDpENu','pIaGifbHDgGGDa','wgXQyu8','mJGZmJHIzgj1veG','B3bLBIbICM93CW','sKLsqsbbueKGva','zgLZy29UBMvJDa','yvvqC3q','uuXrCwu','zwrLBNrPywXZia','wwDowhi','rNzdD0C','mNWXFdr8mhW1Fa','vgHSBNG','vu1HwNe','Aw5Nig9UzsbVzG','sKLsqsbcyxnLia','DLPsBgG','D2DZzKW','4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq','y29KzxiTC2v0Dq','ueKGDg9Rzw4I','rxn4CKK','ELjLC1u','vgzrrNu','CMf0Aw9UigLZia','B3j5','DeDPt0q','tLztweu','mtblrxLMvha','v1LPwva','mNWZFdH8mq','BgvUz3rO','sKnvEhG','B3zPv3e','v1HpsLO','zxmGBM90igv4Aq','Aw5WDxq','sfruuca','CMeGy29UBMvJDa','y29UBMvJDa','ysbJB25Uzwn0','AgvPzha','ywnJzxnZ','sKLsqsbPCYbUBW','mJm2ngX1zuz5sG','EwTZuNq','Euvhzg0','rxjYB3i6ievTyq','ndu5mJC1wwzhrMvq','sKLsqsbJB25Uzq','EK5tsKq','y29UBMvJDcaTlq','yxrPB24GC2f2zq','Ahr0Chm6lY95BW','twHOAvq','BvvVsfO','qwTurha','C3rHCNqGiG','q291BgqGBM90ia','t3Dvsfe','ugXLyxnLignOzq','BM5Ly3rPB24','Dgf0Dxm','B3DZzxiUlI4','Dhjzr1G','y2SGEw91CIbJCG','CvbeALG','BIbJyw5JzwXSzq','uNvUoIbJB2rLCG','Aw50zxjHy3rPDG','CZOGtM90ignVBG','zxi6ignVzgvYlq','CNzLCIbQAxjHia','icdIGkiGt3bLBIb0','wMXOBwe','mY9TExnLBgy','zLrfC0e','Fdz8oq','A0z0AwW','Bwn5Ce0','BNrLz3jHDgLVBG','AwfIBgu','t3b0Aw9UCZO','BeDctLy','yxv0Aa','4Psa4Psa4Psa4Psa4Psa4Psa4Psa4Psa4Psa4Psa','BfDizKS','q2DZELy','C2vYDMvYigPPCG','rgXTD28','q2zkwxm','q29UzMLNigzPBa','zMnVr0u','zs1WCM9MAwXLlW','y2XVC2u','B0jUtLG','q3nfChu','B25Tzw50ihzHCG','icbfBwfPBdOGia','EePHyxy','qMfZAwmG','B3bLwxe','zgLZCgXHEu5HBq','rxjYB3i6','C3rKAw4','BYbJB2rLCI1Zzq','qvbjihrVA2vUia','DgHLihrVA2vU','B246','vxnPBMCGC2v0Dq','icaTlxnLDhvWlq','q2HKqMG','v1jWtg8','Aw1xALq','ztOG','y2LMEsbHihnLDa','shn6tem','yvLjt1O','ihrViePjuKeUlG','quTyD3a','t1ffz0S','zNrcveO','mtq4mLPzrLjJCq','BNm6','t2Xxq1q','ugXLyxnLihzPCW','zMLNDxjLza','mJa4we9uEuXK','vwr2DLC','ANnVBG','rKfLzNu','ywLUlG','sKLsqsbPBNrLzW','Fdv8m3WXm3W0Fa','C2vJDxjPDhKVyq','B1j4yNa','CgKTDg9Rzw5Z','icaZlIbdB3b5ia','Ahr0Chm6lY9Pza','Dcb0AguGC2vYDG','nte3nJaXthHHA01b','q0HVy00','t3bLBMLUzYbICG','ysbJB25Uzwn0ia','4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq4Pwq','DhjPBq','mtmZnJu5oufyrvzHAG','u3rLCcaYlZq6ia','vg8GCMvJB25Uzq','DxaGCgf0Acb1CW','mJu4EeXKtfnr','nZG5mNDZBwv2uW','zwqU','BY9Zzxr1Ca','C2v0Dxa','lMnVBs9Tyw5HzW','vgXHz1K','icdIGkiGy29KzxiT','CcbksvjbigLUDa','nNW0Fdv8mhWYFa','zNjVBsbksvjblG','Aw9UlI4U','v1bytuu','y29Kzq','C3bSAxq','BwvZC2fNzq','t3bLBIbICM93CW','igL0igjLBg93','l3jLC3qVyxbPlW','CwnSBeC','uMPfrgy','z3vYyxrPB24GCW','4PYtiePjuKeGy29U','y3r2CLq','uKeGy29UBMvJDa','q29UBMvJDgLUzW','rK1mt3a','xtOG','ELD1vwm','CMzHy2u','mhWZFdf8nhW1Fa','sKLsqsbfBwfPBa','lxnLCNzLCIbQAq','tMDYtuy','BuP4uwe','Dujyy3O','igzYB20GsKLsqq','zw1HAwW','EeTbsfa','wLfHtgy','D3jPDgvgAwXL','AxjLza','t3Hctvm','zxiGyxv0B21HDa','Aw5NiePjuKeGyW','C3rHCNrZv2L0Aa','Dgv4Da','zsbksvjbignVBG','AM9PBG','cGPpCgvYyxrPBW','yxrOps9WyxrOlW','Cw5qyu4','ls1Zzxr1Cd0','svjRzhe','icbJB2rLCI1Zzq','zgfYD2LU','rw1HAwWGwW','ANjpBg4','vgvZDgLUzYbdBW','wNrQyLa','AxqGysbUyw1Lia','zLjbB2u','CYbUB3CGy29UzG','mxW1Fdr8m3WYFa','sKLsqsbtDgf0Dq','rNLOvfq','DxnLCG','y0LxvwG','lM5LDa','n3WXmxWXFdb8mG','sK9fyMK','B3bLBIaI','m3WX','icb0zxn0icaGia','mhWXFdr8m3WY','se9MEue','B25MAwD1CMf0Aq','EMzQDeS','D2rbsgO','DgvZDa','icbvC2vYoIa','AguGD2vIifvjia','CcbWyxrOignVBG','uefuscbLBNzPCG','DxaGCgf0AcbKBW','CMvHzezPBgu','qw9LAwW','icdIGkiGu2v0ienp','zxiTC2vYDMvYia','thrLtge','rxjYB3i6ie5Via','rwDbAMO','DxiTy29TCgfUEq','B0TqreC','zMLNDxjHDgLVBG','icbfBMfIBgvKoG','rhzWzfO','uvrluMe','BLPwtKe','zw5HyMXLza','yw5KihrYEsbHzW','yKn3A0C','wKPZA0y','B3iGiKLTCg9YDa','rxjYB3iGCMvHza','wwvZ','ihjLBw92zwq','ic0TC2v0DxaTCa','wKnyqKW','B24GzMfPBgvK','CvzSBM8','tfPSr3q','zMzeqNG','mNWWFdr8mxWZ','y3qGicbszw1VDG','uNLOweW','Dg9tDhjPBMC','icjdCMvHDguGqq','EgfACMG','vwH3u0K','tenWtuS','rKj1rha','DhrbAvm','tffcyMG','ugXLyxnLihnWzq','icaXlIbdBgLJAW','B0nADMS','C0vYCge','vgHLihnLCNzLCG','tLDXrui','Axb2Ave','DgG9l3bHDgGVDa','zgLZywjSzwqU','icdIGkiGuMvZDgfY','kguUzY4SicjdBW','rxjYB3i6ifnLDa','wgTHwxG','zxjYB3i','Axq6ia','DvPIAfO','CxLouvm','ANnbCxq','revsx1nfvfvqxW','ru5pru5u','CgfYC2u','D2LUmZi','tuvev0G','C3q6ia','y3jLyxrLsw50zq','CvfqBMG','BK5uy3m','uerdqK4','z2r3r2S','AMLYysa8y29TBq','EwvZ','CdOG','DcbJB25MAwD1CG','zxHPDa','4PYtienVBM5Ly3rP','yMfZzvvYBa','ntmXyxbIDNnZ','icbJB25Uzwn0ia','C3bUthy','AwnHBgX5lG','lI4U','Dw5SAw5R','rw1HAwW6ia','vg1kBha','vvjm','zNvSiq','C3vJy2vZCW','icaYlIbhAxzLia','DhLhCLa','r0jLwgK','txjxBhe','4PYxienVBM5Ly3rP','DxrMltG','Bwj3EMy','ueKGDg9Rzw4Gyq','icaGicbuzxn0ia','yxbWBgLJyxrPBW','vxnHz2u6ignVza'];_0x485f=function(){return _0x40ab9c;};return _0x485f();}const execAsync=promisify(exec);function parseSetupPath(_0x477860){const _0x4db722={_0x49e3ad:0x327,_0x39c98b:0x3bb,_0x4c52f7:0x2f6,_0x51c3b5:0x303,_0x23b846:0xd7,_0x5ef827:0xa8,_0x4ed19d:0x332,_0x38437b:0x279,_0x50d2bc:0x17f,_0x338a39:0x241,_0x127663:0x223,_0x27851f:0x208,_0x1fdc15:0x282,_0x2d9675:0x1c3,_0x1a8069:0x1c4,_0x2925d1:0x2cb,_0x1233bd:0x405,_0x58af92:0x17c,_0x5e21ad:0x76,_0x2e372d:0x14,_0x410b9e:0xf5,_0x4bc30f:0x3e,_0x419d2e:0x5e,_0x5c332d:0x8f,_0x567779:0x6d,_0x4b7671:0x35,_0x259e64:0x98,_0x525e6c:0x35,_0x1865fd:0x15f,_0x41f6ca:0x175,_0x2b802e:0xcf,_0x329963:0x32f,_0x26b000:0x30d,_0x649382:0x1e3,_0x33e86e:0x27d,_0x5c64ed:0x2e,_0x5d6cdd:0x8,_0x133045:0x1,_0x570dd4:0x66,_0x5891b5:0x66,_0x3e2836:0xe,_0x21294d:0xf7,_0x4bd904:0xeb},_0x884540={_0x4473f1:0x11},_0x5bf65d={_0x425e69:0x2de},_0x1bc604={};_0x1bc604[_0xd2805f(_0x4db722._0x49e3ad,_0x4db722._0x39c98b,_0x4db722._0x4c52f7,_0x4db722._0x51c3b5)]=_0x28de95(0xa7,-_0x4db722._0x23b846,-_0x4db722._0x5ef827,-0x1b)+_0xd2805f(0x331,_0x4db722._0x4ed19d,_0x4db722._0x38437b,0x2d9),_0x1bc604['TmJlp']=_0xd2805f(_0x4db722._0x50d2bc,_0x4db722._0x338a39,_0x4db722._0x127663,0x22a),_0x1bc604[_0xd2805f(0x28b,_0x4db722._0x27851f,0x29c,_0x4db722._0x1fdc15)]=function(_0x3e28a8,_0xbfd307){return _0x3e28a8===_0xbfd307;};function _0x28de95(_0x16d0f5,_0x20c602,_0x418644,_0x5277c7){return _0x195c(_0x5277c7- -_0x5bf65d._0x425e69,_0x16d0f5);}function _0xd2805f(_0x28c837,_0x51e085,_0x1e3374,_0x42ce63){return _0x195c(_0x42ce63-_0x884540._0x4473f1,_0x28c837);}_0x1bc604[_0xd2805f(0x2d1,_0x4db722._0x2d9675,_0x4db722._0x1a8069,0x220)]=_0xd2805f(_0x4db722._0x2925d1,0x373,_0x4db722._0x1233bd,0x35d);const _0x368b06=_0x1bc604;for(const _0x3a6a70 of _0x477860){if(_0x3a6a70[_0x28de95(-0x169,-0x12a,-_0x4db722._0x58af92,-0xcc)](_0x368b06[_0x28de95(_0x4db722._0x5e21ad,0x1d,-0x33,_0x4db722._0x2e372d)])||_0x3a6a70[_0x28de95(-0x14,-0x17a,-0x73,-0xcc)](_0x368b06[_0x28de95(-_0x4db722._0x410b9e,-0xde,_0x4db722._0x4bc30f,-0x52)])){if(_0x368b06[_0x28de95(-_0x4db722._0x419d2e,-_0x4db722._0x5c332d,0x3,-_0x4db722._0x567779)](_0x28de95(-0x97,-_0x4db722._0x4b7671,-0x8a,-_0x4db722._0x259e64),_0x368b06[_0x28de95(-_0x4db722._0x525e6c,-_0x4db722._0x1865fd,-_0x4db722._0x41f6ca,-_0x4db722._0x2b802e)]))_0xdeebdb[_0xd2805f(_0x4db722._0x329963,0x244,0x2f6,0x27f)](_0xd2805f(_0x4db722._0x26b000,_0x4db722._0x649382,0x2a1,_0x4db722._0x33e86e)+_0x28de95(-0xc4,-0x10d,-_0x4db722._0x5c64ed,-0xa5)+_0x28de95(0x86,0x2c,-_0x4db722._0x5d6cdd,0x1d)+_0x28de95(-0x74,0x2b,-_0x4db722._0x133045,-_0x4db722._0x570dd4)+_0x540941),_0x442cf8[_0x28de95(_0x4db722._0x5891b5,_0x4db722._0x3e2836,-_0x4db722._0x21294d,-0x5c)](0x2263*0x1+-0x1*0x1ecf+-0x393);else return _0x3a6a70[_0x28de95(-0x69,-_0x4db722._0x4bd904,-0x133,-0xeb)]('=')[0x19e3*-0x1+-0x169d+0x102b*0x3];}}return null;}function prompt(_0x16fb5a){const _0x3d34d1={_0x5adf2a:0x649,_0x5ecb0f:0x5da,_0x1377ad:0x580,_0x303a02:0x142},_0x1372d4={_0x3cec8b:0x48c,_0x49bd74:0x4bb,_0x1621ff:0x3ee,_0x17eaa7:0x573,_0x4f9d56:0x45b,_0x1e827c:0x474,_0x51737f:0x38b,_0x55dc32:0x36e,_0x1587b8:0x406,_0x4e7b6e:0x455,_0x28f521:0x42e,_0x295964:0x358,_0x181d5b:0x3b8,_0x375642:0x455,_0x5f0533:0x448,_0x86e90a:0x41a,_0x2c2a9e:0x388,_0x4c8390:0x406,_0x304926:0x442,_0x56cef6:0x452,_0x3af899:0x513,_0x1f953a:0x384,_0xa3b5e0:0x4e1,_0x6ccbb5:0x492,_0x28edbf:0x427},_0x4482bd={_0x2e39a6:0x81,_0xb83666:0x13a,_0xbbb1e6:0x186,_0x11032d:0xf6,_0x4a7cba:0x104,_0x574997:0x21f,_0x2466b1:0x543,_0x3d12c1:0x5f1,_0x7afa0e:0x5c8},_0x42c5d4={_0x46d09f:0x1c8,_0x138804:0xcb},_0x38e816={_0x828e67:0x323},_0x5e7ff5={'qJeat':function(_0x54054b,_0x185514){return _0x54054b(_0x185514);},'kFtil':function(_0x37c986,_0xd5b24c){return _0x37c986===_0xd5b24c;}};function _0x36207c(_0x15339b,_0x282eba,_0x4fcc72,_0x50014f){return _0x195c(_0x15339b-0x29f,_0x282eba);}const _0x3b59fa={};_0x3b59fa[_0x36207c(0x59b,0x60c,0x61b,_0x3d34d1._0x5adf2a)]=process[_0x36207c(0x5df,0x51c,_0x3d34d1._0x5ecb0f,_0x3d34d1._0x1377ad)],_0x3b59fa['output']=process['stdout'];const _0xd2d4c9=_0x4463f2[_0x36207c(0x518,0x561,0x587,0x4dd)+_0x50dbd6(-0x12b,-0x17a,-0x121,-_0x3d34d1._0x303a02)](_0x3b59fa);function _0x50dbd6(_0x49ca3c,_0x333185,_0x246f35,_0x39c553){return _0x195c(_0x246f35- -_0x38e816._0x828e67,_0x49ca3c);}return new Promise((_0x577006,_0x4fca2d)=>{const _0x59012e={_0xe638c3:0xbe,_0x39e3af:0x19c},_0x560f5c={_0x2a906a:0xb9},_0x5a2c71={_0x19e4c5:0x480,_0x5f69a8:0x114,_0x17e27c:0x1e1},_0x4a4343={_0x55ddc2:0x138},_0xd8f70={};function _0x4c88ab(_0x11f94a,_0x23dfe8,_0x1500cd,_0x326f96){return _0x36207c(_0x11f94a- -0xf5,_0x1500cd,_0x1500cd-_0x4a4343._0x55ddc2,_0x326f96-0x50);}_0xd8f70[_0x4c88ab(_0x1372d4._0x3cec8b,0x4f7,0x402,_0x1372d4._0x49bd74)]=_0x493fe0(_0x1372d4._0x1621ff,0x343,0x40c,0x478),_0xd8f70[_0x4c88ab(0x46e,0x4db,0x4d4,0x412)]='Error:';function _0x493fe0(_0x7ce481,_0x17211e,_0x2b530a,_0x3ccd86){return _0x50dbd6(_0x2b530a,_0x17211e-_0x42c5d4._0x46d09f,_0x7ce481-0x4bb,_0x3ccd86-_0x42c5d4._0x138804);}const _0x270e85=_0xd8f70;if(_0x5e7ff5[_0x4c88ab(0x4d0,0x43a,_0x1372d4._0x17eaa7,_0x1372d4._0x4f9d56)]('BlVvJ','dYQwQ')){const _0x619e3f=_0x270e85[_0x493fe0(0x47a,0x3bf,0x3d6,_0x1372d4._0x1e827c)][_0x493fe0(_0x1372d4._0x51737f,0x3a9,_0x1372d4._0x55dc32,0x334)]('|');let _0x4b69c5=-0x15cf+0x533*-0x6+0x3501;while(!![]){switch(_0x619e3f[_0x4b69c5++]){case'0':_0x5245df[_0x493fe0(_0x1372d4._0x1587b8,_0x1372d4._0x4e7b6e,0x4bf,_0x1372d4._0x28f521)]('');continue;case'1':_0x5eac4c[_0x493fe0(0x406,_0x1372d4._0x295964,0x4b0,0x34a)]('');continue;case'2':_0x2b9376[_0x493fe0(0x406,_0x1372d4._0x181d5b,_0x1372d4._0x375642,_0x1372d4._0x5f0533)]('✗\x20Connecti'+'on\x20failed');continue;case'3':_0x13455a[_0x493fe0(_0x1372d4._0x86e90a,0x37e,0x41f,_0x1372d4._0x2c2a9e)](-0x1022+0x1ab7+0x4*-0x2a5);continue;case'4':_0x39df2c[_0x493fe0(_0x1372d4._0x4c8390,0x433,_0x1372d4._0x304926,_0x1372d4._0x56cef6)](_0x270e85[_0x4c88ab(0x46e,_0x1372d4._0x3af899,0x4b3,0x512)],_0x514793[_0x4c88ab(0x418,_0x1372d4._0x1f953a,0x437,0x455)]);continue;}break;}}else{let _0x4ac7eb=![];_0xd2d4c9['question'](_0x16fb5a,_0x2945e0=>{_0x4ac7eb=!![],_0xd2d4c9[_0x34b41f(-0x6d,_0x560f5c._0x2a906a,0xd1,0x4e)]();function _0x34b41f(_0x92fb99,_0x2b066a,_0x48f64a,_0x1a2664){return _0x493fe0(_0x1a2664- -_0x5a2c71._0x19e4c5,_0x2b066a-_0x5a2c71._0x5f69a8,_0x48f64a,_0x1a2664-_0x5a2c71._0x17e27c);}_0x5e7ff5['qJeat'](_0x577006,_0x2945e0);}),_0xd2d4c9['on'](_0x4c88ab(0x4e0,_0x1372d4._0xa3b5e0,_0x1372d4._0x6ccbb5,_0x1372d4._0x28edbf),()=>{const _0x5e98bb={_0x32fd25:0x43,_0x42fce9:0x4e};function _0x3e9ca6(_0x366425,_0x505277,_0xe48fa1,_0x451424){return _0x4c88ab(_0x505277-0x1c5,_0x505277-_0x59012e._0xe638c3,_0x451424,_0x451424-_0x59012e._0x39e3af);}function _0x48a3b6(_0x2e8bcf,_0x540c5d,_0x474047,_0x4fbbe1){return _0x493fe0(_0x2e8bcf- -0x32d,_0x540c5d-_0x5e98bb._0x32fd25,_0x474047,_0x4fbbe1-_0x5e98bb._0x42fce9);}!_0x4ac7eb&&(console['log'](_0x48a3b6(_0x4482bd._0x2e39a6,-0x28,_0x4482bd._0xb83666,0x91)+_0x48a3b6(_0x4482bd._0xbbb1e6,_0x4482bd._0x11032d,_0x4482bd._0x4a7cba,_0x4482bd._0x574997)+'d.'),process[_0x3e9ca6(_0x4482bd._0x2466b1,_0x4482bd._0x3d12c1,_0x4482bd._0x7afa0e,0x656)](-0xf80+0x1*0x727+0x859));});}});}function promptSecret(_0x39b312){return prompt(_0x39b312);}async function testJiraConnection(_0x5a4ee4,_0x22b559,_0x4149f0){const _0x333bd8={_0x207377:0x725,_0x29bba8:0x55a,_0x56d499:0x513,_0x4185b6:0x20b,_0x49ad3c:0x27,_0x4ae67a:0x189,_0xc7dfc0:0xb0,_0x10cec4:0x6da,_0xefcb1f:0x81,_0xc5bf03:0x125,_0x30c168:0x8e,_0x55e2e0:0x64a,_0x584f0a:0x631,_0x412a4d:0x741,_0x5e748f:0x5a4,_0x1cb21e:0x626,_0x321c27:0x6a4,_0x33cf6b:0x9c,_0x4ed609:0x10,_0x2ab24c:0x42,_0x587e5e:0x83,_0x25b500:0x16,_0x4965a8:0x6f0,_0x57b06c:0x6a4,_0x43fc20:0x687,_0x5cc87b:0x784,_0x342b72:0x68d,_0x244c16:0xb9,_0x262931:0x7c,_0xb73daa:0x26b,_0x30496d:0x18b,_0xa9c7d2:0x5eb,_0x15b9b2:0x599,_0x5a9feb:0x91,_0x146d17:0x9f,_0x36680c:0x214,_0x31d6dd:0x66b,_0x562be9:0x720,_0xc78b4d:0x1f6,_0x402078:0x15f,_0x147388:0x179,_0xa491d5:0x6eb,_0x3ba5e9:0x682,_0x4cb6a5:0x172,_0x515e24:0x669,_0x57fd37:0x684,_0x43b235:0x62c,_0x36194f:0x579,_0x5be29f:0x5ff};function _0x2efcff(_0x1cd74a,_0x4afa76,_0x45c2ee,_0xa1439a){return _0x195c(_0x45c2ee- -0x174,_0x4afa76);}const _0x1d225f={'ZvyPr':_0x86311c(0x6df,0x6e9,_0x333bd8._0x207377,0x733)+_0x86311c(0x5e0,0x5d2,_0x333bd8._0x29bba8,_0x333bd8._0x56d499)+_0x2efcff(0x110,0x138,0x18a,_0x333bd8._0x4185b6)+_0x2efcff(_0x333bd8._0x49ad3c,_0x333bd8._0x4ae67a,0xdc,_0x333bd8._0xc7dfc0)+'ath=/path/'+'to/setup','gdwGk':function(_0x14d87e,_0x15aaa3){return _0x14d87e!==_0x15aaa3;},'sErpa':_0x86311c(_0x333bd8._0x10cec4,0x621,0x64c,0x6df),'FAefu':_0x2efcff(_0x333bd8._0xefcb1f,0x117,0x127,0x160),'xKAHP':'base64','mcypM':function(_0x3d5570,_0x35957c,_0x1f65ab){return _0x3d5570(_0x35957c,_0x1f65ab);},'qcllG':_0x2efcff(0x1c0,0x1a6,_0x333bd8._0xc5bf03,_0x333bd8._0x30c168)+'n/json'};function _0x86311c(_0x3e76ab,_0x20fcb7,_0x1a20cf,_0x3c4414){return _0x195c(_0x20fcb7-0x3cd,_0x3e76ab);}try{if(_0x1d225f[_0x86311c(0x6b0,_0x333bd8._0x55e2e0,0x678,0x610)](_0x1d225f[_0x86311c(0x58a,_0x333bd8._0x584f0a,0x62a,0x575)],_0x1d225f[_0x86311c(0x771,0x727,_0x333bd8._0x412a4d,0x7dc)])){const _0x1c1da0=Buffer['from'](_0x22b559+':'+_0x4149f0)[_0x86311c(_0x333bd8._0x5e748f,_0x333bd8._0x1cb21e,0x69f,_0x333bd8._0x321c27)](_0x1d225f[_0x2efcff(_0x333bd8._0x33cf6b,-0x19,0x97,_0x333bd8._0x4ed609)]),_0x3b004e=await _0x1d225f[_0x2efcff(0xfa,0x263,0x1b3,0x133)](fetch,_0x5a4ee4+(_0x2efcff(_0x333bd8._0x2ab24c,-0x24,_0x333bd8._0x587e5e,_0x333bd8._0x25b500)+_0x86311c(0x667,_0x333bd8._0x4965a8,0x6e8,_0x333bd8._0x57b06c)),{'headers':{'Authorization':_0x86311c(_0x333bd8._0x43fc20,0x709,_0x333bd8._0x5cc87b,_0x333bd8._0x342b72)+_0x1c1da0,'Accept':_0x1d225f[_0x2efcff(0xd5,_0x333bd8._0x244c16,0x84,_0x333bd8._0x262931)]}});if(_0x3b004e['ok']){const _0xb80097=await _0x3b004e[_0x2efcff(0x245,_0x333bd8._0xb73daa,0x1e5,_0x333bd8._0x30496d)](),_0x1bca77={};return _0x1bca77[_0x86311c(_0x333bd8._0xa9c7d2,0x65c,_0x333bd8._0x15b9b2,0x65c)]=!![],_0x1bca77['user']=_0xb80097,_0x1bca77;}else{const _0x30f777=await _0x3b004e[_0x2efcff(_0x333bd8._0x5a9feb,0x147,_0x333bd8._0x146d17,-0x3)](),_0x42cab9={};return _0x42cab9[_0x2efcff(0xec,0xed,0x11b,0xef)]=![],_0x42cab9['error']=_0x2efcff(0x18a,_0x333bd8._0x36680c,_0x333bd8._0x4ae67a,0x1da)+_0x3b004e[_0x86311c(0x606,_0x333bd8._0x31d6dd,_0x333bd8._0x562be9,0x636)]+':\x20'+_0x30f777,_0x42cab9;}}else{_0x3a87ba[_0x2efcff(0xaf,_0x333bd8._0xc78b4d,_0x333bd8._0x402078,_0x333bd8._0x147388)]('JIRA\x20Statu'+_0x86311c(0x786,_0x333bd8._0xa491d5,_0x333bd8._0x3ba5e9,0x6cd)+'figured'),_0x327e35['log'](''),_0x28a206[_0x2efcff(0x110,0x1a0,0x15f,_0x333bd8._0x4cb6a5)](_0x1d225f['ZvyPr']);return;}}catch(_0x31731e){const _0x4ed4e9={};return _0x4ed4e9[_0x86311c(_0x333bd8._0x515e24,0x65c,_0x333bd8._0x57fd37,_0x333bd8._0x43b235)]=![],_0x4ed4e9['error']=_0x31731e[_0x86311c(_0x333bd8._0x36194f,0x5c1,_0x333bd8._0x5be29f,0x52e)],_0x4ed4e9;}}async function openTokenPage(){const _0x25cd87={_0x5534bd:0x39b,_0xad48ad:0x392,_0x1e3579:0x2db,_0x464041:0x471,_0x190e81:0x42b,_0x3019a5:0x39f,_0x3b3c10:0x3d3,_0x2eba39:0x3d7,_0x4b2704:0x415,_0x14bc90:0x43c,_0x871c5d:0x3d1,_0x516efb:0x3e0,_0x3b0a38:0x483,_0x3e8808:0x4c2,_0x41ba78:0x450,_0x21f1c7:0x409,_0x438616:0x468,_0xc6d6ba:0x34c,_0x46cc68:0x38d,_0x12337e:0x329,_0x47e243:0x43a,_0x21f79d:0x2e6,_0x1fa51c:0x385,_0x5d01fd:0x3a4,_0x4ef081:0x353,_0x31e7af:0x288,_0x2f8a69:0x27f,_0xef482a:0x385,_0x44ac45:0x3b8,_0x5027a9:0x2c1,_0x486322:0x49f,_0x44ed7b:0x469,_0x2d9cd9:0x410,_0x1be322:0x4a1,_0x13e6de:0x4fe,_0x2492a2:0x497,_0xf4c47f:0x3fb,_0x5f443d:0x41b,_0x22786e:0x417,_0x2fc0e0:0x3da,_0x5718c5:0x41a,_0x45728b:0x4d1,_0x35fd5e:0x49a,_0x4d841f:0x429,_0x11b5e2:0x477,_0xd2a0f3:0x343,_0x193a7a:0x318,_0x263229:0x2bb,_0x2e3922:0x36c,_0x41ed9d:0x3d6,_0x452e2a:0x3dc,_0x311ea0:0x32c,_0x2f8066:0x400,_0x66e5df:0x454,_0x268395:0x48a,_0x137edb:0x494,_0x4421dc:0x3c8,_0xc305cb:0x31a,_0x2f412b:0x3cd,_0x9d3f06:0x394,_0xd85028:0x409,_0x34f377:0x360,_0x55b68e:0x442,_0x4a7732:0x49e,_0x241ccc:0x54e,_0x4a8fac:0x2e8,_0x5e095d:0x331,_0x41f96b:0x428,_0x39e53f:0x4aa,_0x4179e1:0x42a,_0x390e5c:0x43f,_0x29718c:0x393,_0x50dc1f:0x377,_0x52c4e7:0x3bc,_0x5ba35c:0x330,_0x471c61:0x346,_0x5ddfe2:0x3ca,_0x4ba348:0x299,_0x3b249a:0x2fc,_0x53d512:0x27a,_0x423ba3:0x240,_0x1cbe5a:0x35d,_0x27867b:0x2d2,_0xbd726b:0x34f,_0x22cbd9:0x4e4,_0x45c4b9:0x55f,_0x2b2224:0x46b,_0x31e02b:0x437,_0x3125ed:0x44e,_0xe8adb6:0x4ce,_0x4260bf:0x3b7,_0x26ed29:0x426,_0x289814:0x46a,_0x444f42:0x421,_0x439719:0x421,_0x4d543d:0x416,_0x2739c6:0x3c1,_0x3cadd1:0x397,_0x427b3c:0x2ec,_0x101e1a:0x389,_0x50a113:0x341,_0x2a8529:0x421,_0xe25083:0x482,_0x483fc3:0x479,_0x1455fd:0x44a,_0x5b791c:0x3a3,_0x24d34c:0x3c5,_0x232d4c:0x4a2,_0x24fa31:0x3c2,_0x2b9e82:0x31f,_0x40c91d:0x319,_0x19da48:0x3cb,_0x46c42d:0x459,_0x228c3a:0x3a2,_0x207a47:0x365,_0x5c2314:0x318,_0x384743:0x3ac,_0x2ed4d6:0x356,_0x29e7d9:0x366,_0x35f1be:0x386,_0x44727c:0x3ff,_0x4bf430:0x463,_0x1fc98c:0x4a9,_0x11941b:0x3f9,_0x5d2991:0x421,_0x137a36:0x45d,_0x48de8c:0x4d5,_0x40346a:0x377,_0x400146:0x40f},_0xb09732={_0x5e2506:0x14e};function _0x48f725(_0x6658c6,_0x4357c2,_0x2fb1b3,_0x138af4){return _0x195c(_0x4357c2-0x108,_0x6658c6);}function _0x3c9093(_0x352995,_0x1cf768,_0x1daec7,_0x5ae092){return _0x195c(_0x1cf768-_0xb09732._0x5e2506,_0x1daec7);}const _0x23d913={'LteLa':_0x3c9093(0x3c0,_0x25cd87._0x5534bd,0x3f3,0x3a1)+_0x3c9093(_0x25cd87._0xad48ad,0x35f,_0x25cd87._0x1e3579,0x38c)+'onfigurati'+_0x3c9093(_0x25cd87._0x464041,0x492,0x434,_0x25cd87._0x190e81),'lGBNV':'Get\x20your\x20A'+_0x48f725(0x378,_0x25cd87._0x3019a5,0x3dc,_0x25cd87._0x3b3c10)+'t:','fKMql':_0x48f725(_0x25cd87._0x2eba39,0x46a,_0x25cd87._0x4b2704,_0x25cd87._0x14bc90)+'.atlassian'+_0x3c9093(_0x25cd87._0x871c5d,0x338,0x3f0,0x2f0)+_0x3c9093(_0x25cd87._0x516efb,_0x25cd87._0x3b0a38,_0x25cd87._0x3e8808,0x3e8)+_0x3c9093(_0x25cd87._0x41ba78,0x4ac,0x459,0x527)+_0x48f725(_0x25cd87._0x21f1c7,_0x25cd87._0x438616,0x484,0x478),'Aoeil':_0x3c9093(_0x25cd87._0xc6d6ba,_0x25cd87._0x46cc68,_0x25cd87._0x12337e,0x352)+_0x3c9093(0x4d0,0x439,_0x25cd87._0x47e243,0x379)+_0x3c9093(_0x25cd87._0x21f79d,_0x25cd87._0x1fa51c,0x308,_0x25cd87._0x5d01fd)+_0x48f725(_0x25cd87._0x4ef081,0x3ab,0x454,0x34b),'WYiYP':function(_0xab9a67,_0x3b07c9){return _0xab9a67(_0x3b07c9);},'yIEMx':function(_0x4439a9,_0x5890f4){return _0x4439a9===_0x5890f4;},'qQPnh':'YgNXr','OQEgK':_0x48f725(_0x25cd87._0x31e7af,0x324,_0x25cd87._0x2f8a69,_0x25cd87._0xef482a),'nZVNA':function(_0x3696c6,_0x5b5862){return _0x3696c6===_0x5b5862;},'Zlhma':_0x48f725(0x3c9,0x46d,0x4c7,_0x25cd87._0x44ac45),'ffDBx':_0x48f725(0x42f,0x37e,_0x25cd87._0x5027a9,0x413),'wgsfL':_0x3c9093(0x501,_0x25cd87._0x486322,_0x25cd87._0x44ed7b,0x435),'MhhiT':function(_0x5df9a9,_0xe544f4){return _0x5df9a9!==_0xe544f4;},'uZbhZ':_0x3c9093(0x458,_0x25cd87._0x2d9cd9,_0x25cd87._0x1be322,0x44b),'qsQGo':_0x3c9093(_0x25cd87._0x13e6de,_0x25cd87._0x2492a2,0x3de,_0x25cd87._0xf4c47f),'LCpMK':_0x3c9093(0x365,_0x25cd87._0x5f443d,0x3f1,_0x25cd87._0x22786e),'zResU':_0x48f725(_0x25cd87._0x2fc0e0,_0x25cd87._0x5718c5,_0x25cd87._0x45728b,_0x25cd87._0x35fd5e)+_0x3c9093(0x399,_0x25cd87._0x4d841f,0x4e5,_0x25cd87._0x11b5e2)+_0x48f725(_0x25cd87._0xd2a0f3,_0x25cd87._0x193a7a,_0x25cd87._0x263229,0x38f)+_0x3c9093(_0x25cd87._0x2e3922,_0x25cd87._0x41ed9d,_0x25cd87._0x452e2a,_0x25cd87._0x311ea0)},_0xf2325c=_0x23d913[_0x3c9093(0x3da,0x41f,0x3c1,_0x25cd87._0x2f8066)];try{if(_0x23d913[_0x3c9093(_0x25cd87._0x66e5df,0x401,_0x25cd87._0x268395,_0x25cd87._0x137edb)](_0x3c9093(_0x25cd87._0xf4c47f,0x42f,0x3cb,0x3ab),_0x23d913[_0x3c9093(0x3eb,_0x25cd87._0x4421dc,_0x25cd87._0xc305cb,0x3dc)])){const _0x1fb898=process[_0x48f725(0x3a9,_0x25cd87._0x2f412b,_0x25cd87._0x9d3f06,_0x25cd87._0xd85028)];let _0x84ec6a;if(_0x23d913[_0x48f725(_0x25cd87._0x34f377,0x3bb,_0x25cd87._0x55b68e,0x393)](_0x1fb898,_0x23d913[_0x3c9093(0x400,_0x25cd87._0x4a7732,_0x25cd87._0x241ccc,0x4db)]))_0x23d913[_0x3c9093(_0x25cd87._0x4a8fac,0x395,0x45a,_0x25cd87._0x5e095d)](_0x48f725(0x44e,0x46d,_0x25cd87._0x41f96b,_0x25cd87._0x39e53f),_0x23d913[_0x48f725(0x415,_0x25cd87._0x4179e1,_0x25cd87._0x390e5c,0x440)])?_0x84ec6a=_0x3c9093(_0x25cd87._0x29718c,0x37a,_0x25cd87._0x50dc1f,0x41a)+_0xf2325c+'\x22':_0xc0a5fb[_0x3c9093(0x397,_0x25cd87._0x52c4e7,0x391,_0x25cd87._0x5ba35c)](_0x23d913[_0x48f725(0x342,_0x25cd87._0x471c61,0x2c3,_0x25cd87._0x5ddfe2)],_0x42ea0f[_0x48f725(_0x25cd87._0x4ba348,_0x25cd87._0x3b249a,_0x25cd87._0x53d512,_0x25cd87._0x423ba3)]);else _0x1fb898===_0x23d913[_0x48f725(0x388,_0x25cd87._0x1cbe5a,0x30f,0x349)]?_0x23d913[_0x48f725(_0x25cd87._0x27867b,_0x25cd87._0xbd726b,0x30e,0x2ac)](_0x3c9093(_0x25cd87._0x22cbd9,0x49f,_0x25cd87._0x45c4b9,_0x25cd87._0x2b2224),_0x23d913[_0x3c9093(0x46b,_0x25cd87._0x31e02b,0x43e,_0x25cd87._0x3125ed)])?_0x84ec6a=_0x3c9093(_0x25cd87._0xe8adb6,0x45f,_0x25cd87._0x4260bf,_0x25cd87._0x26ed29)+_0xf2325c+'\x22':(_0x461e94[_0x3c9093(_0x25cd87._0x289814,_0x25cd87._0x444f42,0x429,0x36c)]('\x0a\x0aOperatio'+_0x48f725(0x479,0x423,0x44a,_0x25cd87._0x439719)+'d.'),_0x58b647['exit'](0x61*0x22+-0x17f2+-0x2c4*-0x4)):_0x23d913[_0x48f725(0x426,_0x25cd87._0x4d543d,0x3f4,_0x25cd87._0x2739c6)](_0x23d913[_0x48f725(_0x25cd87._0x3cadd1,0x378,0x319,_0x25cd87._0x427b3c)],_0x3c9093(_0x25cd87._0x101e1a,0x3a1,_0x25cd87._0x50a113,0x446))?_0x84ec6a='xdg-open\x20\x22'+_0xf2325c+'\x22':(_0x2264cd['log'](''),_0x28f4b2[_0x3c9093(0x388,_0x25cd87._0x2a8529,0x3d8,_0x25cd87._0xe25083)](_0x23d913[_0x3c9093(0x45d,_0x25cd87._0x483fc3,_0x25cd87._0x1455fd,0x41d)]),_0x2d8872[_0x3c9093(_0x25cd87._0x5b791c,0x421,0x487,0x3ce)](_0x23d913['fKMql']),_0x1b5bef[_0x3c9093(_0x25cd87._0x24d34c,_0x25cd87._0x439719,_0x25cd87._0x232d4c,_0x25cd87._0x24fa31)](''));return await _0x23d913['WYiYP'](execAsync,_0x84ec6a),!![];}else _0x52beb0[_0x48f725(_0x25cd87._0x2b9e82,0x376,0x378,0x317)](_0x23d913[_0x48f725(_0x25cd87._0x40c91d,0x343,0x28c,_0x25cd87._0x19da48)]),_0x555d38[_0x3c9093(0x30d,0x3d0,_0x25cd87._0x46c42d,0x3f1)](-0x3ec+-0x1bf9*-0x1+0xc*-0x201);}catch(_0x32cd69){if(_0x23d913['qsQGo']===_0x23d913[_0x3c9093(_0x25cd87._0x228c3a,0x3ab,_0x25cd87._0x207a47,_0x25cd87._0x5c2314)])_0x477478=!![],_0x1bddc2[_0x48f725(_0x25cd87._0x2b2224,0x43e,0x411,_0x25cd87._0x228c3a)](),_0x23d913[_0x48f725(_0x25cd87._0x384743,0x3fd,_0x25cd87._0x2ed4d6,_0x25cd87._0x29e7d9)](_0xb74ff5,_0x2211ce);else return console[_0x3c9093(_0x25cd87._0x35f1be,_0x25cd87._0x44727c,_0x25cd87._0x4bf430,_0x25cd87._0x1fc98c)](_0x23d913[_0x48f725(0x37f,0x3f6,0x443,_0x25cd87._0x11941b)]),console[_0x3c9093(_0x25cd87._0x516efb,_0x25cd87._0x5d2991,0x398,0x3bf)](_0x48f725(0x3da,_0x25cd87._0x137a36,0x420,_0x25cd87._0x48de8c)+_0x48f725(0x2e3,_0x25cd87._0x40346a,0x3cb,_0x25cd87._0x400146)+_0xf2325c),![];}}async function connect(_0x2490c6){const _0x186b91={_0x1ece21:0x585,_0x3dcfff:0x57e,_0x2fb63d:0x4ca,_0x18c02f:0x48e,_0x431e1f:0x42,_0x1cb445:0x482,_0x110c10:0xa0,_0x272ef7:0x518,_0x36b82a:0x47e,_0x8d3954:0x466,_0x1fee4a:0x4fc,_0x19f50f:0x3fd,_0x23e56e:0x101,_0x70f6db:0x183,_0x371e81:0x73,_0x311838:0x3a3,_0x272259:0x47a,_0x4e79cb:0x427,_0x5a9efa:0x4e1,_0x5afb77:0x456,_0x163178:0x10,_0x490a52:0x25,_0x407ff0:0x45,_0x59234a:0x91,_0x3838bf:0x38d,_0x1fb2c7:0x3e9,_0x201d97:0x3f5,_0x381f6e:0x4b1,_0xfb9bae:0x2c8,_0x3d0577:0x378,_0x3c42cd:0x39e,_0x56f5c0:0x13d,_0x595c4a:0x444,_0xb35416:0x380,_0x5548e5:0x4bd,_0x1f7480:0x583,_0x4b72dd:0x4f2,_0x1f90ee:0x140,_0x144c72:0x1f7,_0xe36040:0x1ec,_0x112e3f:0x0,_0x46f50b:0x84,_0x2e9f2c:0x376,_0x2e1c51:0x3f,_0x136e26:0x5b,_0xb8b9b5:0xb4,_0x4deeb9:0x25,_0x270b06:0x102,_0x122ac5:0xae,_0x4c0463:0x2e,_0x4e3eb5:0x499,_0x5eef6c:0x4e5,_0x11f95e:0x55b,_0x220153:0x516,_0x4c731a:0x519,_0x56de5e:0x4a1,_0x5e0915:0x48f,_0x109cb7:0x3ac,_0x54a519:0x34f,_0x1a358f:0x3a1,_0x9c4d67:0x301,_0x3e343d:0x41c,_0x26009c:0xe0,_0x30cdbf:0x162,_0x32701b:0x15e,_0x11375e:0x44d,_0x4575ca:0x3dd,_0x5c8418:0x3fa,_0x3d505d:0x3a2,_0x3c3751:0x51f,_0x29abaa:0x460,_0x3e52d2:0x11b,_0x42c43d:0x70,_0x1b1c3c:0x126,_0x5b07d6:0x16e,_0x1eabe8:0x38,_0x5e6615:0xaa,_0x1e6a34:0x32,_0x59aa80:0x5d,_0x1264b4:0x113,_0x136b03:0x7d,_0x394f6e:0x92,_0x51f5da:0xef,_0x47a0f4:0x114,_0x131332:0x345,_0x19ac62:0x3b5,_0x37360f:0x3b1,_0x113351:0x3ff,_0x46c5bb:0x13a,_0x57c165:0x1c9,_0x4405cc:0x540,_0x7fc733:0x505,_0x267a9b:0x4fa,_0x283d06:0x50d,_0x6115f6:0x51e,_0x1413d2:0x4d7,_0x178e75:0x12c,_0x38bb1d:0x149,_0x1c6c72:0x1ed,_0x361a03:0x40c,_0x96a234:0x365,_0x1d139a:0x38a,_0x158c79:0x395,_0x61ca14:0x79,_0x135ab1:0x137,_0x2d5a5a:0x1ca,_0x1eec69:0x125,_0xb65d8c:0x17f,_0x148c44:0x55a,_0x3a8593:0x4f4,_0x481eba:0x3ca,_0x37e3af:0x3ab,_0x3062af:0x4a9,_0x2aa111:0x48d,_0x473c18:0x29,_0x7e6243:0x61,_0xb7c64:0x127,_0x4477db:0x135,_0x282061:0x49e,_0x329091:0x477,_0x748974:0x42e,_0x304024:0x428,_0x578e6c:0x3e6,_0xf9a18b:0xed,_0x127268:0x3b,_0x29226a:0x129,_0xfd7d7:0x456,_0x13fb73:0x394,_0x2937da:0x442,_0x195f1c:0x47f,_0x34ced0:0x474,_0x46ce63:0x347,_0x12afa7:0x1f0,_0x310e04:0xfe,_0x568eff:0x8c,_0x33bbed:0x7,_0x41ea0e:0x5,_0x5d2ad3:0x55f,_0x3ce7b7:0x434,_0x34f727:0xf,_0x1b0788:0x3e,_0x30f4d4:0x322,_0x2830ab:0x39d,_0x15bb56:0x6e,_0x4f789a:0xda,_0x14dab2:0xad,_0x4e3179:0xef,_0x578d4a:0x63,_0x3e08d4:0x138,_0x366bd4:0x4e,_0x355e2f:0x1c,_0x53a82a:0x2f,_0x11056b:0x5e,_0x4800ff:0xf0,_0x15c508:0x4e3,_0x2f44bf:0x446,_0x18bdff:0xac,_0x5c3d62:0x3ba,_0x5d8d3d:0x2a,_0x9065e3:0xdb,_0x3b8bf0:0x541,_0x140974:0x499,_0x470060:0x585,_0x5d7567:0x47f,_0x4268b3:0x6,_0x36db84:0x2e,_0x38dc30:0xb8,_0xfc0e28:0xca,_0x462eae:0xd0,_0x2d362e:0xd6,_0x4e0c68:0x2c,_0x19f2f1:0xe3,_0xb86bd2:0xe4,_0x55cd1d:0x55,_0x53983e:0x41,_0x2085e2:0x11,_0x48dd51:0x473,_0xf978c1:0x467,_0xe8b887:0x3d6,_0x223219:0x4ad,_0x32c6a7:0x340,_0x139606:0x484,_0x4833bc:0xac,_0x408a99:0x119,_0x36bcc4:0x19d,_0x391673:0x4b7,_0xe21462:0x36d,_0x5efba5:0x414,_0x363154:0x4a1,_0x1e4021:0x494,_0x363c14:0x501,_0x52952e:0x1e,_0x56fcbd:0x3da,_0x4231f1:0x361,_0x53c2f9:0x388,_0x3e613c:0x493,_0x53fb2f:0x41d,_0x96b4f2:0xd3,_0x277718:0xf8,_0x2e67af:0x488,_0x41a9ef:0x40c,_0x10b9ff:0x420,_0x5e388e:0x57,_0x3bd606:0x20,_0x3996f0:0x43f,_0x1d89a8:0x43b,_0x4672aa:0x13,_0x5cf09e:0x9,_0x4adb30:0x133,_0x1042ed:0x362,_0x43986c:0x498,_0x19f52e:0x46e,_0x3477a1:0x3,_0x5f06b7:0x23,_0x3f4391:0x363,_0x52d65b:0x418,_0x26beb9:0xc0,_0x328141:0x19,_0x2d298f:0xd9,_0x2e915c:0x2f8,_0x1977d2:0x42c,_0x50d298:0x4fd,_0x30ca1b:0x45b,_0x57d27f:0x4ee,_0x409e6f:0x3a4,_0x57cfe9:0x4e0,_0x8ef675:0x520,_0x572d6c:0x105,_0xca2865:0x14b,_0x4d9b95:0x1ae,_0xa6fad7:0x427,_0x3f76e5:0x2f8,_0x343296:0x33c,_0x133490:0x394,_0x35d5f2:0x370,_0x2e0ee5:0x64,_0x20d5df:0x106,_0x5ad0e1:0x4c,_0x53781e:0x383,_0x263a03:0x443,_0x2dca87:0x402,_0x24e604:0x3af,_0x5c5632:0x3b0,_0x165792:0x391,_0x300139:0x406,_0x529b53:0x467,_0x121684:0x46e,_0x4b1681:0x0,_0x58caac:0x119,_0x554be5:0xff,_0x10cc0b:0x48b,_0x30b085:0x449,_0x3afb18:0x4aa,_0x166af7:0x46b,_0x13edb8:0xab,_0x59f5bf:0x50d,_0xe346fa:0x3f2,_0x2ca03f:0x405,_0x4a9101:0x47,_0x198271:0x22,_0x2ee4bb:0x4c9,_0x3a2c5c:0x416,_0x2b846b:0x4d3,_0x443500:0x486,_0x537c8f:0x35,_0x1c06a8:0x115,_0xb2bafc:0xc8,_0x594691:0x108,_0x3637de:0x156,_0x587a54:0xa2,_0x274a96:0xb4,_0x628ede:0x19,_0x46cf3c:0x83,_0x4c5a08:0x42d,_0x37316f:0x4b7,_0x1f0de9:0x443,_0x48cba0:0xe5,_0x312e9:0x20,_0x247f56:0x34,_0x5811aa:0x5e,_0x44ed0f:0x4d4,_0x29dc71:0x467,_0x4533f6:0x45c,_0x37cba8:0x4ee,_0x5cc9df:0x42f,_0x280d51:0x42b,_0x32d4c9:0x3e5,_0x4f97c8:0x3e8,_0x574e77:0x4a4,_0x38161d:0x40b,_0x249c73:0x4a9,_0x5bd3f4:0x429,_0x25acab:0x24,_0x61777a:0xc5,_0x185e36:0x13a,_0x49e35c:0x182,_0xbbcffa:0x42,_0x30b1b8:0x3f0,_0x2a8a81:0xe1,_0x482884:0x62,_0x2c956c:0xbf,_0x7ea876:0x6f,_0x152c09:0xb8,_0x31a3ce:0xc4,_0x41d321:0x5e,_0x459d79:0x10a,_0x2f2c9d:0x144,_0x436f1f:0x404,_0x546c9f:0x403,_0x387953:0x35e,_0x3f01b5:0x1c0,_0x2d55e9:0x112,_0x7ef14b:0x56a,_0x362436:0x54e,_0x520d7e:0x114,_0x2c8ae9:0x1bb,_0x5b0e54:0x93,_0x24c0e4:0x421,_0x390d6f:0x485,_0x54b531:0x47b,_0x2b132e:0x530,_0x52b6c2:0xac,_0x504d67:0xc1,_0xf3b91b:0x526,_0x474223:0x48c,_0x4a61fb:0x4ca,_0x3c02be:0xd2,_0x470239:0x54,_0x2f5dc5:0x15c,_0x40014a:0xee,_0x5d2a3f:0x431,_0x5139e1:0x467,_0x29faf3:0x4db,_0x1d165a:0x4ac,_0x2bb2a0:0x501,_0xbd0ba9:0x479,_0x3f2d5c:0x462,_0x31ebd2:0x142,_0x369690:0xf2,_0x508640:0x1cd,_0x37b19e:0x16d,_0x50212f:0x68,_0x176b8d:0x115,_0x5d1034:0x50,_0x4f62d8:0x3d6,_0x4bb7b8:0x3b8,_0x2c5316:0x402,_0x5b0da5:0x480,_0x340b4f:0x36,_0x187021:0x4a6,_0x32f530:0x41e,_0x3cef6f:0x56a,_0x46d38d:0x416,_0x2d0381:0x47,_0x212f38:0xc8,_0xcc5e9e:0x3bb,_0x301aaa:0x4d,_0x58eadc:0x68,_0x35fd14:0x46,_0x2c9b09:0x446,_0x16ad3b:0xac,_0x431e84:0x14d,_0x3d5553:0xe6,_0x25e669:0x60,_0xacf804:0x3ed,_0x3a8e7d:0x487,_0x477638:0x467,_0x2bd831:0xcf,_0x5019bc:0x2b,_0x7fd7e3:0x1,_0x48cfee:0x426,_0x4cedb6:0x4d8,_0x1b2504:0x27,_0x137840:0x6,_0x113e6c:0x3ea,_0x36d6a7:0x478,_0x295d69:0x3f7,_0x4ccbcb:0x3c2,_0x2c0cb0:0x4ac,_0x49cfbf:0x3c,_0x1949c8:0x5e,_0x1c41f4:0x4c2,_0x46c711:0x4e9,_0x57c342:0x409,_0x5e7927:0x3f9,_0x2a6b91:0x85,_0x4f25b4:0x13f,_0xe1ac6f:0xa,_0x543dc5:0x55,_0x32546d:0x97,_0xfb9ea1:0x104,_0x26f23a:0xcd,_0x2d5f2d:0x44a,_0x5b458b:0xb5,_0x539161:0xb6,_0x10f709:0x156,_0x52f390:0x43,_0x4b521f:0xfa,_0x56ee57:0xc5,_0x1d7429:0x13c,_0x34cf66:0x46d,_0x67bdcf:0x3c4,_0x2c9d92:0x4a5,_0x56f64c:0xc3,_0x5b1c10:0x76,_0x3311c3:0x15b,_0x2791d9:0x13e,_0x4c313:0x116,_0x4b303c:0x4f6,_0x184be7:0x44e,_0xd4b1e0:0x457,_0x275874:0x10f,_0x472008:0x361,_0x17657f:0x4c3,_0x4ca980:0x416},_0x56ded0={_0x5c0e0d:0x194},_0xc4a624={_0x48c6bc:0x227},_0x2251aa={'bxOjH':'--setup=','MWRUu':_0x877d56(_0x186b91._0x1ece21,_0x186b91._0x3dcfff,0x4f0,0x4b8)+_0x877d56(0x500,_0x186b91._0x2fb63d,0x484,_0x186b91._0x18c02f)+_0x492a07(_0x186b91._0x431e1f,0xdb,0x51,-0x4b),'CsEpu':_0x877d56(0x4c9,0x3ac,0x43d,0x42d)+_0x877d56(0x3d2,0x4b8,0x43a,_0x186b91._0x1cb445)+_0x492a07(_0x186b91._0x110c10,0x118,0x164,0x25),'AKXwp':'══════════'+'══════════'+_0x877d56(_0x186b91._0x272ef7,0x443,_0x186b91._0x36b82a,0x443)+_0x877d56(0x58a,_0x186b91._0x8d3954,_0x186b91._0x1fee4a,0x4d9),'zWuUc':_0x877d56(_0x186b91._0x19f50f,0x3a4,0x43e,0x4e2)+_0x492a07(_0x186b91._0x23e56e,0x1c2,_0x186b91._0x70f6db,0xde)+'\x20Setup','JCRrv':_0x492a07(-0x24,-_0x186b91._0x371e81,-0x62,-0x2d)+'6|2','QLQqe':_0x877d56(0x46e,_0x186b91._0x311838,0x3d3,_0x186b91._0x272259)+_0x877d56(_0x186b91._0x4e79cb,_0x186b91._0x5a9efa,0x47f,_0x186b91._0x5afb77)+_0x492a07(_0x186b91._0x163178,-_0x186b91._0x490a52,_0x186b91._0x407ff0,-_0x186b91._0x59234a)+'figured.','jsAqt':_0x877d56(_0x186b91._0x3838bf,_0x186b91._0x1fb2c7,_0x186b91._0x201d97,_0x186b91._0x381f6e)+'cify\x20a\x20set'+_0x877d56(_0x186b91._0xfb9bae,0x2d9,_0x186b91._0x3d0577,_0x186b91._0x3c42cd)+_0x492a07(0xbf,0x12c,_0x186b91._0x56f5c0,0xdd)+':','PDCBN':_0x877d56(_0x186b91._0x595c4a,0x2c7,_0x186b91._0xb35416,0x363)+_0x877d56(_0x186b91._0x5548e5,_0x186b91._0x1f7480,0x4c4,_0x186b91._0x4b72dd)+_0x492a07(_0x186b91._0x1f90ee,0x1c9,_0x186b91._0x144c72,_0x186b91._0xe36040)+_0x492a07(0x9c,0x69,_0x186b91._0x112e3f,_0x186b91._0x46f50b)+_0x877d56(0x4ab,_0x186b91._0x2e9f2c,0x3fc,0x459)+_0x492a07(-_0x186b91._0x2e1c51,0x77,-_0x186b91._0x136e26,0x1b),'XkaYx':'\x20\x20•\x20Set\x20CO'+_0x492a07(0x4c,0x5f,0x84,_0x186b91._0xb8b9b5)+_0x492a07(0x11,0x5b,-_0x186b91._0x4deeb9,0x32)+'onment\x20var'+_0x492a07(_0x186b91._0x270b06,0x108,0x132,0xd9),'RjEDf':function(_0x5f0a40,_0x5039d1){return _0x5f0a40===_0x5039d1;},'spnLv':'HWLfR','qnPaN':_0x492a07(_0x186b91._0x122ac5,_0x186b91._0x4c0463,0x93,0x131),'wubXh':'✓\x20Found\x20ex'+'isting\x20JIR'+'A\x20configur'+'ation','mbwzf':'Step\x201/4:\x20'+'JIRA\x20Base\x20'+_0x877d56(_0x186b91._0x19f50f,_0x186b91._0x4e3eb5,0x421,_0x186b91._0x5eef6c),'oviWq':'──────────'+'──────────'+_0x492a07(0x106,0x133,0x186,0x14c)+_0x877d56(_0x186b91._0x11f95e,_0x186b91._0x220153,0x4c1,0x4d6),'tYRWl':_0x877d56(0x46e,_0x186b91._0x4c731a,_0x186b91._0x56de5e,0x42a)+_0x877d56(_0x186b91._0x5e0915,_0x186b91._0x109cb7,0x3d5,_0x186b91._0x54a519)+_0x877d56(0x4d5,_0x186b91._0x1a358f,0x45a,0x3e2)+_0x877d56(0x3eb,_0x186b91._0x9c4d67,0x3bd,_0x186b91._0x3e343d),'bIBTn':function(_0x3549cc,_0x97b338){return _0x3549cc(_0x97b338);},'yksRt':function(_0x4a7037,_0x20568f){return _0x4a7037(_0x20568f);},'GUacV':_0x492a07(_0x186b91._0x26009c,_0x186b91._0x30cdbf,_0x186b91._0x32701b,0x72)+_0x877d56(0x44c,0x4a5,_0x186b91._0x11375e,0x46e)+_0x877d56(_0x186b91._0x4575ca,_0x186b91._0x5c8418,_0x186b91._0x3d505d,0x341),'fTEsA':_0x877d56(_0x186b91._0x11375e,_0x186b91._0x3c3751,_0x186b91._0x29abaa,0x454)+'\x20personal\x20'+_0x492a07(_0x186b91._0x3e52d2,_0x186b91._0x42c43d,_0x186b91._0x1b1c3c,_0x186b91._0x5b07d6)+_0x492a07(-_0x186b91._0x1eabe8,_0x186b91._0x371e81,-_0x186b91._0x5e6615,0x25),'FBuDp':function(_0x152b1a,_0x1743e3){return _0x152b1a(_0x1743e3);},'bCwkG':_0x492a07(-_0x186b91._0x1e6a34,0x5d,-_0x186b91._0x59aa80,-0xf3)+'er\x20to\x20get\x20'+'API\x20token?'+'\x20[Y/n]:\x20','opeYq':function(_0x4b3ffb,_0x1b61c4){return _0x4b3ffb===_0x1b61c4;},'TfQFu':function(_0x13cb78,_0xe88d22){return _0x13cb78===_0xe88d22;},'CgszV':'iCEWM','NgrMF':_0x492a07(0x131,_0x186b91._0x1264b4,_0x186b91._0x136b03,_0x186b91._0x394f6e),'AkTDp':_0x492a07(0x69,_0x186b91._0x51f5da,0x20,_0x186b91._0x47a0f4)+_0x877d56(_0x186b91._0x131332,0x37b,_0x186b91._0x19ac62,0x3ec)+_0x877d56(_0x186b91._0x37360f,0x4b8,_0x186b91._0x113351,0x46c)+'derFlow\x22)','ZCXBL':_0x492a07(_0x186b91._0x46c5bb,_0x186b91._0x57c165,0xf9,0x84)+_0x877d56(0x47e,0x4de,0x4d7,_0x186b91._0x4405cc),'OALME':_0x877d56(_0x186b91._0x7fc733,0x43a,_0x186b91._0x267a9b,_0x186b91._0x283d06)+_0x877d56(_0x186b91._0x6115f6,0x503,0x4ab,_0x186b91._0x1413d2),'wdAHj':'Instructio'+_0x492a07(_0x186b91._0x178e75,_0x186b91._0x38bb1d,_0x186b91._0xe36040,_0x186b91._0x1c6c72),'PQdrh':function(_0x3afeda){return _0x3afeda();},'cGoww':'\x20\x204.\x20Paste'+_0x877d56(_0x186b91._0x361a03,_0x186b91._0x96a234,_0x186b91._0x1d139a,0x3c1),'vZRlh':function(_0x9049ce,_0x32cbf6){return _0x9049ce!==_0x32cbf6;},'IhrbY':_0x492a07(0x35,0x93,0x68,0x3),'WEQrQ':'Get\x20your\x20A'+_0x877d56(0x430,0x476,0x42b,_0x186b91._0x158c79)+'t:','feDMt':'https://id'+_0x492a07(0x9f,-0x21,_0x186b91._0x61ca14,0xd6)+'.com/manag'+'e-profile/'+_0x492a07(_0x186b91._0x135ab1,_0x186b91._0x2d5a5a,_0x186b91._0x1eec69,_0x186b91._0xb65d8c)+_0x877d56(0x51a,_0x186b91._0x148c44,_0x186b91._0x3a8593,0x43b),'FyhTT':function(_0x47f453,_0x15be5d){return _0x47f453(_0x15be5d);},'jrOln':'API\x20Token:'+'\x20','IRkdq':function(_0x25996f,_0x4d1784){return _0x25996f===_0x4d1784;},'CfJYs':'KcTPk','JCUxx':'Step\x204/4:\x20'+_0x877d56(_0x186b91._0x481eba,0x3eb,0x3b3,_0x186b91._0x37e3af)+_0x877d56(0x54b,0x52a,_0x186b91._0x3062af,_0x186b91._0x2aa111),'trYGX':_0x492a07(-_0x186b91._0x473c18,-_0x186b91._0x7e6243,0x1f,-0xdb)+_0x492a07(_0x186b91._0xb7c64,0x115,_0x186b91._0x4477db,0x7e)+'.','UMaZq':function(_0x4854d1,_0x348676,_0x5a6de0,_0x33a3bb){return _0x4854d1(_0x348676,_0x5a6de0,_0x33a3bb);},'oKPDG':_0x877d56(0x48e,_0x186b91._0x282061,_0x186b91._0x329091,0x47c)+'3','Dlmwo':_0x877d56(_0x186b91._0x748974,0x372,_0x186b91._0x304024,0x388)+_0x877d56(0x473,0x435,_0x186b91._0x578e6c,0x426),'cyUZF':_0x492a07(_0x186b91._0xf9a18b,0xd6,_0x186b91._0x127268,_0x186b91._0x29226a)+'ck\x20your\x20cr'+_0x492a07(0xb9,0x8d,0x158,0xd)+_0x877d56(_0x186b91._0xfd7d7,_0x186b91._0x13fb73,0x3dd,_0x186b91._0x2937da)+_0x877d56(_0x186b91._0x195f1c,0x529,0x4ef,0x4ab),'WSxPZ':_0x877d56(_0x186b91._0x34ced0,_0x186b91._0x46ce63,0x3be,0x35d)+_0x492a07(0x136,0x1b5,_0x186b91._0x12afa7,0x108)+_0x492a07(0x7a,0x5b,0x95,-0x3b)+_0x492a07(_0x186b91._0x310e04,0x13c,_0x186b91._0xb7c64,_0x186b91._0x568eff),'cIWUh':'✓\x20JIRA\x20int'+'egration\x20i'+_0x492a07(-0x4,-_0x186b91._0x33bbed,_0x186b91._0x41ea0e,-0x4)+'igured!','WPXME':_0x877d56(0x511,_0x186b91._0x5d2ad3,0x4b5,_0x186b91._0x3ce7b7)+_0x492a07(_0x186b91._0x34f727,_0x186b91._0x1b0788,0x6,-0x8d)+'and\x20look\x20f'+_0x492a07(0x25,-0x91,0x29,0x2a)+_0x877d56(0x2d9,_0x186b91._0x30f4d4,_0x186b91._0x2830ab,0x3da)+'\x22','EGOzu':_0x492a07(_0x186b91._0x15bb56,0xf3,0x57,_0x186b91._0x4f789a),'MrWlq':'Next\x20steps'+':','ctvrT':_0x492a07(_0x186b91._0x14dab2,_0x186b91._0x4e3179,_0x186b91._0x578d4a,0x136)+_0x492a07(0xe5,_0x186b91._0x3e08d4,_0x186b91._0x366bd4,0x12d)+'d','eEHun':'✗\x20Failed\x20t'+'o\x20save\x20con'+_0x492a07(_0x186b91._0x355e2f,0x16,-_0x186b91._0x53a82a,-_0x186b91._0x11056b),'oRxbp':'Error:'};console[_0x492a07(0xac,_0x186b91._0x4800ff,0x153,0x52)](_0x2251aa[_0x877d56(0x4cc,_0x186b91._0x11f95e,_0x186b91._0x15c508,_0x186b91._0x2f44bf)]),console[_0x492a07(_0x186b91._0x18bdff,0xb5,0xad,0x124)](_0x2251aa[_0x492a07(-0x26,-0xdb,-0x8b,0xc)]),console[_0x492a07(0xac,0x76,0x1a,0x5b)](_0x877d56(0x45e,0x50e,0x47e,_0x186b91._0x5c3d62)+_0x492a07(0xc3,0x11a,_0x186b91._0x5d8d3d,_0x186b91._0x9065e3)+_0x877d56(_0x186b91._0x3b8bf0,_0x186b91._0x140974,0x47e,0x49d)+_0x877d56(0x4e6,0x507,_0x186b91._0x1fee4a,_0x186b91._0x470060)),console['log']('');if(!_0x2490c6){const _0x17c4a9=_0x2251aa[_0x877d56(0x462,_0x186b91._0x5d7567,0x44c,0x3ff)][_0x492a07(-0x34,_0x186b91._0x4268b3,-0x86,0x2a)]('|');let _0x17c161=0x2055+0x2601+-0x4656;while(!![]){switch(_0x17c4a9[_0x17c161++]){case'0':console[_0x492a07(0x47,-0x9,0x30,_0x186b91._0x36db84)](_0x2251aa[_0x492a07(_0x186b91._0x38dc30,_0x186b91._0xfc0e28,_0x186b91._0x462eae,0xd2)]);continue;case'1':console[_0x492a07(_0x186b91._0x18bdff,0x129,_0x186b91._0x2d362e,0x92)](_0x2251aa[_0x877d56(0x384,_0x186b91._0x304024,0x406,0x3dc)]);continue;case'2':process[_0x492a07(0x5b,-_0x186b91._0x4e0c68,0xdb,-0x15)](-0xa*0x153+0x174f+-0x10*0xa1);continue;case'3':console[_0x492a07(0xac,0x1d,0xac,_0x186b91._0x19f2f1)]('');continue;case'4':console[_0x492a07(0xac,_0x186b91._0x42c43d,_0x186b91._0xb86bd2,0x138)](_0x2251aa[_0x492a07(_0x186b91._0x55cd1d,0xed,_0x186b91._0x53983e,_0x186b91._0x2085e2)]);continue;case'5':console[_0x877d56(0x44b,_0x186b91._0x48dd51,_0x186b91._0xf978c1,_0x186b91._0xe8b887)](_0x2251aa[_0x877d56(_0x186b91._0x223219,_0x186b91._0x32c6a7,0x401,_0x186b91._0x139606)]);continue;case'6':console['log']('');continue;}break;}}console[_0x492a07(_0x186b91._0x4833bc,_0x186b91._0x408a99,0x168,0x171)](_0x492a07(0x11e,0x197,_0x186b91._0x36bcc4,0x197)+_0x877d56(_0x186b91._0x391673,_0x186b91._0xe21462,_0x186b91._0x5efba5,0x451)+_0x2490c6),console['log']('');try{await _0x1c2414[_0x877d56(_0x186b91._0x363154,_0x186b91._0x1e4021,0x496,_0x186b91._0x363c14)](_0x2490c6);}catch(_0x2b9cbf){_0x2251aa[_0x877d56(0x2d9,0x2e3,_0x186b91._0x3838bf,0x445)]('cNJQh',_0x2251aa[_0x492a07(0x60,0xc,_0x186b91._0x52952e,0x49)])?(_0x3e7eff[_0x877d56(_0x186b91._0x56fcbd,0x34d,0x402,0x43c)]('Error:',_0x2d47a5[_0x877d56(0x2f2,_0x186b91._0x4231f1,_0x186b91._0x53c2f9,0x2cd)]),_0x348ff9[_0x877d56(_0x186b91._0x3e613c,0x444,0x416,_0x186b91._0x53fb2f)](0x22c5+0x1229*0x1+-0x34ed)):(console['error'](_0x492a07(0x45,_0x186b91._0x96b4f2,0x56,_0x186b91._0x277718)+'up\x20path\x20do'+_0x877d56(0x425,_0x186b91._0x2e67af,_0x186b91._0x5e0915,_0x186b91._0x363c14)+_0x877d56(0x3e3,0x393,_0x186b91._0x41a9ef,_0x186b91._0x10b9ff)+_0x2490c6),process['exit'](-0xda5+0xbc*0x1b+-0x71*0xe));}function _0x492a07(_0x522e78,_0x480441,_0x199e83,_0x263231){return _0x195c(_0x522e78- -_0xc4a624._0x48c6bc,_0x199e83);}function _0x877d56(_0xa5c5ed,_0x425ab2,_0x2bef98,_0xda769c){return _0x195c(_0x2bef98-_0x56ded0._0x5c0e0d,_0xda769c);}const _0x19cc9e=_0x5575b5[_0x492a07(-0x12,-0x86,_0x186b91._0x5e388e,-_0x186b91._0x3bd606)](_0x2490c6,_0x2251aa[_0x877d56(_0x186b91._0x3996f0,0x3ea,_0x186b91._0x109cb7,_0x186b91._0x1d89a8)]);let _0x34f876=null;try{const _0x4b2880=await _0x1c2414[_0x492a07(_0x186b91._0x4672aa,-0x1a,-0xd,_0x186b91._0x127268)](_0x19cc9e,_0x492a07(_0x186b91._0x15bb56,0x117,_0x186b91._0x5cf09e,_0x186b91._0x4adb30));_0x34f876=JSON[_0x877d56(0x4b0,_0x186b91._0x1042ed,0x409,0x35a)](_0x4b2880),console[_0x877d56(_0x186b91._0x43986c,0x3f8,0x467,_0x186b91._0x19f52e)](_0x2251aa['wubXh']),console['log']('');}catch{}console['log'](_0x2251aa[_0x492a07(0x6f,_0x186b91._0x3477a1,_0x186b91._0x5f06b7,0x42)]),console[_0x877d56(0x497,0x46b,0x467,0x43e)](_0x2251aa['oviWq']);const _0x3210d1=_0x34f876?.[_0x877d56(0x391,_0x186b91._0x3f4391,_0x186b91._0x52d65b,0x421)]||_0x2251aa['tYRWl'],_0x4f04ee=await _0x2251aa['bIBTn'](prompt,_0x492a07(_0x186b91._0x26beb9,_0x186b91._0x328141,0xda,_0x186b91._0x2d298f)+'URL\x20['+_0x3210d1+_0x877d56(_0x186b91._0x2e915c,0x36d,_0x186b91._0x13fb73,_0x186b91._0x1977d2)),_0x44a574=(_0x4f04ee[_0x877d56(0x588,0x457,_0x186b91._0x50d298,_0x186b91._0x30ca1b)]()||_0x3210d1)['replace'](/\/$/,'');console[_0x877d56(_0x186b91._0x57d27f,_0x186b91._0x409e6f,0x467,_0x186b91._0x57cfe9)](''),console[_0x877d56(_0x186b91._0x8ef675,0x4bb,0x467,0x451)](_0x492a07(-0x45,-0x105,-0xe8,0x10)+_0x877d56(0x35f,0x337,0x398,0x3e8)),console['log'](_0x2251aa['oviWq']);const _0x59a9d9=_0x34f876?.[_0x492a07(_0x186b91._0x572d6c,_0x186b91._0xca2865,0x44,_0x186b91._0x4d9b95)]?.[_0x877d56(_0x186b91._0xfd7d7,0x3e5,0x39e,_0x186b91._0xa6fad7)]||'',_0xbb5d0e=_0x59a9d9?_0x877d56(0x36b,_0x186b91._0x3f76e5,0x3b1,0x3ea)+_0x59a9d9+_0x877d56(0x410,_0x186b91._0x343296,_0x186b91._0x133490,_0x186b91._0x35d5f2):_0x492a07(_0x186b91._0x2e0ee5,_0x186b91._0x20d5df,_0x186b91._0x5ad0e1,-0x54),_0x22230e=await _0x2251aa[_0x877d56(0x435,0x403,0x499,0x547)](prompt,_0xbb5d0e),_0x5f075b=_0x22230e['trim']()||_0x59a9d9;!_0x5f075b&&(console[_0x877d56(_0x186b91._0x53781e,_0x186b91._0x263a03,_0x186b91._0x2dca87,0x3a0)](_0x2251aa[_0x877d56(_0x186b91._0x24e604,_0x186b91._0x5c5632,_0x186b91._0x2f44bf,_0x186b91._0x18c02f)]),process[_0x877d56(_0x186b91._0x165792,0x372,0x416,0x3b5)](-0x433+-0x1fb4*-0x1+-0x1b80*0x1));console[_0x877d56(_0x186b91._0x4c731a,_0x186b91._0x300139,_0x186b91._0x529b53,_0x186b91._0x121684)](''),console[_0x492a07(0xac,_0x186b91._0x4b1681,0xe5,0x107)]('Step\x203/4:\x20'+_0x492a07(0xb5,0x1b,_0x186b91._0x58caac,_0x186b91._0x554be5)+_0x877d56(0x3bd,_0x186b91._0x10cc0b,0x430,_0x186b91._0x30b085)),console[_0x877d56(0x4cd,_0x186b91._0x3afb18,0x467,_0x186b91._0x166af7)](_0x2251aa[_0x492a07(0xd2,_0x186b91._0x13edb8,_0x186b91._0x490a52,0x3d)]),console['log'](_0x2251aa[_0x877d56(0x4fa,_0x186b91._0x59f5bf,0x4b8,0x551)]),console[_0x492a07(0xac,0x5f,_0x186b91._0x122ac5,0x80)]('');const _0x47433f=await _0x2251aa[_0x877d56(0x395,0x34d,_0x186b91._0xe346fa,_0x186b91._0x2ca03f)](prompt,_0x2251aa[_0x492a07(0x23,-0x9b,-_0x186b91._0x4a9101,0xdd)]);if(!_0x47433f['trim']()||_0x2251aa['RjEDf'](_0x47433f[_0x492a07(0xa2,-_0x186b91._0x198271,0x15c,0x79)+'e'](),'y')||_0x2251aa[_0x877d56(0x4e3,_0x186b91._0x2ee4bb,0x4d1,_0x186b91._0x3a2c5c)](_0x47433f[_0x877d56(_0x186b91._0x2b846b,_0x186b91._0x443500,0x45d,0x47c)+'e'](),_0x492a07(0x58,_0x186b91._0x537c8f,-0xb,_0x186b91._0x1c06a8))){if(_0x2251aa[_0x492a07(_0x186b91._0xb2bafc,0x13b,0x189,0x11)](_0x2251aa[_0x492a07(_0x186b91._0x594691,0x8d,0x58,_0x186b91._0x3637de)],_0x2251aa[_0x492a07(-0x21,-0x5f,_0x186b91._0x587a54,-_0x186b91._0x274a96)])){for(const _0x42cc42 of _0x1bae3e){if(_0x42cc42['startsWith']('--setup-pa'+_0x492a07(0xa1,-_0x186b91._0x628ede,_0x186b91._0x46cf3c,0x4b))||_0x42cc42[_0x877d56(0x327,_0x186b91._0x4c5a08,0x3a6,0x32f)](_0x2251aa[_0x877d56(0x401,_0x186b91._0x37316f,0x448,0x461)]))return _0x42cc42[_0x877d56(0x3d9,0x42d,0x387,0x3f0)]('=')[0x8d2+0x4eb*0x3+-0x1792*0x1];}return null;}else{const _0xa90d6f=(_0x877d56(0x486,0x47e,_0x186b91._0x1f0de9,0x507)+_0x492a07(0xcf,_0x186b91._0x48cba0,_0x186b91._0x3637de,_0x186b91._0x312e9))[_0x492a07(-_0x186b91._0x247f56,0x18,0x7b,_0x186b91._0x5811aa)]('|');let _0x157684=0xcc8+-0xf1*-0x9+0x1*-0x1541;while(!![]){switch(_0xa90d6f[_0x157684++]){case'0':console[_0x877d56(0x4de,_0x186b91._0x44ed0f,_0x186b91._0x29dc71,0x4fd)]('');continue;case'1':console[_0x877d56(_0x186b91._0x4533f6,0x3cb,0x467,0x4d1)]('');continue;case'2':console['log'](_0x2251aa[_0x877d56(0x521,0x4a4,0x4a4,0x54e)]);continue;case'3':console[_0x877d56(0x447,_0x186b91._0x37cba8,0x467,_0x186b91._0x5cc9df)](_0x2251aa[_0x877d56(_0x186b91._0x280d51,0x3ff,_0x186b91._0x32d4c9,0x386)]);continue;case'4':console[_0x877d56(0x456,_0x186b91._0x53fb2f,_0x186b91._0x29dc71,_0x186b91._0x4f97c8)](_0x2251aa['OALME']);continue;case'5':console[_0x877d56(_0x186b91._0x574e77,0x484,_0x186b91._0xf978c1,_0x186b91._0x38161d)](_0x877d56(_0x186b91._0x249c73,0x48b,0x3f6,_0x186b91._0x5bd3f4)+_0x492a07(0x33,_0x186b91._0x25acab,-0x41,0x65)+_0x492a07(_0x186b91._0x61777a,0xa8,_0x186b91._0x185e36,0x91));continue;case'6':console[_0x877d56(_0x186b91._0x5a9efa,0x3be,0x467,_0x186b91._0x2f44bf)](_0x2251aa[_0x877d56(0x419,_0x186b91._0x2e9f2c,0x3c7,0x3db)]);continue;case'7':await _0x2251aa['PQdrh'](openTokenPage);continue;case'8':console['log'](_0x2251aa['cGoww']);continue;}break;}}}else{if(_0x2251aa[_0x492a07(0xc1,_0x186b91._0x49e35c,_0x186b91._0xbbcffa,0x73)](_0x877d56(0x415,0x42d,_0x186b91._0x30b1b8,_0x186b91._0x11375e),_0x2251aa['IhrbY'])){_0x4d8d46[_0x492a07(0xac,_0x186b91._0x2a8a81,0x12d,_0x186b91._0x482884)](_0x2251aa['MWRUu']);return;}else console[_0x492a07(0xac,_0x186b91._0x2c956c,_0x186b91._0x7ea876,0x40)](''),console[_0x492a07(_0x186b91._0x18bdff,0x2c,_0x186b91._0x152c09,0x61)](_0x2251aa['WEQrQ']),console[_0x492a07(_0x186b91._0x18bdff,0x16e,_0x186b91._0x31a3ce,_0x186b91._0x41d321)](_0x2251aa['feDMt']),console[_0x492a07(0xac,_0x186b91._0x459d79,_0x186b91._0x277718,_0x186b91._0x2f2c9d)]('');}const _0x499fbe=await _0x2251aa[_0x877d56(_0x186b91._0x436f1f,0x419,_0x186b91._0x5c3d62,0x3c1)](promptSecret,_0x2251aa[_0x492a07(-0x9,0x7e,-0xbd,-0xc0)]);!_0x499fbe[_0x877d56(0x55f,0x5a5,0x4fd,0x58c)]()&&(_0x2251aa[_0x877d56(_0x186b91._0x546c9f,0x383,0x3ae,_0x186b91._0x387953)](_0x2251aa[_0x492a07(0x10b,_0x186b91._0x3f01b5,_0x186b91._0x2d55e9,0x56)],_0x2251aa[_0x877d56(_0x186b91._0x7ef14b,_0x186b91._0x362436,0x4c6,0x41b)])?(console['error'](_0x2251aa[_0x492a07(0x111,_0x186b91._0x520d7e,_0x186b91._0x2c8ae9,_0x186b91._0x5b0e54)]),process[_0x877d56(0x49c,_0x186b91._0x24c0e4,0x416,_0x186b91._0x390d6f)](-0x1b88+-0x455*-0x4+0xa35)):(_0x318262['error'](_0x2251aa[_0x877d56(_0x186b91._0x54b531,0x4b2,0x4cc,_0x186b91._0x2b132e)]),_0x5c33e1['exit'](-0x11a7*0x1+-0x14fb+0x15*0x1d7)));console['log'](''),console[_0x492a07(_0x186b91._0x52b6c2,0x8e,_0x186b91._0x504d67,0x5b)](_0x2251aa[_0x877d56(_0x186b91._0xf3b91b,0x47b,_0x186b91._0x474223,_0x186b91._0x4a61fb)]),console['log'](_0x2251aa[_0x492a07(_0x186b91._0x3c02be,_0x186b91._0x470239,_0x186b91._0x2f5dc5,_0x186b91._0x40014a)]),console[_0x877d56(0x4e1,_0x186b91._0x5d2a3f,_0x186b91._0x5139e1,0x4b6)](_0x2251aa[_0x877d56(_0x186b91._0x29faf3,0x42d,_0x186b91._0x1d165a,0x44b)]);const _0x4d076e=await _0x2251aa[_0x877d56(_0x186b91._0x2bb2a0,_0x186b91._0x10b9ff,_0x186b91._0xbd0ba9,_0x186b91._0x3f2d5c)](testJiraConnection,_0x44a574,_0x5f075b,_0x499fbe[_0x492a07(_0x186b91._0x31ebd2,_0x186b91._0x369690,_0x186b91._0x508640,_0x186b91._0x37b19e)]());if(!_0x4d076e[_0x492a07(_0x186b91._0x50212f,_0x186b91._0x176b8d,_0x186b91._0x38dc30,-_0x186b91._0x5d1034)]){const _0x541932=_0x2251aa[_0x877d56(0x39c,0x45c,_0x186b91._0x4f62d8,_0x186b91._0x4bb7b8)]['split']('|');let _0x59fb01=0x152a+0x1*0x29b+0x17c5*-0x1;while(!![]){switch(_0x541932[_0x59fb01++]){case'0':console['error']('');continue;case'1':console[_0x877d56(0x352,0x3d5,_0x186b91._0x2c5316,_0x186b91._0x5b0da5)]('');continue;case'2':console[_0x492a07(0x47,0x8,0x2b,_0x186b91._0x340b4f)](_0x2251aa[_0x877d56(_0x186b91._0x187021,0x407,0x4c5,0x43f)]);continue;case'3':process[_0x877d56(0x427,_0x186b91._0x10b9ff,_0x186b91._0x3a2c5c,0x462)](-0x1ce8+0x21d*0xb+0x1d*0x32);continue;case'4':console[_0x877d56(0x467,0x480,0x402,_0x186b91._0x32f530)](_0x877d56(0x4e1,_0x186b91._0x3cef6f,_0x186b91._0x2b846b,_0x186b91._0x46d38d),_0x4d076e[_0x492a07(_0x186b91._0x2d0381,-_0x186b91._0x4268b3,-0x2a,-0x50)]);continue;case'5':console[_0x492a07(0x47,_0x186b91._0x212f38,0x31,-0x66)](_0x2251aa['cyUZF']);continue;}break;}}console[_0x877d56(0x466,0x3f0,0x467,0x44f)]('✓\x20Connecte'+_0x492a07(0x94,0x131,0x2a,0x3e)+'ully\x20as\x20'+(_0x4d076e[_0x877d56(0x30c,0x363,_0x186b91._0xcc5e9e,_0x186b91._0x37360f)]['displayNam'+'e']||_0x5f075b)),console['log']('');const _0x33ac12={'enabled':!![],'baseUrl':_0x44a574,'auth':{'email':_0x5f075b,'apiToken':_0x499fbe['trim']()}};try{const _0x28b654=_0x2251aa['WSxPZ'][_0x492a07(-_0x186b91._0x247f56,-_0x186b91._0x301aaa,_0x186b91._0x58eadc,_0x186b91._0x35fd14)]('|');let _0x5a9970=0x1443+0x22b5+0x8*-0x6df;while(!![]){switch(_0x28b654[_0x5a9970++]){case'0':console[_0x877d56(_0x186b91._0x2c9b09,_0x186b91._0x311838,0x467,0x408)]('Saved\x20to:\x20'+_0x19cc9e);continue;case'1':console[_0x492a07(_0x186b91._0x16ad3b,_0x186b91._0x431e84,_0x186b91._0x3d5553,_0x186b91._0x25e669)]('');continue;case'2':console[_0x877d56(_0x186b91._0xacf804,_0x186b91._0x3a8e7d,_0x186b91._0x477638,0x4af)]('');continue;case'3':console[_0x492a07(_0x186b91._0x52b6c2,_0x186b91._0x2bd831,0x15f,_0x186b91._0x5019bc)](_0x2251aa[_0x492a07(_0x186b91._0x7fd7e3,_0x186b91._0x407ff0,-0x44,0xa8)]);continue;case'4':console['log']('');continue;case'5':console['log'](_0x2251aa[_0x877d56(_0x186b91._0x48cfee,_0x186b91._0x220153,_0x186b91._0x15c508,_0x186b91._0x4cedb6)]);continue;case'6':console['log'](_0x2251aa[_0x492a07(-_0x186b91._0x340b4f,_0x186b91._0x1b2504,_0x186b91._0x137840,0x6b)]);continue;case'7':await _0x1c2414[_0x877d56(0x403,_0x186b91._0x113e6c,_0x186b91._0x1a358f,_0x186b91._0x343296)](_0x19cc9e,JSON['stringify'](_0x33ac12,null,-0x37e+-0x1*0x2203+0xc81*0x3),_0x2251aa[_0x877d56(_0x186b91._0x36d6a7,_0x186b91._0x295d69,_0x186b91._0x166af7,0x507)]);continue;case'8':console[_0x877d56(0x49a,_0x186b91._0x4ccbcb,0x467,_0x186b91._0x2c0cb0)](_0x2251aa[_0x492a07(0x6c,_0x186b91._0x49cfbf,_0x186b91._0x1949c8,0xd5)]);continue;case'9':console['log']('');continue;case'10':console[_0x877d56(_0x186b91._0x1c41f4,0x51a,_0x186b91._0xf978c1,_0x186b91._0x46c711)](_0x877d56(_0x186b91._0x57c342,0x461,_0x186b91._0x5e7927,0x48e)+'\x20will\x20auto'+'matically\x20'+_0x492a07(_0x186b91._0x2a6b91,0x131,0xb2,_0x186b91._0x4f25b4)+_0x492a07(_0x186b91._0xe1ac6f,-_0x186b91._0x543dc5,0x41,0x33)+_0x492a07(_0x186b91._0x32546d,0x57,_0x186b91._0xfb9ea1,_0x186b91._0x26f23a));continue;case'11':console[_0x877d56(_0x186b91._0x2d5f2d,_0x186b91._0x57cfe9,_0x186b91._0x5139e1,0x4a8)](_0x2251aa[_0x492a07(-0x2b,_0x186b91._0x36db84,-_0x186b91._0x2d298f,_0x186b91._0x49cfbf)]);continue;case'12':console[_0x492a07(0xac,_0x186b91._0x5b458b,_0x186b91._0x539161,_0x186b91._0x10f709)](_0x492a07(_0x186b91._0x52f390,0x62,_0x186b91._0x4b521f,_0x186b91._0x56ee57)+_0x492a07(_0x186b91._0x1d7429,0x92,_0x186b91._0x508640,0x99)+_0x492a07(_0x186b91._0x277718,0x100,0x99,0xc4)+'server\x20res'+_0x877d56(0x3cd,0x496,0x442,_0x186b91._0x34cf66));continue;case'13':console['log'](_0x877d56(_0x186b91._0x67bdcf,_0x186b91._0x2c9d92,0x47e,0x52b)+'══════════'+_0x492a07(_0x186b91._0x56f64c,_0x186b91._0x5b1c10,_0x186b91._0x3311c3,0x14e)+'═════════');continue;case'14':console[_0x492a07(0xac,_0x186b91._0x2791d9,_0x186b91._0x4c313,0x80)]('');continue;}break;}}catch(_0x5e800d){console['error'](_0x2251aa[_0x877d56(0x3a8,_0x186b91._0x4b303c,_0x186b91._0x184be7,_0x186b91._0xd4b1e0)]),console['error'](''),console['error'](_0x2251aa[_0x492a07(0x138,0x96,0xca,_0x186b91._0x275874)],_0x5e800d[_0x877d56(0x405,0x312,0x388,_0x186b91._0x472008)]),process[_0x877d56(_0x186b91._0x17657f,0x476,_0x186b91._0x4ca980,_0x186b91._0x2c5316)](0x3*0x65d+0x1*0x1bd3+0x2ee9*-0x1);}}async function status(_0x25f361){const _0x5e91b5={_0x285802:0xe5,_0x434842:0x544,_0x1fe834:0x5a0,_0x568a6a:0x5d8,_0x2aa949:0x60a,_0x5951f6:0x651,_0x1daebb:0x610,_0x9f8787:0x7,_0x25dcd4:0x548,_0x237a79:0x5d6,_0x249543:0x5ae,_0x1773ac:0x3a,_0x5471d0:0x53,_0x17a96e:0x53b,_0x5ffd37:0x58f,_0x585143:0x5c5,_0x31dc60:0x62c,_0x5690bd:0x571,_0x579ef4:0x602,_0x19eaf3:0x509,_0x32c11f:0x5dc,_0x502714:0x4a1,_0x36ad0b:0x144,_0xf66094:0x73,_0xe83f75:0x4db,_0x78352b:0x56f,_0x392885:0x53f,_0x1e43c3:0x54c,_0x1e6c74:0xa1,_0x2d38e:0x61,_0x350128:0x524,_0xdc53fc:0x557,_0xc0068:0x5b2,_0x42d1c3:0x4a5,_0x38c2f1:0x508,_0x257dc0:0x1a,_0x2c9f1b:0x1d,_0x1cf122:0x586,_0xedb36:0x5ba,_0x131ac5:0x6d,_0x6051c4:0x106,_0x4f1616:0x2b,_0x46598a:0x665,_0x1d99a9:0x8f,_0x2d970e:0xcb,_0x1b4d78:0x10e,_0x49b39b:0xf2,_0x5bff6a:0x40,_0x5b2e67:0xcb,_0x35b4a6:0x15,_0x176cce:0x81,_0x4842df:0x54,_0x195dfe:0xcc,_0x413b52:0x479,_0x202725:0xe8,_0x3994eb:0x63,_0x3362ff:0x26,_0x45a103:0xc9,_0x642035:0x7,_0x3b39d4:0xa5,_0x43c0ed:0x47b,_0x242f07:0x4cf,_0x41deb4:0xf8,_0x590835:0xa7,_0x21c654:0xa,_0x367342:0x5cb,_0x37969f:0x5fe,_0x13641c:0x635,_0x475fbb:0x58d,_0x111bac:0x26,_0x44f7a2:0x3e,_0xd2cb95:0x46,_0x3b0ff2:0x537,_0x2f8ff8:0x53e,_0x38ce29:0x58d,_0x12aed2:0x656,_0x5d03b2:0x5f4,_0x116633:0x23,_0x27cc96:0xa0,_0x2e251f:0x4e,_0x2b1d7f:0x573,_0xbe601d:0x56f,_0xbb8dde:0x89,_0x22c630:0xc3,_0x118ada:0x58,_0x43248a:0x56d,_0x4ad392:0x5aa,_0x3880ff:0x58c,_0x5d0a76:0x5b7,_0x21a79c:0xdc,_0x2a20c0:0x4a,_0x564191:0xbd,_0x17bd7c:0x21,_0x50a9d2:0x43,_0x2a6a42:0x588,_0x15dd0b:0x5e9,_0x8c81b3:0x562,_0x4fdd80:0x61e,_0x24fe88:0x5e,_0x28645f:0x61f,_0x265965:0x585,_0x551b70:0x502,_0x5649c9:0x609,_0x19db3c:0x4e4,_0x122d01:0x538,_0x659404:0x561,_0x1a5d51:0x5ed,_0x196ed6:0x698,_0x42b9d5:0xbb,_0x3e290f:0x72,_0x12fcc8:0x94,_0x538e1c:0x58e,_0x14f7aa:0x9e,_0x2519db:0x61,_0x5abeaa:0x22,_0x1b7f5e:0x654,_0x142078:0x75,_0x2ec05b:0x50,_0x9e081c:0x4b7,_0x4733e4:0x511,_0x51bc70:0x5c8,_0x2a1961:0x414,_0x450e8a:0x428,_0x38c8a9:0xac,_0x33af38:0xad,_0x39ec85:0x483},_0x19ab7d={_0x66fa1f:0x2ad},_0x334484={};_0x334484['nNTcs']=_0xd29e90(-0xb1,-0x88,-_0x5e91b5._0x285802,-0x129)+_0x4f9137(0x52f,_0x5e91b5._0x434842,_0x5e91b5._0x1fe834,_0x5e91b5._0x568a6a)+_0x4f9137(_0x5e91b5._0x2aa949,_0x5e91b5._0x5951f6,0x621,_0x5e91b5._0x1daebb);function _0xd29e90(_0x44735f,_0x410483,_0x4a8ddc,_0x276fd3){return _0x195c(_0x410483- -_0x19ab7d._0x66fa1f,_0x4a8ddc);}_0x334484[_0xd29e90(-0x85,-0xa5,_0x5e91b5._0x9f8787,-0xdd)]=_0x4f9137(0x68d,_0x5e91b5._0x25dcd4,0x58e,_0x5e91b5._0x237a79)+'-server\x20ji'+_0x4f9137(0x5a9,0x631,_0x5e91b5._0x249543,0x5b8)+'\x20--setup-p'+_0xd29e90(-_0x5e91b5._0x1773ac,-0x96,-_0x5e91b5._0x5471d0,-0x3a)+'to/setup',_0x334484['czmwb']=_0x4f9137(_0x5e91b5._0x17a96e,0x62d,0x5d3,_0x5e91b5._0x5ffd37),_0x334484[_0x4f9137(0x5ab,_0x5e91b5._0x585143,_0x5e91b5._0x31dc60,_0x5e91b5._0x5690bd)]=_0x4f9137(0x4d9,0x498,_0x5e91b5._0x579ef4,0x54f),_0x334484[_0x4f9137(_0x5e91b5._0x19eaf3,_0x5e91b5._0x32c11f,_0x5e91b5._0x502714,0x561)]=_0xd29e90(-_0x5e91b5._0x36ad0b,-0x88,-_0x5e91b5._0xf66094,-0x13)+'s:\x20Configu'+'red\x20✓',_0x334484[_0x4f9137(0x51d,0x599,_0x5e91b5._0xe83f75,_0x5e91b5._0x78352b)]='Not\x20set',_0x334484[_0x4f9137(0x4a6,_0x5e91b5._0x392885,0x4e9,_0x5e91b5._0x1e43c3)]=function(_0x2e122a,_0x11d9ab){return _0x2e122a>_0x11d9ab;},_0x334484[_0xd29e90(-0x5c,-_0x5e91b5._0x1e6c74,-_0x5e91b5._0x2d38e,-0x51)]=function(_0x2863a3,_0x3b3cd4){return _0x2863a3-_0x3b3cd4;},_0x334484[_0x4f9137(0x50e,0x557,_0x5e91b5._0x350128,_0x5e91b5._0xdc53fc)]=_0x4f9137(_0x5e91b5._0xc0068,_0x5e91b5._0x42d1c3,0x4a6,_0x5e91b5._0x38c2f1),_0x334484[_0xd29e90(_0x5e91b5._0x257dc0,-0x4e,-0xe6,_0x5e91b5._0x2c9f1b)]=function(_0x2d3af5,_0x2c0924){return _0x2d3af5===_0x2c0924;};function _0x4f9137(_0x1229ac,_0x358f52,_0x5c6659,_0x594b04){return _0x195c(_0x594b04-0x2ba,_0x5c6659);}_0x334484['heidp']=_0x4f9137(_0x5e91b5._0x1cf122,_0x5e91b5._0xedb36,0x4d4,0x52e),_0x334484[_0xd29e90(0x4f,-_0x5e91b5._0x131ac5,-_0x5e91b5._0x6051c4,_0x5e91b5._0x4f1616)]=_0x4f9137(0x548,0x516,_0x5e91b5._0x46598a,0x5d6)+_0xd29e90(-_0x5e91b5._0x1d99a9,-0xa8,-0xb9,-_0x5e91b5._0x2d970e)+_0xd29e90(0xe4,0x51,_0x5e91b5._0x1b4d78,_0x5e91b5._0x49b39b),_0x334484[_0xd29e90(-0x29,_0x5e91b5._0x5bff6a,_0x5e91b5._0x5b2e67,-0x79)]=function(_0x2b51fc,_0xfc917){return _0x2b51fc!==_0xfc917;},_0x334484[_0xd29e90(_0x5e91b5._0x35b4a6,_0x5e91b5._0x176cce,0xfb,0x7)]=_0xd29e90(-_0x5e91b5._0x4842df,0x4d,_0x5e91b5._0x195dfe,-0x32),_0x334484[_0xd29e90(-0xc,_0x5e91b5._0x131ac5,0x4b,0xa6)]='TqmHW';const _0x508afb=_0x334484;if(!_0x25f361){console['log'](_0x508afb[_0x4f9137(0x5f5,_0x5e91b5._0x413b52,0x531,0x535)]),console[_0xd29e90(-0x4f,0x26,_0x5e91b5._0x202725,-_0x5e91b5._0x3994eb)](''),console[_0xd29e90(0x69,_0x5e91b5._0x3362ff,0x7,_0x5e91b5._0x45a103)](_0x508afb[_0xd29e90(_0x5e91b5._0x642035,-_0x5e91b5._0x3b39d4,-0xae,-0x8a)]);return;}const _0x5a7458=_0x5575b5[_0x4f9137(0x507,0x4e8,_0x5e91b5._0x43c0ed,_0x5e91b5._0x242f07)](_0x25f361,_0x508afb['czmwb']);try{const _0x18d5ee=await _0x1c2414[_0xd29e90(-0x126,-_0x5e91b5._0xf66094,-_0x5e91b5._0x41deb4,-_0x5e91b5._0x590835)](_0x5a7458,_0x508afb[_0xd29e90(0xab,_0x5e91b5._0x21c654,0xa7,0x1d)]),_0x273605=JSON['parse'](_0x18d5ee);console[_0x4f9137(_0x5e91b5._0x367342,_0x5e91b5._0x37969f,_0x5e91b5._0x13641c,_0x5e91b5._0x475fbb)](_0x508afb['iqfgG']),console[_0xd29e90(0x82,_0x5e91b5._0x111bac,_0x5e91b5._0x44f7a2,-_0x5e91b5._0xd2cb95)](''),console[_0x4f9137(0x58a,_0x5e91b5._0x3b0ff2,0x58e,0x58d)]('\x20\x20Base\x20URL'+':\x20'+_0x273605[_0x4f9137(0x5d8,0x4f4,0x57a,_0x5e91b5._0x2f8ff8)]),console[_0x4f9137(_0x5e91b5._0x242f07,0x4da,0x5b4,_0x5e91b5._0x38ce29)](_0x4f9137(0x5f2,0x636,_0x5e91b5._0x12aed2,_0x5e91b5._0x5d03b2)+'\x20\x20'+(_0x273605[_0xd29e90(-_0x5e91b5._0x116633,0x7f,_0x5e91b5._0x27cc96,_0x5e91b5._0x2e251f)]?.[_0xd29e90(-0x9e,-0xa3,-0xb9,-_0x5e91b5._0x590835)]||_0x508afb[_0x4f9137(_0x5e91b5._0x2b1d7f,0x568,0x5c4,_0x5e91b5._0xbe601d)]));const _0x471b27=_0x273605[_0xd29e90(_0x5e91b5._0xbb8dde,0x7f,_0x5e91b5._0x22c630,_0x5e91b5._0x118ada)]?.[_0x4f9137(_0x5e91b5._0x43248a,_0x5e91b5._0x4ad392,0x502,_0x5e91b5._0x3880ff)]||'',_0x4d9309=_0x508afb[_0x4f9137(_0x5e91b5._0x5d0a76,_0x5e91b5._0xedb36,0x5a5,_0x5e91b5._0x1e43c3)](_0x471b27[_0xd29e90(_0x5e91b5._0x21a79c,_0x5e91b5._0x2a20c0,_0x5e91b5._0x564191,0x8b)],-0x1196+-0x137*-0xd+-0x43*-0x7)?_0x471b27[_0xd29e90(-0x8b,_0x5e91b5._0x17bd7c,0x44,_0x5e91b5._0x50a9d2)](-0x5*-0x2df+-0x131*-0x13+-0x24fe,-0x1d64+-0x61d*0x3+-0x1*-0x2fc3)+_0x4f9137(0x4c2,0x49f,0x506,0x543)+_0x471b27[_0x4f9137(0x55f,0x4cd,0x502,_0x5e91b5._0x2a6a42)](_0x508afb['ZQaLf'](_0x471b27[_0x4f9137(_0x5e91b5._0x15dd0b,_0x5e91b5._0x8c81b3,_0x5e91b5._0x4fdd80,0x5b1)],-0x164+0x370*0xb+-0x2464)):_0x471b27?'*'['repeat'](_0x471b27[_0x4f9137(0x5d2,0x54b,0x5f5,0x5b1)]):_0x508afb[_0xd29e90(0x40,0x8,-0x7b,-_0x5e91b5._0x24fe88)];console['log']('\x20\x20Token:\x20\x20'+'\x20\x20'+_0x4d9309),console[_0x4f9137(_0x5e91b5._0x28645f,0x530,0x613,_0x5e91b5._0x38ce29)](_0xd29e90(-0xfc,-0x69,0x50,-0xd8)+'\x20\x20'+(_0x273605[_0x4f9137(0x4b6,_0x5e91b5._0x265965,0x512,_0x5e91b5._0x551b70)]?_0x508afb['FyQTK']:'No')),console['log'](''),console[_0x4f9137(_0x5e91b5._0x5649c9,_0x5e91b5._0x19db3c,0x60b,0x58d)](_0x4f9137(0x557,_0x5e91b5._0x122d01,_0x5e91b5._0x659404,_0x5e91b5._0x1a5d51)+_0x4f9137(_0x5e91b5._0x196ed6,0x632,0x63d,0x604)+_0x5a7458);}catch(_0x4920a8){if(_0x508afb['ttAiS'](_0x4920a8[_0xd29e90(-0x8b,-_0x5e91b5._0x42b9d5,-_0x5e91b5._0x3e290f,-0x11e)],_0x508afb[_0xd29e90(0xed,0x54,0x15,_0x5e91b5._0x12fcc8)]))console['log'](_0x508afb['nNTcs']),console[_0x4f9137(0x4ee,0x5dc,_0x5e91b5._0x538e1c,0x58d)](''),console[_0xd29e90(_0x5e91b5._0x14f7aa,0x26,-_0x5e91b5._0x2519db,-0x96)](_0x508afb['EgAjj']);else{if(_0x508afb[_0xd29e90(0x74,_0x5e91b5._0x5bff6a,_0x5e91b5._0x5abeaa,-0x15)](_0x508afb[_0x4f9137(0x5f3,0x69d,0x69a,0x5e8)],_0x508afb[_0x4f9137(0x574,_0x5e91b5._0x1b7f5e,0x643,0x5d4)]))console[_0xd29e90(-0x87,-0x3f,_0x5e91b5._0x142078,-_0x5e91b5._0x2ec05b)](_0x4f9137(0x598,0x520,0x500,0x507)+_0x4f9137(0x50c,_0x5e91b5._0x9e081c,_0x5e91b5._0x4733e4,0x4cb)+'onfigurati'+_0x4f9137(0x5dc,_0x5e91b5._0x51bc70,0x5f2,_0x5e91b5._0x37969f),_0x4920a8[_0x4f9137(_0x5e91b5._0x2a1961,_0x5e91b5._0x450e8a,0x49a,0x4ae)]);else{const _0x170d22={};return _0x170d22[_0xd29e90(-_0x5e91b5._0x38c8a9,-0x1e,-_0x5e91b5._0x33af38,0xb)]=![],_0x170d22['error']=_0x5ce237[_0x4f9137(0x49e,_0x5e91b5._0x39ec85,0x469,0x4ae)],_0x170d22;}}}}async function disconnect(_0xc66759){const _0x26d77f={_0x48d458:0x15,_0x27626c:0x123,_0x4729ec:0x6,_0x17ee9a:0x2e,_0x135d2d:0xde,_0x5b33ad:0x51,_0x387ad6:0x24,_0x271d98:0x53,_0x39bce4:0x19,_0xb9ac7:0x146,_0x3495fb:0x84,_0x45466a:0x86,_0x14c764:0xc5,_0x4813ca:0x18,_0x460f52:0xec,_0x5e86c8:0x117,_0x4fe6fa:0x59,_0x1ce61c:0x36,_0x569b9d:0x77,_0x32444b:0x9,_0x5413d3:0xb7,_0x2e1b55:0xa9,_0x13199f:0xe3,_0x87b517:0xb0,_0x2f83b0:0x3e,_0x695481:0x4a,_0x1860bf:0x157,_0x1acf50:0x57,_0x2b18cb:0x137,_0x389a24:0xba,_0x1ddf5c:0x1e,_0x3c33ea:0x8f,_0x47bf01:0xb0,_0x500ce9:0x47,_0x475db0:0xc0,_0x17d692:0x82,_0x5a9d6a:0x5,_0x370c10:0x73,_0x4ccee2:0xb5,_0x581f50:0x93,_0x2ba0b3:0x7f,_0x5ce212:0x1d9,_0x2ea6dd:0x1da,_0x2b9456:0x153,_0x4e9f82:0xb1,_0x44afd0:0x60,_0xfd57b8:0x47,_0x3ec658:0x1c,_0x97486a:0x8,_0x2d07bd:0x80,_0x1e91cd:0x1bb,_0x2eba60:0x1d1,_0x154701:0x2b,_0x299a02:0x77,_0x4b968f:0x30,_0x2e09df:0x5a,_0x3638ea:0x3c,_0x5a8ba5:0x90,_0x4be142:0x7b,_0x2e19fc:0x41,_0x1dec94:0x48,_0x1a3c26:0x97,_0x31c7ea:0x5b,_0x1ae913:0x47,_0x2b2132:0xe4,_0x3f2c98:0xb6,_0x294c48:0xfd,_0x213e13:0x6c,_0x40de10:0x13,_0x478d61:0xf6,_0x6b2e3c:0x3d,_0x345ef1:0xc1,_0x2fd24d:0x14f,_0x970a0b:0x1ea,_0x39e5da:0xfa,_0x4a3bd4:0x137,_0x117a87:0x11c,_0x23190e:0xdb,_0x4ff67e:0x90,_0x2cb4c2:0xd4,_0x2dd318:0x2f,_0x3749ee:0xb6,_0x25e425:0x119,_0x286565:0xf0,_0x5579e1:0x49,_0x410911:0x68,_0x5b6a10:0x3b,_0x1204ef:0x2c,_0x23ee9c:0x4,_0x1c9f6d:0x152,_0x11a928:0x1ff,_0x2d0730:0xbd,_0x2d7ce4:0x140,_0x576e7e:0x5e,_0x75bb22:0x171,_0x13e29f:0xe7,_0x1815bb:0xa2,_0x399991:0x16e,_0x3e7dd5:0x178,_0x511ee1:0xf7,_0x121fcc:0x1be,_0x4d87f2:0xad,_0x52ae11:0x64,_0x192a61:0xb7,_0x3d1b83:0x82,_0x545d2d:0xce,_0x22d17c:0x52,_0x2388a6:0xb2,_0x1caa11:0x15b,_0x20fb20:0x122,_0x4744bf:0xb4},_0x500b6e={};_0x500b6e[_0xb3f6f8(_0x26d77f._0x48d458,0x82,0xc6,_0x26d77f._0x27626c)]=_0xb3f6f8(-_0x26d77f._0x4729ec,0x66,0x2c,0x4b)+_0xb3f6f8(-_0x26d77f._0x17ee9a,0x88,0x70,0x81)+_0x257f16(0xf5,0xa2,_0x26d77f._0x135d2d,_0x26d77f._0x5b33ad),_0x500b6e['lvqPy']=_0x257f16(_0x26d77f._0x387ad6,_0x26d77f._0x271d98,0x40,0xbe)+_0xb3f6f8(0x173,0xce,_0x26d77f._0x39bce4,_0x26d77f._0xb9ac7)+'p\x20path\x20con'+_0xb3f6f8(_0x26d77f._0x3495fb,_0x26d77f._0x45466a,_0x26d77f._0x14c764,-_0x26d77f._0x4813ca),_0x500b6e[_0xb3f6f8(_0x26d77f._0x460f52,_0x26d77f._0x5e86c8,0x105,_0x26d77f._0x4fe6fa)]=function(_0x51e487,_0x17fd35){return _0x51e487!==_0x17fd35;},_0x500b6e[_0x257f16(_0x26d77f._0x1ce61c,_0x26d77f._0x569b9d,0xa,-0x3e)]='mJxQa',_0x500b6e['DvpdZ']=_0x257f16(-0x54,-_0x26d77f._0x32444b,0x86,_0x26d77f._0x5413d3)+_0x257f16(0x15,0xb4,_0x26d77f._0x2e1b55,0x14)+'server\x20jir'+_0xb3f6f8(0x196,_0x26d77f._0x13199f,_0x26d77f._0x87b517,0x3f),_0x500b6e[_0xb3f6f8(_0x26d77f._0x2f83b0,_0x26d77f._0x695481,0x22,-0x23)]=function(_0x29c9b2,_0x3da1ed){return _0x29c9b2===_0x3da1ed;},_0x500b6e[_0x257f16(0xa6,0x14f,_0x26d77f._0x1860bf,0x115)]=_0xb3f6f8(-0x40,_0x26d77f._0x1acf50,0xb6,0x54),_0x500b6e[_0xb3f6f8(0x100,_0x26d77f._0x2b18cb,_0x26d77f._0x389a24,0x144)]=function(_0x4b3596,_0x1063c3){return _0x4b3596===_0x1063c3;},_0x500b6e[_0xb3f6f8(-0xc5,-_0x26d77f._0x1ddf5c,-_0x26d77f._0x3c33ea,0x31)]=_0x257f16(_0x26d77f._0x47bf01,-0x1,_0x26d77f._0x500ce9,_0x26d77f._0x475db0),_0x500b6e[_0xb3f6f8(-_0x26d77f._0x17d692,_0x26d77f._0x5a9d6a,-_0x26d77f._0x370c10,0xc6)]=_0xb3f6f8(_0x26d77f._0x4ccee2,_0x26d77f._0x581f50,_0x26d77f._0x2ba0b3,0x145);function _0xb3f6f8(_0x16988f,_0x1c4dd1,_0x10a123,_0x58a266){return _0x195c(_0x1c4dd1- -0x21d,_0x10a123);}_0x500b6e[_0xb3f6f8(0xa7,0x12a,_0x26d77f._0x5ce212,_0x26d77f._0x2ea6dd)]=_0x257f16(0x1e2,_0x26d77f._0x2b9456,0x199,0x1aa);const _0xb7d246=_0x500b6e;!_0xc66759&&(console[_0xb3f6f8(0x0,_0x26d77f._0x5b33ad,_0x26d77f._0x4e9f82,-0x12)](_0xb7d246[_0xb3f6f8(0x2d,0xa3,0x51,_0x26d77f._0x44afd0)]),process[_0x257f16(0x9b,0x96,0x88,_0x26d77f._0xfd57b8)](0x4aa+0xea2*-0x2+0x189b*0x1));const _0x3c4728=_0x5575b5[_0xb3f6f8(_0x26d77f._0x3ec658,-_0x26d77f._0x97486a,-0x65,_0x26d77f._0x2d07bd)](_0xc66759,'jira.json');function _0x257f16(_0x489fd2,_0x5c3ff6,_0x513edb,_0x142bf4){return _0x195c(_0x5c3ff6- -0x1ec,_0x142bf4);}try{_0xb7d246[_0x257f16(0x1ba,0x148,_0x26d77f._0x1e91cd,_0x26d77f._0x2eba60)](_0xb7d246[_0x257f16(-_0x26d77f._0x154701,_0x26d77f._0x299a02,_0x26d77f._0x4b968f,0xbf)],_0x257f16(0xa7,0x1b,0x5f,_0x26d77f._0x2e09df))?_0x35b945='xdg-open\x20\x22'+_0x5150e2+'\x22':(await _0x1c2414[_0x257f16(_0x26d77f._0x3638ea,0x9e,_0x26d77f._0x5a8ba5,_0x26d77f._0x4be142)](_0x3c4728),console['log'](_0xb3f6f8(-_0x26d77f._0x2e19fc,-0x22,-0x1a,-_0x26d77f._0x1dec94)+_0xb3f6f8(0xb2,0x26,-_0x26d77f._0x1a3c26,-0x9)+_0x257f16(-_0x26d77f._0x31c7ea,0x63,-_0x26d77f._0x1ae913,_0x26d77f._0x2b2132)),console[_0xb3f6f8(-0x2,_0x26d77f._0x3f2c98,0x155,_0x26d77f._0x294c48)](''),console['log'](_0xb7d246[_0xb3f6f8(0x6c,0x28,_0x26d77f._0x213e13,_0x26d77f._0x40de10)]));}catch(_0x4ef346){_0xb7d246[_0x257f16(0x13a,0x7b,_0x26d77f._0x478d61,0x5f)](_0x4ef346[_0x257f16(-0xb5,_0x26d77f._0x4729ec,-_0x26d77f._0x3c33ea,_0x26d77f._0x6b2e3c)],_0xb7d246[_0x257f16(_0x26d77f._0x345ef1,_0x26d77f._0x2fd24d,_0x26d77f._0x970a0b,_0x26d77f._0x39e5da)])?_0xb7d246[_0xb3f6f8(0xf7,_0x26d77f._0x4a3bd4,_0x26d77f._0x117a87,_0x26d77f._0x23190e)](_0xb7d246[_0xb3f6f8(0x55,-0x1e,0x84,-0x57)],_0xb7d246[_0x257f16(0x7a,0x36,_0x26d77f._0x4ff67e,_0x26d77f._0x13199f)])?(_0x308b20[_0x257f16(_0x26d77f._0x47bf01,0xe7,_0x26d77f._0x2cb4c2,0x147)](_0xb7d246[_0x257f16(0x149,0xb3,0x15a,_0x26d77f._0x2dd318)]),_0x3958e8[_0xb3f6f8(0xff,_0x26d77f._0x3749ee,_0x26d77f._0x25e425,0x13a)](_0x257f16(_0x26d77f._0x286565,_0x26d77f._0x5579e1,-0x2e,-_0x26d77f._0x48d458)+(_0x576e73[_0x257f16(-_0x26d77f._0x410911,_0x26d77f._0x5b6a10,-_0x26d77f._0x1204ef,-_0x26d77f._0x23ee9c)][_0x257f16(0xdd,_0x26d77f._0x1c9f6d,0x1dd,_0x26d77f._0x11a928)+'e']||_0x2afb94[_0x257f16(_0x26d77f._0x2d0730,_0x26d77f._0x2d7ce4,0x198,0x89)][_0xb3f6f8(_0x26d77f._0x576e7e,-_0x26d77f._0x40de10,_0x26d77f._0x1acf50,-0xce)])),_0x5c3787[_0x257f16(_0x26d77f._0x75bb22,_0x26d77f._0x13e29f,_0x26d77f._0x1815bb,_0x26d77f._0x399991)]('')):console[_0xb3f6f8(0xa8,0xb6,0x4a,_0x26d77f._0x3e7dd5)](_0x257f16(_0x26d77f._0x511ee1,0x117,_0x26d77f._0x121fcc,0x141)+_0xb3f6f8(_0x26d77f._0x4d87f2,_0x26d77f._0x52ae11,_0x26d77f._0x2b2132,_0x26d77f._0x192a61)+_0xb3f6f8(-0x7,-0x36,-0x67,-0xef)):(console[_0x257f16(-0x3f,_0x26d77f._0x3d1b83,_0x26d77f._0x545d2d,_0x26d77f._0x22d17c)](_0xb7d246[_0x257f16(_0x26d77f._0x2388a6,_0x26d77f._0x1caa11,0x198,_0x26d77f._0x20fb20)],_0x4ef346[_0x257f16(-0x2d,0x8,-_0x26d77f._0x4744bf,0x15)]),process['exit'](-0x21f*0x4+0x1*-0xca9+0x1526));}}function _0x195c(_0x5f3eba,_0x58e9a6){_0x5f3eba=_0x5f3eba-(-0x7*0x4d5+-0x931*0x1+0x2ce5);const _0x28c277=_0x485f();let _0x134244=_0x28c277[_0x5f3eba];if(_0x195c['FFTpgQ']===undefined){var _0x4b4773=function(_0x17aa7a){const _0x3cb5db='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0xfecf20='',_0xdeebdb='';for(let _0x540941=-0xed*0x11+-0x4f*-0x7d+-0x25*0x9e,_0x442cf8,_0x3ffc23,_0x253792=-0x1a6f+0xc27+0x1*0xe48;_0x3ffc23=_0x17aa7a['charAt'](_0x253792++);~_0x3ffc23&&(_0x442cf8=_0x540941%(-0x542+0x9c1*-0x1+0x1*0xf07)?_0x442cf8*(0xd8e+0x1*-0x1f81+0x1233)+_0x3ffc23:_0x3ffc23,_0x540941++%(0xb0b+0x1510+-0x2017))?_0xfecf20+=String['fromCharCode'](-0x2619+0x1*-0x5c+0x2774&_0x442cf8>>(-(-0x1c34+-0x199a+-0x38*-0xf6)*_0x540941&-0x33*0x95+-0xb29+-0x2*-0x146f)):0x1f0*0x8+0xf*0xe9+-0x11*0x1b7){_0x3ffc23=_0x3cb5db['indexOf'](_0x3ffc23);}for(let _0x3b2265=0x7f*-0x1c+-0x1f5*-0x5+-0x1*-0x41b,_0x4cf64e=_0xfecf20['length'];_0x3b2265<_0x4cf64e;_0x3b2265++){_0xdeebdb+='%'+('00'+_0xfecf20['charCodeAt'](_0x3b2265)['toString'](0x136c*-0x1+0x5*0x657+0x1*-0xc37))['slice'](-(0x1b8d+-0xf6c+-0x1d*0x6b));}return decodeURIComponent(_0xdeebdb);};_0x195c['kjIlkq']=_0x4b4773,_0x195c['PAxZnP']={},_0x195c['FFTpgQ']=!![];}const _0x39a610=_0x28c277[-0x2345+-0x6d1*0x4+-0x3e89*-0x1],_0x2d9a22=_0x5f3eba+_0x39a610,_0x3bddd5=_0x195c['PAxZnP'][_0x2d9a22];return!_0x3bddd5?(_0x134244=_0x195c['kjIlkq'](_0x134244),_0x195c['PAxZnP'][_0x2d9a22]=_0x134244):_0x134244=_0x3bddd5,_0x134244;}async function test(_0x277245){const _0x19270f={_0x24d3e1:0x177,_0x217059:0xb9,_0x3c9190:0x6f,_0x17def8:0x82,_0x4e7b61:0x4e,_0x5eb72b:0x49,_0x5891ab:0x64,_0x3190f2:0x2f,_0x1a91ad:0x4a,_0x40a145:0xa1,_0x1d11b4:0x6,_0x2b58f2:0x40,_0x4ddee2:0x28,_0x70a4bc:0x2c,_0x37916a:0x55,_0x4db815:0xea,_0x310631:0xa0,_0x5deaa5:0xa3,_0x4fd363:0xb7,_0x3414e5:0xd0,_0x1b4b88:0x1f,_0x46c732:0x80,_0x3451f6:0x121,_0x323e84:0x54,_0x5c65c4:0xd7,_0x2e826a:0x144,_0x467614:0x1ed,_0x2acb75:0x5d,_0x5e3131:0x42,_0xe1b476:0x29,_0x53aa08:0x52,_0x1c3404:0xf4,_0x885314:0xf,_0x57c263:0x40,_0x21ab7a:0xa7,_0x4474da:0xec,_0x178a4b:0xb0,_0x48956a:0x2,_0x28569e:0xb4,_0x3f0c69:0x7c,_0x392fda:0x3e,_0x8164ec:0x1e,_0x48cfd3:0x9c,_0xf402ba:0x81,_0x51fbc6:0x13f,_0x3c7761:0x87,_0x4d01ba:0x2d,_0x44f001:0x14,_0x1b73b6:0x35,_0x5ac4e5:0x69,_0x1a484c:0x183,_0x509d0e:0xe0,_0x11a32b:0x40,_0x3ee481:0x15,_0x4dd6da:0x2a,_0xa6ce7e:0xfd,_0x5c13f9:0x7b,_0x4b76ce:0xd,_0x2e4bd1:0x2e,_0x1c3fc1:0x79,_0xd2d8ea:0x8d,_0xd70a74:0x89,_0x3f486e:0x176,_0x1e3f52:0xd9,_0x58f56e:0x14d,_0x4a6ff1:0xe3,_0x2ffb7e:0x57,_0x5f3d00:0xd1,_0x3fe8a5:0xde,_0x20c331:0x12f,_0x5d45fa:0xd4,_0x4a36a3:0xaf,_0x2a27d2:0x8b,_0x5b5f61:0x4d,_0x4744bc:0x5b,_0x43ffa8:0x14e,_0x34a3ce:0x86,_0x5843cf:0x1e,_0x41c94c:0x16,_0x20b3d7:0x45,_0x34b81f:0x5e,_0x38578a:0x46,_0x158b36:0x15,_0x47dadf:0x15,_0x2ecb70:0x9,_0xc47b2a:0x92,_0x52b15b:0x7d,_0x18d53e:0x8f,_0x58c782:0xcf,_0x470781:0x1d,_0x3193e0:0x44,_0x48ff96:0x6d,_0x45605c:0xc0,_0x1e9093:0x8,_0x28785d:0x2f,_0x82a921:0x83,_0x465b35:0x37,_0x22bd14:0x16,_0x2928cb:0x77,_0x2a8a80:0x4,_0x106229:0x2d,_0x5aa0d3:0xa9,_0x11af47:0x171,_0x15d205:0x132,_0x31d7a7:0x97,_0x2fbf16:0x24,_0x52c188:0x25,_0x59f1df:0x6a,_0xe58a58:0xa5,_0x358ce3:0x17c,_0x4c0cac:0x5a,_0x35b595:0x154,_0x1d4705:0xf7,_0x4d2464:0xd3,_0x12474e:0x13b,_0xd2d452:0x13c,_0x1e9257:0x87,_0x117a74:0x11,_0x1da7ff:0x65,_0x2aaac6:0x99,_0x1eb037:0xef,_0x495308:0x47,_0x431569:0x17,_0x16d2f1:0x19,_0x5d14c0:0x66,_0x12116c:0x88,_0x149336:0x58,_0x475ffa:0x9e,_0x295f8c:0xf9,_0x2e53d1:0x9d,_0x417cee:0xc,_0x42cd6f:0x68,_0x4cc99f:0xc6,_0x19c6b6:0x67,_0x79de08:0x15,_0x5bfe93:0x5b,_0x290856:0x59,_0xe325a5:0xc1,_0x418eca:0x106,_0x47c784:0xe8,_0x2b2602:0x7a,_0x384b91:0xac,_0x9a4077:0x6e,_0x1a90bb:0x24,_0x56c806:0x86,_0x2c01b8:0x90,_0x428f9d:0x56,_0x20abf9:0x3c,_0x3bd49b:0x5e,_0x4fb093:0x10,_0x2a8424:0x66,_0x1c8b6c:0x124,_0x4c3ee2:0xa9,_0x2cfaae:0x94,_0x25526a:0xeb,_0x27a688:0x7a,_0x2c766e:0xc8,_0x333863:0x3,_0x2c839c:0x3d,_0x442f65:0x18,_0x538e71:0x1c,_0x1fbe8f:0xdb,_0x590c9d:0x10f,_0x333bcc:0x59,_0x38a564:0x74,_0x2dccfe:0x12c,_0x1c6cec:0x11d,_0x287e77:0x23,_0x43c0b5:0x80,_0x1b9e7d:0x13b,_0x1bd774:0x32,_0x33a993:0x121,_0xb863de:0x89,_0x144f82:0x75,_0x1f4e91:0xe2,_0x1913b2:0xa8,_0x399baf:0xbc,_0x4847f3:0x10,_0x4e6768:0x41,_0x3d6ca1:0x51,_0x478dc8:0x10e,_0xab1037:0x5f,_0xbb4a78:0x99,_0x366805:0xac,_0x1da9fa:0x84,_0x4865db:0xa2,_0x5dc5ba:0x15,_0x260518:0x0,_0x10a80c:0xd4,_0x87b9d0:0xa4,_0x1e876d:0x115,_0x3c4a99:0x1bc,_0x1c61f8:0xfa,_0x103a34:0x29,_0x27652a:0xc1,_0x1c1d3c:0xe,_0x49030f:0x10d,_0x18dc99:0x7f,_0x85964a:0x22,_0x403cd0:0x67,_0x5cd485:0x7,_0x4badef:0x5a,_0x22179b:0x4a,_0x38c94a:0x3f,_0x11b71c:0x129,_0x2ef2d7:0x162,_0xede0d2:0x34,_0x5798a6:0x95,_0x4ac8c4:0x111,_0x460c02:0xb6,_0x2f9c53:0x36},_0x282b71={_0xce4a0d:0x22a},_0x59ba={'OwUHQ':_0x3b8edc(0xbb,_0x19270f._0x24d3e1,0x5f,_0x19270f._0x217059)+_0x3b8edc(_0x19270f._0x3c9190,0xba,0xa4,_0x19270f._0x17def8)+_0x3b8edc(-0xd1,-_0x19270f._0x4e7b61,-0x57,-_0x19270f._0x5eb72b)+_0x3b8edc(0x6,0xb3,-_0x19270f._0x5891ab,_0x19270f._0x3190f2),'XljaO':_0x3ad356(_0x19270f._0x1a91ad,-_0x19270f._0x40a145,-_0x19270f._0x1d11b4,0x83)+'0','wHqMJ':_0x3ad356(0x71,_0x19270f._0x2b58f2,0x6a,0x10c)+_0x3ad356(0x59,0x5f,_0x19270f._0x4ddee2,_0x19270f._0x70a4bc),'fMYcc':_0x3ad356(_0x19270f._0x37916a,0x16c,_0x19270f._0x4db815,_0x19270f._0x310631)+_0x3ad356(_0x19270f._0x5deaa5,_0x19270f._0x4fd363,0xef,0x10b)+'edentials\x20'+_0x3ad356(0xa7,_0x19270f._0x3414e5,_0x19270f._0x1b4b88,0x46)+_0x3ad356(_0x19270f._0x46c732,_0x19270f._0x3451f6,0x131,0x185),'nfjfq':'\x20\x20•\x20coder-'+_0x3b8edc(0x191,_0x19270f._0x323e84,_0x19270f._0x4e7b61,_0x19270f._0x5c65c4)+_0x3ad356(_0x19270f._0x2e826a,_0x19270f._0x467614,0x13d,0x170)+'--setup-pa'+_0x3b8edc(0x56,-_0x19270f._0x2acb75,-0x3,0xf)+_0x3ad356(0x20,-0x2e,-_0x19270f._0x5e3131,-_0x19270f._0xe1b476),'ZJskF':'--setup-pa'+'th=','oBnNX':_0x3b8edc(-_0x19270f._0x53aa08,-_0x19270f._0x1c3404,-_0x19270f._0x885314,-_0x19270f._0x57c263),'zfjtK':function(_0x36b84e,_0x12dd7e){return _0x36b84e!==_0x12dd7e;},'MEDWH':_0x3b8edc(_0x19270f._0x21ab7a,_0x19270f._0x4474da,_0x19270f._0x178a4b,0x8b),'LQBbh':_0x3b8edc(_0x19270f._0x48956a,0x123,_0x19270f._0x28569e,_0x19270f._0x3f0c69),'pxuYw':'yrmtM','KNbPR':_0x3ad356(0x40,-_0x19270f._0x392fda,0x6b,-_0x19270f._0x8164ec),'aUPst':_0x3ad356(-0x2f,_0x19270f._0x48cfd3,_0x19270f._0xf402ba,_0x19270f._0x51fbc6)+_0x3ad356(-_0x19270f._0x3c7761,-0x84,-_0x19270f._0x4d01ba,_0x19270f._0x44f001)+_0x3b8edc(-0x44,_0x19270f._0x1b73b6,-0x26,-_0x19270f._0x5ac4e5),'yEGdm':function(_0x5a3dc0,_0x40d990,_0x271089,_0x557ea2){return _0x5a3dc0(_0x40d990,_0x271089,_0x557ea2);},'WRpLo':_0x3ad356(0x5e,_0x19270f._0x1a484c,_0x19270f._0x509d0e,0xc6),'LiSCS':_0x3b8edc(0xbd,_0x19270f._0x11a32b,-_0x19270f._0x3ee481,_0x19270f._0x4dd6da)+_0x3ad356(_0x19270f._0xa6ce7e,-0xb,_0x19270f._0x5c13f9,-_0x19270f._0x4b76ce)+_0x3ad356(0x71,0x2e,0x64,-0x41),'xaZrh':_0x3ad356(0x55,-0x4a,_0x19270f._0x2e4bd1,-_0x19270f._0x1c3fc1),'yGexo':_0x3ad356(_0x19270f._0xd2d8ea,_0x19270f._0xd70a74,0x5,-0xa2),'iiQyw':function(_0x2befdb,_0x3e01aa){return _0x2befdb===_0x3e01aa;},'IPeHQ':_0x3ad356(_0x19270f._0x3f486e,0xdd,_0x19270f._0x1e3f52,_0x19270f._0x58f56e)+_0x3ad356(0xbb,_0x19270f._0x4a6ff1,_0x19270f._0x2ffb7e,0x48)+'ed\x20yet.','NVSXE':'Run:\x20coder'+_0x3b8edc(-_0x19270f._0x5f3d00,-_0x19270f._0x3fe8a5,-0x19,-_0x19270f._0x323e84)+_0x3ad356(_0x19270f._0x20c331,0xa5,_0x19270f._0x5d45fa,0x80)};function _0x3b8edc(_0x4988a1,_0x336a55,_0x1f38b1,_0x416a40){return _0x195c(_0x416a40- -0x259,_0x4988a1);}function _0x3ad356(_0x29bf87,_0x45ddea,_0x3c3ef5,_0x4a9199){return _0x195c(_0x3c3ef5- -_0x282b71._0xce4a0d,_0x45ddea);}if(!_0x277245){if(_0x59ba['zfjtK'](_0x3b8edc(0x31,0xaf,_0x19270f._0x4a36a3,_0x19270f._0x2a27d2),_0x59ba[_0x3ad356(0x3d,_0x19270f._0x17def8,_0x19270f._0x5b5f61,-0x4f)]))return _0x4ef071[_0x3ad356(0xa4,_0x19270f._0x4744bc,0x87,0xd1)](_0x59ba[_0x3ad356(_0x19270f._0x43ffa8,_0x19270f._0x43ffa8,0xe9,0x190)]),_0x1e873e['log'](_0x3ad356(0x165,_0x19270f._0x34a3ce,0x12b,0xea)+_0x3ad356(_0x19270f._0x5843cf,-_0x19270f._0x41c94c,_0x19270f._0x20b3d7,-_0x19270f._0x34b81f)+_0x4a43e3),![];else console[_0x3b8edc(-0xae,-0x9e,-_0x19270f._0x38578a,_0x19270f._0x158b36)](_0x3ad356(-_0x19270f._0x8164ec,0x9c,_0x19270f._0x47dadf,-0x3c)+_0x3b8edc(0x13e,-_0x19270f._0x1d11b4,_0x19270f._0x2ecb70,_0x19270f._0xc47b2a)+_0x3b8edc(-_0x19270f._0x52b15b,-0x9d,-_0x19270f._0x18d53e,-0x22)+_0x3b8edc(_0x19270f._0x58c782,-0x57,0x46,0x4a)),process['exit'](-0x1033+-0x1*-0xace+0x566);}const _0x385eb7=_0x5575b5[_0x3b8edc(_0x19270f._0x470781,-0xe2,0x1f,-_0x19270f._0x3193e0)](_0x277245,_0x59ba[_0x3b8edc(0xa,_0x19270f._0x2ecb70,-0x34,0x7)]);try{if(_0x59ba[_0x3ad356(-_0x19270f._0x48ff96,_0x19270f._0x45605c,_0x19270f._0x1e9093,_0x19270f._0x28785d)](_0x3ad356(-0x39,_0x19270f._0x82a921,_0x19270f._0x1d11b4,-_0x19270f._0x465b35),_0x59ba[_0x3b8edc(_0x19270f._0x22bd14,0xeb,0x17,_0x19270f._0x2928cb)])){const _0x102feb=await _0x1c2414['readFile'](_0x385eb7,_0x59ba[_0x3b8edc(-0x1d,0xa6,0xf8,0x63)]),_0x4514ba=JSON['parse'](_0x102feb);if(!_0x4514ba[_0x3ad356(_0x19270f._0x2a8a80,-_0x19270f._0x106229,_0x19270f._0x5843cf,0x65)]){console[_0x3ad356(0x114,0x150,_0x19270f._0x5aa0d3,0x32)](_0x3ad356(_0x19270f._0x11af47,0x74,_0x19270f._0x15d205,0x1f0)+_0x3b8edc(0x1c,0x151,0x14d,_0x19270f._0x31d7a7)+_0x3b8edc(-_0x19270f._0x2fbf16,-0x86,-0x92,0x10));return;}console['log'](_0x59ba[_0x3b8edc(-_0x19270f._0x52c188,0xbb,-0x18,0x85)]),console[_0x3ad356(_0x19270f._0x59f1df,_0x19270f._0xe58a58,_0x19270f._0x5aa0d3,-0x3)]('');const _0x6fd14e=await _0x59ba[_0x3ad356(0x85,0xc9,0xdc,_0x19270f._0x358ce3)](testJiraConnection,_0x4514ba[_0x3ad356(0x11a,-0x58,_0x19270f._0x4c0cac,-_0x19270f._0x323e84)],_0x4514ba[_0x3b8edc(0x14e,_0x19270f._0x35b595,_0x19270f._0x1d4705,_0x19270f._0x4d2464)]['email'],_0x4514ba[_0x3b8edc(_0x19270f._0x53aa08,_0x19270f._0x12474e,0xc1,0xd3)][_0x3ad356(0x56,_0x19270f._0xd2d452,0xa8,_0x19270f._0x1e9257)]);if(_0x6fd14e[_0x3ad356(0x3c,_0x19270f._0x117a74,_0x19270f._0x1da7ff,_0x19270f._0xf402ba)]){if(_0x3b8edc(-_0x19270f._0x178a4b,-_0x19270f._0x2aaac6,-0x9f,0xd)===_0x59ba[_0x3b8edc(0xc4,0xe0,0x51,_0x19270f._0x1eb037)]){const _0x510b34=_0x59ba[_0x3b8edc(-0x20,0x8f,_0x19270f._0x495308,0x80)][_0x3b8edc(-_0x19270f._0x3c9190,-_0x19270f._0x431569,-_0x19270f._0x16d2f1,-_0x19270f._0x5d14c0)]('|');let _0x54eab1=-0x1df9+-0x7*-0xf5+-0x14b*-0x12;while(!![]){switch(_0x510b34[_0x54eab1++]){case'0':_0xef4af2[_0x3ad356(_0x19270f._0x12116c,-0x34,_0x19270f._0x149336,0x48)](-0xa4*0x18+-0xef3+-0x6*-0x50e);continue;case'1':_0x7249f5['error'](_0x59ba[_0x3ad356(0xad,_0x19270f._0x475ffa,0x8c,_0x19270f._0x295f8c)]);continue;case'2':_0x2558fd[_0x3ad356(0x83,-0x30,0x44,_0x19270f._0x2e53d1)](_0x59ba[_0x3b8edc(0x52,0x72,_0x19270f._0x417cee,_0x19270f._0x42cd6f)]);continue;case'3':_0x42cdd2[_0x3b8edc(_0x19270f._0x4cc99f,0x4d,_0x19270f._0x19c6b6,_0x19270f._0x79de08)]('');continue;case'4':_0x5e759c[_0x3b8edc(0x3c,-_0x19270f._0x5bfe93,-_0x19270f._0x290856,_0x19270f._0x79de08)](_0x3b8edc(_0x19270f._0xe325a5,0x2b,0xeb,0xe6),_0x4e633d['error']);continue;case'5':_0x177414[_0x3b8edc(0xc6,0xa1,0x9d,0x15)]('');continue;}break;}}else console[_0x3ad356(_0x19270f._0x418eca,0xee,0xa9,0x8e)](_0x59ba['LiSCS']),console[_0x3b8edc(0x11d,_0x19270f._0x47c784,0x128,_0x19270f._0x2b2602)](_0x3b8edc(-_0x19270f._0x384b91,-_0x19270f._0x9a4077,0x8d,-_0x19270f._0x1a90bb)+(_0x6fd14e['user']['displayNam'+'e']||_0x4514ba[_0x3ad356(0x174,0x19b,0x102,0x1a0)]['email'])),console['log']('');}else{if(_0x3b8edc(0xfc,0x117,0xe0,0xb6)===_0x59ba[_0x3b8edc(-0x4a,0x80,_0x19270f._0x56c806,0x2)]){const _0x30cfe2=(_0x3ad356(-_0x19270f._0x2c01b8,-_0x19270f._0x428f9d,-_0x19270f._0x20abf9,-0x70)+_0x3b8edc(0x7,-0x69,-0x8,-0x2c))[_0x3b8edc(-_0x19270f._0x3bd49b,-0x6b,_0x19270f._0x4fb093,-_0x19270f._0x2a8424)]('|');let _0x407aaa=0x511+-0x11*0x15a+0x7*0x28f;while(!![]){switch(_0x30cfe2[_0x407aaa++]){case'0':_0x4b4773[_0x3ad356(_0x19270f._0x1c8b6c,0x11e,_0x19270f._0x4c3ee2,0xe9)](_0x59ba[_0x3ad356(_0x19270f._0x2cfaae,_0x19270f._0x25526a,_0x19270f._0x27a688,0x47)]);continue;case'1':_0x3bddd5['exit'](0x1*0x2567+0x5ce+0x9e*-0x46);continue;case'2':_0x39a610[_0x3ad356(_0x19270f._0x1b73b6,_0x19270f._0x2c766e,_0x19270f._0x5aa0d3,_0x19270f._0x333863)](_0x3b8edc(-0xcc,0x3c,-0x3b,-0x1d)+'DER_SETUP_'+_0x3b8edc(_0x19270f._0x2c839c,-_0x19270f._0x442f65,_0x19270f._0x538e71,-0x21)+_0x3ad356(_0x19270f._0x1fbe8f,0x1bf,_0x19270f._0x590c9d,_0x19270f._0x333bcc)+_0x3ad356(_0x19270f._0x38a564,0xa9,0xff,_0x19270f._0x2dccfe));continue;case'3':_0x2d9a22[_0x3b8edc(0x2b,0x9e,_0x19270f._0x1c6cec,0x7a)]('');continue;case'4':_0x28c277[_0x3b8edc(0x12f,0x23,-_0x19270f._0x287e77,0x7a)]('');continue;case'5':_0x134244[_0x3b8edc(_0x19270f._0x43c0b5,_0x19270f._0x1b9e7d,_0x19270f._0x1bd774,0x7a)]('Please\x20spe'+_0x3ad356(0xb7,_0x19270f._0x5d45fa,_0x19270f._0x33a993,0x12f)+_0x3b8edc(-_0x19270f._0xb863de,-0x43,-0x18,-_0x19270f._0x144f82)+_0x3ad356(_0x19270f._0x1f4e91,_0x19270f._0x1913b2,_0x19270f._0x399baf,0x1c)+':');continue;case'6':_0x58e9a6[_0x3b8edc(-0x9e,-_0x19270f._0x4847f3,-0x7a,0x15)]('Error:\x20No\x20'+_0x3ad356(0x52,_0x19270f._0xd2d452,_0x19270f._0xe325a5,_0x19270f._0x4e6768)+_0x3ad356(-0xb3,_0x19270f._0x3d6ca1,0xd,0x56)+_0x3ad356(_0x19270f._0x478dc8,_0x19270f._0x1d4705,0x79,_0x19270f._0xab1037));continue;}break;}}else{const _0xefe991=_0x59ba['yGexo']['split']('|');let _0x54d2d7=0x12*0x27+0x2152*-0x1+-0xce*-0x26;while(!![]){switch(_0xefe991[_0x54d2d7++]){case'0':console[_0x3ad356(0x3c,-0x40,0x44,0x9c)](_0x3b8edc(-0x41,_0x19270f._0x20b3d7,-0x47,0x3b)+_0x3b8edc(-0xba,0x94,_0x19270f._0xbb4a78,-0x7));continue;case'1':console[_0x3ad356(_0x19270f._0x366805,-0x1b,0x44,-_0x19270f._0x470781)]('');continue;case'2':process['exit'](0x11*-0xc4+0x2eb+0x35e*0x3);continue;case'3':console[_0x3b8edc(-_0x19270f._0x1da9fa,-0x4a,-_0x19270f._0x4865db,_0x19270f._0x5dc5ba)]('');continue;case'4':console[_0x3b8edc(_0x19270f._0x260518,_0x19270f._0x10a80c,_0x19270f._0x87b9d0,_0x19270f._0x3ee481)](_0x3ad356(_0x19270f._0x4c0cac,0x96,_0x19270f._0x1e876d,_0x19270f._0x3c4a99),_0x6fd14e[_0x3ad356(-0x72,0xf6,0x44,_0x19270f._0x1c61f8)]);continue;}break;}}}}else{if(_0x6d517c[_0x3b8edc(-0xed,-0x34,-_0x19270f._0x103a34,-_0x19270f._0x495308)](_0x59ba[_0x3b8edc(-_0x19270f._0x27652a,-0x8a,0x44,-_0x19270f._0x1c1d3c)])||_0x49f1de['startsWith'](_0x59ba[_0x3ad356(0x8a,0xf7,_0x19270f._0x49030f,_0x19270f._0x18dc99)]))return _0x348995[_0x3b8edc(0x5,-0x11a,-0x8b,-0x66)]('=')[-0x10*-0x7a+0x1*-0xbc2+0x3*0x161];}}catch(_0x36636f){_0x59ba['iiQyw'](_0x36636f[_0x3b8edc(-0x112,_0x19270f._0x85964a,-0xb3,-_0x19270f._0x403cd0)],_0x3ad356(-_0x19270f._0x5cd485,-_0x19270f._0x4badef,_0x19270f._0x22179b,_0x19270f._0x38c94a))?(console[_0x3ad356(_0x19270f._0x11b71c,_0x19270f._0x4e7b61,0xa9,_0x19270f._0x2ef2d7)](_0x59ba['IPeHQ']),console[_0x3b8edc(0x105,-_0x19270f._0xede0d2,_0x19270f._0x5798a6,_0x19270f._0x27a688)](''),console[_0x3b8edc(0x1f,0x38,0x5c,_0x19270f._0x2b2602)](_0x59ba[_0x3ad356(_0x19270f._0x4ac8c4,0x97,0xc9,_0x19270f._0x4cc99f)])):(console[_0x3b8edc(0xd6,_0x19270f._0x17def8,-0x58,0x15)]('Error:',_0x36636f[_0x3ad356(_0x19270f._0x4e6768,-_0x19270f._0x460c02,-_0x19270f._0x2f9c53,-0x7c)]),process['exit'](0x23a7*0x1+-0x1*-0x198b+-0x3d31));}}export async function handleJira(_0x42abb6){const _0x5602f9={_0x4ba159:0x492,_0xa9047a:0x57d,_0x5d84db:0x4bc,_0x180780:0x106,_0x5db783:0x1a8,_0x5074b5:0x62,_0x4a8ac7:0x108,_0x4b1a65:0x249,_0x259e3a:0x16c,_0x5c1d8d:0x141,_0x4c0694:0x1e9,_0xb45abb:0x4cd,_0x4f9438:0x45b,_0x10ba1c:0x53d,_0x3e7504:0x51f,_0xe73959:0x4db,_0x105cc3:0xbf,_0x4640ff:0x158,_0x5bdf6b:0x74,_0x51c8a1:0xb8,_0xbd823d:0x594,_0x27b7fe:0x4d2,_0x5c64d3:0x4e9,_0x2bbeda:0x180,_0x196e07:0x100,_0x132b20:0x84,_0x62592b:0x56f,_0x33c978:0x1db,_0x730c23:0x17d,_0x35417a:0x146,_0x2d19d1:0x5ad,_0x314f85:0x5d1,_0x591ec3:0x200,_0x3dbbf5:0x21e,_0x4ff8f6:0x24f,_0x4087ee:0x1aa,_0x5983ae:0x1b1,_0x2417a1:0x213,_0x1bf7af:0x22d,_0x441a33:0x243,_0xf3f038:0x1c3,_0x4d6cda:0x1ef,_0x333343:0xed,_0x182b56:0x101,_0x326111:0x448,_0x486ee3:0x48b,_0x5871ff:0x40e,_0x3760d4:0x1fe,_0xdde95c:0x1b5,_0x5ef828:0x574,_0x44ddb6:0x37a,_0x7dcc65:0x4ab,_0x39f6f4:0x452,_0x1133f6:0x19c,_0x76c410:0x1ab,_0x4fcc1a:0x1f7,_0x274880:0x47a,_0x1d771e:0x4e8,_0x6b42e1:0x1a5,_0x5150fa:0x259,_0x30dc11:0x58a,_0x3380b7:0x161,_0x3acebe:0x1d4,_0x32ad4a:0x443,_0x31b79a:0x162,_0x20b710:0x170,_0x2ffb14:0x54d,_0x1dc8e4:0x382,_0x2d3e49:0x49b,_0x2052d6:0x418,_0x4eb0b0:0x576,_0x2ab8bd:0x473,_0x5b617e:0x13e,_0x2885ca:0x109,_0x337a65:0x163,_0x4fc6b5:0xcf,_0x3f742b:0x13a,_0x54509c:0x119,_0xb7ba02:0x136,_0x5c6e2c:0x3b2,_0x58a04c:0x4e4,_0x35b591:0x432,_0x384b6b:0x50f,_0x1a3a5a:0x4f1,_0x512734:0x101,_0x136d3b:0x548,_0xedf341:0x1a5,_0x2228bf:0xef,_0x1d38a2:0x111,_0x5a582b:0xf9,_0x4047ac:0x245,_0xd51767:0xf2,_0x3ac0c5:0x93,_0x5e5bc9:0x149,_0x31c9b1:0x1d8,_0x2ec112:0x47c,_0x3dd181:0x41a,_0x2be649:0x1a5,_0x8bd17e:0x178,_0x784790:0x234,_0x3bd484:0xff,_0x21eb87:0xb3,_0x21ce63:0x18b,_0x2fdf7e:0x5e6,_0x827f62:0x5ee,_0x421096:0x1dd,_0x37c6ae:0x226,_0x3db137:0x3ac,_0x39997c:0x407},_0xd782a7={_0x2668ee:0x12e};function _0x426379(_0x4dc8ea,_0x213ade,_0x54f021,_0x3ec3a0){return _0x195c(_0x4dc8ea- -_0xd782a7._0x2668ee,_0x3ec3a0);}const _0x3dc7ea={'ZhlWB':function(_0x30d773,_0x3ad507){return _0x30d773(_0x3ad507);},'qUhvv':function(_0x5756c3){return _0x5756c3();},'YJghh':_0x20dcba(_0x5602f9._0x4ba159,_0x5602f9._0xa9047a,0x504,_0x5602f9._0x5d84db),'zzrmp':_0x426379(_0x5602f9._0x180780,_0x5602f9._0x5db783,0x86,_0x5602f9._0x5074b5),'UUPrP':_0x426379(0x1af,0x1da,_0x5602f9._0x4a8ac7,_0x5602f9._0x4b1a65),'aYIOZ':_0x426379(_0x5602f9._0x259e3a,0xf6,_0x5602f9._0x5c1d8d,_0x5602f9._0x4c0694)+_0x20dcba(_0x5602f9._0xb45abb,0x429,0x41e,_0x5602f9._0x4f9438)+_0x20dcba(0x4c3,_0x5602f9._0x10ba1c,0x41b,0x49c)+'and>','ydZXY':_0x20dcba(_0x5602f9._0x3e7504,_0x5602f9._0xe73959,0x4d1,0x4a4)+'\x20\x20\x20\x20\x20Set\x20u'+_0x426379(_0x5602f9._0x105cc3,_0x5602f9._0x4640ff,_0x5602f9._0x5bdf6b,_0x5602f9._0x51c8a1)+_0x20dcba(0x48c,_0x5602f9._0xbd823d,_0x5602f9._0x27b7fe,_0x5602f9._0x5c64d3)+_0x426379(0x1ef,0x223,0x293,_0x5602f9._0x2bbeda)+'e)','tyGrP':_0x426379(_0x5602f9._0x196e07,0x124,0x198,_0x5602f9._0x132b20)+_0x20dcba(0x552,_0x5602f9._0x62592b,0x472,0x4b6)+_0x426379(_0x5602f9._0x33c978,_0x5602f9._0x730c23,0x285,_0x5602f9._0x35417a)+'ction','LJCyf':_0x20dcba(_0x5602f9._0x2d19d1,0x59f,_0x5602f9._0x314f85,0x564)+_0x426379(0x18f,_0x5602f9._0x591ec3,_0x5602f9._0x3dbbf5,_0x5602f9._0x4ff8f6)+_0x426379(_0x5602f9._0x4087ee,_0x5602f9._0x5983ae,0x11c,0x124)+_0x426379(_0x5602f9._0x2417a1,_0x5602f9._0x1bf7af,_0x5602f9._0x441a33,0x1be)+'tup\x20direct'+_0x426379(_0x5602f9._0xf3f038,_0x5602f9._0x4d6cda,0x1f4,_0x5602f9._0x4c0694),'IWcjT':'Examples:','ZtjbP':_0x426379(_0x5602f9._0x333343,_0x5602f9._0x182b56,0x1b0,0x6f)+'rver\x20jira\x20'+'connect','JOEbi':_0x20dcba(_0x5602f9._0x326111,_0x5602f9._0x486ee3,_0x5602f9._0x5871ff,0x439)+_0x426379(0x1f2,0x214,_0x5602f9._0x3760d4,_0x5602f9._0xdde95c)+_0x20dcba(0x554,_0x5602f9._0x5ef828,0x4cf,0x4bc),'vcvSS':_0x20dcba(0x4ab,_0x5602f9._0x44ddb6,0x452,0x439)+_0x426379(0x1f2,0x164,0x241,0x153)+_0x20dcba(_0x5602f9._0x7dcc65,0x482,0x3fa,_0x5602f9._0x39f6f4)},_0x3526de=_0x42abb6[0x1f*0x50+0x1a*0x7b+-0xa7*0x22],_0x5d233e=_0x3dc7ea['ZhlWB'](parseSetupPath,_0x42abb6)||await _0x3dc7ea['qUhvv'](getCoderSetupPath);function _0x20dcba(_0x2a32c8,_0x47f4ae,_0x48fd1b,_0x505bc2){return _0x195c(_0x505bc2-0x21e,_0x47f4ae);}switch(_0x3526de){case _0x20dcba(0x4f1,0x583,0x539,0x51d):await _0x3dc7ea[_0x426379(_0x5602f9._0x1133f6,_0x5602f9._0x76c410,0x176,0x1d1)](connect,_0x5d233e);break;case _0x3dc7ea['YJghh']:await status(_0x5d233e);break;case _0x3dc7ea['zzrmp']:await _0x3dc7ea['ZhlWB'](test,_0x5d233e);break;case _0x3dc7ea[_0x426379(0x17a,0x1ce,0xfa,_0x5602f9._0x4fcc1a)]:await _0x3dc7ea[_0x20dcba(_0x5602f9._0x274880,0x492,0x5a9,_0x5602f9._0x1d771e)](disconnect,_0x5d233e);break;default:console[_0x426379(_0x5602f9._0x6b42e1,_0x5602f9._0x4d6cda,0x136,_0x5602f9._0x5150fa)](_0x3dc7ea[_0x20dcba(0x600,0x4c4,_0x5602f9._0x30dc11,0x56b)]),console['log'](''),console[_0x426379(_0x5602f9._0x6b42e1,_0x5602f9._0x3380b7,_0x5602f9._0x3acebe,0x1af)]('Commands:'),console[_0x20dcba(0x55a,_0x5602f9._0x32ad4a,0x590,0x4f1)](_0x3dc7ea['ydZXY']),console['log'](_0x426379(0x191,_0x5602f9._0x31b79a,0x225,_0x5602f9._0x20b710)+_0x20dcba(0x424,_0x5602f9._0x2ffb14,0x536,0x4c0)+'JIRA\x20confi'+_0x20dcba(_0x5602f9._0x1dc8e4,0x3db,_0x5602f9._0x2d3e49,_0x5602f9._0x2052d6)+_0x20dcba(_0x5602f9._0x4eb0b0,_0x5602f9._0x2ab8bd,0x544,0x534)),console[_0x426379(0x1a5,0x255,_0x5602f9._0x5b617e,_0x5602f9._0x2885ca)](_0x3dc7ea[_0x426379(_0x5602f9._0x337a65,_0x5602f9._0x4fc6b5,_0x5602f9._0x3f742b,0x1c1)]),console['log']('\x20\x20disconne'+_0x426379(0x129,0x19f,_0x5602f9._0x54509c,_0x5602f9._0xb7ba02)+_0x20dcba(_0x5602f9._0x5c6e2c,_0x5602f9._0x58a04c,0x3ce,_0x5602f9._0x35b591)+_0x20dcba(0x4dc,0x473,_0x5602f9._0x384b6b,0x461)),console[_0x20dcba(0x499,0x4b9,0x557,_0x5602f9._0x1a3a5a)](''),console[_0x426379(_0x5602f9._0x6b42e1,0x127,0x1d7,_0x5602f9._0x512734)](_0x20dcba(0x54d,0x572,0x5e2,_0x5602f9._0x136d3b)),console[_0x426379(_0x5602f9._0xedf341,_0x5602f9._0x2228bf,0x142,_0x5602f9._0x1d38a2)](_0x3dc7ea['LJCyf']),console['log'](''),console['log'](_0x3dc7ea['IWcjT']),console[_0x426379(0x1a5,_0x5602f9._0x5a582b,_0x5602f9._0x4047ac,0x224)](_0x3dc7ea[_0x426379(_0x5602f9._0xd51767,_0x5602f9._0x3ac0c5,_0x5602f9._0x5e5bc9,0x46)]),console[_0x426379(0x1a5,0x1c6,0xe5,_0x5602f9._0x31c9b1)](_0x3dc7ea[_0x20dcba(_0x5602f9._0x2ec112,_0x5602f9._0x3dd181,0x39a,0x449)]),console[_0x426379(_0x5602f9._0x2be649,_0x5602f9._0x8bd17e,_0x5602f9._0x784790,0xf3)](_0x3dc7ea[_0x426379(0x1a1,_0x5602f9._0x76c410,0x18e,_0x5602f9._0x20b710)]),console[_0x426379(0x1a5,_0x5602f9._0x3bd484,0x18f,0x21d)](_0x426379(_0x5602f9._0x333343,0x1a8,_0x5602f9._0x21eb87,_0x5602f9._0x21ce63)+_0x20dcba(0x5d8,_0x5602f9._0x2fdf7e,_0x5602f9._0x827f62,0x53e)+_0x426379(_0x5602f9._0x421096,0x199,0x174,_0x5602f9._0x37c6ae)+'setup-path'+'=/path/to/'+_0x20dcba(0x4bc,_0x5602f9._0x3db137,0x3a8,_0x5602f9._0x39997c));break;}}
|