@evomap/evolver 1.89.2 → 1.89.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cursor/BUGBOT.md +182 -0
- package/.env.example +68 -0
- package/.git-commit-guard-token +1 -0
- package/.github/CODEOWNERS +63 -0
- package/.github/ISSUE_TEMPLATE/good_first_issue.md +23 -0
- package/.github/pull_request_template.md +45 -0
- package/.github/workflows/test.yml +75 -0
- package/CHANGELOG.md +1237 -0
- package/README.ja-JP.md +1 -3
- package/README.ko-KR.md +1 -3
- package/README.md +86 -530
- package/README.public.md +569 -0
- package/README.zh-CN.md +1 -3
- package/SECURITY.md +108 -0
- package/assets/gep/events.jsonl +3 -0
- package/assets/gep/genes.json +496 -0
- package/examples/atp-consumer-quickstart.md +100 -0
- package/examples/hello-world.md +38 -0
- package/index.js +44 -48
- package/package.json +6 -17
- package/proxy-package.json +39 -0
- package/public.manifest.json +143 -0
- package/src/adapters/hookAdapter.js +2 -0
- package/src/adapters/scripts/_lockPaths.js +74 -0
- package/src/adapters/scripts/evolver-session-start.js +19 -27
- package/src/config.js +23 -0
- package/src/evolve/guards.js +721 -1
- package/src/evolve/pipeline/collect.js +1283 -1
- package/src/evolve/pipeline/dispatch.js +421 -1
- package/src/evolve/pipeline/enrich.js +440 -1
- package/src/evolve/pipeline/hub.js +319 -1
- package/src/evolve/pipeline/select.js +274 -1
- package/src/evolve/pipeline/signals.js +206 -1
- package/src/evolve/utils.js +264 -1
- package/src/evolve.js +350 -1
- package/src/experiment/agentRunner.js +229 -0
- package/src/experiment/cli.js +159 -0
- package/src/experiment/comparison.js +233 -0
- package/src/experiment/metrics.js +75 -0
- package/src/forceUpdate.js +311 -30
- package/src/gep/a2aProtocol.js +4455 -1
- package/src/gep/antiAbuseTelemetry.js +233 -0
- package/src/gep/autoDistillConv.js +205 -1
- package/src/gep/autoDistillLlm.js +315 -1
- package/src/gep/candidateEval.js +92 -1
- package/src/gep/candidates.js +198 -1
- package/src/gep/contentHash.js +30 -1
- package/src/gep/conversationSniffer.js +266 -1
- package/src/gep/crypto.js +89 -1
- package/src/gep/curriculum.js +163 -1
- package/src/gep/deviceId.js +218 -1
- package/src/gep/envFingerprint.js +118 -1
- package/src/gep/epigenetics.js +31 -1
- package/src/gep/execBridge.js +711 -1
- package/src/gep/explore.js +289 -1
- package/src/gep/hash.js +15 -1
- package/src/gep/hubFetch.js +359 -1
- package/src/gep/hubReview.js +207 -1
- package/src/gep/hubSearch.js +526 -1
- package/src/gep/hubVerify.js +306 -1
- package/src/gep/learningSignals.js +89 -1
- package/src/gep/memoryGraph.js +1374 -1
- package/src/gep/memoryGraphAdapter.js +203 -1
- package/src/gep/mutation.js +203 -1
- package/src/gep/narrativeMemory.js +108 -1
- package/src/gep/openPRRegistry.js +205 -1
- package/src/gep/personality.js +423 -1
- package/src/gep/policyCheck.js +599 -1
- package/src/gep/prompt.js +836 -1
- package/src/gep/recallInject.js +409 -1
- package/src/gep/recallVerifier.js +318 -1
- package/src/gep/reflection.js +177 -1
- package/src/gep/sanitize.js +9 -0
- package/src/gep/selector.js +602 -1
- package/src/gep/skillDistiller.js +1294 -1
- package/src/gep/solidify.js +1699 -1
- package/src/gep/strategy.js +136 -1
- package/src/gep/tokenSavings.js +88 -1
- package/src/gep/validator/sandboxExecutor.js +29 -1
- package/src/gep/workspaceKeychain.js +174 -1
- package/src/proxy/extensions/traceControl.js +99 -1
- package/src/proxy/index.js +14 -5
- package/src/proxy/inject.js +52 -1
- package/src/proxy/lifecycle/manager.js +30 -0
- package/src/proxy/mailbox/store.js +2 -1
- package/src/proxy/router/messages_route.js +13 -2
- package/src/proxy/trace/extractor.js +646 -1
- package/src/proxy/trace/usage.js +105 -1
- package/CONTRIBUTING.md +0 -19
- package/assets/cover.png +0 -0
- package/assets/gep/genes.seed.json +0 -245
- package/scripts/a2a_export.js +0 -63
- package/scripts/a2a_ingest.js +0 -79
- package/scripts/a2a_promote.js +0 -118
- package/scripts/analyze_by_skill.js +0 -121
- package/scripts/build_binaries.js +0 -479
- package/scripts/check-changelog.js +0 -166
- package/scripts/extract_log.js +0 -85
- package/scripts/generate_history.js +0 -75
- package/scripts/gep_append_event.js +0 -96
- package/scripts/gep_personality_report.js +0 -234
- package/scripts/human_report.js +0 -147
- package/scripts/recall-verify-report.js +0 -234
- package/scripts/recover_loop.js +0 -61
- package/scripts/seed-merchants.js +0 -91
- package/scripts/suggest_version.js +0 -89
- package/scripts/validate-modules.js +0 -38
- package/scripts/validate-suite.js +0 -78
- package/skills/index.json +0 -14
- /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
package/src/gep/execBridge.js
CHANGED
|
@@ -1 +1,711 @@
|
|
|
1
|
-
const _0x40f8df=_0x2c5c;(function(_0x207980,_0x96ca7){const _0x55724f=_0x2c5c,_0x3ea2cd=_0x207980();while(!![]){try{const _0x8a023e=-parseInt(_0x55724f(0x3cb,'\x55\x38\x70\x57'))/(-0x1e71*-0x1+0x16c7+-0x2cd*0x13)*(parseInt(_0x55724f(0x570,'\x58\x30\x55\x4f'))/(-0x9*0x2f0+0x68c*-0x2+0x278a))+-parseInt(_0x55724f(0x1ee,'\x6d\x5b\x6d\x29'))/(0x2*-0xe93+-0x15e7+-0x130*-0x2b)*(-parseInt(_0x55724f(0x63e,'\x66\x73\x50\x71'))/(0x9*0xba+-0x31*-0x1f+-0xc75))+parseInt(_0x55724f(0x653,'\x69\x46\x56\x2a'))/(0x11*-0xa5+-0x1bc4+0x44e*0x9)*(parseInt(_0x55724f(0x2cb,'\x66\x73\x50\x71'))/(-0x3*0x115+-0x1c10+0x1f55))+-parseInt(_0x55724f(0x3d4,'\x57\x67\x40\x73'))/(0x4*-0x13+0x1124+-0x10d1)+-parseInt(_0x55724f(0x201,'\x69\x46\x66\x33'))/(-0x195d*-0x1+-0xe6c+0x18f*-0x7)+-parseInt(_0x55724f(0x62b,'\x6a\x44\x57\x53'))/(-0x63*-0x65+-0x25*0x68+-0x17fe)*(parseInt(_0x55724f(0x2e3,'\x23\x51\x7a\x28'))/(-0x660*-0x2+0x445*-0x4+0x45e))+parseInt(_0x55724f(0x625,'\x58\x30\x55\x4f'))/(0x317*0xc+0x3c5*0x1+-0x28ce);if(_0x8a023e===_0x96ca7)break;else _0x3ea2cd['push'](_0x3ea2cd['shift']());}catch(_0x203c1f){_0x3ea2cd['push'](_0x3ea2cd['shift']());}}}(_0xcfe1,0x14a2ca+0xb8ac6+-0x11becd));const _0x5c189e=(function(){const _0x1bb671=_0x2c5c,_0x1cf89d={};_0x1cf89d[_0x1bb671(0x48f,'\x64\x51\x24\x2a')]=function(_0x2b6565,_0x4b1915){return _0x2b6565===_0x4b1915;},_0x1cf89d[_0x1bb671(0x1e2,'\x34\x31\x47\x57')]=_0x1bb671(0x222,'\x23\x55\x6a\x21'),_0x1cf89d[_0x1bb671(0x62a,'\x65\x72\x23\x31')]=_0x1bb671(0x3d1,'\x6e\x35\x48\x57');const _0x408fd3=_0x1cf89d;let _0xd9d212=!![];return function(_0x2ebca3,_0x49d9ef){const _0x35ba3f=_0x1bb671,_0xeb5bd2={'\x68\x53\x63\x49\x54':function(_0x25c571,_0x20b583){const _0x4f68aa=_0x2c5c;return _0x408fd3[_0x4f68aa(0x48b,'\x65\x36\x74\x38')](_0x25c571,_0x20b583);},'\x78\x4a\x4e\x49\x73':_0x408fd3[_0x35ba3f(0x463,'\x58\x69\x58\x30')],'\x55\x48\x49\x64\x64':_0x408fd3[_0x35ba3f(0x233,'\x6d\x73\x37\x79')],'\x6c\x4e\x54\x76\x50':_0x35ba3f(0x3d3,'\x67\x33\x48\x6f'),'\x74\x42\x73\x78\x6d':function(_0x4ab6b5,_0x3247f1){const _0x1943e9=_0x35ba3f;return _0x408fd3[_0x1943e9(0x531,'\x4b\x30\x39\x76')](_0x4ab6b5,_0x3247f1);},'\x69\x72\x71\x79\x51':_0x35ba3f(0x2e0,'\x59\x37\x51\x4a')},_0xcb7a3d=_0xd9d212?function(){const _0x366d69=_0x35ba3f,_0x174a22={'\x48\x58\x77\x41\x64':function(_0x53d822,_0x8d55c0){const _0x25d3ad=_0x2c5c;return _0xeb5bd2[_0x25d3ad(0x3c8,'\x21\x65\x70\x52')](_0x53d822,_0x8d55c0);},'\x63\x68\x4a\x69\x6b':_0xeb5bd2[_0x366d69(0x59d,'\x21\x65\x70\x52')],'\x62\x79\x59\x78\x49':_0xeb5bd2[_0x366d69(0x515,'\x53\x30\x44\x29')],'\x47\x49\x76\x6f\x50':_0xeb5bd2[_0x366d69(0x39c,'\x21\x65\x70\x52')]};if(_0xeb5bd2[_0x366d69(0x45a,'\x4a\x5e\x23\x55')](_0xeb5bd2[_0x366d69(0x278,'\x55\x38\x70\x57')],_0x366d69(0x25a,'\x77\x49\x32\x48'))){const _0x5916fe=_0x281f78[_0x366d69(0x2bb,'\x66\x45\x30\x42')](_0x14e397['\x72\x65\x61\x64\x46\x69\x6c\x65'+_0x366d69(0x590,'\x36\x4d\x42\x49')](_0x5454dc,_0x366d69(0x365,'\x69\x46\x56\x2a')));if(_0x5916fe&&_0x174a22[_0x366d69(0x4d8,'\x69\x46\x66\x33')](_0x5916fe[_0x366d69(0x1f2,'\x65\x36\x74\x38')],_0x174a22[_0x366d69(0x454,'\x53\x30\x44\x29')]))return _0x366d69(0x2bf,'\x65\x72\x23\x31');if(_0x5916fe&&_0x5916fe[_0x366d69(0x2d4,'\x6a\x44\x57\x53')]===_0x174a22[_0x366d69(0x489,'\x39\x50\x43\x25')])return _0x174a22[_0x366d69(0x4f3,'\x42\x29\x2a\x41')];return _0x174a22[_0x366d69(0x5ea,'\x76\x71\x63\x59')];}else{if(_0x49d9ef){const _0x1969b5=_0x49d9ef[_0x366d69(0x490,'\x4b\x30\x39\x76')](_0x2ebca3,arguments);return _0x49d9ef=null,_0x1969b5;}}}:function(){};return _0xd9d212=![],_0xcb7a3d;};}()),_0x20bd71=_0x5c189e(this,function(){const _0x4fe8bf=_0x2c5c;return _0x20bd71[_0x4fe8bf(0x309,'\x6e\x35\x48\x57')]()[_0x4fe8bf(0x4f4,'\x77\x49\x32\x48')](_0x4fe8bf(0x4de,'\x34\x31\x47\x57')+_0x4fe8bf(0x425,'\x57\x67\x40\x73'))[_0x4fe8bf(0x413,'\x4d\x4b\x33\x73')]()['\x63\x6f\x6e\x73\x74\x72\x75\x63'+'\x74\x6f\x72'](_0x20bd71)[_0x4fe8bf(0x371,'\x61\x53\x4a\x6f')](_0x4fe8bf(0x373,'\x53\x63\x53\x76')+_0x4fe8bf(0x667,'\x6b\x4d\x55\x42'));});_0x20bd71();'use strict';const _0x1408cf=require('\x66\x73'),_0x5f1d3f=require('\x70\x61\x74\x68'),_0x42fcc4=require(_0x40f8df(0x3a7,'\x74\x7a\x2a\x4e')),{execSync:_0x3762b0,execFileSync:_0xe01b54}=require(_0x40f8df(0x532,'\x69\x46\x66\x33')+'\x6f\x63\x65\x73\x73'),{getRepoRoot:_0x2a5795,getEvolutionDir:_0xd47650}=require(_0x40f8df(0x529,'\x63\x6f\x51\x62')),_0x122193=require(_0x40f8df(0x432,'\x6a\x44\x57\x53')),_0x3a4a06=typeof _0x122193['\x70\x61\x72\x73\x65\x46\x69\x72'+_0x40f8df(0x43a,'\x66\x73\x50\x71')+_0x40f8df(0x5e9,'\x4b\x30\x39\x76')]===_0x40f8df(0x52b,'\x23\x55\x6a\x21')?_0x122193[_0x40f8df(0x6a0,'\x65\x72\x23\x31')+_0x40f8df(0x296,'\x51\x64\x71\x7a')+_0x40f8df(0x5e1,'\x65\x36\x74\x38')]:_0x13ed4c,_0x202719=_0x40f8df(0x346,'\x51\x64\x71\x7a')+_0x40f8df(0x305,'\x6d\x5b\x6d\x29');function _0x52c773(_0x5de07c){const _0x49db0d=_0x40f8df,_0x138490={'\x41\x62\x6b\x50\x6c':_0x49db0d(0x410,'\x6a\x44\x57\x53'),'\x75\x75\x42\x56\x57':_0x49db0d(0x2c6,'\x67\x33\x48\x6f')+_0x49db0d(0x43d,'\x42\x29\x2a\x41'),'\x58\x4d\x52\x57\x61':function(_0x5aeb5d,_0x23ccb5){return _0x5aeb5d(_0x23ccb5);},'\x76\x6e\x56\x4d\x69':function(_0x2084aa,_0x1dcdde){return _0x2084aa||_0x1dcdde;},'\x42\x4e\x55\x47\x49':function(_0x276135,_0x37bf28){return _0x276135===_0x37bf28;},'\x53\x4b\x65\x63\x4b':function(_0x5afb27,_0x384780){return _0x5afb27+_0x384780;},'\x70\x48\x71\x4e\x6f':function(_0x57dc1a,_0xd5f26e){return _0x57dc1a<_0xd5f26e;},'\x58\x4c\x41\x4c\x71':function(_0x553789,_0x2870f1){return _0x553789===_0x2870f1;},'\x49\x53\x77\x68\x58':function(_0xdc9854,_0x5b50c5){return _0xdc9854<_0x5b50c5;},'\x45\x53\x69\x57\x42':function(_0x221112,_0x127f8d){return _0x221112!==_0x127f8d;},'\x72\x53\x4c\x51\x58':_0x49db0d(0x38f,'\x77\x49\x32\x48'),'\x69\x6a\x56\x61\x54':function(_0x4bded8,_0x341ad5){return _0x4bded8===_0x341ad5;},'\x70\x56\x49\x42\x6f':function(_0x10a08e,_0x447ab8){return _0x10a08e===_0x447ab8;}},_0xbd6f4d=_0x138490[_0x49db0d(0x402,'\x65\x36\x74\x38')](String,_0x138490[_0x49db0d(0x5c3,'\x6b\x4d\x55\x42')](_0x5de07c,'')),_0x2c31f4=_0xbd6f4d[_0x49db0d(0x2d2,'\x61\x53\x4a\x6f')](_0x202719);if(_0x138490[_0x49db0d(0x26e,'\x21\x65\x70\x52')](_0x2c31f4,-(-0xe8c+-0xa*0x51+0x5*0x38b)))return null;let _0x30379b=-(0x1609*-0x1+0x3b*0xa3+-0xf87);for(let _0x7468e7=_0x138490[_0x49db0d(0x544,'\x59\x59\x49\x77')](_0x2c31f4,_0x202719[_0x49db0d(0x418,'\x51\x64\x71\x7a')]);_0x138490[_0x49db0d(0x4fd,'\x66\x73\x50\x71')](_0x7468e7,_0xbd6f4d[_0x49db0d(0x671,'\x6d\x73\x37\x79')]);_0x7468e7++){if(_0x138490[_0x49db0d(0x54a,'\x53\x30\x44\x29')](_0xbd6f4d[_0x7468e7],'\x7b')){_0x30379b=_0x7468e7;break;}if(!/\s/['\x74\x65\x73\x74'](_0xbd6f4d[_0x7468e7]))break;}if(_0x138490['\x58\x4c\x41\x4c\x71'](_0x30379b,-(-0x6fb*-0x1+-0xf*0xad+0x329)))return null;let _0x4e55d4=0x1501+0x3b9+0x41f*-0x6,_0x2765ca=![],_0x146625=![];for(let _0x2bc347=_0x30379b;_0x138490[_0x49db0d(0x3a2,'\x5d\x28\x38\x41')](_0x2bc347,_0xbd6f4d[_0x49db0d(0x3f2,'\x61\x53\x4a\x6f')]);_0x2bc347++){if(_0x138490[_0x49db0d(0x42a,'\x42\x29\x2a\x41')](_0x138490[_0x49db0d(0x3dd,'\x69\x46\x56\x2a')],_0x138490[_0x49db0d(0x5cf,'\x61\x53\x4a\x6f')]))_0x23bc70[_0x49db0d(0x363,'\x58\x30\x55\x4f')](-_0x18174e,_0x138490[_0x49db0d(0x38a,'\x64\x51\x24\x2a')]);else{const _0x15ea0a=_0xbd6f4d[_0x2bc347];if(_0x2765ca){if(_0x146625)_0x146625=![];else{if(_0x15ea0a==='\x5c')_0x146625=!![];else{if(_0x138490[_0x49db0d(0x4d7,'\x23\x51\x7a\x28')](_0x15ea0a,'\x22'))_0x2765ca=![];}}}else{if(_0x138490[_0x49db0d(0x63d,'\x34\x31\x47\x57')](_0x15ea0a,'\x22'))_0x2765ca=!![];else{if(_0x15ea0a==='\x7b')_0x4e55d4++;else{if(_0x138490['\x69\x6a\x56\x61\x54'](_0x15ea0a,'\x7d')){if(_0x138490[_0x49db0d(0x3d8,'\x77\x6e\x74\x63')](_0x49db0d(0x2a9,'\x44\x5a\x56\x75'),_0x49db0d(0x49f,'\x57\x67\x40\x73')))return _0x511424[_0x49db0d(0x678,'\x73\x4b\x76\x56')]()[_0x49db0d(0x488,'\x4d\x4b\x33\x73')](ZRzvgS['\x75\x75\x42\x56\x57'])['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x49db0d(0x60c,'\x61\x53\x4a\x6f')+_0x49db0d(0x512,'\x36\x4d\x42\x49')](_0x109dc4)[_0x49db0d(0x5f5,'\x62\x6e\x52\x53')]('\x28\x28\x28\x2e\x2b\x29\x2b\x29'+_0x49db0d(0x32f,'\x62\x6e\x52\x53'));else{_0x4e55d4--;if(_0x138490[_0x49db0d(0x599,'\x36\x4d\x42\x49')](_0x4e55d4,0x2f9*0x1+0xfc5+-0x12be))return _0xbd6f4d[_0x49db0d(0x4c5,'\x4d\x4b\x33\x73')](_0x30379b,_0x138490[_0x49db0d(0x4cb,'\x4a\x7a\x39\x49')](_0x2bc347,-0x7*-0xd3+0x17fd+-0x1dc1));}}}}}}}return null;}function _0x13ed4c(_0x33969f){const _0x1ef1a3=_0x40f8df,_0x447fd2={'\x5a\x4e\x5a\x44\x73':function(_0x1de45c,_0x1c5623,_0x1d5f4c,_0x18cc1f){return _0x1de45c(_0x1c5623,_0x1d5f4c,_0x18cc1f);},'\x49\x4d\x42\x4d\x67':function(_0x1edd08,_0x2d7c2e){return _0x1edd08||_0x2d7c2e;},'\x78\x71\x44\x4c\x54':_0x1ef1a3(0x631,'\x76\x71\x63\x59'),'\x5a\x73\x43\x63\x76':_0x1ef1a3(0x1fe,'\x66\x45\x30\x42'),'\x57\x51\x67\x4f\x47':function(_0xf79c4e,_0x460aba){return _0xf79c4e(_0x460aba);},'\x70\x6a\x49\x41\x68':function(_0x1b1b49,_0x29df1c){return _0x1b1b49===_0x29df1c;},'\x62\x61\x56\x49\x4a':_0x1ef1a3(0x338,'\x34\x31\x47\x57'),'\x55\x47\x59\x65\x73':'\x6f\x62\x6a\x65\x63\x74'},_0x5a3539=_0x447fd2[_0x1ef1a3(0x541,'\x53\x30\x44\x29')](_0x52c773,_0x33969f);if(_0x447fd2[_0x1ef1a3(0x32c,'\x6d\x5b\x6d\x29')](_0x5a3539,null))return null;try{if(_0x447fd2[_0x1ef1a3(0x5f9,'\x23\x51\x7a\x28')](_0x447fd2[_0x1ef1a3(0x67e,'\x57\x67\x40\x73')],_0x1ef1a3(0x4ab,'\x65\x72\x23\x31'))){const _0x4b9a3f=JSON[_0x1ef1a3(0x215,'\x77\x49\x32\x48')](_0x5a3539);return _0x4b9a3f&&_0x447fd2['\x70\x6a\x49\x41\x68'](typeof _0x4b9a3f,_0x447fd2[_0x1ef1a3(0x68a,'\x34\x31\x47\x57')])?_0x4b9a3f:null;}else _0x5aefca=_0x447fd2[_0x1ef1a3(0x57c,'\x6d\x5b\x6d\x29')](_0x1f633e,_0x389121,_0x1cb24a,{'\x65\x6e\x76':_0x200b7b,'\x63\x77\x64':_0x447fd2[_0x1ef1a3(0x5fd,'\x6e\x35\x48\x57')](_0xd6d3a9,_0x36597a),'\x64\x65\x74\x61\x63\x68\x65\x64':!![],'\x73\x74\x64\x69\x6f':[_0x101083!=null?_0x447fd2[_0x1ef1a3(0x630,'\x4c\x62\x25\x23')]:_0x447fd2[_0x1ef1a3(0x62d,'\x65\x72\x23\x31')],_0x447fd2[_0x1ef1a3(0x4ad,'\x65\x36\x74\x38')],_0x1ef1a3(0x619,'\x65\x36\x74\x38')]});}catch(_0x2a326d){return null;}}const _0x4be1eb=()=>parseInt(process.env.EVOLVE_HAND_TIMEOUT_MS||_0x40f8df(0x1e5,'\x4c\x62\x25\x23'),0x7ab+0xeb1*0x2+-0x767*0x5)||-0x96e17+0x1ca6c*0x5+-0xb*-0x14ab1,_0x2af10a=()=>parseInt(process.env.EVOLVE_BRAIN_TIMEOUT_MS||_0x40f8df(0x295,'\x53\x30\x44\x29'),-0x183c+0x1*0xfa9+0x89d)||-0x576d*-0x25+0x8af4+0x8deb,_0x22b530=()=>parseInt(process.env.EVOLVE_HAND_KILL_GRACE_MS||'\x31\x30\x30\x30\x30',-0x4*0x89b+-0xfee*-0x2+0x29a)||0x4d2*-0x2+-0xfe8*-0x1+0x20cc,_0x5bc0c0=()=>parseInt(process.env.EVOLVE_IDLE_SLEEP_MS||_0x40f8df(0x214,'\x58\x69\x58\x30'),-0xc49+-0x1605+0x2258)||0x5f0d+0xf5d7+0x62*0x14e,_0x1adc4b=()=>parseInt(process.env.EVOLVE_HAND_MAX_BUF_BYTES||_0x40f8df(0x388,'\x65\x72\x23\x31'),-0x26d6+-0x1ea*-0x7+-0x2*-0xcbd)||-0x4d7c1+0x7*-0x87ab+0xc8d6e;function _0x3b38cd(_0x168943){return new Promise(_0x53a09c=>setTimeout(_0x53a09c,_0x168943));}function _0x4dc2f9(_0x2b3458,_0x34c51b){const _0x4ecdd3=_0x40f8df,_0x3f362a={'\x66\x47\x51\x74\x4b':function(_0x2e875c,_0x5bb5f3){return _0x2e875c(_0x5bb5f3);},'\x44\x51\x50\x4a\x6f':function(_0x43ea4a,_0x26ddbf){return _0x43ea4a||_0x26ddbf;},'\x67\x65\x4c\x44\x4b':function(_0x40bf42,_0x5d1042){return _0x40bf42<=_0x5d1042;}},_0x258e9f=_0x3f362a[_0x4ecdd3(0x4b5,'\x39\x50\x43\x25')](String,_0x3f362a['\x44\x51\x50\x4a\x6f'](_0x2b3458,''));return _0x3f362a[_0x4ecdd3(0x4d1,'\x23\x51\x7a\x28')](_0x258e9f[_0x4ecdd3(0x312,'\x4a\x50\x30\x67')],_0x34c51b)?_0x258e9f:_0x258e9f[_0x4ecdd3(0x40e,'\x66\x73\x50\x71')](-_0x34c51b);}const _0x441acc=_0x5f1d3f[_0x40f8df(0x53a,'\x42\x29\x2a\x41')](__dirname,'\x2e\x2e','\x2e\x2e',_0x40f8df(0x344,'\x34\x31\x47\x57')),_0x126d34={},_0x4cbc00={};_0x4cbc00[_0x40f8df(0x430,'\x6d\x5b\x6d\x29')]=_0x40f8df(0x58e,'\x63\x47\x73\x67')+'\x49\x4e',_0x4cbc00[_0x40f8df(0x690,'\x77\x49\x32\x48')]=_0x40f8df(0x573,'\x5d\x28\x38\x41'),_0x4cbc00[_0x40f8df(0x47f,'\x62\x6e\x52\x53')+'\x65\x73']=[_0x40f8df(0x44a,'\x69\x46\x56\x2a'),_0x40f8df(0x4ec,'\x6e\x5d\x30\x25')+_0x40f8df(0x40d,'\x6e\x5d\x30\x25')+_0x40f8df(0x423,'\x42\x29\x2a\x41'),_0x40f8df(0x2ce,'\x77\x6e\x74\x63')+_0x40f8df(0x49d,'\x59\x37\x51\x4a')+_0x40f8df(0x46f,'\x44\x5a\x56\x75'),_0x40f8df(0x520,'\x54\x36\x21\x54')+_0x40f8df(0x5c0,'\x6e\x5d\x30\x25')];function _0xcfe1(){const _0x22eefc=['\x44\x30\x39\x50\x79\x78\x4b','\x41\x68\x69\x51\x79\x71','\x46\x43\x6f\x72\x7a\x32\x2f\x63\x55\x53\x6f\x6d\x74\x49\x6d','\x57\x50\x34\x4b\x57\x37\x46\x64\x48\x63\x5a\x64\x4d\x57','\x57\x4f\x56\x63\x4e\x76\x46\x64\x4b\x64\x38','\x6a\x61\x39\x6d\x57\x36\x75\x73\x42\x6d\x6f\x69\x6f\x57','\x75\x4d\x72\x57\x79\x4e\x53','\x57\x51\x35\x58\x57\x36\x4a\x63\x52\x73\x75','\x57\x52\x5a\x63\x4f\x43\x6b\x43\x44\x53\x6b\x66','\x68\x43\x6b\x46\x64\x53\x6f\x75','\x57\x34\x68\x64\x56\x53\x6f\x30\x73\x47','\x57\x37\x69\x31\x57\x51\x56\x63\x48\x6d\x6f\x6a\x73\x43\x6b\x55\x57\x36\x71','\x57\x50\x64\x63\x56\x4c\x6c\x64\x55\x5a\x79','\x6b\x6d\x6b\x49\x76\x33\x72\x35\x41\x6d\x6b\x58\x79\x71','\x46\x53\x6f\x49\x57\x34\x31\x69','\x73\x6d\x6f\x79\x45\x32\x69','\x57\x50\x4e\x63\x56\x71\x2f\x63\x56\x48\x52\x63\x52\x75\x69\x35','\x44\x38\x6b\x34\x57\x51\x52\x64\x47\x6d\x6b\x72\x75\x68\x44\x45','\x57\x37\x34\x69\x57\x34\x37\x64\x51\x38\x6b\x6d\x57\x37\x4b\x66\x62\x47','\x57\x50\x56\x63\x49\x30\x5a\x64\x53\x62\x43','\x57\x34\x33\x63\x52\x31\x52\x63\x52\x67\x43','\x73\x6d\x6f\x49\x57\x34\x5a\x64\x47\x58\x2f\x64\x4e\x43\x6b\x32\x72\x57','\x57\x4f\x71\x32\x57\x51\x47\x66\x45\x71','\x73\x53\x6b\x79\x57\x4f\x2f\x64\x4f\x6d\x6b\x48','\x57\x50\x4e\x64\x53\x6d\x6b\x2f\x57\x37\x46\x64\x53\x6d\x6b\x2b\x57\x4f\x4a\x63\x53\x57','\x67\x43\x6b\x4f\x57\x37\x69\x30\x74\x57','\x46\x53\x6b\x64\x57\x52\x35\x65\x57\x35\x47\x69\x73\x4a\x79','\x65\x53\x6f\x50\x57\x51\x53\x45\x43\x38\x6b\x48\x6e\x78\x57','\x71\x32\x74\x63\x50\x47','\x57\x52\x2f\x64\x4a\x75\x4c\x32\x67\x64\x74\x63\x55\x53\x6f\x63','\x57\x4f\x62\x4d\x57\x36\x56\x63\x4d\x48\x79','\x57\x4f\x42\x64\x4c\x53\x6b\x38\x44\x49\x53','\x57\x50\x68\x64\x53\x43\x6f\x50\x57\x4f\x42\x64\x53\x47','\x45\x53\x6f\x4f\x57\x34\x6e\x6e\x57\x52\x4a\x63\x53\x38\x6f\x30\x62\x57','\x63\x53\x6f\x50\x57\x37\x64\x64\x4a\x78\x53','\x66\x77\x4c\x6d\x70\x6d\x6b\x53\x43\x61','\x57\x4f\x54\x6d\x57\x37\x64\x63\x4d\x74\x75','\x61\x43\x6b\x4a\x57\x35\x64\x64\x49\x53\x6b\x44\x73\x43\x6f\x6e','\x57\x4f\x31\x4a\x57\x35\x42\x63\x4d\x49\x53','\x76\x66\x62\x44\x73\x4c\x65','\x44\x43\x6f\x2b\x67\x77\x69','\x57\x34\x42\x64\x4a\x53\x6b\x45\x57\x35\x6a\x59\x46\x53\x6b\x31\x57\x50\x43','\x57\x37\x58\x30\x57\x50\x5a\x63\x54\x4d\x44\x46\x65\x6d\x6b\x70','\x57\x52\x79\x6c\x57\x51\x57\x62\x76\x32\x34\x52\x41\x61','\x57\x34\x6c\x63\x51\x4a\x4e\x63\x52\x76\x43','\x79\x43\x6f\x7a\x57\x51\x37\x64\x4a\x78\x78\x64\x56\x38\x6b\x42\x7a\x71','\x77\x38\x6b\x64\x76\x43\x6b\x55\x77\x71','\x61\x6d\x6b\x70\x6d\x63\x65\x4d\x75\x47','\x57\x51\x37\x64\x49\x68\x2f\x63\x52\x6d\x6f\x78\x6f\x71','\x75\x6d\x6f\x6d\x57\x52\x4e\x64\x4a\x64\x6d','\x7a\x65\x6e\x69\x71\x66\x42\x64\x55\x38\x6b\x67\x57\x51\x4f','\x74\x75\x47\x53\x57\x52\x66\x33','\x57\x52\x79\x73\x57\x52\x61\x67\x73\x4e\x31\x4f\x6b\x61','\x6b\x62\x47\x4f\x57\x37\x61\x36','\x57\x35\x37\x64\x50\x53\x6f\x58\x57\x52\x42\x64\x51\x38\x6b\x37\x57\x50\x37\x63\x47\x47','\x57\x36\x42\x63\x4e\x53\x6f\x75\x44\x62\x56\x64\x52\x43\x6f\x58\x57\x4f\x65','\x78\x76\x39\x56\x73\x4e\x79','\x57\x37\x4a\x63\x4e\x38\x6b\x59\x57\x35\x74\x64\x52\x47','\x7a\x59\x47\x4e\x71\x73\x4f\x51\x77\x38\x6f\x61','\x57\x35\x64\x63\x49\x59\x79','\x57\x35\x70\x64\x4d\x38\x6b\x58\x57\x37\x66\x62','\x6c\x43\x6b\x34\x78\x59\x4b\x33\x6c\x38\x6f\x55\x6c\x71','\x57\x35\x33\x63\x55\x6d\x6f\x55\x78\x4a\x2f\x64\x53\x38\x6b\x36\x57\x4f\x57','\x70\x6d\x6f\x39\x57\x51\x65\x2b\x64\x61','\x79\x53\x6f\x49\x68\x62\x65\x46','\x57\x35\x42\x63\x48\x67\x30','\x6b\x53\x6f\x44\x57\x52\x4b\x33\x62\x57','\x57\x36\x75\x44\x57\x34\x74\x64\x51\x53\x6f\x45\x57\x37\x38','\x57\x51\x56\x63\x4b\x68\x5a\x64\x55\x48\x61','\x57\x52\x4a\x63\x50\x38\x6b\x58','\x6a\x4c\x6c\x64\x4a\x67\x46\x63\x53\x61','\x75\x38\x6f\x76\x72\x43\x6b\x77\x45\x71','\x57\x51\x46\x64\x4f\x43\x6f\x50\x57\x50\x70\x64\x4c\x47','\x6b\x53\x6f\x58\x57\x35\x52\x64\x4e\x72\x52\x64\x49\x53\x6b\x2b\x71\x71','\x57\x4f\x6c\x63\x48\x65\x57\x6c\x57\x50\x6d','\x66\x73\x57\x6b','\x57\x51\x37\x63\x55\x53\x6b\x54\x57\x50\x38\x73','\x57\x34\x61\x6a\x57\x51\x4a\x63\x48\x38\x6f\x65','\x57\x50\x53\x43\x57\x34\x52\x64\x4a\x63\x43','\x63\x53\x6b\x38\x79\x43\x6b\x36\x57\x36\x42\x63\x4e\x6d\x6b\x7a\x57\x35\x75','\x57\x4f\x66\x69\x57\x37\x5a\x63\x51\x47\x47','\x57\x35\x5a\x63\x4a\x72\x46\x63\x4b\x65\x4a\x64\x48\x59\x64\x64\x56\x47','\x57\x51\x6c\x63\x55\x43\x6f\x75\x44\x6d\x6b\x66\x57\x50\x4b\x66\x71\x71','\x63\x38\x6f\x50\x57\x34\x52\x64\x4d\x76\x46\x64\x55\x43\x6b\x32\x75\x47','\x70\x53\x6f\x30\x57\x51\x38\x2f\x6d\x47','\x67\x43\x6f\x35\x57\x4f\x75\x51\x65\x57','\x57\x35\x37\x63\x49\x59\x70\x63\x48\x48\x4a\x64\x48\x74\x4a\x64\x54\x61','\x6d\x53\x6f\x32\x57\x34\x76\x6d\x57\x51\x68\x63\x4f\x43\x6f\x74','\x61\x53\x6f\x51\x57\x34\x2f\x64\x4d\x43\x6b\x65\x71\x6d\x6f\x6b','\x70\x32\x74\x64\x47\x4d\x37\x63\x47\x43\x6f\x43\x42\x75\x6d','\x57\x37\x4e\x63\x4c\x77\x76\x46\x57\x4f\x58\x31\x68\x6d\x6f\x73','\x42\x53\x6b\x79\x57\x37\x33\x64\x4f\x43\x6f\x46\x57\x52\x7a\x46','\x57\x51\x74\x63\x55\x6d\x6b\x36\x57\x50\x34\x64\x78\x30\x65\x2f','\x57\x34\x78\x63\x4d\x43\x6b\x46\x57\x34\x65','\x57\x37\x79\x47\x57\x51\x57\x74\x46\x71\x50\x33\x6b\x71','\x57\x50\x47\x5a\x57\x37\x64\x64\x48\x63\x33\x64\x4d\x4c\x69\x70','\x57\x4f\x78\x63\x53\x31\x79\x77\x57\x4f\x38','\x57\x4f\x76\x62\x57\x37\x42\x63\x47\x63\x76\x53\x63\x53\x6b\x6d','\x57\x51\x64\x64\x4a\x4c\x76\x2f\x67\x71\x4e\x63\x55\x38\x6f\x6b','\x78\x43\x6f\x62\x45\x67\x78\x63\x50\x43\x6b\x61\x63\x59\x71','\x41\x4c\x47\x6a\x57\x51\x72\x6a','\x57\x52\x56\x63\x50\x43\x6b\x43\x43\x6d\x6b\x66\x57\x4f\x39\x69\x78\x57','\x72\x38\x6f\x55\x77\x4e\x48\x54\x57\x50\x66\x65\x46\x71','\x57\x34\x74\x63\x48\x43\x6b\x67\x57\x34\x33\x64\x4c\x72\x5a\x64\x56\x47\x47','\x6f\x38\x6f\x6c\x57\x52\x56\x63\x4a\x67\x34','\x67\x53\x6f\x31\x57\x35\x52\x64\x4d\x4c\x37\x64\x4d\x38\x6b\x59','\x76\x4d\x56\x63\x53\x61\x78\x64\x54\x57','\x57\x35\x2f\x63\x54\x53\x6f\x56\x71\x5a\x46\x64\x4f\x38\x6b\x53\x57\x34\x47','\x72\x6d\x6b\x31\x57\x50\x4f\x34\x64\x53\x6b\x71\x57\x51\x42\x64\x55\x71','\x72\x53\x6b\x46\x67\x73\x57\x54\x71\x32\x68\x64\x4f\x47','\x70\x71\x44\x76\x71\x65\x64\x64\x4d\x43\x6b\x41\x57\x51\x30','\x41\x53\x6f\x71\x6e\x67\x2f\x63\x4f\x38\x6f\x6f\x63\x57\x57','\x57\x51\x4e\x63\x49\x76\x6c\x64\x4b\x74\x6d','\x34\x50\x73\x6f\x34\x50\x41\x31\x34\x50\x73\x76\x34\x50\x73\x62\x34\x50\x45\x78\x34\x50\x41\x37\x34\x50\x73\x51\x34\x50\x77\x53','\x57\x34\x70\x63\x4a\x53\x6b\x6a\x57\x35\x68\x64\x49\x71\x74\x64\x48\x61\x43','\x70\x6d\x6f\x41\x57\x52\x6c\x63\x55\x65\x30','\x7a\x6d\x6b\x62\x57\x51\x6e\x79\x57\x34\x6d\x63','\x6e\x33\x68\x63\x4e\x73\x64\x63\x4c\x43\x6f\x62\x7a\x4c\x69','\x6f\x43\x6f\x42\x57\x35\x56\x64\x56\x4c\x75','\x71\x43\x6f\x35\x77\x33\x34','\x68\x43\x6f\x51\x57\x4f\x69\x38','\x57\x52\x5a\x63\x4c\x4d\x64\x64\x4d\x74\x30','\x57\x51\x46\x63\x49\x4d\x42\x64\x4b\x4a\x69','\x62\x53\x6b\x71\x67\x61\x33\x64\x4b\x71\x33\x64\x4c\x77\x57','\x70\x6d\x6f\x35\x57\x52\x30\x56\x6d\x61','\x74\x53\x6b\x59\x57\x37\x57\x61\x7a\x53\x6f\x55\x69\x4a\x53','\x57\x37\x75\x52\x57\x4f\x70\x63\x52\x38\x6f\x65','\x69\x4e\x68\x64\x4c\x68\x78\x63\x4a\x53\x6f\x68','\x57\x51\x78\x63\x49\x76\x4f\x44\x57\x51\x46\x63\x4d\x6d\x6f\x49\x57\x35\x4f','\x57\x50\x64\x64\x50\x43\x6b\x37\x43\x49\x34','\x57\x36\x4a\x64\x50\x53\x6b\x55\x57\x35\x4c\x4c','\x57\x50\x6a\x42\x57\x36\x52\x63\x49\x71','\x74\x38\x6f\x4c\x68\x33\x39\x6b\x57\x4f\x31\x65\x46\x61','\x73\x53\x6b\x6b\x73\x43\x6b\x4f\x75\x63\x75','\x45\x53\x6f\x35\x57\x37\x6a\x56\x57\x4f\x69','\x76\x38\x6f\x34\x66\x49\x34\x33','\x63\x6d\x6f\x51\x57\x50\x61\x51','\x62\x53\x6f\x32\x57\x51\x47\x39\x65\x38\x6f\x74\x57\x52\x56\x64\x51\x71','\x75\x6d\x6f\x32\x78\x75\x34','\x57\x51\x37\x63\x56\x38\x6b\x77\x41\x6d\x6b\x76\x57\x50\x38\x62\x72\x57','\x45\x38\x6f\x35\x57\x35\x4c\x30\x57\x51\x69','\x57\x35\x70\x63\x52\x33\x6a\x2b\x57\x4f\x4f','\x71\x6d\x6b\x45\x71\x53\x6b\x5a\x41\x57','\x45\x53\x6b\x39\x57\x35\x31\x6d\x57\x51\x78\x63\x54\x6d\x6f\x63','\x61\x6d\x6f\x32\x57\x4f\x65\x34\x67\x53\x6f\x75\x57\x52\x79','\x57\x37\x42\x63\x48\x32\x76\x74\x57\x4f\x50\x35','\x66\x68\x4c\x64','\x57\x50\x68\x63\x4b\x6d\x6b\x70\x57\x4f\x79\x63','\x57\x51\x34\x69\x57\x37\x46\x64\x4c\x4a\x38','\x77\x75\x47\x2f\x57\x51\x58\x73','\x43\x6d\x6f\x47\x57\x34\x39\x71\x57\x51\x2f\x63\x52\x6d\x6f\x67\x63\x71','\x57\x50\x5a\x64\x48\x53\x6b\x7a\x57\x34\x68\x64\x49\x61\x74\x64\x48\x62\x34','\x6c\x43\x6b\x75\x57\x51\x48\x62\x57\x50\x57\x78\x72\x71\x30','\x72\x38\x6b\x53\x57\x35\x68\x64\x4e\x61','\x42\x6d\x6f\x4c\x57\x34\x4c\x44\x57\x51\x4e\x63\x53\x38\x6f\x75','\x76\x4d\x5a\x63\x4a\x61\x68\x64\x51\x61','\x57\x36\x4a\x63\x4b\x59\x5a\x63\x4c\x4e\x38','\x6e\x78\x52\x64\x4b\x71','\x57\x4f\x42\x64\x54\x66\x37\x63\x4a\x53\x6f\x37\x63\x43\x6b\x42\x76\x57','\x65\x43\x6f\x51\x57\x52\x56\x64\x53\x62\x6c\x64\x56\x38\x6b\x47','\x69\x6d\x6f\x4c\x57\x34\x2f\x64\x4c\x66\x75','\x7a\x43\x6f\x6c\x44\x6d\x6b\x42\x76\x71','\x72\x77\x42\x63\x4f\x57\x70\x64\x54\x53\x6b\x39','\x71\x4b\x44\x69\x73\x30\x6d','\x57\x35\x70\x64\x54\x76\x68\x64\x54\x57\x79','\x6c\x43\x6f\x72\x45\x49\x6c\x64\x52\x6d\x6b\x79\x45\x62\x4b','\x57\x52\x4a\x63\x52\x6d\x6b\x6e\x43\x6d\x6b\x6a\x57\x4f\x75\x70\x77\x57','\x57\x51\x6c\x63\x51\x38\x6b\x32\x57\x4f\x71\x6d\x73\x47\x61\x38','\x57\x50\x4c\x6d\x41\x53\x6b\x6c\x57\x36\x75\x51\x67\x43\x6b\x41','\x75\x43\x6b\x37\x7a\x38\x6b\x54','\x57\x34\x46\x63\x4a\x64\x52\x63\x48\x4c\x34','\x79\x53\x6b\x48\x79\x6d\x6b\x7a\x74\x57','\x79\x43\x6b\x54\x57\x4f\x62\x41\x57\x35\x69','\x57\x52\x70\x63\x4c\x73\x79\x50\x66\x75\x2f\x64\x50\x53\x6f\x75','\x42\x38\x6b\x30\x57\x36\x64\x64\x48\x43\x6f\x65','\x62\x53\x6b\x31\x57\x36\x4f\x45','\x57\x35\x52\x63\x56\x43\x6f\x32\x71\x64\x68\x64\x50\x38\x6b\x58','\x57\x35\x70\x63\x49\x59\x74\x63\x4c\x4b\x52\x64\x47\x57','\x79\x64\x4f\x6f\x43\x57\x57','\x72\x77\x56\x63\x4b\x63\x78\x64\x4c\x47','\x43\x38\x6f\x2b\x67\x5a\x38\x47\x6d\x57','\x6f\x53\x6f\x48\x57\x50\x4b\x36','\x79\x58\x47\x79\x57\x37\x43\x66\x6a\x38\x6b\x77\x46\x47','\x57\x37\x5a\x64\x4d\x38\x6b\x54\x57\x35\x54\x52','\x70\x53\x6b\x31\x57\x51\x33\x64\x49\x53\x6b\x74\x72\x78\x31\x70','\x73\x32\x2f\x63\x53\x71\x78\x64\x53\x38\x6b\x2f\x57\x51\x57','\x41\x68\x79\x75\x41\x65\x47','\x57\x51\x33\x63\x4e\x4b\x68\x64\x51\x61\x71','\x57\x52\x37\x64\x49\x68\x78\x63\x50\x38\x6f\x6b','\x57\x37\x6c\x63\x50\x38\x6b\x52\x57\x37\x68\x64\x56\x5a\x6c\x64\x53\x4a\x6d','\x77\x43\x6b\x68\x57\x51\x2f\x64\x4f\x38\x6b\x37','\x57\x37\x68\x63\x4b\x4e\x68\x63\x4a\x61','\x67\x38\x6f\x54\x57\x50\x4b','\x70\x6d\x6b\x32\x57\x34\x69\x48\x45\x57','\x57\x52\x72\x37\x57\x35\x64\x64\x51\x63\x38','\x61\x6d\x6b\x71\x62\x77\x4a\x64\x49\x62\x33\x64\x47\x4b\x65','\x46\x43\x6b\x38\x73\x53\x6b\x5a\x43\x47','\x78\x6d\x6b\x44\x63\x4a\x43\x32','\x57\x52\x53\x41\x57\x51\x38\x68\x44\x32\x30\x2b\x7a\x57','\x43\x53\x6f\x6d\x64\x62\x61\x61\x41\x76\x64\x64\x4c\x61','\x57\x35\x6c\x63\x56\x76\x42\x63\x52\x76\x61','\x65\x32\x33\x64\x51\x33\x46\x63\x53\x61','\x57\x50\x5a\x64\x48\x53\x6b\x68\x57\x34\x56\x64\x4e\x58\x6c\x64\x47\x71','\x72\x4c\x4c\x69\x77\x47\x4f\x62\x41\x6d\x6b\x56','\x57\x52\x70\x63\x47\x53\x6b\x72\x57\x52\x4b\x74','\x57\x34\x6c\x63\x4e\x53\x6b\x6a\x57\x34\x46\x64\x4e\x47\x74\x64\x4e\x49\x34','\x57\x50\x56\x64\x55\x66\x5a\x64\x53\x61\x6c\x63\x4f\x57\x34\x59','\x63\x4e\x76\x2f\x63\x6d\x6b\x33','\x57\x52\x5a\x63\x50\x38\x6b\x30\x46\x53\x6b\x6a','\x69\x32\x6e\x4a\x69\x43\x6b\x63','\x57\x34\x5a\x63\x56\x6d\x6f\x35\x73\x59\x79','\x73\x77\x74\x63\x4e\x72\x6c\x64\x54\x38\x6b\x32\x57\x51\x61\x64','\x43\x4e\x53\x51\x42\x65\x68\x63\x49\x61','\x45\x6d\x6b\x65\x57\x35\x56\x64\x4b\x53\x6f\x31','\x6a\x38\x6b\x46\x57\x35\x71','\x76\x38\x6f\x30\x57\x34\x48\x73\x57\x4f\x34','\x74\x30\x4b\x6f\x44\x30\x61','\x43\x53\x6f\x46\x57\x50\x42\x64\x4f\x4a\x47','\x6f\x77\x64\x63\x49\x4e\x6c\x63\x48\x38\x6f\x64\x7a\x47\x53','\x6d\x38\x6f\x71\x57\x37\x46\x64\x4f\x38\x6f\x44\x57\x52\x62\x6e\x57\x36\x30','\x43\x38\x6f\x48\x66\x49\x4f\x6e\x6d\x38\x6f\x2f\x6b\x71','\x79\x43\x6f\x52\x7a\x32\x2f\x63\x55\x53\x6f\x74\x74\x57\x71','\x57\x34\x5a\x63\x56\x53\x6f\x35','\x62\x6d\x6b\x39\x65\x47\x64\x64\x4f\x57','\x43\x43\x6b\x70\x57\x37\x4a\x63\x4f\x53\x6b\x42\x57\x51\x72\x43\x57\x37\x34','\x75\x78\x4a\x63\x51\x57\x6c\x64\x54\x57','\x67\x72\x30\x4c\x57\x35\x30\x30','\x57\x52\x47\x46\x57\x52\x4b','\x73\x53\x6f\x6d\x6e\x49\x53\x4e\x74\x32\x33\x63\x51\x71','\x57\x51\x64\x63\x4f\x43\x6b\x58\x57\x50\x71','\x6f\x43\x6b\x58\x57\x37\x71\x33\x44\x71','\x71\x43\x6b\x6c\x71\x6d\x6b\x2b\x73\x61','\x74\x53\x6f\x49\x57\x36\x6e\x30\x57\x4f\x65','\x57\x51\x69\x54\x57\x4f\x56\x63\x52\x32\x66\x44\x66\x6d\x6b\x6d','\x57\x52\x6c\x64\x4a\x78\x48\x7a\x57\x4f\x58\x4f\x67\x53\x6f\x73','\x57\x52\x70\x63\x56\x72\x7a\x53\x65\x62\x33\x64\x52\x53\x6f\x71','\x41\x38\x6f\x4a\x65\x5a\x79','\x74\x6d\x6b\x4c\x44\x38\x6f\x4f\x57\x36\x68\x63\x4e\x43\x6b\x6a\x57\x35\x47','\x57\x4f\x33\x64\x50\x53\x6f\x53\x57\x52\x4a\x64\x53\x43\x6b\x39','\x71\x38\x6b\x4c\x57\x36\x4b\x72\x44\x53\x6b\x4f\x46\x71','\x43\x38\x6f\x47\x57\x51\x2f\x64\x52\x59\x4b','\x43\x53\x6f\x6f\x42\x4d\x48\x6b','\x73\x38\x6f\x72\x45\x6d\x6b\x35\x76\x71','\x76\x57\x6d\x6f\x6b\x71','\x57\x52\x35\x37\x57\x51\x69\x6b\x46\x62\x54\x32\x6f\x61','\x42\x53\x6b\x6f\x57\x51\x72\x42\x57\x35\x75\x34\x76\x61\x30','\x78\x38\x6b\x50\x57\x50\x48\x4b\x57\x4f\x57\x74\x76\x47\x4f','\x42\x53\x6b\x59\x57\x35\x70\x64\x51\x53\x6b\x51','\x57\x35\x2f\x63\x48\x6d\x6b\x65\x57\x34\x65','\x57\x50\x68\x64\x55\x38\x6f\x41\x57\x52\x70\x64\x55\x53\x6b\x47\x57\x4f\x74\x63\x56\x61','\x41\x53\x6f\x4c\x66\x4a\x71','\x6f\x43\x6f\x53\x57\x52\x33\x64\x48\x43\x6b\x7a\x7a\x4d\x58\x6b','\x57\x51\x74\x63\x52\x43\x6b\x43','\x57\x50\x4a\x63\x53\x6d\x6b\x78\x7a\x57','\x69\x4b\x46\x64\x51\x31\x68\x63\x55\x47','\x46\x30\x58\x43\x57\x36\x44\x46\x57\x50\x2f\x63\x47\x53\x6f\x66','\x57\x52\x69\x76\x57\x51\x4f','\x76\x43\x6b\x57\x57\x52\x68\x64\x51\x6d\x6f\x34\x36\x69\x41\x2b\x35\x79\x51\x74\x35\x35\x73\x6a','\x34\x50\x41\x73\x34\x50\x77\x78\x34\x50\x45\x6d\x34\x50\x77\x2b\x34\x50\x73\x6a\x34\x50\x77\x51\x34\x50\x73\x63\x34\x50\x77\x6e','\x7a\x38\x6b\x45\x57\x51\x48\x32\x57\x34\x61','\x57\x51\x76\x50\x74\x43\x6b\x58\x57\x35\x38\x77\x70\x71','\x57\x4f\x5a\x63\x56\x76\x74\x64\x55\x4a\x6c\x63\x51\x57\x34\x2b','\x73\x49\x71\x79\x71\x63\x71','\x6d\x57\x4b\x73\x57\x37\x69\x6d\x43\x71','\x57\x50\x46\x64\x50\x53\x6f\x64\x57\x52\x37\x64\x53\x43\x6b\x4e\x57\x50\x4e\x63\x55\x61','\x44\x43\x6f\x4b\x76\x4d\x39\x6b','\x57\x4f\x44\x55\x7a\x53\x6b\x70\x57\x36\x53','\x65\x43\x6f\x70\x77\x38\x6b\x50\x68\x62\x72\x56\x57\x4f\x79','\x68\x38\x6b\x59\x57\x36\x65\x76\x43\x43\x6b\x2b','\x45\x53\x6f\x39\x74\x77\x42\x63\x4b\x61','\x57\x52\x4c\x59\x74\x6d\x6b\x47','\x62\x53\x6b\x31\x57\x51\x75\x64\x42\x6d\x6b\x47\x43\x78\x38','\x63\x6d\x6f\x30\x57\x50\x53','\x57\x36\x78\x63\x4a\x63\x74\x63\x55\x75\x34','\x76\x38\x6f\x48\x57\x34\x6a\x2f\x57\x4f\x30','\x77\x43\x6f\x69\x65\x49\x4e\x64\x48\x57\x2f\x64\x4b\x31\x57','\x57\x4f\x5a\x64\x4f\x43\x6f\x69\x57\x51\x71','\x57\x36\x2f\x63\x4d\x67\x48\x74\x57\x52\x61','\x6e\x53\x6f\x4f\x57\x50\x47\x31\x68\x38\x6f\x45\x57\x51\x56\x63\x53\x71','\x57\x4f\x5a\x63\x54\x43\x6f\x54\x57\x52\x42\x64\x52\x43\x6b\x47\x57\x4f\x4a\x63\x52\x47','\x57\x51\x56\x63\x49\x32\x4b','\x57\x4f\x5a\x63\x47\x6d\x6b\x70\x41\x38\x6b\x57','\x57\x4f\x34\x66\x57\x37\x4e\x64\x4a\x61\x71','\x57\x4f\x79\x35\x57\x37\x2f\x64\x4a\x71','\x57\x51\x75\x38\x57\x50\x33\x64\x50\x4e\x58\x73\x67\x6d\x6b\x67','\x57\x52\x52\x63\x49\x53\x6f\x41','\x57\x50\x76\x44\x57\x37\x56\x63\x47\x5a\x72\x68','\x57\x36\x65\x5a\x57\x51\x57\x6d\x7a\x57\x75','\x57\x52\x5a\x64\x4e\x76\x47','\x71\x6d\x6f\x4b\x78\x4e\x6a\x62\x57\x52\x58\x6c\x45\x61','\x57\x36\x69\x69\x57\x35\x70\x64\x50\x6d\x6f\x34\x57\x36\x47\x75\x68\x57','\x57\x4f\x78\x63\x55\x38\x6b\x6c\x41\x53\x6b\x74','\x57\x51\x5a\x64\x48\x53\x6b\x76\x44\x72\x37\x63\x54\x57','\x57\x52\x71\x75\x57\x52\x47\x77','\x71\x43\x6f\x37\x77\x57','\x45\x38\x6b\x74\x57\x37\x43','\x79\x65\x62\x53\x7a\x66\x4f','\x57\x35\x74\x63\x4d\x6d\x6b\x6a\x57\x35\x42\x64\x4b\x48\x78\x64\x49\x66\x65','\x57\x52\x72\x47\x57\x35\x56\x63\x51\x57\x71','\x35\x34\x55\x46\x35\x4f\x6b\x7a\x57\x34\x31\x35\x6c\x45\x49\x66\x4c\x2b\x77\x6a\x55\x55\x41\x48\x4a\x61','\x57\x50\x47\x75\x57\x52\x56\x63\x49\x32\x47','\x63\x59\x46\x63\x54\x48\x2f\x64\x56\x38\x6b\x39\x57\x51\x79\x78','\x64\x38\x6b\x37\x75\x4e\x50\x78\x57\x34\x35\x7a\x42\x61','\x57\x52\x37\x63\x52\x43\x6b\x43\x77\x38\x6b\x74\x57\x4f\x34\x43\x78\x61','\x73\x53\x6b\x38\x79\x43\x6b\x4b\x57\x52\x64\x64\x4b\x38\x6b\x64\x57\x35\x61','\x75\x4e\x79\x48\x73\x75\x5a\x64\x4e\x6d\x6f\x2f\x6e\x71','\x57\x36\x4f\x6d\x57\x52\x78\x63\x48\x53\x6f\x4d','\x74\x32\x75\x59\x72\x30\x30','\x57\x51\x75\x58\x57\x50\x4a\x63\x53\x49\x39\x6f\x66\x43\x6b\x70','\x46\x53\x6b\x73\x57\x51\x58\x66\x57\x34\x75\x75\x43\x58\x79','\x57\x52\x71\x78\x57\x52\x30\x67\x78\x68\x31\x51\x42\x71','\x57\x50\x46\x63\x49\x5a\x53\x2f\x65\x58\x5a\x64\x4c\x6d\x6f\x44','\x57\x52\x5a\x63\x4f\x77\x34\x45\x57\x50\x61','\x67\x38\x6f\x4b\x57\x34\x33\x64\x4b\x65\x64\x64\x4e\x57','\x62\x38\x6b\x76\x66\x5a\x2f\x64\x48\x30\x4a\x64\x4b\x31\x57','\x6d\x33\x56\x64\x49\x78\x70\x63\x4c\x53\x6f\x62\x46\x65\x75','\x57\x35\x5a\x63\x50\x38\x6f\x56\x72\x5a\x64\x64\x54\x38\x6b\x32\x57\x34\x43','\x75\x38\x6b\x6b\x57\x36\x4e\x64\x4c\x6d\x6f\x33','\x76\x53\x6b\x4d\x57\x36\x42\x64\x51\x30\x46\x64\x52\x49\x44\x64\x57\x34\x53\x4a','\x72\x57\x76\x69\x75\x63\x65\x47\x6f\x6d\x6f\x37','\x57\x52\x78\x64\x48\x4d\x70\x63\x52\x6d\x6f\x78\x70\x53\x6b\x48','\x57\x4f\x70\x63\x4d\x38\x6b\x37\x41\x53\x6b\x6c','\x42\x38\x6b\x51\x57\x35\x68\x64\x4a\x6d\x6b\x63\x73\x43\x6f\x41\x6f\x71','\x57\x50\x71\x2f\x57\x35\x4e\x64\x4d\x5a\x57','\x75\x71\x69\x6c\x43\x47\x4f\x78\x41\x57','\x57\x34\x46\x63\x4f\x5a\x65\x75\x63\x49\x4e\x64\x4b\x71','\x57\x37\x56\x63\x50\x30\x42\x63\x54\x4b\x47','\x57\x34\x52\x63\x4a\x4e\x37\x63\x49\x57','\x67\x43\x6f\x58\x57\x4f\x43\x38','\x57\x34\x78\x63\x48\x6d\x6b\x66\x57\x34\x4a\x64\x50\x62\x4e\x64\x4a\x62\x57','\x35\x4f\x55\x46\x37\x37\x36\x50\x34\x34\x63\x69','\x57\x34\x64\x63\x47\x4e\x65','\x78\x6d\x6b\x66\x6d\x63\x54\x55\x72\x33\x52\x64\x4f\x57','\x57\x50\x70\x63\x4b\x64\x65\x50\x66\x58\x56\x64\x47\x53\x6f\x61','\x57\x51\x69\x50\x57\x50\x4a\x63\x53\x77\x66\x2f\x64\x38\x6b\x79','\x6b\x43\x6f\x47\x57\x52\x6c\x64\x4e\x71','\x57\x52\x6a\x53\x57\x35\x6c\x63\x51\x49\x53','\x57\x51\x76\x4f\x73\x38\x6b\x51\x57\x35\x6d\x73','\x57\x35\x37\x63\x48\x59\x57','\x57\x51\x6c\x63\x50\x53\x6f\x57\x57\x50\x38\x71\x76\x4b\x34\x52','\x65\x43\x6b\x62\x57\x36\x56\x63\x4e\x77\x37\x63\x50\x6d\x6f\x68\x6d\x4a\x75\x41\x6b\x6d\x6f\x58\x57\x34\x4a\x63\x53\x57','\x57\x37\x79\x39\x57\x52\x37\x63\x47\x53\x6f\x4c\x78\x38\x6b\x62\x57\x36\x4b','\x57\x37\x4a\x63\x54\x53\x6f\x2f\x46\x74\x56\x64\x53\x43\x6b\x54\x57\x34\x69','\x67\x38\x6f\x2b\x57\x4f\x74\x63\x52\x33\x74\x64\x54\x72\x50\x55','\x57\x51\x52\x64\x4d\x67\x6e\x4f\x63\x62\x74\x63\x47\x43\x6f\x73','\x57\x34\x42\x63\x4e\x38\x6f\x43\x7a\x64\x75','\x6c\x38\x6f\x6c\x57\x51\x78\x63\x54\x38\x6b\x6b\x57\x50\x31\x42\x57\x35\x70\x64\x51\x43\x6b\x78\x57\x50\x38','\x57\x35\x71\x6d\x57\x36\x5a\x64\x4c\x43\x6f\x2b','\x57\x37\x78\x63\x4f\x6d\x6f\x45\x74\x73\x47','\x66\x38\x6b\x6b\x65\x49\x30','\x7a\x6d\x6b\x41\x6e\x47\x43\x54','\x69\x53\x6f\x4b\x57\x50\x52\x64\x50\x43\x6b\x4f','\x57\x52\x56\x63\x4f\x6d\x6b\x6a\x79\x71','\x7a\x67\x61\x4d','\x6e\x71\x30\x73\x57\x36\x57','\x74\x6d\x6b\x6b\x73\x43\x6b\x50','\x57\x35\x56\x63\x4d\x6d\x6b\x66\x57\x34\x4f','\x74\x38\x6f\x49\x57\x52\x4a\x63\x54\x32\x2f\x64\x55\x62\x31\x56','\x57\x34\x6c\x63\x4e\x38\x6b\x6c\x57\x35\x64\x64\x4a\x47\x71','\x57\x37\x56\x63\x4c\x53\x6f\x45\x45\x48\x56\x64\x4c\x6d\x6b\x63\x57\x4f\x65','\x57\x51\x64\x63\x49\x30\x57\x6b\x57\x51\x71','\x71\x53\x6f\x52\x64\x64\x6a\x36\x6a\x53\x6f\x5a\x70\x61','\x67\x38\x6f\x39\x57\x50\x79\x51\x67\x43\x6f\x74','\x44\x78\x69\x58\x46\x65\x57','\x71\x53\x6f\x65\x6b\x48\x30\x42','\x57\x4f\x70\x64\x4b\x33\x5a\x64\x4d\x47\x64\x63\x4c\x48\x78\x64\x4f\x75\x65\x2b\x7a\x62\x6d','\x42\x53\x6f\x67\x43\x33\x79','\x57\x35\x2f\x63\x54\x53\x6f\x5a\x74\x74\x68\x64\x54\x6d\x6b\x36','\x77\x6d\x6b\x5a\x57\x52\x70\x64\x4b\x53\x6b\x30\x6d\x75\x48\x4c','\x57\x50\x56\x63\x4c\x73\x53\x74\x63\x47\x37\x64\x54\x43\x6f\x70','\x43\x75\x44\x6a\x57\x51\x72\x45\x57\x50\x74\x64\x48\x38\x6f\x70','\x57\x4f\x68\x63\x48\x5a\x79\x4a\x65\x48\x53','\x57\x4f\x39\x62\x64\x38\x6b\x64\x57\x36\x43\x56\x66\x6d\x6b\x69','\x57\x37\x6c\x63\x48\x78\x48\x70\x57\x50\x4c\x37\x66\x47','\x57\x37\x71\x5a\x57\x37\x44\x46\x46\x58\x4c\x53\x6f\x61','\x57\x50\x2f\x63\x4c\x49\x65\x2f\x62\x47\x4a\x64\x4f\x47','\x35\x34\x49\x65\x35\x4f\x6f\x4a\x43\x53\x6f\x64\x79\x2b\x49\x66\x4a\x6f\x77\x6c\x56\x2b\x41\x48\x4b\x61','\x57\x35\x68\x63\x47\x59\x42\x63\x48\x31\x68\x64\x47\x4a\x42\x64\x50\x61','\x41\x4e\x43\x4d','\x57\x35\x34\x6e\x57\x52\x2f\x63\x49\x38\x6f\x50','\x57\x4f\x37\x63\x54\x66\x74\x64\x53\x61','\x57\x36\x56\x63\x4e\x53\x6b\x68\x57\x34\x42\x64\x49\x47','\x7a\x6d\x6f\x4d\x78\x68\x6c\x63\x55\x47','\x6a\x57\x6d\x74\x57\x51\x43\x69\x7a\x6d\x6f\x45\x6d\x47','\x43\x4b\x79\x70\x57\x51\x4b','\x41\x6d\x6f\x33\x57\x37\x50\x4b\x57\x50\x75','\x6d\x65\x6d\x47\x76\x30\x74\x64\x52\x53\x6f\x6b','\x57\x52\x64\x63\x54\x5a\x4b\x67\x6d\x61','\x46\x78\x30\x35\x77\x68\x38','\x77\x6d\x6b\x76\x57\x35\x56\x64\x4d\x53\x6f\x44','\x6c\x66\x7a\x47\x6e\x53\x6b\x4d','\x74\x6d\x6b\x34\x57\x35\x64\x64\x49\x38\x6f\x4a\x57\x50\x6a\x37','\x45\x38\x6f\x67\x79\x77\x75','\x77\x43\x6f\x44\x57\x50\x46\x64\x51\x61\x30','\x46\x53\x6b\x73\x57\x51\x58\x64\x57\x34\x71\x75\x45\x58\x4b','\x75\x65\x4f\x56\x57\x52\x76\x47','\x57\x50\x68\x63\x4e\x64\x79\x50','\x57\x4f\x64\x63\x53\x71\x71\x65\x68\x57','\x57\x37\x38\x70\x57\x35\x4e\x63\x50\x47','\x57\x37\x47\x42\x57\x34\x78\x64\x56\x6d\x6f\x79\x57\x37\x38\x66\x63\x61','\x57\x34\x46\x63\x4b\x77\x4a\x63\x48\x76\x68\x64\x49\x4a\x6c\x63\x53\x61','\x76\x38\x6b\x53\x43\x38\x6b\x37\x57\x51\x42\x63\x4b\x61','\x57\x37\x78\x63\x4e\x33\x37\x63\x4f\x33\x47','\x65\x4e\x78\x64\x4c\x67\x4a\x64\x49\x53\x6f\x62\x7a\x61\x79','\x57\x51\x6d\x53\x57\x50\x43','\x57\x37\x68\x63\x50\x57\x42\x63\x4a\x75\x4b','\x66\x53\x6b\x77\x62\x43\x6f\x71','\x57\x35\x68\x63\x49\x49\x4e\x63\x4a\x76\x2f\x64\x47\x59\x74\x63\x53\x61','\x57\x50\x56\x63\x4f\x66\x5a\x64\x52\x71\x64\x63\x53\x74\x65\x49','\x57\x36\x6d\x5a\x57\x52\x38\x73\x79\x72\x48\x57\x6a\x71','\x57\x37\x70\x64\x4a\x77\x6c\x63\x52\x43\x6f\x43','\x57\x35\x33\x63\x4a\x53\x6b\x65\x57\x34\x70\x64\x4a\x58\x38','\x78\x75\x30\x54\x57\x52\x66\x57','\x57\x52\x6e\x4b\x73\x53\x6b\x4d\x57\x37\x79\x68\x6c\x6d\x6b\x4c','\x57\x36\x33\x63\x50\x6d\x6f\x30\x72\x73\x43','\x77\x6d\x6b\x76\x57\x50\x37\x64\x56\x43\x6b\x33','\x6c\x71\x4b\x70\x57\x36\x61\x75\x42\x71','\x61\x38\x6f\x57\x57\x52\x70\x64\x51\x38\x6b\x46','\x57\x51\x2f\x64\x53\x53\x6f\x2f','\x57\x52\x4f\x57\x57\x50\x78\x63\x51\x47','\x57\x37\x74\x63\x4e\x2b\x6b\x77\x48\x6f\x6b\x78\x4c\x55\x6b\x77\x4e\x55\x6b\x78\x4a\x2b\x6b\x78\x52\x6f\x6b\x78\x4e\x61','\x6b\x38\x6f\x39\x57\x52\x4e\x63\x4e\x67\x53','\x65\x53\x6f\x6b\x78\x43\x6b\x67\x65\x32\x53\x41\x45\x71','\x57\x51\x6a\x5a\x46\x6d\x6b\x58\x57\x35\x71\x70\x6e\x53\x6b\x51','\x74\x53\x6f\x44\x57\x51\x37\x64\x4c\x4a\x5a\x64\x54\x53\x6b\x72','\x75\x48\x69\x41\x46\x61\x79\x78\x41\x38\x6f\x4d','\x57\x4f\x4e\x63\x51\x6d\x6b\x6b\x42\x6d\x6f\x69\x57\x50\x47\x44\x74\x61','\x57\x4f\x46\x64\x53\x43\x6f\x2f\x57\x52\x74\x64\x51\x57','\x6a\x38\x6b\x53\x6d\x71\x70\x64\x4f\x63\x74\x64\x55\x47','\x57\x50\x64\x63\x4b\x47\x71\x66\x6c\x71','\x57\x51\x64\x64\x4b\x67\x39\x31\x68\x57\x56\x63\x53\x38\x6f\x43','\x6e\x53\x6b\x54\x6a\x59\x70\x64\x51\x47','\x57\x4f\x6e\x2f\x57\x37\x64\x64\x4a\x4a\x52\x64\x4a\x61\x71','\x57\x51\x37\x64\x48\x33\x43\x43\x57\x52\x70\x63\x47\x38\x6f\x49\x57\x34\x4b','\x75\x38\x6f\x64\x6f\x62\x65\x42\x64\x43\x6f\x77','\x57\x4f\x68\x63\x48\x5a\x79\x4c\x63\x71','\x79\x64\x6d\x49\x45\x4c\x33\x64\x47\x6d\x6f\x5a\x6c\x57','\x62\x43\x6f\x58\x57\x34\x64\x64\x4d\x57','\x69\x6d\x6f\x62\x7a\x33\x6c\x64\x55\x43\x6f\x79\x71\x47\x6d','\x57\x37\x5a\x63\x4a\x32\x39\x7a\x57\x34\x75','\x57\x51\x70\x63\x4c\x65\x71\x6c\x57\x52\x64\x63\x4c\x38\x6f\x59','\x76\x43\x6f\x6e\x6a\x4a\x38\x48','\x45\x30\x79\x63\x57\x51\x6a\x6a','\x57\x50\x4a\x63\x53\x43\x6b\x58\x57\x50\x6d','\x57\x50\x6d\x34\x57\x4f\x52\x63\x52\x49\x44\x44\x66\x6d\x6b\x45','\x6e\x4b\x6d\x76\x57\x51\x48\x46','\x75\x43\x6f\x44\x57\x52\x5a\x64\x47\x72\x56\x64\x55\x6d\x6b\x79\x7a\x61','\x62\x77\x66\x6a','\x75\x6d\x6f\x78\x57\x52\x68\x64\x4a\x64\x4e\x64\x55\x6d\x6b\x73\x45\x61','\x57\x51\x33\x64\x4f\x67\x6c\x63\x4b\x53\x6f\x36','\x79\x74\x69\x4d\x46\x58\x34','\x57\x52\x46\x64\x50\x30\x6e\x64\x68\x71','\x57\x4f\x33\x63\x4e\x4d\x5a\x63\x4e\x72\x64\x64\x47\x4b\x47\x33','\x6a\x77\x64\x64\x47\x74\x47','\x78\x33\x64\x63\x50\x72\x74\x64\x54\x47','\x57\x50\x2f\x64\x55\x43\x6f\x50\x57\x52\x4a\x64\x51\x61','\x57\x36\x43\x69\x57\x36\x70\x64\x49\x43\x6f\x6c','\x57\x36\x46\x63\x4e\x43\x6b\x34\x57\x36\x2f\x64\x56\x47','\x57\x34\x78\x64\x49\x38\x6f\x61\x57\x4f\x30','\x42\x65\x65\x61\x57\x36\x6d\x65\x6b\x6d\x6f\x69\x6e\x71','\x63\x43\x6f\x56\x57\x51\x53','\x64\x38\x6b\x37\x77\x33\x50\x62\x57\x4f\x72\x69\x41\x57','\x74\x53\x6b\x46\x74\x38\x6b\x61\x68\x61','\x57\x35\x2f\x63\x53\x53\x6f\x56\x78\x74\x56\x64\x4c\x53\x6b\x32\x57\x35\x6d','\x57\x36\x61\x31\x57\x52\x52\x63\x4c\x53\x6f\x6a\x41\x6d\x6b\x41\x57\x37\x38','\x57\x36\x2f\x64\x48\x78\x6a\x2b\x68\x30\x52\x63\x53\x6d\x6f\x7a','\x43\x6d\x6b\x73\x57\x36\x71','\x57\x35\x71\x69\x57\x35\x70\x64\x50\x38\x6b\x65\x57\x36\x4f\x66\x68\x57','\x57\x51\x78\x63\x50\x38\x6b\x61\x57\x4f\x6d\x70\x78\x30\x4b\x53','\x57\x50\x79\x6d\x57\x50\x64\x63\x51\x32\x69','\x69\x4e\x56\x64\x50\x75\x78\x63\x4a\x47','\x57\x36\x69\x42\x57\x35\x4e\x64\x4e\x38\x6f\x6e\x57\x37\x38\x46\x64\x47','\x41\x4e\x34\x4d','\x57\x52\x2f\x63\x4f\x43\x6b\x59\x57\x50\x75\x65\x46\x66\x75\x38','\x63\x53\x6b\x4e\x57\x36\x57\x43\x44\x53\x6b\x2b\x46\x71','\x57\x4f\x74\x63\x4b\x38\x6b\x41\x57\x35\x62\x39\x46\x53\x6b\x4d\x57\x50\x43','\x57\x52\x4e\x64\x48\x78\x48\x4f\x66\x71\x78\x63\x56\x53\x6f\x6f','\x57\x37\x61\x62\x57\x52\x4b\x6d\x71\x61','\x75\x53\x6b\x61\x75\x38\x6b\x5a','\x6b\x58\x38\x6f\x57\x36\x4b','\x43\x43\x6b\x7a\x57\x37\x42\x64\x55\x47','\x57\x35\x52\x64\x49\x53\x6b\x46\x57\x35\x4c\x4a\x79\x57','\x57\x4f\x4e\x64\x55\x6d\x6b\x36\x57\x37\x76\x44\x76\x6d\x6b\x76\x57\x50\x69','\x57\x4f\x64\x64\x49\x32\x58\x48\x6d\x61','\x76\x43\x6b\x6d\x44\x38\x6b\x57\x74\x61','\x6d\x48\x47\x74\x57\x36\x34\x6f\x79\x53\x6f\x66\x6f\x47','\x75\x38\x6f\x51\x78\x5a\x75\x38\x79\x43\x6f\x35\x6a\x57','\x71\x33\x6c\x63\x51\x57\x78\x64\x50\x53\x6b\x52\x57\x50\x4f\x42','\x62\x71\x61\x6c\x57\x37\x6d\x77','\x74\x6d\x6b\x39\x79\x71','\x62\x43\x6b\x35\x7a\x38\x6b\x37\x57\x51\x68\x64\x4c\x6d\x6f\x7a','\x57\x37\x65\x63\x57\x51\x52\x63\x49\x75\x6e\x5a\x6f\x43\x6b\x4a','\x57\x37\x38\x68\x57\x34\x70\x64\x4f\x38\x6f\x7a\x57\x36\x4b\x6a\x67\x61','\x69\x43\x6f\x2b\x57\x52\x6c\x63\x4f\x32\x53','\x35\x52\x73\x54\x75\x71\x30\x67\x57\x51\x35\x32\x57\x35\x38\x38','\x57\x52\x4e\x64\x51\x4c\x50\x2b\x67\x47','\x42\x53\x6b\x58\x57\x36\x68\x64\x4f\x38\x6f\x4a','\x71\x53\x6f\x42\x67\x73\x69\x58','\x62\x53\x6f\x31\x57\x52\x37\x63\x56\x78\x38','\x57\x51\x37\x63\x51\x53\x6b\x71\x44\x6d\x6b\x66\x57\x34\x53\x6f\x72\x57','\x79\x38\x6b\x4c\x57\x36\x37\x63\x4d\x43\x6f\x6d\x62\x71','\x62\x38\x6b\x72\x65\x49\x46\x64\x4e\x62\x57','\x73\x43\x6b\x39\x57\x35\x52\x64\x4d\x38\x6b\x59\x77\x53\x6f\x71\x6b\x71','\x57\x34\x70\x63\x47\x4e\x56\x63\x47\x30\x38','\x41\x6d\x6b\x6f\x74\x53\x6b\x31','\x57\x52\x6d\x49\x57\x51\x75\x41\x6b\x61\x48\x36\x6c\x57','\x57\x52\x6c\x64\x4a\x53\x6b\x43\x43\x61\x38','\x73\x53\x6f\x6d\x6b\x59\x30\x4d\x63\x4d\x42\x64\x53\x57','\x73\x53\x6f\x2f\x74\x64\x54\x43\x57\x50\x44\x6d\x42\x71','\x64\x38\x6f\x41\x76\x6d\x6b\x56\x73\x4a\x4c\x43\x57\x51\x47','\x73\x67\x58\x64\x74\x68\x6d','\x72\x6d\x6b\x4c\x70\x43\x6b\x51\x57\x51\x64\x63\x4b\x6d\x6f\x46\x57\x35\x71','\x70\x38\x6f\x4d\x57\x4f\x33\x63\x47\x31\x71','\x67\x38\x6f\x39\x57\x4f\x71\x53\x67\x53\x6f\x6a','\x78\x38\x6b\x41\x57\x35\x52\x64\x49\x53\x6b\x63\x72\x38\x6f\x6c\x44\x57','\x57\x4f\x71\x4a\x57\x34\x5a\x64\x48\x63\x5a\x64\x4d\x58\x6e\x33','\x43\x4c\x48\x65\x74\x66\x5a\x64\x51\x38\x6b\x68\x57\x52\x43','\x57\x35\x52\x63\x50\x38\x6f\x37\x66\x47','\x57\x34\x71\x6a\x57\x37\x6c\x63\x4d\x74\x6a\x68\x77\x53\x6b\x41','\x78\x6d\x6f\x52\x7a\x38\x6b\x38\x77\x57','\x42\x53\x6f\x6c\x74\x38\x6b\x61\x73\x78\x72\x70\x6f\x47','\x45\x38\x6f\x41\x45\x77\x6c\x63\x55\x71','\x57\x37\x58\x30\x57\x50\x4a\x63\x4f\x4d\x53\x78\x67\x43\x6b\x64','\x57\x37\x6c\x63\x48\x4b\x33\x63\x47\x76\x4f','\x57\x51\x52\x64\x4c\x78\x4a\x63\x54\x53\x6f\x78','\x44\x53\x6f\x33\x57\x34\x72\x72\x57\x52\x37\x63\x50\x71','\x79\x43\x6f\x70\x57\x52\x68\x64\x54\x57\x43','\x62\x38\x6f\x33\x57\x50\x4b\x4a\x65\x38\x6f\x70\x57\x52\x30','\x57\x35\x75\x43\x57\x51\x56\x64\x4d\x4e\x6d\x61\x73\x6d\x6b\x6f\x44\x38\x6b\x47\x66\x71\x39\x33','\x57\x51\x52\x63\x50\x6d\x6f\x57\x57\x50\x69\x6a\x78\x71\x38\x4e','\x65\x43\x6f\x64\x57\x50\x4a\x64\x4a\x6d\x6b\x77','\x74\x6d\x6b\x56\x57\x50\x38\x42\x57\x50\x65\x4f\x44\x63\x53','\x57\x35\x52\x64\x4a\x53\x6b\x78\x57\x35\x76\x4c','\x62\x53\x6f\x2f\x57\x52\x61','\x57\x4f\x54\x35\x57\x35\x37\x63\x4f\x64\x65','\x73\x43\x6f\x38\x57\x50\x34\x2f\x65\x6d\x6b\x78\x57\x37\x53','\x57\x4f\x78\x63\x47\x74\x53\x34\x61\x47','\x57\x50\x2f\x63\x51\x4c\x6c\x64\x52\x71','\x57\x50\x56\x64\x52\x43\x6f\x53\x57\x51\x74\x64\x51\x38\x6b\x39\x57\x52\x37\x63\x50\x61','\x57\x37\x53\x58\x71\x53\x6b\x4b\x57\x35\x35\x6c\x6c\x6d\x6b\x34','\x57\x37\x4f\x6d\x57\x4f\x61','\x57\x37\x57\x52\x57\x51\x47','\x64\x53\x6f\x2b\x57\x50\x4b\x58\x6e\x57','\x57\x34\x5a\x63\x56\x6d\x6f\x35\x73\x57','\x76\x38\x6b\x41\x74\x53\x6b\x2b\x75\x5a\x58\x73','\x57\x4f\x50\x6d\x57\x37\x68\x63\x49\x5a\x76\x42','\x57\x36\x42\x64\x50\x6d\x6b\x79\x79\x38\x6b\x66\x57\x4f\x75\x43','\x57\x51\x44\x42\x57\x50\x64\x63\x56\x38\x6b\x43\x57\x52\x30','\x66\x4d\x31\x46\x70\x43\x6b\x51','\x44\x53\x6f\x2b\x57\x34\x31\x6e\x57\x36\x6c\x63\x51\x53\x6f\x75\x65\x71','\x57\x51\x35\x4e\x57\x35\x37\x63\x48\x4a\x43','\x57\x51\x6e\x55\x73\x53\x6f\x53\x57\x4f\x48\x53\x75\x47','\x57\x52\x5a\x64\x4c\x68\x48\x59\x65\x47\x64\x63\x55\x38\x6f\x6e','\x57\x51\x4e\x64\x4a\x4c\x6a\x76\x68\x57','\x57\x52\x39\x55\x73\x53\x6b\x48\x57\x4f\x79\x61\x6e\x38\x6b\x2f','\x57\x35\x74\x63\x52\x78\x74\x63\x49\x67\x30','\x42\x6d\x6f\x76\x45\x4d\x74\x63\x56\x38\x6f\x45\x73\x48\x4b','\x57\x51\x2f\x63\x51\x6d\x6b\x6e\x7a\x71','\x44\x6d\x6b\x73\x57\x37\x52\x64\x52\x61','\x71\x6d\x6f\x2b\x57\x51\x46\x63\x56\x4d\x4a\x64\x56\x58\x54\x54','\x57\x4f\x4e\x63\x51\x43\x6b\x53\x57\x50\x48\x69\x76\x65\x4b\x38','\x57\x36\x5a\x63\x4c\x77\x48\x46\x57\x50\x31\x56\x61\x61','\x73\x38\x6b\x64\x75\x38\x6b\x2b\x77\x71','\x57\x4f\x64\x64\x56\x6d\x6b\x61\x79\x47\x37\x63\x51\x57','\x57\x34\x37\x64\x4a\x43\x6f\x73\x57\x50\x69\x58\x71\x53\x6b\x30\x57\x4f\x79','\x57\x34\x46\x63\x53\x53\x6f\x5a\x73\x47\x68\x64\x53\x43\x6b\x52\x57\x35\x75','\x73\x53\x6b\x69\x57\x51\x4c\x5a\x57\x35\x4f','\x73\x66\x69\x6e\x73\x32\x4a\x64\x56\x6d\x6f\x74\x64\x57','\x57\x52\x53\x75\x57\x36\x64\x64\x4b\x74\x79','\x57\x34\x64\x64\x4d\x6d\x6b\x63\x57\x50\x75','\x69\x62\x47\x75\x57\x37\x72\x41\x6a\x43\x6f\x33\x66\x71','\x57\x51\x37\x64\x49\x33\x4a\x63\x4f\x43\x6f\x78','\x57\x35\x5a\x63\x48\x6d\x6b\x34\x57\x35\x37\x64\x55\x47','\x57\x52\x4f\x47\x57\x50\x33\x63\x48\x32\x6d','\x41\x75\x4f\x6e\x57\x52\x44\x5a','\x57\x36\x46\x63\x56\x76\x64\x63\x4f\x32\x4e\x64\x51\x33\x47\x77','\x57\x4f\x31\x61\x57\x37\x68\x63\x49\x61','\x68\x6d\x6b\x4e\x57\x36\x65\x4a\x44\x38\x6b\x54\x41\x4d\x38','\x6b\x63\x61\x47\x57\x34\x30\x6c','\x57\x37\x78\x63\x47\x68\x50\x50\x67\x72\x68\x63\x55\x38\x6f\x65','\x44\x66\x61\x30\x57\x4f\x66\x6a','\x57\x34\x6c\x64\x49\x38\x6b\x47\x57\x37\x46\x64\x54\x64\x4e\x63\x4a\x71\x69','\x78\x38\x6f\x31\x71\x33\x52\x63\x53\x71','\x57\x4f\x4e\x64\x50\x38\x6f\x53\x57\x51\x70\x64\x55\x53\x6b\x69\x57\x4f\x74\x63\x53\x71','\x57\x34\x33\x63\x48\x78\x5a\x63\x49\x47','\x6d\x6d\x6f\x50\x57\x52\x4b\x37\x6e\x61','\x64\x31\x4f\x79\x44\x62\x30\x6a\x43\x43\x6f\x38','\x43\x43\x6b\x69\x57\x36\x64\x64\x52\x53\x6f\x6b\x57\x37\x50\x42\x57\x37\x71','\x7a\x43\x6b\x64\x57\x51\x58\x74','\x46\x38\x6f\x72\x7a\x4d\x33\x63\x56\x38\x6f\x6a\x77\x61\x71','\x7a\x31\x48\x6d\x75\x76\x46\x64\x53\x53\x6b\x41\x57\x52\x69','\x57\x51\x37\x63\x4d\x53\x6b\x61\x41\x53\x6b\x64','\x41\x71\x65\x62\x75\x57\x65','\x74\x6d\x6f\x77\x57\x4f\x6c\x64\x47\x74\x4a\x64\x56\x38\x6b\x44\x79\x61','\x76\x53\x6b\x4c\x45\x38\x6b\x52\x57\x51\x57','\x64\x43\x6b\x69\x57\x37\x79\x4e\x76\x47','\x6a\x38\x6f\x39\x57\x51\x71\x54\x6f\x57','\x76\x77\x42\x63\x51\x58\x78\x64\x54\x57','\x57\x50\x58\x6d\x57\x35\x78\x63\x4f\x72\x65','\x57\x51\x42\x64\x4b\x63\x44\x52\x67\x72\x78\x63\x56\x38\x6f\x63','\x57\x51\x46\x63\x4c\x49\x6d\x79\x6c\x71','\x73\x38\x6f\x44\x57\x4f\x65\x32\x67\x53\x6f\x69\x57\x51\x42\x64\x50\x71','\x6f\x65\x46\x64\x4c\x31\x68\x63\x51\x71','\x78\x6d\x6b\x6b\x57\x35\x42\x64\x49\x38\x6b\x4c','\x74\x53\x6b\x5a\x57\x52\x4a\x64\x48\x43\x6b\x56','\x57\x36\x61\x51\x57\x52\x46\x63\x49\x6d\x6f\x64\x72\x6d\x6b\x6f\x57\x37\x71','\x6d\x6d\x6f\x4c\x57\x52\x42\x63\x51\x67\x33\x63\x53\x47\x62\x58','\x61\x53\x6f\x35\x74\x33\x35\x62\x57\x4f\x62\x63\x46\x71','\x44\x43\x6f\x69\x57\x4f\x74\x64\x48\x63\x43','\x57\x52\x2f\x64\x51\x67\x31\x76\x6e\x47','\x57\x52\x56\x63\x54\x4a\x71\x31\x6a\x61','\x57\x4f\x76\x62\x57\x37\x52\x63\x4a\x59\x4f','\x42\x6d\x6b\x73\x57\x36\x68\x63\x55\x6d\x6b\x74','\x57\x52\x68\x64\x48\x53\x6b\x63\x79\x47\x38','\x63\x43\x6b\x56\x57\x35\x30\x48\x74\x71','\x57\x35\x75\x46\x57\x51\x4e\x63\x50\x43\x6f\x58','\x75\x6d\x6f\x4e\x57\x52\x4a\x64\x4c\x59\x2f\x64\x56\x53\x6b\x67\x6f\x57','\x65\x4b\x7a\x35\x70\x43\x6b\x42','\x57\x51\x2f\x63\x48\x63\x47\x42\x57\x52\x64\x63\x4e\x38\x6f\x56\x57\x35\x57','\x57\x37\x52\x63\x4b\x43\x6b\x73\x57\x35\x33\x64\x47\x47','\x41\x33\x58\x4a','\x79\x43\x6f\x7a\x57\x51\x37\x64\x4a\x78\x78\x64\x50\x53\x6b\x74\x7a\x61','\x57\x37\x47\x67\x57\x35\x43','\x67\x53\x6f\x31\x57\x34\x4a\x64\x4b\x78\x74\x64\x48\x6d\x6b\x37\x75\x61','\x72\x58\x34\x70\x7a\x71\x79','\x45\x53\x6b\x49\x67\x73\x71\x6e','\x57\x51\x76\x58\x74\x53\x6b\x50\x57\x34\x50\x6a\x6b\x53\x6b\x4f','\x70\x6d\x6f\x76\x57\x36\x52\x64\x4f\x78\x46\x64\x51\x43\x6b\x6b\x66\x71','\x57\x4f\x4e\x63\x4c\x4c\x6d\x6b\x57\x50\x79','\x6a\x71\x75\x74\x57\x36\x4b\x62\x41\x6d\x6f\x6a','\x68\x38\x6b\x50\x57\x36\x53','\x57\x4f\x64\x63\x49\x53\x6b\x70\x42\x43\x6b\x51','\x6e\x76\x6c\x64\x4f\x65\x6c\x63\x48\x57','\x77\x4b\x47\x76\x57\x51\x38\x7a\x57\x50\x46\x64\x49\x38\x6f\x64','\x57\x52\x57\x51\x57\x35\x4e\x63\x4f\x4d\x50\x75\x66\x6d\x6b\x70','\x79\x31\x35\x65\x75\x75\x46\x64\x48\x38\x6b\x31\x57\x52\x43','\x61\x43\x6f\x37\x57\x36\x2f\x64\x56\x4d\x53','\x57\x4f\x4e\x63\x48\x53\x6b\x6b\x57\x52\x43\x50','\x71\x38\x6f\x5a\x6d\x59\x30\x61','\x57\x51\x37\x64\x48\x33\x79\x41\x57\x51\x33\x63\x48\x53\x6f\x55\x57\x35\x38','\x57\x51\x6c\x63\x50\x53\x6b\x38\x57\x50\x57\x76\x76\x30\x75\x37','\x62\x4d\x42\x63\x53\x76\x56\x64\x54\x6d\x6b\x58\x57\x51\x75\x68','\x6b\x43\x6f\x7a\x57\x36\x64\x64\x47\x4e\x43','\x57\x36\x33\x63\x55\x75\x48\x2b\x57\x4f\x30','\x70\x68\x4c\x50\x6e\x38\x6b\x53','\x43\x43\x6f\x2f\x57\x35\x30','\x57\x34\x56\x63\x47\x38\x6f\x69\x57\x50\x37\x63\x4d\x45\x45\x6c\x47\x45\x41\x63\x52\x65\x53','\x57\x37\x4f\x4b\x57\x52\x57\x67\x77\x71','\x57\x37\x34\x39\x57\x51\x4b\x77\x45\x4a\x48\x36\x69\x47','\x57\x37\x38\x44\x57\x35\x4e\x63\x52\x2b\x6b\x63\x55\x6d\x6b\x54\x64\x57\x4f','\x34\x50\x45\x2f\x34\x50\x41\x75\x34\x50\x41\x65\x34\x50\x45\x77\x34\x50\x41\x45\x34\x50\x45\x70\x34\x50\x45\x53\x34\x50\x45\x43','\x57\x50\x6c\x63\x4e\x53\x6b\x63\x57\x35\x6e\x4b\x6d\x43\x6b\x43\x57\x51\x43','\x43\x6d\x6f\x62\x57\x52\x70\x64\x48\x47','\x57\x34\x30\x6c\x35\x4f\x41\x43\x35\x7a\x4d\x46\x61\x38\x6b\x6a\x71\x6f\x73\x34\x51\x61','\x57\x35\x64\x63\x54\x76\x2f\x64\x52\x71','\x44\x30\x43\x76\x57\x36\x4c\x42\x57\x4f\x70\x64\x4a\x43\x6f\x7a','\x35\x50\x41\x37\x37\x37\x2b\x79\x57\x36\x46\x63\x4f\x6d\x6f\x51\x35\x79\x36\x58\x62\x74\x71','\x72\x4c\x57\x68\x73\x4e\x68\x64\x54\x38\x6f\x45\x66\x61','\x57\x4f\x5a\x63\x56\x75\x42\x64\x51\x58\x4a\x63\x54\x4c\x38','\x72\x53\x6b\x51\x57\x35\x42\x64\x4c\x47','\x46\x38\x6f\x77\x43\x4d\x37\x63\x53\x47','\x75\x71\x6d\x6d\x46\x48\x4f\x71','\x57\x37\x79\x48\x57\x37\x56\x63\x47\x38\x6f\x45\x64\x43\x6b\x6e\x57\x37\x75','\x57\x37\x4f\x49\x57\x52\x34','\x57\x35\x74\x63\x4d\x6d\x6b\x7a\x57\x4f\x74\x63\x4e\x61','\x57\x50\x56\x63\x54\x43\x6f\x4e\x57\x52\x56\x64\x51\x53\x6b\x47\x57\x50\x4e\x64\x56\x71','\x67\x53\x6b\x6b\x57\x36\x37\x63\x4c\x32\x56\x63\x4f\x43\x6f\x67\x7a\x57\x30\x6d\x70\x6d\x6f\x75\x57\x36\x65','\x57\x52\x38\x67\x57\x4f\x52\x63\x51\x77\x6e\x74\x67\x43\x6b\x64','\x75\x6d\x6f\x64\x73\x75\x31\x66','\x57\x37\x61\x69\x57\x34\x4e\x64\x4f\x38\x6f\x7a\x57\x37\x38\x6a','\x57\x34\x56\x63\x4a\x68\x68\x63\x47\x65\x33\x64\x49\x57','\x6a\x77\x61\x33\x42\x4c\x33\x64\x4e\x43\x6f\x56\x44\x57','\x6a\x53\x6f\x69\x57\x51\x52\x63\x53\x38\x6b\x66\x57\x36\x44\x48\x57\x36\x33\x64\x52\x53\x6b\x71\x57\x51\x56\x64\x4a\x61','\x74\x43\x6f\x42\x79\x67\x4a\x64\x54\x53\x6f\x6f\x71\x57\x47','\x57\x52\x4c\x34\x73\x47','\x57\x51\x43\x30\x57\x50\x70\x63\x53\x4c\x75','\x57\x34\x46\x64\x51\x61\x78\x63\x52\x4b\x74\x64\x53\x47','\x57\x35\x52\x64\x49\x53\x6b\x4f\x57\x34\x58\x57\x7a\x53\x6b\x2f\x57\x52\x65','\x57\x50\x38\x42\x57\x52\x52\x63\x4b\x75\x30','\x57\x37\x68\x63\x56\x67\x33\x63\x4a\x78\x79','\x43\x38\x6f\x2f\x68\x64\x4b\x33\x6d\x53\x6f\x50','\x61\x38\x6b\x4f\x57\x36\x79\x76','\x57\x4f\x76\x69\x57\x37\x68\x63\x49\x63\x48\x78\x67\x38\x6b\x6b','\x57\x35\x6c\x63\x4d\x4a\x57\x4f\x61\x48\x46\x63\x51\x43\x6f\x6f','\x57\x50\x62\x30\x7a\x38\x6b\x44\x57\x34\x47','\x77\x43\x6f\x69\x62\x73\x33\x64\x4e\x72\x5a\x64\x4e\x30\x61','\x71\x53\x6b\x38\x57\x52\x70\x63\x55\x4d\x4a\x64\x55\x58\x66\x37','\x57\x37\x68\x63\x4f\x67\x4e\x63\x4c\x31\x57','\x41\x38\x6b\x4d\x57\x52\x2f\x64\x55\x43\x6b\x39','\x77\x48\x53\x45\x46\x64\x4f','\x43\x78\x53\x4d\x6c\x32\x4a\x64\x51\x38\x6f\x69\x63\x61','\x6f\x53\x6f\x76\x57\x37\x5a\x64\x48\x75\x79','\x69\x4e\x78\x64\x49\x57','\x62\x43\x6f\x64\x57\x35\x37\x64\x4d\x78\x61','\x57\x35\x61\x33\x57\x52\x30\x6d\x46\x71\x44\x4d\x42\x47','\x57\x34\x6d\x6f\x57\x50\x57\x6d\x42\x71','\x44\x38\x6b\x71\x57\x50\x58\x39\x57\x37\x57','\x61\x43\x6f\x4f\x57\x34\x5a\x64\x4e\x43\x6b\x64\x77\x38\x6f\x71\x69\x47','\x42\x6d\x6b\x79\x57\x36\x70\x64\x52\x53\x6f\x73\x57\x52\x72\x6e','\x57\x52\x34\x68\x57\x35\x42\x64\x4f\x47\x34','\x57\x36\x56\x64\x4e\x38\x6b\x69\x57\x35\x71\x35\x44\x53\x6b\x34\x57\x4f\x79','\x6b\x53\x6f\x4e\x57\x52\x46\x64\x48\x38\x6b\x69\x66\x78\x48\x57','\x42\x38\x6f\x76\x78\x43\x6b\x66\x73\x71','\x42\x43\x6b\x6e\x6c\x63\x31\x52\x74\x78\x5a\x64\x53\x57','\x57\x50\x52\x64\x4d\x53\x6b\x64\x46\x73\x43','\x74\x71\x69\x41\x6d\x71\x57\x6d\x45\x43\x6f\x48','\x45\x53\x6f\x4d\x57\x51\x52\x64\x49\x6d\x6b\x69\x71\x67\x53\x62','\x57\x50\x46\x64\x48\x38\x6b\x77\x41\x5a\x38','\x61\x43\x6f\x4f\x57\x34\x5a\x64\x4e\x43\x6b\x65\x78\x6d\x6f\x71\x69\x57','\x6c\x43\x6f\x4e\x57\x52\x46\x64\x4e\x43\x6b\x7a','\x65\x53\x6f\x72\x57\x52\x4b\x78\x6f\x43\x6f\x52\x57\x50\x70\x64\x4d\x61','\x78\x53\x6b\x47\x57\x50\x4b','\x71\x32\x46\x63\x53\x47\x6c\x64\x4a\x71','\x78\x6d\x6b\x35\x65\x78\x76\x46\x57\x4f\x34\x61\x46\x47','\x42\x38\x6f\x58\x57\x35\x48\x6e\x57\x51\x4b','\x57\x51\x37\x63\x55\x53\x6f\x7a\x71\x43\x6b\x32\x57\x51\x71\x4b\x46\x47','\x57\x36\x34\x51\x57\x34\x33\x64\x48\x43\x6f\x36','\x46\x30\x72\x67\x71\x61','\x57\x35\x5a\x63\x50\x53\x6f\x2b\x74\x74\x56\x64\x4f\x38\x6b\x53','\x6d\x38\x6f\x37\x57\x37\x37\x64\x4d\x53\x6b\x6d\x75\x68\x53\x6c','\x57\x52\x4e\x63\x47\x71\x65\x68\x70\x71','\x57\x50\x42\x64\x56\x73\x50\x69\x6b\x73\x74\x63\x4b\x43\x6f\x55','\x57\x52\x57\x57\x57\x4f\x52\x63\x54\x77\x7a\x76\x65\x38\x6f\x6b','\x57\x52\x5a\x64\x4e\x4b\x56\x63\x4b\x53\x6f\x62','\x67\x53\x6f\x52\x57\x50\x34\x32\x67\x6d\x6f\x6f','\x63\x4c\x39\x61\x70\x30\x72\x6e\x6d\x38\x6b\x4d','\x57\x4f\x78\x64\x55\x77\x62\x72\x6e\x71','\x57\x52\x56\x63\x4d\x6d\x6b\x73\x57\x50\x34\x71','\x57\x52\x75\x33\x57\x35\x68\x64\x47\x5a\x57','\x79\x53\x6f\x31\x57\x50\x68\x64\x4a\x64\x53','\x57\x4f\x56\x64\x4b\x68\x56\x64\x4b\x71\x37\x63\x4c\x4d\x78\x64\x54\x4d\x75\x43\x77\x73\x69\x70','\x57\x4f\x65\x2f\x57\x37\x68\x64\x47\x64\x6c\x63\x48\x48\x35\x53','\x57\x52\x33\x63\x56\x4b\x47\x58\x57\x51\x38','\x57\x36\x64\x64\x4c\x78\x4c\x50\x75\x57\x56\x63\x56\x43\x6f\x69','\x6f\x38\x6f\x48\x57\x51\x56\x64\x4d\x53\x6b\x36\x78\x68\x72\x6f','\x74\x6d\x6b\x36\x75\x38\x6b\x36\x57\x52\x56\x63\x4e\x38\x6b\x6a','\x68\x38\x6b\x51\x57\x36\x57\x74\x7a\x47','\x6f\x78\x52\x64\x47\x32\x78\x63\x4d\x53\x6f\x38\x42\x57','\x67\x53\x6f\x31\x57\x35\x52\x64\x47\x66\x37\x64\x4d\x71','\x42\x6d\x6b\x79\x57\x36\x64\x64\x54\x38\x6f\x46\x57\x51\x6d','\x57\x52\x42\x64\x4a\x43\x6b\x78\x41\x57\x4a\x63\x55\x59\x78\x63\x4a\x61','\x57\x52\x70\x64\x47\x53\x6b\x68\x43\x59\x6c\x63\x52\x63\x2f\x63\x4b\x57','\x57\x52\x56\x64\x4b\x4e\x39\x31\x68\x57\x42\x63\x50\x53\x6f\x6f','\x7a\x38\x6f\x47\x75\x68\x44\x41\x57\x50\x44\x65\x44\x47','\x64\x4d\x48\x79\x64\x6d\x6b\x6a','\x57\x35\x47\x68\x57\x34\x4e\x64\x4c\x43\x6f\x51','\x57\x51\x6a\x55\x72\x53\x6b\x4f','\x6c\x6d\x6f\x59\x57\x51\x37\x63\x56\x4c\x6d','\x61\x38\x6f\x61\x57\x52\x65\x39\x6f\x61','\x57\x51\x43\x7a\x57\x52\x4f\x44\x78\x61','\x76\x53\x6f\x77\x71\x6d\x6b\x71','\x6f\x43\x6b\x4b\x62\x4a\x68\x64\x55\x71','\x57\x34\x5a\x64\x48\x4e\x42\x63\x49\x57','\x79\x59\x38\x61\x57\x37\x43\x74\x43\x6d\x6f\x61\x6f\x71','\x6b\x72\x30\x75\x66\x78\x70\x64\x48\x53\x6b\x47\x57\x50\x72\x36\x57\x36\x61','\x57\x37\x53\x77\x57\x51\x56\x63\x53\x6d\x6f\x53','\x57\x50\x33\x63\x54\x48\x30\x7a\x64\x57','\x57\x37\x64\x63\x4b\x4d\x61\x43\x57\x35\x62\x56\x62\x38\x6f\x44','\x57\x4f\x4e\x63\x51\x43\x6b\x53\x57\x50\x48\x69\x78\x75\x38\x53','\x57\x36\x43\x35\x57\x51\x69\x74\x6b\x62\x54\x4d\x70\x47','\x57\x37\x57\x57\x57\x51\x4a\x63\x4a\x43\x6f\x45\x61\x6d\x6b\x42\x57\x36\x79','\x57\x51\x75\x32\x57\x52\x78\x63\x51\x78\x48\x46\x64\x38\x6b\x50','\x44\x53\x6b\x51\x57\x36\x4e\x64\x50\x43\x6f\x66','\x57\x36\x6c\x63\x4a\x78\x4c\x2b\x64\x58\x74\x63\x55\x38\x6f\x65','\x57\x34\x78\x63\x4b\x77\x39\x6a\x57\x52\x38','\x45\x43\x6f\x35\x57\x50\x2f\x64\x4f\x4a\x4f','\x57\x35\x68\x64\x56\x6d\x6b\x5a\x74\x63\x56\x64\x56\x53\x6f\x57\x57\x34\x6d','\x78\x43\x6b\x4e\x57\x52\x6d','\x75\x43\x6f\x44\x57\x52\x5a\x64\x4c\x4a\x6c\x64\x56\x57','\x62\x4d\x37\x63\x51\x58\x64\x64\x54\x6d\x6f\x59\x57\x36\x61','\x57\x51\x56\x63\x4d\x49\x4f','\x44\x76\x6a\x6d\x76\x4b\x42\x64\x48\x38\x6b\x47\x57\x51\x43','\x77\x53\x6f\x2f\x65\x4a\x47\x4a','\x72\x53\x6b\x79\x57\x52\x74\x64\x49\x59\x56\x64\x53\x6d\x6b\x79\x41\x61','\x78\x43\x6b\x6a\x6c\x64\x61\x56\x78\x47','\x44\x6d\x6b\x2b\x57\x34\x68\x64\x4a\x6d\x6f\x73','\x46\x38\x6b\x70\x57\x37\x74\x64\x53\x71','\x45\x43\x6f\x6e\x63\x48\x4b\x4d','\x57\x51\x75\x45\x57\x52\x38\x67\x73\x4d\x53\x4a\x43\x47','\x75\x43\x6b\x69\x76\x6d\x6b\x59\x74\x4a\x71','\x57\x36\x65\x5a\x57\x52\x34\x6b\x7a\x62\x38','\x6d\x38\x6b\x2f\x73\x32\x58\x47\x43\x53\x6b\x4f\x6f\x6d\x6b\x64\x57\x50\x56\x64\x55\x53\x6b\x68\x7a\x71','\x71\x53\x6b\x38\x57\x51\x74\x63\x56\x4e\x78\x64\x52\x58\x31\x4d','\x57\x51\x74\x63\x55\x6d\x6b\x36\x57\x50\x34\x64\x78\x65\x71\x54','\x57\x37\x52\x64\x53\x43\x6b\x33\x57\x37\x76\x76\x77\x6d\x6b\x78\x57\x51\x53','\x57\x51\x6d\x6d\x57\x4f\x53\x44\x46\x71','\x74\x38\x6b\x4b\x57\x52\x46\x64\x55\x53\x6b\x32\x65\x75\x4c\x4b','\x62\x71\x61\x70\x57\x34\x61\x6e','\x7a\x38\x6b\x43\x73\x53\x6b\x38\x73\x5a\x38\x46','\x57\x52\x69\x64\x57\x52\x4b\x71\x45\x4d\x4f\x4a\x79\x61','\x57\x4f\x42\x63\x4e\x6d\x6b\x51\x75\x6d\x6f\x61\x57\x50\x4b\x44\x72\x47','\x76\x76\x31\x68\x78\x68\x53','\x57\x51\x75\x32\x57\x51\x52\x63\x53\x4e\x31\x74\x65\x38\x6b\x6e','\x62\x38\x6b\x72\x66\x5a\x5a\x64\x4e\x62\x56\x63\x4c\x4b\x47','\x57\x37\x7a\x32\x57\x51\x34\x74\x41\x72\x35\x4e\x6b\x71','\x57\x36\x42\x64\x50\x43\x6b\x53\x57\x50\x53\x6a\x71\x57\x30\x56','\x57\x36\x75\x7a\x57\x34\x68\x64\x55\x6d\x6f\x63\x57\x34\x47\x45\x67\x71','\x57\x4f\x70\x63\x55\x43\x6b\x6d\x57\x37\x68\x64\x54\x62\x4e\x64\x55\x71','\x63\x43\x6f\x33\x57\x34\x5a\x64\x4d\x30\x79','\x41\x43\x6f\x6e\x73\x33\x70\x63\x4f\x53\x6f\x42\x78\x57\x47','\x75\x43\x6f\x49\x78\x4d\x39\x41\x57\x50\x62\x59','\x57\x50\x6c\x64\x53\x6d\x6f\x52\x57\x52\x64\x64\x51\x38\x6b\x4d','\x57\x35\x6c\x63\x48\x32\x42\x63\x48\x4c\x68\x64\x49\x71\x43\x54','\x65\x43\x6f\x35\x57\x52\x46\x64\x51\x53\x6b\x39\x6f\x4b\x38','\x57\x34\x79\x42\x57\x34\x2f\x64\x4f\x6d\x6f\x6b','\x72\x49\x57\x6e\x42\x53\x6b\x30\x6f\x53\x6f\x6a\x45\x71','\x76\x78\x37\x63\x50\x48\x2f\x64\x56\x61','\x57\x50\x34\x4b\x57\x37\x46\x64\x49\x64\x61','\x57\x52\x37\x64\x49\x4e\x75','\x57\x37\x33\x64\x48\x53\x6b\x41\x6a\x76\x6c\x64\x56\x74\x52\x63\x4c\x57','\x57\x4f\x33\x64\x55\x53\x6f\x50\x57\x52\x37\x64\x55\x38\x6b\x4e\x57\x4f\x56\x63\x50\x61','\x57\x51\x74\x63\x56\x6d\x6b\x6e\x7a\x38\x6b\x70\x57\x4f\x79\x6e','\x57\x51\x6a\x5a\x79\x38\x6b\x51\x57\x35\x65\x64\x6b\x53\x6b\x6f','\x57\x34\x56\x63\x48\x33\x68\x63\x4d\x68\x57','\x57\x50\x37\x64\x54\x77\x74\x63\x48\x6d\x6f\x78','\x57\x4f\x6c\x63\x4d\x78\x52\x63\x4d\x72\x6c\x64\x4e\x4b\x79\x4d','\x75\x38\x6f\x43\x75\x4e\x31\x77','\x6f\x38\x6f\x4b\x57\x34\x4a\x64\x47\x75\x46\x64\x4e\x53\x6f\x54\x66\x71','\x57\x35\x6c\x63\x4d\x49\x7a\x53\x61\x48\x46\x64\x54\x38\x6f\x69','\x57\x36\x61\x31\x57\x52\x52\x63\x4c\x53\x6f\x6a','\x57\x51\x5a\x64\x50\x53\x6f\x75\x57\x4f\x33\x64\x51\x47','\x74\x53\x6b\x49\x6c\x62\x69\x77','\x57\x34\x42\x63\x4b\x43\x6b\x48\x57\x34\x68\x64\x49\x71','\x57\x51\x33\x64\x4a\x43\x6b\x68','\x44\x75\x72\x74','\x75\x6d\x6f\x30\x57\x37\x5a\x63\x50\x61','\x57\x35\x37\x63\x51\x71\x78\x63\x4a\x4c\x53','\x73\x6d\x6b\x66\x43\x38\x6b\x43\x76\x61','\x61\x48\x53\x42\x70\x61\x4b\x6e\x44\x6d\x6f\x51','\x46\x38\x6b\x6a\x57\x36\x46\x64\x50\x38\x6f\x45\x57\x51\x44\x43\x57\x34\x57','\x57\x37\x74\x63\x49\x53\x6f\x46\x69\x57','\x57\x51\x4a\x63\x50\x43\x6b\x79\x43\x43\x6b\x65\x57\x4f\x35\x66\x73\x57','\x57\x34\x4a\x64\x54\x53\x6b\x49\x57\x35\x48\x74','\x72\x53\x6f\x61\x57\x52\x74\x64\x4c\x49\x4e\x64\x4f\x53\x6b\x4e\x45\x61','\x57\x36\x6d\x53\x57\x52\x38','\x57\x52\x4a\x63\x49\x68\x43','\x57\x52\x42\x64\x54\x6d\x6f\x52\x57\x52\x70\x63\x56\x38\x6b\x54\x57\x4f\x6c\x63\x53\x61','\x42\x75\x43\x6e\x57\x51\x4c\x45\x57\x4f\x46\x64\x4a\x61','\x79\x43\x6b\x7a\x46\x77\x71','\x45\x6d\x6f\x42\x6e\x72\x53\x33','\x74\x53\x6f\x5a\x42\x67\x6a\x62\x57\x4f\x61','\x76\x53\x6f\x71\x42\x43\x6b\x45\x74\x47','\x7a\x53\x6f\x68\x75\x4d\x4e\x63\x55\x6d\x6f\x74\x78\x57\x47','\x6e\x75\x4f\x6a\x57\x51\x6e\x75\x57\x35\x2f\x64\x47\x43\x6f\x79','\x76\x53\x6f\x38\x57\x35\x62\x30\x57\x52\x53','\x73\x38\x6f\x58\x75\x78\x72\x44\x57\x4f\x79','\x41\x38\x6b\x47\x57\x52\x46\x64\x47\x43\x6b\x46','\x67\x53\x6f\x37\x57\x50\x47\x50\x68\x38\x6f\x74\x57\x52\x78\x63\x52\x61','\x57\x4f\x4a\x64\x4b\x4d\x39\x52','\x57\x37\x68\x64\x49\x43\x6b\x68','\x6b\x6d\x6f\x57\x57\x52\x2f\x64\x4d\x53\x6b\x74\x77\x57','\x41\x43\x6f\x4b\x67\x5a\x38\x51\x42\x38\x6f\x57\x6f\x57','\x57\x36\x70\x63\x50\x53\x6b\x78\x41\x6d\x6b\x7a\x57\x34\x53\x43\x71\x61','\x57\x35\x52\x64\x4d\x38\x6b\x69\x57\x34\x39\x34\x46\x53\x6b\x2f\x57\x4f\x65','\x66\x4d\x50\x4a\x6f\x43\x6b\x31','\x64\x71\x69\x42\x79\x30\x61\x67\x43\x43\x6f\x48','\x41\x74\x71\x45\x45\x63\x75','\x72\x38\x6f\x74\x75\x67\x68\x63\x52\x61','\x46\x65\x54\x77\x75\x77\x33\x64\x48\x38\x6b\x43\x57\x52\x69','\x57\x52\x64\x64\x47\x43\x6f\x61\x57\x50\x4e\x64\x49\x38\x6f\x55\x34\x4f\x55\x4c\x57\x37\x30','\x57\x35\x52\x63\x47\x75\x46\x63\x55\x65\x75','\x75\x6d\x6f\x5a\x78\x4e\x39\x50\x57\x4f\x50\x62\x46\x61','\x41\x6d\x6b\x2f\x57\x34\x46\x64\x4c\x38\x6b\x74','\x71\x67\x54\x59\x78\x31\x75','\x44\x43\x6b\x75\x57\x37\x33\x64\x50\x47','\x35\x41\x2b\x4c\x35\x4f\x51\x69\x35\x42\x73\x73\x35\x6c\x59\x66\x37\x37\x32\x2b\x35\x34\x49\x6c\x35\x4f\x6f\x74\x35\x35\x41\x39','\x67\x6d\x6f\x58\x57\x35\x56\x64\x48\x4c\x43','\x57\x4f\x46\x64\x51\x38\x6b\x39\x73\x58\x71','\x7a\x66\x48\x71\x71\x61','\x66\x61\x30\x52\x57\x37\x65\x4d','\x57\x35\x4a\x63\x4f\x43\x6f\x30\x77\x4a\x56\x64\x47\x38\x6b\x38\x57\x34\x34','\x57\x34\x74\x63\x4d\x6d\x6f\x6b\x57\x34\x78\x64\x4a\x57\x70\x64\x49\x62\x57','\x6c\x53\x6b\x4e\x57\x37\x79\x79\x6b\x38\x6b\x52\x43\x77\x38','\x57\x34\x46\x63\x49\x64\x6c\x63\x4a\x75\x33\x64\x48\x30\x6d\x5a','\x63\x59\x46\x63\x52\x71\x70\x64\x50\x53\x6b\x4f\x57\x52\x57\x77','\x57\x52\x2f\x63\x52\x6d\x6f\x7a\x43\x6d\x6b\x69\x57\x4f\x69\x42\x63\x61','\x57\x51\x4e\x63\x53\x47\x43\x79\x6b\x65\x6c\x64\x47\x38\x6f\x48','\x63\x63\x6e\x63\x70\x53\x6b\x51\x44\x53\x6f\x79\x43\x61','\x61\x48\x6d\x62\x44\x57\x4c\x6f\x6d\x71','\x67\x6d\x6b\x50\x57\x36\x4f\x43\x78\x6d\x6b\x49\x45\x78\x79','\x57\x51\x68\x64\x4a\x32\x72\x48\x67\x72\x78\x63\x56\x71','\x57\x34\x46\x64\x4b\x43\x6b\x4b\x57\x34\x39\x4c\x43\x6d\x6b\x4c\x57\x4f\x43','\x73\x6d\x6f\x72\x57\x52\x68\x64\x49\x71','\x57\x51\x37\x64\x4b\x33\x78\x63\x51\x38\x6f\x43','\x43\x67\x43\x4c\x6e\x57','\x70\x6d\x6f\x64\x57\x37\x37\x64\x4c\x32\x61','\x46\x57\x4f\x70\x64\x61','\x57\x50\x34\x4b\x57\x37\x6c\x64\x4c\x73\x56\x64\x4d\x4a\x50\x53','\x57\x51\x74\x63\x55\x43\x6b\x43\x41\x53\x6b\x64\x57\x4f\x71\x6d\x74\x71','\x57\x4f\x70\x63\x55\x74\x38\x51\x68\x47','\x43\x68\x68\x64\x4e\x32\x78\x63\x47\x43\x6b\x45\x41\x31\x71','\x57\x51\x5a\x64\x4a\x32\x35\x2b','\x72\x61\x35\x49','\x57\x52\x33\x64\x4a\x4e\x4b','\x57\x37\x70\x63\x49\x53\x6b\x7a\x57\x34\x5a\x63\x4b\x58\x64\x64\x48\x61\x75','\x57\x52\x57\x57\x57\x51\x4a\x63\x4b\x38\x6b\x69\x74\x38\x6b\x62\x57\x36\x6d','\x69\x33\x68\x64\x48\x4e\x6c\x63\x47\x43\x6f\x42','\x57\x37\x46\x63\x48\x30\x7a\x4d\x57\x50\x4b','\x57\x37\x39\x74\x57\x37\x72\x44\x65\x5a\x66\x48\x6c\x71','\x79\x38\x6f\x44\x43\x67\x4e\x63\x53\x6d\x6f\x64\x73\x30\x30','\x79\x38\x6f\x52\x65\x74\x34\x37\x6a\x43\x6f\x37\x70\x61','\x41\x30\x75\x70\x57\x51\x72\x75','\x72\x43\x6b\x78\x57\x34\x5a\x64\x51\x38\x6b\x37','\x57\x36\x46\x63\x50\x6d\x6b\x53\x57\x36\x5a\x64\x4e\x71','\x78\x43\x6b\x75\x57\x35\x78\x64\x48\x53\x6f\x75','\x68\x43\x6f\x42\x57\x51\x34\x37\x67\x61','\x42\x43\x6b\x42\x75\x6d\x6b\x4d\x57\x51\x69','\x57\x52\x2f\x63\x50\x38\x6b\x57\x57\x50\x58\x61\x71\x30\x75\x36','\x57\x51\x5a\x64\x4c\x38\x6b\x71\x42\x48\x69','\x57\x34\x42\x64\x4d\x53\x6b\x45\x57\x50\x58\x35\x43\x6d\x6b\x49\x57\x35\x69','\x74\x72\x6d\x6e','\x73\x38\x6b\x6a\x6c\x64\x65\x58\x72\x77\x57','\x57\x52\x76\x58\x73\x57','\x43\x43\x6b\x7a\x57\x37\x79','\x79\x43\x6b\x6b\x46\x43\x6b\x7a\x57\x50\x38','\x57\x34\x42\x64\x49\x38\x6b\x69\x57\x35\x62\x4f\x70\x6d\x6b\x49\x57\x50\x4b','\x74\x38\x6b\x68\x77\x38\x6b\x50\x68\x63\x48\x79\x57\x52\x69','\x65\x43\x6f\x35\x57\x51\x78\x64\x51\x6d\x6b\x52\x6a\x31\x6a\x35','\x76\x77\x78\x63\x52\x62\x4a\x64\x54\x38\x6b\x53','\x57\x50\x33\x64\x50\x43\x6b\x56\x68\x32\x52\x63\x50\x61','\x75\x6d\x6b\x41\x57\x35\x52\x64\x48\x53\x6f\x62','\x57\x51\x57\x59\x57\x37\x4a\x64\x53\x74\x69','\x68\x6d\x6f\x30\x57\x37\x33\x64\x53\x47','\x68\x38\x6b\x4e\x57\x36\x53\x75\x79\x43\x6b\x4a\x79\x64\x53','\x43\x53\x6f\x58\x57\x35\x6a\x39\x57\x52\x78\x63\x4f\x38\x6f\x6c\x67\x57','\x74\x38\x6b\x68\x57\x52\x35\x46\x57\x50\x4b\x61\x74\x71\x53','\x69\x67\x48\x45\x67\x43\x6b\x69','\x57\x51\x37\x64\x55\x6d\x6f\x78\x57\x52\x4e\x64\x55\x47','\x74\x53\x6f\x6b\x74\x43\x6b\x78\x77\x78\x71\x67','\x75\x6d\x6f\x7a\x63\x4a\x30\x79','\x57\x51\x56\x63\x52\x4d\x74\x64\x4c\x49\x69','\x70\x38\x6f\x54\x57\x52\x56\x64\x49\x47','\x65\x38\x6f\x36\x6a\x43\x6f\x35\x57\x37\x64\x64\x4a\x43\x6f\x63\x57\x35\x61\x44\x57\x34\x42\x63\x4e\x49\x46\x64\x4c\x47','\x78\x38\x6b\x58\x57\x35\x37\x64\x4a\x6d\x6b\x66\x77\x57','\x62\x43\x6b\x31\x57\x35\x4f\x76\x43\x43\x6b\x2b\x44\x32\x4b','\x68\x38\x6f\x34\x57\x51\x46\x63\x56\x47','\x72\x53\x6b\x57\x57\x37\x50\x58\x57\x50\x2f\x63\x4c\x6d\x6b\x6b\x6c\x71','\x46\x6d\x6f\x5a\x64\x53\x6b\x64\x75\x33\x75\x45\x6f\x47','\x69\x6d\x6f\x58\x57\x34\x46\x64\x4b\x71','\x57\x51\x46\x63\x48\x53\x6b\x6c\x57\x4f\x79\x57','\x79\x6d\x6b\x76\x57\x36\x31\x74\x57\x35\x71\x6a\x74\x72\x4f','\x57\x35\x34\x49\x57\x4f\x47\x43\x77\x47','\x57\x52\x35\x4f\x57\x52\x2f\x63\x47\x6d\x6f\x6a\x73\x53\x6b\x6e\x57\x37\x38','\x57\x35\x4a\x63\x4d\x6d\x6b\x53\x57\x34\x33\x64\x4c\x72\x37\x64\x4d\x72\x71','\x44\x4d\x43\x4e\x79\x66\x5a\x64\x4e\x61','\x42\x31\x4e\x63\x54\x72\x37\x64\x49\x47','\x76\x78\x37\x63\x4f\x57\x6c\x64\x50\x38\x6b\x52\x57\x50\x79\x6c','\x6e\x76\x47\x6e\x70\x6d\x6b\x36\x44\x53\x6b\x42\x46\x61','\x57\x36\x6d\x67\x57\x51\x4e\x63\x53\x6d\x6f\x69','\x57\x35\x64\x63\x47\x6d\x6b\x68\x57\x34\x6c\x64\x4d\x61','\x71\x43\x6f\x4b\x72\x4d\x54\x42\x57\x4f\x57','\x72\x43\x6b\x68\x57\x4f\x76\x6e\x57\x37\x34','\x57\x52\x56\x64\x52\x6d\x6b\x65\x43\x72\x61','\x71\x6d\x6f\x76\x57\x52\x4b','\x57\x51\x2f\x63\x48\x43\x6b\x30\x57\x51\x61\x4a','\x67\x43\x6f\x4f\x57\x52\x56\x63\x4e\x77\x30','\x57\x51\x78\x64\x4d\x38\x6b\x61\x42\x62\x79','\x44\x53\x6b\x43\x57\x37\x33\x64\x50\x53\x6f\x53\x57\x52\x72\x65\x57\x37\x34','\x46\x53\x6b\x74\x57\x51\x35\x75\x57\x35\x71\x75\x76\x59\x61','\x57\x52\x65\x73\x57\x52\x69\x77\x66\x78\x38\x34\x7a\x71','\x69\x6d\x6f\x78\x57\x52\x4c\x31\x76\x53\x6f\x56\x57\x50\x46\x64\x4e\x61','\x46\x43\x6b\x72\x57\x37\x6c\x64\x54\x38\x6f\x78\x57\x52\x69\x66\x57\x37\x57','\x68\x38\x6b\x6d\x67\x49\x71','\x57\x34\x68\x64\x54\x38\x6b\x43\x57\x35\x76\x47','\x43\x38\x6b\x55\x42\x53\x6b\x33\x72\x61','\x57\x34\x74\x63\x4b\x63\x37\x63\x51\x67\x4b','\x57\x34\x5a\x64\x4a\x77\x42\x63\x4a\x75\x4a\x64\x49\x33\x52\x64\x54\x57','\x57\x52\x33\x63\x54\x66\x74\x64\x51\x58\x64\x63\x50\x5a\x61\x2b','\x57\x4f\x47\x4f\x57\x37\x52\x64\x4b\x49\x52\x64\x4d\x49\x39\x38','\x7a\x4e\x38\x49\x45\x4b\x33\x64\x4a\x43\x6b\x58\x70\x47','\x57\x52\x2f\x64\x48\x78\x48\x32\x66\x72\x74\x63\x4f\x43\x6f\x63','\x35\x4f\x55\x39\x37\x37\x32\x7a\x34\x34\x6b\x72','\x57\x51\x75\x52\x57\x4f\x5a\x63\x4f\x57','\x57\x52\x6a\x35\x76\x38\x6f\x52','\x72\x65\x71\x69\x7a\x68\x57','\x42\x66\x75\x31\x7a\x4e\x61','\x57\x51\x6a\x35\x57\x4f\x4e\x63\x50\x33\x54\x73\x72\x38\x6f\x47','\x42\x77\x68\x63\x52\x48\x4a\x64\x4d\x57','\x57\x51\x33\x64\x51\x77\x76\x56\x66\x57','\x6d\x75\x54\x50\x66\x53\x6b\x4e','\x7a\x65\x72\x69\x72\x31\x30','\x57\x4f\x6c\x63\x4c\x49\x61\x48\x64\x48\x5a\x64\x54\x6d\x6f\x6e','\x57\x37\x52\x64\x54\x38\x6b\x38\x57\x37\x44\x79\x78\x43\x6b\x44','\x57\x51\x70\x63\x4d\x38\x6b\x38\x57\x52\x4b\x30','\x57\x50\x5a\x63\x4b\x64\x43\x2f\x77\x75\x33\x63\x51\x38\x6b\x67','\x79\x32\x37\x63\x51\x57\x69','\x57\x51\x54\x4a\x57\x37\x72\x6f\x70\x4c\x54\x6b\x70\x4e\x46\x64\x51\x58\x58\x50','\x57\x4f\x47\x49\x57\x36\x68\x64\x4a\x49\x57','\x57\x52\x5a\x64\x4c\x77\x4c\x34\x67\x72\x74\x63\x4f\x43\x6f\x30','\x75\x53\x6b\x37\x45\x38\x6b\x38\x57\x51\x5a\x63\x55\x6d\x6b\x7a\x57\x35\x43','\x61\x38\x6f\x58\x57\x4f\x34\x2f\x61\x71','\x66\x33\x7a\x36\x67\x43\x6b\x52','\x57\x52\x43\x34\x57\x50\x64\x63\x51\x4e\x50\x69\x67\x61','\x57\x51\x4a\x63\x50\x53\x6b\x44\x79\x43\x6b\x79','\x73\x58\x4b\x45\x43\x61\x6d\x6e\x46\x61','\x57\x34\x74\x64\x47\x67\x76\x39\x78\x4c\x5a\x63\x54\x43\x6f\x70\x57\x50\x7a\x7a\x57\x50\x56\x64\x4b\x43\x6b\x32','\x57\x51\x37\x63\x53\x6d\x6b\x32\x57\x4f\x6d\x75\x71\x68\x6d\x58','\x79\x43\x6f\x63\x67\x74\x6d\x32','\x6c\x53\x6f\x56\x57\x52\x6c\x64\x51\x53\x6b\x76','\x57\x4f\x52\x64\x53\x32\x6e\x6d\x70\x47','\x46\x38\x6b\x61\x57\x50\x52\x64\x4c\x6d\x6f\x34\x69\x66\x6e\x2f','\x57\x51\x33\x64\x50\x33\x62\x70\x67\x61','\x72\x43\x6f\x6d\x57\x52\x4a\x64\x4c\x33\x30','\x57\x51\x68\x63\x50\x53\x6b\x71\x41\x47','\x44\x30\x61\x70\x78\x4e\x65','\x70\x53\x6b\x2f\x6f\x5a\x64\x64\x47\x61','\x42\x38\x6f\x36\x67\x4a\x71\x58\x6c\x43\x6f\x37\x70\x57','\x57\x4f\x4e\x64\x4e\x38\x6b\x46\x57\x35\x47\x37\x6f\x61','\x57\x35\x4a\x63\x48\x38\x6b\x70\x57\x34\x61','\x57\x37\x75\x38\x57\x4f\x74\x63\x4b\x53\x6f\x74\x74\x6d\x6b\x43\x57\x36\x47','\x57\x52\x47\x51\x57\x52\x2f\x63\x52\x32\x66\x74\x63\x43\x6b\x70','\x61\x6d\x6f\x49\x72\x4d\x54\x6b\x57\x34\x65\x78\x6f\x71','\x6c\x57\x43\x65\x57\x35\x43\x48','\x57\x4f\x76\x32\x44\x53\x6b\x39\x57\x36\x57','\x41\x43\x6b\x78\x75\x6d\x6b\x65\x46\x57','\x57\x50\x37\x63\x4f\x4b\x47\x2f\x57\x51\x47','\x6b\x6d\x6f\x4a\x57\x52\x6c\x63\x51\x57','\x57\x51\x78\x63\x50\x38\x6b\x77\x43\x6d\x6f\x61\x57\x4f\x4b\x6e\x63\x61','\x57\x52\x52\x63\x53\x31\x4e\x64\x53\x47\x30','\x57\x52\x75\x38\x57\x4f\x52\x63\x53\x4e\x31\x76\x62\x61','\x35\x41\x2b\x4a\x35\x4f\x51\x62\x35\x42\x73\x59\x35\x6c\x36\x68\x37\x37\x59\x6f\x35\x34\x49\x51\x35\x4f\x67\x31\x35\x35\x73\x34','\x72\x6d\x6b\x31\x57\x50\x79\x31\x67\x53\x6f\x73\x57\x51\x78\x64\x51\x71','\x57\x51\x65\x31\x57\x50\x5a\x63\x53\x4d\x50\x45\x78\x43\x6b\x44','\x6a\x43\x6f\x4e\x57\x35\x70\x64\x4f\x33\x79','\x78\x53\x6b\x47\x57\x34\x5a\x64\x4c\x38\x6b\x43\x78\x53\x6f\x43','\x70\x68\x68\x64\x49\x77\x46\x63\x4c\x53\x6f\x42','\x57\x52\x69\x6a\x57\x51\x34\x43\x73\x47','\x42\x43\x6b\x6a\x57\x37\x46\x64\x52\x43\x6f\x67\x57\x51\x6d','\x57\x35\x4a\x63\x4d\x38\x6f\x68\x57\x35\x74\x64\x4e\x47\x78\x64\x47\x62\x47','\x57\x52\x37\x63\x4e\x4e\x75\x43','\x34\x50\x45\x4e\x34\x50\x73\x4f\x34\x50\x41\x45\x34\x50\x45\x54\x34\x50\x77\x61\x34\x50\x73\x59\x43\x6d\x6f\x30','\x57\x50\x6a\x7a\x43\x6d\x6b\x62\x57\x36\x43\x4f\x68\x38\x6b\x69','\x57\x4f\x4a\x64\x4a\x43\x6b\x79\x78\x71\x53','\x57\x35\x68\x63\x48\x68\x68\x63\x47\x76\x52\x64\x4d\x47','\x75\x6d\x6f\x6d\x57\x52\x4e\x64\x49\x49\x4a\x64\x50\x71','\x57\x37\x5a\x64\x56\x43\x6b\x58\x57\x4f\x69\x77\x77\x30\x53\x4e','\x57\x52\x6d\x45\x57\x52\x61\x41\x74\x4e\x30\x34\x44\x57','\x6d\x4b\x57\x61\x57\x37\x6e\x61','\x57\x35\x56\x63\x4a\x4e\x66\x73\x57\x52\x57','\x57\x51\x79\x2f\x57\x4f\x75\x58\x78\x47','\x57\x35\x64\x63\x49\x4e\x68\x63\x49\x31\x64\x64\x47\x33\x69\x62','\x6d\x43\x6f\x76\x57\x51\x75\x6f\x66\x57','\x57\x34\x4a\x64\x4a\x38\x6b\x6d\x57\x36\x7a\x57','\x41\x57\x6d\x57\x79\x74\x4f','\x61\x6d\x6b\x6b\x6a\x74\x5a\x64\x4d\x57\x68\x64\x4d\x65\x4b','\x57\x52\x31\x31\x57\x35\x4e\x63\x51\x78\x30\x41\x63\x6d\x6b\x7a','\x61\x6d\x6b\x4a\x57\x36\x53\x78\x44\x38\x6b\x4b','\x57\x51\x42\x64\x4a\x4d\x4c\x33\x63\x71\x70\x63\x54\x38\x6f\x79','\x57\x36\x6d\x4d\x57\x52\x57\x74\x41\x57','\x57\x36\x61\x62\x57\x4f\x4a\x63\x4b\x6d\x6f\x65','\x76\x6d\x6f\x72\x72\x31\x6a\x50','\x41\x43\x6b\x54\x72\x6d\x6b\x56\x57\x52\x30','\x61\x6d\x6b\x50\x57\x36\x43\x72\x42\x38\x6f\x4a\x45\x4e\x69','\x57\x34\x68\x63\x4a\x49\x68\x63\x47\x66\x30','\x57\x36\x37\x63\x4c\x43\x6f\x63\x6d\x4b\x74\x63\x4c\x74\x70\x63\x53\x58\x64\x63\x47\x77\x4b','\x74\x43\x6b\x30\x57\x35\x74\x64\x4c\x53\x6f\x32\x57\x4f\x76\x4c','\x72\x6d\x6b\x4b\x79\x53\x6b\x6f\x57\x4f\x43','\x57\x37\x2f\x64\x4b\x6d\x6b\x72\x43\x57\x4e\x63\x54\x49\x37\x63\x4d\x61','\x57\x36\x43\x51\x57\x4f\x4a\x63\x4c\x43\x6f\x76\x72\x6d\x6b\x67\x57\x36\x4f','\x57\x4f\x6c\x63\x4d\x67\x56\x63\x4a\x4b\x56\x64\x4d\x31\x72\x2b','\x61\x43\x6f\x47\x57\x4f\x74\x64\x48\x76\x46\x64\x4e\x38\x6b\x36\x78\x61','\x41\x53\x6f\x38\x71\x38\x6b\x4b\x46\x71','\x57\x4f\x39\x6e\x57\x37\x4a\x63\x49\x77\x68\x4f\x48\x35\x4e\x4c\x49\x35\x6c\x4e\x4c\x36\x65','\x57\x34\x78\x64\x4d\x38\x6b\x76\x57\x35\x54\x4c\x45\x71','\x76\x43\x6b\x6b\x57\x34\x56\x64\x4a\x53\x6b\x49','\x41\x30\x61\x6a\x57\x51\x4b\x43\x57\x50\x33\x64\x4a\x43\x6f\x74','\x57\x51\x76\x4f\x73\x38\x6b\x53\x57\x34\x47','\x74\x57\x43\x65\x44\x62\x53\x6e\x44\x38\x6f\x48','\x46\x53\x6b\x31\x57\x51\x78\x64\x50\x43\x6f\x57\x6e\x30\x35\x4b','\x75\x6d\x6f\x6e\x57\x52\x2f\x64\x4b\x73\x74\x64\x4f\x43\x6b\x72','\x57\x35\x42\x63\x48\x66\x42\x63\x56\x68\x64\x64\x56\x76\x6d\x4d','\x76\x48\x47\x68\x46\x74\x61\x6b\x45\x43\x6f\x49','\x57\x51\x64\x63\x47\x67\x54\x34\x68\x57\x6c\x63\x4f\x53\x6f\x46','\x74\x43\x6f\x34\x79\x68\x39\x6b\x57\x4f\x31\x65\x46\x61','\x62\x53\x6b\x2f\x57\x34\x52\x64\x4d\x76\x70\x64\x4d\x6d\x6b\x5a\x75\x61','\x71\x76\x30\x61\x57\x52\x44\x68','\x57\x35\x4e\x64\x4d\x4e\x4c\x4f','\x57\x52\x5a\x64\x4c\x67\x35\x30\x63\x72\x6d','\x57\x52\x2f\x64\x4e\x38\x6f\x62\x57\x50\x5a\x64\x4b\x71','\x57\x50\x2f\x63\x55\x31\x42\x64\x55\x57\x74\x63\x54\x49\x43\x2f','\x46\x53\x6f\x4b\x57\x35\x39\x6e\x57\x36\x5a\x63\x49\x53\x6f\x30\x6d\x71','\x6c\x43\x6f\x64\x57\x34\x64\x64\x4f\x4e\x61','\x57\x4f\x6c\x64\x56\x53\x6f\x38\x73\x4a\x52\x63\x56\x43\x6b\x37\x57\x34\x47','\x57\x35\x43\x48\x57\x35\x6c\x64\x4d\x6d\x6f\x42','\x69\x65\x5a\x64\x47\x30\x4a\x63\x51\x61','\x6d\x38\x6f\x71\x57\x36\x70\x64\x50\x38\x6f\x62\x57\x52\x50\x62\x57\x36\x57','\x57\x4f\x72\x2b\x57\x37\x42\x63\x4e\x73\x30','\x78\x43\x6b\x62\x74\x61','\x57\x50\x6c\x64\x51\x31\x4a\x63\x48\x53\x6f\x37\x63\x38\x6b\x6c\x6d\x71','\x6d\x6d\x6f\x73\x57\x37\x68\x64\x53\x6d\x6f\x41\x57\x52\x6e\x70\x57\x37\x4f','\x46\x77\x69\x4f\x57\x4f\x7a\x35','\x57\x35\x74\x63\x49\x59\x74\x63\x4c\x31\x33\x64\x4c\x61','\x62\x38\x6f\x4c\x57\x35\x33\x64\x4c\x4c\x33\x64\x47\x6d\x6b\x59','\x45\x4b\x6a\x46\x75\x66\x57','\x57\x50\x52\x64\x47\x43\x6f\x51\x57\x52\x4a\x64\x53\x38\x6b\x39','\x74\x6d\x6f\x74\x73\x78\x35\x62\x57\x50\x43\x70','\x57\x51\x4e\x63\x51\x77\x61\x53\x57\x51\x43','\x57\x34\x68\x63\x4c\x48\x56\x63\x4b\x31\x4e\x64\x4b\x74\x4e\x64\x4b\x57','\x57\x4f\x65\x50\x57\x52\x37\x63\x4c\x33\x43','\x57\x52\x4e\x63\x47\x49\x39\x71','\x71\x38\x6b\x35\x57\x4f\x6c\x63\x4b\x71','\x6d\x43\x6b\x6b\x6f\x63\x46\x64\x50\x61','\x41\x43\x6b\x75\x57\x37\x33\x63\x53\x43\x6b\x62','\x69\x6d\x6b\x32\x69\x73\x52\x64\x55\x57','\x57\x50\x4e\x63\x48\x43\x6b\x77\x71\x43\x6b\x76','\x57\x52\x52\x63\x47\x38\x6b\x44\x41\x72\x4e\x63\x55\x4a\x4a\x64\x4b\x71','\x57\x52\x33\x63\x4f\x4d\x43\x6f\x57\x51\x57','\x46\x6d\x6f\x44\x45\x32\x37\x64\x55\x38\x6f\x78\x72\x61\x4b','\x35\x52\x41\x62\x57\x52\x4f\x4c\x6d\x43\x6b\x4a\x57\x50\x4a\x64\x52\x38\x6b\x42','\x67\x43\x6b\x4f\x57\x37\x66\x71\x79\x53\x6b\x2f\x6f\x67\x47','\x61\x38\x6b\x6d\x64\x47\x42\x64\x52\x61','\x7a\x53\x6f\x50\x57\x52\x78\x64\x54\x73\x53','\x57\x36\x37\x64\x4a\x6d\x6b\x45\x57\x34\x57','\x7a\x4e\x38\x49\x45\x4b\x33\x64\x4a\x71','\x57\x52\x52\x63\x51\x67\x57\x6b\x57\x50\x43','\x78\x38\x6b\x57\x57\x35\x5a\x64\x4d\x38\x6b\x76\x77\x38\x6f\x6b','\x57\x34\x4f\x6d\x57\x4f\x37\x63\x49\x43\x6f\x31','\x57\x50\x52\x63\x4c\x4a\x6d\x4f','\x57\x50\x76\x66\x57\x37\x42\x63\x4a\x59\x71','\x71\x38\x6b\x57\x57\x34\x5a\x64\x4c\x6d\x6b\x6a\x62\x43\x6f\x6b\x6a\x47','\x46\x53\x6b\x47\x57\x35\x37\x64\x4e\x61','\x57\x52\x39\x59\x74\x6d\x6b\x50\x57\x35\x6d\x63\x70\x43\x6b\x2b','\x57\x50\x4f\x4f\x57\x4f\x38\x62\x46\x61','\x57\x50\x33\x63\x53\x68\x2f\x64\x54\x58\x38','\x74\x43\x6f\x74\x74\x38\x6b\x61\x77\x4d\x47\x68\x44\x57','\x57\x36\x33\x63\x53\x53\x6f\x55\x72\x4e\x42\x64\x54\x38\x6b\x32\x57\x35\x75','\x57\x34\x5a\x64\x48\x53\x6b\x6c\x57\x35\x6e\x4a\x7a\x43\x6b\x49','\x79\x43\x6b\x6e\x57\x35\x56\x64\x4b\x53\x6b\x2b','\x57\x4f\x4a\x63\x51\x75\x57\x6f\x57\x52\x65','\x73\x6d\x6b\x77\x57\x51\x78\x64\x54\x43\x6b\x31','\x57\x34\x74\x63\x4f\x76\x35\x4f\x57\x52\x43\x58\x6e\x38\x6f\x35','\x57\x52\x4e\x64\x4a\x73\x57','\x61\x38\x6b\x53\x57\x36\x69\x5a\x73\x61','\x75\x38\x6f\x44\x57\x51\x2f\x64\x49\x64\x74\x64\x4f\x53\x6b\x68\x41\x61','\x72\x6d\x6b\x47\x57\x35\x37\x64\x4e\x61','\x64\x38\x6b\x51\x57\x36\x71\x66\x7a\x38\x6b\x50\x6f\x68\x69','\x57\x4f\x78\x63\x47\x74\x53\x34\x61\x4b\x2f\x64\x51\x6d\x6f\x77','\x63\x6d\x6f\x71\x57\x4f\x56\x64\x4d\x43\x6b\x69','\x57\x35\x71\x34\x57\x34\x42\x64\x54\x38\x6f\x70','\x62\x38\x6f\x37\x57\x50\x4b\x41\x62\x61','\x73\x53\x6f\x4b\x72\x30\x46\x63\x4d\x71','\x43\x43\x6f\x41\x72\x6d\x6b\x37\x77\x57','\x6e\x38\x6f\x56\x57\x52\x78\x64\x50\x43\x6b\x31','\x57\x34\x64\x63\x48\x4d\x50\x76\x57\x50\x72\x35\x66\x57','\x69\x68\x6c\x64\x51\x78\x46\x63\x4d\x61','\x57\x52\x37\x63\x48\x4d\x57\x76','\x43\x6d\x6f\x5a\x57\x34\x39\x6e\x57\x52\x38','\x57\x51\x6d\x73\x57\x52\x65\x77\x76\x32\x30\x2b','\x57\x35\x46\x63\x49\x68\x5a\x63\x49\x4b\x5a\x64\x4e\x76\x53\x59','\x57\x51\x47\x67\x57\x50\x42\x63\x52\x74\x69','\x79\x43\x6b\x68\x57\x52\x48\x74\x57\x35\x71','\x75\x53\x6f\x5a\x74\x78\x7a\x67\x57\x50\x62\x45\x43\x61','\x57\x50\x5a\x63\x4f\x33\x79\x6a\x57\x51\x4f','\x57\x37\x61\x4f\x57\x52\x38','\x75\x48\x79\x41\x79\x47\x4f','\x65\x4c\x4c\x4f\x6f\x53\x6b\x42','\x73\x38\x6f\x4f\x57\x52\x5a\x64\x48\x64\x71','\x57\x36\x70\x63\x4f\x68\x5a\x63\x56\x4c\x30','\x79\x53\x6f\x76\x7a\x61','\x57\x52\x37\x63\x56\x43\x6b\x46\x70\x61','\x67\x53\x6b\x30\x57\x34\x6d\x61\x45\x57','\x78\x53\x6b\x62\x79\x53\x6b\x74\x78\x57','\x6c\x47\x69\x63\x57\x36\x69','\x7a\x4e\x79\x77\x71\x4c\x34','\x57\x52\x56\x63\x4f\x66\x57\x2b\x57\x51\x30','\x42\x38\x6f\x4b\x57\x4f\x50\x79\x57\x51\x33\x63\x51\x43\x6f\x6c\x67\x57','\x57\x52\x5a\x64\x47\x53\x6b\x41\x79\x58\x74\x63\x55\x59\x68\x63\x49\x57','\x57\x35\x75\x2b\x57\x4f\x75\x4e\x7a\x47','\x57\x51\x58\x37\x46\x6d\x6b\x6a\x57\x35\x69','\x57\x37\x79\x39\x57\x37\x78\x63\x49\x38\x6f\x75\x64\x43\x6b\x42\x57\x36\x69','\x57\x51\x6e\x32\x78\x6d\x6b\x38\x57\x36\x38','\x57\x37\x56\x64\x4d\x49\x53','\x73\x58\x6d\x62\x44\x58\x79','\x77\x6d\x6b\x65\x6e\x49\x79\x52\x63\x47','\x68\x38\x6b\x4a\x57\x51\x39\x7a','\x57\x36\x61\x47\x57\x52\x52\x63\x4b\x38\x6f\x65\x72\x71','\x74\x43\x6b\x76\x62\x4a\x30\x6b','\x57\x37\x46\x63\x48\x43\x6f\x4c\x45\x72\x38','\x6a\x53\x6f\x6d\x57\x51\x71\x32\x6f\x57','\x57\x52\x47\x76\x57\x50\x4b\x66\x78\x78\x79\x2b\x6a\x47','\x74\x38\x6b\x4f\x57\x35\x53','\x57\x51\x72\x71\x57\x50\x42\x63\x54\x38\x6b\x46\x57\x52\x48\x46\x77\x63\x47\x32\x67\x4e\x6a\x7a\x57\x36\x71','\x57\x51\x69\x65\x57\x34\x64\x64\x4a\x48\x6d','\x57\x51\x56\x63\x4c\x33\x75\x76\x57\x52\x53','\x41\x43\x6b\x6e\x57\x50\x76\x45\x57\x36\x69','\x62\x38\x6f\x30\x57\x34\x57','\x67\x53\x6f\x53\x57\x50\x6d\x57\x67\x61','\x57\x35\x57\x4f\x57\x36\x70\x64\x48\x53\x6f\x6e','\x57\x51\x37\x63\x47\x4e\x57\x71\x57\x51\x4b','\x57\x35\x46\x63\x4e\x6d\x6f\x43\x45\x5a\x79','\x76\x6d\x6b\x31\x57\x52\x4a\x64\x51\x43\x6b\x68\x6d\x4c\x50\x2f','\x57\x34\x68\x63\x47\x53\x6b\x41\x57\x34\x65','\x71\x38\x6f\x34\x68\x32\x4c\x41\x57\x4f\x30\x6e\x42\x61','\x6e\x38\x6f\x57\x57\x51\x33\x64\x4d\x53\x6b\x44\x75\x4e\x30','\x57\x50\x75\x56\x57\x4f\x30\x58\x45\x47','\x57\x52\x31\x5a\x42\x6d\x6b\x56\x57\x35\x71','\x66\x43\x6b\x6a\x77\x73\x52\x64\x47\x61\x42\x63\x4d\x75\x30','\x75\x4d\x5a\x63\x53\x71\x74\x64\x4e\x47','\x57\x4f\x4a\x63\x48\x71\x6d\x67\x6b\x47','\x57\x51\x75\x58\x57\x50\x4f\x51\x78\x47','\x72\x43\x6b\x7a\x72\x64\x74\x63\x4e\x71','\x63\x43\x6f\x57\x57\x52\x56\x63\x54\x32\x74\x64\x56\x72\x44\x49','\x57\x52\x2f\x63\x4a\x33\x37\x64\x54\x73\x65','\x44\x53\x6f\x35\x77\x33\x42\x63\x56\x57','\x57\x34\x64\x63\x48\x59\x4e\x63\x48\x33\x37\x64\x4a\x5a\x56\x64\x54\x71','\x73\x6d\x6b\x63\x57\x51\x72\x64','\x75\x65\x47\x69\x57\x51\x6d\x72\x57\x50\x70\x64\x4a\x43\x6f\x41','\x57\x51\x5a\x64\x4c\x38\x6b\x76\x43\x58\x47','\x73\x6d\x6b\x4f\x79\x47','\x57\x52\x4e\x63\x4b\x32\x65\x43\x57\x52\x64\x63\x48\x61','\x57\x35\x46\x63\x47\x53\x6f\x78\x42\x5a\x53','\x72\x4d\x6e\x64\x42\x53\x6b\x50\x45\x43\x6f\x73\x43\x61','\x65\x43\x6f\x50\x57\x52\x6d\x76\x69\x47','\x57\x35\x78\x63\x56\x38\x6b\x66\x57\x34\x56\x64\x4c\x57\x71','\x71\x72\x47\x6d\x44\x61','\x57\x50\x6d\x52\x57\x50\x4a\x63\x52\x32\x65','\x62\x38\x6b\x72\x65\x49\x68\x64\x48\x57','\x68\x38\x6b\x59\x57\x36\x71\x65\x7a\x47','\x41\x38\x6b\x50\x57\x35\x64\x64\x4d\x47','\x45\x75\x34\x64\x57\x51\x4c\x66','\x73\x43\x6b\x52\x64\x4a\x65\x69','\x73\x43\x6f\x67\x78\x53\x6b\x72','\x71\x53\x6f\x33\x57\x52\x4a\x63\x51\x77\x56\x64\x56\x71\x61','\x43\x6d\x6f\x56\x64\x74\x43\x37\x6d\x53\x6f\x50\x69\x71','\x57\x50\x33\x63\x54\x66\x74\x64\x51\x58\x64\x63\x50\x30\x38\x34','\x57\x34\x37\x63\x56\x38\x6b\x59\x74\x64\x46\x64\x56\x53\x6f\x57\x57\x34\x69','\x76\x33\x79\x49\x41\x57','\x65\x4d\x31\x46\x6f\x53\x6b\x63\x41\x57','\x57\x51\x5a\x64\x4d\x77\x4c\x33\x67\x72\x71','\x44\x4d\x43\x4e\x7a\x4b\x43','\x57\x51\x2f\x63\x4b\x30\x46\x64\x4c\x72\x6d','\x57\x4f\x33\x63\x52\x66\x68\x64\x54\x58\x4f','\x57\x37\x75\x4b\x57\x52\x46\x63\x4a\x43\x6f\x66\x74\x6d\x6b\x6c\x57\x36\x79','\x71\x43\x6f\x32\x57\x50\x48\x35\x65\x43\x6f\x79\x57\x52\x5a\x64\x51\x71','\x57\x4f\x6c\x63\x4c\x38\x6f\x43\x57\x35\x4a\x63\x49\x57\x56\x63\x4d\x61\x30','\x57\x4f\x6a\x6d\x57\x37\x68\x63\x4c\x71','\x57\x36\x61\x50\x57\x52\x6c\x63\x47\x53\x6f\x63','\x42\x6d\x6f\x7a\x43\x61','\x73\x38\x6b\x49\x78\x6d\x6b\x4b\x57\x51\x79','\x41\x4b\x57\x68\x57\x52\x72\x45\x57\x50\x34','\x42\x38\x6f\x31\x57\x35\x48\x74\x57\x51\x78\x63\x53\x38\x6f\x75\x66\x57','\x57\x51\x37\x63\x53\x43\x6b\x43\x7a\x38\x6b\x49\x57\x50\x4b\x62\x74\x61','\x73\x32\x69\x64\x57\x51\x72\x36','\x69\x43\x6f\x59\x57\x52\x64\x63\x4b\x31\x61','\x57\x36\x68\x63\x4d\x59\x42\x63\x47\x61','\x57\x51\x42\x63\x4f\x38\x6b\x37\x57\x50\x4b\x73\x79\x66\x4b\x4d','\x57\x52\x2f\x63\x47\x32\x44\x44\x57\x4f\x31\x34\x66\x53\x6b\x43','\x57\x4f\x46\x63\x48\x5a\x72\x30'];_0xcfe1=function(){return _0x22eefc;};return _0xcfe1();}const _0x53a5c1={};_0x53a5c1[_0x40f8df(0x5d1,'\x53\x63\x53\x76')]=_0x40f8df(0x579,'\x73\x4b\x76\x56')+'\x5f\x42\x49\x4e',_0x53a5c1[_0x40f8df(0x4c6,'\x63\x30\x6c\x35')]=_0x40f8df(0x3df,'\x34\x31\x47\x57'),_0x53a5c1[_0x40f8df(0x21d,'\x63\x30\x6c\x35')+'\x65\x73']=[_0x40f8df(0x567,'\x66\x45\x30\x42'),_0x40f8df(0x4ec,'\x6e\x5d\x30\x25')+'\x6c\x6f\x62\x61\x6c\x2f\x62\x69'+_0x40f8df(0x35e,'\x77\x49\x32\x48')+'\x61\x77',_0x40f8df(0x677,'\x6b\x4d\x55\x42')+_0x40f8df(0x1f0,'\x54\x36\x21\x54')+_0x40f8df(0x52c,'\x6a\x44\x57\x53'),_0x40f8df(0x687,'\x63\x30\x6c\x35')+'\x2f\x6f\x70\x65\x6e\x63\x6c\x61'+'\x77'];const _0x1fbe02={};_0x1fbe02[_0x40f8df(0x5d1,'\x53\x63\x53\x76')]=_0x40f8df(0x282,'\x69\x46\x56\x2a')+'\x4e',_0x1fbe02[_0x40f8df(0x319,'\x73\x31\x72\x7a')]=_0x40f8df(0x58d,'\x73\x31\x72\x7a'),_0x1fbe02[_0x40f8df(0x64a,'\x66\x73\x50\x71')+'\x65\x73']=[_0x40f8df(0x68b,'\x4a\x7a\x39\x49'),_0x40f8df(0x2ba,'\x74\x7a\x2a\x4e')+_0x40f8df(0x2cc,'\x64\x51\x24\x2a')+_0x40f8df(0x681,'\x64\x51\x24\x2a'),_0x40f8df(0x2ef,'\x65\x72\x23\x31')+_0x40f8df(0x643,'\x4a\x7a\x39\x49'),'\x2f\x75\x73\x72\x2f\x6c\x6f\x63'+_0x40f8df(0x4ba,'\x65\x72\x23\x31')+_0x40f8df(0x6b1,'\x6a\x44\x57\x53'),_0x40f8df(0x370,'\x4d\x4b\x33\x73')+_0x40f8df(0x500,'\x39\x50\x43\x25')];const _0x5bedeb={};_0x5bedeb[_0x40f8df(0x329,'\x23\x51\x7a\x28')]='\x4f\x50\x45\x4e\x43\x4f\x44\x45'+_0x40f8df(0x55b,'\x63\x30\x6c\x35'),_0x5bedeb['\x63\x6d\x64']=_0x40f8df(0x300,'\x21\x65\x70\x52'),_0x5bedeb[_0x40f8df(0x29b,'\x69\x46\x66\x33')+'\x65\x73']=[_0x40f8df(0x369,'\x76\x71\x63\x59'),'\x7e\x2f\x2e\x62\x75\x6e\x2f\x62'+_0x40f8df(0x624,'\x21\x65\x70\x52')+_0x40f8df(0x293,'\x73\x4b\x76\x56'),_0x40f8df(0x3b7,'\x66\x73\x50\x71')+'\x6c\x6f\x62\x61\x6c\x2f\x62\x69'+'\x6e\x2f\x6f\x70\x65\x6e\x63\x6f'+'\x64\x65',_0x40f8df(0x695,'\x36\x4d\x42\x49')+_0x40f8df(0x202,'\x21\x65\x70\x52')+_0x40f8df(0x640,'\x65\x72\x23\x31'),_0x40f8df(0x348,'\x67\x33\x48\x6f')+_0x40f8df(0x220,'\x59\x59\x49\x77')+'\x65'];const _0x183e0a={};_0x183e0a[_0x40f8df(0x4b9,'\x53\x30\x44\x29')+_0x40f8df(0x64b,'\x69\x46\x56\x2a')]=_0x4cbc00,_0x183e0a['\x6f\x70\x65\x6e\x63\x6c\x61\x77']=_0x53a5c1,_0x183e0a[_0x40f8df(0x5a3,'\x65\x72\x23\x31')]=_0x1fbe02,_0x183e0a[_0x40f8df(0x52a,'\x61\x53\x4a\x6f')]=_0x5bedeb;const _0x1a1858=_0x183e0a;function _0x4c08fc(_0x570834){const _0x4f2d0c=_0x40f8df;return _0x570834[_0x4f2d0c(0x606,'\x44\x5a\x56\x75')+'\x74\x68']('\x7e\x2f')?_0x5f1d3f[_0x4f2d0c(0x21f,'\x6a\x44\x57\x53')](process.env.HOME||'',_0x570834[_0x4f2d0c(0x243,'\x54\x36\x21\x54')](0x1f6*-0xb+-0xdc6+-0x11ad*-0x2)):_0x570834;}function _0x159b92(_0x310957,_0x3187da){const _0x12f116=_0x40f8df,_0x5185c8={'\x42\x77\x69\x6b\x79':'\x45\x64\x69\x74','\x63\x61\x52\x53\x44':_0x12f116(0x558,'\x34\x31\x47\x57'),'\x61\x6b\x6d\x66\x63':_0x12f116(0x451,'\x63\x6f\x51\x62'),'\x44\x6e\x7a\x6e\x44':_0x12f116(0x4b3,'\x63\x6f\x51\x62'),'\x55\x77\x71\x47\x76':_0x12f116(0x3e9,'\x59\x59\x49\x77'),'\x64\x6b\x58\x69\x53':'\x42\x61\x73\x68\x28\x6e\x6f\x64'+_0x12f116(0x442,'\x62\x6e\x52\x53')+_0x12f116(0x5e0,'\x6e\x5d\x30\x25')+_0x12f116(0x65f,'\x58\x69\x58\x30'),'\x75\x49\x59\x66\x46':_0x12f116(0x68d,'\x6e\x35\x48\x57')+_0x12f116(0x35f,'\x67\x33\x48\x6f'),'\x6d\x6d\x68\x77\x72':_0x12f116(0x456,'\x65\x72\x23\x31')+'\x20\x61\x64\x64\x2a\x29','\x43\x52\x75\x46\x65':_0x12f116(0x51a,'\x42\x29\x2a\x41')+_0x12f116(0x569,'\x44\x5a\x56\x75')+_0x12f116(0x487,'\x6e\x5d\x30\x25'),'\x66\x64\x4a\x4c\x46':_0x12f116(0x6a4,'\x58\x69\x58\x30')+'\x20\x6c\x73\x2d\x66\x69\x6c\x65'+'\x73\x2a\x29','\x6a\x43\x52\x4e\x61':'\x2d\x2d\x6f\x75\x74\x70\x75\x74'+_0x12f116(0x4f6,'\x63\x6f\x51\x62'),'\x63\x65\x55\x4d\x77':_0x12f116(0x580,'\x6e\x5d\x30\x25'),'\x6e\x6a\x6b\x62\x45':_0x12f116(0x501,'\x73\x31\x72\x7a'),'\x41\x4b\x63\x51\x62':_0x12f116(0x568,'\x63\x47\x73\x67')+_0x12f116(0x337,'\x63\x30\x6c\x35'),'\x57\x47\x44\x58\x68':_0x12f116(0x1fb,'\x6e\x35\x48\x57')+'\x72','\x61\x54\x49\x48\x67':function(_0x2f76d0){return _0x2f76d0();},'\x57\x6c\x58\x66\x44':function(_0x39a7b2,_0x17c8b7){return _0x39a7b2(_0x17c8b7);},'\x43\x58\x64\x77\x61':function(_0x554cbf,_0x1c6971){return _0x554cbf===_0x1c6971;},'\x70\x4c\x72\x61\x50':_0x12f116(0x52e,'\x63\x47\x73\x67'),'\x61\x79\x5a\x50\x73':_0x12f116(0x29f,'\x59\x59\x49\x77')+_0x12f116(0x450,'\x63\x6f\x51\x62')+_0x12f116(0x3f5,'\x63\x47\x73\x67')+'\x73\x73\x69\x6f\x6e\x73','\x4a\x76\x71\x48\x64':function(_0x2f4800,_0x12fab7){return _0x2f4800(_0x12fab7);},'\x6d\x50\x41\x4c\x70':'\x65\x76\x6f\x6c\x75\x74\x69\x6f'+_0x12f116(0x28c,'\x6e\x35\x48\x57')+_0x12f116(0x3e2,'\x4d\x4b\x33\x73')+_0x12f116(0x66b,'\x73\x31\x72\x7a'),'\x48\x63\x49\x72\x51':function(_0x2dac73,_0x1bd2e3){return _0x2dac73!==_0x1bd2e3;},'\x4e\x65\x53\x74\x4d':_0x12f116(0x44c,'\x63\x6f\x51\x62'),'\x59\x71\x4e\x62\x42':function(_0x49b145,_0x238889){return _0x49b145>=_0x238889;},'\x6a\x58\x46\x64\x4e':_0x12f116(0x392,'\x34\x31\x47\x57'),'\x71\x47\x59\x47\x6f':_0x12f116(0x3c0,'\x69\x46\x56\x2a'),'\x42\x54\x51\x42\x42':function(_0x19f541,_0x444db4,_0x56b272,_0x1f3fee){return _0x19f541(_0x444db4,_0x56b272,_0x1f3fee);},'\x76\x72\x46\x70\x78':_0x12f116(0x4d9,'\x76\x71\x63\x59'),'\x74\x77\x57\x6e\x45':_0x12f116(0x696,'\x61\x53\x4a\x6f'),'\x44\x6c\x6a\x74\x76':_0x12f116(0x33e,'\x74\x7a\x2a\x4e'),'\x6f\x45\x4f\x55\x68':function(_0x27271f,_0x3efaff){return _0x27271f!==_0x3efaff;},'\x5a\x41\x42\x47\x67':_0x12f116(0x3a8,'\x44\x5a\x56\x75'),'\x72\x6f\x42\x45\x6c':_0x12f116(0x217,'\x69\x46\x66\x33'),'\x52\x6d\x6d\x6e\x71':function(_0x22ec26,_0x2bbad3){return _0x22ec26+_0x2bbad3;}};if(_0x5185c8[_0x12f116(0x65c,'\x4a\x7a\x39\x49')](process[_0x12f116(0x455,'\x6b\x4d\x55\x42')],_0x12f116(0x43f,'\x6a\x44\x57\x53')))return null;if(!_0x310957||!/\.cmd$/i[_0x12f116(0x634,'\x6d\x5b\x6d\x29')](_0x310957))return null;let _0x2857bf=_0x310957;if(!_0x5f1d3f['\x69\x73\x41\x62\x73\x6f\x6c\x75'+'\x74\x65'](_0x310957)){try{if(_0x5185c8[_0x12f116(0x565,'\x64\x51\x24\x2a')](_0x5185c8[_0x12f116(0x2dd,'\x65\x36\x74\x38')],_0x5185c8[_0x12f116(0x47d,'\x4b\x30\x39\x76')])){const _0x4c7096=[_0x5185c8[_0x12f116(0x66f,'\x65\x72\x23\x31')],_0x5185c8[_0x12f116(0x584,'\x5d\x28\x38\x41')],_0x5185c8[_0x12f116(0x3a6,'\x63\x47\x73\x67')],_0x5185c8[_0x12f116(0x3ff,'\x23\x55\x6a\x21')],_0x5185c8[_0x12f116(0x5b7,'\x6e\x5d\x30\x25')],_0x5185c8[_0x12f116(0x491,'\x44\x5a\x56\x75')],_0x12f116(0x2ad,'\x51\x64\x71\x7a')+_0x12f116(0x414,'\x36\x4d\x42\x49')+'\x29',_0x5185c8[_0x12f116(0x5de,'\x63\x30\x6c\x35')],_0x5185c8[_0x12f116(0x1eb,'\x62\x6e\x52\x53')],_0x5185c8[_0x12f116(0x31f,'\x73\x31\x72\x7a')],_0x5185c8['\x66\x64\x4a\x4c\x46']],_0x5b9f6d=['\x2d\x70',_0x5185c8[_0x12f116(0x2f8,'\x6a\x44\x57\x53')],_0x5185c8[_0x12f116(0x47c,'\x69\x46\x56\x2a')],_0x12f116(0x53f,'\x23\x51\x7a\x28')+_0x12f116(0x444,'\x63\x30\x6c\x35')+'\x65',_0x12f116(0x428,'\x53\x30\x44\x29')+_0x12f116(0x288,'\x55\x38\x70\x57'),_0x12f116(0x29e,'\x59\x37\x51\x4a')+'\x67\x73',_0x3e97e5,_0x12f116(0x6ac,'\x51\x64\x71\x7a')+_0x12f116(0x4ae,'\x63\x47\x73\x67'),..._0x4c7096,'\x2d\x2d\x6d\x6f\x64\x65\x6c',_0x297864.env.EVOLVE_HAND_MODEL||_0x5185c8[_0x12f116(0x518,'\x6b\x4d\x55\x42')],_0x5185c8[_0x12f116(0x476,'\x36\x4d\x42\x49')],_0x2ca959,_0x5185c8[_0x12f116(0x3c4,'\x77\x49\x32\x48')],_0x5185c8[_0x12f116(0x1f8,'\x6b\x4d\x55\x42')](_0xfc4d17),_0x12f116(0x53d,'\x65\x36\x74\x38')+_0x12f116(0x328,'\x62\x6e\x52\x53'),_0x5185c8[_0x12f116(0x525,'\x65\x36\x74\x38')](_0x592c1b,_0x38ce4c.env.EVOLVE_HAND_MAX_TURNS||-0x2ec*0x1+-0x3b*0x32+0xeae*0x1),..._0x5185c8['\x43\x58\x64\x77\x61'](_0x4251f0(_0xb60827.env.EVOLVE_HAND_DANGEROUS||''),_0x5185c8[_0x12f116(0x1e1,'\x6a\x44\x57\x53')])?[_0x5185c8[_0x12f116(0x2c4,'\x73\x31\x72\x7a')]]:[]];return{'\x62\x69\x6e':_0x5185c8[_0x12f116(0x604,'\x69\x46\x56\x2a')](_0x223eff,'\x63\x6c\x61\x75\x64\x65\x2d\x63'+_0x12f116(0x382,'\x6a\x44\x57\x53')),'\x61\x72\x67\x73':_0x5b9f6d,'\x65\x6e\x76':{'\x45\x56\x4f\x4c\x56\x45\x5f\x43\x59\x43\x4c\x45\x5f\x54\x41\x47':_0x32adf9(_0x4c6dae),'\x45\x56\x4f\x4c\x56\x45\x5f\x53\x54\x41\x54\x55\x53\x5f\x46\x49\x4c\x45':_0x1613e6}};}else{const _0x3379a2=_0x5185c8[_0x12f116(0x49b,'\x53\x63\x53\x76')](_0xe01b54,_0x5185c8[_0x12f116(0x479,'\x6e\x5d\x30\x25')],[_0x310957],{'\x65\x6e\x63\x6f\x64\x69\x6e\x67':_0x5185c8['\x74\x77\x57\x6e\x45'],'\x73\x74\x64\x69\x6f':[_0x5185c8[_0x12f116(0x6b9,'\x6d\x73\x37\x79')],_0x12f116(0x498,'\x63\x47\x73\x67'),_0x12f116(0x545,'\x44\x5a\x56\x75')]})['\x74\x72\x69\x6d']();_0x2857bf=_0x3379a2[_0x12f116(0x205,'\x51\x64\x71\x7a')](/\r?\n/)[0x1ba1+0xdcd*-0x2+-0x7][_0x12f116(0x2db,'\x73\x4b\x76\x56')]();}}catch(_0xdeca9b){return null;}if(!_0x2857bf)return null;}let _0x16ea73;try{_0x16ea73=_0x1408cf[_0x12f116(0x260,'\x42\x29\x2a\x41')+_0x12f116(0x586,'\x65\x36\x74\x38')](_0x2857bf,_0x5185c8[_0x12f116(0x302,'\x53\x63\x53\x76')]);}catch(_0x560fa9){if(_0x5185c8[_0x12f116(0x2e5,'\x57\x67\x40\x73')](_0x5185c8[_0x12f116(0x2ee,'\x58\x30\x55\x4f')],_0x5185c8[_0x12f116(0x6a7,'\x61\x53\x4a\x6f')]))return null;else{if(!_0xff17ac[_0x12f116(0x3e3,'\x6e\x35\x48\x57')](_0x1abf2c))return![];const _0x5f44fa=_0x3f8d5e[_0x12f116(0x3dc,'\x76\x71\x63\x59')](_0x550923(),_0x5185c8[_0x12f116(0x207,'\x69\x46\x66\x33')]);if(!_0x4b04dd[_0x12f116(0x3b9,'\x64\x51\x24\x2a')+'\x6e\x63'](_0x5f44fa))return![];const _0x51d622=_0x56a51d[_0x12f116(0x2bb,'\x66\x45\x30\x42')](_0x123aa5[_0x12f116(0x5d6,'\x53\x30\x44\x29')+_0x12f116(0x27d,'\x58\x30\x55\x4f')](_0x5f44fa,'\x75\x74\x66\x38')),_0x143fcf=_0x51d622&&_0x51d622[_0x12f116(0x34b,'\x23\x51\x7a\x28')+_0x12f116(0x485,'\x67\x33\x48\x6f')];if(!_0x143fcf||!_0x143fcf[_0x12f116(0x31c,'\x76\x71\x63\x59')])return![];if(_0x5185c8[_0x12f116(0x51b,'\x4b\x30\x39\x76')](_0x143fcf['\x6f\x75\x74\x63\x6f\x6d\x65'][_0x12f116(0x637,'\x63\x47\x73\x67')],_0x5185c8[_0x12f116(0x245,'\x65\x36\x74\x38')]))return![];if(_0x143fcf['\x6f\x75\x74\x63\x6f\x6d\x65']['\x73\x6b\x69\x70\x5f\x72\x65\x61'+_0x12f116(0x516,'\x21\x65\x70\x52')])return![];const _0x4db1c1=_0x2dc29a[_0x12f116(0x353,'\x42\x29\x2a\x41')](_0x143fcf['\x61\x74']||0x2674+0x5d*-0x3e+-0x2*0x7f7);return _0x3336f6[_0x12f116(0x53e,'\x39\x50\x43\x25')](_0x4db1c1)&&_0x5185c8[_0x12f116(0x23a,'\x65\x36\x74\x38')](_0x4db1c1,_0x2bdd35);}}const _0x3a10b1=_0x16ea73['\x6d\x61\x74\x63\x68'](/"%dp0%[\\/](.+?)"\s*%\*/);if(!_0x3a10b1)return null;const _0x49ab74=_0x5f1d3f[_0x12f116(0x3f1,'\x63\x6f\x51\x62')](_0x5f1d3f[_0x12f116(0x266,'\x6d\x73\x37\x79')](_0x2857bf),_0x3a10b1[0x501*0x7+-0x2431*-0x1+-0x4737]);if(!_0x1408cf[_0x12f116(0x669,'\x53\x30\x44\x29')+'\x6e\x63'](_0x49ab74)&&!_0x1408cf[_0x12f116(0x629,'\x77\x6e\x74\x63')+'\x6e\x63'](_0x49ab74+_0x12f116(0x342,'\x62\x6e\x52\x53'))&&!_0x1408cf[_0x12f116(0x3d5,'\x21\x65\x70\x52')+'\x6e\x63'](_0x5185c8[_0x12f116(0x574,'\x23\x51\x7a\x28')](_0x49ab74,_0x12f116(0x27f,'\x53\x30\x44\x29'))))return null;const _0x4b5d03={};return _0x4b5d03[_0x12f116(0x61c,'\x36\x4d\x42\x49')]=process[_0x12f116(0x66e,'\x73\x4b\x76\x56')],_0x4b5d03[_0x12f116(0x559,'\x65\x36\x74\x38')]=[_0x49ab74,..._0x3187da||[]],_0x4b5d03;}function _0x2964b3(_0x4837d4){const _0x5d05ce=_0x40f8df,_0x559f23={'\x73\x44\x53\x71\x63':_0x5d05ce(0x3f3,'\x53\x63\x53\x76'),'\x58\x48\x49\x4c\x69':function(_0x380f9b,_0xbf77d7){return _0x380f9b(_0xbf77d7);},'\x61\x48\x59\x64\x42':_0x5d05ce(0x5c4,'\x67\x33\x48\x6f'),'\x6e\x6b\x4e\x6c\x6f':function(_0x15550a,_0x13876,_0x128f09){return _0x15550a(_0x13876,_0x128f09);},'\x48\x64\x62\x6c\x42':function(_0x251f7f,_0x590ae3){return _0x251f7f!==_0x590ae3;},'\x50\x58\x72\x4a\x74':_0x5d05ce(0x285,'\x63\x30\x6c\x35'),'\x42\x55\x71\x76\x44':function(_0x1026f9,_0x5a9ba4){return _0x1026f9(_0x5a9ba4);},'\x57\x74\x61\x4c\x47':'\x7a\x4d\x69\x57\x4d'},_0x4bffa9=_0x1a1858[_0x4837d4];if(!_0x4bffa9)throw new Error(_0x5d05ce(0x537,'\x74\x7a\x2a\x4e')+_0x5d05ce(0x4e1,'\x53\x30\x44\x29')+_0x5d05ce(0x2c0,'\x4c\x62\x25\x23')+_0x5d05ce(0x650,'\x6d\x73\x37\x79')+_0x5d05ce(0x289,'\x63\x47\x73\x67')+_0x4837d4+'\x27');if(process.env[_0x4bffa9.env])return process.env[_0x4bffa9.env];if(_0x126d34[_0x4837d4])return _0x126d34[_0x4837d4];try{const _0x2978c2={};return _0x2978c2[_0x5d05ce(0x37d,'\x62\x6e\x52\x53')]=_0x5d05ce(0x28f,'\x36\x4d\x42\x49'),_0x559f23[_0x5d05ce(0x4c7,'\x54\x36\x21\x54')](_0x3762b0,_0x5d05ce(0x5a5,'\x69\x46\x56\x2a')+_0x4bffa9[_0x5d05ce(0x5af,'\x65\x72\x23\x31')],_0x2978c2),_0x126d34[_0x4837d4]=_0x4bffa9[_0x5d05ce(0x5f7,'\x74\x7a\x2a\x4e')],_0x4bffa9[_0x5d05ce(0x381,'\x73\x4b\x76\x56')];}catch(_0x224e5f){}for(const _0x33727c of _0x4bffa9[_0x5d05ce(0x375,'\x34\x31\x47\x57')+'\x65\x73']){if(_0x559f23['\x48\x64\x62\x6c\x42'](_0x5d05ce(0x2de,'\x53\x63\x53\x76'),_0x559f23[_0x5d05ce(0x5c1,'\x58\x30\x55\x4f')]))_0xc1385b=_0xeb08ef[_0x5d05ce(0x49a,'\x4c\x62\x25\x23')],_0x40f4b6(null);else{const _0x5b7047=_0x559f23['\x42\x55\x71\x76\x44'](_0x4c08fc,_0x33727c);if(_0x559f23[_0x5d05ce(0x5a8,'\x66\x45\x30\x42')](_0x5b7047,_0x4bffa9[_0x5d05ce(0x3aa,'\x58\x30\x55\x4f')]))try{if(_0x1408cf[_0x5d05ce(0x20b,'\x4a\x50\x30\x67')+'\x6e\x63'](_0x5b7047)){if(_0x559f23[_0x5d05ce(0x2b4,'\x62\x6e\x52\x53')](_0x559f23[_0x5d05ce(0x663,'\x36\x4d\x42\x49')],_0x559f23[_0x5d05ce(0x33f,'\x4a\x5e\x23\x55')])){if(!_0x4447d6[_0x5d05ce(0x4b1,'\x59\x37\x51\x4a')])return;_0x35ea24[_0x5d05ce(0x4c0,'\x53\x30\x44\x29')]['\x6f\x6e'](_0x559f23[_0x5d05ce(0x40a,'\x4d\x4b\x33\x73')],()=>{});try{_0x2cbe02[_0x5d05ce(0x4be,'\x69\x46\x56\x2a')]['\x77\x72\x69\x74\x65'](_0x559f23[_0x5d05ce(0x354,'\x62\x6e\x52\x53')](_0x312f7c,_0x1fc753),_0x559f23[_0x5d05ce(0x331,'\x51\x64\x71\x7a')]),_0x1c8457[_0x5d05ce(0x493,'\x65\x36\x74\x38')][_0x5d05ce(0x4ed,'\x5d\x28\x38\x41')]();}catch(_0x49ef1e){}}else return _0x126d34[_0x4837d4]=_0x5b7047,_0x5b7047;}}catch(_0x20ea68){}}}return _0x4bffa9[_0x5d05ce(0x5af,'\x65\x72\x23\x31')];}function _0x2c5c(_0x41f532,_0x43ad48){_0x41f532=_0x41f532-(0x217d+-0x1a5f*0x1+-0x540);const _0x656f7d=_0xcfe1();let _0x897637=_0x656f7d[_0x41f532];if(_0x2c5c['\x4b\x6a\x46\x65\x72\x61']===undefined){var _0x3af048=function(_0x2fcd1a){const _0x539a83='\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x2b\x2f\x3d';let _0x2e1c51='',_0x37cbd4='',_0x192501=_0x2e1c51+_0x3af048,_0x3fb66b=(''+function(){return-0x24cd+-0x98c+0x2e59;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x21b6+-0xbbd*-0x1+0x15fa);for(let _0x4f152b=0x9*0x1b8+-0x1*-0x2415+0x53*-0x9f,_0x533d84,_0x2b0be5,_0x1a58cf=0x311*-0x5+-0xd67+0x2*0xe5e;_0x2b0be5=_0x2fcd1a['\x63\x68\x61\x72\x41\x74'](_0x1a58cf++);~_0x2b0be5&&(_0x533d84=_0x4f152b%(-0x130c*0x2+-0x1*-0x2632+-0x16)?_0x533d84*(-0x29*-0xe5+-0x19c7+-0xaa6)+_0x2b0be5:_0x2b0be5,_0x4f152b++%(-0x2613+-0xf72+0x3589))?_0x2e1c51+=_0x3fb66b||_0x192501['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1a58cf+(0x25e1+0x4*0x1ea+-0x2d7f))-(-0xd3a+-0xa*-0x255+0x1a*-0x63)!==-0x2*0x11b1+0x1*0xa13+0x194f?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x1fd1+0x82*0x37+0x4e2&_0x533d84>>(-(0xf51+0xd*0x291+0x30ac*-0x1)*_0x4f152b&-0xaed*0x2+0x81*-0x23+-0x5*-0x7e7)):_0x4f152b:0xd*-0x287+-0x125*-0x8+0x1*0x17b3){_0x2b0be5=_0x539a83['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2b0be5);}for(let _0x3f5ebd=0x2*-0x6dc+0x1217*0x1+-0x45f,_0x21fcae=_0x2e1c51['\x6c\x65\x6e\x67\x74\x68'];_0x3f5ebd<_0x21fcae;_0x3f5ebd++){_0x37cbd4+='\x25'+('\x30\x30'+_0x2e1c51['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3f5ebd)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x21fd+-0x252a+0x33d*0x1))['\x73\x6c\x69\x63\x65'](-(-0x2*0x74a+-0x1d2d+-0x11*-0x293));}return decodeURIComponent(_0x37cbd4);};const _0x4005ea=function(_0x143acd,_0x264241){let _0x5f4250=[],_0xc5be96=-0x15c9+0x23d4+-0xe0b,_0x19aa62,_0x3d78a5='';_0x143acd=_0x3af048(_0x143acd);let _0x904716;for(_0x904716=0x2131*-0x1+-0x18*0x18d+-0x5*-0xe15;_0x904716<0x316+-0xd0a+0xaf4;_0x904716++){_0x5f4250[_0x904716]=_0x904716;}for(_0x904716=-0x1b3d+-0xf8b+0x25*0x128;_0x904716<0xbaa*-0x2+-0x1049+0x289d;_0x904716++){_0xc5be96=(_0xc5be96+_0x5f4250[_0x904716]+_0x264241['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x904716%_0x264241['\x6c\x65\x6e\x67\x74\x68']))%(0xca3*0x3+0x3ed*-0x4+0x1535*-0x1),_0x19aa62=_0x5f4250[_0x904716],_0x5f4250[_0x904716]=_0x5f4250[_0xc5be96],_0x5f4250[_0xc5be96]=_0x19aa62;}_0x904716=-0x21c+-0x16b8+0x1*0x18d4,_0xc5be96=0x1*-0x1c4b+0x204+0x1a47;for(let _0x41818=0x18e4+0x29*-0x9b+0x11*-0x1;_0x41818<_0x143acd['\x6c\x65\x6e\x67\x74\x68'];_0x41818++){_0x904716=(_0x904716+(-0x26f6+0xbcf*0x1+-0x8*-0x365))%(-0x1591+-0x9fd+0x208e),_0xc5be96=(_0xc5be96+_0x5f4250[_0x904716])%(0xbc9+-0xe6*-0x2b+0x1*-0x316b),_0x19aa62=_0x5f4250[_0x904716],_0x5f4250[_0x904716]=_0x5f4250[_0xc5be96],_0x5f4250[_0xc5be96]=_0x19aa62,_0x3d78a5+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x143acd['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x41818)^_0x5f4250[(_0x5f4250[_0x904716]+_0x5f4250[_0xc5be96])%(0x5*-0x105+0x2*0xfb9+0x1959*-0x1)]);}return _0x3d78a5;};_0x2c5c['\x67\x41\x47\x75\x47\x79']=_0x4005ea,_0x2c5c['\x75\x58\x71\x6a\x48\x6e']={},_0x2c5c['\x4b\x6a\x46\x65\x72\x61']=!![];}const _0x22aaec=_0x656f7d[-0x1*0x1da7+0xa1+-0x2e7*-0xa],_0x2e0c98=_0x41f532+_0x22aaec,_0x735362=_0x2c5c['\x75\x58\x71\x6a\x48\x6e'][_0x2e0c98];if(!_0x735362){if(_0x2c5c['\x47\x79\x47\x7a\x4c\x79']===undefined){const _0x557e30=function(_0x4ea75f){this['\x59\x42\x6f\x50\x4b\x46']=_0x4ea75f,this['\x77\x63\x63\x69\x67\x61']=[0x2*0x7eb+-0x8ba+0x1*-0x71b,-0x277*0x8+-0x25f8+0x39b0,0x2*-0x1276+-0xeb6+-0x89b*-0x6],this['\x54\x69\x74\x72\x6a\x69']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x47\x41\x49\x66\x62\x76']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x78\x63\x46\x66\x50\x4f']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x557e30['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x54\x69\x69\x6e\x42\x53']=function(){const _0xc1385b=new RegExp(this['\x47\x41\x49\x66\x62\x76']+this['\x78\x63\x46\x66\x50\x4f']),_0xeb08ef=_0xc1385b['\x74\x65\x73\x74'](this['\x54\x69\x74\x72\x6a\x69']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x77\x63\x63\x69\x67\x61'][-0x1*-0x1f6a+-0x25da+0x671*0x1]:--this['\x77\x63\x63\x69\x67\x61'][-0xc*0x16f+-0x1f*-0x12d+-0xd*0x17b];return this['\x54\x78\x4a\x4c\x42\x73'](_0xeb08ef);},_0x557e30['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x54\x78\x4a\x4c\x42\x73']=function(_0x40f4b6){if(!Boolean(~_0x40f4b6))return _0x40f4b6;return this['\x61\x6a\x62\x65\x64\x6a'](this['\x59\x42\x6f\x50\x4b\x46']);},_0x557e30['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x61\x6a\x62\x65\x64\x6a']=function(_0x149ae3){for(let _0x4478ce=-0xc1*0x11+-0x1c12+0x28e3,_0x45bc49=this['\x77\x63\x63\x69\x67\x61']['\x6c\x65\x6e\x67\x74\x68'];_0x4478ce<_0x45bc49;_0x4478ce++){this['\x77\x63\x63\x69\x67\x61']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x45bc49=this['\x77\x63\x63\x69\x67\x61']['\x6c\x65\x6e\x67\x74\x68'];}return _0x149ae3(this['\x77\x63\x63\x69\x67\x61'][-0xd*-0x1fd+0x3c7*-0xa+0xbed]);},(''+function(){return 0x5d*0xc+0x2*0x9de+-0x3*0x808;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0xc0e*-0x1+0x1*-0x26c1+-0x2*-0xd5a)&&new _0x557e30(_0x2c5c)['\x54\x69\x69\x6e\x42\x53'](),_0x2c5c['\x47\x79\x47\x7a\x4c\x79']=!![];}_0x897637=_0x2c5c['\x67\x41\x47\x75\x47\x79'](_0x897637,_0x43ad48),_0x2c5c['\x75\x58\x71\x6a\x48\x6e'][_0x2e0c98]=_0x897637;}else _0x897637=_0x735362;return _0x897637;}function _0x35591e(){const _0x158aca=_0x40f8df,_0x23023a={'\x64\x41\x48\x70\x6f':function(_0x15c9d8,_0x3ac1bc){return _0x15c9d8+_0x3ac1bc;},'\x58\x46\x66\x69\x41':function(_0x539ccc,_0x5e3db1){return _0x539ccc<=_0x5e3db1;},'\x43\x79\x4c\x77\x52':function(_0x589eaa,_0x456d69){return _0x589eaa===_0x456d69;},'\x78\x43\x6d\x4a\x56':_0x158aca(0x23d,'\x44\x5a\x56\x75'),'\x6e\x6b\x65\x50\x41':function(_0x37bf5a){return _0x37bf5a();},'\x78\x4f\x41\x55\x68':_0x158aca(0x3ae,'\x6a\x44\x57\x53')+_0x158aca(0x600,'\x76\x71\x63\x59')+_0x158aca(0x216,'\x66\x45\x30\x42')+'\x6e','\x79\x47\x75\x43\x74':_0x158aca(0x3ca,'\x5d\x28\x38\x41'),'\x75\x45\x62\x4e\x4b':'\x52\x65\x61\x64','\x67\x61\x63\x46\x49':_0x158aca(0x341,'\x77\x6e\x74\x63'),'\x4a\x59\x6a\x4a\x49':_0x158aca(0x4fe,'\x58\x30\x55\x4f')+_0x158aca(0x5b5,'\x39\x50\x43\x25')+'\x6a\x73\x20\x73\x6f\x6c\x69\x64'+_0x158aca(0x22a,'\x51\x64\x71\x7a'),'\x74\x7a\x6c\x43\x69':_0x158aca(0x26a,'\x4a\x7a\x39\x49')+_0x158aca(0x208,'\x65\x36\x74\x38'),'\x45\x79\x77\x7a\x5a':_0x158aca(0x36f,'\x63\x47\x73\x67')+_0x158aca(0x3e0,'\x51\x64\x71\x7a'),'\x59\x74\x6c\x44\x49':_0x158aca(0x221,'\x21\x65\x70\x52')+_0x158aca(0x320,'\x36\x4d\x42\x49')+_0x158aca(0x38b,'\x59\x59\x49\x77'),'\x63\x4e\x65\x55\x65':_0x158aca(0x6a4,'\x58\x69\x58\x30')+_0x158aca(0x32d,'\x67\x33\x48\x6f')+_0x158aca(0x45c,'\x4b\x30\x39\x76'),'\x58\x56\x78\x57\x41':_0x158aca(0x63a,'\x34\x31\x47\x57')+_0x158aca(0x6bb,'\x54\x36\x21\x54'),'\x76\x6d\x6a\x74\x5a':_0x158aca(0x41d,'\x4a\x5e\x23\x55')+_0x158aca(0x32a,'\x4a\x5e\x23\x55'),'\x77\x69\x78\x4e\x45':_0x158aca(0x602,'\x69\x46\x56\x2a'),'\x5a\x50\x56\x42\x57':_0x158aca(0x627,'\x65\x72\x23\x31')+'\x68','\x4e\x67\x49\x44\x72':function(_0x1b406c,_0x559586){return _0x1b406c+_0x559586;},'\x59\x74\x66\x70\x76':'\x75\x74\x66\x38','\x79\x4f\x74\x76\x52':_0x158aca(0x229,'\x64\x51\x24\x2a')},_0x1a47e5=_0x23023a[_0x158aca(0x3e5,'\x6d\x73\x37\x79')](_0xd47650);try{const _0x3c88fb={};_0x3c88fb[_0x158aca(0x2fb,'\x53\x63\x53\x76')+'\x65']=!![];if(!_0x1408cf[_0x158aca(0x6b8,'\x5d\x28\x38\x41')+'\x6e\x63'](_0x1a47e5))_0x1408cf[_0x158aca(0x279,'\x55\x38\x70\x57')+'\x63'](_0x1a47e5,_0x3c88fb);}catch(_0x5ef7fc){}const _0x538590=_0x5f1d3f['\x6a\x6f\x69\x6e'](_0x1a47e5,_0x23023a[_0x158aca(0x496,'\x65\x72\x23\x31')]),_0x248aeb={};_0x248aeb[_0x158aca(0x698,'\x4a\x50\x30\x67')]=[_0x23023a[_0x158aca(0x2fa,'\x34\x31\x47\x57')],_0x158aca(0x5da,'\x74\x7a\x2a\x4e'),_0x23023a[_0x158aca(0x4d5,'\x53\x30\x44\x29')],'\x47\x6c\x6f\x62',_0x23023a[_0x158aca(0x521,'\x69\x46\x66\x33')],_0x23023a[_0x158aca(0x2c7,'\x77\x6e\x74\x63')],_0x158aca(0x2b0,'\x39\x50\x43\x25')+_0x158aca(0x2b3,'\x4c\x62\x25\x23')+'\x29',_0x23023a[_0x158aca(0x3d7,'\x4c\x62\x25\x23')],_0x23023a[_0x158aca(0x2b1,'\x62\x6e\x52\x53')],_0x23023a[_0x158aca(0x519,'\x4a\x50\x30\x67')],_0x23023a[_0x158aca(0x439,'\x4b\x30\x39\x76')]],_0x248aeb[_0x158aca(0x4c4,'\x69\x46\x66\x33')]=[_0x23023a[_0x158aca(0x48a,'\x65\x72\x23\x31')],_0x158aca(0x664,'\x61\x53\x4a\x6f')+'\x2d\x72\x66\x20\x2a\x29',_0x23023a[_0x158aca(0x294,'\x6e\x35\x48\x57')],_0x158aca(0x25e,'\x58\x30\x55\x4f')+_0x158aca(0x69b,'\x63\x47\x73\x67'),_0x158aca(0x67b,'\x76\x71\x63\x59')+_0x158aca(0x367,'\x23\x51\x7a\x28'),_0x23023a[_0x158aca(0x447,'\x59\x37\x51\x4a')],_0x23023a['\x5a\x50\x56\x42\x57']];const _0x339a7b={};_0x339a7b[_0x158aca(0x3bb,'\x77\x6e\x74\x63')+_0x158aca(0x20e,'\x4d\x4b\x33\x73')]=_0x248aeb;const _0x59e6ce=_0x339a7b;_0x1408cf['\x77\x72\x69\x74\x65\x46\x69\x6c'+'\x65\x53\x79\x6e\x63'](_0x538590,_0x23023a[_0x158aca(0x389,'\x6a\x44\x57\x53')](JSON[_0x158aca(0x6b6,'\x6d\x73\x37\x79')+'\x79'](_0x59e6ce,null,0xa2e+-0x7*0x421+0x12bb*0x1),'\x0a'),_0x23023a['\x59\x74\x66\x70\x76']);try{JSON[_0x158aca(0x473,'\x67\x33\x48\x6f')](_0x1408cf[_0x158aca(0x68f,'\x58\x30\x55\x4f')+_0x158aca(0x68c,'\x21\x65\x70\x52')](_0x538590,_0x23023a[_0x158aca(0x424,'\x4a\x7a\x39\x49')]));}catch(_0x14420e){if(_0x23023a[_0x158aca(0x59a,'\x61\x53\x4a\x6f')](_0x158aca(0x471,'\x4b\x30\x39\x76'),_0x23023a[_0x158aca(0x419,'\x63\x6f\x51\x62')]))throw new Error(_0x158aca(0x1e7,'\x63\x6f\x51\x62')+_0x158aca(0x546,'\x61\x53\x4a\x6f')+_0x158aca(0x59f,'\x53\x30\x44\x29')+_0x158aca(0x589,'\x4c\x62\x25\x23')+_0x158aca(0x412,'\x62\x6e\x52\x53')+_0x158aca(0x69f,'\x6b\x4d\x55\x42')+_0x538590+'\x3a\x20'+_0x14420e[_0x158aca(0x648,'\x57\x67\x40\x73')]);else{const _0x2280c9=_0x23023a[_0x158aca(0x670,'\x4a\x5e\x23\x55')](_0x4e2ade,_0x4ede16);if(_0x23023a[_0x158aca(0x1ef,'\x23\x51\x7a\x28')](_0x2280c9[_0x158aca(0x212,'\x69\x46\x66\x33')],_0x532477))return _0x2280c9;return _0x34962c=!![],_0x23023a[_0x158aca(0x26f,'\x34\x31\x47\x57')](_0x51b6ef,_0x23023a[_0x158aca(0x2bd,'\x58\x69\x58\x30')])?_0x2280c9[_0x158aca(0x44f,'\x69\x46\x66\x33')](-0x1*-0x10f7+0x13e4+0xc49*-0x3,_0x2878ee):_0x2280c9[_0x158aca(0x2d1,'\x6e\x5d\x30\x25')](-_0x3e674e);}}return _0x538590;}function _0x52543b(_0x4db4a7,_0x168ade,_0x43ae02){const _0x37e1a7=_0x40f8df,_0xa521fa={'\x42\x48\x51\x6b\x43':function(_0x52eb82,_0x2967e2){return _0x52eb82+_0x2967e2;},'\x68\x53\x70\x51\x4b':function(_0x55d953,_0x5a2747){return _0x55d953+_0x5a2747;},'\x46\x68\x48\x58\x6e':function(_0x200d6a,_0x1ef789){return _0x200d6a+_0x1ef789;},'\x4b\x7a\x78\x79\x79':function(_0x206c94,_0x416596){return _0x206c94(_0x416596);},'\x6f\x44\x45\x43\x58':_0x37e1a7(0x675,'\x4a\x50\x30\x67')+_0x37e1a7(0x542,'\x63\x30\x6c\x35')+'\u2501\u2501\u2501\u2501\u2501\u2501\u2501\u2501'+'\x0a','\x4e\x64\x56\x45\x76':_0x37e1a7(0x228,'\x69\x46\x56\x2a')+_0x37e1a7(0x399,'\x66\x45\x30\x42')+_0x37e1a7(0x431,'\x73\x31\x72\x7a')+'\x53\x54\x45\x50\x20\x28\x65\x78'+_0x37e1a7(0x4d6,'\x6d\x73\x37\x79')+_0x37e1a7(0x685,'\x69\x46\x56\x2a')+_0x37e1a7(0x27a,'\x58\x69\x58\x30')+_0x37e1a7(0x3ea,'\x76\x71\x63\x59')+'\x73\x6b\x69\x70\x70\x65\x64\x29'+'\x0a','\x4a\x41\x43\x49\x61':_0x37e1a7(0x27b,'\x4a\x50\x30\x67')+_0x37e1a7(0x5d3,'\x55\x38\x70\x57')+_0x37e1a7(0x3f7,'\x69\x46\x66\x33'),'\x58\x69\x4a\x47\x6b':_0x37e1a7(0x57e,'\x57\x67\x40\x73')+_0x37e1a7(0x313,'\x36\x4d\x42\x49')+_0x37e1a7(0x2b2,'\x67\x33\x48\x6f')+'\x67\x65\x73\x20\x79\x6f\x75\x20'+_0x37e1a7(0x307,'\x76\x71\x63\x59')+'\x3a\x0a','\x72\x55\x76\x56\x6a':'\x20\x20\x20\x20\x6e\x6f\x64\x65'+_0x37e1a7(0x29c,'\x57\x67\x40\x73')+'\x73\x20\x73\x6f\x6c\x69\x64\x69'+_0x37e1a7(0x36d,'\x67\x33\x48\x6f'),'\x4e\x42\x43\x57\x42':'\x49\x74\x20\x6d\x75\x73\x74\x20'+_0x37e1a7(0x2ae,'\x4c\x62\x25\x23')+_0x37e1a7(0x301,'\x51\x64\x71\x7a')+_0x37e1a7(0x598,'\x39\x50\x43\x25')+_0x37e1a7(0x6b7,'\x34\x31\x47\x57')+_0x37e1a7(0x41c,'\x67\x33\x48\x6f')+'\x20\x28\x6f\x72\x20\x60\x5b\x53'+'\x4f\x4c\x49\x44\x49\x46\x59\x5d'+_0x37e1a7(0x6b3,'\x51\x64\x71\x7a')+_0x37e1a7(0x4ac,'\x77\x49\x32\x48')+_0x37e1a7(0x218,'\x73\x4b\x76\x56'),'\x5a\x58\x50\x76\x62':_0x37e1a7(0x316,'\x77\x49\x32\x48')+'\x73\x75\x6c\x74\x22\x3a\x22\x73'+_0x37e1a7(0x46d,'\x36\x4d\x42\x49')+_0x37e1a7(0x505,'\x53\x63\x53\x76')+_0x37e1a7(0x576,'\x63\x30\x6c\x35')+_0x37e1a7(0x22b,'\x6d\x73\x37\x79')+'\x4e\x54\x45\x4e\x54\x5d\x20\x3c'+_0x37e1a7(0x385,'\x6d\x5b\x6d\x29')+'\x20\x64\x69\x64\x2c\x20\x45\x6e'+'\x67\x6c\x69\x73\x68\x2c\x20\x31'+_0x37e1a7(0x50e,'\x34\x31\x47\x57')+_0x37e1a7(0x3c9,'\x57\x67\x40\x73')+_0x37e1a7(0x277,'\x63\x47\x73\x67')+_0x37e1a7(0x27e,'\x64\x51\x24\x2a')+_0x37e1a7(0x281,'\x4a\x5e\x23\x55')+_0x37e1a7(0x5a7,'\x4c\x62\x25\x23'),'\x6b\x70\x75\x75\x4d':_0x37e1a7(0x292,'\x63\x30\x6c\x35')+_0x37e1a7(0x6bc,'\x6e\x35\x48\x57')+'\x46\x59\x5d\x20\x6d\x61\x72\x6b'+_0x37e1a7(0x610,'\x67\x33\x48\x6f')+_0x37e1a7(0x1ed,'\x74\x7a\x2a\x4e')+_0x37e1a7(0x661,'\x66\x73\x50\x71')+'\x61\x72\x65\x20\x72\x65\x71\x75'+_0x37e1a7(0x21b,'\x73\x4b\x76\x56')+_0x37e1a7(0x1ea,'\x55\x38\x70\x57')+'\x6c\x65\x20\x74\x6f\x20\x63\x6f'+_0x37e1a7(0x446,'\x6e\x5d\x30\x25')+_0x37e1a7(0x530,'\x64\x51\x24\x2a')};return _0xa521fa[_0x37e1a7(0x680,'\x59\x37\x51\x4a')](_0xa521fa[_0x37e1a7(0x2e4,'\x4d\x4b\x33\x73')](_0xa521fa[_0x37e1a7(0x480,'\x55\x38\x70\x57')](_0xa521fa[_0x37e1a7(0x24b,'\x61\x53\x4a\x6f')](_0xa521fa[_0x37e1a7(0x29d,'\x73\x4b\x76\x56')](_0xa521fa[_0x37e1a7(0x5d7,'\x67\x33\x48\x6f')](_0xa521fa['\x68\x53\x70\x51\x4b'](_0xa521fa[_0x37e1a7(0x656,'\x6a\x44\x57\x53')](_0xa521fa[_0x37e1a7(0x25c,'\x63\x47\x73\x67')](String,_0x4db4a7||'')+_0xa521fa[_0x37e1a7(0x4e5,'\x36\x4d\x42\x49')],_0xa521fa['\x4e\x64\x56\x45\x76']),_0xa521fa[_0x37e1a7(0x494,'\x58\x69\x58\x30')]),_0xa521fa['\x58\x69\x4a\x47\x6b']),_0xa521fa[_0x37e1a7(0x28d,'\x74\x7a\x2a\x4e')])+_0xa521fa[_0x37e1a7(0x297,'\x6e\x35\x48\x57')]+('\x54\x68\x65\x6e\x20\x77\x72\x69'+_0x37e1a7(0x35c,'\x76\x71\x63\x59')+_0x37e1a7(0x30a,'\x59\x37\x51\x4a')+_0x37e1a7(0x5be,'\x54\x36\x21\x54')+_0x37e1a7(0x20d,'\x58\x69\x58\x30')+_0x43ae02+(_0x37e1a7(0x5dc,'\x6d\x5b\x6d\x29')+_0x37e1a7(0x3d9,'\x4a\x5e\x23\x55')+_0x37e1a7(0x3c1,'\x6e\x35\x48\x57'))),_0x37e1a7(0x4da,'\x6b\x4d\x55\x42')+_0x168ade+'\x0a'),'\x77\x69\x74\x68\x20\x74\x68\x69'+_0x37e1a7(0x236,'\x63\x47\x73\x67')+'\x68\x61\x70\x65\x3a\x0a'),_0xa521fa[_0x37e1a7(0x564,'\x21\x65\x70\x52')])+(_0x37e1a7(0x534,'\x63\x30\x6c\x35')+_0x37e1a7(0x34c,'\x4a\x50\x30\x67')+_0x37e1a7(0x2b7,'\x65\x36\x74\x38')+_0x37e1a7(0x3b1,'\x65\x36\x74\x38')+_0x37e1a7(0x204,'\x44\x5a\x56\x75')+_0x37e1a7(0x508,'\x65\x72\x23\x31')+_0x37e1a7(0x31a,'\x62\x6e\x52\x53')+_0x37e1a7(0x1f7,'\x69\x46\x66\x33')+_0x37e1a7(0x5fa,'\x63\x47\x73\x67')+_0x37e1a7(0x2a3,'\x69\x46\x56\x2a')+_0x37e1a7(0x39a,'\x6b\x4d\x55\x42')+_0x37e1a7(0x4c2,'\x65\x36\x74\x38')+'\x72\x69\x63\x20\x22\x64\x6f\x6e'+_0x37e1a7(0x593,'\x6e\x35\x48\x57')),_0xa521fa['\x6b\x70\x75\x75\x4d']);}function _0x1c2e57(_0xcf3192,_0xbd555d,_0xc3980b,{env:_0x19cc5d,stdinText:_0x31e347,timeoutMs:_0x2f695f,label:_0x5418db,bufferMode:_0x526121,cwd:_0x4ccb41}={}){const _0x3a282e=_0x40f8df,_0x464d27={'\x41\x4a\x44\x4b\x4e':function(_0x1701c1,_0x4d5b63){return _0x1701c1+_0x4d5b63;},'\x6a\x69\x79\x66\x77':function(_0x564eb3,_0x137595){return _0x564eb3<=_0x137595;},'\x68\x57\x7a\x67\x76':_0x3a282e(0x1ff,'\x58\x30\x55\x4f'),'\x63\x57\x74\x73\x48':_0x3a282e(0x4c3,'\x63\x47\x73\x67')+_0x3a282e(0x4a1,'\x59\x37\x51\x4a'),'\x50\x70\x47\x51\x78':function(_0x232c99,_0x3c9fc6){return _0x232c99===_0x3c9fc6;},'\x42\x44\x6b\x4a\x57':function(_0x1c2550,_0xfe6db4){return _0x1c2550(_0xfe6db4);},'\x49\x6c\x7a\x4a\x77':function(_0xc2e95f,_0x51ef34){return _0xc2e95f(_0x51ef34);},'\x67\x59\x68\x77\x4c':_0x3a282e(0x483,'\x73\x4b\x76\x56'),'\x6a\x6c\x49\x73\x66':_0x3a282e(0x2da,'\x58\x69\x58\x30'),'\x70\x48\x67\x4e\x4a':function(_0x2558ba,_0x1de3c0){return _0x2558ba!==_0x1de3c0;},'\x56\x76\x52\x4b\x45':_0x3a282e(0x411,'\x54\x36\x21\x54'),'\x69\x62\x42\x54\x52':function(_0x2c9338,_0x586908,_0x10ab88){return _0x2c9338(_0x586908,_0x10ab88);},'\x75\x6e\x77\x44\x4c':_0x3a282e(0x24c,'\x63\x6f\x51\x62'),'\x53\x6a\x59\x78\x4a':function(_0x187233,_0xde6b25,_0x412061){return _0x187233(_0xde6b25,_0x412061);},'\x74\x55\x45\x74\x54':function(_0x293ff0,_0x586cb9){return _0x293ff0+_0x586cb9;},'\x77\x50\x41\x63\x65':_0x3a282e(0x3c7,'\x51\x64\x71\x7a'),'\x56\x4f\x46\x48\x66':_0x3a282e(0x200,'\x65\x36\x74\x38'),'\x76\x47\x78\x49\x46':_0x3a282e(0x336,'\x4a\x7a\x39\x49'),'\x53\x4c\x73\x66\x63':function(_0x55a11,_0x267891){return _0x55a11>_0x267891;},'\x78\x6e\x7a\x57\x56':function(_0xb04604,_0x4921ee,_0x11bd1a){return _0xb04604(_0x4921ee,_0x11bd1a);},'\x47\x55\x69\x6d\x6d':function(_0x4b8f19,_0x54a79e){return _0x4b8f19||_0x54a79e;},'\x42\x68\x76\x6e\x55':function(_0x44ec7c,_0x5e810e){return _0x44ec7c!=_0x5e810e;},'\x51\x72\x49\x4a\x4d':_0x3a282e(0x398,'\x59\x59\x49\x77'),'\x78\x4f\x73\x62\x52':_0x3a282e(0x562,'\x23\x55\x6a\x21'),'\x41\x48\x72\x57\x77':function(_0x1bbe28,_0x7e0cc3){return _0x1bbe28(_0x7e0cc3);},'\x4e\x72\x72\x6e\x73':_0x3a282e(0x618,'\x36\x4d\x42\x49'),'\x6d\x7a\x6b\x4c\x49':_0x3a282e(0x3cc,'\x64\x51\x24\x2a'),'\x54\x59\x46\x53\x78':function(_0x2f4510,_0x11f50e){return _0x2f4510!==_0x11f50e;},'\x4d\x53\x53\x72\x44':_0x3a282e(0x659,'\x63\x30\x6c\x35'),'\x5a\x75\x6d\x62\x71':_0x3a282e(0x21e,'\x76\x71\x63\x59'),'\x78\x6a\x58\x57\x7a':_0x3a282e(0x4ff,'\x6d\x5b\x6d\x29')};return new Promise(_0x188f06=>{const _0x5d24d9=_0x3a282e,_0x22e56d={'\x55\x65\x71\x54\x4a':function(_0x1c4e45,_0x42b9e3){const _0x4a5c33=_0x2c5c;return _0x464d27[_0x4a5c33(0x427,'\x4a\x50\x30\x67')](_0x1c4e45,_0x42b9e3);},'\x76\x72\x66\x4b\x51':function(_0x49b211,_0x435d44){const _0x2ab168=_0x2c5c;return _0x464d27[_0x2ab168(0x3cf,'\x65\x36\x74\x38')](_0x49b211,_0x435d44);},'\x77\x45\x62\x77\x6e':function(_0x430c8d,_0x18d9f){return _0x430c8d===_0x18d9f;},'\x71\x61\x43\x46\x67':_0x464d27[_0x5d24d9(0x2eb,'\x6a\x44\x57\x53')],'\x78\x6c\x76\x6d\x55':_0x464d27[_0x5d24d9(0x6ae,'\x55\x38\x70\x57')],'\x52\x45\x55\x70\x74':function(_0x39222e,_0x4c79fe){const _0x344e96=_0x5d24d9;return _0x464d27[_0x344e96(0x43b,'\x6e\x35\x48\x57')](_0x39222e,_0x4c79fe);},'\x44\x7a\x78\x6f\x63':function(_0x29d828,_0x25122d){const _0x47190c=_0x5d24d9;return _0x464d27[_0x47190c(0x654,'\x57\x67\x40\x73')](_0x29d828,_0x25122d);},'\x66\x75\x53\x77\x75':function(_0x30bf06,_0x1bf8a2){const _0x434d0f=_0x5d24d9;return _0x464d27[_0x434d0f(0x33d,'\x66\x45\x30\x42')](_0x30bf06,_0x1bf8a2);},'\x68\x67\x4d\x5a\x61':_0x464d27['\x67\x59\x68\x77\x4c'],'\x71\x63\x6b\x70\x42':_0x464d27[_0x5d24d9(0x639,'\x4b\x30\x39\x76')],'\x57\x6e\x6c\x5a\x76':function(_0x262f52,_0x3a4c69){return _0x262f52(_0x3a4c69);},'\x4b\x43\x76\x69\x4a':function(_0x2735d2,_0x277225){const _0x5b8edd=_0x5d24d9;return _0x464d27[_0x5b8edd(0x252,'\x77\x6e\x74\x63')](_0x2735d2,_0x277225);},'\x51\x67\x4b\x47\x65':_0x464d27[_0x5d24d9(0x69a,'\x63\x47\x73\x67')],'\x50\x6d\x52\x6e\x65':function(_0x528740,_0x216fe9,_0x5dc21f){return _0x464d27['\x69\x62\x42\x54\x52'](_0x528740,_0x216fe9,_0x5dc21f);},'\x41\x49\x49\x77\x45':function(_0x19ad6c,_0x56310d){return _0x19ad6c+_0x56310d;},'\x48\x67\x44\x61\x7a':_0x464d27[_0x5d24d9(0x4ea,'\x6e\x5d\x30\x25')],'\x45\x53\x70\x6e\x4e':function(_0x27157d,_0x318480,_0xf04408){const _0x2dd669=_0x5d24d9;return _0x464d27[_0x2dd669(0x3e6,'\x73\x4b\x76\x56')](_0x27157d,_0x318480,_0xf04408);},'\x71\x79\x70\x48\x43':function(_0x22169f,_0x2831a4){const _0x3c74e3=_0x5d24d9;return _0x464d27[_0x3c74e3(0x474,'\x77\x49\x32\x48')](_0x22169f,_0x2831a4);},'\x6c\x71\x4f\x46\x61':_0x464d27['\x77\x50\x41\x63\x65'],'\x68\x51\x44\x73\x6d':_0x464d27[_0x5d24d9(0x378,'\x63\x47\x73\x67')],'\x52\x6a\x73\x71\x75':_0x464d27[_0x5d24d9(0x40b,'\x74\x7a\x2a\x4e')],'\x4b\x6b\x6c\x6e\x49':function(_0x2e78b1,_0x5a0b96){const _0x3bf533=_0x5d24d9;return _0x464d27[_0x3bf533(0x51e,'\x4d\x4b\x33\x73')](_0x2e78b1,_0x5a0b96);},'\x4d\x48\x64\x6a\x4e':_0x5d24d9(0x4f0,'\x62\x6e\x52\x53'),'\x54\x53\x57\x62\x52':_0x5d24d9(0x410,'\x6a\x44\x57\x53'),'\x65\x4b\x4e\x41\x48':function(_0x19de82,_0x4beb01,_0x1039da){return _0x19de82(_0x4beb01,_0x1039da);},'\x47\x6e\x64\x44\x6b':function(_0x23edac,_0x48471c,_0x22f1ee){return _0x464d27['\x78\x6e\x7a\x57\x56'](_0x23edac,_0x48471c,_0x22f1ee);},'\x6d\x53\x43\x4f\x57':function(_0x94f25f,_0x4a74b3){return _0x464d27['\x41\x4a\x44\x4b\x4e'](_0x94f25f,_0x4a74b3);},'\x72\x59\x43\x42\x75':function(_0x2ff038){return _0x2ff038();}};let _0x3de86c;const _0x12da01=_0x159b92(_0xbd555d,_0xc3980b),_0x5ad2c7=_0x12da01?_0x12da01[_0x5d24d9(0x50c,'\x66\x73\x50\x71')]:_0xbd555d,_0x2f6e5f=_0x12da01?_0x12da01[_0x5d24d9(0x2f9,'\x6a\x44\x57\x53')]:_0xc3980b;try{_0x3de86c=_0xcf3192(_0x5ad2c7,_0x2f6e5f,{'\x65\x6e\x76':_0x19cc5d,'\x63\x77\x64':_0x464d27[_0x5d24d9(0x6a6,'\x6e\x35\x48\x57')](_0x4ccb41,undefined),'\x64\x65\x74\x61\x63\x68\x65\x64':!![],'\x73\x74\x64\x69\x6f':[_0x464d27['\x42\x68\x76\x6e\x55'](_0x31e347,null)?_0x464d27[_0x5d24d9(0x5db,'\x73\x4b\x76\x56')]:_0x464d27['\x78\x4f\x73\x62\x52'],_0x464d27[_0x5d24d9(0x5b9,'\x66\x45\x30\x42')],_0x464d27['\x51\x72\x49\x4a\x4d']]});}catch(_0x11ff12){const _0x40ff11={};_0x40ff11[_0x5d24d9(0x5f6,'\x53\x63\x53\x76')]=null,_0x40ff11['\x73\x74\x64\x6f\x75\x74']='',_0x40ff11[_0x5d24d9(0x514,'\x58\x69\x58\x30')]='',_0x40ff11[_0x5d24d9(0x6aa,'\x21\x65\x70\x52')]=![],_0x40ff11[_0x5d24d9(0x61f,'\x6e\x35\x48\x57')+'\x6f\x72']=_0x11ff12[_0x5d24d9(0x58a,'\x5d\x28\x38\x41')],_0x40ff11['\x74\x72\x75\x6e\x63\x61\x74\x65'+'\x64']=![],_0x464d27[_0x5d24d9(0x42c,'\x58\x69\x58\x30')](_0x188f06,_0x40ff11);return;}let _0x37213c='',_0x1427ec='',_0x40a828=![],_0xaaf60c=![],_0x33deed=null,_0x248e49=![],_0x4a727c=null,_0x1e872f=null,_0x2e25f2=null;const _0x5eed5e=_0x1adc4b(),_0x1719fb=_0x5418db?'\x5b'+_0x5418db+'\x5d\x20':'',_0x2b9220=_0x464d27[_0x5d24d9(0x592,'\x6e\x5d\x30\x25')](_0x526121,_0x5d24d9(0x45f,'\x63\x6f\x51\x62'))?_0x464d27[_0x5d24d9(0x5f4,'\x76\x71\x63\x59')]:'\x74\x61\x69\x6c',_0x4344a0=(_0x567ab4,_0xa52fb6)=>{const _0x46081c=_0x5d24d9,_0x21b9bd=_0x22e56d[_0x46081c(0x249,'\x57\x67\x40\x73')](_0x567ab4,_0xa52fb6);if(_0x22e56d[_0x46081c(0x3b6,'\x66\x73\x50\x71')](_0x21b9bd['\x6c\x65\x6e\x67\x74\x68'],_0x5eed5e))return _0x21b9bd;return _0x40a828=!![],_0x2b9220==='\x68\x65\x61\x64'?_0x21b9bd['\x73\x6c\x69\x63\x65'](0xd70+0xa*0xf1+-0x4e*0x4b,_0x5eed5e):_0x21b9bd[_0x46081c(0x2d1,'\x6e\x5d\x30\x25')](-_0x5eed5e);},_0x205807=_0x2977b1=>{const _0x155fdb=_0x5d24d9;if(_0x22e56d[_0x155fdb(0x443,'\x4b\x30\x39\x76')](_0x22e56d[_0x155fdb(0x699,'\x58\x69\x58\x30')],_0x155fdb(0x5c8,'\x63\x6f\x51\x62'))){const _0x5e92c2=_0x22e56d[_0x155fdb(0x2a2,'\x67\x33\x48\x6f')]['\x73\x70\x6c\x69\x74']('\x7c');let _0xe227e9=-0x44e+-0x1e4f+0x229d;while(!![]){switch(_0x5e92c2[_0xe227e9++]){case'\x30':if(_0x22e56d[_0x155fdb(0x462,'\x4c\x62\x25\x23')](_0x2977b1,0x1823+0x4d9+-0x1cfc))_0xaaf60c=![];continue;case'\x31':_0x22e56d[_0x155fdb(0x4f8,'\x23\x51\x7a\x28')](clearTimeout,_0x1e872f);continue;case'\x32':_0x22e56d['\x66\x75\x53\x77\x75'](clearTimeout,_0x2e25f2);continue;case'\x33':if(_0x248e49)return;continue;case'\x34':const _0x237345={};_0x237345[_0x155fdb(0x65d,'\x57\x67\x40\x73')]=_0x2977b1,_0x237345[_0x155fdb(0x286,'\x67\x33\x48\x6f')]=_0x37213c,_0x237345['\x73\x74\x64\x65\x72\x72']=_0x1427ec,_0x237345['\x74\x69\x6d\x65\x64\x4f\x75\x74']=_0xaaf60c,_0x237345[_0x155fdb(0x30d,'\x58\x69\x58\x30')+'\x6f\x72']=_0x33deed,_0x237345[_0x155fdb(0x2d7,'\x77\x6e\x74\x63')+'\x64']=_0x40a828,_0x22e56d[_0x155fdb(0x34f,'\x63\x6f\x51\x62')](_0x188f06,_0x237345);continue;case'\x35':clearTimeout(_0x4a727c);continue;case'\x36':_0x248e49=!![];continue;}break;}}else{const _0xe058e5=_0x2f204b[_0x155fdb(0x53c,'\x65\x72\x23\x31')+'\x6f\x6e\x5f\x64\x65\x6e\x69\x61'+'\x6c\x73'][_0x155fdb(0x4a9,'\x54\x36\x21\x54')](_0x5d8222=>_0x5d8222&&_0x5d8222[_0x155fdb(0x61a,'\x63\x47\x73\x67')+'\x65']||'\x3f')[_0x155fdb(0x44f,'\x69\x46\x66\x33')](-0xfe6*0x1+-0xb10+0x1af6*0x1,0x511+0x1*-0x1ac7+0x15c*0x10);return{'\x6f\x6b':![],'\x6b\x69\x6e\x64':_0x155fdb(0x45e,'\x58\x30\x55\x4f')+_0x155fdb(0x55a,'\x65\x36\x74\x38')+'\x64','\x72\x65\x61\x73\x6f\x6e':_0x155fdb(0x37c,'\x21\x65\x70\x52')+_0x155fdb(0x555,'\x74\x7a\x2a\x4e')+_0x155fdb(0x2f3,'\x77\x6e\x74\x63')+_0xe058e5[_0x155fdb(0x6af,'\x6d\x5b\x6d\x29')]('\x2c')};}};_0x3de86c['\x6f\x6e'](_0x464d27[_0x5d24d9(0x467,'\x4c\x62\x25\x23')],_0x524f4f=>{const _0x230f9b=_0x5d24d9;if(_0x22e56d[_0x230f9b(0x2a4,'\x42\x29\x2a\x41')](_0x22e56d[_0x230f9b(0x372,'\x23\x55\x6a\x21')],_0x22e56d[_0x230f9b(0x22f,'\x4a\x7a\x39\x49')])){if(_0x1ccc42[_0x230f9b(0x608,'\x57\x67\x40\x73')+'\x6e\x63'](_0x3e1293))return _0x44cc0b[_0x36cb1b]=_0x297788,_0x5610e4;}else _0x33deed=_0x524f4f[_0x230f9b(0x646,'\x23\x55\x6a\x21')],_0x22e56d[_0x230f9b(0x3f9,'\x62\x6e\x52\x53')](_0x205807,null);});const _0x4472b3=_0x464d27['\x54\x59\x46\x53\x78'](String(process.env.EVOLVE_HAND_QUIET||'')[_0x5d24d9(0x2ea,'\x6e\x35\x48\x57')+_0x5d24d9(0x2f0,'\x4a\x5e\x23\x55')](),_0x464d27[_0x5d24d9(0x453,'\x53\x63\x53\x76')]);if(_0x3de86c[_0x5d24d9(0x644,'\x57\x67\x40\x73')])_0x3de86c[_0x5d24d9(0x3f4,'\x6a\x44\x57\x53')]['\x6f\x6e'](_0x464d27[_0x5d24d9(0x2f5,'\x34\x31\x47\x57')],_0xb565fe=>{const _0x4c4587=_0x5d24d9,_0x39e7bb={};_0x39e7bb[_0x4c4587(0x3bf,'\x69\x46\x56\x2a')]=_0x4c4587(0x56b,'\x66\x45\x30\x42'),_0x39e7bb[_0x4c4587(0x321,'\x74\x7a\x2a\x4e')]=_0x4c4587(0x5fc,'\x65\x36\x74\x38')+_0x4c4587(0x445,'\x4b\x30\x39\x76')+_0x4c4587(0x352,'\x65\x36\x74\x38')+_0x4c4587(0x6a2,'\x77\x6e\x74\x63')+_0x4c4587(0x417,'\x69\x46\x66\x33')+_0x4c4587(0x3bc,'\x64\x51\x24\x2a');const _0x3c87a4=_0x39e7bb;if(_0x22e56d[_0x4c4587(0x349,'\x67\x33\x48\x6f')]('\x61\x6d\x70\x46\x4e',_0x22e56d[_0x4c4587(0x5aa,'\x58\x30\x55\x4f')])){const _0x503678={};_0x503678[_0x4c4587(0x556,'\x6d\x5b\x6d\x29')]=_0x3c87a4[_0x4c4587(0x4a3,'\x53\x30\x44\x29')],_0x503678['\x65\x6e']=_0x4c4587(0x322,'\x42\x29\x2a\x41')+_0x4c4587(0x35d,'\x57\x67\x40\x73')+_0x4c4587(0x264,'\x42\x29\x2a\x41')+_0x4c4587(0x4a7,'\x4a\x7a\x39\x49')+_0x4c4587(0x3ef,'\x6e\x35\x48\x57')+_0x4c4587(0x5b1,'\x6a\x44\x57\x53')+'\x74\x75\x73\x20\x61\x75\x74\x6f'+'\x2d\x67\x65\x6e\x65\x72\x61\x74'+_0x4c4587(0x287,'\x4d\x4b\x33\x73')+_0x4c4587(0x35a,'\x36\x4d\x42\x49')+_0x4c4587(0x5ee,'\x62\x6e\x52\x53'),_0x503678['\x7a\x68']=_0x3c87a4[_0x4c4587(0x36a,'\x57\x67\x40\x73')],_0x1a5695[_0x4c4587(0x23f,'\x23\x51\x7a\x28')+_0x4c4587(0x4e4,'\x53\x30\x44\x29')](_0x44db57,_0x400695[_0x4c4587(0x5ba,'\x6e\x35\x48\x57')+'\x79'](_0x503678,null,-0x2074*0x1+-0x11*0x1d9+0x3fdf));const _0x13b584={};return _0x13b584['\x6f\x6b']=!![],_0x13b584[_0x4c4587(0x2df,'\x6b\x4d\x55\x42')]=_0x4c4587(0x59e,'\x63\x47\x73\x67')+_0x4c4587(0x4c1,'\x4d\x4b\x33\x73')+'\x5f\x61',_0x13b584[_0x4c4587(0x4c8,'\x4a\x7a\x39\x49')]='',_0x13b584;}else{_0x37213c=_0x22e56d[_0x4c4587(0x390,'\x4a\x50\x30\x67')](_0x4344a0,_0x37213c,_0xb565fe[_0x4c4587(0x405,'\x59\x37\x51\x4a')]());if(_0x4472b3)process['\x73\x74\x64\x6f\x75\x74'][_0x4c4587(0x1fd,'\x73\x31\x72\x7a')](_0x22e56d[_0x4c4587(0x273,'\x42\x29\x2a\x41')](_0x1719fb,_0xb565fe));}});if(_0x3de86c[_0x5d24d9(0x585,'\x34\x31\x47\x57')])_0x3de86c[_0x5d24d9(0x5dd,'\x6e\x5d\x30\x25')]['\x6f\x6e'](_0x464d27[_0x5d24d9(0x64e,'\x63\x47\x73\x67')],_0xcc3cba=>{const _0x43b5b7=_0x5d24d9,_0x59d738={'\x6f\x64\x6c\x51\x6d':function(_0x5b79b5,_0x474630,_0x2d2525){const _0x267d21=_0x2c5c;return _0x22e56d[_0x267d21(0x1fc,'\x36\x4d\x42\x49')](_0x5b79b5,_0x474630,_0x2d2525);},'\x7a\x67\x53\x4c\x74':_0x43b5b7(0x2fc,'\x6d\x5b\x6d\x29')};if(_0x22e56d['\x4b\x43\x76\x69\x4a'](_0x43b5b7(0x44b,'\x4b\x30\x39\x76'),_0x22e56d[_0x43b5b7(0x34a,'\x63\x30\x6c\x35')]))return TbuqSS[_0x43b5b7(0x4f1,'\x4a\x50\x30\x67')](_0x574f83,_0x43b5b7(0x486,'\x39\x50\x43\x25')+_0x40338b[_0x43b5b7(0x472,'\x4d\x4b\x33\x73')],{'\x73\x74\x64\x69\x6f':TbuqSS[_0x43b5b7(0x481,'\x73\x4b\x76\x56')]}),_0x584159[_0x4d62cc]=_0x5616b4[_0x43b5b7(0x48d,'\x63\x6f\x51\x62')],_0x2d1da8[_0x43b5b7(0x319,'\x73\x31\x72\x7a')];else{_0x1427ec=_0x22e56d[_0x43b5b7(0x595,'\x6d\x5b\x6d\x29')](_0x4344a0,_0x1427ec,_0xcc3cba[_0x43b5b7(0x628,'\x59\x59\x49\x77')]());if(_0x4472b3)process[_0x43b5b7(0x60a,'\x42\x29\x2a\x41')][_0x43b5b7(0x209,'\x57\x67\x40\x73')](_0x22e56d['\x71\x79\x70\x48\x43'](_0x1719fb,_0xcc3cba));}});_0x3de86c['\x6f\x6e'](_0x464d27[_0x5d24d9(0x34d,'\x36\x4d\x42\x49')],_0x4a09a0=>_0x205807(_0x4a09a0)),_0x4a727c=setTimeout(()=>{const _0x5b95bd=_0x5d24d9,_0x41b8fb={'\x6b\x52\x48\x72\x6c':_0x22e56d['\x68\x51\x44\x73\x6d'],'\x79\x67\x68\x66\x58':function(_0xe023c4,_0x59ca82){const _0x252eb0=_0x2c5c;return _0x22e56d[_0x252eb0(0x5e2,'\x66\x73\x50\x71')](_0xe023c4,_0x59ca82);},'\x66\x79\x48\x50\x46':_0x22e56d[_0x5b95bd(0x2af,'\x6b\x4d\x55\x42')],'\x68\x49\x67\x69\x71':function(_0x61dd77,_0x53de45){const _0x141f57=_0x5b95bd;return _0x22e56d[_0x141f57(0x3c2,'\x5d\x28\x38\x41')](_0x61dd77,_0x53de45);},'\x4c\x4f\x79\x42\x72':function(_0xb2e704,_0x5dd4f3){return _0x22e56d['\x57\x6e\x6c\x5a\x76'](_0xb2e704,_0x5dd4f3);}};if(_0x22e56d[_0x5b95bd(0x268,'\x76\x71\x63\x59')](_0x22e56d[_0x5b95bd(0x458,'\x63\x6f\x51\x62')],_0x22e56d[_0x5b95bd(0x64c,'\x4d\x4b\x33\x73')])){if(_0x1a936a[_0x5b95bd(0x397,'\x6e\x5d\x30\x25')])return{'\x6f\x6b':![],'\x6b\x69\x6e\x64':_0x41b8fb[_0x5b95bd(0x64f,'\x63\x30\x6c\x35')],'\x72\x65\x61\x73\x6f\x6e':_0x5b95bd(0x460,'\x6e\x5d\x30\x25')+_0x5b95bd(0x259,'\x58\x30\x55\x4f')+'\x20'+_0x41b8fb['\x79\x67\x68\x66\x58'](_0x400e66,_0x3d8fd7[_0x5b95bd(0x41e,'\x58\x30\x55\x4f')]||_0x41b8fb[_0x5b95bd(0x5a6,'\x6a\x44\x57\x53')])[_0x5b95bd(0x22c,'\x73\x31\x72\x7a')](-0x1d83+0x109+0x1c7a,-0x197*-0x8+-0x1fff*0x1+0x1397)};if(_0x22a690[_0x5b95bd(0x689,'\x4b\x30\x39\x76')](_0x439ff8[_0x5b95bd(0x3c6,'\x57\x67\x40\x73')+_0x5b95bd(0x242,'\x58\x30\x55\x4f')+'\x6c\x73'])&&_0x41b8fb[_0x5b95bd(0x3b4,'\x51\x64\x71\x7a')](_0x336c56[_0x5b95bd(0x23e,'\x63\x30\x6c\x35')+_0x5b95bd(0x551,'\x4b\x30\x39\x76')+'\x6c\x73'][_0x5b95bd(0x407,'\x6e\x5d\x30\x25')],0x76*-0x49+-0x1*-0x391+-0x3*-0xa07)){const _0x4bbc21=_0x2bc9c6[_0x5b95bd(0x67a,'\x67\x33\x48\x6f')+'\x6f\x6e\x5f\x64\x65\x6e\x69\x61'+'\x6c\x73']['\x6d\x61\x70'](_0x5b41e5=>_0x5b41e5&&_0x5b41e5[_0x5b95bd(0x420,'\x67\x33\x48\x6f')+'\x65']||'\x3f')[_0x5b95bd(0x246,'\x5d\x28\x38\x41')](-0x1*-0x811+-0x4c7*0x1+0x34a*-0x1,0x6c9+-0x116c+-0x38f*-0x3);return{'\x6f\x6b':![],'\x6b\x69\x6e\x64':_0x5b95bd(0x470,'\x74\x7a\x2a\x4e')+'\x6f\x6e\x5f\x64\x65\x6e\x69\x65'+'\x64','\x72\x65\x61\x73\x6f\x6e':'\x74\x6f\x6f\x6c\x20\x70\x65\x72'+_0x5b95bd(0x26b,'\x6e\x35\x48\x57')+_0x5b95bd(0x673,'\x21\x65\x70\x52')+_0x4bbc21[_0x5b95bd(0x284,'\x63\x6f\x51\x62')]('\x2c')};}}else{_0xaaf60c=!![];const _0x5decef=_0x3de86c[_0x5b95bd(0x333,'\x4d\x4b\x33\x73')];try{process[_0x5b95bd(0x674,'\x6e\x35\x48\x57')](-_0x5decef,_0x22e56d[_0x5b95bd(0x366,'\x42\x29\x2a\x41')]);}catch(_0x3b8a6e){try{_0x3de86c[_0x5b95bd(0x3b3,'\x59\x37\x51\x4a')](_0x22e56d[_0x5b95bd(0x440,'\x59\x37\x51\x4a')]);}catch(_0x30201b){}}_0x1e872f=_0x22e56d[_0x5b95bd(0x433,'\x4a\x7a\x39\x49')](setTimeout,()=>{const _0x5b38eb=_0x5b95bd,_0x204215={};_0x204215[_0x5b38eb(0x547,'\x42\x29\x2a\x41')]=function(_0x1f5b83,_0x22b059){return _0x1f5b83+_0x22b059;};const _0x226dcf=_0x204215;try{process[_0x5b38eb(0x5ec,'\x64\x51\x24\x2a')](-_0x5decef,_0x22e56d['\x6c\x71\x4f\x46\x61']);}catch(_0x575dc3){try{if(_0x5b38eb(0x258,'\x4d\x4b\x33\x73')!=='\x4c\x78\x58\x58\x41')_0x3de86c['\x6b\x69\x6c\x6c'](_0x5b38eb(0x683,'\x34\x31\x47\x57'));else{_0x1e58c8=_0x24d84a(_0x4097b5,_0xfb83e4['\x74\x6f\x53\x74\x72\x69\x6e\x67']());if(_0x14c7cc)_0x2516b3[_0x5b38eb(0x4d4,'\x64\x51\x24\x2a')][_0x5b38eb(0x5b2,'\x5d\x28\x38\x41')](UIHQaq[_0x5b38eb(0x4bf,'\x53\x30\x44\x29')](_0x5b1f96,_0x139384));}}catch(_0x554eea){}}},_0x22b530()),_0x2e25f2=_0x22e56d[_0x5b95bd(0x227,'\x44\x5a\x56\x75')](setTimeout,()=>{const _0x1e7f6f=_0x5b95bd;try{if(_0x3de86c[_0x1e7f6f(0x5ef,'\x69\x46\x66\x33')])_0x3de86c[_0x1e7f6f(0x3fb,'\x58\x30\x55\x4f')][_0x1e7f6f(0x380,'\x39\x50\x43\x25')]();if(_0x3de86c['\x73\x74\x64\x65\x72\x72'])_0x3de86c[_0x1e7f6f(0x6b2,'\x51\x64\x71\x7a')][_0x1e7f6f(0x3ec,'\x6e\x35\x48\x57')]();_0x3de86c[_0x1e7f6f(0x57b,'\x66\x73\x50\x71')]();}catch(_0x889827){}_0x41b8fb[_0x1e7f6f(0x55e,'\x23\x55\x6a\x21')](_0x205807,null);},_0x22e56d['\x6d\x53\x43\x4f\x57'](_0x22e56d[_0x5b95bd(0x274,'\x23\x55\x6a\x21')](_0x22b530),-0x1*-0x10b4+-0xe5c*0x2+-0x542*-0x6));}},_0x2f695f);if(_0x31e347!=null)_0x464d27[_0x5d24d9(0x655,'\x69\x46\x56\x2a')](_0x2018d3,_0x3de86c,_0x31e347);});}function _0x2018d3(_0x37b3d1,_0x1a0bb4){const _0x2a6fbd=_0x40f8df,_0x113ff7={'\x4e\x6f\x65\x78\x6d':_0x2a6fbd(0x478,'\x76\x71\x63\x59'),'\x59\x65\x6d\x42\x63':_0x2a6fbd(0x51d,'\x21\x65\x70\x52'),'\x56\x4b\x52\x43\x44':function(_0xeb72f3,_0x3b587c){return _0xeb72f3===_0x3b587c;},'\x5a\x75\x44\x79\x63':_0x2a6fbd(0x4cc,'\x59\x59\x49\x77'),'\x58\x45\x59\x56\x59':_0x2a6fbd(0x5e6,'\x23\x55\x6a\x21'),'\x72\x67\x6e\x48\x77':function(_0x16d9fb,_0xceeded){return _0x16d9fb(_0xceeded);}};if(!_0x37b3d1[_0x2a6fbd(0x4be,'\x69\x46\x56\x2a')])return;_0x37b3d1[_0x2a6fbd(0x364,'\x73\x31\x72\x7a')]['\x6f\x6e'](_0x113ff7[_0x2a6fbd(0x672,'\x4c\x62\x25\x23')],()=>{});try{_0x113ff7['\x56\x4b\x52\x43\x44'](_0x113ff7[_0x2a6fbd(0x275,'\x77\x49\x32\x48')],_0x113ff7['\x58\x45\x59\x56\x59'])?_0x376a15['\x70\x61\x72\x73\x65'](_0x179ec1[_0x2a6fbd(0x5d6,'\x53\x30\x44\x29')+_0x2a6fbd(0x590,'\x36\x4d\x42\x49')](_0x159213,mjiuSu[_0x2a6fbd(0x1de,'\x59\x59\x49\x77')])):(_0x37b3d1[_0x2a6fbd(0x4be,'\x69\x46\x56\x2a')][_0x2a6fbd(0x2b6,'\x4c\x62\x25\x23')](_0x113ff7[_0x2a6fbd(0x24d,'\x4a\x5e\x23\x55')](String,_0x1a0bb4),_0x2a6fbd(0x4f9,'\x34\x31\x47\x57')),_0x37b3d1[_0x2a6fbd(0x41b,'\x73\x4b\x76\x56')][_0x2a6fbd(0x5f8,'\x6a\x44\x57\x53')]());}catch(_0x461440){}}function _0x19254f(_0x14f50c){const _0x36659b=_0x40f8df,_0x498f5a={'\x67\x66\x6e\x68\x41':_0x36659b(0x67d,'\x59\x37\x51\x4a'),'\x6b\x4a\x49\x76\x6a':function(_0x3044f5,_0x4b5b0a){return _0x3044f5(_0x4b5b0a);},'\x62\x57\x69\x71\x6c':function(_0x4373ba,_0x59c044){return _0x4373ba||_0x59c044;},'\x65\x46\x47\x42\x65':function(_0x420145,_0x5d460d){return _0x420145-_0x5d460d;},'\x50\x77\x5a\x58\x52':function(_0x46133c,_0xa64e11){return _0x46133c>=_0xa64e11;},'\x55\x65\x56\x67\x7a':'\x4d\x47\x6f\x70\x65','\x53\x46\x74\x76\x70':function(_0x3eb4c0,_0x54a735){return _0x3eb4c0===_0x54a735;}},_0x4b031b=_0x498f5a[_0x36659b(0x4f7,'\x69\x46\x66\x33')](String,_0x498f5a[_0x36659b(0x42f,'\x69\x46\x66\x33')](_0x14f50c,''))[_0x36659b(0x205,'\x51\x64\x71\x7a')]('\x0a')['\x6d\x61\x70'](_0x359834=>_0x359834[_0x36659b(0x2ab,'\x6a\x44\x57\x53')](/^\[Hand\]\s?/,'')['\x74\x72\x69\x6d']())[_0x36659b(0x434,'\x66\x73\x50\x71')](Boolean);for(let _0x436a09=_0x498f5a[_0x36659b(0x269,'\x61\x53\x4a\x6f')](_0x4b031b[_0x36659b(0x212,'\x69\x46\x66\x33')],0x1ecb+0x7e8+-0x26b2);_0x498f5a[_0x36659b(0x1f1,'\x59\x59\x49\x77')](_0x436a09,0x14df*0x1+-0x1*0x2e3+-0x11fc);_0x436a09--){if(!_0x4b031b[_0x436a09]['\x73\x74\x61\x72\x74\x73\x57\x69'+'\x74\x68']('\x7b'))continue;try{if(_0x498f5a[_0x36659b(0x588,'\x51\x64\x71\x7a')]===_0x498f5a[_0x36659b(0x510,'\x65\x36\x74\x38')]){const _0x3e7be5=JSON[_0x36659b(0x473,'\x67\x33\x48\x6f')](_0x4b031b[_0x436a09]);if(_0x3e7be5&&_0x498f5a[_0x36659b(0x58c,'\x53\x30\x44\x29')](_0x3e7be5[_0x36659b(0x4b6,'\x6b\x4d\x55\x42')],_0x36659b(0x5d8,'\x6d\x73\x37\x79')))return _0x3e7be5;}else _0x29a9dd[_0x36659b(0x5bd,'\x34\x31\x47\x57')](QjHgvg[_0x36659b(0x20f,'\x65\x36\x74\x38')]);}catch(_0x201181){}}return null;}function _0x1f3cdc({r:_0x5a9581,statusFile:_0x403d95,cycleStartMs:_0x16b38f,attemptStartMs:_0x489478,solidifyProof:_0x560266}){const _0x44ea92=_0x40f8df,_0x152f1a={'\x70\x66\x4e\x77\x7a':function(_0x4d2177,_0x5a15ed){return _0x4d2177===_0x5a15ed;},'\x69\x6c\x6e\x77\x43':_0x44ea92(0x506,'\x6d\x73\x37\x79'),'\x6b\x6f\x43\x6a\x72':_0x44ea92(0x361,'\x77\x6e\x74\x63'),'\x51\x48\x4d\x45\x66':function(_0x5c4100,_0x1da26d){return _0x5c4100(_0x1da26d);},'\x72\x4a\x46\x59\x66':_0x44ea92(0x581,'\x65\x72\x23\x31'),'\x57\x43\x6d\x50\x41':'\x5b\x53\x4f\x4c\x49\x44\x49\x46'+_0x44ea92(0x645,'\x73\x4b\x76\x56')+'\x44','\x70\x58\x64\x48\x4a':'\x73\x74\x61\x74\x65','\x76\x46\x6b\x67\x52':function(_0x5f2907,_0xaa8985){return _0x5f2907(_0xaa8985);},'\x54\x45\x4d\x46\x6a':_0x44ea92(0x56f,'\x73\x31\x72\x7a')+_0x44ea92(0x2c2,'\x77\x6e\x74\x63')+'\x53\x53','\x55\x61\x4a\x76\x46':_0x44ea92(0x2bf,'\x65\x72\x23\x31'),'\x6d\x53\x77\x6c\x42':_0x44ea92(0x46c,'\x53\x63\x53\x76'),'\x78\x79\x73\x65\x61':function(_0x20a2b7){return _0x20a2b7();},'\x45\x6f\x4e\x6f\x4d':function(_0x290e7e,_0x166570){return _0x290e7e===_0x166570;},'\x4d\x75\x4a\x6f\x44':_0x44ea92(0x355,'\x23\x51\x7a\x28'),'\x78\x67\x54\x51\x61':_0x44ea92(0x54e,'\x6e\x5d\x30\x25')+_0x44ea92(0x24a,'\x65\x36\x74\x38')+_0x44ea92(0x48c,'\x53\x63\x53\x76'),'\x79\x49\x6e\x67\x41':'\x22\x74\x79\x70\x65\x22\x3a\x22'+_0x44ea92(0x2d8,'\x74\x7a\x2a\x4e')+_0x44ea92(0x438,'\x74\x7a\x2a\x4e'),'\x44\x43\x6f\x51\x56':_0x44ea92(0x3e4,'\x74\x7a\x2a\x4e')+_0x44ea92(0x2e2,'\x6d\x73\x37\x79')+'\x22','\x76\x4a\x50\x65\x66':_0x44ea92(0x587,'\x6d\x73\x37\x79')+_0x44ea92(0x2a7,'\x55\x38\x70\x57'),'\x43\x69\x46\x44\x67':function(_0x4afc2,_0x40681f){return _0x4afc2!==_0x40681f;},'\x50\x58\x51\x73\x65':function(_0x2f801b,_0x2f342a){return _0x2f801b===_0x2f342a;},'\x66\x4f\x74\x76\x57':function(_0x5942f9,_0x2ababf){return _0x5942f9&&_0x2ababf;},'\x6c\x4b\x4d\x6d\x63':_0x44ea92(0x409,'\x55\x38\x70\x57'),'\x59\x49\x55\x68\x52':_0x44ea92(0x649,'\x66\x73\x50\x71')+_0x44ea92(0x1df,'\x77\x49\x32\x48')+_0x44ea92(0x3ed,'\x59\x59\x49\x77')+_0x44ea92(0x36b,'\x61\x53\x4a\x6f')+_0x44ea92(0x5d2,'\x4a\x5e\x23\x55')+_0x44ea92(0x61b,'\x77\x6e\x74\x63'),'\x44\x6b\x6c\x6c\x79':_0x44ea92(0x3af,'\x44\x5a\x56\x75')+'\x66\x61\x6c\x6c\x62\x61\x63\x6b'+'\x5f\x61','\x4b\x41\x54\x6a\x78':function(_0x1470db,_0x216c70){return _0x1470db(_0x216c70);},'\x6d\x66\x76\x4f\x44':_0x44ea92(0x24e,'\x4d\x4b\x33\x73')+_0x44ea92(0x468,'\x23\x55\x6a\x21'),'\x56\x70\x59\x61\x7a':function(_0xecf138,_0x41e670){return _0xecf138===_0x41e670;},'\x51\x72\x4e\x69\x71':_0x44ea92(0x362,'\x51\x64\x71\x7a')+'\x73','\x6b\x79\x64\x41\x6c':_0x44ea92(0x561,'\x65\x36\x74\x38')},_0x140da9=_0x5a9581[_0x44ea92(0x622,'\x73\x4b\x76\x56')]+'\x0a'+_0x5a9581[_0x44ea92(0x4aa,'\x4b\x30\x39\x76')];if(_0x5a9581[_0x44ea92(0x6a1,'\x4d\x4b\x33\x73')+'\x6f\x72'])return{'\x6f\x6b':![],'\x6b\x69\x6e\x64':'\x73\x70\x61\x77\x6e\x5f\x65\x72'+_0x44ea92(0x334,'\x4b\x30\x39\x76'),'\x72\x65\x61\x73\x6f\x6e':_0x44ea92(0x60b,'\x59\x37\x51\x4a')+_0x44ea92(0x255,'\x6a\x44\x57\x53')+_0x5a9581[_0x44ea92(0x303,'\x4a\x5e\x23\x55')+'\x6f\x72']};const _0x2b133b=_0x19254f(_0x5a9581[_0x44ea92(0x426,'\x77\x6e\x74\x63')]);if(_0x2b133b){if(_0x44ea92(0x3ad,'\x62\x6e\x52\x53')!==_0x152f1a[_0x44ea92(0x31e,'\x36\x4d\x42\x49')]){if(_0x2b133b[_0x44ea92(0x1f4,'\x64\x51\x24\x2a')])return{'\x6f\x6b':![],'\x6b\x69\x6e\x64':_0x152f1a[_0x44ea92(0x49c,'\x73\x4b\x76\x56')],'\x72\x65\x61\x73\x6f\x6e':_0x44ea92(0x607,'\x53\x63\x53\x76')+_0x44ea92(0x1f3,'\x63\x6f\x51\x62')+'\x20'+_0x152f1a['\x51\x48\x4d\x45\x66'](String,_0x2b133b[_0x44ea92(0x5d5,'\x73\x4b\x76\x56')]||_0x152f1a[_0x44ea92(0x4a0,'\x53\x63\x53\x76')])[_0x44ea92(0x223,'\x6d\x5b\x6d\x29')](0x2595+-0x564+-0x2031,-0x11b1*-0x1+-0x11eb*-0x2+0xef*-0x39)};if(Array[_0x44ea92(0x2d0,'\x54\x36\x21\x54')](_0x2b133b[_0x44ea92(0x4c9,'\x66\x45\x30\x42')+_0x44ea92(0x5a4,'\x5d\x28\x38\x41')+'\x6c\x73'])&&_0x2b133b[_0x44ea92(0x4b8,'\x34\x31\x47\x57')+_0x44ea92(0x533,'\x77\x6e\x74\x63')+'\x6c\x73'][_0x44ea92(0x66c,'\x63\x47\x73\x67')]>-0x14c1+0x962*-0x3+0x141*0x27){const _0x3dcb14=_0x2b133b['\x70\x65\x72\x6d\x69\x73\x73\x69'+_0x44ea92(0x5ca,'\x4a\x50\x30\x67')+'\x6c\x73'][_0x44ea92(0x477,'\x63\x30\x6c\x35')](_0x320798=>_0x320798&&_0x320798[_0x44ea92(0x360,'\x6e\x5d\x30\x25')+'\x65']||'\x3f')[_0x44ea92(0x376,'\x4a\x7a\x39\x49')](-0x5*-0x36d+-0x14f3+0x3d2,0x1d58+0x7*0x15b+0x1*-0x26cb);return{'\x6f\x6b':![],'\x6b\x69\x6e\x64':_0x44ea92(0x66a,'\x55\x38\x70\x57')+_0x44ea92(0x422,'\x74\x7a\x2a\x4e')+'\x64','\x72\x65\x61\x73\x6f\x6e':_0x44ea92(0x2e8,'\x55\x38\x70\x57')+_0x44ea92(0x39d,'\x44\x5a\x56\x75')+_0x44ea92(0x484,'\x23\x55\x6a\x21')+_0x3dcb14[_0x44ea92(0x5cb,'\x34\x31\x47\x57')]('\x2c')};}}else{const _0x2c31f9=_0x2be83d[_0x44ea92(0x63c,'\x69\x46\x56\x2a')](_0x3290a2[_0x2198d6]);if(_0x2c31f9&&cinOaS[_0x44ea92(0x56c,'\x5d\x28\x38\x41')](_0x2c31f9[_0x44ea92(0x3f6,'\x4b\x30\x39\x76')],_0x44ea92(0x550,'\x61\x53\x4a\x6f')))return _0x2c31f9;}}const _0x51595a=_0x140da9[_0x44ea92(0x2d5,'\x62\x6e\x52\x53')](_0x152f1a[_0x44ea92(0x416,'\x6b\x4d\x55\x42')]),_0x4a8d8a=Number[_0x44ea92(0x5d9,'\x4a\x50\x30\x67')](_0x489478)?_0x489478:_0x16b38f,_0x3711d7=_0x560266===_0x152f1a[_0x44ea92(0x42d,'\x61\x53\x4a\x6f')]?_0x152f1a[_0x44ea92(0x517,'\x61\x53\x4a\x6f')](_0x4dac94,_0x4a8d8a):_0x140da9[_0x44ea92(0x452,'\x73\x4b\x76\x56')](_0x152f1a[_0x44ea92(0x3e8,'\x4b\x30\x39\x76')]),_0x16e418=_0x152f1a[_0x44ea92(0x21c,'\x36\x4d\x42\x49')](_0x2d8e1e,_0x403d95);if(_0x152f1a['\x70\x66\x4e\x77\x7a'](_0x5a9581[_0x44ea92(0x36c,'\x77\x6e\x74\x63')],-0x2bf*0xb+-0xa28+-0x1*-0x285d)&&!_0x51595a&&_0x3711d7&&_0x152f1a[_0x44ea92(0x469,'\x61\x53\x4a\x6f')](_0x16e418,_0x152f1a[_0x44ea92(0x356,'\x6d\x73\x37\x79')])){const _0x1dab31={};return _0x1dab31['\x6f\x6b']=!![],_0x1dab31['\x6b\x69\x6e\x64']=_0x152f1a[_0x44ea92(0x54d,'\x65\x36\x74\x38')],_0x1dab31[_0x44ea92(0x343,'\x4c\x62\x25\x23')]='',_0x1dab31;}if(_0x5a9581[_0x44ea92(0x503,'\x23\x51\x7a\x28')])return{'\x6f\x6b':![],'\x6b\x69\x6e\x64':_0x152f1a[_0x44ea92(0x2a6,'\x42\x29\x2a\x41')],'\x72\x65\x61\x73\x6f\x6e':_0x44ea92(0x4e3,'\x58\x69\x58\x30')+_0x44ea92(0x540,'\x63\x30\x6c\x35')+_0x44ea92(0x3db,'\x58\x30\x55\x4f')+_0x152f1a['\x78\x79\x73\x65\x61'](_0x4be1eb)+'\x6d\x73'};if(_0x152f1a['\x45\x6f\x4e\x6f\x4d'](_0x152f1a[_0x44ea92(0x609,'\x4b\x30\x39\x76')](String,process.env.EVOLVE_EXEC_FALLBACKS||''),_0x152f1a[_0x44ea92(0x509,'\x23\x51\x7a\x28')])){const _0x24bd80=_0x140da9[_0x44ea92(0x271,'\x21\x65\x70\x52')](_0x152f1a['\x78\x67\x54\x51\x61'])||_0x140da9[_0x44ea92(0x408,'\x77\x6e\x74\x63')](_0x152f1a[_0x44ea92(0x603,'\x4d\x4b\x33\x73')]),_0x5203c4=_0x140da9[_0x44ea92(0x2d5,'\x62\x6e\x52\x53')](_0x152f1a[_0x44ea92(0x383,'\x54\x36\x21\x54')])||_0x140da9[_0x44ea92(0x6bd,'\x58\x69\x58\x30')](_0x152f1a[_0x44ea92(0x1e0,'\x77\x6e\x74\x63')]);if(_0x152f1a[_0x44ea92(0x379,'\x6a\x44\x57\x53')](_0x560266,_0x152f1a[_0x44ea92(0x5b0,'\x59\x37\x51\x4a')])&&_0x152f1a[_0x44ea92(0x5c2,'\x74\x7a\x2a\x4e')](_0x5a9581[_0x44ea92(0x4af,'\x67\x33\x48\x6f')],0x19f8+0x130a+-0x2d02)&&!_0x51595a&&(_0x140da9['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x152f1a[_0x44ea92(0x621,'\x69\x46\x66\x33')])||_0x152f1a[_0x44ea92(0x4ef,'\x69\x46\x66\x33')](_0x24bd80,_0x5203c4)))try{if(_0x152f1a[_0x44ea92(0x5a2,'\x77\x49\x32\x48')](_0x152f1a[_0x44ea92(0x57d,'\x44\x5a\x56\x75')],_0x152f1a[_0x44ea92(0x32b,'\x66\x73\x50\x71')])){const _0x21d6d4={};_0x21d6d4[_0x44ea92(0x2f7,'\x39\x50\x43\x25')]=_0x152f1a[_0x44ea92(0x504,'\x4a\x7a\x39\x49')],_0x21d6d4['\x65\x6e']=_0x44ea92(0x1f9,'\x6b\x4d\x55\x42')+_0x44ea92(0x45b,'\x23\x55\x6a\x21')+_0x44ea92(0x638,'\x65\x72\x23\x31')+_0x44ea92(0x335,'\x4a\x50\x30\x67')+_0x44ea92(0x536,'\x76\x71\x63\x59')+_0x44ea92(0x2e6,'\x23\x55\x6a\x21')+_0x44ea92(0x594,'\x59\x37\x51\x4a')+'\x2d\x67\x65\x6e\x65\x72\x61\x74'+'\x65\x64\x20\x62\x79\x20\x65\x78'+_0x44ea92(0x25b,'\x4b\x30\x39\x76')+_0x44ea92(0x69d,'\x6e\x5d\x30\x25'),_0x21d6d4['\x7a\x68']=_0x152f1a[_0x44ea92(0x44d,'\x4d\x4b\x33\x73')],_0x1408cf[_0x44ea92(0x238,'\x4a\x50\x30\x67')+_0x44ea92(0x58f,'\x4a\x5e\x23\x55')](_0x403d95,JSON[_0x44ea92(0x60d,'\x65\x72\x23\x31')+'\x79'](_0x21d6d4,null,0xe91+0x4b6+-0x1345));const _0x4e15be={};return _0x4e15be['\x6f\x6b']=!![],_0x4e15be[_0x44ea92(0x231,'\x69\x46\x66\x33')]=_0x152f1a[_0x44ea92(0x3eb,'\x53\x30\x44\x29')],_0x4e15be[_0x44ea92(0x662,'\x54\x36\x21\x54')]='',_0x4e15be;}else{if(_0x36c1b5)_0x41a600=![];else{if(_0x481605==='\x5c')_0x3bfb8d=!![];else{if(cinOaS[_0x44ea92(0x347,'\x77\x49\x32\x48')](_0x543cb8,'\x22'))_0x25cc34=![];}}}}catch(_0x2eca44){}if(_0x152f1a[_0x44ea92(0x3b5,'\x6d\x5b\x6d\x29')](_0x4dac94,_0x4a8d8a)){const _0x1c5282={};return _0x1c5282['\x6f\x6b']=!![],_0x1c5282[_0x44ea92(0x5b6,'\x21\x65\x70\x52')]=_0x44ea92(0x3cd,'\x77\x6e\x74\x63')+_0x44ea92(0x4a2,'\x59\x59\x49\x77')+'\x5f\x62',_0x1c5282[_0x44ea92(0x63b,'\x65\x36\x74\x38')]='',_0x1c5282;}}let _0x186f59;if(_0x51595a)_0x186f59=_0x152f1a['\x6d\x66\x76\x4f\x44'];else{if(!_0x3711d7)_0x186f59=_0x44ea92(0x6a5,'\x21\x65\x70\x52')+_0x44ea92(0x642,'\x57\x67\x40\x73')+'\x65\x72';else{if(_0x152f1a[_0x44ea92(0x251,'\x58\x30\x55\x4f')](_0x16e418,null))_0x186f59=_0x152f1a['\x51\x72\x4e\x69\x71'];else{if(_0x152f1a[_0x44ea92(0x2a8,'\x55\x38\x70\x57')](_0x16e418,_0x44ea92(0x28e,'\x58\x69\x58\x30')))_0x186f59=_0x44ea92(0x65b,'\x44\x5a\x56\x75')+_0x44ea92(0x582,'\x66\x73\x50\x71');else{if(_0x152f1a[_0x44ea92(0x43e,'\x59\x37\x51\x4a')](_0x16e418,_0x152f1a[_0x44ea92(0x22e,'\x6e\x35\x48\x57')]))_0x186f59=_0x44ea92(0x3a3,'\x5d\x28\x38\x41')+'\x6e\x76\x61\x6c\x69\x64';else _0x186f59=_0x152f1a[_0x44ea92(0x33a,'\x6b\x4d\x55\x42')];}}}}const _0xcb3fe9={};return _0xcb3fe9['\x6f\x6b']=![],_0xcb3fe9[_0x44ea92(0x56a,'\x63\x6f\x51\x62')]=_0x186f59,_0xcb3fe9[_0x44ea92(0x2f1,'\x58\x30\x55\x4f')]=_0x44ea92(0x688,'\x23\x55\x6a\x21')+_0x5a9581[_0x44ea92(0x62e,'\x59\x37\x51\x4a')]+(_0x44ea92(0x636,'\x59\x59\x49\x77')+_0x44ea92(0x46e,'\x6e\x35\x48\x57'))+_0x3711d7+(_0x44ea92(0x507,'\x4a\x50\x30\x67')+_0x44ea92(0x283,'\x53\x30\x44\x29'))+_0x16e418,_0xcb3fe9;}function _0x2d8e1e(_0x342c9a){const _0x2d05ea=_0x40f8df,_0x14a252={};_0x14a252[_0x2d05ea(0x241,'\x67\x33\x48\x6f')]=function(_0x208d54,_0x66cf81){return _0x208d54===_0x66cf81;},_0x14a252[_0x2d05ea(0x404,'\x67\x33\x48\x6f')]=_0x2d05ea(0x391,'\x6b\x4d\x55\x42'),_0x14a252[_0x2d05ea(0x3de,'\x59\x37\x51\x4a')]=_0x2d05ea(0x6ab,'\x6e\x5d\x30\x25'),_0x14a252[_0x2d05ea(0x693,'\x67\x33\x48\x6f')]='\x69\x6e\x76\x61\x6c\x69\x64';const _0x41f247=_0x14a252;if(!_0x342c9a||!_0x1408cf[_0x2d05ea(0x4f2,'\x66\x45\x30\x42')+'\x6e\x63'](_0x342c9a))return null;try{const _0x4e2138=JSON['\x70\x61\x72\x73\x65'](_0x1408cf[_0x2d05ea(0x4a5,'\x66\x73\x50\x71')+_0x2d05ea(0x4cd,'\x66\x73\x50\x71')](_0x342c9a,_0x2d05ea(0x4d0,'\x57\x67\x40\x73')));if(_0x4e2138&&_0x41f247[_0x2d05ea(0x62f,'\x39\x50\x43\x25')](_0x4e2138[_0x2d05ea(0x2d3,'\x42\x29\x2a\x41')],_0x41f247[_0x2d05ea(0x50a,'\x63\x47\x73\x67')]))return _0x2d05ea(0x299,'\x34\x31\x47\x57');if(_0x4e2138&&_0x4e2138[_0x2d05ea(0x2fd,'\x55\x38\x70\x57')]===_0x41f247[_0x2d05ea(0x5a9,'\x69\x46\x56\x2a')])return _0x41f247[_0x2d05ea(0x657,'\x77\x49\x32\x48')];return _0x41f247[_0x2d05ea(0x666,'\x66\x73\x50\x71')];}catch(_0x327a48){return _0x41f247[_0x2d05ea(0x513,'\x65\x36\x74\x38')];}}function _0x4dac94(_0x16799e){const _0x25065f=_0x40f8df,_0x59f607={'\x78\x47\x49\x58\x61':function(_0x108fd3,_0x566aa7){return _0x108fd3!==_0x566aa7;},'\x6c\x79\x52\x46\x78':_0x25065f(0x2dc,'\x59\x59\x49\x77'),'\x41\x4d\x4c\x69\x66':function(_0x126c51){return _0x126c51();},'\x48\x71\x68\x41\x41':_0x25065f(0x55c,'\x76\x71\x63\x59')+_0x25065f(0x5ae,'\x63\x30\x6c\x35')+_0x25065f(0x310,'\x63\x30\x6c\x35')+'\x2e\x6a\x73\x6f\x6e','\x69\x58\x5a\x61\x62':'\x75\x74\x66\x38','\x77\x59\x4d\x48\x6d':function(_0x1ed08e,_0x21ed40){return _0x1ed08e!==_0x21ed40;}};try{if(_0x59f607[_0x25065f(0x694,'\x77\x6e\x74\x63')](_0x59f607[_0x25065f(0x5a0,'\x77\x49\x32\x48')],_0x59f607[_0x25065f(0x235,'\x4a\x7a\x39\x49')]))throw new _0x2f4d08(_0x25065f(0x4ca,'\x76\x71\x63\x59')+_0x25065f(0x647,'\x55\x38\x70\x57')+_0x25065f(0x2f6,'\x58\x30\x55\x4f')+_0x25065f(0x270,'\x4b\x30\x39\x76')+'\x20\x73\x65\x74\x74\x69\x6e\x67'+_0x25065f(0x3fe,'\x6d\x73\x37\x79')+_0x2a010d+'\x3a\x20'+_0x1dbb84[_0x25065f(0x679,'\x58\x30\x55\x4f')]);else{if(!Number[_0x25065f(0x3a0,'\x63\x47\x73\x67')](_0x16799e))return![];const _0x582823=_0x5f1d3f['\x6a\x6f\x69\x6e'](_0x59f607[_0x25065f(0x2ca,'\x58\x30\x55\x4f')](_0xd47650),_0x59f607[_0x25065f(0x5e3,'\x66\x45\x30\x42')]);if(!_0x1408cf[_0x25065f(0x629,'\x77\x6e\x74\x63')+'\x6e\x63'](_0x582823))return![];const _0x38dd36=JSON[_0x25065f(0x53b,'\x5d\x28\x38\x41')](_0x1408cf[_0x25065f(0x34e,'\x74\x7a\x2a\x4e')+_0x25065f(0x5ce,'\x76\x71\x63\x59')](_0x582823,_0x59f607['\x69\x58\x5a\x61\x62'])),_0x3ab3c1=_0x38dd36&&_0x38dd36[_0x25065f(0x2d6,'\x62\x6e\x52\x53')+_0x25065f(0x1e3,'\x59\x59\x49\x77')];if(!_0x3ab3c1||!_0x3ab3c1[_0x25065f(0x435,'\x42\x29\x2a\x41')])return![];if(_0x59f607[_0x25065f(0x2cd,'\x4b\x30\x39\x76')](_0x3ab3c1['\x6f\x75\x74\x63\x6f\x6d\x65'][_0x25065f(0x396,'\x63\x6f\x51\x62')],_0x25065f(0x615,'\x67\x33\x48\x6f')))return![];if(_0x3ab3c1[_0x25065f(0x211,'\x6d\x5b\x6d\x29')][_0x25065f(0x5ad,'\x34\x31\x47\x57')+_0x25065f(0x267,'\x6e\x5d\x30\x25')])return![];const _0xb49187=Date[_0x25065f(0x526,'\x65\x36\x74\x38')](_0x3ab3c1['\x61\x74']||-0x211d+-0x32*0x35+0x3*0xe7d);return Number[_0x25065f(0x33b,'\x63\x30\x6c\x35')](_0xb49187)&&_0xb49187>=_0x16799e;}}catch(_0x8a1615){return![];}}function _0x5e186e(_0x4f65c7,_0x6536b1,_0x47d2d1){const _0x3f398d=_0x40f8df,_0x153d17={'\x41\x61\x59\x6b\x63':function(_0x519a25){return _0x519a25();},'\x53\x57\x45\x43\x50':'\x65\x78\x65\x63\x5f\x62\x72\x69'+_0x3f398d(0x641,'\x4a\x5e\x23\x55')+_0x3f398d(0x280,'\x4a\x7a\x39\x49')+'\x6c','\x53\x4d\x74\x76\x41':function(_0x23effb,_0x45b799){return _0x23effb+_0x45b799;},'\x6e\x63\x6e\x43\x72':function(_0xa12593,_0x19a229){return _0xa12593||_0x19a229;}};try{const _0x542de6=_0x153d17[_0x3f398d(0x566,'\x4a\x7a\x39\x49')](_0xd47650),_0x1c3924={};_0x1c3924[_0x3f398d(0x543,'\x63\x47\x73\x67')+'\x65']=!![];if(!_0x1408cf[_0x3f398d(0x332,'\x58\x30\x55\x4f')+'\x6e\x63'](_0x542de6))_0x1408cf[_0x3f398d(0x4ce,'\x21\x65\x70\x52')+'\x63'](_0x542de6,_0x1c3924);_0x1408cf[_0x3f398d(0x4dc,'\x4d\x4b\x33\x73')+_0x3f398d(0x339,'\x74\x7a\x2a\x4e')](_0x5f1d3f[_0x3f398d(0x651,'\x4a\x7a\x39\x49')](_0x542de6,_0x153d17[_0x3f398d(0x2ac,'\x64\x51\x24\x2a')]),_0x153d17[_0x3f398d(0x4e7,'\x53\x63\x53\x76')](JSON[_0x3f398d(0x219,'\x77\x6e\x74\x63')+'\x79']({'\x61\x74':new Date()[_0x3f398d(0x41f,'\x36\x4d\x42\x49')+_0x3f398d(0x206,'\x59\x59\x49\x77')](),'\x63\x79\x63\x6c\x65':_0x4f65c7,'\x74\x61\x67':_0x6536b1,'\x72\x65\x61\x73\x6f\x6e':String(_0x153d17[_0x3f398d(0x464,'\x65\x36\x74\x38')](_0x47d2d1,''))[_0x3f398d(0x223,'\x6d\x5b\x6d\x29')](0x3e*0x25+-0xf07+0x1*0x611,-0xe7a*-0x2+0xf6d+-0x2a6d)}),'\x0a'),_0x3f398d(0x1f6,'\x65\x72\x23\x31'));}catch(_0x58b243){}}const _0x4baf68={'\x63\x6c\x61\x75\x64\x65\x2d\x63\x6f\x64\x65':{'\x64\x65\x6c\x69\x76\x65\x72\x73\x54\x61\x73\x6b\x56\x69\x61':_0x40f8df(0x502,'\x58\x30\x55\x4f'),'\x62\x75\x69\x6c\x64\x41\x72\x67\x73'({sessionId:_0x19812f,statusFile:_0x4724fc,cycleTag:_0x48c183,settingsPath:_0x31d4c3}){const _0x21add2=_0x40f8df,_0x344cae={'\x59\x52\x53\x4c\x46':_0x21add2(0x4a6,'\x44\x5a\x56\x75'),'\x6b\x51\x4f\x57\x65':_0x21add2(0x4bb,'\x69\x46\x56\x2a'),'\x70\x43\x72\x51\x6f':_0x21add2(0x4e0,'\x63\x30\x6c\x35'),'\x6d\x6f\x52\x7a\x41':_0x21add2(0x2e7,'\x21\x65\x70\x52')+'\x65\x20\x69\x6e\x64\x65\x78\x2e'+'\x6a\x73\x20\x73\x6f\x6c\x69\x64'+'\x69\x66\x79\x29','\x6d\x65\x57\x67\x61':'\x42\x61\x73\x68\x28\x67\x69\x74'+_0x21add2(0x290,'\x69\x46\x56\x2a')+'\x29','\x72\x42\x56\x48\x78':_0x21add2(0x359,'\x6e\x5d\x30\x25')+_0x21add2(0x2f2,'\x5d\x28\x38\x41'),'\x63\x55\x6a\x6d\x5a':_0x21add2(0x38e,'\x44\x5a\x56\x75')+_0x21add2(0x3e0,'\x51\x64\x71\x7a'),'\x62\x49\x6f\x74\x6b':'\x42\x61\x73\x68\x28\x67\x69\x74'+_0x21add2(0x4e6,'\x42\x29\x2a\x41')+_0x21add2(0x43c,'\x4b\x30\x39\x76'),'\x64\x4f\x70\x76\x6d':_0x21add2(0x6b0,'\x6d\x73\x37\x79'),'\x48\x67\x50\x53\x4e':_0x21add2(0x5bb,'\x23\x55\x6a\x21')+'\x67\x73','\x45\x64\x4b\x76\x41':'\x2d\x2d\x6d\x6f\x64\x65\x6c','\x69\x52\x73\x53\x4b':_0x21add2(0x387,'\x5d\x28\x38\x41'),'\x4f\x46\x4f\x75\x53':_0x21add2(0x2ff,'\x59\x59\x49\x77')+'\x6e\x2d\x69\x64','\x77\x6e\x4d\x7a\x69':_0x21add2(0x5ff,'\x74\x7a\x2a\x4e')+_0x21add2(0x36e,'\x77\x6e\x74\x63'),'\x7a\x65\x4a\x4d\x50':function(_0x2bcf63,_0x4f996c){return _0x2bcf63(_0x4f996c);},'\x59\x4c\x59\x59\x77':_0x21add2(0x3bd,'\x6e\x35\x48\x57'),'\x41\x58\x55\x65\x74':_0x21add2(0x69e,'\x74\x7a\x2a\x4e')+_0x21add2(0x23c,'\x6a\x44\x57\x53')+_0x21add2(0x415,'\x42\x29\x2a\x41')+'\x73\x73\x69\x6f\x6e\x73','\x4b\x72\x53\x4b\x5a':'\x63\x6c\x61\x75\x64\x65\x2d\x63'+_0x21add2(0x492,'\x42\x29\x2a\x41')},_0x5465e2=[_0x344cae[_0x21add2(0x54b,'\x53\x30\x44\x29')],_0x21add2(0x2a1,'\x4a\x5e\x23\x55'),_0x344cae['\x6b\x51\x4f\x57\x65'],_0x344cae[_0x21add2(0x3a5,'\x4d\x4b\x33\x73')],_0x21add2(0x449,'\x51\x64\x71\x7a'),_0x344cae[_0x21add2(0x22d,'\x63\x47\x73\x67')],_0x344cae[_0x21add2(0x58b,'\x69\x46\x56\x2a')],_0x344cae[_0x21add2(0x65e,'\x57\x67\x40\x73')],_0x344cae[_0x21add2(0x5eb,'\x64\x51\x24\x2a')],_0x344cae[_0x21add2(0x3c3,'\x77\x6e\x74\x63')],'\x42\x61\x73\x68\x28\x67\x69\x74'+_0x21add2(0x272,'\x5d\x28\x38\x41')+'\x73\x2a\x29'],_0x2fd72a=['\x2d\x70',_0x21add2(0x5c5,'\x55\x38\x70\x57')+_0x21add2(0x4b7,'\x59\x59\x49\x77'),_0x344cae[_0x21add2(0x3a9,'\x62\x6e\x52\x53')],_0x21add2(0x42e,'\x6a\x44\x57\x53')+_0x21add2(0x61d,'\x39\x50\x43\x25')+'\x65',_0x21add2(0x61e,'\x57\x67\x40\x73')+_0x21add2(0x6ba,'\x54\x36\x21\x54'),_0x344cae['\x48\x67\x50\x53\x4e'],_0x31d4c3,_0x21add2(0x3ee,'\x65\x36\x74\x38')+_0x21add2(0x437,'\x4a\x50\x30\x67'),..._0x5465e2,_0x344cae[_0x21add2(0x66d,'\x4a\x7a\x39\x49')],process.env.EVOLVE_HAND_MODEL||_0x344cae[_0x21add2(0x377,'\x63\x6f\x51\x62')],_0x344cae[_0x21add2(0x552,'\x62\x6e\x52\x53')],_0x19812f,_0x21add2(0x69c,'\x6d\x73\x37\x79')+'\x72',_0x2a5795(),_0x344cae[_0x21add2(0x5a1,'\x76\x71\x63\x59')],_0x344cae[_0x21add2(0x65a,'\x58\x30\x55\x4f')](String,process.env.EVOLVE_HAND_MAX_TURNS||-0x1ab5+-0x4b8+0x1fa9),...String(process.env.EVOLVE_HAND_DANGEROUS||'')===_0x344cae[_0x21add2(0x617,'\x36\x4d\x42\x49')]?[_0x344cae[_0x21add2(0x553,'\x51\x64\x71\x7a')]]:[]];return{'\x62\x69\x6e':_0x344cae[_0x21add2(0x50d,'\x51\x64\x71\x7a')](_0x2964b3,_0x344cae[_0x21add2(0x2c1,'\x57\x67\x40\x73')]),'\x61\x72\x67\x73':_0x2fd72a,'\x65\x6e\x76':{'\x45\x56\x4f\x4c\x56\x45\x5f\x43\x59\x43\x4c\x45\x5f\x54\x41\x47':_0x344cae[_0x21add2(0x247,'\x69\x46\x66\x33')](String,_0x48c183),'\x45\x56\x4f\x4c\x56\x45\x5f\x53\x54\x41\x54\x55\x53\x5f\x46\x49\x4c\x45':_0x4724fc}};}},'\x6f\x70\x65\x6e\x63\x6c\x61\x77':{'\x64\x65\x6c\x69\x76\x65\x72\x73\x54\x61\x73\x6b\x56\x69\x61':_0x40f8df(0x63f,'\x63\x30\x6c\x35'),'\x62\x75\x69\x6c\x64\x41\x72\x67\x73'({sessionId:_0x4daa84,statusFile:_0x1562c8,cycleTag:_0x378a2f,taskText:_0x3f2cf2}){const _0x2fd4d1=_0x40f8df,_0x470e5b={'\x62\x68\x63\x4b\x4d':function(_0x3e4527,_0x1925d5){return _0x3e4527(_0x1925d5);},'\x45\x77\x62\x79\x49':_0x2fd4d1(0x52d,'\x21\x65\x70\x52'),'\x79\x4d\x4f\x76\x69':_0x2fd4d1(0x4b4,'\x4a\x7a\x39\x49'),'\x76\x79\x6c\x46\x6b':_0x2fd4d1(0x686,'\x42\x29\x2a\x41'),'\x45\x50\x53\x47\x4f':_0x2fd4d1(0x2ec,'\x77\x6e\x74\x63')+_0x2fd4d1(0x2e1,'\x36\x4d\x42\x49'),'\x64\x69\x73\x4a\x6e':_0x2fd4d1(0x4e2,'\x4c\x62\x25\x23')+'\x74','\x77\x7a\x4b\x65\x72':_0x2fd4d1(0x2b8,'\x42\x29\x2a\x41'),'\x43\x71\x56\x73\x54':function(_0x57ff2b,_0x5225c0){return _0x57ff2b(_0x5225c0);}};return{'\x62\x69\x6e':_0x470e5b[_0x2fd4d1(0x511,'\x34\x31\x47\x57')](_0x2964b3,_0x470e5b[_0x2fd4d1(0x308,'\x23\x51\x7a\x28')]),'\x61\x72\x67\x73':[_0x470e5b[_0x2fd4d1(0x4a4,'\x63\x30\x6c\x35')],_0x2fd4d1(0x314,'\x4a\x5e\x23\x55'),_0x470e5b[_0x2fd4d1(0x3ac,'\x59\x59\x49\x77')],_0x470e5b[_0x2fd4d1(0x465,'\x63\x30\x6c\x35')],_0x4daa84,'\x2d\x6d',_0x3f2cf2,_0x470e5b[_0x2fd4d1(0x55d,'\x66\x45\x30\x42')],_0x470e5b[_0x2fd4d1(0x327,'\x63\x47\x73\x67')]],'\x65\x6e\x76':{'\x45\x56\x4f\x4c\x56\x45\x5f\x43\x59\x43\x4c\x45\x5f\x54\x41\x47':_0x470e5b[_0x2fd4d1(0x265,'\x4b\x30\x39\x76')](String,_0x378a2f),'\x45\x56\x4f\x4c\x56\x45\x5f\x53\x54\x41\x54\x55\x53\x5f\x46\x49\x4c\x45':_0x1562c8}};}},'\x63\x6f\x64\x65\x78':{'\x64\x65\x6c\x69\x76\x65\x72\x73\x54\x61\x73\x6b\x56\x69\x61':_0x40f8df(0x317,'\x5d\x28\x38\x41'),'\x73\x6f\x6c\x69\x64\x69\x66\x79\x50\x72\x6f\x6f\x66':_0x40f8df(0x4b2,'\x6e\x5d\x30\x25'),'\x62\x75\x69\x6c\x64\x41\x72\x67\x73'({statusFile:_0x230a42,cycleTag:_0x598491}){const _0x348e8b=_0x40f8df,_0x23aafb={'\x6f\x6a\x67\x43\x4b':function(_0x593c8e,_0x119dc0){return _0x593c8e===_0x119dc0;},'\x70\x47\x73\x50\x48':function(_0x469c44,_0x59f553){return _0x469c44(_0x59f553);},'\x61\x71\x77\x5a\x61':_0x348e8b(0x549,'\x65\x36\x74\x38'),'\x50\x6a\x41\x63\x46':'\x64\x61\x6e\x67\x65\x72\x2d\x66'+'\x75\x6c\x6c\x2d\x61\x63\x63\x65'+'\x73\x73','\x79\x6f\x4a\x7a\x62':'\x77\x6f\x72\x6b\x73\x70\x61\x63'+_0x348e8b(0x560,'\x66\x45\x30\x42'),'\x6d\x63\x4d\x6d\x70':function(_0x51887f){return _0x51887f();},'\x69\x6b\x46\x4b\x59':function(_0x3091ce){return _0x3091ce();},'\x51\x69\x42\x71\x4c':_0x348e8b(0x4fb,'\x6e\x35\x48\x57')+_0x348e8b(0x2a5,'\x61\x53\x4a\x6f'),'\x4d\x77\x7a\x56\x44':function(_0x51783f,_0xcbdde8){return _0x51783f(_0xcbdde8);},'\x55\x63\x4a\x6c\x49':_0x348e8b(0x3d2,'\x76\x71\x63\x59')},_0x3e064b=_0x23aafb[_0x348e8b(0x45d,'\x6e\x5d\x30\x25')](_0x23aafb[_0x348e8b(0x692,'\x73\x31\x72\x7a')](String,process.env.EVOLVE_HAND_DANGEROUS||''),_0x23aafb[_0x348e8b(0x403,'\x51\x64\x71\x7a')])?_0x23aafb['\x50\x6a\x41\x63\x46']:_0x23aafb[_0x348e8b(0x614,'\x64\x51\x24\x2a')],_0x5e760c=[_0x348e8b(0x394,'\x4c\x62\x25\x23'),'\x2d\x73',_0x3e064b,'\x2d\x63',_0x348e8b(0x4fc,'\x53\x63\x53\x76')+_0x348e8b(0x5e7,'\x65\x36\x74\x38')+_0x348e8b(0x256,'\x62\x6e\x52\x53'),'\x2d\x43',_0x23aafb[_0x348e8b(0x6b5,'\x6d\x5b\x6d\x29')](_0x2a5795),_0x348e8b(0x42b,'\x65\x72\x23\x31')+'\x72',_0x23aafb[_0x348e8b(0x26d,'\x42\x29\x2a\x41')](_0xd47650),_0x348e8b(0x30c,'\x21\x65\x70\x52')+_0x348e8b(0x5ab,'\x61\x53\x4a\x6f')+_0x348e8b(0x254,'\x69\x46\x66\x33'),_0x23aafb['\x51\x69\x42\x71\x4c'],...process.env.EVOLVE_HAND_MODEL?['\x2d\x6d',process.env.EVOLVE_HAND_MODEL]:[]];return{'\x62\x69\x6e':_0x23aafb[_0x348e8b(0x3f0,'\x42\x29\x2a\x41')](_0x2964b3,_0x23aafb['\x55\x63\x4a\x6c\x49']),'\x61\x72\x67\x73':_0x5e760c,'\x65\x6e\x76':{'\x45\x56\x4f\x4c\x56\x45\x5f\x43\x59\x43\x4c\x45\x5f\x54\x41\x47':_0x23aafb[_0x348e8b(0x60e,'\x6a\x44\x57\x53')](String,_0x598491),'\x45\x56\x4f\x4c\x56\x45\x5f\x53\x54\x41\x54\x55\x53\x5f\x46\x49\x4c\x45':_0x230a42}};}},'\x6f\x70\x65\x6e\x63\x6f\x64\x65':{'\x64\x65\x6c\x69\x76\x65\x72\x73\x54\x61\x73\x6b\x56\x69\x61':_0x40f8df(0x4df,'\x66\x45\x30\x42'),'\x73\x6f\x6c\x69\x64\x69\x66\x79\x50\x72\x6f\x6f\x66':_0x40f8df(0x4a8,'\x62\x6e\x52\x53'),'\x62\x75\x69\x6c\x64\x41\x72\x67\x73'({statusFile:_0x186001,cycleTag:_0x5adfe1,taskText:_0x1770e6}){const _0x53d5ea=_0x40f8df,_0x387bf8={'\x70\x50\x4d\x6e\x70':_0x53d5ea(0x39f,'\x4d\x4b\x33\x73')+_0x53d5ea(0x2e9,'\x4d\x4b\x33\x73')+'\x69\x70\x2d\x70\x65\x72\x6d\x69'+_0x53d5ea(0x2c5,'\x65\x36\x74\x38'),'\x64\x65\x79\x69\x6b':function(_0x3c2748){return _0x3c2748();},'\x78\x71\x78\x6e\x57':function(_0x3371e2,_0x54a9db){return _0x3371e2(_0x54a9db);},'\x73\x71\x55\x72\x75':_0x53d5ea(0x4fa,'\x51\x64\x71\x7a')},_0x49c22a=[_0x53d5ea(0x591,'\x65\x36\x74\x38'),_0x387bf8[_0x53d5ea(0x2c8,'\x21\x65\x70\x52')],'\x2d\x2d\x64\x69\x72',_0x387bf8[_0x53d5ea(0x495,'\x4b\x30\x39\x76')](_0x2a5795),...process.env.EVOLVE_HAND_MODEL?['\x2d\x6d',process.env.EVOLVE_HAND_MODEL]:[],'\x2d\x2d',_0x1770e6];return{'\x62\x69\x6e':_0x387bf8[_0x53d5ea(0x55f,'\x6d\x5b\x6d\x29')](_0x2964b3,_0x387bf8[_0x53d5ea(0x596,'\x39\x50\x43\x25')]),'\x61\x72\x67\x73':_0x49c22a,'\x65\x6e\x76':{'\x45\x56\x4f\x4c\x56\x45\x5f\x43\x59\x43\x4c\x45\x5f\x54\x41\x47':_0x387bf8[_0x53d5ea(0x55f,'\x6d\x5b\x6d\x29')](String,_0x5adfe1),'\x45\x56\x4f\x4c\x56\x45\x5f\x53\x54\x41\x54\x55\x53\x5f\x46\x49\x4c\x45':_0x186001}};}},'\x63\x6c\x61\x75\x64\x65\x2d\x64\x69\x73\x74\x69\x6c\x6c':{'\x64\x65\x6c\x69\x76\x65\x72\x73\x54\x61\x73\x6b\x56\x69\x61':_0x40f8df(0x684,'\x57\x67\x40\x73'),'\x62\x75\x69\x6c\x64\x41\x72\x67\x73'({sessionId:_0x9c6d16}){const _0x679f61=_0x40f8df,_0x1c6380={'\x54\x5a\x6c\x57\x68':_0x679f61(0x35b,'\x5d\x28\x38\x41')+_0x679f61(0x528,'\x66\x45\x30\x42'),'\x77\x67\x50\x5a\x59':_0x679f61(0x23b,'\x67\x33\x48\x6f')+_0x679f61(0x41a,'\x4a\x7a\x39\x49')+'\x65','\x68\x50\x61\x61\x69':_0x679f61(0x64d,'\x53\x30\x44\x29'),'\x4e\x42\x45\x62\x6d':_0x679f61(0x59b,'\x63\x47\x73\x67'),'\x64\x4d\x6b\x50\x43':_0x679f61(0x3fa,'\x36\x4d\x42\x49'),'\x4c\x78\x62\x51\x54':_0x679f61(0x386,'\x4a\x5e\x23\x55')+_0x679f61(0x4db,'\x65\x72\x23\x31'),'\x4c\x64\x56\x67\x74':_0x679f61(0x20c,'\x73\x4b\x76\x56')+'\x72\x6e\x73','\x65\x69\x58\x51\x4e':function(_0x27a500,_0x24cb46){return _0x27a500(_0x24cb46);},'\x49\x45\x66\x79\x43':function(_0x3879d6,_0x49748d,_0x123022){return _0x3879d6(_0x49748d,_0x123022);},'\x4d\x66\x6b\x59\x56':_0x679f61(0x3ba,'\x69\x46\x56\x2a')+_0x679f61(0x37f,'\x67\x33\x48\x6f')},_0x3810bf=['\x2d\x70',_0x1c6380[_0x679f61(0x539,'\x59\x59\x49\x77')],_0x679f61(0x635,'\x63\x47\x73\x67'),_0x1c6380[_0x679f61(0x652,'\x66\x45\x30\x42')],_0x1c6380[_0x679f61(0x475,'\x58\x30\x55\x4f')],_0x1c6380['\x4e\x42\x45\x62\x6d'],process.env.EVOLVE_DISTILL_MODEL||_0x1c6380[_0x679f61(0x3ab,'\x21\x65\x70\x52')],_0x1c6380['\x4c\x78\x62\x51\x54'],_0x9c6d16,_0x1c6380[_0x679f61(0x40c,'\x54\x36\x21\x54')],_0x1c6380[_0x679f61(0x257,'\x6e\x5d\x30\x25')](String,_0x1c6380[_0x679f61(0x253,'\x57\x67\x40\x73')](parseInt,process.env.EVOLVE_DISTILL_MAX_TURNS||'\x33',0x252d*-0x1+-0x25*-0x8+0x240f)||0x81e+0x1*0x863+-0x107e)];return{'\x62\x69\x6e':_0x1c6380[_0x679f61(0x557,'\x66\x45\x30\x42')](_0x2964b3,_0x1c6380['\x4d\x66\x6b\x59\x56']),'\x61\x72\x67\x73':_0x3810bf,'\x65\x6e\x76':{}};}}};async function _0x4413f9(_0x3e815f={}){const _0x4b044f=_0x40f8df,_0x21cb22={'\x66\x6e\x58\x4e\x63':function(_0x2e5f5e,_0x34d482){return _0x2e5f5e(_0x34d482);},'\x62\x47\x7a\x54\x64':_0x4b044f(0x67f,'\x77\x6e\x74\x63'),'\x58\x74\x5a\x6f\x69':_0x4b044f(0x30f,'\x42\x29\x2a\x41'),'\x52\x73\x51\x5a\x75':_0x4b044f(0x2aa,'\x63\x6f\x51\x62')+'\x6e\x2d\x69\x64','\x65\x69\x67\x74\x69':_0x4b044f(0x5fe,'\x5d\x28\x38\x41')+'\x74','\x42\x4d\x66\x62\x63':_0x4b044f(0x2b8,'\x42\x29\x2a\x41'),'\x4b\x56\x46\x65\x6a':function(_0x35ae49,_0x54f9dc){return _0x35ae49(_0x54f9dc);},'\x74\x43\x59\x62\x6e':_0x4b044f(0x563,'\x77\x49\x32\x48'),'\x79\x7a\x67\x62\x64':_0x4b044f(0x5e4,'\x59\x37\x51\x4a')+_0x4b044f(0x384,'\x51\x64\x71\x7a')+_0x4b044f(0x523,'\x76\x71\x63\x59')+_0x4b044f(0x5bf,'\x4a\x50\x30\x67'),'\x79\x64\x7a\x63\x74':function(_0x5a0868){return _0x5a0868();},'\x5a\x71\x64\x75\x47':function(_0x42618f,_0x2f169d){return _0x42618f(_0x2f169d);},'\x4c\x65\x6a\x4f\x67':'\x6f\x70\x65\x6e\x63\x6f\x64\x65','\x58\x67\x42\x62\x62':function(_0x36de81,_0x3561c2){return _0x36de81===_0x3561c2;},'\x52\x4c\x6f\x45\x75':_0x4b044f(0x554,'\x69\x46\x66\x33'),'\x48\x75\x66\x61\x67':function(_0xaab0e2,_0x37eec1){return _0xaab0e2+_0x37eec1;},'\x74\x49\x42\x69\x56':_0x4b044f(0x3b0,'\x53\x63\x53\x76')+'\x69\x6e\x65\x64\x20\x70\x65\x72'+_0x4b044f(0x2c3,'\x6e\x35\x48\x57')+_0x4b044f(0x340,'\x65\x36\x74\x38')+_0x4b044f(0x345,'\x76\x71\x63\x59')+_0x4b044f(0x28a,'\x4a\x50\x30\x67')+_0x4b044f(0x5ac,'\x6a\x44\x57\x53')+_0x4b044f(0x601,'\x54\x36\x21\x54')+_0x4b044f(0x248,'\x77\x6e\x74\x63')+'\x73\x73\x69\x6f\x6e\x73\x2c\x20'+'\x6e\x6f\x20','\x61\x71\x4d\x70\x46':_0x4b044f(0x38c,'\x6e\x5d\x30\x25')+_0x4b044f(0x527,'\x66\x73\x50\x71')+'\x65\x78\x20\x2d\x73\x20\x77\x6f'+_0x4b044f(0x50f,'\x65\x72\x23\x31')+_0x4b044f(0x461,'\x57\x67\x40\x73')+_0x4b044f(0x4cf,'\x23\x55\x6a\x21')+_0x4b044f(0x2b5,'\x63\x6f\x51\x62')+_0x4b044f(0x225,'\x51\x64\x71\x7a')+_0x4b044f(0x323,'\x57\x67\x40\x73')+_0x4b044f(0x578,'\x21\x65\x70\x52')+_0x4b044f(0x421,'\x77\x6e\x74\x63')+'\x20','\x58\x71\x44\x5a\x54':_0x4b044f(0x605,'\x6e\x35\x48\x57')+_0x4b044f(0x250,'\x74\x7a\x2a\x4e')+'\x65\x20\x48\x61\x6e\x64\x20\x63'+_0x4b044f(0x499,'\x74\x7a\x2a\x4e')+_0x4b044f(0x660,'\x58\x69\x58\x30')+_0x4b044f(0x5ed,'\x6e\x35\x48\x57')+_0x4b044f(0x406,'\x6e\x35\x48\x57')+_0x4b044f(0x30b,'\x55\x38\x70\x57')+_0x4b044f(0x33c,'\x4a\x7a\x39\x49')+_0x4b044f(0x3be,'\x73\x4b\x76\x56'),'\x63\x69\x66\x41\x54':function(_0x507a97,_0x398cbb){return _0x507a97(_0x398cbb);},'\x4b\x53\x5a\x73\x73':_0x4b044f(0x5c6,'\x44\x5a\x56\x75')+_0x4b044f(0x46b,'\x66\x45\x30\x42'),'\x55\x4e\x46\x61\x4e':function(_0x426bc1,_0x149f48){return _0x426bc1(_0x149f48);},'\x4b\x59\x55\x66\x6f':function(_0x445e31,_0x312f44){return _0x445e31*_0x312f44;},'\x74\x66\x73\x72\x4c':function(_0x2ced2d,_0x500df1,_0x488f27){return _0x2ced2d(_0x500df1,_0x488f27);},'\x71\x49\x73\x47\x77':_0x4b044f(0x330,'\x76\x71\x63\x59')+_0x4b044f(0x5b4,'\x53\x63\x53\x76'),'\x74\x6e\x6d\x62\x6f':function(_0x2cbc0b){return _0x2cbc0b();},'\x61\x48\x66\x69\x64':_0x4b044f(0x5c9,'\x63\x47\x73\x67'),'\x44\x6c\x6e\x47\x6d':function(_0x1ee83b,_0x530d29){return _0x1ee83b<_0x530d29;},'\x61\x69\x64\x6c\x70':function(_0x599f0a,_0x14d7ef){return _0x599f0a(_0x14d7ef);},'\x42\x65\x4c\x5a\x52':function(_0x33187,_0x5545b1,_0x432c49,_0x5f353b,_0x25612d){return _0x33187(_0x5545b1,_0x432c49,_0x5f353b,_0x25612d);},'\x55\x76\x51\x48\x56':function(_0x3656f8){return _0x3656f8();},'\x53\x4b\x76\x78\x63':_0x4b044f(0x4b0,'\x6e\x35\x48\x57'),'\x6e\x66\x67\x65\x42':_0x4b044f(0x44e,'\x57\x67\x40\x73'),'\x42\x4e\x49\x77\x73':_0x4b044f(0x5f2,'\x74\x7a\x2a\x4e')+_0x4b044f(0x3e1,'\x63\x47\x73\x67'),'\x53\x57\x72\x62\x49':function(_0x5b192d,_0x45ce4f,_0x25a247,_0x4abdfa){return _0x5b192d(_0x45ce4f,_0x25a247,_0x4abdfa);},'\x61\x4e\x73\x57\x55':function(_0x28a37f,_0x205f73){return _0x28a37f(_0x205f73);},'\x51\x78\x6a\x59\x43':_0x4b044f(0x522,'\x66\x73\x50\x71'),'\x72\x71\x6f\x63\x78':function(_0xd28e3a,_0x233359){return _0xd28e3a(_0x233359);},'\x71\x7a\x57\x57\x64':_0x4b044f(0x497,'\x4a\x5e\x23\x55')+_0x4b044f(0x623,'\x66\x73\x50\x71'),'\x45\x51\x68\x50\x76':function(_0x4e40b5,_0x5c6f4c){return _0x4e40b5<=_0x5c6f4c;},'\x48\x52\x42\x6e\x6b':function(_0x590b36,_0x14cdb9){return _0x590b36!==_0x14cdb9;},'\x68\x64\x75\x42\x46':_0x4b044f(0x237,'\x63\x30\x6c\x35'),'\x6a\x78\x65\x41\x71':function(_0x88fd09,_0xb1ff68){return _0x88fd09>_0xb1ff68;},'\x69\x4a\x56\x7a\x41':function(_0x59a2c8,_0x5e54ff){return _0x59a2c8===_0x5e54ff;},'\x71\x44\x59\x42\x66':_0x4b044f(0x318,'\x64\x51\x24\x2a'),'\x71\x6c\x68\x78\x6f':_0x4b044f(0x39b,'\x42\x29\x2a\x41'),'\x4f\x6b\x66\x7a\x4c':_0x4b044f(0x1e6,'\x59\x37\x51\x4a'),'\x6a\x68\x7a\x75\x6e':_0x4b044f(0x51f,'\x64\x51\x24\x2a'),'\x4d\x74\x45\x63\x52':'\x73\x75\x63\x63\x65\x73\x73'},_0x3f0224=_0x3e815f[_0x4b044f(0x611,'\x73\x31\x72\x7a')]||_0x4b044f(0x3b2,'\x6a\x44\x57\x53')+_0x4b044f(0x5cd,'\x76\x71\x63\x59'),_0x16f18b=_0x4baf68[_0x3f0224];if(!_0x16f18b)throw new Error(_0x4b044f(0x626,'\x4d\x4b\x33\x73')+_0x4b044f(0x5d0,'\x4a\x7a\x39\x49')+_0x4b044f(0x1e4,'\x76\x71\x63\x59')+_0x4b044f(0x5e8,'\x4a\x50\x30\x67')+_0x4b044f(0x51c,'\x77\x49\x32\x48')+_0x3f0224+'\x27');if(_0x21cb22['\x58\x67\x42\x62\x62'](_0x3f0224,_0x21cb22[_0x4b044f(0x466,'\x6b\x4d\x55\x42')])&&_0x21cb22[_0x4b044f(0x2ed,'\x23\x55\x6a\x21')](String,process.env.EVOLVE_OPENCODE_DANGEROUS||'')[_0x4b044f(0x31d,'\x73\x4b\x76\x56')+_0x4b044f(0x632,'\x69\x46\x56\x2a')]()!==_0x21cb22[_0x4b044f(0x441,'\x76\x71\x63\x59')])throw new Error(_0x21cb22[_0x4b044f(0x571,'\x42\x29\x2a\x41')](_0x4b044f(0x306,'\x53\x63\x53\x76')+_0x4b044f(0x4e9,'\x4a\x50\x30\x67')+'\x63\x6f\x64\x65\x20\x48\x61\x6e'+_0x4b044f(0x682,'\x4b\x30\x39\x76')+_0x4b044f(0x2bc,'\x76\x71\x63\x59')+_0x4b044f(0x50b,'\x67\x33\x48\x6f')+_0x4b044f(0x3f8,'\x73\x4b\x76\x56')+_0x4b044f(0x5c7,'\x44\x5a\x56\x75')+'\x65\x2e\x20\x6f\x70\x65\x6e\x63'+_0x4b044f(0x37e,'\x51\x64\x71\x7a')+_0x4b044f(0x25d,'\x69\x46\x56\x2a'),_0x21cb22['\x74\x49\x42\x69\x56'])+_0x21cb22['\x61\x71\x4d\x70\x46']+_0x21cb22[_0x4b044f(0x5b3,'\x6d\x73\x37\x79')]);const _0xd6001b=_0x3e815f['\x73\x70\x61\x77\x6e\x46\x6e']||_0x21cb22['\x63\x69\x66\x41\x54'](require,_0x21cb22['\x4b\x53\x5a\x73\x73'])[_0x4b044f(0x324,'\x4d\x4b\x33\x73')],_0x49d0e9=_0x3e815f[_0x4b044f(0x5df,'\x73\x4b\x76\x56')]?0x1*-0x1a87+-0x12bf+0x2d47:_0x21cb22[_0x4b044f(0x262,'\x39\x50\x43\x25')](Number,_0x3e815f[_0x4b044f(0x38d,'\x66\x45\x30\x42')+'\x73'])||0x1*0x1674+0x9b8+0x1d*-0x11c,_0x2903a4=_0x21cb22[_0x4b044f(0x67c,'\x4a\x50\x30\x67')](_0x2a5795),_0x39d18d=parseInt(process.env.EVOLVE_HAND_MAX_RETRIES||'\x33',0x1*0x128c+0x8c9*-0x3+0x7d9*0x1)||0x1904+0x6c9+0xd*-0x272,_0x2eedd8=_0x21cb22['\x4b\x59\x55\x66\x6f'](_0x21cb22[_0x4b044f(0x49e,'\x5d\x28\x38\x41')](parseInt,process.env.EVOLVE_HAND_RETRY_BACKOFF_SECONDS||'\x31\x35',-0x881+-0x1f4d+0x27d8)||0x36*0x4f+0x5*-0x2e9+-0x107*0x2,0x208d+0x3*-0x28e+0x14fb*-0x1),_0x5a8aab=_0x3f0224===_0x21cb22[_0x4b044f(0x57f,'\x6a\x44\x57\x53')]?_0x21cb22[_0x4b044f(0x1fa,'\x63\x30\x6c\x35')](_0x35591e):null;let _0x432cf5=0x1*-0x765+0x1d2*0x1+-0x593*-0x1,_0x359ad9=_0x21cb22[_0x4b044f(0x3d6,'\x34\x31\x47\x57')];while(_0x21cb22['\x58\x67\x42\x62\x62'](_0x49d0e9,-0xe4d+0x48a+0x77*0x15)||_0x21cb22[_0x4b044f(0x676,'\x59\x59\x49\x77')](_0x432cf5,_0x49d0e9)){_0x432cf5++;const _0x38deed=Date[_0x4b044f(0x276,'\x66\x45\x30\x42')](),_0x245e58=_0x21cb22[_0x4b044f(0x1e8,'\x36\x4d\x42\x49')](String,_0x432cf5)[_0x4b044f(0x232,'\x6e\x5d\x30\x25')](-0x24*0xd5+0x235+0x1*0x1bc3,'\x30'),_0x5995b6=_0x5f1d3f[_0x4b044f(0x284,'\x63\x6f\x51\x62')](_0x21cb22[_0x4b044f(0x3c5,'\x23\x51\x7a\x28')](_0xd47650),_0x4b044f(0x311,'\x74\x7a\x2a\x4e')+_0x245e58),_0x5aaa12={...process.env};_0x5aaa12[_0x4b044f(0x230,'\x36\x4d\x42\x49')+_0x4b044f(0x5fb,'\x69\x46\x66\x33')]=_0x4b044f(0x57a,'\x54\x36\x21\x54');const _0x376811=await _0x21cb22[_0x4b044f(0x62c,'\x58\x69\x58\x30')](_0x1c2e57,_0xd6001b,'\x6e\x6f\x64\x65',[_0x441acc,_0x4b044f(0x665,'\x6e\x35\x48\x57')],{'\x65\x6e\x76':_0x5aaa12,'\x73\x74\x64\x69\x6e\x54\x65\x78\x74':null,'\x63\x77\x64':_0x2903a4,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x21cb22['\x55\x76\x51\x48\x56'](_0x2af10a),'\x6c\x61\x62\x65\x6c':_0x21cb22[_0x4b044f(0x2a0,'\x36\x4d\x42\x49')],'\x62\x75\x66\x66\x65\x72\x4d\x6f\x64\x65':_0x21cb22[_0x4b044f(0x4dd,'\x53\x30\x44\x29')]});if(_0x376811['\x74\x69\x6d\x65\x64\x4f\x75\x74']){_0x359ad9=_0x4b044f(0x1f5,'\x23\x51\x7a\x28')+_0x4b044f(0x4f5,'\x69\x46\x66\x33'),_0x5e186e(_0x245e58,_0x4b044f(0x1f5,'\x23\x51\x7a\x28')+'\x6d\x65\x6f\x75\x74',_0x376811[_0x4b044f(0x6a1,'\x4d\x4b\x33\x73')+'\x6f\x72']||'');if(_0x3e815f[_0x4b044f(0x239,'\x36\x4d\x42\x49')])break;await _0x3b38cd(_0x5bc0c0());continue;}if(_0x376811[_0x4b044f(0x210,'\x65\x72\x23\x31')]!==-0x1c49+-0x137*-0x19+-0x216){_0x359ad9=_0x21cb22['\x42\x4e\x49\x77\x73'],_0x21cb22[_0x4b044f(0x298,'\x36\x4d\x42\x49')](_0x5e186e,_0x245e58,_0x21cb22[_0x4b044f(0x459,'\x4b\x30\x39\x76')],_0x376811['\x73\x70\x61\x77\x6e\x45\x72\x72'+'\x6f\x72']||'\x63\x6f\x64\x65\x3d'+_0x376811[_0x4b044f(0x548,'\x74\x7a\x2a\x4e')]);if(_0x3e815f[_0x4b044f(0x29a,'\x6e\x5d\x30\x25')])break;await _0x21cb22[_0x4b044f(0x244,'\x6e\x5d\x30\x25')](_0x3b38cd,_0x21cb22[_0x4b044f(0x5b8,'\x6d\x5b\x6d\x29')](_0x5bc0c0));continue;}const _0x2afa1f=_0x21cb22[_0x4b044f(0x326,'\x39\x50\x43\x25')](_0x3a4a06,_0x376811[_0x4b044f(0x3a1,'\x69\x46\x56\x2a')]);if(!_0x2afa1f||!_0x2afa1f['\x74\x61\x73\x6b']){_0x359ad9=_0x21cb22[_0x4b044f(0x3e7,'\x6d\x5b\x6d\x29')];if(_0x3e815f[_0x4b044f(0x47b,'\x6d\x73\x37\x79')])break;await _0x21cb22[_0x4b044f(0x535,'\x4a\x7a\x39\x49')](_0x3b38cd,_0x21cb22[_0x4b044f(0x393,'\x53\x30\x44\x29')](_0x5bc0c0));continue;}const _0x162f86=_0x2afa1f[_0x4b044f(0x633,'\x6d\x73\x37\x79')];let _0x4f812f=![],_0x3400e3=_0x21cb22[_0x4b044f(0x3d0,'\x77\x49\x32\x48')];for(let _0x4bd9f3=-0x219*0x1+-0x2*0x817+-0x9*-0x208;_0x21cb22[_0x4b044f(0x448,'\x58\x30\x55\x4f')](_0x4bd9f3,_0x39d18d)&&!_0x4f812f;_0x4bd9f3++){if(_0x21cb22[_0x4b044f(0x612,'\x76\x71\x63\x59')](_0x21cb22[_0x4b044f(0x2d9,'\x77\x49\x32\x48')],_0x4b044f(0x350,'\x23\x51\x7a\x28')))return{'\x62\x69\x6e':IgkktX[_0x4b044f(0x47a,'\x6d\x5b\x6d\x29')](_0x5bd9b6,IgkktX[_0x4b044f(0x3da,'\x77\x6e\x74\x63')]),'\x61\x72\x67\x73':[IgkktX[_0x4b044f(0x572,'\x6b\x4d\x55\x42')],_0x4b044f(0x213,'\x76\x71\x63\x59'),_0x4b044f(0x4d2,'\x69\x46\x56\x2a'),IgkktX[_0x4b044f(0x325,'\x4a\x50\x30\x67')],_0x3bdba3,'\x2d\x6d',_0x313d74,IgkktX[_0x4b044f(0x261,'\x67\x33\x48\x6f')],IgkktX[_0x4b044f(0x583,'\x67\x33\x48\x6f')]],'\x65\x6e\x76':{'\x45\x56\x4f\x4c\x56\x45\x5f\x43\x59\x43\x4c\x45\x5f\x54\x41\x47':IgkktX[_0x4b044f(0x203,'\x4c\x62\x25\x23')](_0x5264c4,_0x5e68f7),'\x45\x56\x4f\x4c\x56\x45\x5f\x53\x54\x41\x54\x55\x53\x5f\x46\x49\x4c\x45':_0x5d5855}};else{const _0x1da9c2=Date[_0x4b044f(0x6a3,'\x6a\x44\x57\x53')](),_0x28075c=_0x5995b6+'\x5f'+_0x4bd9f3+_0x4b044f(0x68e,'\x4a\x7a\x39\x49');try{if(_0x1408cf[_0x4b044f(0x2f4,'\x23\x51\x7a\x28')+'\x6e\x63'](_0x28075c))_0x1408cf[_0x4b044f(0x538,'\x63\x47\x73\x67')+'\x6e\x63'](_0x28075c);}catch(_0x28d188){}const _0x5bd258=_0x21cb22[_0x4b044f(0x5d4,'\x44\x5a\x56\x75')](_0x4bd9f3,0x1d60+-0x906*-0x4+0x1*-0x4177)?'\x0a\x0a\x52\x45\x54\x52\x59\x20'+_0x4bd9f3+'\x2f'+_0x39d18d+(_0x4b044f(0x234,'\x77\x6e\x74\x63')+_0x4b044f(0x358,'\x63\x47\x73\x67')+_0x4b044f(0x47e,'\x66\x45\x30\x42')+_0x4b044f(0x59c,'\x67\x33\x48\x6f')+_0x4b044f(0x668,'\x66\x73\x50\x71')+_0x4b044f(0x263,'\x73\x4b\x76\x56')+_0x4b044f(0x6ad,'\x77\x6e\x74\x63')+_0x4b044f(0x27c,'\x51\x64\x71\x7a')+_0x4b044f(0x3a4,'\x77\x49\x32\x48')+'\x6e\x6f\x64\x65\x20\x69\x6e\x64'+_0x4b044f(0x482,'\x4d\x4b\x33\x73')+_0x4b044f(0x374,'\x63\x30\x6c\x35')+_0x4b044f(0x5bc,'\x57\x67\x40\x73')+_0x4b044f(0x1ec,'\x39\x50\x43\x25')+_0x4b044f(0x429,'\x66\x45\x30\x42')+_0x4b044f(0x5f1,'\x57\x67\x40\x73')):'',_0x47d8c1=_0x52543b(_0x162f86+_0x5bd258,_0x28075c,_0x245e58);try{_0x1408cf[_0x4b044f(0x3ce,'\x54\x36\x21\x54')+_0x4b044f(0x240,'\x76\x71\x63\x59')](_0x5995b6+'\x5f'+_0x4bd9f3+(_0x4b044f(0x24f,'\x59\x59\x49\x77')+'\x74'),_0x47d8c1);}catch(_0x5d6a2d){}const _0x53e394=_0x21cb22[_0x4b044f(0x2c9,'\x64\x51\x24\x2a')](_0x3f0224,_0x4b044f(0x330,'\x76\x71\x63\x59')+'\x6f\x64\x65')?_0x42fcc4[_0x4b044f(0x401,'\x36\x4d\x42\x49')+'\x49\x44']():'\x65\x76\x6f\x6c\x76\x65\x72\x5f'+'\x68\x61\x6e\x64\x5f'+_0x245e58+'\x5f'+Date[_0x4b044f(0x25f,'\x58\x69\x58\x30')]()+'\x5f'+_0x4bd9f3,_0xa518b={};_0xa518b[_0x4b044f(0x4eb,'\x44\x5a\x56\x75')+'\x64']=_0x53e394,_0xa518b[_0x4b044f(0x26c,'\x23\x51\x7a\x28')+'\x6c\x65']=_0x28075c,_0xa518b[_0x4b044f(0x524,'\x42\x29\x2a\x41')]=_0x245e58,_0xa518b[_0x4b044f(0x577,'\x76\x71\x63\x59')+_0x4b044f(0x1e9,'\x6d\x5b\x6d\x29')]=_0x5a8aab,_0xa518b[_0x4b044f(0x5f3,'\x58\x69\x58\x30')]=_0x47d8c1;const _0x4b3ac4=_0x16f18b['\x62\x75\x69\x6c\x64\x41\x72\x67'+'\x73'](_0xa518b),_0x5d1201=await _0x1c2e57(_0xd6001b,_0x4b3ac4['\x62\x69\x6e'],_0x4b3ac4[_0x4b044f(0x20a,'\x53\x30\x44\x29')],{'\x65\x6e\x76':{...process.env,..._0x4b3ac4[_0x4b044f(0x56e,'\x61\x53\x4a\x6f')]},'\x73\x74\x64\x69\x6e\x54\x65\x78\x74':_0x21cb22['\x69\x4a\x56\x7a\x41'](_0x16f18b[_0x4b044f(0x3fd,'\x53\x63\x53\x76')+'\x54\x61\x73\x6b\x56\x69\x61'],_0x21cb22[_0x4b044f(0x400,'\x53\x63\x53\x76')])?_0x47d8c1:null,'\x63\x77\x64':_0x2903a4,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x4be1eb(),'\x6c\x61\x62\x65\x6c':_0x21cb22['\x71\x6c\x68\x78\x6f'],'\x62\x75\x66\x66\x65\x72\x4d\x6f\x64\x65':_0x4b044f(0x46a,'\x4b\x30\x39\x76')}),_0x1f9bbf={};_0x1f9bbf['\x72']=_0x5d1201,_0x1f9bbf[_0x4b044f(0x368,'\x64\x51\x24\x2a')+'\x6c\x65']=_0x28075c,_0x1f9bbf[_0x4b044f(0x5cc,'\x4c\x62\x25\x23')+_0x4b044f(0x5e5,'\x4a\x50\x30\x67')]=_0x38deed,_0x1f9bbf[_0x4b044f(0x32e,'\x6a\x44\x57\x53')+_0x4b044f(0x4bc,'\x77\x49\x32\x48')]=_0x1da9c2,_0x1f9bbf[_0x4b044f(0x691,'\x58\x30\x55\x4f')+'\x50\x72\x6f\x6f\x66']=_0x16f18b[_0x4b044f(0x31b,'\x4a\x50\x30\x67')+_0x4b044f(0x315,'\x58\x69\x58\x30')]||_0x21cb22[_0x4b044f(0x6b4,'\x77\x6e\x74\x63')];const _0x200fd1=_0x1f3cdc(_0x1f9bbf);if(_0x200fd1['\x6f\x6b']){if(_0x21cb22[_0x4b044f(0x37b,'\x54\x36\x21\x54')](_0x21cb22[_0x4b044f(0x436,'\x23\x51\x7a\x28')],_0x4b044f(0x4e8,'\x4a\x5e\x23\x55'))){const _0x5dd581=[IgkktX[_0x4b044f(0x37a,'\x65\x36\x74\x38')],IgkktX[_0x4b044f(0x697,'\x5d\x28\x38\x41')],_0x4b044f(0x575,'\x53\x30\x44\x29'),IgkktX['\x79\x64\x7a\x63\x74'](_0x4fa2ea),..._0x51d2c3.env.EVOLVE_HAND_MODEL?['\x2d\x6d',_0x4d822c.env.EVOLVE_HAND_MODEL]:[],'\x2d\x2d',_0x36979a];return{'\x62\x69\x6e':IgkktX[_0x4b044f(0x56d,'\x66\x73\x50\x71')](_0x3bf183,IgkktX['\x4c\x65\x6a\x4f\x67']),'\x61\x72\x67\x73':_0x5dd581,'\x65\x6e\x76':{'\x45\x56\x4f\x4c\x56\x45\x5f\x43\x59\x43\x4c\x45\x5f\x54\x41\x47':IgkktX[_0x4b044f(0x21a,'\x77\x6e\x74\x63')](_0x72c684,_0x151b2d),'\x45\x56\x4f\x4c\x56\x45\x5f\x53\x54\x41\x54\x55\x53\x5f\x46\x49\x4c\x45':_0x9e7c89}};}else{_0x4f812f=!![],_0x3400e3=_0x21cb22[_0x4b044f(0x39e,'\x55\x38\x70\x57')];break;}}_0x5e186e(_0x245e58,_0x4b044f(0x226,'\x65\x72\x23\x31')+_0x4b044f(0x2b9,'\x5d\x28\x38\x41')+_0x4bd9f3+'\x5f'+_0x200fd1[_0x4b044f(0x351,'\x6a\x44\x57\x53')],_0x200fd1[_0x4b044f(0x5f0,'\x55\x38\x70\x57')]);if(_0x21cb22[_0x4b044f(0x304,'\x6d\x73\x37\x79')](_0x4bd9f3,_0x39d18d))await _0x21cb22[_0x4b044f(0x54f,'\x4d\x4b\x33\x73')](_0x3b38cd,_0x2eedd8*_0x4bd9f3);}}_0x359ad9=_0x3400e3;if(_0x3e815f[_0x4b044f(0x2be,'\x23\x51\x7a\x28')])break;}const _0x3fc7ca={};return _0x3fc7ca[_0x4b044f(0x4bd,'\x77\x6e\x74\x63')]=_0x432cf5,_0x3fc7ca[_0x4b044f(0x597,'\x53\x63\x53\x76')+_0x4b044f(0x6a9,'\x69\x46\x56\x2a')]=_0x359ad9,_0x3fc7ca;}const _0x5ed9e1={};_0x5ed9e1[_0x40f8df(0x4d3,'\x63\x30\x6c\x35')+_0x40f8df(0x4ee,'\x77\x6e\x74\x63')+'\x6d']=_0x159b92;const _0x3569ca={};_0x3569ca[_0x40f8df(0x54c,'\x59\x37\x51\x4a')+'\x72\x69\x64\x67\x65']=_0x4413f9,_0x3569ca['\x72\x65\x73\x6f\x6c\x76\x65\x42'+'\x69\x6e']=_0x2964b3,_0x3569ca[_0x40f8df(0x52f,'\x55\x38\x70\x57')+'\x53\x74\x61\x74\x75\x73\x47\x61'+'\x74\x65']=_0x1f3cdc,_0x3569ca[_0x40f8df(0x357,'\x65\x72\x23\x31')+'\x70\x65\x64\x53\x65\x74\x74\x69'+'\x6e\x67\x73']=_0x35591e,_0x3569ca['\x61\x70\x70\x65\x6e\x64\x53\x74'+_0x40f8df(0x2cf,'\x4c\x62\x25\x23')+_0x40f8df(0x613,'\x63\x6f\x51\x62')]=_0x52543b,_0x3569ca[_0x40f8df(0x6a8,'\x58\x69\x58\x30')+_0x40f8df(0x3b8,'\x53\x30\x44\x29')+_0x40f8df(0x620,'\x4c\x62\x25\x23')]=_0x19254f,_0x3569ca['\x72\x75\x6e\x43\x68\x69\x6c\x64']=_0x1c2e57,_0x3569ca[_0x40f8df(0x658,'\x6a\x44\x57\x53')]=_0x4baf68,_0x3569ca[_0x40f8df(0x224,'\x62\x6e\x52\x53')]=_0x5ed9e1,module[_0x40f8df(0x457,'\x51\x64\x71\x7a')]=_0x3569ca;
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// P1 auto-exec bridge — closes the Brain->Hand loop on Claude Code (and, dormant,
|
|
4
|
+
// OpenClaw). evolver's daemon prints a sessions_spawn(...) call to stdout but
|
|
5
|
+
// never spawns the executor; the only thing that did was the OpenClaw-only
|
|
6
|
+
// feishu wrapper. This module is the harness-agnostic, tested generalization:
|
|
7
|
+
// run the Brain (`node index.js run` with EVOLVE_BRIDGE=true), scrape its
|
|
8
|
+
// stdout for the FIRST sessions_spawn(...) (via bridge.parseFirstSpawnCall),
|
|
9
|
+
// then spawn the Hand (a headless `claude -p` run) to apply the patch + run
|
|
10
|
+
// solidify, gated by a status file. Shadow-first: only runs via the opt-in
|
|
11
|
+
// `exec` CLI when EVOLVE_EXEC_BRIDGE=true.
|
|
12
|
+
//
|
|
13
|
+
// Design + adversarial reviews: P1 build spec (this session). Reference loop
|
|
14
|
+
// (read-only, NOT edited): feishu-evolver-wrapper-private/index.js.
|
|
15
|
+
|
|
16
|
+
const fs = require('fs');
|
|
17
|
+
const path = require('path');
|
|
18
|
+
const crypto = require('crypto');
|
|
19
|
+
const { execSync, execFileSync } = require('child_process');
|
|
20
|
+
|
|
21
|
+
const { getRepoRoot, getEvolutionDir } = require('./paths');
|
|
22
|
+
|
|
23
|
+
// --- B2 defense: vendor a parser fallback so a stale worktree (missing the
|
|
24
|
+
// P0-a export on bridge.js) can never crash the bridge at runtime. ---
|
|
25
|
+
const _bridge = require('./bridge');
|
|
26
|
+
const parseFirstSpawnCall =
|
|
27
|
+
typeof _bridge.parseFirstSpawnCall === 'function'
|
|
28
|
+
? _bridge.parseFirstSpawnCall
|
|
29
|
+
: _localParseFirstSpawnCall;
|
|
30
|
+
|
|
31
|
+
const _SPAWN_MARKER = 'sessions_spawn(';
|
|
32
|
+
function _localExtractFirstSpawnPayload(text) {
|
|
33
|
+
const s = String(text || '');
|
|
34
|
+
const idx = s.indexOf(_SPAWN_MARKER);
|
|
35
|
+
if (idx === -1) return null;
|
|
36
|
+
let braceStart = -1;
|
|
37
|
+
for (let i = idx + _SPAWN_MARKER.length; i < s.length; i++) {
|
|
38
|
+
if (s[i] === '{') { braceStart = i; break; }
|
|
39
|
+
if (!/\s/.test(s[i])) break;
|
|
40
|
+
}
|
|
41
|
+
if (braceStart === -1) return null;
|
|
42
|
+
let depth = 0, inString = false, escape = false;
|
|
43
|
+
for (let i = braceStart; i < s.length; i++) {
|
|
44
|
+
const ch = s[i];
|
|
45
|
+
if (inString) {
|
|
46
|
+
if (escape) escape = false;
|
|
47
|
+
else if (ch === '\\') escape = true;
|
|
48
|
+
else if (ch === '"') inString = false;
|
|
49
|
+
} else if (ch === '"') inString = true;
|
|
50
|
+
else if (ch === '{') depth++;
|
|
51
|
+
else if (ch === '}') { depth--; if (depth === 0) return s.slice(braceStart, i + 1); }
|
|
52
|
+
}
|
|
53
|
+
return null;
|
|
54
|
+
}
|
|
55
|
+
function _localParseFirstSpawnCall(text) {
|
|
56
|
+
const raw = _localExtractFirstSpawnPayload(text);
|
|
57
|
+
if (raw === null) return null;
|
|
58
|
+
try { const o = JSON.parse(raw); return o && typeof o === 'object' ? o : null; }
|
|
59
|
+
catch (_) { return null; }
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
// --- env-driven knobs (defaults baked here) ---
|
|
63
|
+
const HAND_TIMEOUT_MS = () => parseInt(process.env.EVOLVE_HAND_TIMEOUT_MS || '900000', 10) || 900000;
|
|
64
|
+
const BRAIN_TIMEOUT_MS = () => parseInt(process.env.EVOLVE_BRAIN_TIMEOUT_MS || '900000', 10) || 900000;
|
|
65
|
+
const KILL_GRACE_MS = () => parseInt(process.env.EVOLVE_HAND_KILL_GRACE_MS || '10000', 10) || 10000;
|
|
66
|
+
const IDLE_SLEEP_MS = () => parseInt(process.env.EVOLVE_IDLE_SLEEP_MS || '120000', 10) || 120000;
|
|
67
|
+
const MAX_BUF_BYTES = () => parseInt(process.env.EVOLVE_HAND_MAX_BUF_BYTES || '262144', 10) || 262144;
|
|
68
|
+
|
|
69
|
+
function sleep(ms) { return new Promise((r) => setTimeout(r, ms)); }
|
|
70
|
+
function tail(s, n) { const str = String(s || ''); return str.length <= n ? str : str.slice(-n); }
|
|
71
|
+
|
|
72
|
+
// #179 r4: the Brain is the EVOLVER package's own index.js (this module is
|
|
73
|
+
// src/gep/execBridge.js -> ../../index.js), NOT getRepoRoot()/index.js. In an
|
|
74
|
+
// npm-install layout getRepoRoot() is the user's project (the tree to evolve),
|
|
75
|
+
// which has no evolver index.js. Resolve evolver's own entrypoint from __dirname.
|
|
76
|
+
const EVOLVER_OWN_INDEX = path.resolve(__dirname, '..', '..', 'index.js');
|
|
77
|
+
|
|
78
|
+
// ---------------------------------------------------------------------------
|
|
79
|
+
// resolveBin — per-harness binary resolver (generalizes feishu resolveOpenclawPath)
|
|
80
|
+
// order: env override -> `which` -> candidate files -> bare cmd (bare NOT cached, m10)
|
|
81
|
+
// ---------------------------------------------------------------------------
|
|
82
|
+
const _binCache = {};
|
|
83
|
+
const _BIN_SPECS = {
|
|
84
|
+
'claude-code': { env: 'CLAUDE_BIN', cmd: 'claude',
|
|
85
|
+
candidates: ['claude', '~/.npm-global/bin/claude', '/usr/local/bin/claude', '/usr/bin/claude'] },
|
|
86
|
+
'openclaw': { env: 'OPENCLAW_BIN', cmd: 'openclaw',
|
|
87
|
+
candidates: ['openclaw', '~/.npm-global/bin/openclaw', '/usr/local/bin/openclaw', '/usr/bin/openclaw'] },
|
|
88
|
+
// P4-b: codex-cli (npm-global) + opencode (bun). Cross-home candidates so a
|
|
89
|
+
// PATH-stripped cron/daemon still resolves them; `which` wins first when PATH is set.
|
|
90
|
+
'codex': { env: 'CODEX_BIN', cmd: 'codex',
|
|
91
|
+
candidates: ['codex', '~/.npm-global/bin/codex', '~/.bun/bin/codex', '/usr/local/bin/codex', '/usr/bin/codex'] },
|
|
92
|
+
'opencode': { env: 'OPENCODE_BIN', cmd: 'opencode',
|
|
93
|
+
candidates: ['opencode', '~/.bun/bin/opencode', '~/.npm-global/bin/opencode', '/usr/local/bin/opencode', '/usr/bin/opencode'] },
|
|
94
|
+
};
|
|
95
|
+
function _expandHome(p) { return p.startsWith('~/') ? path.join(process.env.HOME || '', p.slice(2)) : p; }
|
|
96
|
+
|
|
97
|
+
// ---------------------------------------------------------------------------
|
|
98
|
+
// _resolveNpmCmdShim — CVE-2024-27980 safe path for Windows npm shims.
|
|
99
|
+
//
|
|
100
|
+
// Starting with Node 18.20.2 / 20.12.2 / 21.7.3 / 22+, child_process.spawn()
|
|
101
|
+
// refuses to launch a .cmd or .bat without `shell: true` (throws EINVAL).
|
|
102
|
+
// This package's engines require Node >= 22.12, so any Windows code path
|
|
103
|
+
// that hands a .cmd target to spawn() without `shell: true` is dead. The
|
|
104
|
+
// fix the auto-exec recipes need is "spawn the underlying JS entry through
|
|
105
|
+
// `node` directly" — shell-free, zero injection surface, and zero
|
|
106
|
+
// argument-quoting concerns (vs the cmd.exe /d /s /c wrapper alternative
|
|
107
|
+
// which requires hand-rolled cmd-style quoting). This is the direction
|
|
108
|
+
// autogame-17 recommended in the #196 review:
|
|
109
|
+
// https://github.com/EvoMap/evolver-private-dev/pull/196#pullrequestreview-4438622343
|
|
110
|
+
//
|
|
111
|
+
// npm-cli generates Windows shims with a well-known format whose last
|
|
112
|
+
// non-empty line ends with:
|
|
113
|
+
// ... "%_prog%" "%dp0%\<relative-entry>" %*
|
|
114
|
+
// where %dp0% is the .cmd's own directory. Pulling the relative entry out
|
|
115
|
+
// gives us the underlying JS file we can hand to node.exe directly.
|
|
116
|
+
//
|
|
117
|
+
// Returns { bin, args } when the shim was recognized and rewritten; null
|
|
118
|
+
// when the bin is not a .cmd, is on a non-Windows host, or the file does
|
|
119
|
+
// not match the npm-cli format (custom shim, hand-rolled wrapper, etc.).
|
|
120
|
+
// Callers must fall through to the original bin + args on null.
|
|
121
|
+
function _resolveNpmCmdShim(bin, args) {
|
|
122
|
+
if (process.platform !== 'win32') return null;
|
|
123
|
+
if (!bin || !/\.cmd$/i.test(bin)) return null;
|
|
124
|
+
|
|
125
|
+
// We need the absolute path of the .cmd file to read its content. spawn()
|
|
126
|
+
// would otherwise PATH-resolve a bare name itself; here we have to do it.
|
|
127
|
+
let absPath = bin;
|
|
128
|
+
if (!path.isAbsolute(bin)) {
|
|
129
|
+
try {
|
|
130
|
+
const out = execFileSync('where', [bin], {
|
|
131
|
+
encoding: 'utf8',
|
|
132
|
+
stdio: ['ignore', 'pipe', 'ignore'],
|
|
133
|
+
}).trim();
|
|
134
|
+
absPath = out.split(/\r?\n/)[0].trim();
|
|
135
|
+
} catch (_) {
|
|
136
|
+
return null;
|
|
137
|
+
}
|
|
138
|
+
if (!absPath) return null;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
let content;
|
|
142
|
+
try { content = fs.readFileSync(absPath, 'utf8'); }
|
|
143
|
+
catch (_) { return null; }
|
|
144
|
+
|
|
145
|
+
// The "%_prog%" line is the actual exec. Some shim variants use single
|
|
146
|
+
// quotes around the path or omit them entirely on the entry; the npm-cli
|
|
147
|
+
// default (the one we care about) double-quotes both, so anchor on that.
|
|
148
|
+
const m = content.match(/"%dp0%[\\/](.+?)"\s*%\*/);
|
|
149
|
+
if (!m) return null;
|
|
150
|
+
const entry = path.resolve(path.dirname(absPath), m[1]);
|
|
151
|
+
|
|
152
|
+
// npm shims may omit the .js extension (Node resolves it). Accept the
|
|
153
|
+
// path as-is OR with .js / .mjs appended, then hand the unresolved form
|
|
154
|
+
// back to Node so its own require/resolve handles the lookup.
|
|
155
|
+
if (!fs.existsSync(entry) &&
|
|
156
|
+
!fs.existsSync(entry + '.js') &&
|
|
157
|
+
!fs.existsSync(entry + '.mjs')) {
|
|
158
|
+
return null;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
return { bin: process.execPath, args: [entry, ...(args || [])] };
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
function resolveBin(harness) {
|
|
165
|
+
const spec = _BIN_SPECS[harness];
|
|
166
|
+
if (!spec) throw new Error(`execBridge: no bin spec for harness '${harness}'`);
|
|
167
|
+
if (process.env[spec.env]) return process.env[spec.env]; // env always wins, never cached stale
|
|
168
|
+
if (_binCache[harness]) return _binCache[harness];
|
|
169
|
+
try { execSync(`which ${spec.cmd}`, { stdio: 'ignore' }); _binCache[harness] = spec.cmd; return spec.cmd; }
|
|
170
|
+
catch (_) { /* fall through */ }
|
|
171
|
+
for (const c of spec.candidates) {
|
|
172
|
+
const abs = _expandHome(c);
|
|
173
|
+
if (abs !== spec.cmd) { try { if (fs.existsSync(abs)) { _binCache[harness] = abs; return abs; } } catch (_) {} }
|
|
174
|
+
}
|
|
175
|
+
return spec.cmd; // bare cmd, NOT cached (m10) — let a later PATH change be picked up
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// ---------------------------------------------------------------------------
|
|
179
|
+
// writeScopedSettings — bridge-owned, validated. NEVER the user's repo .claude/settings.json.
|
|
180
|
+
// --print silently ignores an invalid settings file, so we JSON.parse it back.
|
|
181
|
+
// ---------------------------------------------------------------------------
|
|
182
|
+
function writeScopedSettings() {
|
|
183
|
+
const dir = getEvolutionDir();
|
|
184
|
+
try { if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true }); } catch (_) {}
|
|
185
|
+
const p = path.join(dir, 'hand_claude_settings.json');
|
|
186
|
+
const settings = {
|
|
187
|
+
permissions: {
|
|
188
|
+
allow: [
|
|
189
|
+
'Edit', 'Write', 'Read', 'Glob', 'Grep',
|
|
190
|
+
'Bash(node index.js solidify)',
|
|
191
|
+
'Bash(git status*)', 'Bash(git diff*)', 'Bash(git add*)', 'Bash(git rev-parse*)', 'Bash(git ls-files*)',
|
|
192
|
+
],
|
|
193
|
+
deny: [
|
|
194
|
+
'Bash(git push*)', 'Bash(rm -rf *)', 'Bash(curl *)', 'Bash(wget *)', 'Bash(sudo *)',
|
|
195
|
+
'WebFetch', 'WebSearch',
|
|
196
|
+
],
|
|
197
|
+
},
|
|
198
|
+
};
|
|
199
|
+
fs.writeFileSync(p, JSON.stringify(settings, null, 2) + '\n', 'utf8');
|
|
200
|
+
// footgun guard (gate 1.4): a settings file that fails to parse is silently
|
|
201
|
+
// ignored by --print, which under acceptEdits could over-permit. Fail loud.
|
|
202
|
+
try { JSON.parse(fs.readFileSync(p, 'utf8')); }
|
|
203
|
+
catch (e) { throw new Error(`execBridge: wrote invalid scoped settings at ${p}: ${e.message}`); }
|
|
204
|
+
return p;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// ---------------------------------------------------------------------------
|
|
208
|
+
// appendStatusFileContract — Risk #6: the GEP task only weakly mentions solidify,
|
|
209
|
+
// but the gate keys on [SOLIDIFY] SUCCESS/FAILED + a status JSON. Append a
|
|
210
|
+
// contract verbatim-aligned with evaluateStatusGate so a real success can't
|
|
211
|
+
// fall through to failure.
|
|
212
|
+
// ---------------------------------------------------------------------------
|
|
213
|
+
function appendStatusFileContract(taskText, statusFile, cycleTag) {
|
|
214
|
+
return String(taskText || '') +
|
|
215
|
+
'\n\n━━━━━━━━━━━━━━━━━━━━━━\n' +
|
|
216
|
+
'MANDATORY POST-SOLIDIFY STEP (exec-bridge authority — cannot be skipped)\n' +
|
|
217
|
+
'━━━━━━━━━━━━━━━━━━━━━━\n\n' +
|
|
218
|
+
'After applying your changes you MUST run:\n' +
|
|
219
|
+
' node index.js solidify\n' +
|
|
220
|
+
'It must print `[SOLIDIFY] SUCCESS` on completion (or `[SOLIDIFY] FAILED` on failure).\n\n' +
|
|
221
|
+
`Then write this status file (cycle ${cycleTag}) at EXACTLY this path:\n` +
|
|
222
|
+
` ${statusFile}\n` +
|
|
223
|
+
'with this JSON shape:\n' +
|
|
224
|
+
' {"result":"success|failure","en":"Status: [INTENT] <what you did, English, 1-2 sentences>","zh":"状态: [意图] <中文,1-2句>"}\n\n' +
|
|
225
|
+
'Rules: INTENT ∈ {INNOVATION, REPAIR, OPTIMIZE}. "en"/"zh" must describe the ACTUAL work (no generic "done"). ' +
|
|
226
|
+
'Both the [SOLIDIFY] marker AND this status file are required for the cycle to count as success.\n';
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
// ---------------------------------------------------------------------------
|
|
230
|
+
// runChild — spawn with HARD timeout + group-kill (B1) + buffer cap (M4) +
|
|
231
|
+
// label prefix (M6) + M3 clean-exit-not-timeout. Always resolves (never hangs).
|
|
232
|
+
// ---------------------------------------------------------------------------
|
|
233
|
+
function runChild(spawnFn, bin, args, { env, stdinText, timeoutMs, label, bufferMode, cwd } = {}) {
|
|
234
|
+
return new Promise((resolve) => {
|
|
235
|
+
let child;
|
|
236
|
+
// CVE-2024-27980: Node >= 18.20.2 refuses to spawn .cmd / .bat without
|
|
237
|
+
// shell:true. When the target is a recognized npm-cli Windows shim we
|
|
238
|
+
// rewrite (bin, args) into (node.exe, [<entry.js>, ...args]) and bypass
|
|
239
|
+
// the .cmd shell entirely. Pass-through for everything else: POSIX
|
|
240
|
+
// hosts, .exe binaries, and unrecognized custom shims (caller may need
|
|
241
|
+
// to install via an installer that produces .exe, or set the *_BIN env
|
|
242
|
+
// override to an absolute non-.cmd path).
|
|
243
|
+
const shim = _resolveNpmCmdShim(bin, args);
|
|
244
|
+
const spawnBin = shim ? shim.bin : bin;
|
|
245
|
+
const spawnArgs = shim ? shim.args : args;
|
|
246
|
+
try {
|
|
247
|
+
child = spawnFn(spawnBin, spawnArgs, {
|
|
248
|
+
env,
|
|
249
|
+
cwd: cwd || undefined, // #179 r4: run children in the evolution repo, not the launcher's cwd
|
|
250
|
+
detached: true, // B1: own process group so we can kill the whole subtree
|
|
251
|
+
stdio: [stdinText != null ? 'pipe' : 'ignore', 'pipe', 'pipe'],
|
|
252
|
+
});
|
|
253
|
+
} catch (e) {
|
|
254
|
+
resolve({ code: null, stdout: '', stderr: '', timedOut: false, spawnError: e.message, truncated: false });
|
|
255
|
+
return;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
let out = '', err = '', truncated = false;
|
|
259
|
+
let timedOut = false, spawnError = null, settled = false;
|
|
260
|
+
let hardTimer = null, killTimer = null, backstop = null;
|
|
261
|
+
const cap = MAX_BUF_BYTES();
|
|
262
|
+
const pfx = label ? `[${label}] ` : '';
|
|
263
|
+
// bufferMode picks which end of an over-cap stream to KEEP:
|
|
264
|
+
// 'head' — the Brain emits sessions_spawn(...) FIRST, so keep the head or a
|
|
265
|
+
// huge full-prompt log after it would evict the line we must scrape
|
|
266
|
+
// (Bugbot #179 r2: no_spawn despite a good Brain run).
|
|
267
|
+
// 'tail' — the Hand's claude result JSON + [SOLIDIFY] markers are at the END.
|
|
268
|
+
const mode = bufferMode === 'head' ? 'head' : 'tail';
|
|
269
|
+
|
|
270
|
+
// M4: bound the retained buffer at `cap` even when a single chunk is huge —
|
|
271
|
+
// concat then hard-slice every append so one large write can't blow past it.
|
|
272
|
+
const append = (buf, chunk) => {
|
|
273
|
+
const combined = buf + chunk;
|
|
274
|
+
if (combined.length <= cap) return combined;
|
|
275
|
+
truncated = true;
|
|
276
|
+
return mode === 'head' ? combined.slice(0, cap) : combined.slice(-cap);
|
|
277
|
+
};
|
|
278
|
+
|
|
279
|
+
const finish = (code) => {
|
|
280
|
+
if (settled) return; settled = true;
|
|
281
|
+
if (code === 0) timedOut = false; // M3: clean exit within grace is NOT a timeout
|
|
282
|
+
clearTimeout(hardTimer); clearTimeout(killTimer); clearTimeout(backstop);
|
|
283
|
+
resolve({ code, stdout: out, stderr: err, timedOut, spawnError, truncated });
|
|
284
|
+
};
|
|
285
|
+
|
|
286
|
+
child.on('error', (e) => { spawnError = e.message; finish(null); });
|
|
287
|
+
// #179 r6 (security MEDIUM): live-mirroring raw child output to the parent's
|
|
288
|
+
// stdout/stderr aids debugging but can surface tool output / secrets in logs.
|
|
289
|
+
// Mirror by default (operator-facing progress), but allow muting via
|
|
290
|
+
// EVOLVE_HAND_QUIET=true; the captured buffer is unaffected either way.
|
|
291
|
+
const mirror = String(process.env.EVOLVE_HAND_QUIET || '').toLowerCase() !== 'true';
|
|
292
|
+
if (child.stdout) child.stdout.on('data', (d) => { out = append(out, d.toString()); if (mirror) process.stdout.write(pfx + d); });
|
|
293
|
+
if (child.stderr) child.stderr.on('data', (d) => { err = append(err, d.toString()); if (mirror) process.stderr.write(pfx + d); });
|
|
294
|
+
child.on('close', (code) => finish(code));
|
|
295
|
+
|
|
296
|
+
hardTimer = setTimeout(() => {
|
|
297
|
+
timedOut = true;
|
|
298
|
+
const pid = child.pid;
|
|
299
|
+
try { process.kill(-pid, 'SIGTERM'); } catch (_) { try { child.kill('SIGTERM'); } catch (_) {} }
|
|
300
|
+
killTimer = setTimeout(() => {
|
|
301
|
+
try { process.kill(-pid, 'SIGKILL'); } catch (_) { try { child.kill('SIGKILL'); } catch (_) {} }
|
|
302
|
+
}, KILL_GRACE_MS());
|
|
303
|
+
// backstop: even an unkillable child can't wedge the loop — detach pipes,
|
|
304
|
+
// unref, and resolve so the parent event loop drains.
|
|
305
|
+
backstop = setTimeout(() => {
|
|
306
|
+
try { if (child.stdout) child.stdout.destroy(); if (child.stderr) child.stderr.destroy(); child.unref(); } catch (_) {}
|
|
307
|
+
finish(null);
|
|
308
|
+
}, KILL_GRACE_MS() + 5000);
|
|
309
|
+
}, timeoutMs);
|
|
310
|
+
|
|
311
|
+
if (stdinText != null) writeStdin(child, stdinText);
|
|
312
|
+
});
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
// m7: EPIPE-guarded one-shot stdin write+end (child gets EOF to start its turn).
|
|
316
|
+
function writeStdin(child, text) {
|
|
317
|
+
if (!child.stdin) return;
|
|
318
|
+
child.stdin.on('error', () => {}); // swallow EPIPE if child already exited
|
|
319
|
+
try { child.stdin.write(String(text), 'utf8'); child.stdin.end(); }
|
|
320
|
+
catch (_) { /* child gone; the timeout/close path handles it */ }
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
// ---------------------------------------------------------------------------
|
|
324
|
+
// tryParseClaudeResult — M5: claude -p --output-format json emits ONE result
|
|
325
|
+
// doc. Strip our [Hand] prefix, take the last non-empty line, JSON.parse it.
|
|
326
|
+
// Do NOT substring-match (model's free-text result may contain "type":"result").
|
|
327
|
+
// ---------------------------------------------------------------------------
|
|
328
|
+
function tryParseClaudeResult(stdout) {
|
|
329
|
+
const lines = String(stdout || '')
|
|
330
|
+
.split('\n')
|
|
331
|
+
.map((l) => l.replace(/^\[Hand\]\s?/, '').trim())
|
|
332
|
+
.filter(Boolean);
|
|
333
|
+
for (let i = lines.length - 1; i >= 0; i--) {
|
|
334
|
+
if (!lines[i].startsWith('{')) continue;
|
|
335
|
+
try {
|
|
336
|
+
const o = JSON.parse(lines[i]);
|
|
337
|
+
if (o && o.type === 'result') return o;
|
|
338
|
+
} catch (_) { /* keep scanning upward */ }
|
|
339
|
+
}
|
|
340
|
+
return null;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
// ---------------------------------------------------------------------------
|
|
344
|
+
// evaluateStatusGate — minimal v1 gate. Fallback A/B behind EVOLVE_EXEC_FALLBACKS.
|
|
345
|
+
// ---------------------------------------------------------------------------
|
|
346
|
+
function evaluateStatusGate({ r, statusFile, cycleStartMs, attemptStartMs, solidifyProof }) {
|
|
347
|
+
const combined = `${r.stdout}\n${r.stderr}`;
|
|
348
|
+
if (r.spawnError) return { ok: false, kind: 'spawn_error', reason: `spawn error: ${r.spawnError}` };
|
|
349
|
+
|
|
350
|
+
// claude JSON classification first (deterministic)
|
|
351
|
+
const jr = tryParseClaudeResult(r.stdout);
|
|
352
|
+
if (jr) {
|
|
353
|
+
// #179 r4: persist only the fixed enum subtype, never jr.result (free model
|
|
354
|
+
// text — may contain secrets/tool output that lands in the lessons log).
|
|
355
|
+
if (jr.is_error) return { ok: false, kind: 'nonzero', reason: `claude is_error: ${String(jr.subtype || 'unknown').slice(0, 80)}` };
|
|
356
|
+
if (Array.isArray(jr.permission_denials) && jr.permission_denials.length > 0) {
|
|
357
|
+
// surface only the denied tool NAMES, never tool_input (the command may
|
|
358
|
+
// embed secrets). Names are a bounded, non-sensitive enum.
|
|
359
|
+
const names = jr.permission_denials.map((d) => (d && d.tool_name) || '?').slice(0, 10);
|
|
360
|
+
return { ok: false, kind: 'permission_denied', reason: `tool perms denied: ${names.join(',')}` };
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
const hasSolidifyFail = combined.includes('[SOLIDIFY] FAILED'); // honored for ALL harnesses (cheap, can only fail)
|
|
365
|
+
// P4-b: how to obtain POSITIVE proof that solidify succeeded.
|
|
366
|
+
// 'stdout' (default — claude-code): the [SOLIDIFY] SUCCESS marker rides the
|
|
367
|
+
// claude --output-format json transcript reliably. Unchanged behavior.
|
|
368
|
+
// 'state' (codex/opencode): those harnesses frame/swallow the child's
|
|
369
|
+
// stdout, so trust the evolver-written evolution_solidify_state.json
|
|
370
|
+
// instead (written by solidify.js, freshness+skip_reason gated). Stricter,
|
|
371
|
+
// not weaker. Per-attempt freshness uses attemptStartMs (cycleStartMs fallback).
|
|
372
|
+
const sinceMs = Number.isFinite(attemptStartMs) ? attemptStartMs : cycleStartMs;
|
|
373
|
+
const hasSolidifyOk = (solidifyProof === 'state')
|
|
374
|
+
? solidifyStateSucceededSince(sinceMs)
|
|
375
|
+
: combined.includes('[SOLIDIFY] SUCCESS');
|
|
376
|
+
const statusResult = readStatusResult(statusFile); // null | 'success' | 'failure' | 'invalid'
|
|
377
|
+
|
|
378
|
+
// success check BEFORE honoring timeout (M3: clean exit within SIGTERM grace).
|
|
379
|
+
// Bugbot #179 r3: require POSITIVE proof of solidify, not just absence of
|
|
380
|
+
// FAILED. A Hand that skips `node index.js solidify`, or writes
|
|
381
|
+
// result:"failure", must NOT close the cycle as success. So: exit 0 AND no
|
|
382
|
+
// FAILED marker AND positive solidify proof (marker OR state per solidifyProof)
|
|
383
|
+
// AND a status file whose parsed result is exactly "success".
|
|
384
|
+
if (r.code === 0 && !hasSolidifyFail && hasSolidifyOk && statusResult === 'success') {
|
|
385
|
+
return { ok: true, kind: 'success', reason: '' };
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
if (r.timedOut) return { ok: false, kind: 'timeout', reason: `hand timed out after ${HAND_TIMEOUT_MS()}ms` };
|
|
389
|
+
|
|
390
|
+
if (String(process.env.EVOLVE_EXEC_FALLBACKS || '') === 'true') {
|
|
391
|
+
// Fallback A: stdout success markers -> auto-write status (v1.1 — port from feishu).
|
|
392
|
+
// P4-b (Bugbot #184): this path trusts stdout/stderr markers, which is exactly
|
|
393
|
+
// what solidifyProof:'state' exists to DISTRUST (codex frames its transcript to
|
|
394
|
+
// stderr; opencode reframes tool output into events). So skip Fallback A entirely
|
|
395
|
+
// for 'state' harnesses — they fall through to Fallback B (the state-file proof,
|
|
396
|
+
// which rejects skip_reason). claude-code ('stdout') keeps Fallback A unchanged.
|
|
397
|
+
const hasEvent = combined.includes('"type": "EvolutionEvent"') || combined.includes('"type":"EvolutionEvent"');
|
|
398
|
+
const hasCapsule = combined.includes('"type": "Capsule"') || combined.includes('"type":"Capsule"');
|
|
399
|
+
if (solidifyProof !== 'state' && r.code === 0 && !hasSolidifyFail && (combined.includes('[SOLIDIFY] SUCCESS') || (hasEvent && hasCapsule))) {
|
|
400
|
+
try {
|
|
401
|
+
fs.writeFileSync(statusFile, JSON.stringify({
|
|
402
|
+
result: 'success',
|
|
403
|
+
en: 'Status: [AUTO-DETECTED] Hand completed work (status auto-generated by exec-bridge).',
|
|
404
|
+
zh: '状态: [自动检测] Hand 完成工作(状态由 exec-bridge 自动生成)。',
|
|
405
|
+
}, null, 2));
|
|
406
|
+
return { ok: true, kind: 'success_fallback_a', reason: '' };
|
|
407
|
+
} catch (_) { /* fall through */ }
|
|
408
|
+
}
|
|
409
|
+
// Fallback B: solidify_state confirms a success AFTER THIS ATTEMPT started.
|
|
410
|
+
// Bugbot #179 r3: must gate on the per-ATTEMPT start, not the per-cycle start.
|
|
411
|
+
// P4-b (Bugbot #184): reuse solidifyStateSucceededSince so Fallback B applies
|
|
412
|
+
// the SAME success criteria as the primary 'state' proof — in particular it
|
|
413
|
+
// must also REJECT a fresh status:'success' that carries skip_reason (e.g. a
|
|
414
|
+
// PR-overlap rollback). Inlining the check here previously let such a rollback
|
|
415
|
+
// close the cycle as success_fallback_b even though the primary gate rejects it.
|
|
416
|
+
if (solidifyStateSucceededSince(sinceMs)) {
|
|
417
|
+
return { ok: true, kind: 'success_fallback_b', reason: '' };
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
// classify the failure precisely (#267): distinguish no-solidify-marker,
|
|
422
|
+
// explicit result:"failure", and missing/invalid status from a plain nonzero.
|
|
423
|
+
let kind;
|
|
424
|
+
if (hasSolidifyFail) kind = 'solidify_failed';
|
|
425
|
+
else if (!hasSolidifyOk) kind = 'no_solidify_marker';
|
|
426
|
+
else if (statusResult === null) kind = 'no_status';
|
|
427
|
+
else if (statusResult === 'failure') kind = 'status_failure';
|
|
428
|
+
else if (statusResult === 'invalid') kind = 'status_invalid';
|
|
429
|
+
else kind = 'nonzero';
|
|
430
|
+
// #299: do NOT persist raw model/tool stdout (may contain secrets). Keep only
|
|
431
|
+
// a classified, bounded reason — no transcript tail.
|
|
432
|
+
return { ok: false, kind, reason: `code=${r.code} solidify_ok=${hasSolidifyOk} status_result=${statusResult}` };
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
// Parse the Hand-written status file: -> 'success' | 'failure' | 'invalid' | null(absent).
|
|
436
|
+
// #267: a positive `result:"success"` is required for the success gate.
|
|
437
|
+
function readStatusResult(statusFile) {
|
|
438
|
+
if (!statusFile || !fs.existsSync(statusFile)) return null;
|
|
439
|
+
try {
|
|
440
|
+
const o = JSON.parse(fs.readFileSync(statusFile, 'utf8'));
|
|
441
|
+
if (o && o.result === 'success') return 'success';
|
|
442
|
+
if (o && o.result === 'failure') return 'failure';
|
|
443
|
+
return 'invalid';
|
|
444
|
+
} catch (_) { return 'invalid'; }
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
// P4-b: harness-AGNOSTIC positive proof that `node index.js solidify` ran and
|
|
448
|
+
// SUCCEEDED in THIS attempt — used for harnesses (codex/opencode) whose
|
|
449
|
+
// stdout/stderr may not relay the `[SOLIDIFY] SUCCESS` marker verbatim (codex
|
|
450
|
+
// frames its transcript to stderr; opencode reframes tool output into events).
|
|
451
|
+
// This is STRICTER than the stdout substring, not weaker: the state file is
|
|
452
|
+
// written by solidify.js itself (not the model, so it can't be faked by an
|
|
453
|
+
// echoed line), it is freshness-gated per-attempt, and it rejects any
|
|
454
|
+
// skip_reason. solidify.js writes state.last_solidify UNCONDITIONALLY on both
|
|
455
|
+
// success and failure (solidify.js:~1169), so freshness alone is insufficient —
|
|
456
|
+
// we require outcome.status==='success' AND no skip_reason AND at>=sinceMs.
|
|
457
|
+
// A PR-overlap rollback serializes outcome.status:'success' + skip_reason:
|
|
458
|
+
// 'open_pr_overlap' (solidify.js:~942) — that is NOT a real solidify success.
|
|
459
|
+
function solidifyStateSucceededSince(sinceMs) {
|
|
460
|
+
try {
|
|
461
|
+
if (!Number.isFinite(sinceMs)) return false;
|
|
462
|
+
const stPath = path.join(getEvolutionDir(), 'evolution_solidify_state.json');
|
|
463
|
+
if (!fs.existsSync(stPath)) return false;
|
|
464
|
+
const st = JSON.parse(fs.readFileSync(stPath, 'utf8'));
|
|
465
|
+
const ls = st && st.last_solidify;
|
|
466
|
+
if (!ls || !ls.outcome) return false;
|
|
467
|
+
if (ls.outcome.status !== 'success') return false;
|
|
468
|
+
if (ls.outcome.skip_reason) return false; // PR-overlap rollback etc. is NOT a real success
|
|
469
|
+
const at = Date.parse(ls.at || 0);
|
|
470
|
+
return Number.isFinite(at) && at >= sinceMs;
|
|
471
|
+
} catch (_) { return false; }
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
// thin lesson bank (full bank deferred to v1.1)
|
|
475
|
+
function appendFailureLesson(cycleTag, tag, reason) {
|
|
476
|
+
try {
|
|
477
|
+
const dir = getEvolutionDir();
|
|
478
|
+
if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
|
|
479
|
+
fs.appendFileSync(path.join(dir, 'exec_bridge_lessons.jsonl'),
|
|
480
|
+
JSON.stringify({ at: new Date().toISOString(), cycle: cycleTag, tag, reason: String(reason || '').slice(0, 500) }) + '\n', 'utf8');
|
|
481
|
+
} catch (_) {}
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
// ---------------------------------------------------------------------------
|
|
485
|
+
// Recipes — per-harness Hand invocation.
|
|
486
|
+
// ---------------------------------------------------------------------------
|
|
487
|
+
const RECIPES = {
|
|
488
|
+
'claude-code': {
|
|
489
|
+
deliversTaskVia: 'stdin',
|
|
490
|
+
buildArgs({ sessionId, statusFile, cycleTag, settingsPath }) {
|
|
491
|
+
const allow = [
|
|
492
|
+
'Edit', 'Write', 'Read', 'Glob', 'Grep',
|
|
493
|
+
'Bash(node index.js solidify)',
|
|
494
|
+
'Bash(git status*)', 'Bash(git diff*)', 'Bash(git add*)', 'Bash(git rev-parse*)', 'Bash(git ls-files*)',
|
|
495
|
+
];
|
|
496
|
+
const args = [
|
|
497
|
+
'-p', '--output-format', 'json',
|
|
498
|
+
'--permission-mode', 'acceptEdits',
|
|
499
|
+
'--settings', settingsPath,
|
|
500
|
+
'--allowedTools', ...allow, // redundant defense vs silently-ignored settings (gate 1.4)
|
|
501
|
+
'--model', process.env.EVOLVE_HAND_MODEL || 'sonnet',
|
|
502
|
+
'--session-id', sessionId,
|
|
503
|
+
'--add-dir', getRepoRoot(),
|
|
504
|
+
'--max-turns', String(process.env.EVOLVE_HAND_MAX_TURNS || 60),
|
|
505
|
+
...(String(process.env.EVOLVE_HAND_DANGEROUS || '') === 'true' ? ['--dangerously-skip-permissions'] : []),
|
|
506
|
+
];
|
|
507
|
+
return { bin: resolveBin('claude-code'), args,
|
|
508
|
+
env: { EVOLVE_CYCLE_TAG: String(cycleTag), EVOLVE_STATUS_FILE: statusFile } };
|
|
509
|
+
},
|
|
510
|
+
},
|
|
511
|
+
// v1.1 — contract written, dormant (feishu already closes the openclaw loop).
|
|
512
|
+
'openclaw': {
|
|
513
|
+
deliversTaskVia: 'argv',
|
|
514
|
+
buildArgs({ sessionId, statusFile, cycleTag, taskText }) {
|
|
515
|
+
return {
|
|
516
|
+
bin: resolveBin('openclaw'),
|
|
517
|
+
args: ['agent', '--agent', 'main', '--session-id', sessionId, '-m', taskText, '--timeout', '600'],
|
|
518
|
+
env: { EVOLVE_CYCLE_TAG: String(cycleTag), EVOLVE_STATUS_FILE: statusFile },
|
|
519
|
+
};
|
|
520
|
+
},
|
|
521
|
+
},
|
|
522
|
+
// P4-b — codex-cli 0.131.0 headless `codex exec`. SHADOW/experimental until the
|
|
523
|
+
// live smoke test (scripts/smoke-exec-hand.sh) passes on a working-provider box.
|
|
524
|
+
// Verified on-box 2026-06-03 (flags/sandbox/framing; the live agentic turn was
|
|
525
|
+
// NOT verifiable here — provider auth 401):
|
|
526
|
+
// * deliversTaskVia:'stdin' — `codex exec` with no PROMPT reads stdin; the
|
|
527
|
+
// bridge pipes taskText (stdio[0]='pipe'). Avoids the argv leading-dash footgun.
|
|
528
|
+
// * solidifyProof:'state' — codex frames its transcript to STDERR (stdout=0 bytes)
|
|
529
|
+
// and may not relay the child `node index.js solidify` stdout, so the gate uses
|
|
530
|
+
// evolution_solidify_state.json (written by solidify.js) as positive proof.
|
|
531
|
+
// * -s workspace-write: writes confined to [workdir,/tmp,$TMPDIR], NETWORK OFF —
|
|
532
|
+
// the claude-acceptEdits analog (NOT --dangerously-bypass). Coarser than claude's
|
|
533
|
+
// per-command allow/deny (codex may run arbitrary shell INSIDE the sandbox), but
|
|
534
|
+
// network-off + cwd=git-repo make in-workspace damage recoverable.
|
|
535
|
+
// * -c approval_policy=never: non-interactive auto-approve INSIDE the sandbox.
|
|
536
|
+
// * -C REPO_ROOT: working + sandbox root.
|
|
537
|
+
// * --add-dir getEvolutionDir(): UNCONDITIONAL — MEMORY_DIR/EVOLUTION_DIR/
|
|
538
|
+
// OPENCLAW_WORKSPACE/EVOLVER_SESSION_SCOPE (paths.js) can relocate the status +
|
|
539
|
+
// state files OUTSIDE REPO_ROOT, which workspace-write would otherwise block.
|
|
540
|
+
// * --skip-git-repo-check + --ephemeral (no session persistence in ~/.codex).
|
|
541
|
+
// * NO --session-id (codex has none; resume is a subcommand) — passed id ignored.
|
|
542
|
+
// * EVOLVE_HAND_DANGEROUS=true escalates to danger-full-access (parity escape hatch).
|
|
543
|
+
// * -m only when EVOLVE_HAND_MODEL is set (codex wants a bare model name; claude's
|
|
544
|
+
// 'sonnet' default would be wrong to forward).
|
|
545
|
+
'codex': {
|
|
546
|
+
deliversTaskVia: 'stdin',
|
|
547
|
+
solidifyProof: 'state',
|
|
548
|
+
buildArgs({ statusFile, cycleTag }) {
|
|
549
|
+
const sandbox = String(process.env.EVOLVE_HAND_DANGEROUS || '') === 'true'
|
|
550
|
+
? 'danger-full-access' : 'workspace-write';
|
|
551
|
+
const args = [
|
|
552
|
+
'exec',
|
|
553
|
+
'-s', sandbox,
|
|
554
|
+
'-c', 'approval_policy=never',
|
|
555
|
+
'-C', getRepoRoot(),
|
|
556
|
+
'--add-dir', getEvolutionDir(),
|
|
557
|
+
'--skip-git-repo-check',
|
|
558
|
+
'--ephemeral',
|
|
559
|
+
...(process.env.EVOLVE_HAND_MODEL ? ['-m', process.env.EVOLVE_HAND_MODEL] : []),
|
|
560
|
+
// task delivered on stdin (deliversTaskVia:'stdin'); no PROMPT argv.
|
|
561
|
+
];
|
|
562
|
+
return { bin: resolveBin('codex'), args,
|
|
563
|
+
env: { EVOLVE_CYCLE_TAG: String(cycleTag), EVOLVE_STATUS_FILE: statusFile } };
|
|
564
|
+
},
|
|
565
|
+
},
|
|
566
|
+
// P4-b — opencode 1.14.41 headless `opencode run [message..]`. SHADOW/experimental
|
|
567
|
+
// (same live-turn caveat as codex; opencode hung at the model call on-box).
|
|
568
|
+
// * deliversTaskVia:'argv' — `opencode run` reads the message from the ARGV
|
|
569
|
+
// positional (NOT stdin). Verified multiline-safe (ARG_MAX 3.2MB, shell-free
|
|
570
|
+
// array spawn). The message MUST be the LAST arg (variadic [message..]); a `--`
|
|
571
|
+
// terminator guards a '-'-leading taskText.
|
|
572
|
+
// * solidifyProof:'state' — same rationale; opencode reframes tool output into
|
|
573
|
+
// events that bufferMode:'tail' could evict.
|
|
574
|
+
// * PERMISSIONS ASYMMETRY (honest): opencode has NO fine-grained scoping or
|
|
575
|
+
// sandbox — only the blunt --dangerously-skip-permissions (can run unrestricted
|
|
576
|
+
// shell: push/curl/rm anywhere). Mandatory for headless function (else it hangs
|
|
577
|
+
// on the first edit approval), so it is gated by a SECOND explicit env
|
|
578
|
+
// EVOLVE_OPENCODE_DANGEROUS=true, refused FAIL-FAST before the loop in
|
|
579
|
+
// runExecBridge (NOT thrown from buildArgs, which stays pure). Weakest-isolation
|
|
580
|
+
// harness — documented, opt-in twice.
|
|
581
|
+
// * --dir REPO_ROOT. No --format json (default relays to stdout = operator mirror;
|
|
582
|
+
// json buries output in non-tail events). -m only when EVOLVE_HAND_MODEL set
|
|
583
|
+
// (opencode wants provider/model).
|
|
584
|
+
'opencode': {
|
|
585
|
+
deliversTaskVia: 'argv',
|
|
586
|
+
solidifyProof: 'state',
|
|
587
|
+
buildArgs({ statusFile, cycleTag, taskText }) {
|
|
588
|
+
const args = [
|
|
589
|
+
'run',
|
|
590
|
+
'--dangerously-skip-permissions', // blunt; gated by EVOLVE_OPENCODE_DANGEROUS (checked pre-loop)
|
|
591
|
+
'--dir', getRepoRoot(),
|
|
592
|
+
...(process.env.EVOLVE_HAND_MODEL ? ['-m', process.env.EVOLVE_HAND_MODEL] : []),
|
|
593
|
+
'--', // terminate flags so a '-'-leading taskText is the message, not a flag
|
|
594
|
+
taskText, // positional message — MUST be last (variadic [message..])
|
|
595
|
+
];
|
|
596
|
+
return { bin: resolveBin('opencode'), args,
|
|
597
|
+
env: { EVOLVE_CYCLE_TAG: String(cycleTag), EVOLVE_STATUS_FILE: statusFile } };
|
|
598
|
+
},
|
|
599
|
+
},
|
|
600
|
+
// P3: a LIGHT read-only claude for DISTILLATION — it reads a distill prompt on
|
|
601
|
+
// stdin and outputs a Gene JSON; it must NOT edit files or run tools. Hence
|
|
602
|
+
// --permission-mode plan (read-only posture), no --add-dir / --settings /
|
|
603
|
+
// --allowedTools (an empty --allowedTools would swallow the next arg), low
|
|
604
|
+
// --max-turns. Distinct from the 'claude-code' Hand recipe (which edits + solidifies).
|
|
605
|
+
'claude-distill': {
|
|
606
|
+
deliversTaskVia: 'stdin',
|
|
607
|
+
buildArgs({ sessionId }) {
|
|
608
|
+
const args = [
|
|
609
|
+
'-p', '--output-format', 'json',
|
|
610
|
+
'--permission-mode', 'plan',
|
|
611
|
+
'--model', process.env.EVOLVE_DISTILL_MODEL || 'sonnet',
|
|
612
|
+
'--session-id', sessionId,
|
|
613
|
+
'--max-turns', String(parseInt(process.env.EVOLVE_DISTILL_MAX_TURNS || '3', 10) || 3),
|
|
614
|
+
];
|
|
615
|
+
return { bin: resolveBin('claude-code'), args, env: {} };
|
|
616
|
+
},
|
|
617
|
+
},
|
|
618
|
+
};
|
|
619
|
+
|
|
620
|
+
// ---------------------------------------------------------------------------
|
|
621
|
+
// runExecBridge — the loop. Brain -> scrape -> Hand (retry w/ hard timeout) -> gate.
|
|
622
|
+
// ---------------------------------------------------------------------------
|
|
623
|
+
async function runExecBridge(opts = {}) {
|
|
624
|
+
const harness = opts.harness || 'claude-code';
|
|
625
|
+
const recipe = RECIPES[harness];
|
|
626
|
+
if (!recipe) throw new Error(`execBridge: no recipe for harness '${harness}'`);
|
|
627
|
+
// P4-b: opencode has NO sandbox / fine-grained permissions — only the blunt
|
|
628
|
+
// --dangerously-skip-permissions (the Hand can run unrestricted shell). Refuse
|
|
629
|
+
// FAIL-FAST here (before any Brain run) unless the operator explicitly accepts
|
|
630
|
+
// that trade-off via a SECOND env. Done at the loop head — not in buildArgs
|
|
631
|
+
// (which must stay pure) — so a wasted Brain cycle never precedes the refusal.
|
|
632
|
+
if (harness === 'opencode'
|
|
633
|
+
&& String(process.env.EVOLVE_OPENCODE_DANGEROUS || '').toLowerCase() !== 'true') {
|
|
634
|
+
throw new Error(
|
|
635
|
+
'execBridge: opencode Hand requires EVOLVE_OPENCODE_DANGEROUS=true. opencode has no ' +
|
|
636
|
+
'fine-grained permission scoping (only the blunt --dangerously-skip-permissions, no ' +
|
|
637
|
+
'sandbox like codex -s workspace-write or claude --settings). Set it explicitly to accept ' +
|
|
638
|
+
'that the opencode Hand can run unrestricted shell, or use claude-code/codex.');
|
|
639
|
+
}
|
|
640
|
+
const spawnFn = opts.spawnFn || require('child_process').spawn;
|
|
641
|
+
const maxCycles = opts.once ? 1 : (Number(opts.maxCycles) || 0); // 0 = unbounded
|
|
642
|
+
const REPO_ROOT = getRepoRoot();
|
|
643
|
+
const MAX_RETRIES = parseInt(process.env.EVOLVE_HAND_MAX_RETRIES || '3', 10) || 3;
|
|
644
|
+
const BACKOFF_MS = (parseInt(process.env.EVOLVE_HAND_RETRY_BACKOFF_SECONDS || '15', 10) || 15) * 1000;
|
|
645
|
+
const settingsPath = (harness === 'claude-code') ? writeScopedSettings() : null;
|
|
646
|
+
|
|
647
|
+
let cycleCount = 0, lastOutcome = 'none';
|
|
648
|
+
while (maxCycles === 0 || cycleCount < maxCycles) {
|
|
649
|
+
cycleCount++;
|
|
650
|
+
const cycleStartMs = Date.now();
|
|
651
|
+
const cycleTag = String(cycleCount).padStart(4, '0');
|
|
652
|
+
const statusBase = path.join(getEvolutionDir(), `status_${cycleTag}`);
|
|
653
|
+
|
|
654
|
+
// BRAIN — force bridge print mode, scrape stdout (dispatch.js untouched).
|
|
655
|
+
const brain = await runChild(spawnFn, 'node', [EVOLVER_OWN_INDEX, 'run'], {
|
|
656
|
+
env: { ...process.env, EVOLVE_BRIDGE: 'true' }, stdinText: null, cwd: REPO_ROOT, // evolve the target tree, run evolver's own index.js
|
|
657
|
+
timeoutMs: BRAIN_TIMEOUT_MS(), label: 'Brain', bufferMode: 'head', // keep the sessions_spawn line at the head
|
|
658
|
+
});
|
|
659
|
+
if (brain.timedOut) { lastOutcome = 'brain_timeout'; appendFailureLesson(cycleTag, 'brain_timeout', brain.spawnError || ''); if (opts.once) break; await sleep(IDLE_SLEEP_MS()); continue; }
|
|
660
|
+
if (brain.code !== 0) { lastOutcome = 'brain_failed'; appendFailureLesson(cycleTag, 'brain_failed', brain.spawnError || `code=${brain.code}`); if (opts.once) break; await sleep(IDLE_SLEEP_MS()); continue; }
|
|
661
|
+
|
|
662
|
+
const spawnObj = parseFirstSpawnCall(brain.stdout);
|
|
663
|
+
if (!spawnObj || !spawnObj.task) { lastOutcome = 'no_spawn'; if (opts.once) break; await sleep(IDLE_SLEEP_MS()); continue; }
|
|
664
|
+
|
|
665
|
+
const baseTask = spawnObj.task;
|
|
666
|
+
let handOk = false;
|
|
667
|
+
let cycleOutcome = 'hand_failed'; // #179 r5: each cycle owns its outcome; the LAST cycle wins
|
|
668
|
+
for (let attempt = 1; attempt <= MAX_RETRIES && !handOk; attempt++) {
|
|
669
|
+
const attemptStartMs = Date.now(); // #179 r3: Fallback B must gate per-attempt, not per-cycle
|
|
670
|
+
const statusFile = `${statusBase}_${attempt}.json`; // m8: per-attempt file
|
|
671
|
+
try { if (fs.existsSync(statusFile)) fs.unlinkSync(statusFile); } catch (_) {}
|
|
672
|
+
const hint = attempt > 1
|
|
673
|
+
? `\n\nRETRY ${attempt}/${MAX_RETRIES}: previous attempt failed. Keep changes small/reversible; you MUST run \`node index.js solidify\` AND write the status JSON.\n`
|
|
674
|
+
: '';
|
|
675
|
+
const taskText = appendStatusFileContract(baseTask + hint, statusFile, cycleTag);
|
|
676
|
+
try { fs.writeFileSync(`${statusBase}_${attempt}_task.txt`, taskText); } catch (_) {}
|
|
677
|
+
|
|
678
|
+
const sessionId = (harness === 'claude-code') ? crypto.randomUUID() : `evolver_hand_${cycleTag}_${Date.now()}_${attempt}`;
|
|
679
|
+
const built = recipe.buildArgs({ sessionId, statusFile, cycleTag, settingsPath, taskText });
|
|
680
|
+
|
|
681
|
+
const r = await runChild(spawnFn, built.bin, built.args, {
|
|
682
|
+
env: { ...process.env, ...built.env },
|
|
683
|
+
stdinText: recipe.deliversTaskVia === 'stdin' ? taskText : null, cwd: REPO_ROOT, // Hand's solidify+git must run in the evolution repo
|
|
684
|
+
timeoutMs: HAND_TIMEOUT_MS(), label: 'Hand', bufferMode: 'tail', // keep claude's result JSON at the tail
|
|
685
|
+
});
|
|
686
|
+
|
|
687
|
+
const gate = evaluateStatusGate({ r, statusFile, cycleStartMs, attemptStartMs, solidifyProof: recipe.solidifyProof || 'stdout' });
|
|
688
|
+
if (gate.ok) { handOk = true; cycleOutcome = 'success'; break; }
|
|
689
|
+
appendFailureLesson(cycleTag, `hand_attempt_${attempt}_${gate.kind}`, gate.reason);
|
|
690
|
+
if (attempt < MAX_RETRIES) await sleep(BACKOFF_MS * attempt);
|
|
691
|
+
}
|
|
692
|
+
// #179 r5: assign unconditionally so a LATER cycle's failure is not masked by
|
|
693
|
+
// an EARLIER cycle's success. The latest cycle's outcome is the run outcome.
|
|
694
|
+
lastOutcome = cycleOutcome;
|
|
695
|
+
if (opts.once) break;
|
|
696
|
+
}
|
|
697
|
+
return { cycles: cycleCount, lastOutcome };
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
module.exports = {
|
|
701
|
+
runExecBridge, resolveBin, evaluateStatusGate, writeScopedSettings,
|
|
702
|
+
appendStatusFileContract, tryParseClaudeResult, runChild, RECIPES,
|
|
703
|
+
// Test-only surface for the CVE-2024-27980 Windows npm-shim resolver.
|
|
704
|
+
// Exposes the helper so tests can verify the parser handles real shim
|
|
705
|
+
// formats (claude-code, codex, opencode, openclaw, sdk packages) and
|
|
706
|
+
// gracefully returns null for non-shim targets, custom shims, missing
|
|
707
|
+
// entries, and non-Windows hosts.
|
|
708
|
+
__test: {
|
|
709
|
+
resolveNpmCmdShim: _resolveNpmCmdShim,
|
|
710
|
+
},
|
|
711
|
+
};
|