@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/hubVerify.js
CHANGED
|
@@ -1 +1,306 @@
|
|
|
1
|
-
const _0x4a9068=_0x2d57;(function(_0x599b56,_0x266891){const _0x338fc9=_0x2d57,_0x45405f=_0x599b56();while(!![]){try{const _0xfc34a5=-parseInt(_0x338fc9(0x202,'\x39\x5a\x6c\x66'))/(-0x218e*-0x1+0x2*-0x1091+-0x6b)+-parseInt(_0x338fc9(0x152,'\x23\x24\x62\x41'))/(-0x3*0x46b+0x1*-0x1f6+-0x3*-0x513)+-parseInt(_0x338fc9(0xd2,'\x26\x34\x40\x49'))/(-0x158*-0x7+-0x30a*0x2+-0x351)+-parseInt(_0x338fc9(0x14f,'\x32\x63\x37\x77'))/(-0xa88+-0x89c+-0x265*-0x8)*(-parseInt(_0x338fc9(0x1f7,'\x5a\x29\x5a\x64'))/(-0x2200+0x1*-0xa21+0x1613*0x2))+-parseInt(_0x338fc9(0x71,'\x70\x36\x4a\x62'))/(0xc01+-0x10ca+0x4cf)+parseInt(_0x338fc9(0x206,'\x25\x59\x61\x38'))/(0x3dd*0x8+0x2318+0x41f9*-0x1)*(parseInt(_0x338fc9(0x1dc,'\x47\x44\x7a\x4a'))/(-0x419*0x1+-0x32*0xa0+0x2361*0x1))+parseInt(_0x338fc9(0x153,'\x42\x78\x55\x4b'))/(-0x4d*-0x57+0x1*-0x22cd+0x1*0x8ab)*(parseInt(_0x338fc9(0x79,'\x6e\x6c\x51\x78'))/(-0x1867+-0xe5f+0x6c*0x5c));if(_0xfc34a5===_0x266891)break;else _0x45405f['push'](_0x45405f['shift']());}catch(_0x471ae6){_0x45405f['push'](_0x45405f['shift']());}}}(_0x18af,-0x8*-0x431f+-0x17f36*0x2+0x26f34));const _0x1b290f=(function(){const _0x6ce1f=_0x2d57,_0x1a1ef2={'\x51\x77\x63\x6d\x63':_0x6ce1f(0x1b0,'\x78\x49\x4b\x71')+'\x64\x75\x72\x61\x74\x69\x6f\x6e'+_0x6ce1f(0xed,'\x7a\x44\x4d\x73')+'\x64','\x68\x6d\x74\x4b\x64':function(_0x274a07,_0x127782){return _0x274a07!==_0x127782;},'\x4e\x44\x45\x6d\x61':_0x6ce1f(0xe3,'\x41\x50\x4f\x5e'),'\x4b\x52\x4f\x4b\x6b':_0x6ce1f(0x94,'\x4c\x67\x23\x4f'),'\x75\x59\x64\x6a\x67':function(_0x5ba196,_0x10aed6){return _0x5ba196!==_0x10aed6;},'\x56\x72\x45\x70\x46':function(_0x4e2edd){return _0x4e2edd();},'\x59\x53\x67\x4c\x41':function(_0x346302,_0x54c99f,_0x91708d){return _0x346302(_0x54c99f,_0x91708d);},'\x6f\x56\x73\x4e\x7a':function(_0x2e1aaf,_0x24f10a){return _0x2e1aaf===_0x24f10a;}};let _0x386e64=!![];return function(_0x155cc2,_0x2d73df){const _0x349446=_0x6ce1f,_0x1a9134={'\x79\x63\x69\x55\x49':function(_0x5c96ba){return _0x5c96ba();},'\x6b\x45\x4e\x49\x74':function(_0x2ac59f){return _0x2ac59f();},'\x4f\x6f\x66\x47\x74':_0x1a1ef2['\x4b\x52\x4f\x4b\x6b'],'\x54\x55\x73\x67\x61':function(_0x2bb350,_0x201ac8){const _0x450277=_0x2d57;return _0x1a1ef2[_0x450277(0x1e2,'\x6d\x6b\x24\x40')](_0x2bb350,_0x201ac8);},'\x6f\x46\x75\x46\x49':function(_0x110cf7){const _0x5cd0cb=_0x2d57;return _0x1a1ef2[_0x5cd0cb(0x117,'\x57\x61\x44\x7a')](_0x110cf7);},'\x57\x45\x7a\x57\x6a':function(_0x1731b4,_0x486b5f,_0x33d86c){const _0x43003e=_0x2d57;return _0x1a1ef2[_0x43003e(0x13c,'\x41\x50\x4f\x5e')](_0x1731b4,_0x486b5f,_0x33d86c);},'\x54\x55\x59\x44\x6d':_0x349446(0xb5,'\x78\x49\x4b\x71'),'\x6e\x51\x6c\x79\x45':function(_0x3d6595,_0x24c1e3){const _0x4f757b=_0x349446;return _0x1a1ef2[_0x4f757b(0x1f4,'\x26\x59\x5d\x62')](_0x3d6595,_0x24c1e3);}};if(_0x1a1ef2[_0x349446(0x179,'\x37\x6e\x56\x24')](_0x349446(0x19f,'\x26\x34\x40\x49'),_0x349446(0x17b,'\x26\x59\x5d\x62'))){const _0x2da676=_0x386e64?function(){const _0x4e3a7b=_0x349446,_0x2e582a={};_0x2e582a[_0x4e3a7b(0x9a,'\x25\x67\x6b\x4c')]=_0x1a1ef2[_0x4e3a7b(0x149,'\x39\x5a\x6c\x66')];const _0x3d2360=_0x2e582a;if(_0x1a1ef2[_0x4e3a7b(0x1f8,'\x39\x5a\x6c\x66')](_0x1a1ef2[_0x4e3a7b(0x156,'\x53\x5d\x4f\x5b')],_0x1a1ef2[_0x4e3a7b(0x1b2,'\x5d\x43\x71\x48')])){const _0x14ac93={};return _0x14ac93['\x6f\x6b']=![],_0x14ac93[_0x4e3a7b(0x7f,'\x2a\x4c\x79\x5a')]=_0x3d2360[_0x4e3a7b(0x18c,'\x55\x52\x34\x28')],_0x14ac93[_0x4e3a7b(0x1b7,'\x41\x50\x4f\x5e')]=!![],_0x14ac93;}else{if(_0x2d73df){const _0x493b65=_0x2d73df[_0x4e3a7b(0x8e,'\x70\x36\x4a\x62')](_0x155cc2,arguments);return _0x2d73df=null,_0x493b65;}}}:function(){};return _0x386e64=![],_0x2da676;}else{if(!_0x681dac['\x65\x78\x69\x73\x74\x73\x53\x79'+'\x6e\x63'](_0x1a9134[_0x349446(0xee,'\x70\x4d\x7a\x33')](_0x241804)))return null;const _0x2c8f7a=_0x1e7e27[_0x349446(0x1be,'\x26\x59\x5d\x62')](_0x3d1f2e[_0x349446(0x125,'\x70\x4d\x7a\x33')+_0x349446(0x124,'\x78\x49\x4b\x71')](_0x1a9134[_0x349446(0x1c1,'\x68\x6a\x45\x6f')](_0x305f17),_0x1a9134[_0x349446(0x18a,'\x49\x69\x47\x62')]));if(!_0x2c8f7a||!_0x2c8f7a[_0x349446(0x1fb,'\x55\x52\x34\x28')]||_0x1a9134['\x54\x55\x73\x67\x61'](typeof _0x2c8f7a[_0x349446(0xa4,'\x53\x5d\x4f\x5b')],_0x349446(0xad,'\x46\x41\x57\x61')))return null;const _0x35ec5c=_0x1a9134[_0x349446(0x1b1,'\x79\x44\x43\x61')](_0x242f8e);if(!_0x35ec5c)return null;const _0x5b37c0=_0x1a9134[_0x349446(0x12e,'\x6d\x6b\x24\x40')](_0x1dcf7c,_0x35ec5c,_0x2145bb[_0x349446(0xbd,'\x37\x6e\x56\x24')+'\x79'](_0x2c8f7a[_0x349446(0x10a,'\x23\x24\x62\x41')])),_0x7e3c98=_0x4f9ab1['\x66\x72\x6f\x6d'](_0x5b37c0,_0x1a9134['\x54\x55\x59\x44\x6d']),_0x10f3d2=_0x2a51e0[_0x349446(0xf6,'\x48\x34\x28\x71')](_0x2c8f7a['\x68\x6d\x61\x63'],_0x1a9134[_0x349446(0x171,'\x41\x57\x65\x69')]);if(_0x1a9134['\x6e\x51\x6c\x79\x45'](_0x7e3c98[_0x349446(0x9d,'\x26\x59\x5d\x62')],_0x10f3d2[_0x349446(0x11d,'\x45\x6a\x6d\x40')])||!_0x52e103[_0x349446(0x148,'\x48\x34\x28\x71')+_0x349446(0xb2,'\x70\x36\x4a\x62')](_0x7e3c98,_0x10f3d2))return null;return _0x2c8f7a[_0x349446(0x78,'\x6d\x6b\x24\x40')];}};}()),_0x5602a6=_0x1b290f(this,function(){const _0x330af8=_0x2d57,_0x4adbb9={};_0x4adbb9['\x4e\x4d\x65\x7a\x75']=_0x330af8(0xa6,'\x74\x47\x58\x69')+_0x330af8(0x120,'\x53\x30\x64\x23');const _0x3ffe25=_0x4adbb9;return _0x5602a6[_0x330af8(0x129,'\x26\x59\x5d\x62')]()[_0x330af8(0x199,'\x40\x33\x70\x77')](_0x3ffe25[_0x330af8(0x1ec,'\x26\x34\x40\x49')])[_0x330af8(0x14e,'\x28\x6d\x72\x69')]()[_0x330af8(0x173,'\x6e\x6c\x51\x78')+'\x74\x6f\x72'](_0x5602a6)[_0x330af8(0x70,'\x68\x6a\x45\x6f')](_0x3ffe25[_0x330af8(0xb0,'\x26\x59\x5d\x62')]);});_0x5602a6();const _0x154787=require(_0x4a9068(0x1cd,'\x65\x71\x39\x7a')),_0x2ab13e=require('\x66\x73'),_0x32866d=require(_0x4a9068(0xe7,'\x51\x64\x70\x5d')),{hubFetch:_0x120f2b}=require(_0x4a9068(0xaf,'\x65\x71\x39\x7a')+'\x63\x68'),{withFileLock:_0x279df5}=require(_0x4a9068(0xbe,'\x73\x55\x4e\x31')+_0x4a9068(0x1f6,'\x70\x36\x4a\x62'));function _0x363d3c(_0xd17cd6,_0x225e0c){const _0x20ad15=_0x4a9068;return _0x154787[_0x20ad15(0x16f,'\x26\x34\x40\x49')+'\x61\x63'](_0x20ad15(0x10e,'\x45\x6a\x6d\x40'),_0xd17cd6)[_0x20ad15(0x186,'\x42\x78\x55\x4b')](_0x225e0c)[_0x20ad15(0x180,'\x41\x57\x65\x69')](_0x20ad15(0x1b9,'\x38\x2a\x76\x5e'));}function _0x59b44b(_0x26b2d5){const _0x22529c=_0x4a9068,_0xc68961={};_0xc68961[_0x22529c(0x195,'\x4c\x67\x23\x4f')]=_0x22529c(0x10e,'\x45\x6a\x6d\x40'),_0xc68961[_0x22529c(0x10f,'\x6d\x6b\x24\x40')]=function(_0xb5b659,_0x402a6d){return _0xb5b659||_0x402a6d;},_0xc68961[_0x22529c(0x92,'\x70\x4d\x7a\x33')]=_0x22529c(0x1a5,'\x77\x61\x4f\x44');const _0x5cbbb6=_0xc68961;return _0x154787[_0x22529c(0x103,'\x70\x4d\x7a\x33')+'\x73\x68'](_0x5cbbb6[_0x22529c(0x159,'\x77\x61\x4f\x44')])[_0x22529c(0x201,'\x74\x7a\x21\x34')](String(_0x5cbbb6[_0x22529c(0x85,'\x70\x4d\x7a\x33')](_0x26b2d5,'')))['\x64\x69\x67\x65\x73\x74'](_0x5cbbb6[_0x22529c(0x6c,'\x6e\x6c\x51\x78')])[_0x22529c(0x1fa,'\x77\x61\x4f\x44')](0x12fa+-0x1*0x2419+0x111f,-0x11bd+0x147e+-0x2b1);}function _0x109682({geneId:_0x467ad1,signals:_0x37bd20,mutation:_0x228499}){const _0x55295b=_0x4a9068,_0x2d0929={'\x43\x7a\x58\x77\x6d':function(_0x391366){return _0x391366();},'\x54\x57\x51\x4a\x62':function(_0xc0bb1a,_0x548ebe){return _0xc0bb1a(_0x548ebe);},'\x44\x55\x75\x73\x76':'\x2e\x2f\x61\x32\x61\x50\x72\x6f'+_0x55295b(0x7e,'\x53\x5d\x4f\x5b'),'\x70\x54\x44\x68\x4d':_0x55295b(0x1bb,'\x23\x24\x62\x41'),'\x6a\x49\x78\x78\x6e':'\x49\x51\x78\x69\x70','\x4e\x66\x68\x4b\x4f':function(_0xce0f7e,_0x151fbc){return _0xce0f7e!==_0x151fbc;},'\x77\x59\x48\x74\x56':_0x55295b(0xff,'\x45\x6a\x6d\x40'),'\x69\x48\x4d\x62\x78':'\x73\x68\x61\x32\x35\x36','\x78\x52\x46\x4f\x52':_0x55295b(0x170,'\x6e\x6c\x51\x78'),'\x57\x55\x4c\x4e\x49':function(_0x3a9215,_0x577df4){return _0x3a9215(_0x577df4);},'\x77\x55\x68\x41\x49':function(_0x5e9820,_0x1387b5){return _0x5e9820||_0x1387b5;},'\x71\x66\x72\x68\x76':function(_0x509fa3,_0x4a77b0,_0x2c1272){return _0x509fa3(_0x4a77b0,_0x2c1272);}};let _0x463e1b=null;try{if(_0x2d0929[_0x55295b(0x134,'\x41\x50\x4f\x5e')]!==_0x2d0929[_0x55295b(0x166,'\x32\x63\x37\x77')])_0x463e1b=require(_0x2d0929[_0x55295b(0xd8,'\x48\x34\x28\x71')])[_0x55295b(0x1b6,'\x46\x41\x57\x61')+_0x55295b(0x131,'\x40\x33\x70\x77')]();else{var _0x21a75b=_0x118d45[_0x55295b(0x137,'\x7a\x44\x4d\x73')](_0x2d0929[_0x55295b(0x81,'\x5d\x43\x71\x48')](_0x2242c4));const _0x21ad7e={};_0x21ad7e[_0x55295b(0xd5,'\x74\x7a\x21\x34')+'\x65']=!![];if(!_0x22d803[_0x55295b(0x1a1,'\x46\x41\x57\x61')+'\x6e\x63'](_0x21a75b))_0x5a4583[_0x55295b(0x184,'\x57\x61\x44\x7a')+'\x63'](_0x21a75b,_0x21ad7e);}}catch(_0x20d795){}if(!_0x463e1b)return null;let _0x203dfa=null;try{_0x2d0929[_0x55295b(0x1c9,'\x45\x6a\x6d\x40')](_0x2d0929[_0x55295b(0x151,'\x4c\x67\x23\x4f')],_0x2d0929[_0x55295b(0xe1,'\x42\x78\x55\x4b')])?_0x2d00e8=_0x2d0929['\x54\x57\x51\x4a\x62'](_0xc1a85f,_0x2d0929[_0x55295b(0x17a,'\x55\x5b\x58\x55')])[_0x55295b(0x1fe,'\x79\x44\x43\x61')+_0x55295b(0x7d,'\x77\x61\x4f\x44')]():_0x203dfa=_0x2d0929[_0x55295b(0x1d4,'\x79\x44\x43\x61')](require,_0x2d0929[_0x55295b(0x160,'\x39\x5a\x6c\x66')])[_0x55295b(0x1da,'\x30\x23\x6f\x2a')+'\x64']();}catch(_0x464627){}if(!_0x203dfa)return null;const _0x300e97=_0x154787[_0x55295b(0x15c,'\x77\x5b\x6e\x6f')+'\x73\x68'](_0x2d0929[_0x55295b(0x1f9,'\x46\x41\x57\x61')])[_0x55295b(0x95,'\x6e\x6c\x51\x78')](_0x463e1b)[_0x55295b(0xe8,'\x23\x24\x62\x41')](_0x2d0929[_0x55295b(0x13b,'\x68\x6a\x45\x6f')]),_0x42bbdb=Date['\x6e\x6f\x77'](),_0x1517fc=_0x2d0929[_0x55295b(0x1bc,'\x49\x69\x47\x62')](_0x59b44b,JSON[_0x55295b(0x1c6,'\x79\x70\x30\x41')+'\x79'](Array[_0x55295b(0x8a,'\x41\x50\x4f\x5e')](_0x37bd20)?_0x37bd20[_0x55295b(0x1dd,'\x65\x71\x39\x7a')](0x4*-0x93f+-0x2512+0x4a0e,-0x162e+0x23f*-0xf+-0xb*-0x515):[])),_0x113ffc=_0x2d0929[_0x55295b(0xa7,'\x26\x34\x40\x49')](_0x59b44b,JSON['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79'](_0x2d0929[_0x55295b(0xc9,'\x45\x6a\x6d\x40')](_0x228499,{}))),_0x47fc85=[_0x203dfa,_0x467ad1||'',_0x1517fc,_0x113ffc,_0x2d0929[_0x55295b(0xce,'\x5d\x43\x71\x48')](String,_0x42bbdb)]['\x6a\x6f\x69\x6e']('\x7c'),_0x51cef4=_0x2d0929[_0x55295b(0x1b8,'\x53\x30\x64\x23')](_0x363d3c,_0x300e97,_0x47fc85);return{'\x6e\x6f\x64\x65\x49\x64':_0x203dfa,'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74':_0x463e1b,'\x62\x6f\x64\x79':{'\x73\x65\x6e\x64\x65\x72\x5f\x69\x64':_0x203dfa,'\x67\x65\x6e\x65\x5f\x69\x64':_0x2d0929[_0x55295b(0x69,'\x68\x6a\x45\x6f')](_0x467ad1,''),'\x73\x69\x67\x6e\x61\x6c\x73\x5f\x68\x61\x73\x68':_0x1517fc,'\x6d\x75\x74\x61\x74\x69\x6f\x6e\x5f\x68\x61\x73\x68':_0x113ffc,'\x74\x73':_0x42bbdb,'\x63\x6c\x69\x65\x6e\x74\x5f\x73\x69\x67\x6e\x61\x74\x75\x72\x65':_0x51cef4}};}function _0x54761c({geneId:_0xef657f,signals:_0x1e10f8,mutation:_0x441146}){const _0x45c996=_0x4a9068,_0x2e7cf5={'\x59\x67\x72\x52\x74':function(_0x8892a4,_0x507056){return _0x8892a4>=_0x507056;},'\x6f\x54\x52\x59\x6a':function(_0x58946b,_0x472ca1){return _0x58946b+_0x472ca1;},'\x67\x63\x69\x79\x4d':function(_0xffebd7,_0x289962){return _0xffebd7+_0x289962;},'\x48\x4e\x56\x59\x4f':_0x45c996(0x1b3,'\x67\x25\x73\x6c'),'\x4d\x72\x4f\x4b\x72':_0x45c996(0x17e,'\x40\x33\x70\x77')+_0x45c996(0x1db,'\x5a\x29\x5a\x64')+_0x45c996(0x1c3,'\x32\x63\x37\x77'),'\x50\x6b\x69\x71\x4a':_0x45c996(0x185,'\x41\x57\x65\x69'),'\x77\x6a\x7a\x4a\x45':_0x45c996(0x1ab,'\x74\x7a\x21\x34')+_0x45c996(0x140,'\x42\x78\x55\x4b')+_0x45c996(0xdb,'\x70\x36\x4a\x62'),'\x78\x4b\x55\x55\x63':function(_0x18a944,_0x4be224){return _0x18a944===_0x4be224;},'\x50\x75\x46\x52\x72':_0x45c996(0x7c,'\x66\x24\x39\x79'),'\x61\x74\x44\x61\x7a':_0x45c996(0xbc,'\x30\x23\x6f\x2a'),'\x6b\x61\x4a\x51\x7a':function(_0x1b2cbb,_0x331d5a){return _0x1b2cbb!==_0x331d5a;},'\x66\x46\x45\x74\x4d':function(_0x1596da,_0xd5f013){return _0x1596da===_0xd5f013;},'\x79\x43\x7a\x76\x4b':'\x69\x79\x4a\x4c\x69','\x46\x44\x53\x41\x70':function(_0x1a43cf,_0x1932d3){return _0x1a43cf<_0x1932d3;},'\x6d\x55\x4b\x6b\x48':function(_0xbf8cb6){return _0xbf8cb6();},'\x75\x49\x6f\x63\x75':_0x45c996(0x14d,'\x37\x6e\x56\x24')+'\x72\x6c','\x4b\x70\x51\x42\x73':_0x45c996(0x93,'\x73\x55\x4e\x31')+_0x45c996(0x1eb,'\x79\x44\x43\x61'),'\x77\x66\x50\x57\x6c':_0x45c996(0xa9,'\x79\x44\x43\x61')+_0x45c996(0x77,'\x46\x41\x57\x61')+_0x45c996(0x86,'\x67\x28\x25\x61'),'\x74\x55\x50\x48\x74':_0x45c996(0x12f,'\x53\x5d\x4f\x5b'),'\x67\x68\x68\x6b\x57':function(_0x1cfd13,_0x2d59e6,_0x99516b){return _0x1cfd13(_0x2d59e6,_0x99516b);},'\x48\x4c\x54\x57\x50':_0x45c996(0x19c,'\x67\x25\x73\x6c')},_0x4af727=(process.env.A2A_HUB_URL||'')[_0x45c996(0x192,'\x6e\x6c\x51\x78')](/\/+$/,''),_0x2e0d5d={};_0x2e0d5d['\x6f\x6b']=![],_0x2e0d5d[_0x45c996(0x99,'\x5a\x29\x5a\x64')]=_0x2e7cf5[_0x45c996(0x1ea,'\x47\x44\x7a\x4a')],_0x2e0d5d[_0x45c996(0xea,'\x26\x34\x40\x49')]=!![];if(!_0x4af727)return Promise[_0x45c996(0xaa,'\x78\x49\x4b\x71')](_0x2e0d5d);const _0x3370e2={};_0x3370e2[_0x45c996(0x1e8,'\x47\x44\x7a\x4a')]=_0xef657f,_0x3370e2[_0x45c996(0x107,'\x40\x33\x70\x77')]=_0x1e10f8,_0x3370e2[_0x45c996(0xf1,'\x5a\x29\x5a\x64')]=_0x441146;const _0x2c6f53=_0x109682(_0x3370e2),_0x81abf9={};_0x81abf9['\x6f\x6b']=![],_0x81abf9[_0x45c996(0x128,'\x5d\x43\x71\x48')]=_0x2e7cf5[_0x45c996(0x1f2,'\x78\x49\x4b\x71')],_0x81abf9[_0x45c996(0x1e5,'\x45\x6a\x6d\x40')]=!![];if(!_0x2c6f53)return Promise[_0x45c996(0x1f0,'\x67\x28\x25\x61')](_0x81abf9);const _0x36ef1e=_0x2e7cf5[_0x45c996(0x164,'\x41\x57\x65\x69')](_0x4af727,_0x2e7cf5[_0x45c996(0x18f,'\x48\x34\x28\x71')]),_0x100c51=require(_0x45c996(0xb1,'\x40\x33\x70\x77')+'\x67')[_0x45c996(0x19e,'\x37\x6e\x56\x24')+_0x45c996(0x147,'\x48\x34\x28\x71')+_0x45c996(0x182,'\x77\x61\x4f\x44')+'\x53']||-0x11b2+-0x2c02+0x64c4,_0x172832={'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':'\x61\x70\x70\x6c\x69\x63\x61\x74'+_0x45c996(0x1ac,'\x73\x55\x4e\x31'),'\x41\x75\x74\x68\x6f\x72\x69\x7a\x61\x74\x69\x6f\x6e':_0x2e7cf5[_0x45c996(0x18b,'\x5d\x43\x71\x48')](_0x2e7cf5['\x74\x55\x50\x48\x74'],_0x2c6f53[_0x45c996(0xd1,'\x26\x34\x40\x49')+'\x65\x74'])};return _0x2e7cf5[_0x45c996(0x8b,'\x5a\x29\x5a\x64')](_0x120f2b,_0x36ef1e,{'\x6d\x65\x74\x68\x6f\x64':_0x2e7cf5[_0x45c996(0x1f1,'\x66\x24\x39\x79')],'\x68\x65\x61\x64\x65\x72\x73':_0x172832,'\x62\x6f\x64\x79':JSON[_0x45c996(0x154,'\x42\x78\x55\x4b')+'\x79'](_0x2c6f53['\x62\x6f\x64\x79']),'\x73\x69\x67\x6e\x61\x6c':AbortSignal[_0x45c996(0x72,'\x7a\x6a\x6c\x6e')](_0x100c51)})[_0x45c996(0x1a6,'\x26\x34\x40\x49')](function(_0x18bcf1){const _0x5c9d5b=_0x45c996,_0x122841={'\x4b\x4b\x7a\x61\x77':function(_0x5196e3){return _0x5196e3();},'\x74\x6e\x45\x68\x55':_0x2e7cf5[_0x5c9d5b(0x8c,'\x74\x47\x58\x69')],'\x6b\x59\x58\x6b\x6b':_0x2e7cf5[_0x5c9d5b(0x17d,'\x32\x63\x37\x77')],'\x58\x73\x46\x77\x41':function(_0x26717c,_0x4afbab){const _0x2d0432=_0x5c9d5b;return _0x2e7cf5[_0x2d0432(0x118,'\x32\x63\x37\x77')](_0x26717c,_0x4afbab);},'\x47\x64\x48\x64\x6f':_0x2e7cf5[_0x5c9d5b(0x9b,'\x37\x6e\x56\x24')],'\x4a\x76\x58\x47\x46':_0x2e7cf5[_0x5c9d5b(0x108,'\x45\x6a\x6d\x40')],'\x6b\x4a\x52\x6d\x79':function(_0x236b49,_0xbe3a91){const _0x1f1e5a=_0x5c9d5b;return _0x2e7cf5[_0x1f1e5a(0x17f,'\x48\x34\x28\x71')](_0x236b49,_0xbe3a91);},'\x71\x69\x53\x67\x74':_0x5c9d5b(0xcd,'\x2a\x4c\x79\x5a'),'\x6a\x68\x78\x78\x4d':_0x5c9d5b(0x76,'\x55\x52\x34\x28')};if(_0x2e7cf5[_0x5c9d5b(0x67,'\x70\x4d\x7a\x33')]('\x69\x79\x4a\x4c\x69',_0x2e7cf5[_0x5c9d5b(0x1e0,'\x78\x49\x4b\x71')])){_0x2e7cf5[_0x5c9d5b(0x1ca,'\x68\x6a\x45\x6f')](_0x18bcf1[_0x5c9d5b(0xcf,'\x25\x67\x6b\x4c')],0x1852+0x20c3+0x503*-0xb)&&_0x2e7cf5[_0x5c9d5b(0x91,'\x77\x5b\x6e\x6f')](_0x460af3);if(!_0x18bcf1['\x6f\x6b'])return _0x18bcf1[_0x5c9d5b(0x1ed,'\x79\x70\x30\x41')]()[_0x5c9d5b(0x12b,'\x28\x6d\x72\x69')](function(_0xded5b9){const _0x30206d=_0x5c9d5b,_0x52d777=_0x2e7cf5[_0x30206d(0x198,'\x6d\x6b\x24\x40')](_0x18bcf1[_0x30206d(0x1a2,'\x67\x28\x25\x61')],-0x9*-0x32+0x9*-0x83+-0x4cd*-0x1);return{'\x6f\x6b':![],'\x65\x72\x72\x6f\x72':_0x2e7cf5[_0x30206d(0x11f,'\x74\x47\x58\x69')](_0x2e7cf5[_0x30206d(0xef,'\x37\x6e\x56\x24')](_0x2e7cf5[_0x30206d(0x6d,'\x6e\x6c\x51\x78')]+_0x18bcf1[_0x30206d(0x207,'\x2a\x4c\x79\x5a')],'\x3a\x20'),_0xded5b9[_0x30206d(0x127,'\x53\x5d\x4f\x5b')](0x67f*0x5+0xd*0x1ba+-0x36ed,0x9da+0xf26+0x1*-0x1838)),'\x6f\x66\x66\x6c\x69\x6e\x65':_0x52d777};});return _0x18bcf1[_0x5c9d5b(0x1af,'\x26\x59\x5d\x62')]()['\x74\x68\x65\x6e'](function(_0xb5b25){const _0x48ebbb=_0x5c9d5b,_0x57ec86={'\x75\x72\x62\x59\x46':function(_0x3bb631){return _0x122841['\x4b\x4b\x7a\x61\x77'](_0x3bb631);},'\x64\x63\x49\x6e\x71':_0x122841[_0x48ebbb(0x196,'\x5d\x43\x71\x48')],'\x57\x5a\x4c\x49\x45':_0x122841['\x6b\x59\x58\x6b\x6b']};if(_0x122841[_0x48ebbb(0x105,'\x53\x5d\x4f\x5b')](_0x122841['\x47\x64\x48\x64\x6f'],_0x122841[_0x48ebbb(0xdd,'\x6e\x6c\x51\x78')]))return!_0x58039b&&(_0x302a16=_0x1e9865[_0x48ebbb(0xfd,'\x51\x64\x70\x5d')](_0x57ec86[_0x48ebbb(0x1a7,'\x49\x69\x47\x62')](_0x4765ee),_0x57ec86[_0x48ebbb(0x114,'\x47\x44\x7a\x4a')])),_0x5a5d22;else{if(_0xb5b25&&_0xb5b25['\x6f\x6b']&&_0xb5b25['\x6f\x66\x66\x6c\x69\x6e\x65\x5f'+_0x48ebbb(0x205,'\x68\x6a\x45\x6f')]){if(_0x122841[_0x48ebbb(0x1a8,'\x79\x44\x43\x61')](_0x122841['\x71\x69\x53\x67\x74'],_0x122841[_0x48ebbb(0x204,'\x49\x69\x47\x62')]))_0x496446(_0xb5b25[_0x48ebbb(0x157,'\x48\x34\x28\x71')+'\x74\x6f\x6b\x65\x6e']);else{const _0x1981f4={};return _0x1981f4['\x6f\x6b']=![],_0x1981f4[_0x48ebbb(0x172,'\x74\x7a\x21\x34')]=_0x57ec86['\x57\x5a\x4c\x49\x45'],_0x1981f4[_0x48ebbb(0x9f,'\x30\x23\x6f\x2a')]=!![],_0x1981f4;}}return _0xb5b25;}});}else{const _0x66ee17={};return _0x66ee17['\x6f\x6b']=![],_0x66ee17[_0x5c9d5b(0x99,'\x5a\x29\x5a\x64')]=_0x2e7cf5[_0x5c9d5b(0x155,'\x49\x69\x47\x62')],_0x66ee17[_0x5c9d5b(0x1b7,'\x41\x50\x4f\x5e')]=!![],_0x66ee17;}})[_0x45c996(0x189,'\x73\x55\x4e\x31')](function(_0x2512cd){const _0x5883e8=_0x45c996,_0x558e5e={};return _0x558e5e['\x6f\x6b']=![],_0x558e5e[_0x5883e8(0x13a,'\x55\x52\x34\x28')]=_0x2512cd[_0x5883e8(0x1e6,'\x70\x4d\x7a\x33')],_0x558e5e[_0x5883e8(0x1e3,'\x79\x70\x30\x41')]=!![],_0x558e5e;});}var _0x56441d=null,_0x402633=null;function _0x257b77(){const _0x48ae20=_0x4a9068,_0x588f6e={'\x42\x50\x56\x47\x79':function(_0x132532){return _0x132532();},'\x43\x65\x4c\x53\x6e':_0x48ae20(0xa1,'\x70\x36\x4a\x62'),'\x46\x66\x73\x42\x55':function(_0x386445,_0x53ab6f){return _0x386445===_0x53ab6f;},'\x73\x4a\x78\x4f\x4d':'\x48\x4e\x61\x57\x72','\x56\x4a\x56\x68\x4d':function(_0x580557,_0xa789be){return _0x580557(_0xa789be);},'\x52\x68\x4b\x69\x44':_0x48ae20(0xb4,'\x79\x70\x30\x41'),'\x64\x76\x6d\x45\x72':function(_0x3f5243,_0x5ed577){return _0x3f5243!==_0x5ed577;},'\x42\x6b\x69\x47\x53':_0x48ae20(0x142,'\x28\x6d\x72\x69'),'\x64\x73\x6a\x47\x6e':_0x48ae20(0xa5,'\x57\x61\x44\x7a')};try{return _0x588f6e[_0x48ae20(0x18e,'\x48\x34\x28\x71')](_0x48ae20(0x89,'\x73\x55\x4e\x31'),_0x588f6e['\x73\x4a\x78\x4f\x4d'])?null:_0x588f6e[_0x48ae20(0x16d,'\x7a\x6a\x6c\x6e')](require,_0x588f6e[_0x48ae20(0x163,'\x77\x61\x4f\x44')])[_0x48ae20(0xdc,'\x70\x36\x4a\x62')+_0x48ae20(0xac,'\x25\x59\x61\x38')]();}catch(_0x11695e){try{return _0x588f6e[_0x48ae20(0x141,'\x37\x6e\x56\x24')](_0x48ae20(0x1f5,'\x39\x5a\x6c\x66'),_0x588f6e[_0x48ae20(0x1d9,'\x26\x34\x40\x49')])?(!_0x594f5d&&(_0x4262ec=_0x406b89[_0x48ae20(0x96,'\x57\x61\x44\x7a')](_0x588f6e[_0x48ae20(0x1d3,'\x49\x69\x47\x62')](_0x1e0b0),_0x588f6e[_0x48ae20(0xf3,'\x30\x23\x6f\x2a')])),_0x2d62d2):_0x32866d[_0x48ae20(0xfd,'\x51\x64\x70\x5d')](_0x588f6e[_0x48ae20(0x9e,'\x74\x47\x58\x69')](require,_0x48ae20(0xbb,'\x26\x59\x5d\x62'))[_0x48ae20(0xf5,'\x67\x25\x73\x6c')+_0x48ae20(0x150,'\x65\x71\x39\x7a')](),_0x48ae20(0xf4,'\x45\x6a\x6d\x40'),_0x588f6e['\x64\x73\x6a\x47\x6e']);}catch(_0x128c99){return _0x32866d[_0x48ae20(0xfd,'\x51\x64\x70\x5d')](process[_0x48ae20(0x110,'\x79\x44\x43\x61')](),_0x48ae20(0x1e9,'\x25\x59\x61\x38'),_0x588f6e[_0x48ae20(0x1d0,'\x74\x7a\x21\x34')]);}}}function _0x18af(){const _0x58ec49=['\x42\x43\x6f\x39\x57\x51\x5a\x63\x54\x71','\x57\x51\x42\x64\x47\x30\x34\x7a\x57\x51\x6c\x64\x4e\x71','\x77\x53\x6b\x41\x67\x53\x6f\x57','\x71\x38\x6b\x35\x41\x33\x4e\x64\x56\x61','\x57\x34\x66\x52\x57\x35\x4b\x77\x73\x38\x6b\x6b\x57\x37\x5a\x64\x50\x61','\x57\x35\x6c\x64\x52\x68\x6d\x4b\x57\x50\x57','\x57\x35\x64\x64\x56\x6d\x6b\x37\x57\x34\x4f\x54','\x42\x53\x6b\x50\x6a\x30\x68\x64\x51\x57','\x57\x52\x53\x6e\x42\x6d\x6b\x42\x57\x34\x6d\x68\x57\x50\x53\x48','\x57\x51\x46\x64\x51\x58\x33\x64\x55\x74\x69\x4f','\x6a\x59\x7a\x67\x6e\x58\x71','\x57\x35\x74\x64\x49\x38\x6f\x6f\x57\x52\x44\x71\x6b\x4d\x69','\x57\x36\x70\x64\x53\x53\x6f\x67\x57\x36\x4c\x46','\x57\x37\x54\x69\x72\x71','\x57\x35\x2f\x64\x56\x33\x71\x34\x57\x50\x4f\x63\x57\x51\x43','\x57\x37\x2f\x64\x51\x43\x6b\x54\x61\x43\x6b\x64','\x77\x6d\x6f\x47\x57\x4f\x47\x41','\x78\x43\x6b\x71\x68\x53\x6f\x58\x57\x52\x42\x63\x54\x61','\x77\x75\x71\x34\x43\x78\x69\x78\x44\x38\x6f\x6e','\x64\x48\x6c\x64\x56\x6d\x6b\x63\x72\x47','\x57\x36\x42\x63\x49\x6d\x6f\x52\x6b\x65\x52\x64\x52\x6d\x6b\x38\x57\x37\x61','\x62\x4e\x78\x64\x51\x53\x6b\x4d\x63\x59\x4a\x64\x50\x6d\x6b\x45','\x6d\x75\x56\x64\x50\x5a\x78\x63\x49\x43\x6b\x45\x57\x50\x71','\x57\x35\x35\x2b\x57\x37\x6d\x70\x41\x57','\x57\x4f\x54\x69\x57\x37\x43\x6a','\x45\x38\x6f\x78\x7a\x33\x58\x39\x57\x35\x38','\x6d\x6d\x6b\x72\x69\x59\x6a\x47\x57\x35\x33\x64\x48\x6d\x6f\x2b\x42\x61\x57','\x68\x75\x56\x64\x49\x38\x6f\x72\x57\x37\x30\x54\x73\x75\x71','\x57\x4f\x78\x64\x47\x58\x42\x64\x50\x64\x6d','\x57\x36\x4a\x64\x4a\x58\x56\x63\x4d\x43\x6f\x54\x76\x58\x54\x71','\x57\x52\x6e\x63\x44\x68\x58\x7a\x57\x52\x52\x63\x51\x57','\x57\x37\x70\x64\x56\x76\x6d\x4a\x6f\x47','\x57\x35\x53\x35\x62\x57\x4c\x35\x76\x68\x75','\x6b\x30\x56\x64\x52\x61','\x67\x5a\x57\x6f\x57\x4f\x4f\x66','\x65\x53\x6f\x75\x57\x35\x4c\x54\x57\x34\x43','\x57\x52\x46\x64\x4f\x53\x6f\x6f\x45\x43\x6b\x5a','\x72\x6d\x6b\x41\x70\x38\x6f\x58\x57\x52\x70\x63\x51\x6d\x6f\x31\x6a\x57','\x6c\x57\x65\x64\x57\x52\x61\x65','\x57\x36\x78\x63\x4f\x71\x70\x64\x56\x5a\x69\x4f\x79\x61','\x57\x36\x2f\x64\x48\x6d\x6f\x55\x57\x52\x6e\x39','\x74\x43\x6b\x4f\x65\x33\x52\x64\x54\x5a\x42\x63\x49\x38\x6b\x50','\x57\x36\x42\x63\x49\x6d\x6f\x52\x41\x76\x4a\x64\x4d\x43\x6b\x36\x57\x34\x57','\x57\x51\x4e\x64\x48\x6d\x6f\x6b\x44\x38\x6b\x32\x46\x43\x6f\x38\x57\x36\x34','\x63\x32\x78\x64\x53\x64\x4e\x63\x4f\x71','\x57\x51\x37\x63\x4a\x57\x4e\x64\x54\x6d\x6b\x43','\x57\x36\x4a\x64\x53\x6d\x6f\x4f\x57\x37\x66\x75\x57\x35\x4a\x63\x55\x43\x6b\x68','\x43\x47\x6c\x63\x4c\x71','\x79\x63\x46\x64\x50\x6d\x6f\x56\x57\x4f\x79','\x74\x57\x56\x64\x51\x53\x6b\x76\x57\x4f\x4f','\x57\x37\x4a\x63\x56\x65\x56\x63\x52\x78\x39\x57\x7a\x6d\x6b\x34\x57\x50\x7a\x6f\x57\x4f\x6e\x48','\x57\x51\x33\x63\x53\x53\x6b\x6a\x57\x51\x5a\x63\x4d\x57','\x57\x34\x65\x38\x57\x35\x53\x53\x68\x66\x43\x33\x70\x47','\x76\x72\x39\x76\x57\x51\x76\x49','\x6a\x43\x6f\x73\x41\x38\x6b\x6a\x61\x57','\x68\x49\x42\x64\x53\x43\x6b\x69\x73\x71','\x57\x51\x6c\x63\x4a\x53\x6b\x31\x57\x52\x74\x63\x4f\x6d\x6f\x63\x45\x32\x57','\x57\x51\x58\x36\x68\x43\x6f\x75\x76\x47','\x46\x6d\x6f\x6f\x57\x37\x68\x63\x4c\x64\x79','\x57\x37\x6c\x64\x4d\x43\x6b\x33\x57\x35\x38\x51\x57\x52\x4f','\x73\x38\x6b\x58\x65\x74\x4f\x4e\x75\x76\x57','\x6e\x59\x4a\x64\x4c\x6d\x6b\x50\x78\x6d\x6f\x52\x57\x4f\x52\x63\x49\x71','\x41\x68\x37\x63\x47\x38\x6f\x34\x70\x6d\x6b\x35\x57\x51\x2f\x63\x53\x32\x37\x63\x4d\x77\x43\x6b','\x7a\x62\x42\x64\x4d\x5a\x47\x67\x61\x77\x46\x64\x51\x62\x70\x64\x47\x43\x6b\x30','\x57\x51\x68\x64\x49\x43\x6f\x55\x46\x31\x70\x64\x53\x38\x6b\x4f','\x43\x77\x50\x76\x57\x34\x54\x71\x45\x4e\x4f\x50','\x6c\x4d\x4a\x64\x4e\x4a\x46\x63\x4a\x61','\x7a\x59\x6a\x52\x57\x4f\x50\x6d','\x73\x53\x6b\x6b\x62\x73\x53\x39','\x41\x4d\x4c\x70\x57\x36\x50\x72','\x46\x72\x64\x63\x4c\x71','\x57\x52\x7a\x74\x76\x67\x4b','\x57\x52\x6a\x63\x72\x75\x62\x6a\x57\x52\x42\x63\x51\x6d\x6b\x54','\x57\x50\x4e\x64\x48\x78\x69\x2f\x57\x50\x61','\x43\x65\x48\x71\x57\x35\x31\x56','\x79\x6d\x6b\x36\x6c\x59\x57\x4b\x78\x31\x33\x64\x4b\x71','\x57\x36\x6e\x2f\x57\x52\x34\x52','\x57\x4f\x35\x7a\x57\x51\x50\x79\x57\x36\x79','\x44\x58\x70\x63\x4e\x43\x6b\x35\x74\x31\x69\x42\x74\x57','\x57\x50\x4f\x47\x46\x6d\x6b\x4a\x57\x36\x34','\x57\x36\x31\x35\x57\x51\x75\x52\x57\x34\x56\x64\x55\x53\x6b\x6f','\x77\x43\x6b\x35\x66\x76\x56\x64\x52\x64\x70\x63\x52\x6d\x6b\x47','\x41\x38\x6b\x2b\x74\x66\x68\x64\x4b\x32\x46\x64\x4f\x47','\x57\x51\x4a\x63\x48\x73\x74\x64\x49\x71','\x57\x51\x56\x63\x4a\x6d\x6b\x32\x57\x52\x4a\x63\x4f\x43\x6f\x4c','\x72\x43\x6b\x67\x66\x53\x6f\x36\x57\x4f\x46\x63\x4f\x53\x6f\x59\x63\x47','\x6e\x49\x68\x64\x4c\x53\x6b\x47\x7a\x53\x6f\x47\x57\x4f\x57','\x41\x31\x78\x63\x54\x38\x6b\x5a\x73\x71','\x57\x50\x39\x4e\x57\x37\x4f\x73\x64\x75\x4b\x65\x62\x71','\x46\x53\x6b\x41\x57\x36\x70\x63\x4d\x43\x6f\x79\x57\x35\x4c\x6d\x73\x47','\x44\x49\x46\x64\x4d\x53\x6f\x4f\x57\x4f\x53','\x77\x43\x6b\x2f\x63\x67\x52\x64\x4c\x61','\x41\x30\x4c\x67\x57\x35\x4c\x4e\x57\x37\x38\x4b\x6c\x6d\x6f\x6b\x45\x6d\x6b\x6e','\x57\x35\x52\x64\x51\x33\x75\x51\x57\x50\x4f\x6f\x57\x51\x5a\x64\x54\x61','\x57\x50\x6c\x64\x51\x53\x6f\x72\x77\x43\x6b\x58','\x57\x37\x4a\x64\x49\x6d\x6f\x4b\x57\x4f\x48\x78','\x64\x63\x39\x6c\x57\x4f\x54\x68\x6f\x43\x6b\x38\x70\x71','\x57\x34\x39\x39\x57\x37\x34\x52\x71\x53\x6b\x74\x57\x37\x46\x64\x4e\x57','\x41\x6d\x6b\x54\x68\x5a\x75','\x57\x52\x38\x67\x6e\x73\x64\x64\x55\x47','\x57\x52\x37\x64\x4e\x48\x2f\x64\x53\x71\x4f','\x68\x61\x5a\x63\x51\x64\x6c\x63\x4b\x71','\x63\x66\x5a\x64\x50\x64\x78\x63\x48\x47','\x74\x67\x5a\x63\x51\x6d\x6b\x55\x76\x4a\x56\x64\x53\x53\x6b\x54','\x74\x66\x64\x64\x4f\x43\x6f\x6a\x57\x51\x4b','\x57\x52\x6c\x63\x49\x5a\x4e\x64\x4a\x57','\x57\x37\x35\x30\x57\x4f\x56\x64\x56\x47','\x72\x57\x62\x36\x57\x4f\x54\x65','\x76\x6d\x6b\x75\x62\x38\x6f\x2f','\x74\x75\x56\x64\x4f\x53\x6f\x68\x57\x50\x47','\x6e\x73\x4b\x66\x57\x51\x43\x5a','\x42\x64\x42\x64\x4c\x53\x6f\x43\x57\x52\x42\x64\x56\x6d\x6b\x2b\x57\x36\x65','\x6e\x53\x6f\x4c\x57\x52\x57','\x41\x6d\x6f\x2b\x57\x51\x38\x6f\x68\x57','\x57\x34\x4a\x64\x4d\x43\x6f\x41\x57\x52\x6a\x78\x69\x57','\x57\x52\x78\x63\x49\x66\x70\x63\x4c\x6d\x6f\x4a\x76\x71\x34','\x71\x5a\x35\x35\x57\x4f\x76\x72','\x76\x6d\x6f\x4b\x57\x50\x53\x78\x70\x38\x6b\x7a\x57\x52\x71','\x57\x51\x56\x63\x48\x6d\x6b\x4c\x57\x52\x57','\x6e\x53\x6f\x6c\x57\x37\x65\x42','\x57\x35\x4a\x64\x55\x67\x43\x4e\x57\x4f\x43\x6a\x57\x51\x42\x64\x48\x71','\x6b\x73\x43\x6e\x72\x30\x76\x68\x45\x6d\x6f\x76\x57\x52\x4c\x74\x73\x47','\x75\x73\x6a\x43\x57\x35\x79\x45\x45\x71','\x6e\x64\x64\x63\x48\x74\x42\x63\x4a\x61','\x73\x4d\x70\x63\x56\x61','\x57\x52\x68\x63\x4b\x31\x69\x67\x6f\x78\x46\x64\x52\x57','\x74\x6d\x6b\x41\x57\x37\x42\x63\x4c\x43\x6f\x70\x57\x34\x75','\x57\x50\x5a\x64\x56\x76\x57\x47\x57\x51\x69','\x57\x37\x37\x64\x54\x53\x6f\x63\x57\x36\x50\x78','\x57\x51\x6c\x63\x49\x67\x64\x63\x49\x43\x6f\x36','\x57\x36\x37\x64\x49\x38\x6b\x57\x57\x34\x43\x32\x57\x51\x46\x64\x4e\x61','\x7a\x53\x6b\x68\x6e\x53\x6f\x55\x57\x4f\x69','\x6f\x6d\x6f\x52\x75\x38\x6b\x31\x66\x61','\x57\x50\x2f\x64\x50\x43\x6f\x64\x43\x4c\x4f','\x57\x36\x7a\x63\x57\x51\x75\x64\x57\x34\x34','\x57\x50\x35\x4c\x57\x50\x7a\x2b\x57\x35\x76\x2b\x70\x38\x6f\x2b','\x72\x4a\x68\x64\x47\x38\x6f\x31\x57\x4f\x6d','\x74\x49\x39\x74\x57\x4f\x6e\x46\x6a\x57','\x57\x51\x68\x63\x4a\x63\x46\x64\x48\x38\x6f\x78','\x68\x4a\x48\x63\x62\x4a\x6d','\x6a\x4b\x5a\x63\x50\x6d\x6f\x62','\x73\x43\x6b\x55\x7a\x31\x56\x64\x4b\x71','\x57\x34\x44\x2b\x57\x36\x57','\x42\x68\x58\x45\x66\x62\x54\x76\x41\x53\x6f\x4f','\x65\x66\x46\x64\x55\x4a\x4b','\x46\x73\x68\x64\x4b\x53\x6f\x7a\x57\x4f\x74\x64\x53\x6d\x6b\x41\x57\x36\x75','\x72\x4c\x42\x64\x50\x57','\x71\x38\x6f\x48\x57\x4f\x61\x41\x6f\x57','\x74\x43\x6f\x52\x57\x35\x6c\x63\x53\x73\x79','\x57\x52\x2f\x64\x4f\x73\x64\x64\x51\x4a\x71\x50\x46\x43\x6b\x41','\x62\x4c\x42\x64\x50\x61','\x6e\x38\x6f\x78\x57\x37\x6a\x6e','\x57\x52\x2f\x63\x4a\x6d\x6b\x4a\x57\x52\x4a\x63\x54\x47','\x79\x6d\x6f\x6f\x44\x68\x79','\x6f\x59\x6c\x63\x4e\x48\x74\x63\x4b\x47','\x43\x53\x6f\x4f\x57\x4f\x47\x6c\x6f\x38\x6b\x67\x57\x37\x65','\x45\x38\x6b\x53\x66\x74\x57\x69\x77\x30\x33\x64\x4b\x71','\x57\x51\x6c\x63\x48\x67\x46\x63\x4e\x38\x6f\x48\x73\x58\x48\x6e','\x57\x52\x68\x63\x4b\x30\x6e\x76\x6c\x65\x2f\x64\x52\x4e\x61','\x6a\x43\x6f\x32\x71\x43\x6b\x75\x65\x71','\x57\x51\x71\x2f\x74\x53\x6b\x46\x57\x36\x43','\x57\x51\x68\x63\x50\x65\x6c\x63\x4b\x38\x6f\x56','\x45\x62\x68\x64\x51\x43\x6f\x44','\x72\x43\x6b\x77\x57\x36\x4e\x63\x4c\x6d\x6f\x43\x57\x35\x66\x6e','\x45\x6d\x6f\x67\x7a\x33\x48\x36\x57\x34\x5a\x64\x4b\x6d\x6f\x78','\x78\x57\x68\x64\x4a\x43\x6f\x64\x57\x36\x53\x64','\x57\x52\x71\x54\x65\x49\x4e\x64\x53\x71','\x57\x37\x66\x63\x57\x50\x65\x6b\x57\x37\x47','\x57\x4f\x30\x34\x42\x43\x6b\x37\x57\x36\x53','\x57\x50\x4a\x64\x54\x30\x38\x46\x57\x4f\x79','\x57\x52\x4f\x65\x46\x71','\x57\x50\x66\x76\x57\x36\x4f\x78\x6c\x47','\x57\x50\x62\x4d\x57\x50\x7a\x5a\x57\x35\x72\x52\x6a\x6d\x6f\x6a','\x77\x53\x6b\x51\x64\x66\x42\x64\x51\x57','\x69\x6d\x6f\x37\x57\x35\x76\x4c\x57\x37\x4b','\x67\x58\x78\x63\x4a\x74\x46\x63\x4e\x43\x6f\x34\x76\x30\x69','\x57\x37\x42\x64\x51\x6d\x6b\x58\x6b\x53\x6b\x72\x57\x51\x6c\x64\x56\x61','\x67\x59\x64\x63\x4c\x43\x6b\x6d\x44\x72\x78\x64\x55\x6d\x6b\x36','\x64\x4a\x30\x76\x57\x4f\x79\x70','\x71\x6d\x6b\x6d\x69\x62\x43\x7a\x79\x67\x46\x64\x51\x57','\x45\x53\x6b\x32\x68\x74\x65\x4c\x75\x32\x56\x64\x4e\x47','\x57\x4f\x5a\x64\x4d\x53\x6f\x65\x43\x38\x6b\x37','\x57\x35\x39\x4e\x57\x51\x42\x64\x4f\x32\x75','\x57\x50\x62\x55\x62\x57\x44\x2f\x73\x68\x75','\x76\x43\x6f\x45\x57\x50\x61\x78\x70\x71','\x75\x6d\x6b\x5a\x70\x4e\x56\x64\x52\x64\x70\x63\x56\x43\x6b\x36','\x6e\x38\x6f\x71\x57\x34\x72\x78\x57\x34\x5a\x64\x49\x30\x30\x78','\x45\x43\x6b\x79\x6e\x38\x6f\x71\x71\x31\x31\x30\x6c\x38\x6b\x63\x61\x38\x6b\x4a','\x78\x61\x56\x64\x4c\x57','\x42\x38\x6f\x71\x57\x4f\x6c\x64\x55\x43\x6b\x37','\x57\x37\x5a\x64\x4c\x38\x6f\x50\x57\x36\x37\x64\x51\x38\x6b\x48\x44\x75\x43\x62\x57\x51\x4a\x64\x52\x48\x30','\x57\x34\x47\x35\x57\x35\x65\x7a\x57\x37\x44\x7a\x62\x53\x6f\x4c\x69\x43\x6b\x68','\x57\x4f\x50\x30\x57\x50\x62\x66\x57\x35\x35\x50\x6f\x43\x6f\x6b','\x57\x52\x4a\x63\x4a\x61\x78\x64\x50\x43\x6f\x44','\x46\x53\x6f\x6a\x57\x51\x57\x75\x70\x57','\x79\x43\x6b\x35\x66\x4a\x71\x49\x77\x4c\x33\x64\x4f\x61','\x78\x67\x50\x6f\x57\x35\x31\x68\x42\x68\x43\x36','\x72\x53\x6b\x36\x79\x65\x33\x64\x4b\x61','\x57\x34\x37\x64\x4d\x43\x6f\x6f\x57\x36\x6d','\x46\x43\x6f\x58\x57\x51\x70\x64\x56\x53\x6b\x7a\x57\x37\x34\x30\x45\x57','\x45\x32\x66\x71\x65\x61\x66\x56\x72\x38\x6f\x58','\x57\x51\x4b\x76\x67\x73\x37\x64\x55\x47','\x57\x37\x4a\x64\x49\x43\x6f\x72\x57\x4f\x6e\x76','\x57\x52\x37\x63\x4c\x4a\x2f\x64\x4a\x61','\x57\x50\x4e\x64\x55\x6d\x6f\x73\x42\x43\x6b\x55','\x71\x43\x6b\x61\x68\x6d\x6f\x51\x57\x51\x78\x63\x4b\x53\x6f\x49\x68\x61','\x57\x37\x2f\x64\x55\x53\x6f\x2b\x57\x37\x61','\x76\x53\x6b\x57\x79\x76\x74\x64\x56\x47','\x57\x37\x78\x64\x4f\x53\x6b\x51\x70\x43\x6b\x39','\x74\x77\x52\x64\x51\x43\x6f\x67\x57\x4f\x4b','\x6b\x53\x6f\x50\x46\x53\x6b\x79\x67\x71','\x57\x36\x6c\x64\x4b\x4e\x6d\x7a\x57\x4f\x75','\x6d\x59\x4a\x64\x4d\x43\x6b\x49','\x64\x38\x6b\x74\x57\x36\x30','\x57\x36\x50\x58\x57\x36\x6d\x30\x78\x47','\x57\x52\x52\x63\x4c\x53\x6b\x30\x57\x52\x4e\x63\x4b\x43\x6f\x2b\x44\x32\x57','\x7a\x32\x50\x4c\x57\x35\x54\x62\x45\x33\x79\x52','\x46\x4e\x70\x64\x48\x53\x6f\x61\x57\x51\x43','\x57\x37\x2f\x64\x52\x43\x6f\x49\x57\x37\x44\x73\x57\x35\x4a\x63\x47\x38\x6b\x69','\x6f\x4a\x78\x64\x4c\x43\x6b\x54\x45\x38\x6f\x52\x57\x51\x68\x63\x4c\x47','\x57\x52\x56\x64\x4c\x4c\x69','\x57\x34\x42\x64\x4c\x6d\x6b\x41\x61\x6d\x6b\x44','\x7a\x4e\x31\x65\x57\x35\x66\x71','\x57\x52\x64\x64\x4e\x65\x71\x6c\x57\x51\x6c\x64\x49\x53\x6b\x4c\x57\x52\x61','\x57\x4f\x6e\x58\x6f\x49\x62\x4c','\x6e\x6d\x6f\x4c\x57\x34\x44\x33\x57\x34\x71','\x6d\x4b\x6c\x63\x47\x32\x58\x42\x6e\x68\x70\x64\x4c\x61','\x57\x52\x68\x64\x4d\x57\x4e\x64\x51\x59\x47','\x64\x53\x6f\x77\x57\x36\x44\x37\x57\x35\x43','\x75\x43\x6b\x6b\x65\x4c\x33\x64\x4f\x57','\x57\x35\x56\x64\x51\x76\x43\x75\x6f\x57','\x57\x51\x46\x64\x55\x61\x4e\x64\x51\x72\x65','\x57\x34\x31\x66\x57\x52\x69\x38\x57\x35\x47','\x6e\x38\x6f\x6b\x46\x6d\x6b\x51\x6d\x47','\x57\x51\x4e\x63\x48\x31\x6c\x63\x4c\x53\x6f\x52\x76\x58\x48\x4d','\x7a\x43\x6b\x2b\x6f\x47\x4b\x58','\x57\x37\x42\x64\x51\x6d\x6b\x4b\x69\x43\x6b\x64\x57\x52\x53','\x57\x51\x75\x39\x63\x61\x2f\x64\x55\x47','\x74\x43\x6b\x76\x42\x33\x6c\x64\x52\x31\x33\x64\x4d\x6d\x6f\x38','\x63\x71\x69\x7a\x57\x4f\x69','\x78\x43\x6b\x45\x66\x38\x6f\x33\x57\x52\x42\x63\x4e\x53\x6f\x2b\x63\x47','\x57\x52\x5a\x64\x52\x43\x6b\x31','\x57\x4f\x58\x57\x57\x4f\x7a\x6e\x57\x34\x72\x52','\x57\x4f\x48\x44\x70\x43\x6f\x2f\x45\x57','\x57\x37\x58\x61\x57\x36\x30\x5a\x76\x61','\x57\x51\x56\x64\x48\x53\x6f\x2b\x45\x75\x6d','\x57\x52\x52\x63\x4b\x73\x5a\x64\x51\x43\x6f\x42','\x74\x38\x6f\x36\x57\x34\x4e\x63\x50\x58\x4b','\x57\x4f\x61\x6f\x64\x73\x46\x64\x53\x71','\x76\x58\x68\x64\x4b\x43\x6f\x66\x57\x36\x53\x63\x71\x31\x34','\x73\x6d\x6b\x35\x61\x58\x4f\x45','\x45\x43\x6b\x35\x69\x61\x38\x4e','\x57\x52\x5a\x63\x48\x73\x74\x64\x47\x61','\x57\x50\x70\x63\x50\x49\x78\x64\x4a\x43\x6f\x79','\x57\x51\x68\x64\x4c\x4c\x4f\x75\x57\x52\x46\x64\x4d\x38\x6b\x31','\x57\x50\x31\x4a\x57\x36\x4f','\x78\x53\x6f\x4f\x57\x52\x4f\x77\x6d\x53\x6b\x44\x57\x52\x78\x63\x49\x57','\x77\x53\x6f\x52\x57\x4f\x64\x64\x56\x43\x6b\x68','\x78\x6d\x6f\x33\x57\x36\x78\x63\x54\x47\x65','\x57\x51\x33\x63\x4b\x49\x78\x64\x54\x6d\x6f\x52','\x6e\x71\x64\x63\x4c\x48\x68\x63\x4a\x61','\x57\x52\x78\x63\x48\x66\x78\x63\x49\x6d\x6f\x48\x75\x71','\x70\x63\x6d\x79\x57\x4f\x69\x47','\x57\x4f\x64\x64\x4f\x38\x6f\x2b\x73\x66\x65','\x57\x37\x48\x78\x57\x35\x4b\x54','\x41\x6d\x6b\x2b\x68\x63\x53\x55','\x44\x53\x6b\x69\x6e\x75\x70\x64\x48\x47\x78\x63\x53\x6d\x6b\x6f','\x6e\x74\x68\x64\x49\x53\x6b\x37\x77\x61','\x78\x4d\x68\x64\x47\x53\x6f\x46\x57\x51\x71','\x42\x43\x6f\x42\x46\x67\x7a\x4e\x57\x34\x56\x64\x4e\x6d\x6f\x6d','\x79\x47\x68\x63\x4b\x6d\x6b\x4b\x76\x65\x71','\x71\x33\x56\x63\x53\x43\x6b\x50','\x57\x52\x43\x32\x62\x74\x75','\x42\x6d\x6b\x39\x75\x47','\x6c\x73\x2f\x64\x4c\x43\x6b\x49','\x57\x4f\x64\x63\x4a\x63\x4a\x64\x54\x38\x6f\x50','\x71\x4c\x37\x63\x49\x53\x6b\x51\x78\x71','\x68\x58\x70\x63\x4c\x49\x52\x63\x4c\x53\x6f\x7a\x76\x30\x47','\x57\x37\x42\x64\x4e\x38\x6b\x2f\x57\x35\x38\x36\x57\x4f\x2f\x64\x4b\x65\x65','\x79\x67\x6e\x7a\x57\x35\x31\x6a\x76\x4e\x43\x54','\x57\x51\x68\x64\x49\x6d\x6f\x4b\x6e\x75\x68\x64\x4a\x38\x6b\x48\x57\x37\x65','\x64\x6d\x6f\x52\x57\x37\x76\x61\x57\x36\x4b','\x57\x51\x46\x64\x4c\x4c\x4b\x6d','\x57\x51\x68\x64\x56\x72\x5a\x64\x53\x61','\x6c\x65\x4a\x64\x53\x4a\x42\x63\x4a\x6d\x6b\x67\x57\x50\x74\x63\x54\x61','\x72\x4c\x6c\x63\x52\x43\x6b\x62\x42\x71','\x7a\x53\x6f\x44\x57\x36\x78\x63\x53\x5a\x75','\x57\x36\x62\x6d\x57\x35\x34\x50\x62\x57','\x6a\x4c\x42\x64\x56\x73\x4e\x63\x4b\x43\x6b\x42\x57\x51\x6c\x63\x4b\x47','\x57\x4f\x62\x30\x57\x37\x4f\x71\x68\x71','\x42\x38\x6f\x67\x79\x76\x31\x4d\x57\x35\x52\x64\x47\x43\x6f\x41','\x57\x52\x53\x6e\x42\x6d\x6b\x42\x57\x34\x6d\x68\x57\x50\x53','\x46\x61\x70\x64\x56\x43\x6b\x6e\x57\x4f\x4b','\x57\x37\x62\x4a\x57\x50\x57','\x57\x51\x46\x63\x4b\x4c\x65','\x57\x51\x33\x63\x4c\x53\x6b\x63\x57\x4f\x2f\x63\x56\x61','\x57\x51\x68\x63\x51\x72\x56\x64\x50\x6d\x6f\x6e','\x57\x34\x74\x64\x48\x33\x4e\x63\x4d\x53\x6b\x43\x71\x65\x62\x42\x75\x53\x6b\x74\x57\x4f\x52\x63\x4a\x57','\x57\x52\x56\x64\x52\x57\x68\x64\x52\x73\x6d','\x46\x58\x4e\x63\x4d\x6d\x6b\x2b\x72\x67\x65\x55\x77\x61','\x72\x58\x4c\x65\x57\x4f\x50\x69','\x57\x36\x6a\x76\x57\x50\x4b\x6d\x57\x35\x34','\x57\x36\x78\x64\x53\x77\x57\x45\x57\x50\x47','\x6e\x43\x6f\x74\x46\x57','\x6e\x38\x6f\x71\x57\x37\x72\x6d\x57\x35\x69','\x6d\x6d\x6f\x62\x44\x6d\x6b\x74\x65\x47','\x57\x4f\x7a\x49\x62\x71\x66\x4a\x77\x32\x2f\x64\x4c\x57','\x57\x34\x6c\x64\x52\x78\x47','\x57\x50\x48\x39\x65\x57\x66\x2f\x42\x33\x2f\x64\x4e\x57','\x42\x63\x58\x76\x57\x51\x39\x4b','\x57\x34\x39\x75\x57\x4f\x71\x65\x57\x35\x4f','\x6e\x63\x5a\x64\x4c\x6d\x6b\x4c\x46\x43\x6f\x44\x57\x50\x64\x63\x4c\x71','\x6b\x4a\x70\x64\x47\x53\x6b\x4c\x79\x43\x6f\x50\x57\x4f\x64\x63\x4e\x71','\x75\x62\x42\x64\x4d\x53\x6f\x75\x57\x36\x53\x65','\x57\x52\x50\x31\x71\x30\x54\x69','\x71\x77\x44\x43\x6e\x48\x6d','\x7a\x33\x58\x43\x57\x37\x4c\x6d','\x41\x53\x6b\x33\x78\x71','\x57\x52\x33\x63\x4c\x49\x6c\x64\x4a\x53\x6b\x6c','\x57\x52\x46\x63\x52\x48\x5a\x64\x51\x43\x6f\x77','\x46\x75\x70\x63\x49\x43\x6b\x6e\x72\x47','\x42\x68\x58\x77\x68\x48\x4b','\x68\x71\x68\x64\x4c\x43\x6f\x6c\x57\x37\x6d\x44\x73\x75\x69','\x6c\x30\x56\x64\x55\x4a\x33\x63\x4b\x43\x6b\x61','\x57\x34\x56\x64\x50\x65\x75\x54\x70\x47','\x67\x59\x5a\x64\x4d\x43\x6b\x6c\x78\x61','\x57\x35\x5a\x64\x49\x6d\x6f\x43\x57\x50\x76\x77\x69\x67\x6c\x64\x48\x61','\x57\x34\x46\x64\x55\x33\x6d\x4d\x57\x4f\x43\x74\x57\x50\x5a\x64\x55\x61','\x57\x51\x4a\x63\x4f\x43\x6f\x67\x57\x34\x39\x33\x57\x36\x64\x63\x51\x43\x6b\x4e','\x71\x61\x4a\x64\x49\x53\x6f\x68\x57\x37\x4f','\x7a\x71\x4a\x64\x52\x53\x6b\x67','\x78\x75\x33\x64\x54\x53\x6b\x71','\x6f\x4d\x33\x64\x52\x49\x5a\x63\x52\x47','\x57\x34\x6a\x33\x57\x36\x6d\x78','\x67\x74\x37\x63\x47\x63\x4e\x63\x4e\x57','\x57\x50\x50\x57\x65\x71\x72\x4b\x75\x4d\x6d','\x57\x51\x46\x64\x47\x43\x6f\x53\x44\x4b\x6c\x64\x4b\x53\x6b\x52','\x74\x73\x58\x42\x57\x4f\x48\x63\x69\x43\x6b\x38','\x79\x49\x68\x64\x47\x6d\x6f\x6f\x57\x51\x70\x64\x56\x53\x6b\x74','\x74\x63\x6c\x64\x54\x53\x6b\x6f\x57\x51\x30','\x57\x37\x33\x64\x53\x6d\x6f\x4c\x57\x36\x66\x56\x57\x34\x38','\x57\x35\x58\x50\x57\x36\x47\x75\x65\x32\x57\x79\x67\x71','\x57\x36\x2f\x64\x4e\x6d\x6f\x4b\x57\x36\x44\x74','\x72\x32\x64\x63\x53\x43\x6b\x4d\x73\x63\x30','\x66\x57\x52\x64\x4c\x43\x6b\x32\x45\x47','\x57\x4f\x66\x5a\x64\x58\x57','\x57\x52\x68\x63\x4e\x71\x6c\x64\x54\x53\x6f\x76','\x76\x71\x42\x64\x54\x38\x6b\x56\x57\x4f\x75','\x79\x58\x64\x63\x47\x53\x6b\x2f\x74\x75\x65\x55','\x65\x4a\x43\x4a\x57\x52\x79\x68','\x63\x66\x37\x64\x48\x72\x4a\x63\x4c\x47','\x75\x53\x6b\x6c\x57\x36\x4e\x63\x4b\x38\x6f\x74\x57\x35\x54\x62\x73\x71','\x57\x51\x70\x64\x4f\x57\x46\x64\x4c\x73\x69','\x57\x52\x37\x64\x51\x43\x6f\x4c\x77\x6d\x6b\x46','\x57\x51\x66\x69\x71\x32\x47','\x57\x4f\x74\x63\x52\x4b\x71\x43\x57\x4f\x30\x51\x57\x4f\x4e\x64\x4a\x57','\x57\x52\x78\x64\x47\x6d\x6f\x74\x76\x43\x6b\x38','\x79\x43\x6f\x52\x77\x68\x44\x52','\x44\x38\x6b\x30\x71\x31\x37\x64\x4e\x57','\x57\x52\x75\x2b\x66\x63\x43','\x77\x64\x64\x64\x49\x53\x6b\x52\x57\x51\x47','\x6d\x75\x56\x64\x54\x74\x37\x63\x4f\x38\x6b\x62\x57\x50\x33\x63\x4a\x47','\x74\x4e\x68\x63\x52\x6d\x6b\x70\x75\x74\x5a\x64\x4a\x38\x6b\x64','\x57\x35\x33\x64\x48\x43\x6b\x4f\x6d\x6d\x6b\x34','\x77\x4a\x37\x64\x4b\x6d\x6f\x51\x57\x34\x4f','\x44\x4e\x39\x73\x57\x35\x39\x77\x42\x61','\x57\x36\x5a\x63\x4e\x53\x6b\x46\x6b\x6d\x6f\x47\x6c\x38\x6f\x55\x57\x34\x69\x66\x6b\x57\x50\x6a','\x74\x67\x2f\x64\x4d\x43\x6f\x2f\x57\x52\x53','\x57\x50\x2f\x63\x4c\x4a\x6c\x64\x4c\x53\x6f\x49','\x57\x37\x31\x2f\x57\x52\x57\x47\x57\x34\x71','\x57\x34\x4f\x2b\x57\x51\x48\x6d\x64\x68\x38\x32\x69\x6d\x6b\x58\x57\x37\x43','\x57\x51\x39\x42\x6d\x43\x6f\x49\x44\x53\x6b\x5a','\x57\x51\x33\x64\x4c\x43\x6f\x34\x44\x76\x4b','\x44\x5a\x5a\x64\x49\x38\x6f\x6f\x57\x34\x53','\x74\x53\x6f\x47\x57\x37\x42\x63\x55\x59\x7a\x38\x6a\x71\x34','\x74\x53\x6b\x7a\x57\x37\x33\x63\x4c\x53\x6f\x75\x57\x35\x6a\x6e','\x41\x71\x6c\x64\x54\x53\x6f\x6a\x57\x4f\x38','\x41\x43\x6b\x35\x75\x4e\x6c\x64\x4e\x67\x2f\x64\x51\x38\x6f\x79','\x57\x37\x35\x66\x57\x52\x38\x65\x57\x36\x6d','\x57\x51\x46\x64\x48\x6d\x6f\x44\x73\x67\x38','\x57\x35\x72\x50\x57\x4f\x46\x64\x55\x64\x64\x63\x50\x6d\x6f\x59\x57\x51\x30','\x57\x52\x64\x64\x51\x30\x71\x6e\x57\x52\x57','\x57\x50\x56\x64\x56\x78\x57\x48\x57\x50\x4b','\x6a\x38\x6f\x77\x57\x36\x76\x6e\x57\x35\x2f\x64\x4a\x30\x79','\x57\x35\x74\x64\x49\x38\x6f\x6f\x57\x52\x44\x71\x6b\x4d\x6c\x64\x4b\x47','\x57\x37\x50\x31\x57\x52\x79\x33\x57\x34\x4e\x64\x56\x57','\x57\x36\x71\x76\x61\x64\x75\x43\x57\x50\x6c\x63\x53\x38\x6b\x66\x62\x75\x44\x41','\x78\x66\x64\x64\x56\x43\x6f\x6e\x57\x4f\x76\x58\x57\x36\x47','\x78\x38\x6b\x4b\x61\x65\x46\x64\x52\x57','\x6e\x75\x56\x63\x4b\x47','\x45\x33\x39\x41\x65\x48\x35\x76\x41\x38\x6f\x49','\x57\x51\x61\x4d\x6d\x71\x46\x64\x4d\x57','\x79\x43\x6f\x66\x42\x64\x48\x47\x57\x35\x46\x64\x4f\x38\x6f\x43','\x63\x61\x42\x63\x4b\x63\x69','\x57\x36\x6c\x63\x48\x58\x6a\x6f\x57\x36\x42\x64\x54\x43\x6b\x4e\x57\x50\x7a\x4f\x72\x53\x6f\x6e','\x57\x36\x74\x64\x4e\x38\x6b\x4b\x57\x34\x71\x54','\x57\x36\x58\x4f\x57\x52\x34\x32\x57\x35\x37\x64\x50\x6d\x6b\x34\x57\x35\x4b','\x6c\x72\x43\x62\x57\x51\x34\x41','\x79\x6d\x6b\x39\x45\x76\x4a\x64\x4d\x78\x56\x64\x4f\x53\x6f\x66','\x72\x6d\x6f\x49\x57\x4f\x4f\x77\x6d\x47','\x57\x52\x4c\x44\x69\x53\x6f\x35\x43\x71','\x6e\x32\x68\x63\x47\x32\x39\x7a','\x41\x38\x6f\x4a\x57\x37\x4a\x63\x51\x74\x4b','\x72\x31\x2f\x64\x54\x53\x6f\x65\x57\x4f\x6e\x51\x57\x37\x4b','\x57\x50\x56\x63\x4b\x72\x78\x64\x47\x43\x6f\x6a\x65\x77\x50\x36','\x46\x53\x6f\x65\x46\x32\x7a\x6b','\x76\x58\x70\x64\x4b\x53\x6f\x69\x57\x52\x79','\x44\x72\x5a\x63\x4c\x38\x6b\x50','\x77\x4c\x5a\x64\x53\x38\x6f\x44\x57\x50\x48\x33\x57\x37\x75\x52','\x57\x4f\x76\x77\x70\x43\x6f\x58\x74\x71','\x57\x52\x2f\x64\x56\x43\x6f\x38\x78\x4b\x34','\x57\x52\x30\x79\x73\x38\x6b\x66\x57\x35\x47\x69\x57\x4f\x43','\x57\x35\x64\x64\x54\x4d\x4b\x47\x57\x52\x4b','\x69\x71\x44\x35\x6c\x48\x6d','\x73\x6d\x6b\x33\x66\x5a\x65\x42','\x57\x52\x72\x78\x71\x77\x66\x76','\x57\x50\x31\x51\x57\x37\x47\x78\x66\x4e\x71\x79','\x73\x38\x6b\x4f\x62\x59\x53','\x44\x75\x7a\x2b\x67\x4a\x30','\x42\x62\x5a\x64\x4e\x43\x6f\x69\x57\x51\x47','\x57\x51\x42\x64\x49\x6d\x6f\x76\x45\x76\x4e\x64\x4d\x43\x6b\x51\x57\x37\x4f'];_0x18af=function(){return _0x58ec49;};return _0x18af();}function _0x2d57(_0x3d1f2e,_0x305f17){_0x3d1f2e=_0x3d1f2e-(-0x1372+-0x1e11+0x31e8);const _0x242f8e=_0x18af();let _0x1dcf7c=_0x242f8e[_0x3d1f2e];if(_0x2d57['\x44\x4a\x53\x48\x58\x72']===undefined){var _0x2145bb=function(_0x18d813){const _0x4700cf='\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 _0x3222cd='',_0x570b50='',_0x579890=_0x3222cd+_0x2145bb,_0x4c264d=(''+function(){return 0x12d9*-0x1+-0x1ec+0x14c5;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x900+-0x4b8*0x8+-0x1cc1*-0x1);for(let _0x2ad035=0x5*0x769+-0xaff+0x3a*-0x73,_0x499c9d,_0xc9dc7e,_0x52bf2f=0xb76*0x2+0x6a6+-0x1*0x1d92;_0xc9dc7e=_0x18d813['\x63\x68\x61\x72\x41\x74'](_0x52bf2f++);~_0xc9dc7e&&(_0x499c9d=_0x2ad035%(-0x1d28+0x8e4+0xa24*0x2)?_0x499c9d*(-0x23d9*0x1+-0x934+0x2d4d)+_0xc9dc7e:_0xc9dc7e,_0x2ad035++%(0x1138+0x24*0x3b+-0x1980))?_0x3222cd+=_0x4c264d||_0x579890['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x52bf2f+(0x253f+-0x2515*0x1+-0x4*0x8))-(-0x1638+0x50b*0x6+0x100*-0x8)!==-0x6*0x5e5+0x180d+0x1*0xb51?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x12b*-0xb+-0x1*-0xe7b+-0x1a55&_0x499c9d>>(-(0xe2f*0x1+0x9*-0x419+0x5ad*0x4)*_0x2ad035&0x696*-0x1+0x3*-0x17d+0x9*0x13b)):_0x2ad035:-0x12e1+0x1*0x5c9+0xd18){_0xc9dc7e=_0x4700cf['\x69\x6e\x64\x65\x78\x4f\x66'](_0xc9dc7e);}for(let _0x186e00=-0x2*0x152+-0x190f+0x1bb3*0x1,_0x570ca6=_0x3222cd['\x6c\x65\x6e\x67\x74\x68'];_0x186e00<_0x570ca6;_0x186e00++){_0x570b50+='\x25'+('\x30\x30'+_0x3222cd['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x186e00)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0xf4+-0x198a+0x5*0x4ee))['\x73\x6c\x69\x63\x65'](-(0x67f*-0x6+0x1069+-0x1*-0x1693));}return decodeURIComponent(_0x570b50);};const _0x13f40e=function(_0x3617d3,_0x3148ab){let _0x3c120e=[],_0x253153=-0x10*-0x1e7+0xb4+-0x7c9*0x4,_0xe9b5d6,_0x579817='';_0x3617d3=_0x2145bb(_0x3617d3);let _0x392912;for(_0x392912=0x1*-0x1cfc+0xebb+-0x1*-0xe41;_0x392912<0x25ea+-0x20*0x11c+-0x16a;_0x392912++){_0x3c120e[_0x392912]=_0x392912;}for(_0x392912=-0x2*-0x81f+0x2044+0x7*-0x6ee;_0x392912<0x429+0x1*-0x1f86+0x1c5d;_0x392912++){_0x253153=(_0x253153+_0x3c120e[_0x392912]+_0x3148ab['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x392912%_0x3148ab['\x6c\x65\x6e\x67\x74\x68']))%(0x1ff2+-0x1efd*-0x1+-0x3def),_0xe9b5d6=_0x3c120e[_0x392912],_0x3c120e[_0x392912]=_0x3c120e[_0x253153],_0x3c120e[_0x253153]=_0xe9b5d6;}_0x392912=-0xbcc+0x2f*-0x25+0x1*0x1297,_0x253153=-0x3d*-0xa3+-0x2*0xd3e+0x1*-0xc5b;for(let _0x1adec8=-0x714*-0x5+-0x26a5+0x341;_0x1adec8<_0x3617d3['\x6c\x65\x6e\x67\x74\x68'];_0x1adec8++){_0x392912=(_0x392912+(-0xf6+0x19cf*0x1+-0x18d8))%(-0x2652+-0x2*0xed2+0x44f6),_0x253153=(_0x253153+_0x3c120e[_0x392912])%(0x90+-0xd*-0xc5+0x991*-0x1),_0xe9b5d6=_0x3c120e[_0x392912],_0x3c120e[_0x392912]=_0x3c120e[_0x253153],_0x3c120e[_0x253153]=_0xe9b5d6,_0x579817+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x3617d3['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1adec8)^_0x3c120e[(_0x3c120e[_0x392912]+_0x3c120e[_0x253153])%(-0x1*-0x2a4+-0xd06+-0x2f*-0x3e)]);}return _0x579817;};_0x2d57['\x66\x46\x6a\x62\x79\x61']=_0x13f40e,_0x2d57['\x41\x44\x4f\x42\x6a\x45']={},_0x2d57['\x44\x4a\x53\x48\x58\x72']=!![];}const _0x4f9ab1=_0x242f8e[0x16*-0x11a+-0x1001*0x1+0x283d],_0x2a51e0=_0x3d1f2e+_0x4f9ab1,_0x52e103=_0x2d57['\x41\x44\x4f\x42\x6a\x45'][_0x2a51e0];if(!_0x52e103){if(_0x2d57['\x4d\x47\x70\x6e\x76\x78']===undefined){const _0xf457c8=function(_0x360249){this['\x4b\x6e\x73\x62\x50\x54']=_0x360249,this['\x69\x78\x59\x6a\x4c\x45']=[-0xb14+0x17d9+0xac*-0x13,0x1*0x23d4+0x1*-0x2455+0x81,-0x5*0x581+0x1643*-0x1+-0x18*-0x213],this['\x50\x4a\x58\x72\x58\x53']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x67\x69\x44\x73\x55\x4f']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x66\x59\x68\x6b\x73\x47']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0xf457c8['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x64\x65\x71\x6a\x58\x57']=function(){const _0x5087cf=new RegExp(this['\x67\x69\x44\x73\x55\x4f']+this['\x66\x59\x68\x6b\x73\x47']),_0x325272=_0x5087cf['\x74\x65\x73\x74'](this['\x50\x4a\x58\x72\x58\x53']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x69\x78\x59\x6a\x4c\x45'][-0x1849+-0x7*-0x405+-0x3d9]:--this['\x69\x78\x59\x6a\x4c\x45'][0x8*-0x187+0x118e+-0x1*0x556];return this['\x6a\x64\x4b\x68\x64\x54'](_0x325272);},_0xf457c8['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x6a\x64\x4b\x68\x64\x54']=function(_0x4f42c3){if(!Boolean(~_0x4f42c3))return _0x4f42c3;return this['\x47\x72\x4f\x58\x4a\x79'](this['\x4b\x6e\x73\x62\x50\x54']);},_0xf457c8['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x47\x72\x4f\x58\x4a\x79']=function(_0x1b6611){for(let _0x372597=0x182*-0xa+-0x22*0xc3+0x28fa,_0x5325f1=this['\x69\x78\x59\x6a\x4c\x45']['\x6c\x65\x6e\x67\x74\x68'];_0x372597<_0x5325f1;_0x372597++){this['\x69\x78\x59\x6a\x4c\x45']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x5325f1=this['\x69\x78\x59\x6a\x4c\x45']['\x6c\x65\x6e\x67\x74\x68'];}return _0x1b6611(this['\x69\x78\x59\x6a\x4c\x45'][0x2063+-0x1beb+-0x478]);},(''+function(){return 0x25e6+-0x4a7*-0x7+-0xa11*0x7;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0xd37+0x115d+-0x1e93)&&new _0xf457c8(_0x2d57)['\x64\x65\x71\x6a\x58\x57'](),_0x2d57['\x4d\x47\x70\x6e\x76\x78']=!![];}_0x1dcf7c=_0x2d57['\x66\x46\x6a\x62\x79\x61'](_0x1dcf7c,_0x305f17),_0x2d57['\x41\x44\x4f\x42\x6a\x45'][_0x2a51e0]=_0x1dcf7c;}else _0x1dcf7c=_0x52e103;return _0x1dcf7c;}function _0x562979(){const _0x12e638=_0x4a9068,_0x39cd1e={'\x72\x78\x64\x6b\x62':function(_0x35044a){return _0x35044a();},'\x76\x67\x6a\x73\x59':_0x12e638(0x12a,'\x7a\x6a\x6c\x6e')};return!_0x56441d&&(_0x56441d=_0x32866d[_0x12e638(0x1a3,'\x79\x44\x43\x61')](_0x39cd1e[_0x12e638(0x1b5,'\x25\x59\x61\x38')](_0x257b77),_0x39cd1e[_0x12e638(0x84,'\x46\x41\x57\x61')])),_0x56441d;}function _0x3635e0(){const _0xf0cda8=_0x4a9068,_0x3f45d0={'\x75\x7a\x74\x51\x53':function(_0x3494d6){return _0x3494d6();},'\x67\x54\x66\x51\x4f':_0xf0cda8(0x104,'\x4c\x67\x23\x4f'),'\x55\x4c\x72\x52\x6b':_0xf0cda8(0x1e7,'\x53\x30\x64\x23')};return!_0x402633&&(_0x3f45d0[_0xf0cda8(0x167,'\x5a\x29\x5a\x64')]===_0xf0cda8(0xb6,'\x66\x24\x39\x79')?_0x402633=_0x32866d[_0xf0cda8(0x168,'\x26\x34\x40\x49')](_0x257b77(),_0xf0cda8(0x169,'\x7a\x44\x4d\x73')):_0x2c30e8=_0x4379dd[_0xf0cda8(0x1e1,'\x67\x25\x73\x6c')](_0x3f45d0[_0xf0cda8(0xba,'\x66\x24\x39\x79')](_0x205a86),_0x3f45d0['\x67\x54\x66\x51\x4f'])),_0x402633;}function _0x1bbb76(){const _0x9c898f=_0x4a9068,_0x22e7a5={'\x44\x58\x68\x6a\x54':function(_0x4b2221,_0x286ac1){return _0x4b2221(_0x286ac1);},'\x42\x41\x6f\x74\x6d':_0x9c898f(0x132,'\x55\x5b\x58\x55')+_0x9c898f(0x1d5,'\x77\x5b\x6e\x6f')};if(process.env.A2A_NODE_SECRET)return process.env.A2A_NODE_SECRET;try{return _0x22e7a5[_0x9c898f(0x209,'\x65\x71\x39\x7a')](require,_0x22e7a5[_0x9c898f(0xeb,'\x79\x44\x43\x61')])[_0x9c898f(0xe5,'\x37\x6e\x56\x24')+_0x9c898f(0x16c,'\x74\x7a\x21\x34')]()||null;}catch(_0x37caaa){return null;}}function _0x496446(_0x54a77a){const _0x8a5f84=_0x4a9068,_0x2fe83b={'\x65\x56\x47\x74\x66':function(_0x56c422){return _0x56c422();},'\x78\x4d\x66\x47\x69':function(_0x2e78b3,_0x943318,_0x36003a){return _0x2e78b3(_0x943318,_0x36003a);},'\x52\x66\x54\x4f\x72':_0x8a5f84(0x136,'\x53\x30\x64\x23')};try{const _0xc96e1e=_0x2fe83b['\x65\x56\x47\x74\x66'](_0x1bbb76);if(!_0xc96e1e)return;const _0x2d0acb=_0x32866d[_0x8a5f84(0x6e,'\x28\x6d\x72\x69')](_0x2fe83b[_0x8a5f84(0x133,'\x32\x63\x37\x77')](_0x562979)),_0x272821={};_0x272821[_0x8a5f84(0xc2,'\x47\x44\x7a\x4a')+'\x65']=!![];if(!_0x2ab13e['\x65\x78\x69\x73\x74\x73\x53\x79'+'\x6e\x63'](_0x2d0acb))_0x2ab13e[_0x8a5f84(0xec,'\x25\x59\x61\x38')+'\x63'](_0x2d0acb,_0x272821);const _0x29fb65=JSON[_0x8a5f84(0x1a9,'\x6d\x6b\x24\x40')+'\x79'](_0x54a77a),_0x453385=_0x2fe83b['\x78\x4d\x66\x47\x69'](_0x363d3c,_0xc96e1e,_0x29fb65),_0x2859d6={};_0x2859d6['\x64\x61\x74\x61']=_0x54a77a,_0x2859d6[_0x8a5f84(0x12d,'\x46\x41\x57\x61')]=_0x453385,_0x2ab13e[_0x8a5f84(0x1aa,'\x25\x67\x6b\x4c')+_0x8a5f84(0x1c0,'\x45\x6a\x6d\x40')](_0x562979(),JSON[_0x8a5f84(0x1cc,'\x26\x34\x40\x49')+'\x79'](_0x2859d6),_0x2fe83b['\x52\x66\x54\x4f\x72']);}catch(_0x2f7f6c){}}function _0x2ba421(){const _0x2df8ee=_0x4a9068,_0x1e92c={'\x52\x6f\x6d\x55\x76':function(_0x3c48cd){return _0x3c48cd();},'\x70\x6b\x4c\x71\x69':_0x2df8ee(0x1df,'\x7a\x6a\x6c\x6e'),'\x43\x64\x79\x58\x6c':function(_0x2fae8e,_0x19eb8f){return _0x2fae8e!==_0x19eb8f;},'\x4e\x70\x55\x79\x45':_0x2df8ee(0x106,'\x30\x23\x6f\x2a'),'\x59\x74\x69\x47\x66':function(_0xf7d522){return _0xf7d522();},'\x44\x55\x65\x79\x72':_0x2df8ee(0x74,'\x5b\x6b\x4b\x7a'),'\x77\x5a\x50\x54\x7a':function(_0x6da679,_0x3dc4c3){return _0x6da679!==_0x3dc4c3;},'\x45\x68\x56\x6e\x67':function(_0x14ba22,_0x443eee){return _0x14ba22===_0x443eee;},'\x58\x63\x78\x4a\x7a':_0x2df8ee(0x177,'\x26\x59\x5d\x62'),'\x76\x67\x4d\x48\x68':'\x51\x68\x6a\x64\x7a'};try{if(!_0x2ab13e[_0x2df8ee(0x1b4,'\x78\x49\x4b\x71')+'\x6e\x63'](_0x562979()))return null;const _0x393744=JSON[_0x2df8ee(0x1c5,'\x32\x63\x37\x77')](_0x2ab13e[_0x2df8ee(0x1fd,'\x78\x49\x4b\x71')+'\x53\x79\x6e\x63'](_0x1e92c[_0x2df8ee(0x1c2,'\x5a\x29\x5a\x64')](_0x562979),_0x1e92c[_0x2df8ee(0xf9,'\x6d\x6b\x24\x40')]));if(!_0x393744||!_0x393744[_0x2df8ee(0x100,'\x57\x61\x44\x7a')]||_0x1e92c[_0x2df8ee(0x15e,'\x30\x23\x6f\x2a')](typeof _0x393744['\x68\x6d\x61\x63'],_0x1e92c['\x4e\x70\x55\x79\x45']))return null;const _0x370385=_0x1e92c[_0x2df8ee(0x1cf,'\x77\x5b\x6e\x6f')](_0x1bbb76);if(!_0x370385)return null;const _0x3420bc=_0x363d3c(_0x370385,JSON[_0x2df8ee(0x1f3,'\x7a\x44\x4d\x73')+'\x79'](_0x393744['\x64\x61\x74\x61'])),_0x213966=Buffer[_0x2df8ee(0x15f,'\x51\x64\x70\x5d')](_0x3420bc,_0x1e92c['\x44\x55\x65\x79\x72']),_0x20ec62=Buffer[_0x2df8ee(0xfe,'\x38\x2a\x76\x5e')](_0x393744[_0x2df8ee(0x1de,'\x53\x30\x64\x23')],_0x1e92c[_0x2df8ee(0x17c,'\x68\x6a\x45\x6f')]);if(_0x1e92c[_0x2df8ee(0x175,'\x28\x6d\x72\x69')](_0x213966[_0x2df8ee(0x1d7,'\x78\x49\x4b\x71')],_0x20ec62[_0x2df8ee(0x139,'\x65\x71\x39\x7a')])||!_0x154787[_0x2df8ee(0xbf,'\x39\x5a\x6c\x66')+'\x66\x65\x45\x71\x75\x61\x6c'](_0x213966,_0x20ec62))return _0x1e92c[_0x2df8ee(0xd7,'\x45\x6a\x6d\x40')](_0x1e92c[_0x2df8ee(0x1ef,'\x53\x30\x64\x23')],_0x1e92c[_0x2df8ee(0x174,'\x79\x70\x30\x41')])?null:null;return _0x393744[_0x2df8ee(0x190,'\x51\x64\x70\x5d')];}catch(_0x5bc74b){return null;}}function _0x460af3(){const _0xc6e227=_0x4a9068,_0x53f82c={'\x59\x79\x6d\x67\x4e':function(_0x43595e){return _0x43595e();},'\x55\x55\x45\x4e\x57':_0xc6e227(0x15a,'\x30\x23\x6f\x2a')};try{const _0x17fb63=_0x32866d[_0xc6e227(0x109,'\x53\x5d\x4f\x5b')](_0x53f82c[_0xc6e227(0x88,'\x2a\x4c\x79\x5a')](_0x3635e0)),_0x51f2e4={};_0x51f2e4['\x72\x65\x63\x75\x72\x73\x69\x76'+'\x65']=!![];if(!_0x2ab13e[_0xc6e227(0x15b,'\x4c\x67\x23\x4f')+'\x6e\x63'](_0x17fb63))_0x2ab13e[_0xc6e227(0xcc,'\x23\x24\x62\x41')+'\x63'](_0x17fb63,_0x51f2e4);_0x2ab13e['\x77\x72\x69\x74\x65\x46\x69\x6c'+_0xc6e227(0x14c,'\x53\x5d\x4f\x5b')](_0x53f82c['\x59\x79\x6d\x67\x4e'](_0x3635e0),String(Date[_0xc6e227(0x13e,'\x41\x50\x4f\x5e')]()),_0x53f82c[_0xc6e227(0x1fc,'\x53\x30\x64\x23')]);}catch(_0x5145fa){}}function _0x1fe858(){const _0x264202=_0x4a9068,_0x55c41c={'\x6c\x41\x71\x44\x77':function(_0x4db992,_0xa1aafe){return _0x4db992!==_0xa1aafe;},'\x6d\x68\x6e\x45\x73':_0x264202(0xa0,'\x47\x44\x7a\x4a'),'\x42\x6e\x65\x70\x75':'\x53\x59\x4c\x59\x7a','\x66\x58\x6f\x63\x77':function(_0x57d91e){return _0x57d91e();},'\x4f\x54\x62\x63\x57':function(_0x4a2681,_0x252d84,_0x3d26cd){return _0x4a2681(_0x252d84,_0x3d26cd);}};try{if(_0x55c41c[_0x264202(0xb3,'\x55\x5b\x58\x55')](_0x55c41c[_0x264202(0xa3,'\x41\x57\x65\x69')],_0x55c41c[_0x264202(0xc5,'\x53\x30\x64\x23')])){if(!_0x2ab13e[_0x264202(0x15b,'\x4c\x67\x23\x4f')+'\x6e\x63'](_0x55c41c[_0x264202(0x19a,'\x66\x24\x39\x79')](_0x3635e0)))return-0x261*0x1+0x1ae*0x9+0x43f*-0x3;return _0x55c41c[_0x264202(0x1ad,'\x28\x6d\x72\x69')](parseInt,_0x2ab13e[_0x264202(0x125,'\x70\x4d\x7a\x33')+_0x264202(0x183,'\x66\x24\x39\x79')](_0x55c41c[_0x264202(0x191,'\x49\x69\x47\x62')](_0x3635e0),_0x264202(0x90,'\x37\x6e\x56\x24')),-0x26f0+0x1c00+0x5*0x232)||-0x10*0xbd+-0x3*-0x9fd+-0x1227;}else{const _0x19007a={};return _0x19007a['\x6f\x6b']=![],_0x19007a['\x65\x72\x72\x6f\x72']=_0x47dc1b['\x6d\x65\x73\x73\x61\x67\x65'],_0x19007a[_0x264202(0x82,'\x7a\x6a\x6c\x6e')]=!![],_0x19007a;}}catch(_0xb13171){return-0x1943+0x1*0x923+-0x56*-0x30;}}var _0x4045b0=0x22bc+0x4*-0x96c+0x2fe,_0x1449cd=(-0x25f3+-0x2*-0xf25+0x7b0)*(-0xc5*0x13+-0x13b9+-0x1*-0x2270)*(0x1032+-0x8ec*0x1+0x1*-0x70a)*(0x2ea*-0x1+0x2*-0x197+0xf*0x6c)*(0x20fc+0x1d31+0x3a45*-0x1),_0x5edaa9=(-0x25ef+0x214c+-0xad*-0x7)*(0x1d77+-0x1a7d+0x2be*-0x1)*(-0x259d+-0x2*0xdb1+0x413b*0x1)*(0x1*-0x19f+0x23f1+-0x1e6a);function _0x2b16ec(){const _0xdbc800=_0x4a9068,_0x16ebbd={'\x6a\x4f\x69\x67\x6b':function(_0x1baec8,_0x5f82fe){return _0x1baec8(_0x5f82fe);},'\x4f\x47\x76\x47\x69':_0xdbc800(0xa8,'\x73\x55\x4e\x31')+_0xdbc800(0x1c4,'\x28\x6d\x72\x69'),'\x76\x66\x79\x76\x4c':_0xdbc800(0x111,'\x55\x5b\x58\x55'),'\x54\x72\x6d\x69\x78':_0xdbc800(0x1d6,'\x65\x71\x39\x7a'),'\x69\x5a\x73\x4e\x55':_0xdbc800(0x112,'\x7a\x44\x4d\x73'),'\x58\x6c\x6f\x5a\x44':function(_0x3db54b,_0x4a2485){return _0x3db54b!==_0x4a2485;},'\x4b\x72\x70\x6f\x63':_0xdbc800(0x1d8,'\x55\x5b\x58\x55'),'\x54\x46\x62\x67\x58':function(_0x5deaae){return _0x5deaae();},'\x73\x47\x66\x63\x4d':_0xdbc800(0x83,'\x49\x69\x47\x62')+_0xdbc800(0xdf,'\x48\x34\x28\x71'),'\x63\x59\x74\x6c\x51':function(_0x29510f){return _0x29510f();},'\x6f\x52\x72\x46\x64':function(_0xfb6c1f,_0x3c605e){return _0xfb6c1f>_0x3c605e;},'\x64\x56\x49\x57\x51':function(_0x81575,_0x4df3be){return _0x81575<_0x4df3be;},'\x47\x61\x41\x44\x46':function(_0x92fc87,_0x596bf8){return _0x92fc87-_0x596bf8;},'\x48\x4b\x64\x63\x44':function(_0x5950e1,_0x451edd){return _0x5950e1!==_0x451edd;},'\x57\x42\x49\x68\x71':_0xdbc800(0x1ff,'\x41\x57\x65\x69'),'\x4f\x4e\x76\x58\x74':_0xdbc800(0xfc,'\x7a\x6a\x6c\x6e'),'\x75\x50\x6c\x6f\x4c':_0xdbc800(0x17e,'\x40\x33\x70\x77')+_0xdbc800(0x123,'\x77\x5b\x6e\x6f')+_0xdbc800(0x12c,'\x23\x24\x62\x41'),'\x61\x78\x61\x54\x76':_0xdbc800(0x6f,'\x30\x23\x6f\x2a')+_0xdbc800(0x161,'\x57\x61\x44\x7a')+_0xdbc800(0xa2,'\x5a\x29\x5a\x64'),'\x51\x6b\x4e\x4e\x79':function(_0x3270cb,_0x132a96){return _0x3270cb+_0x132a96;},'\x6d\x46\x4a\x6d\x69':function(_0x2226ad,_0x456aea){return _0x2226ad===_0x456aea;},'\x6b\x76\x45\x73\x74':_0xdbc800(0x11c,'\x70\x4d\x7a\x33'),'\x47\x61\x42\x70\x75':function(_0x1bcb8f){return _0x1bcb8f();},'\x74\x62\x68\x49\x79':function(_0x122a03,_0x295d52,_0x22fa08){return _0x122a03(_0x295d52,_0x22fa08);},'\x42\x69\x69\x4d\x79':function(_0x31a27f){return _0x31a27f();},'\x76\x6b\x59\x55\x65':_0xdbc800(0x6b,'\x38\x2a\x76\x5e')+_0xdbc800(0x162,'\x47\x44\x7a\x4a'),'\x76\x58\x52\x77\x4e':'\x6f\x66\x66\x6c\x69\x6e\x65\x5f'+'\x6c\x6f\x63\x6b\x5f\x66\x61\x69'+_0xdbc800(0xda,'\x67\x28\x25\x61')};try{if(_0x16ebbd[_0xdbc800(0xd6,'\x78\x49\x4b\x71')](_0x16ebbd['\x6b\x76\x45\x73\x74'],_0xdbc800(0x1ee,'\x49\x69\x47\x62')))return null;else{var _0x100389=_0x32866d[_0xdbc800(0xe4,'\x68\x6a\x45\x6f')](_0x16ebbd[_0xdbc800(0x14a,'\x38\x2a\x76\x5e')](_0x562979));const _0x479e7b={};_0x479e7b['\x72\x65\x63\x75\x72\x73\x69\x76'+'\x65']=!![];if(!_0x2ab13e[_0xdbc800(0x7b,'\x68\x6a\x45\x6f')+'\x6e\x63'](_0x100389))_0x2ab13e[_0xdbc800(0x1cb,'\x26\x34\x40\x49')+'\x63'](_0x100389,_0x479e7b);}}catch(_0x3b03d2){}try{return _0x16ebbd[_0xdbc800(0x181,'\x55\x52\x34\x28')](_0x279df5,_0x16ebbd[_0xdbc800(0x16a,'\x67\x25\x73\x6c')](_0x562979),function(){const _0x451df9=_0xdbc800;if(_0x16ebbd[_0x451df9(0x197,'\x49\x69\x47\x62')](_0x451df9(0x188,'\x67\x25\x73\x6c'),_0x16ebbd[_0x451df9(0xfa,'\x78\x49\x4b\x71')]))return eoBdOf['\x6a\x4f\x69\x67\x6b'](_0x9364aa,eoBdOf[_0x451df9(0xf2,'\x39\x5a\x6c\x66')])['\x67\x65\x74\x48\x75\x62\x4e\x6f'+'\x64\x65\x53\x65\x63\x72\x65\x74']()||null;else{var _0x16245e=_0x16ebbd[_0x451df9(0x146,'\x66\x24\x39\x79')](_0x2ba421);const _0x519f4c={};_0x519f4c['\x6f\x6b']=![],_0x519f4c[_0x451df9(0x208,'\x73\x55\x4e\x31')]=_0x16ebbd[_0x451df9(0xde,'\x74\x7a\x21\x34')],_0x519f4c[_0x451df9(0x8f,'\x25\x59\x61\x38')]=!![];if(!_0x16245e)return _0x519f4c;var _0x2abd4f=_0x16245e[_0x451df9(0x68,'\x77\x61\x4f\x44')+_0x451df9(0x194,'\x53\x5d\x4f\x5b')+_0x451df9(0x1a4,'\x55\x52\x34\x28')]||_0x4045b0,_0x5b2c68=_0x16245e[_0x451df9(0xfb,'\x79\x44\x43\x61')+'\x74']||-0xb31+0x1a*0xe0+-0xb*0x10d,_0x497f0f=_0x16245e[_0x451df9(0xe9,'\x57\x61\x44\x7a')+'\x74']||0x1f8f+0x2286+-0x4215,_0x3e1bad=Date[_0x451df9(0x1d1,'\x77\x61\x4f\x44')](),_0x212714=_0x16ebbd[_0x451df9(0x13f,'\x25\x59\x61\x38')](_0x1fe858);if(_0x16ebbd[_0x451df9(0x102,'\x66\x24\x39\x79')](_0x212714,0x25*0x3d+0x2150+-0x2a21)&&_0x16ebbd[_0x451df9(0x203,'\x7a\x6a\x6c\x6e')](_0x3e1bad,_0x16ebbd[_0x451df9(0xcb,'\x26\x34\x40\x49')](_0x212714,_0x5edaa9))){if(_0x16ebbd['\x48\x4b\x64\x63\x44'](_0x16ebbd[_0x451df9(0x119,'\x73\x55\x4e\x31')],_0x16ebbd[_0x451df9(0x113,'\x6e\x6c\x51\x78')])){const _0x2e6b06={};return _0x2e6b06['\x6f\x6b']=![],_0x2e6b06[_0x451df9(0x1d2,'\x51\x64\x70\x5d')]=_0x451df9(0x75,'\x77\x5b\x6e\x6f')+'\x69\x66\x74\x5f\x64\x65\x74\x65'+'\x63\x74\x65\x64',_0x2e6b06[_0x451df9(0xe6,'\x77\x61\x4f\x44')]=!![],_0x2e6b06;}else try{return _0x27a68a['\x6a\x6f\x69\x6e'](eoBdOf[_0x451df9(0xb8,'\x39\x5a\x6c\x66')](_0x2a3db0,eoBdOf[_0x451df9(0xab,'\x67\x25\x73\x6c')])[_0x451df9(0x11b,'\x42\x78\x55\x4b')+_0x451df9(0x193,'\x25\x59\x61\x38')](),eoBdOf[_0x451df9(0x11e,'\x49\x69\x47\x62')],_0x451df9(0x112,'\x7a\x44\x4d\x73'));}catch(_0x536ebb){return _0x466d0d[_0x451df9(0xe0,'\x68\x6a\x45\x6f')](_0x38fa72[_0x451df9(0xc3,'\x67\x28\x25\x61')](),eoBdOf[_0x451df9(0x187,'\x2a\x4c\x79\x5a')],eoBdOf[_0x451df9(0x200,'\x65\x71\x39\x7a')]);}}if(_0x16ebbd[_0x451df9(0x11a,'\x68\x6a\x45\x6f')](_0x5b2c68,0x13*0x63+-0xa*-0x228+0x3*-0x9a3)&&_0x16ebbd[_0x451df9(0x1ce,'\x70\x36\x4a\x62')](_0x3e1bad,_0x5b2c68)){const _0x27787c={};return _0x27787c['\x6f\x6b']=![],_0x27787c[_0x451df9(0x128,'\x5d\x43\x71\x48')]=_0x16ebbd[_0x451df9(0xf8,'\x26\x59\x5d\x62')],_0x27787c[_0x451df9(0x1e5,'\x45\x6a\x6d\x40')]=!![],_0x27787c;}if(_0x16ebbd['\x6f\x52\x72\x46\x64'](_0x212714,0x4a1+0x3*-0x917+-0xc*-0x1e3)&&_0x16ebbd['\x6f\x52\x72\x46\x64'](_0x16ebbd['\x47\x61\x41\x44\x46'](_0x3e1bad,_0x212714),_0x1449cd)){const _0x56136e={};return _0x56136e['\x6f\x6b']=![],_0x56136e[_0x451df9(0x128,'\x5d\x43\x71\x48')]=_0x451df9(0x9c,'\x41\x50\x4f\x5e')+_0x451df9(0x18d,'\x65\x71\x39\x7a')+_0x451df9(0x158,'\x74\x7a\x21\x34')+'\x64',_0x56136e[_0x451df9(0x66,'\x7a\x44\x4d\x73')]=!![],_0x56136e;}if(_0x497f0f>=_0x2abd4f){const _0x2c93ce={};return _0x2c93ce['\x6f\x6b']=![],_0x2c93ce[_0x451df9(0x7a,'\x25\x67\x6b\x4c')]=_0x16ebbd[_0x451df9(0x73,'\x37\x6e\x56\x24')],_0x2c93ce[_0x451df9(0x1e4,'\x73\x55\x4e\x31')]=!![],_0x2c93ce;}return _0x16245e[_0x451df9(0x130,'\x48\x34\x28\x71')+'\x74']=_0x16ebbd[_0x451df9(0xb7,'\x28\x6d\x72\x69')](_0x497f0f,-0x17da+0x1*-0x1715+0x2ef0),_0x16ebbd[_0x451df9(0x80,'\x5b\x6b\x4b\x7a')](_0x496446,_0x16245e),{'\x6f\x6b':!![],'\x6f\x66\x66\x6c\x69\x6e\x65':!![],'\x72\x65\x6d\x61\x69\x6e\x69\x6e\x67':_0x16ebbd[_0x451df9(0x97,'\x77\x61\x4f\x44')](_0x2abd4f,_0x16245e[_0x451df9(0x16b,'\x23\x24\x62\x41')+'\x74'])};}});}catch(_0x1af4f9){var _0x3bf29e=_0x1af4f9&&_0x1af4f9['\x6d\x65\x73\x73\x61\x67\x65']||String(_0x1af4f9);if(_0x16ebbd[_0xdbc800(0xc0,'\x78\x49\x4b\x71')](_0x3bf29e[_0xdbc800(0xd4,'\x73\x55\x4e\x31')](_0x16ebbd[_0xdbc800(0xc1,'\x51\x64\x70\x5d')]),-(-0x84a+0xd*-0xb5+0x117c))){const _0x68d4a6={};return _0x68d4a6['\x6f\x6b']=![],_0x68d4a6[_0xdbc800(0x101,'\x7a\x6a\x6c\x6e')]=_0xdbc800(0x10c,'\x5a\x29\x5a\x64')+_0xdbc800(0x138,'\x46\x41\x57\x61')+_0xdbc800(0x1c7,'\x5a\x29\x5a\x64'),_0x68d4a6[_0xdbc800(0x116,'\x25\x67\x6b\x4c')]=!![],_0x68d4a6;}return{'\x6f\x6b':![],'\x65\x72\x72\x6f\x72':_0x16ebbd[_0xdbc800(0x1a0,'\x7a\x6a\x6c\x6e')],'\x6f\x66\x66\x6c\x69\x6e\x65':!![],'\x64\x65\x74\x61\x69\x6c':_0x3bf29e['\x73\x6c\x69\x63\x65'](-0xf10+-0x1454+0x5*0x714,0x6*0xa0+-0x13*-0x4c+0x44e*-0x2)};}}function _0x5d5e47(){const _0x1e2bb1=_0x4a9068,_0x1c9894={'\x6f\x63\x57\x52\x44':function(_0x1ad367){return _0x1ad367();},'\x6c\x75\x47\x6c\x6a':function(_0xd665da,_0x1acdbb){return _0xd665da(_0x1acdbb);},'\x4d\x69\x70\x58\x69':_0x1e2bb1(0x10b,'\x28\x6d\x72\x69'),'\x4d\x76\x4d\x66\x6b':function(_0x356e28,_0x4d50b8){return _0x356e28===_0x4d50b8;},'\x4b\x44\x65\x67\x50':_0x1e2bb1(0x1ae,'\x6e\x6c\x51\x78'),'\x62\x57\x58\x71\x49':function(_0x15a0c1,_0xa86feb){return _0x15a0c1!==_0xa86feb;},'\x78\x4a\x79\x68\x79':_0x1e2bb1(0x135,'\x40\x33\x70\x77'),'\x48\x44\x74\x52\x7a':_0x1e2bb1(0x8d,'\x48\x34\x28\x71'),'\x6e\x59\x55\x66\x79':function(_0x256852,_0x48099b){return _0x256852===_0x48099b;},'\x64\x69\x54\x73\x78':_0x1e2bb1(0x19d,'\x48\x34\x28\x71'),'\x68\x41\x43\x4b\x73':function(_0x3486c3,_0x5dadbf){return _0x3486c3===_0x5dadbf;}};if(_0x1c9894[_0x1e2bb1(0x121,'\x77\x61\x4f\x44')](process.env.NODE_ENV,_0x1c9894[_0x1e2bb1(0x13d,'\x6e\x6c\x51\x78')])){if(_0x1c9894[_0x1e2bb1(0xc7,'\x23\x24\x62\x41')](_0x1c9894[_0x1e2bb1(0x15d,'\x55\x52\x34\x28')],_0x1c9894[_0x1e2bb1(0x19b,'\x73\x55\x4e\x31')])){var _0x5a3b17=(process.env.EVOLVER_SOLIDIFY_VERIFY||'')[_0x1e2bb1(0xb9,'\x57\x61\x44\x7a')+_0x1e2bb1(0x1ba,'\x40\x33\x70\x77')]();if(_0x1c9894[_0x1e2bb1(0xf7,'\x55\x52\x34\x28')](_0x5a3b17,_0x1c9894[_0x1e2bb1(0x115,'\x40\x33\x70\x77')])||_0x5a3b17==='\x30'||_0x1c9894['\x68\x41\x43\x4b\x73'](_0x5a3b17,_0x1e2bb1(0x122,'\x67\x25\x73\x6c')))return![];}else try{const _0x203e9c=_0xf457c8[_0x1e2bb1(0x144,'\x41\x57\x65\x69')](ifdjgp[_0x1e2bb1(0x6a,'\x73\x55\x4e\x31')](_0x360249)),_0x38c132={};_0x38c132[_0x1e2bb1(0x87,'\x7a\x6a\x6c\x6e')+'\x65']=!![];if(!_0x5087cf[_0x1e2bb1(0x16e,'\x47\x44\x7a\x4a')+'\x6e\x63'](_0x203e9c))_0x325272[_0x1e2bb1(0x1c8,'\x79\x70\x30\x41')+'\x63'](_0x203e9c,_0x38c132);_0x4f42c3[_0x1e2bb1(0x143,'\x6d\x6b\x24\x40')+_0x1e2bb1(0x165,'\x7a\x6a\x6c\x6e')](ifdjgp[_0x1e2bb1(0xc4,'\x70\x4d\x7a\x33')](_0x1b6611),ifdjgp['\x6c\x75\x47\x6c\x6a'](_0x372597,_0x5325f1[_0x1e2bb1(0x126,'\x7a\x6a\x6c\x6e')]()),ifdjgp[_0x1e2bb1(0x178,'\x28\x6d\x72\x69')]);}catch(_0x263730){}}var _0x5038de=process.env.A2A_HUB_URL||'';return!!_0x5038de;}const _0x1fadd5={};_0x1fadd5['\x72\x65\x71\x75\x65\x73\x74\x53'+_0x4a9068(0x176,'\x5b\x6b\x4b\x7a')+_0x4a9068(0xca,'\x32\x63\x37\x77')]=_0x54761c,_0x1fadd5[_0x4a9068(0x98,'\x67\x25\x73\x6c')+_0x4a9068(0x65,'\x5d\x43\x71\x48')+_0x4a9068(0xd0,'\x48\x34\x28\x71')]=_0x5d5e47,_0x1fadd5['\x63\x6f\x6e\x73\x75\x6d\x65\x4f'+_0x4a9068(0xe2,'\x67\x28\x25\x61')+'\x72\x6d\x69\x74']=_0x2b16ec,_0x1fadd5['\x67\x65\x74\x4c\x61\x73\x74\x4f'+_0x4a9068(0x1bf,'\x67\x28\x25\x61')+_0x4a9068(0xd9,'\x74\x7a\x21\x34')]=_0x1fe858,module[_0x4a9068(0x14b,'\x79\x70\x30\x41')]=_0x1fadd5;
|
|
1
|
+
const crypto = require('crypto');
|
|
2
|
+
const fs = require('fs');
|
|
3
|
+
const path = require('path');
|
|
4
|
+
const { hubFetch } = require('./hubFetch');
|
|
5
|
+
const { withFileLock } = require('./assetStore');
|
|
6
|
+
|
|
7
|
+
function hmacSha256(key, data) {
|
|
8
|
+
return crypto.createHmac('sha256', key).update(data).digest('hex');
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
function hashCompact(input) {
|
|
12
|
+
return crypto.createHash('sha256').update(String(input || '')).digest('hex').slice(0, 16);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
function buildRequestPayload({ geneId, signals, mutation }) {
|
|
16
|
+
let nodeSecret = null;
|
|
17
|
+
try {
|
|
18
|
+
nodeSecret = require('./a2aProtocol').getHubNodeSecret();
|
|
19
|
+
} catch (e) {}
|
|
20
|
+
if (!nodeSecret) return null;
|
|
21
|
+
|
|
22
|
+
let nodeId = null;
|
|
23
|
+
try {
|
|
24
|
+
nodeId = require('./a2aProtocol').getNodeId();
|
|
25
|
+
} catch (e) {}
|
|
26
|
+
if (!nodeId) return null;
|
|
27
|
+
|
|
28
|
+
const secretHash = crypto.createHash('sha256').update(nodeSecret).digest('hex');
|
|
29
|
+
|
|
30
|
+
const ts = Date.now();
|
|
31
|
+
const signalsHash = hashCompact(JSON.stringify(Array.isArray(signals) ? signals.slice(0, 8) : []));
|
|
32
|
+
const mutationHash = hashCompact(JSON.stringify(mutation || {}));
|
|
33
|
+
|
|
34
|
+
const challengeData = [nodeId, geneId || '', signalsHash, mutationHash, String(ts)].join('|');
|
|
35
|
+
const clientSignature = hmacSha256(secretHash, challengeData);
|
|
36
|
+
|
|
37
|
+
return {
|
|
38
|
+
nodeId,
|
|
39
|
+
nodeSecret,
|
|
40
|
+
body: {
|
|
41
|
+
sender_id: nodeId,
|
|
42
|
+
gene_id: geneId || '',
|
|
43
|
+
signals_hash: signalsHash,
|
|
44
|
+
mutation_hash: mutationHash,
|
|
45
|
+
ts: ts,
|
|
46
|
+
client_signature: clientSignature,
|
|
47
|
+
},
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
function requestSolidifyPermit({ geneId, signals, mutation }) {
|
|
53
|
+
const hubUrl = (process.env.A2A_HUB_URL || '').replace(/\/+$/, '');
|
|
54
|
+
if (!hubUrl) return Promise.resolve({ ok: false, error: 'no_hub_url', offline: true });
|
|
55
|
+
|
|
56
|
+
const req = buildRequestPayload({ geneId, signals, mutation });
|
|
57
|
+
if (!req) return Promise.resolve({ ok: false, error: 'no_credentials', offline: true });
|
|
58
|
+
|
|
59
|
+
const endpoint = hubUrl + '/a2a/verify-solidify';
|
|
60
|
+
const timeoutMs = require('../config').HTTP_TRANSPORT_TIMEOUT_MS || 10000;
|
|
61
|
+
|
|
62
|
+
const headers = {
|
|
63
|
+
'Content-Type': 'application/json',
|
|
64
|
+
'Authorization': 'Bearer ' + req.nodeSecret,
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
return hubFetch(endpoint, {
|
|
68
|
+
method: 'POST',
|
|
69
|
+
headers: headers,
|
|
70
|
+
body: JSON.stringify(req.body),
|
|
71
|
+
signal: AbortSignal.timeout(timeoutMs),
|
|
72
|
+
})
|
|
73
|
+
.then(function (res) {
|
|
74
|
+
// Any non-5xx response proves the hub's application layer answered, so
|
|
75
|
+
// the daemon is not actually offline — refresh lastOnlineVerify even on
|
|
76
|
+
// 4xx and on 2xx envelopes that report ok=false. Previously this only
|
|
77
|
+
// fired in the {ok:true} success branch, so a long streak of envelope
|
|
78
|
+
// errors (quota_exceeded, rate_limited, validation) or 4xx responses
|
|
79
|
+
// (bad auth, forbidden) would let the offline-duration counter run
|
|
80
|
+
// past MAX_OFFLINE_DURATION_MS (7d) and falsely block consumeOfflinePermit
|
|
81
|
+
// with offline_duration_exceeded. 5xx is left out — it can be a CDN /
|
|
82
|
+
// load balancer up while the hub itself is down, so the conservative
|
|
83
|
+
// "treat as offline" semantic is preserved there.
|
|
84
|
+
if (res.status < 500) {
|
|
85
|
+
recordLastOnlineVerify();
|
|
86
|
+
}
|
|
87
|
+
if (!res.ok) {
|
|
88
|
+
return res.text().then(function (t) {
|
|
89
|
+
// 5xx = hub/infra down → treat as offline so consumeOfflinePermit fires.
|
|
90
|
+
// 4xx = explicit rejection (bad auth, quota exceeded) → not offline.
|
|
91
|
+
const offline = res.status >= 500;
|
|
92
|
+
return { ok: false, error: 'HTTP ' + res.status + ': ' + t.slice(0, 200), offline };
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
return res.json().then(function (result) {
|
|
96
|
+
if (result && result.ok && result.offline_token) {
|
|
97
|
+
cacheOfflineToken(result.offline_token);
|
|
98
|
+
}
|
|
99
|
+
return result;
|
|
100
|
+
});
|
|
101
|
+
})
|
|
102
|
+
.catch(function (err) {
|
|
103
|
+
return { ok: false, error: err.message, offline: true };
|
|
104
|
+
});
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// --- Offline token management ---
|
|
108
|
+
|
|
109
|
+
var _OFFLINE_TOKEN_FILE = null;
|
|
110
|
+
var _LAST_VERIFY_FILE = null;
|
|
111
|
+
|
|
112
|
+
function getMemDir() {
|
|
113
|
+
try {
|
|
114
|
+
return require('./paths').getMemoryDir();
|
|
115
|
+
} catch (e) {
|
|
116
|
+
try {
|
|
117
|
+
return path.join(require('./paths').getRepoRoot(), '.evolver', 'memory');
|
|
118
|
+
} catch (e2) {
|
|
119
|
+
return path.join(process.cwd(), '.evolver', 'memory');
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
function offlineTokenPath() {
|
|
125
|
+
if (!_OFFLINE_TOKEN_FILE) {
|
|
126
|
+
_OFFLINE_TOKEN_FILE = path.join(getMemDir(), '.ot');
|
|
127
|
+
}
|
|
128
|
+
return _OFFLINE_TOKEN_FILE;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
function lastVerifyPath() {
|
|
132
|
+
if (!_LAST_VERIFY_FILE) {
|
|
133
|
+
_LAST_VERIFY_FILE = path.join(getMemDir(), '.lv');
|
|
134
|
+
}
|
|
135
|
+
return _LAST_VERIFY_FILE;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// Offline token integrity (C2): the .ot file is an anti-tamper quota counter,
|
|
139
|
+
// not a credential — encryption is the wrong primitive. Sign the token with
|
|
140
|
+
// HMAC-SHA256 keyed off nodeSecret instead. A cloned install carries a stale
|
|
141
|
+
// secret-signed token; HMAC verification fails on the first offline read and
|
|
142
|
+
// the token is rejected. Online verification rotates the secret, so legit
|
|
143
|
+
// re-issuance is automatic.
|
|
144
|
+
function getNodeSecret() {
|
|
145
|
+
// Env var first — matches a2aProtocol.getHubNodeSecret() priority and lets
|
|
146
|
+
// the HMAC path work in environments where a2aProtocol can't be required.
|
|
147
|
+
if (process.env.A2A_NODE_SECRET) return process.env.A2A_NODE_SECRET;
|
|
148
|
+
try { return require('./a2aProtocol').getHubNodeSecret() || null; } catch (e) { return null; }
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
function cacheOfflineToken(token) {
|
|
152
|
+
try {
|
|
153
|
+
const nodeSecret = getNodeSecret();
|
|
154
|
+
if (!nodeSecret) return;
|
|
155
|
+
const dir = path.dirname(offlineTokenPath());
|
|
156
|
+
if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
|
|
157
|
+
// HMAC stability: token field names must NOT be integer-like strings.
|
|
158
|
+
// V8's JSON.stringify sorts integer-keyed properties numerically while
|
|
159
|
+
// preserving insertion order for non-integer keys; an all-digit field
|
|
160
|
+
// would re-order between cache and load and break verification.
|
|
161
|
+
const data = JSON.stringify(token);
|
|
162
|
+
const hmac = hmacSha256(nodeSecret, data);
|
|
163
|
+
fs.writeFileSync(offlineTokenPath(), JSON.stringify({ data: token, hmac }), 'utf8');
|
|
164
|
+
} catch (e) {}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
function loadOfflineToken() {
|
|
168
|
+
try {
|
|
169
|
+
if (!fs.existsSync(offlineTokenPath())) return null;
|
|
170
|
+
const stored = JSON.parse(fs.readFileSync(offlineTokenPath(), 'utf8'));
|
|
171
|
+
if (!stored || !stored.data || typeof stored.hmac !== 'string') return null;
|
|
172
|
+
const nodeSecret = getNodeSecret();
|
|
173
|
+
if (!nodeSecret) return null;
|
|
174
|
+
const expected = hmacSha256(nodeSecret, JSON.stringify(stored.data));
|
|
175
|
+
// Hex-encode the HMAC bytes for comparison: 32-byte buffers, not 64-byte
|
|
176
|
+
// ASCII representations. Length pre-check guards timingSafeEqual which
|
|
177
|
+
// throws on mismatched lengths.
|
|
178
|
+
const expBuf = Buffer.from(expected, 'hex');
|
|
179
|
+
const gotBuf = Buffer.from(stored.hmac, 'hex');
|
|
180
|
+
if (expBuf.length !== gotBuf.length || !crypto.timingSafeEqual(expBuf, gotBuf)) {
|
|
181
|
+
return null;
|
|
182
|
+
}
|
|
183
|
+
return stored.data;
|
|
184
|
+
} catch (e) {
|
|
185
|
+
return null;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
function recordLastOnlineVerify() {
|
|
190
|
+
try {
|
|
191
|
+
const dir = path.dirname(lastVerifyPath());
|
|
192
|
+
if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
|
|
193
|
+
fs.writeFileSync(lastVerifyPath(), String(Date.now()), 'utf8');
|
|
194
|
+
} catch (e) {}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
function getLastOnlineVerifyTs() {
|
|
198
|
+
try {
|
|
199
|
+
if (!fs.existsSync(lastVerifyPath())) return 0;
|
|
200
|
+
return parseInt(fs.readFileSync(lastVerifyPath(), 'utf8'), 10) || 0;
|
|
201
|
+
} catch (e) {
|
|
202
|
+
return 0;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
var MAX_OFFLINE_SOLIDIFIES = 10;
|
|
207
|
+
var MAX_OFFLINE_DURATION_MS = 7 * 24 * 60 * 60 * 1000;
|
|
208
|
+
var MAX_CLOCK_DRIFT_MS = 24 * 60 * 60 * 1000;
|
|
209
|
+
|
|
210
|
+
// The offline-permit pipeline is `loadOfflineToken → check cap →
|
|
211
|
+
// cacheOfflineToken` (read → check → write). Within a single Node process
|
|
212
|
+
// the chain is synchronous so no intra-process race, but two cooperating
|
|
213
|
+
// processes (daemon + CLI `evolver solidify`) hitting the path at the same
|
|
214
|
+
// moment could both read the same `usedCount`, both pass the cap check,
|
|
215
|
+
// and both increment-and-write — the local counter then trailed reality
|
|
216
|
+
// and the offline quota could be exceeded by N for N concurrent callers.
|
|
217
|
+
// Hub-side enforcement catches this on the next online verify, but the
|
|
218
|
+
// audit posture is wrong locally.
|
|
219
|
+
//
|
|
220
|
+
// Reuse `withFileLock` from assetStore.js — same `src/gep/` directory,
|
|
221
|
+
// already battle-tested for multi-process read-modify-write of memory-dir
|
|
222
|
+
// files, and uses PID-liveness (`process.kill(pid, 0)`) for stale
|
|
223
|
+
// detection plus an Atomics-or-busy-wait fallback for the retry sleep.
|
|
224
|
+
// withFileLock throws on acquire timeout; we map that to a specific
|
|
225
|
+
// `offline_permit_busy` result so callers (daemon heartbeat / CLI
|
|
226
|
+
// solidify) can distinguish "contended" from "permit denied" and retry
|
|
227
|
+
// next cycle.
|
|
228
|
+
function consumeOfflinePermit() {
|
|
229
|
+
// Ensure the memory directory exists before withFileLock tries to
|
|
230
|
+
// create `<memDir>/.ot.lock`. Pre-refactor, the function always
|
|
231
|
+
// returned a structured envelope (loadOfflineToken / cacheOfflineToken
|
|
232
|
+
// both swallow errors internally); after the refactor a fresh install
|
|
233
|
+
// without the memory dir would throw ENOENT from _acquireLock and
|
|
234
|
+
// bubble past the Lock-timeout catch below, breaking the never-throw
|
|
235
|
+
// contract (Bugbot PR #157 R2 Low).
|
|
236
|
+
try {
|
|
237
|
+
var dir = path.dirname(offlineTokenPath());
|
|
238
|
+
if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
|
|
239
|
+
} catch (_) { /* fall through — caught by the wrapper below */ }
|
|
240
|
+
|
|
241
|
+
try {
|
|
242
|
+
return withFileLock(offlineTokenPath(), function () {
|
|
243
|
+
var token = loadOfflineToken();
|
|
244
|
+
if (!token) return { ok: false, error: 'no_offline_token', offline: true };
|
|
245
|
+
|
|
246
|
+
var maxSolidifies = token.maxOfflineSolidifies || MAX_OFFLINE_SOLIDIFIES;
|
|
247
|
+
var expiresAt = token.expiresAt || 0;
|
|
248
|
+
var usedCount = token.usedCount || 0;
|
|
249
|
+
var now = Date.now();
|
|
250
|
+
|
|
251
|
+
var lastOnline = getLastOnlineVerifyTs();
|
|
252
|
+
if (lastOnline > 0 && now < lastOnline - MAX_CLOCK_DRIFT_MS) {
|
|
253
|
+
return { ok: false, error: 'clock_drift_detected', offline: true };
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
if (expiresAt > 0 && now > expiresAt) {
|
|
257
|
+
return { ok: false, error: 'offline_token_expired', offline: true };
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
if (lastOnline > 0 && (now - lastOnline) > MAX_OFFLINE_DURATION_MS) {
|
|
261
|
+
return { ok: false, error: 'offline_duration_exceeded', offline: true };
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
if (usedCount >= maxSolidifies) {
|
|
265
|
+
return { ok: false, error: 'offline_quota_exhausted', offline: true };
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
token.usedCount = usedCount + 1;
|
|
269
|
+
cacheOfflineToken(token);
|
|
270
|
+
return { ok: true, offline: true, remaining: maxSolidifies - token.usedCount };
|
|
271
|
+
});
|
|
272
|
+
} catch (e) {
|
|
273
|
+
// Preserve the "always returns a structured envelope" contract that
|
|
274
|
+
// the pre-refactor consumeOfflinePermit had (loadOfflineToken and
|
|
275
|
+
// cacheOfflineToken both swallowed FS errors internally).
|
|
276
|
+
//
|
|
277
|
+
// - "Lock timeout" → another process holds the lock past the
|
|
278
|
+
// acquire deadline. Surface as busy so the caller's heartbeat
|
|
279
|
+
// loop can retry on the next cycle.
|
|
280
|
+
// - Any other error (ENOENT/EACCES on the lock file, FS misconfig)
|
|
281
|
+
// → report as offline_lock_failed with the original message
|
|
282
|
+
// truncated. The daemon's solidify.js call site treats !ok as
|
|
283
|
+
// a recoverable hint, not a crash trigger.
|
|
284
|
+
var msg = (e && e.message) || String(e);
|
|
285
|
+
if (msg.indexOf('Lock timeout') !== -1) {
|
|
286
|
+
return { ok: false, error: 'offline_permit_busy', offline: true };
|
|
287
|
+
}
|
|
288
|
+
return { ok: false, error: 'offline_lock_failed', offline: true, detail: msg.slice(0, 200) };
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
function isSolidifyVerifyEnabled() {
|
|
293
|
+
if (process.env.NODE_ENV === 'test') {
|
|
294
|
+
var v = (process.env.EVOLVER_SOLIDIFY_VERIFY || '').toLowerCase();
|
|
295
|
+
if (v === 'false' || v === '0' || v === 'off') return false;
|
|
296
|
+
}
|
|
297
|
+
var hubUrl = process.env.A2A_HUB_URL || '';
|
|
298
|
+
return !!hubUrl;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
module.exports = {
|
|
302
|
+
requestSolidifyPermit,
|
|
303
|
+
isSolidifyVerifyEnabled,
|
|
304
|
+
consumeOfflinePermit,
|
|
305
|
+
getLastOnlineVerifyTs,
|
|
306
|
+
};
|
|
@@ -1 +1,89 @@
|
|
|
1
|
-
const _0x59b268=_0x2d9b;(function(_0x2815cf,_0x13ad9a){const _0xbf96d=_0x2d9b,_0x1f968c=_0x2815cf();while(!![]){try{const _0x179945=parseInt(_0xbf96d(0xd0,'\x36\x34\x54\x51'))/(0x1e4a+0x25e7+0x2*-0x2218)+parseInt(_0xbf96d(0x81,'\x35\x44\x5d\x37'))/(-0xa1+-0x15b5+0x82*0x2c)+-parseInt(_0xbf96d(0x92,'\x4e\x4f\x28\x6a'))/(-0x1*0x7ae+-0x360+-0xb11*-0x1)*(parseInt(_0xbf96d(0xe4,'\x52\x44\x5d\x48'))/(-0x2138+0x1*-0x1979+0x3ab5))+-parseInt(_0xbf96d(0xee,'\x23\x61\x28\x69'))/(0xc6d*-0x3+-0x139*-0xf+0x12f5)*(-parseInt(_0xbf96d(0xcf,'\x5e\x67\x76\x4d'))/(-0x2*-0x4d0+-0x2fe*0x7+0xb58))+parseInt(_0xbf96d(0xb2,'\x45\x42\x70\x68'))/(-0x639+0x2b*-0x2f+0xe25)*(-parseInt(_0xbf96d(0xb0,'\x36\x34\x54\x51'))/(0x213a+0x204e+-0x4180))+-parseInt(_0xbf96d(0x76,'\x63\x51\x67\x53'))/(0x19a9*0x1+-0xc8+-0x18d8)*(parseInt(_0xbf96d(0xc0,'\x77\x57\x23\x28'))/(0x11b2+-0x1e85+-0x1*-0xcdd))+parseInt(_0xbf96d(0x8b,'\x4a\x28\x78\x35'))/(0x38*0xa9+0x1d1b*0x1+-0x841*0x8);if(_0x179945===_0x13ad9a)break;else _0x1f968c['push'](_0x1f968c['shift']());}catch(_0x4fb834){_0x1f968c['push'](_0x1f968c['shift']());}}}(_0x104e,0x21072*-0x2+-0x3e3d5+0x295*0x568));const _0x50018c=(function(){let _0x21722a=!![];return function(_0xe6d8c8,_0x59ab3a){const _0x4886d1=_0x21722a?function(){const _0x4acbfd=_0x2d9b;if(_0x59ab3a){const _0x39de2c=_0x59ab3a[_0x4acbfd(0xae,'\x5e\x30\x40\x74')](_0xe6d8c8,arguments);return _0x59ab3a=null,_0x39de2c;}}:function(){};return _0x21722a=![],_0x4886d1;};}()),_0x111907=_0x50018c(this,function(){const _0x5d82ed=_0x2d9b,_0x30b224={};_0x30b224[_0x5d82ed(0x74,'\x5e\x6e\x35\x38')]=_0x5d82ed(0x84,'\x38\x37\x78\x6f')+'\x2b\x29\x2b\x24';const _0x308a5d=_0x30b224;return _0x111907[_0x5d82ed(0xd3,'\x73\x6b\x67\x6f')]()[_0x5d82ed(0xbf,'\x4e\x4f\x28\x6a')](_0x308a5d[_0x5d82ed(0xc8,'\x56\x44\x30\x51')])[_0x5d82ed(0xfa,'\x47\x49\x59\x6a')]()[_0x5d82ed(0xa4,'\x5b\x52\x26\x6d')+_0x5d82ed(0xda,'\x52\x36\x50\x38')](_0x111907)[_0x5d82ed(0xbf,'\x4e\x4f\x28\x6a')](_0x5d82ed(0xfc,'\x36\x33\x23\x5a')+_0x5d82ed(0x7a,'\x68\x72\x42\x75'));});_0x111907();function _0x42a658(_0x352a49){const _0x7a2410=_0x2d9b,_0x1285a8={'\x76\x42\x75\x54\x62':function(_0x2ff3af,_0x3f92ae,_0x484e0b){return _0x2ff3af(_0x3f92ae,_0x484e0b);},'\x63\x46\x67\x74\x58':_0x7a2410(0xe6,'\x55\x4b\x33\x46')+'\x70\x65\x72\x66\x6f\x72\x6d\x61'+_0x7a2410(0xd1,'\x64\x72\x70\x38'),'\x68\x43\x6e\x54\x51':function(_0x21d445,_0x39c699){return _0x21d445===_0x39c699;},'\x59\x72\x75\x6a\x79':_0x7a2410(0x77,'\x5b\x52\x26\x6d'),'\x41\x66\x64\x4c\x67':function(_0x3ae624,_0x36f983){return _0x3ae624(_0x36f983);}};return Array[_0x7a2410(0xc6,'\x52\x44\x5d\x48')](new Set((Array['\x69\x73\x41\x72\x72\x61\x79'](_0x352a49)?_0x352a49:[])[_0x7a2410(0xc9,'\x69\x56\x24\x6e')](Boolean)[_0x7a2410(0xaf,'\x47\x49\x59\x6a')](function(_0xf4f8f9){const _0x30814a=_0x7a2410;if(_0x1285a8[_0x30814a(0x7e,'\x47\x49\x59\x6a')](_0x1285a8[_0x30814a(0xd5,'\x52\x44\x5d\x48')],_0x1285a8['\x59\x72\x75\x6a\x79']))return _0x1285a8[_0x30814a(0xbd,'\x67\x4e\x55\x75')](String,_0xf4f8f9)[_0x30814a(0xd9,'\x38\x37\x78\x6f')]();else _0x1285a8['\x76\x42\x75\x54\x62'](_0x2a2b03,_0x20f800,_0x1285a8[_0x30814a(0x98,'\x64\x72\x70\x38')]),_0x1285a8[_0x30814a(0x90,'\x25\x31\x67\x43')](_0x454988,_0x5648c4,_0x30814a(0xed,'\x34\x42\x48\x6b')+_0x30814a(0xf3,'\x50\x65\x43\x72'));})[_0x7a2410(0xc4,'\x46\x67\x64\x47')](Boolean)));}function _0x1f2f50(_0x3703c3,_0x28bd3c){const _0x9005bc=_0x2d9b;if(!_0x28bd3c)return;_0x3703c3[_0x9005bc(0x9d,'\x5b\x52\x26\x6d')](String(_0x28bd3c)['\x74\x72\x69\x6d']());}function _0x2d9b(_0xa2a2ed,_0x7b621c){_0xa2a2ed=_0xa2a2ed-(-0xd40+-0x8bf*-0x1+0x4f2);const _0x3a5148=_0x104e();let _0x3c6587=_0x3a5148[_0xa2a2ed];if(_0x2d9b['\x6a\x6f\x53\x4e\x65\x59']===undefined){var _0x32e7ec=function(_0x1e0a96){const _0x426321='\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 _0x33a307='',_0x5c20fa='',_0x21ef9b=_0x33a307+_0x32e7ec,_0x1eb70e=(''+function(){return-0x1b5*0x1+-0x1ed*0xd+0xe*0x1e9;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0xe37+0x2062+-0x122a);for(let _0x2456d8=0x1*-0xed1+0x4*0x347+0x1b5,_0x5e3039,_0x185caf,_0x2f6cc1=0x8a*0x17+-0x128a+0x624;_0x185caf=_0x1e0a96['\x63\x68\x61\x72\x41\x74'](_0x2f6cc1++);~_0x185caf&&(_0x5e3039=_0x2456d8%(0x1fa7+0x1*0x127d+0x1910*-0x2)?_0x5e3039*(0x24dd+-0x1f01*0x1+-0x4*0x167)+_0x185caf:_0x185caf,_0x2456d8++%(-0xa41+0x14c+-0x1*-0x8f9))?_0x33a307+=_0x1eb70e||_0x21ef9b['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2f6cc1+(0x1f33+-0x2619*-0x1+0x4542*-0x1))-(0x26fa+0x1*-0x1b23+-0xbcd)!==0xdd4+-0x7*0x252+0x26a?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x1e32+0x206*0x13+-0x43a5&_0x5e3039>>(-(-0x27*-0x65+-0x28a*-0xd+-0x3063)*_0x2456d8&0x6d3*0x1+-0x1*-0x358+-0xa25)):_0x2456d8:0x11b2+-0x653*-0x5+0x3151*-0x1){_0x185caf=_0x426321['\x69\x6e\x64\x65\x78\x4f\x66'](_0x185caf);}for(let _0x278ca4=0x5*-0x17d+-0x166f+0x1de0,_0x3335df=_0x33a307['\x6c\x65\x6e\x67\x74\x68'];_0x278ca4<_0x3335df;_0x278ca4++){_0x5c20fa+='\x25'+('\x30\x30'+_0x33a307['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x278ca4)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x7ba+-0x2*0x971+0x1aac))['\x73\x6c\x69\x63\x65'](-(0x3*0x552+0x171f+0x1*-0x2713));}return decodeURIComponent(_0x5c20fa);};const _0x4df538=function(_0x253ebe,_0x53bb53){let _0x2a74a5=[],_0x1fae12=0x988+-0x9e3*0x1+0x5b,_0x37c8cf,_0x4c00c0='';_0x253ebe=_0x32e7ec(_0x253ebe);let _0x394e92;for(_0x394e92=0x1*-0x131b+-0x4*0x472+0x13*0x1f1;_0x394e92<0x5*0x519+-0x26ca+-0x7*-0x20b;_0x394e92++){_0x2a74a5[_0x394e92]=_0x394e92;}for(_0x394e92=-0x1c9*-0x9+-0x1550+0x11*0x4f;_0x394e92<-0x229a+0xf71+0x1429;_0x394e92++){_0x1fae12=(_0x1fae12+_0x2a74a5[_0x394e92]+_0x53bb53['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x394e92%_0x53bb53['\x6c\x65\x6e\x67\x74\x68']))%(-0x10*-0x3d+-0x1a8b+-0x9*-0x2a3),_0x37c8cf=_0x2a74a5[_0x394e92],_0x2a74a5[_0x394e92]=_0x2a74a5[_0x1fae12],_0x2a74a5[_0x1fae12]=_0x37c8cf;}_0x394e92=-0x2*-0xb25+-0x43*0x1+-0x1607,_0x1fae12=0x3*0x6e8+0x119f+-0x1*0x2657;for(let _0xbf2e6a=0x221c*0x1+0x3d5*-0x9+0x61;_0xbf2e6a<_0x253ebe['\x6c\x65\x6e\x67\x74\x68'];_0xbf2e6a++){_0x394e92=(_0x394e92+(0x190f+-0xb1+-0x185d))%(0xad*0x35+0x13c1+-0x3692),_0x1fae12=(_0x1fae12+_0x2a74a5[_0x394e92])%(0xe*-0x289+0x7*-0x107+0x2baf),_0x37c8cf=_0x2a74a5[_0x394e92],_0x2a74a5[_0x394e92]=_0x2a74a5[_0x1fae12],_0x2a74a5[_0x1fae12]=_0x37c8cf,_0x4c00c0+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x253ebe['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xbf2e6a)^_0x2a74a5[(_0x2a74a5[_0x394e92]+_0x2a74a5[_0x1fae12])%(-0x179c+-0x2e9+0x1*0x1b85)]);}return _0x4c00c0;};_0x2d9b['\x52\x76\x59\x65\x76\x64']=_0x4df538,_0x2d9b['\x72\x72\x7a\x4f\x53\x58']={},_0x2d9b['\x6a\x6f\x53\x4e\x65\x59']=!![];}const _0x26feeb=_0x3a5148[0x1*-0x2b3+-0x1957+0x1c0a],_0x1dde6f=_0xa2a2ed+_0x26feeb,_0x5b84e7=_0x2d9b['\x72\x72\x7a\x4f\x53\x58'][_0x1dde6f];if(!_0x5b84e7){if(_0x2d9b['\x76\x4e\x4e\x69\x5a\x4f']===undefined){const _0x232b74=function(_0x59efc7){this['\x77\x64\x53\x76\x57\x61']=_0x59efc7,this['\x72\x45\x7a\x70\x55\x75']=[-0x2674+-0x19f0+0x4065,0x1*-0x1c33+0x92*0xd+0x11*0x139,0x1b95*0x1+0x4*-0x6af+0x1f*-0x7],this['\x78\x78\x4e\x6c\x4e\x4c']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x49\x6e\x67\x6f\x6a\x4d']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x4c\x53\x63\x6a\x76\x6a']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x232b74['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4c\x6b\x54\x71\x7a\x41']=function(){const _0x30e2bc=new RegExp(this['\x49\x6e\x67\x6f\x6a\x4d']+this['\x4c\x53\x63\x6a\x76\x6a']),_0x253c11=_0x30e2bc['\x74\x65\x73\x74'](this['\x78\x78\x4e\x6c\x4e\x4c']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x72\x45\x7a\x70\x55\x75'][-0x39d*0x3+0x3*-0xb76+0x7*0x676]:--this['\x72\x45\x7a\x70\x55\x75'][-0x1e8*0xa+0x8a5*-0x2+0x245a];return this['\x6a\x61\x72\x61\x42\x79'](_0x253c11);},_0x232b74['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x6a\x61\x72\x61\x42\x79']=function(_0x231166){if(!Boolean(~_0x231166))return _0x231166;return this['\x73\x72\x64\x63\x4a\x59'](this['\x77\x64\x53\x76\x57\x61']);},_0x232b74['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x73\x72\x64\x63\x4a\x59']=function(_0x4c8df4){for(let _0x3abd79=0x1399+-0x45*0x6e+-0x53*-0x1f,_0x258956=this['\x72\x45\x7a\x70\x55\x75']['\x6c\x65\x6e\x67\x74\x68'];_0x3abd79<_0x258956;_0x3abd79++){this['\x72\x45\x7a\x70\x55\x75']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x258956=this['\x72\x45\x7a\x70\x55\x75']['\x6c\x65\x6e\x67\x74\x68'];}return _0x4c8df4(this['\x72\x45\x7a\x70\x55\x75'][0xd*0x1a6+-0x19f4+0x486]);},(''+function(){return-0xb3f+-0x8b*0x25+0x1f56;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0xcc*-0x1f+0x1282+0x633)&&new _0x232b74(_0x2d9b)['\x4c\x6b\x54\x71\x7a\x41'](),_0x2d9b['\x76\x4e\x4e\x69\x5a\x4f']=!![];}_0x3c6587=_0x2d9b['\x52\x76\x59\x65\x76\x64'](_0x3c6587,_0x7b621c),_0x2d9b['\x72\x72\x7a\x4f\x53\x58'][_0x1dde6f]=_0x3c6587;}else _0x3c6587=_0x5b84e7;return _0x3c6587;}function _0x104e(){const _0x3790ed=['\x57\x35\x56\x64\x49\x43\x6b\x4a\x6d\x38\x6f\x6c','\x57\x36\x6a\x34\x6b\x53\x6f\x31\x6a\x57','\x64\x73\x61\x4c\x46\x43\x6b\x46\x57\x37\x54\x77\x66\x71','\x6e\x59\x52\x63\x4f\x78\x4e\x63\x4f\x59\x78\x63\x4b\x72\x71','\x6e\x53\x6b\x59\x62\x75\x4e\x63\x48\x53\x6b\x32\x67\x6d\x6f\x79','\x57\x35\x56\x64\x53\x43\x6b\x38\x64\x38\x6b\x57','\x57\x35\x6c\x63\x4c\x43\x6b\x77\x57\x4f\x79','\x57\x52\x48\x51\x64\x78\x4e\x63\x47\x57','\x57\x4f\x4a\x63\x54\x74\x72\x53\x57\x34\x4f','\x57\x51\x78\x64\x55\x6d\x6f\x37\x7a\x72\x38','\x72\x4d\x35\x50\x42\x78\x6e\x35\x78\x67\x38','\x42\x48\x7a\x71\x57\x50\x56\x63\x4d\x57','\x57\x34\x47\x48\x57\x37\x31\x4f\x57\x50\x69','\x73\x66\x42\x63\x4b\x43\x6f\x2b\x43\x47','\x72\x6d\x6b\x72\x57\x51\x30\x43\x57\x36\x43','\x76\x38\x6f\x4a\x41\x43\x6b\x42\x57\x34\x33\x64\x50\x53\x6f\x6f\x57\x52\x52\x64\x48\x53\x6b\x2f\x57\x50\x6a\x34','\x57\x4f\x74\x63\x54\x33\x5a\x63\x51\x65\x6d','\x65\x5a\x57\x4c\x41\x43\x6b\x73\x57\x36\x50\x45','\x57\x36\x5a\x63\x4a\x4d\x65\x36','\x43\x76\x31\x47\x57\x4f\x53','\x77\x77\x66\x31','\x57\x35\x42\x63\x49\x38\x6b\x66\x57\x51\x37\x63\x4d\x65\x75','\x76\x38\x6b\x6d\x68\x43\x6f\x2f\x43\x47\x46\x64\x50\x47\x57','\x77\x77\x58\x42\x57\x52\x42\x64\x4e\x61','\x70\x59\x4a\x63\x4f\x65\x46\x63\x54\x47','\x42\x78\x64\x63\x50\x38\x6f\x35\x7a\x6d\x6b\x52\x57\x50\x37\x63\x4b\x71','\x57\x50\x42\x64\x56\x38\x6b\x77\x57\x4f\x7a\x45\x74\x6d\x6b\x6f\x57\x37\x52\x64\x4d\x57','\x57\x51\x5a\x64\x4a\x38\x6f\x42\x74\x4d\x48\x59\x57\x51\x65\x56','\x7a\x6d\x6b\x58\x70\x53\x6f\x4a\x77\x61','\x57\x35\x62\x4c\x79\x4b\x48\x68\x57\x34\x4a\x64\x51\x49\x38','\x6e\x53\x6b\x31\x67\x75\x6d','\x57\x34\x64\x64\x4e\x43\x6b\x71\x57\x35\x76\x38','\x57\x37\x4a\x63\x4f\x53\x6f\x6e\x57\x50\x48\x32','\x57\x50\x4f\x76\x57\x35\x74\x63\x54\x53\x6b\x44','\x57\x51\x64\x63\x54\x78\x30\x7a\x71\x4a\x54\x36','\x73\x43\x6b\x50\x57\x50\x53\x47\x57\x34\x6c\x63\x4c\x53\x6f\x49\x79\x47','\x64\x63\x4a\x63\x4a\x71\x76\x59\x57\x51\x6d\x51\x57\x52\x37\x64\x4d\x48\x4b\x35\x6b\x76\x38\x5a','\x68\x6d\x6b\x54\x57\x50\x4e\x64\x4d\x4d\x47','\x62\x62\x79\x6e\x57\x35\x70\x63\x56\x38\x6f\x4f\x57\x37\x42\x64\x4f\x58\x65\x34\x67\x61','\x61\x5a\x72\x6d\x41\x31\x31\x6f\x42\x4c\x47','\x46\x32\x4e\x63\x4b\x4a\x71','\x57\x52\x4a\x63\x48\x47\x62\x43\x57\x34\x43','\x68\x47\x43\x6b\x57\x37\x4a\x63\x4b\x61','\x7a\x30\x5a\x64\x49\x53\x6b\x58\x73\x58\x78\x63\x4e\x49\x57','\x68\x63\x65\x56','\x57\x34\x52\x63\x4e\x6d\x6b\x65\x57\x51\x56\x63\x47\x65\x48\x34\x57\x36\x47','\x46\x38\x6b\x70\x57\x50\x75\x76\x57\x35\x79','\x57\x37\x6c\x64\x51\x38\x6b\x58','\x78\x38\x6b\x50\x6b\x43\x6f\x38\x41\x38\x6b\x31\x57\x36\x69','\x57\x37\x74\x64\x56\x43\x6b\x6e\x69\x38\x6b\x63','\x43\x57\x6e\x6e\x57\x50\x78\x63\x4d\x53\x6f\x35\x79\x61','\x57\x51\x6d\x71\x43\x53\x6b\x39','\x57\x37\x39\x6c\x6f\x43\x6f\x33\x69\x57','\x57\x37\x52\x64\x54\x38\x6b\x65\x61\x6d\x6b\x39','\x57\x52\x46\x63\x4c\x4d\x42\x63\x51\x71','\x67\x63\x69\x52\x44\x53\x6b\x62','\x57\x35\x4c\x2f\x45\x71\x6c\x63\x50\x38\x6f\x76\x57\x50\x57\x33\x46\x6d\x6f\x45\x57\x52\x58\x79\x57\x4f\x57\x5a','\x57\x4f\x6a\x4a\x66\x43\x6f\x4b\x57\x50\x4b','\x57\x37\x64\x63\x50\x53\x6f\x6f\x75\x77\x6c\x63\x4f\x67\x6c\x64\x52\x47','\x42\x78\x37\x63\x56\x43\x6f\x2f\x79\x53\x6b\x57','\x57\x34\x56\x63\x50\x58\x62\x2f\x6c\x76\x57\x50','\x57\x51\x74\x63\x4a\x68\x56\x63\x53\x4c\x74\x64\x52\x77\x52\x63\x51\x61','\x70\x59\x42\x64\x4d\x6d\x6b\x32\x73\x71','\x57\x34\x52\x63\x48\x65\x61\x62\x44\x61','\x57\x34\x44\x77\x57\x51\x78\x64\x47\x6d\x6b\x6f\x57\x4f\x7a\x53','\x57\x4f\x71\x35\x44\x6d\x6b\x30\x44\x6d\x6f\x39\x6a\x6d\x6b\x49','\x7a\x4e\x74\x63\x4f\x6d\x6f\x4f\x43\x43\x6b\x4c\x57\x50\x4a\x63\x47\x71','\x62\x53\x6b\x58\x70\x38\x6f\x70\x57\x51\x56\x63\x54\x6d\x6f\x5a\x57\x4f\x53','\x57\x34\x46\x63\x47\x53\x6b\x61\x57\x50\x6d\x44\x44\x75\x78\x64\x55\x61','\x57\x52\x37\x64\x49\x6d\x6f\x74\x71\x4a\x6e\x57\x57\x51\x4f','\x57\x52\x4e\x64\x4d\x6d\x6f\x6e\x77\x57','\x79\x47\x44\x75\x57\x50\x74\x63\x49\x47','\x78\x65\x35\x66','\x72\x72\x53\x2f\x75\x43\x6b\x64\x57\x36\x58\x7a','\x57\x4f\x6c\x64\x4f\x47\x78\x64\x56\x43\x6b\x6c','\x57\x34\x74\x63\x53\x30\x64\x63\x49\x38\x6f\x59\x63\x77\x47\x30\x57\x35\x4a\x63\x52\x77\x4a\x63\x4c\x43\x6b\x67','\x57\x36\x74\x64\x4b\x62\x66\x67\x42\x78\x2f\x63\x54\x76\x66\x5a','\x57\x34\x70\x64\x4d\x53\x6b\x50\x57\x35\x39\x37','\x41\x43\x6b\x73\x57\x52\x78\x63\x49\x66\x34','\x57\x51\x65\x33\x72\x53\x6b\x53\x61\x47','\x6e\x38\x6b\x53\x57\x4f\x2f\x64\x50\x4e\x79','\x57\x50\x30\x74\x64\x65\x46\x64\x4f\x71','\x57\x36\x2f\x63\x53\x57\x31\x66\x68\x61','\x6b\x5a\x33\x63\x4f\x67\x52\x63\x55\x63\x34','\x57\x52\x52\x63\x4b\x31\x7a\x5a\x76\x47','\x62\x6d\x6f\x76\x78\x32\x78\x63\x4e\x6d\x6b\x66\x57\x36\x71\x36','\x62\x4a\x37\x63\x51\x4b\x68\x63\x51\x57','\x6d\x62\x42\x64\x54\x6d\x6b\x53\x42\x58\x4a\x64\x54\x58\x75','\x69\x48\x64\x64\x4f\x43\x6b\x33\x79\x58\x34','\x57\x36\x66\x58\x65\x53\x6b\x42\x57\x35\x4a\x63\x52\x6d\x6b\x65\x57\x52\x38','\x76\x53\x6b\x43\x68\x6d\x6f\x37\x43\x48\x46\x64\x54\x47','\x57\x51\x74\x63\x4c\x53\x6b\x78\x70\x38\x6b\x72','\x67\x43\x6b\x4b\x70\x38\x6f\x47\x57\x4f\x75','\x46\x63\x33\x63\x4e\x6d\x6f\x54\x77\x71\x53','\x57\x34\x57\x66\x57\x34\x72\x32','\x57\x52\x4b\x76\x70\x43\x6f\x4d','\x57\x52\x61\x77\x57\x50\x76\x49\x6c\x47','\x57\x36\x64\x63\x54\x38\x6b\x4e\x57\x50\x62\x77','\x62\x76\x2f\x63\x49\x67\x62\x57\x57\x50\x65','\x57\x50\x4f\x49\x6f\x4c\x4a\x63\x52\x6d\x6b\x72\x57\x34\x35\x49','\x63\x6d\x6f\x67\x78\x57','\x74\x4d\x5a\x64\x4b\x76\x30\x33','\x45\x32\x33\x64\x56\x66\x61\x53','\x57\x4f\x71\x5a\x73\x38\x6b\x56','\x57\x4f\x2f\x64\x4c\x53\x6f\x7a\x57\x37\x4e\x63\x51\x4e\x4c\x70\x57\x52\x68\x63\x4b\x53\x6f\x67','\x74\x67\x7a\x34\x6b\x43\x6f\x6b\x57\x51\x54\x62\x41\x5a\x66\x58\x73\x67\x34','\x57\x37\x4e\x64\x4d\x6d\x6b\x70','\x57\x51\x56\x64\x4b\x38\x6f\x71\x41\x64\x4f','\x57\x52\x76\x61\x6e\x78\x46\x63\x56\x73\x47\x2f\x57\x52\x65','\x70\x48\x4f\x63\x42\x6d\x6b\x7a','\x57\x4f\x79\x76\x6a\x38\x6f\x48\x74\x47','\x57\x37\x4e\x63\x4a\x32\x30','\x63\x74\x43\x35\x41\x57','\x6e\x59\x52\x63\x4f\x77\x2f\x63\x4f\x63\x70\x63\x4b\x30\x69','\x57\x4f\x57\x2f\x69\x57\x53','\x65\x43\x6f\x7a\x77\x71','\x57\x37\x70\x64\x55\x43\x6b\x64\x6b\x53\x6f\x72\x77\x49\x38','\x57\x4f\x30\x46\x67\x53\x6f\x44\x43\x71','\x57\x52\x47\x59\x57\x35\x52\x63\x54\x43\x6b\x74\x67\x38\x6b\x4c','\x57\x34\x48\x62\x57\x52\x5a\x64\x47\x71','\x68\x47\x70\x64\x50\x43\x6b\x33\x42\x62\x46\x63\x56\x71','\x45\x33\x70\x63\x52\x74\x70\x64\x47\x76\x46\x63\x4f\x63\x61','\x61\x38\x6b\x41\x6f\x43\x6f\x68\x57\x4f\x72\x77\x71\x47\x69','\x79\x33\x64\x63\x50\x38\x6f\x2f\x41\x57','\x57\x51\x74\x64\x4d\x43\x6f\x46\x77\x5a\x54\x54\x57\x52\x30','\x57\x36\x50\x45\x41\x53\x6b\x36\x62\x73\x4b\x32\x57\x4f\x4a\x63\x4f\x43\x6b\x4e\x6a\x61','\x57\x52\x42\x63\x54\x62\x54\x63\x57\x35\x38','\x57\x51\x6c\x63\x4c\x4b\x48\x57\x42\x68\x42\x63\x55\x49\x65','\x57\x35\x35\x30\x6d\x43\x6f\x42\x64\x4b\x42\x64\x47\x4b\x79','\x57\x52\x53\x44\x57\x50\x50\x50\x6b\x77\x47','\x44\x62\x33\x63\x53\x53\x6f\x61\x46\x47','\x41\x30\x62\x35\x57\x50\x4e\x64\x48\x38\x6b\x32\x57\x35\x75\x2b\x78\x4d\x5a\x63\x4f\x53\x6f\x46','\x66\x53\x6b\x6e\x6c\x38\x6f\x73','\x57\x35\x50\x78\x42\x32\x6d\x6d','\x57\x34\x74\x63\x51\x47\x54\x47\x69\x30\x7a\x32\x42\x57','\x57\x36\x48\x47\x57\x50\x37\x64\x52\x6d\x6b\x46\x62\x53\x6f\x30\x57\x37\x46\x64\x4f\x32\x61','\x57\x51\x61\x4f\x70\x38\x6b\x4c\x57\x35\x46\x63\x4d\x43\x6b\x54\x57\x4f\x4b','\x57\x52\x70\x63\x48\x4d\x42\x63\x54\x71','\x44\x49\x68\x63\x4e\x53\x6f\x2b\x73\x62\x65','\x57\x4f\x6c\x64\x54\x72\x70\x64\x4e\x38\x6b\x50\x75\x63\x75\x4f','\x57\x52\x78\x63\x4d\x38\x6b\x4f\x63\x38\x6b\x7a\x57\x34\x4e\x64\x54\x57','\x74\x61\x2f\x63\x54\x6d\x6f\x47\x41\x61','\x72\x53\x6b\x57\x57\x52\x4e\x63\x53\x4d\x4f','\x57\x51\x6a\x6f\x66\x4d\x6c\x63\x52\x73\x47\x39\x57\x52\x38','\x76\x53\x6b\x44\x61\x38\x6f\x2f\x46\x71\x69','\x6c\x48\x65\x34\x57\x35\x53','\x68\x64\x65\x2b\x44\x53\x6b\x43\x57\x37\x61\x62\x72\x47','\x72\x75\x62\x4d\x57\x50\x42\x64\x56\x38\x6f\x69\x57\x36\x64\x64\x4a\x61','\x57\x37\x46\x64\x4a\x6d\x6b\x70\x57\x34\x35\x76','\x6b\x53\x6f\x7a\x57\x37\x56\x64\x50\x71\x58\x2b\x57\x4f\x42\x63\x55\x61','\x57\x34\x74\x64\x4a\x43\x6b\x72\x57\x34\x66\x59'];_0x104e=function(){return _0x3790ed;};return _0x104e();}function _0x5a24e7(_0x99e4bd,_0x2c48f5){const _0x36f1f1=_0x2d9b,_0x46814c={'\x78\x70\x6e\x4a\x7a':function(_0x14bbb1,_0x4044da){return _0x14bbb1(_0x4044da);},'\x79\x45\x6b\x7a\x4c':function(_0xecb6ce,_0x424191){return _0xecb6ce<_0x424191;},'\x52\x78\x48\x56\x46':function(_0x5d1882,_0x5a37da,_0x266987){return _0x5d1882(_0x5a37da,_0x266987);},'\x45\x66\x67\x53\x76':function(_0xf6577d,_0x10a1e4){return _0xf6577d!==_0x10a1e4;},'\x44\x73\x72\x6a\x54':function(_0x2730df,_0x5370e0){return _0x2730df||_0x5370e0;},'\x4a\x7a\x72\x4c\x50':_0x36f1f1(0x94,'\x5e\x67\x76\x4d')+_0x36f1f1(0x7d,'\x69\x64\x4b\x4e')+'\x69\x74\x79','\x61\x79\x56\x59\x61':function(_0x21db2a,_0x2b4ef1,_0x3c25fc){return _0x21db2a(_0x2b4ef1,_0x3c25fc);},'\x58\x69\x6d\x4a\x45':_0x36f1f1(0xb6,'\x6a\x7a\x78\x4e'),'\x75\x58\x45\x74\x77':_0x36f1f1(0xd8,'\x67\x4e\x55\x75')+_0x36f1f1(0x101,'\x67\x4e\x55\x75'),'\x6e\x59\x42\x59\x42':_0x36f1f1(0xbc,'\x52\x36\x50\x38')+_0x36f1f1(0x99,'\x5e\x30\x40\x74'),'\x6a\x51\x75\x45\x5a':_0x36f1f1(0x82,'\x78\x48\x48\x35')+_0x36f1f1(0xcb,'\x52\x36\x50\x38'),'\x44\x73\x41\x57\x6e':function(_0x561ca1,_0x15fff3){return _0x561ca1!==_0x15fff3;},'\x55\x47\x7a\x50\x73':_0x36f1f1(0xec,'\x46\x4e\x64\x62'),'\x51\x75\x79\x76\x67':_0x36f1f1(0x102,'\x2a\x59\x70\x28')+'\x70\x65\x72\x66\x6f\x72\x6d\x61'+'\x6e\x63\x65','\x66\x6e\x6e\x47\x68':function(_0x28afc6,_0x5e75b7,_0x2d9cb5){return _0x28afc6(_0x5e75b7,_0x2d9cb5);},'\x6e\x53\x58\x73\x49':function(_0x279508,_0x3660e4,_0x26f977){return _0x279508(_0x3660e4,_0x26f977);},'\x46\x71\x41\x64\x6f':function(_0x297728,_0x4bc7e9,_0xd4d9b7){return _0x297728(_0x4bc7e9,_0xd4d9b7);},'\x59\x74\x6b\x4f\x47':'\x70\x72\x6f\x62\x6c\x65\x6d\x3a'+_0x36f1f1(0xf2,'\x45\x42\x70\x68')+'\x6f\x6e','\x56\x4b\x44\x79\x54':_0x36f1f1(0xf9,'\x36\x34\x54\x51')+_0x36f1f1(0x78,'\x36\x34\x54\x51'),'\x6d\x4c\x6e\x57\x67':_0x36f1f1(0xe1,'\x36\x4a\x29\x6f')+_0x36f1f1(0xa9,'\x5e\x6e\x35\x38')+'\x6f\x6e','\x7a\x74\x6f\x4a\x79':function(_0x5a95f3,_0xd2a57c,_0x31f4f6){return _0x5a95f3(_0xd2a57c,_0x31f4f6);},'\x4c\x4a\x56\x58\x6a':_0x36f1f1(0xca,'\x52\x37\x45\x6c')+_0x36f1f1(0xe3,'\x78\x48\x48\x35'),'\x49\x6a\x66\x74\x68':function(_0x38ec18,_0x3d4560){return _0x38ec18(_0x3d4560);}},_0x550272=Array[_0x36f1f1(0xdb,'\x4f\x32\x36\x55')](_0x99e4bd)?_0x99e4bd['\x6d\x61\x70'](function(_0x32ec92){return String(_0x32ec92);}):[],_0x2414cb=[];for(let _0x108ca4=0x1ac6+-0x1721+-0x3a5;_0x46814c[_0x36f1f1(0x105,'\x73\x6b\x67\x6f')](_0x108ca4,_0x550272[_0x36f1f1(0x7c,'\x5e\x67\x76\x4d')]);_0x108ca4++){const _0x9b1281=_0x550272[_0x108ca4];_0x46814c[_0x36f1f1(0xa6,'\x23\x75\x34\x59')](_0x1f2f50,_0x2414cb,_0x9b1281);const _0x382839=_0x9b1281[_0x36f1f1(0xcc,'\x4a\x28\x78\x35')]('\x3a')[-0x2a5*-0x1+0x98*0x35+-0x221d];if(_0x382839&&_0x46814c['\x45\x66\x67\x53\x76'](_0x382839,_0x9b1281))_0x46814c[_0x36f1f1(0xfb,'\x7a\x26\x42\x4e')](_0x1f2f50,_0x2414cb,_0x382839);}const _0x19c9cf=(_0x550272[_0x36f1f1(0xde,'\x72\x72\x74\x46')]('\x20')+'\x20'+_0x46814c[_0x36f1f1(0xc3,'\x63\x51\x67\x53')](String,_0x46814c['\x44\x73\x72\x6a\x54'](_0x2c48f5,'')))[_0x36f1f1(0xa8,'\x38\x5e\x48\x24')+_0x36f1f1(0xd6,'\x23\x75\x34\x59')]();/(error|exception|failed|unstable|log_error|runtime|429)/[_0x36f1f1(0xce,'\x38\x5e\x48\x24')](_0x19c9cf)&&(_0x46814c[_0x36f1f1(0xdc,'\x52\x44\x5d\x48')](_0x1f2f50,_0x2414cb,_0x46814c[_0x36f1f1(0xb9,'\x34\x42\x48\x6b')]),_0x46814c[_0x36f1f1(0xa0,'\x48\x26\x55\x31')](_0x1f2f50,_0x2414cb,_0x36f1f1(0xa1,'\x42\x37\x71\x6a')+_0x36f1f1(0x9e,'\x36\x34\x54\x51')));if(/(protocol|prompt|audit|gep|schema|drift)/['\x74\x65\x73\x74'](_0x19c9cf)){if(_0x46814c[_0x36f1f1(0x87,'\x35\x44\x5d\x37')]!==_0x36f1f1(0x88,'\x23\x61\x28\x69'))_0x1f2f50(_0x2414cb,_0x46814c[_0x36f1f1(0xb8,'\x52\x37\x45\x6c')]),_0x46814c[_0x36f1f1(0xc2,'\x50\x65\x43\x72')](_0x1f2f50,_0x2414cb,_0x46814c[_0x36f1f1(0xe9,'\x46\x67\x64\x47')]),_0x1f2f50(_0x2414cb,_0x46814c['\x6a\x51\x75\x45\x5a']);else{if(!_0xba4eb4)return;_0x49b488['\x70\x75\x73\x68'](bcOMlo[_0x36f1f1(0xe5,'\x25\x31\x67\x43')](_0x1e3bf7,_0x232cc0)[_0x36f1f1(0x79,'\x23\x75\x34\x59')]());}}if(/(perf|performance|bottleneck|latency|slow|throughput)/[_0x36f1f1(0x104,'\x56\x44\x30\x51')](_0x19c9cf)){if(_0x46814c[_0x36f1f1(0x91,'\x68\x72\x42\x75')](_0x36f1f1(0x107,'\x78\x48\x48\x35'),_0x46814c[_0x36f1f1(0x95,'\x29\x68\x48\x6d')]))_0x46814c[_0x36f1f1(0xfd,'\x7a\x26\x42\x4e')](_0x1f2f50,_0x2414cb,_0x46814c[_0x36f1f1(0xb7,'\x41\x6d\x76\x4c')]),_0x46814c[_0x36f1f1(0xb4,'\x7a\x26\x42\x4e')](_0x1f2f50,_0x2414cb,_0x46814c[_0x36f1f1(0x75,'\x29\x68\x48\x6d')]);else return _0x46814c[_0x36f1f1(0x7f,'\x67\x4e\x55\x75')](_0x136047,_0x5090c7);}return/(feature|capability_gap|user_feature_request|external_opportunity|stagnation recommendation)/[_0x36f1f1(0xeb,'\x36\x4a\x29\x6f')](_0x19c9cf)&&(_0x46814c[_0x36f1f1(0xa5,'\x4e\x4f\x28\x6a')](_0x1f2f50,_0x2414cb,_0x36f1f1(0x100,'\x36\x34\x54\x51')+_0x36f1f1(0xf6,'\x73\x6b\x67\x6f')+'\x74\x79'),_0x1f2f50(_0x2414cb,_0x36f1f1(0xbe,'\x4e\x4f\x28\x6a')+_0x36f1f1(0xa3,'\x34\x42\x48\x6b'))),/(stagnation|plateau|steady_state|saturation|empty_cycle_loop|loop_detected|recurring)/[_0x36f1f1(0xd7,'\x36\x34\x54\x51')](_0x19c9cf)&&(_0x46814c[_0x36f1f1(0xcd,'\x4a\x28\x78\x35')](_0x1f2f50,_0x2414cb,_0x46814c[_0x36f1f1(0xff,'\x72\x4a\x6c\x32')]),_0x46814c[_0x36f1f1(0xd2,'\x78\x48\x48\x35')](_0x1f2f50,_0x2414cb,_0x46814c[_0x36f1f1(0xf4,'\x46\x67\x64\x47')])),/(task|worker|heartbeat|hub|commitment|assignment|orchestration)/[_0x36f1f1(0xf8,'\x68\x72\x42\x75')](_0x19c9cf)&&_0x46814c[_0x36f1f1(0x106,'\x25\x31\x67\x43')](_0x1f2f50,_0x2414cb,_0x46814c[_0x36f1f1(0x9c,'\x64\x72\x70\x38')]),/(memory|narrative|reflection)/[_0x36f1f1(0xf0,'\x5b\x52\x26\x6d')](_0x19c9cf)&&_0x46814c[_0x36f1f1(0x8c,'\x41\x6d\x76\x4c')](_0x1f2f50,_0x2414cb,'\x61\x72\x65\x61\x3a\x6d\x65\x6d'+'\x6f\x72\x79'),/(skill|dashboard)/[_0x36f1f1(0xc5,'\x6a\x38\x68\x30')](_0x19c9cf)&&_0x1f2f50(_0x2414cb,_0x36f1f1(0xab,'\x56\x44\x30\x51')+_0x36f1f1(0x7b,'\x5a\x52\x36\x38')),/(validation|canary|rollback|constraint|blast radius|destructive)/[_0x36f1f1(0xad,'\x78\x48\x48\x35')](_0x19c9cf)&&_0x46814c[_0x36f1f1(0x8c,'\x41\x6d\x76\x4c')](_0x1f2f50,_0x2414cb,_0x46814c[_0x36f1f1(0x103,'\x64\x72\x70\x38')]),_0x46814c['\x49\x6a\x66\x74\x68'](_0x42a658,_0x2414cb);}function _0x5807cf(_0x39a9fd){const _0x1c1f86=_0x2d9b,_0x14b6e9={'\x44\x41\x6a\x79\x4d':function(_0x251e3b,_0x3d6b12){return _0x251e3b!==_0x3d6b12;},'\x43\x48\x48\x73\x6a':'\x6f\x62\x6a\x65\x63\x74','\x68\x77\x71\x61\x56':function(_0x7cb1b5,_0x34918d){return _0x7cb1b5+_0x34918d;},'\x6b\x63\x66\x43\x79':_0x1c1f86(0xdd,'\x23\x61\x28\x69'),'\x41\x58\x4f\x75\x4b':function(_0x2695eb,_0x1228b7){return _0x2695eb(_0x1228b7);},'\x44\x47\x78\x4d\x43':function(_0x277793,_0x290205){return _0x277793===_0x290205;},'\x71\x66\x45\x61\x6b':function(_0x84b622,_0x26f5ad){return _0x84b622===_0x26f5ad;},'\x48\x72\x68\x6f\x69':'\x73\x74\x72\x69\x6e\x67','\x65\x69\x57\x4d\x6f':function(_0x16a22c,_0x104578,_0x307835){return _0x16a22c(_0x104578,_0x307835);}};if(!_0x39a9fd||_0x14b6e9[_0x1c1f86(0xf5,'\x36\x33\x23\x5a')](typeof _0x39a9fd,_0x14b6e9[_0x1c1f86(0xd4,'\x36\x34\x54\x51')]))return[];let _0x1097ca=[];if(_0x39a9fd[_0x1c1f86(0x8a,'\x29\x68\x48\x6d')])_0x1097ca[_0x1c1f86(0x8f,'\x41\x67\x7a\x6c')](_0x14b6e9[_0x1c1f86(0xbb,'\x55\x4b\x33\x46')](_0x14b6e9[_0x1c1f86(0xb5,'\x36\x33\x23\x5a')],_0x14b6e9[_0x1c1f86(0x83,'\x69\x64\x4b\x4e')](String,_0x39a9fd[_0x1c1f86(0x80,'\x5e\x6e\x35\x38')])[_0x1c1f86(0xe0,'\x41\x67\x7a\x6c')+_0x1c1f86(0x93,'\x36\x34\x54\x51')]()));if(Array[_0x1c1f86(0x97,'\x4e\x4f\x49\x6d')](_0x39a9fd[_0x1c1f86(0xef,'\x77\x57\x23\x28')+_0x1c1f86(0x72,'\x5e\x30\x40\x74')]))_0x1097ca=_0x1097ca[_0x1c1f86(0xa2,'\x5e\x6e\x35\x38')](_0x39a9fd['\x73\x69\x67\x6e\x61\x6c\x73\x5f'+_0x1c1f86(0xe2,'\x5e\x6e\x35\x38')]);if(_0x14b6e9[_0x1c1f86(0x9b,'\x72\x4a\x6c\x32')](typeof _0x39a9fd['\x69\x64'],_0x1c1f86(0xf7,'\x69\x64\x4b\x4e')))_0x1097ca[_0x1c1f86(0x9a,'\x6a\x7a\x78\x4e')](_0x39a9fd['\x69\x64']);if(_0x14b6e9['\x71\x66\x45\x61\x6b'](typeof _0x39a9fd[_0x1c1f86(0xc1,'\x69\x64\x4b\x4e')],_0x14b6e9['\x48\x72\x68\x6f\x69']))_0x1097ca[_0x1c1f86(0x85,'\x2a\x59\x70\x28')](_0x39a9fd[_0x1c1f86(0xac,'\x78\x48\x48\x35')]);return _0x14b6e9[_0x1c1f86(0x86,'\x7a\x26\x42\x4e')](_0x5a24e7,_0x1097ca,'');}function _0x3a86fc(_0xce6f3b,_0x2cadbe){const _0xd5db84=_0x2d9b,_0x41663d={'\x41\x43\x61\x6b\x68':function(_0x35b180,_0x2f7da1,_0x5899d7){return _0x35b180(_0x2f7da1,_0x5899d7);},'\x70\x41\x4a\x6a\x76':function(_0x4c4c9a,_0x440732){return _0x4c4c9a(_0x440732);},'\x73\x63\x77\x45\x4c':function(_0xde0dd7,_0x18bec9){return _0xde0dd7===_0x18bec9;}},_0xcc1e70=_0x41663d[_0xd5db84(0xfe,'\x4f\x32\x36\x55')](_0x5a24e7,_0x2cadbe,''),_0x7ca40f=_0x41663d[_0xd5db84(0x73,'\x6a\x38\x68\x30')](_0x5807cf,_0xce6f3b);if(_0xcc1e70[_0xd5db84(0xba,'\x67\x4e\x55\x75')]===-0x1*-0x9df+0x225f+-0x652*0x7||_0x41663d[_0xd5db84(0xb1,'\x45\x42\x70\x68')](_0x7ca40f[_0xd5db84(0xf1,'\x46\x67\x64\x47')],0x2*0xae2+0xd7a+-0x233e))return-0x6d*-0x39+0xc9*-0x5+-0x1458;const _0x3136f7=new Set(_0xcc1e70);let _0x40e1ca=0x1*0x2606+-0x5*-0x463+-0x3bf5*0x1;for(let _0x5d8e7f=-0x1*0xfb+0x1*0xb1b+0x9*-0x120;_0x5d8e7f<_0x7ca40f[_0xd5db84(0xe8,'\x57\x6f\x6e\x36')];_0x5d8e7f++){if(_0x3136f7[_0xd5db84(0x96,'\x4f\x32\x36\x55')](_0x7ca40f[_0x5d8e7f]))_0x40e1ca++;}return _0x40e1ca;}const _0x5cdcf1={};_0x5cdcf1[_0x59b268(0xe7,'\x72\x4a\x6c\x32')+_0x59b268(0xc7,'\x57\x6f\x6e\x36')]=_0x5a24e7,_0x5cdcf1[_0x59b268(0xaa,'\x63\x51\x67\x53')]=_0x5807cf,_0x5cdcf1[_0x59b268(0x71,'\x5a\x52\x36\x38')+_0x59b268(0xdf,'\x4e\x4f\x28\x6a')]=_0x3a86fc,module[_0x59b268(0xa7,'\x72\x72\x74\x46')]=_0x5cdcf1;
|
|
1
|
+
// Structured learning signal expansion: raw signals -> categorized tags for gene selection and evolution feedback.
|
|
2
|
+
function unique(items) {
|
|
3
|
+
return Array.from(new Set((Array.isArray(items) ? items : []).filter(Boolean).map(function (x) {
|
|
4
|
+
return String(x).trim();
|
|
5
|
+
}).filter(Boolean)));
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
function add(tags, value) {
|
|
9
|
+
if (!value) return;
|
|
10
|
+
tags.push(String(value).trim());
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
function expandSignals(signals, extraText) {
|
|
14
|
+
const raw = Array.isArray(signals) ? signals.map(function (s) { return String(s); }) : [];
|
|
15
|
+
const tags = [];
|
|
16
|
+
|
|
17
|
+
for (let i = 0; i < raw.length; i++) {
|
|
18
|
+
const signal = raw[i];
|
|
19
|
+
add(tags, signal);
|
|
20
|
+
const base = signal.split(':')[0];
|
|
21
|
+
if (base && base !== signal) add(tags, base);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
const text = (raw.join(' ') + ' ' + String(extraText || '')).toLowerCase();
|
|
25
|
+
|
|
26
|
+
if (/(error|exception|failed|unstable|log_error|runtime|429)/.test(text)) {
|
|
27
|
+
add(tags, 'problem:reliability');
|
|
28
|
+
add(tags, 'action:repair');
|
|
29
|
+
}
|
|
30
|
+
if (/(protocol|prompt|audit|gep|schema|drift)/.test(text)) {
|
|
31
|
+
add(tags, 'problem:protocol');
|
|
32
|
+
add(tags, 'action:optimize');
|
|
33
|
+
add(tags, 'area:prompt');
|
|
34
|
+
}
|
|
35
|
+
if (/(perf|performance|bottleneck|latency|slow|throughput)/.test(text)) {
|
|
36
|
+
add(tags, 'problem:performance');
|
|
37
|
+
add(tags, 'action:optimize');
|
|
38
|
+
}
|
|
39
|
+
if (/(feature|capability_gap|user_feature_request|external_opportunity|stagnation recommendation)/.test(text)) {
|
|
40
|
+
add(tags, 'problem:capability');
|
|
41
|
+
add(tags, 'action:innovate');
|
|
42
|
+
}
|
|
43
|
+
if (/(stagnation|plateau|steady_state|saturation|empty_cycle_loop|loop_detected|recurring)/.test(text)) {
|
|
44
|
+
add(tags, 'problem:stagnation');
|
|
45
|
+
add(tags, 'action:innovate');
|
|
46
|
+
}
|
|
47
|
+
if (/(task|worker|heartbeat|hub|commitment|assignment|orchestration)/.test(text)) {
|
|
48
|
+
add(tags, 'area:orchestration');
|
|
49
|
+
}
|
|
50
|
+
if (/(memory|narrative|reflection)/.test(text)) {
|
|
51
|
+
add(tags, 'area:memory');
|
|
52
|
+
}
|
|
53
|
+
if (/(skill|dashboard)/.test(text)) {
|
|
54
|
+
add(tags, 'area:skills');
|
|
55
|
+
}
|
|
56
|
+
if (/(validation|canary|rollback|constraint|blast radius|destructive)/.test(text)) {
|
|
57
|
+
add(tags, 'risk:validation');
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
return unique(tags);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function geneTags(gene) {
|
|
64
|
+
if (!gene || typeof gene !== 'object') return [];
|
|
65
|
+
let inputs = [];
|
|
66
|
+
if (gene.category) inputs.push('action:' + String(gene.category).toLowerCase());
|
|
67
|
+
if (Array.isArray(gene.signals_match)) inputs = inputs.concat(gene.signals_match);
|
|
68
|
+
if (typeof gene.id === 'string') inputs.push(gene.id);
|
|
69
|
+
if (typeof gene.summary === 'string') inputs.push(gene.summary);
|
|
70
|
+
return expandSignals(inputs, '');
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
function scoreTagOverlap(gene, signals) {
|
|
74
|
+
const signalTags = expandSignals(signals, '');
|
|
75
|
+
const geneTagList = geneTags(gene);
|
|
76
|
+
if (signalTags.length === 0 || geneTagList.length === 0) return 0;
|
|
77
|
+
const signalSet = new Set(signalTags);
|
|
78
|
+
let hits = 0;
|
|
79
|
+
for (let i = 0; i < geneTagList.length; i++) {
|
|
80
|
+
if (signalSet.has(geneTagList[i])) hits++;
|
|
81
|
+
}
|
|
82
|
+
return hits;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
module.exports = {
|
|
86
|
+
expandSignals: expandSignals,
|
|
87
|
+
geneTags: geneTags,
|
|
88
|
+
scoreTagOverlap: scoreTagOverlap,
|
|
89
|
+
};
|