@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/memoryGraph.js
CHANGED
|
@@ -1 +1,1374 @@
|
|
|
1
|
-
const _0x24f893=_0x4f29;(function(_0x219058,_0x1aafeb){const _0x5ecf51=_0x4f29,_0x42cfaf=_0x219058();while(!![]){try{const _0x4bde2e=-parseInt(_0x5ecf51(0x301,'\x43\x6a\x77\x54'))/(-0x15*-0x17e+-0x22de+0x389)*(-parseInt(_0x5ecf51(0x7e6,'\x68\x33\x64\x45'))/(0x8ef*-0x2+-0x1*0x1f8d+0x316d))+parseInt(_0x5ecf51(0x478,'\x44\x6b\x41\x4f'))/(0x11b6+0xc21+-0x5c*0x53)+-parseInt(_0x5ecf51(0x877,'\x4a\x26\x39\x41'))/(0xf6*-0x6+-0x19*0x11b+-0x1d*-0x127)*(-parseInt(_0x5ecf51(0x328,'\x4b\x28\x32\x23'))/(-0x1023+0xd76+-0x3*-0xe6))+parseInt(_0x5ecf51(0x22f,'\x4b\x36\x25\x33'))/(0x1a1a+0x18d4+-0x32e8)+-parseInt(_0x5ecf51(0x4c5,'\x67\x56\x36\x28'))/(0x1339+-0x18e0+0x5ae)+-parseInt(_0x5ecf51(0x4f9,'\x6c\x57\x4d\x30'))/(0x259a+-0x907*-0x3+0x9*-0x72f)*(parseInt(_0x5ecf51(0x663,'\x44\x6c\x68\x4d'))/(0x129f+0x1620+-0xd92*0x3))+-parseInt(_0x5ecf51(0x887,'\x63\x6f\x5e\x24'))/(0x4*-0x647+0x196a+-0x44);if(_0x4bde2e===_0x1aafeb)break;else _0x42cfaf['push'](_0x42cfaf['shift']());}catch(_0x46ad1f){_0x42cfaf['push'](_0x42cfaf['shift']());}}}(_0x2c42,-0xa7327+-0x1*-0xb2199+0xc4b0b));const _0x1e334e=(function(){const _0x3090a=_0x4f29,_0x577373={'\x43\x6c\x49\x53\x46':function(_0x5eff9e,_0x53f399){return _0x5eff9e<_0x53f399;},'\x65\x4b\x42\x4a\x4c':function(_0x92152d){return _0x92152d();},'\x50\x56\x65\x78\x4d':function(_0x34fb73,_0x2dc552){return _0x34fb73(_0x2dc552);},'\x46\x57\x6f\x46\x4f':_0x3090a(0x569,'\x47\x46\x75\x74')+_0x3090a(0x3b7,'\x4b\x28\x32\x23')+_0x3090a(0x27e,'\x75\x45\x5a\x6f')+_0x3090a(0x56e,'\x6c\x23\x7a\x76'),'\x64\x63\x65\x73\x54':_0x3090a(0x8a7,'\x4f\x35\x66\x62'),'\x4b\x68\x44\x7a\x49':function(_0x9e3484,_0x2561f7){return _0x9e3484===_0x2561f7;},'\x4d\x52\x77\x68\x44':_0x3090a(0x6c9,'\x48\x6d\x74\x4d'),'\x4b\x58\x68\x73\x74':_0x3090a(0x2c8,'\x63\x30\x6e\x66')};let _0x33e8e2=!![];return function(_0x2efcc1,_0x2e09f0){const _0x41642d=_0x3090a,_0x11f643={};_0x11f643[_0x41642d(0x618,'\x5b\x36\x72\x37')]=_0x577373['\x46\x57\x6f\x46\x4f'],_0x11f643['\x6d\x78\x76\x5a\x55']=_0x577373['\x64\x63\x65\x73\x54'];const _0x59ab34=_0x11f643;if(_0x577373[_0x41642d(0x5e6,'\x5b\x36\x72\x37')](_0x577373[_0x41642d(0x567,'\x5b\x2a\x25\x62')],_0x577373[_0x41642d(0x7a6,'\x65\x76\x39\x75')])){if(!_0x5cfd30[_0x41642d(0x669,'\x65\x76\x39\x75')+'\x6e\x63'](_0x429b1f))return null;const _0x3c1ab7=_0x1c080d[_0x41642d(0x6ce,'\x73\x37\x75\x4e')](_0x2c5349);if(_0x577373[_0x41642d(0x2fc,'\x6c\x23\x7a\x76')](_0x3c1ab7[_0x41642d(0x1f2,'\x50\x61\x6e\x76')],_0x577373['\x65\x4b\x42\x4a\x4c'](_0x5e8639)))return null;return _0x577373['\x50\x56\x65\x78\x4d'](_0x1fe407,_0x123e0d);}else{const _0xfff1d=_0x33e8e2?function(){const _0x2b27be=_0x41642d;if(_0x59ab34[_0x2b27be(0x772,'\x44\x6b\x41\x4f')]!==_0x59ab34[_0x2b27be(0x67d,'\x4b\x28\x32\x23')]){const _0x4a34b4=_0x99a608[_0x2b27be(0x21d,'\x65\x76\x39\x75')](_0x66db8(),_0x59ab34['\x6b\x45\x50\x6f\x53']),_0x57b5a7={};_0x57b5a7[_0x2b27be(0x607,'\x68\x7a\x7a\x21')]=null;const _0x39d134=_0x8255ce(_0x4a34b4,_0x57b5a7);_0x592388=_0x39d134&&_0x39d134[_0x2b27be(0x53d,'\x44\x51\x24\x40')]?_0x39d134[_0x2b27be(0x50f,'\x63\x30\x6e\x66')]:null;}else{if(_0x2e09f0){const _0x36a11c=_0x2e09f0[_0x2b27be(0x3fa,'\x4b\x36\x25\x33')](_0x2efcc1,arguments);return _0x2e09f0=null,_0x36a11c;}}}:function(){};return _0x33e8e2=![],_0xfff1d;}};}()),_0x3eaecd=_0x1e334e(this,function(){const _0x426983=_0x4f29,_0x2ab218={};_0x2ab218[_0x426983(0x255,'\x70\x23\x36\x65')]=_0x426983(0x541,'\x4f\x4b\x4b\x62')+_0x426983(0x729,'\x78\x56\x4c\x45');const _0x594ac9=_0x2ab218;return _0x3eaecd[_0x426983(0x6ca,'\x4a\x74\x4a\x4f')]()[_0x426983(0x302,'\x30\x35\x70\x72')](_0x594ac9['\x50\x43\x71\x57\x70'])[_0x426983(0x63c,'\x24\x6a\x6c\x23')]()[_0x426983(0x747,'\x4b\x36\x25\x33')+_0x426983(0x43e,'\x72\x76\x61\x5d')](_0x3eaecd)[_0x426983(0x302,'\x30\x35\x70\x72')](_0x426983(0x757,'\x30\x24\x52\x66')+'\x2b\x29\x2b\x24');});function _0x4f29(_0x53790f,_0x4a6235){_0x53790f=_0x53790f-(-0x183+0x1bf7*0x1+-0x188a);const _0x5a55cb=_0x2c42();let _0x2dcfaa=_0x5a55cb[_0x53790f];if(_0x4f29['\x75\x47\x61\x66\x79\x79']===undefined){var _0x132e92=function(_0x6f875){const _0x4ae266='\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 _0x182772='',_0xbaa042='',_0x59fc83=_0x182772+_0x132e92,_0x59afb2=(''+function(){return 0x19ca+0x207+-0x1bd1;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x1288+0x1b84+-0x2e0b);for(let _0x23db7f=0x1*-0x1e25+-0x3*0x96f+0x3a72,_0x334a95,_0x14b3bb,_0x374520=-0x1f02*0x1+0x253+-0x1caf*-0x1;_0x14b3bb=_0x6f875['\x63\x68\x61\x72\x41\x74'](_0x374520++);~_0x14b3bb&&(_0x334a95=_0x23db7f%(-0x466*-0x8+0x11b7*0x1+0x1*-0x34e3)?_0x334a95*(0x1433+0x1*-0xec3+-0x530)+_0x14b3bb:_0x14b3bb,_0x23db7f++%(0x1*0x1de6+-0x251+-0x1*0x1b91))?_0x182772+=_0x59afb2||_0x59fc83['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x374520+(0x714*-0x5+-0x1073+0x33e1))-(0xa9*0x8+0xe6c+-0x1*0x13aa)!==-0x112b+-0xe27+0x1f52?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x277+-0x1*-0x1a75+0x94f*-0x3&_0x334a95>>(-(0x105+-0x20*-0x11a+0x1*-0x2443)*_0x23db7f&-0x179b+0x1b60+-0x3bf)):_0x23db7f:-0x1aa*-0x1+-0x1*0x896+0x6ec){_0x14b3bb=_0x4ae266['\x69\x6e\x64\x65\x78\x4f\x66'](_0x14b3bb);}for(let _0x286d1d=0x1*0x25e8+0x4*-0x3d6+-0x1690,_0x4c1208=_0x182772['\x6c\x65\x6e\x67\x74\x68'];_0x286d1d<_0x4c1208;_0x286d1d++){_0xbaa042+='\x25'+('\x30\x30'+_0x182772['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x286d1d)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x1f34+-0xcea*0x3+-0x26a*-0x1d))['\x73\x6c\x69\x63\x65'](-(-0x3*0x4f7+-0x2347+0x322e));}return decodeURIComponent(_0xbaa042);};const _0x3acc3b=function(_0x17cdfb,_0x2f555b){let _0x46d02e=[],_0x226760=-0x4*0x61f+-0x1*0x180d+0x3089,_0x357549,_0x1b4a19='';_0x17cdfb=_0x132e92(_0x17cdfb);let _0x178d21;for(_0x178d21=-0x753+-0xf*-0xa1+-0x21c;_0x178d21<-0xf3*-0xd+-0x176d*-0x1+-0x22c4;_0x178d21++){_0x46d02e[_0x178d21]=_0x178d21;}for(_0x178d21=0x8f1+0x1f39+0x6a*-0x61;_0x178d21<-0x44c+0x1*-0x1b08+0x2*0x102a;_0x178d21++){_0x226760=(_0x226760+_0x46d02e[_0x178d21]+_0x2f555b['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x178d21%_0x2f555b['\x6c\x65\x6e\x67\x74\x68']))%(0x224c+0x630*-0x6+-0x4*-0xf5),_0x357549=_0x46d02e[_0x178d21],_0x46d02e[_0x178d21]=_0x46d02e[_0x226760],_0x46d02e[_0x226760]=_0x357549;}_0x178d21=-0x6b7+0x1190+-0xad9,_0x226760=-0x2394+-0x170a+0x3a9e;for(let _0x3a76e3=0x14e1*-0x1+-0x21e5+0x36c6;_0x3a76e3<_0x17cdfb['\x6c\x65\x6e\x67\x74\x68'];_0x3a76e3++){_0x178d21=(_0x178d21+(-0x19a+-0x2549+0x26e4))%(-0x2586+-0x1523*0x1+0x3ba9),_0x226760=(_0x226760+_0x46d02e[_0x178d21])%(0x732+-0x16d*0xb+0x97d),_0x357549=_0x46d02e[_0x178d21],_0x46d02e[_0x178d21]=_0x46d02e[_0x226760],_0x46d02e[_0x226760]=_0x357549,_0x1b4a19+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x17cdfb['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3a76e3)^_0x46d02e[(_0x46d02e[_0x178d21]+_0x46d02e[_0x226760])%(0x37d+-0xf0c+0xc8f)]);}return _0x1b4a19;};_0x4f29['\x53\x4a\x77\x79\x4f\x75']=_0x3acc3b,_0x4f29['\x48\x43\x54\x77\x4d\x68']={},_0x4f29['\x75\x47\x61\x66\x79\x79']=!![];}const _0x27fcb4=_0x5a55cb[0x16d7+-0x36*0xb3+0xeeb],_0x53d123=_0x53790f+_0x27fcb4,_0x172bfa=_0x4f29['\x48\x43\x54\x77\x4d\x68'][_0x53d123];if(!_0x172bfa){if(_0x4f29['\x50\x62\x4f\x71\x6d\x75']===undefined){const _0x15d674=function(_0x13a188){this['\x4a\x50\x4c\x6b\x4d\x54']=_0x13a188,this['\x62\x45\x6b\x48\x50\x46']=[-0x240c+0xa0c+0x1a01,-0x36*0x3e+0x6b6+0x65e,-0x4f8*-0x7+0x449+0x49*-0x89],this['\x46\x6f\x58\x76\x47\x43']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x4e\x75\x61\x47\x66\x72']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x4d\x64\x4e\x70\x63\x6e']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x15d674['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x42\x43\x66\x45\x45\x4f']=function(){const _0x28298c=new RegExp(this['\x4e\x75\x61\x47\x66\x72']+this['\x4d\x64\x4e\x70\x63\x6e']),_0x72d68a=_0x28298c['\x74\x65\x73\x74'](this['\x46\x6f\x58\x76\x47\x43']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x62\x45\x6b\x48\x50\x46'][-0x1*-0x15d7+0x540*0x2+-0x2056]:--this['\x62\x45\x6b\x48\x50\x46'][-0x7a*0x12+0xc54+-0x3c0];return this['\x49\x6d\x55\x59\x41\x58'](_0x72d68a);},_0x15d674['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x49\x6d\x55\x59\x41\x58']=function(_0x466f0f){if(!Boolean(~_0x466f0f))return _0x466f0f;return this['\x45\x42\x78\x48\x72\x4a'](this['\x4a\x50\x4c\x6b\x4d\x54']);},_0x15d674['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x45\x42\x78\x48\x72\x4a']=function(_0x31936e){for(let _0x477fa8=0xdc0+-0x116+-0xcaa,_0x32f49c=this['\x62\x45\x6b\x48\x50\x46']['\x6c\x65\x6e\x67\x74\x68'];_0x477fa8<_0x32f49c;_0x477fa8++){this['\x62\x45\x6b\x48\x50\x46']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x32f49c=this['\x62\x45\x6b\x48\x50\x46']['\x6c\x65\x6e\x67\x74\x68'];}return _0x31936e(this['\x62\x45\x6b\x48\x50\x46'][0x28*-0x99+-0x1700+-0x4f*-0x98]);},(''+function(){return-0x1*0x1ebf+-0x4ca+-0x33b*-0xb;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x21a7+0x2cb+-0x13*0x1eb)&&new _0x15d674(_0x4f29)['\x42\x43\x66\x45\x45\x4f'](),_0x4f29['\x50\x62\x4f\x71\x6d\x75']=!![];}_0x2dcfaa=_0x4f29['\x53\x4a\x77\x79\x4f\x75'](_0x2dcfaa,_0x4a6235),_0x4f29['\x48\x43\x54\x77\x4d\x68'][_0x53d123]=_0x2dcfaa;}else _0x2dcfaa=_0x172bfa;return _0x2dcfaa;}_0x3eaecd();const _0x52037d=require('\x66\x73'),_0x2675e0=require('\x70\x61\x74\x68'),{hubFetch:_0x41b1fa}=require(_0x24f893(0x492,'\x4b\x36\x25\x33')+'\x63\x68'),{getMemoryDir:_0x4eeede,getEvolutionDir:_0x32f7d2}=require(_0x24f893(0x883,'\x68\x7a\x7a\x21')),{normalizePersonalityState:_0x4adefe,isValidPersonalityState:_0x2f18c1,personalityKey:_0x5b7721}=require(_0x24f893(0x2e0,'\x70\x23\x36\x65')+_0x24f893(0x53f,'\x57\x38\x6b\x49')),{isValidMutation:_0x416f2c,normalizeMutation:_0x516827}=require(_0x24f893(0x83c,'\x72\x76\x61\x5d')+'\x6f\x6e'),_0x123465=require(_0x24f893(0x686,'\x4a\x74\x4a\x4f')+'\x67'),{readJsonIfExists:_0x1f80a3}=require(_0x24f893(0x648,'\x50\x61\x6e\x76')+_0x24f893(0x7fb,'\x5b\x2a\x25\x62')),{stableHash:_0x41384f}=require(_0x24f893(0x622,'\x51\x70\x6f\x4c'));function _0x1534b3(_0x1ae7d5){const _0x36a761=_0x24f893,_0x27bd0d={};_0x27bd0d[_0x36a761(0x547,'\x4b\x28\x32\x23')]=function(_0x5d396f,_0x12c32c){return _0x5d396f===_0x12c32c;},_0x27bd0d[_0x36a761(0x74f,'\x70\x23\x36\x65')]=_0x36a761(0x565,'\x50\x61\x6e\x76');const _0x36c196=_0x27bd0d;try{if(_0x36c196[_0x36a761(0x79e,'\x57\x45\x5e\x4e')](_0x36c196[_0x36a761(0x80b,'\x44\x6c\x68\x4d')],_0x36a761(0x37c,'\x4f\x4b\x4b\x62'))){const _0x3dd909={};_0x3dd909[_0x36a761(0x239,'\x75\x45\x5a\x6f')+'\x65']=!![];if(!_0x52037d[_0x36a761(0x6fd,'\x4f\x35\x66\x62')+'\x6e\x63'](_0x1ae7d5))_0x52037d['\x6d\x6b\x64\x69\x72\x53\x79\x6e'+'\x63'](_0x1ae7d5,_0x3dd909);}else return new _0x1dac10()[_0x36a761(0x3a3,'\x4a\x26\x39\x41')+_0x36a761(0x7a5,'\x44\x6b\x41\x4f')]();}catch(_0x397539){}}function _0xd91d1c(){const _0x56e61d=_0x24f893;return new Date()['\x74\x6f\x49\x53\x4f\x53\x74\x72'+_0x56e61d(0x2df,'\x75\x45\x5a\x6f')]();}function _0x2f8a01(_0x4af95a){const _0x573c09=_0x24f893,_0x409400={'\x6f\x51\x77\x71\x78':function(_0x1f954c,_0x39c9e4){return _0x1f954c(_0x39c9e4);},'\x42\x6d\x76\x41\x41':function(_0x58d2f2,_0x5b68f7){return _0x58d2f2||_0x5b68f7;},'\x4a\x63\x49\x50\x59':_0x573c09(0x4c0,'\x41\x31\x43\x39'),'\x4b\x76\x58\x73\x66':_0x573c09(0x44b,'\x41\x31\x43\x39')},_0x21aa88=_0x409400[_0x573c09(0x380,'\x48\x6d\x74\x4d')](String,_0x409400[_0x573c09(0x572,'\x6c\x23\x7a\x76')](_0x4af95a,''))[_0x573c09(0x344,'\x73\x37\x75\x4e')]();if(!_0x21aa88)return null;return _0x21aa88[_0x573c09(0x7e7,'\x4f\x35\x66\x62')+'\x61\x73\x65']()[_0x573c09(0x40f,'\x6c\x57\x4d\x30')](/[a-z]:\\[^ \n\r\t]+/gi,_0x573c09(0x42b,'\x65\x76\x39\x75'))[_0x573c09(0x5c8,'\x52\x40\x52\x65')](/\/[^ \n\r\t]+/g,_0x409400['\x4a\x63\x49\x50\x59'])[_0x573c09(0x6f8,'\x63\x4f\x21\x4d')](/\b0x[0-9a-f]+\b/gi,_0x409400[_0x573c09(0x20a,'\x63\x30\x6e\x66')])[_0x573c09(0x52d,'\x72\x76\x61\x5d')](/\b\d+\b/g,_0x573c09(0x39d,'\x63\x4f\x21\x4d'))[_0x573c09(0x27d,'\x4f\x35\x66\x62')](/\s+/g,'\x20')['\x73\x6c\x69\x63\x65'](0x3*0xbc6+0x1c49+-0x13*0x359,-0x5*0x6a1+0x3*0xc3d+-0x2b6);}function _0x4d1e86(_0x3bdae8){const _0x1874f8=_0x24f893,_0x36e87d={'\x65\x75\x64\x6f\x4f':function(_0x469763,_0x15f925){return _0x469763&&_0x15f925;},'\x7a\x44\x63\x53\x61':_0x1874f8(0x592,'\x52\x40\x52\x65'),'\x6c\x42\x6f\x5a\x53':_0x1874f8(0x489,'\x4a\x74\x4a\x4f')+_0x1874f8(0x600,'\x4b\x28\x32\x23'),'\x4e\x6e\x46\x4a\x65':'\x66\x61\x69\x6c\x65\x64','\x45\x73\x71\x6f\x4a':_0x1874f8(0x490,'\x68\x7a\x7a\x21')+_0x1874f8(0x303,'\x70\x23\x36\x65')+'\x65\x64','\x51\x51\x4d\x6d\x72':_0x1874f8(0x2e9,'\x65\x76\x39\x75')+_0x1874f8(0x878,'\x4a\x26\x39\x41'),'\x62\x78\x56\x53\x5a':function(_0x53d333,_0x2d9b87){return _0x53d333===_0x2d9b87;},'\x59\x69\x4d\x44\x55':'\x76\x76\x58\x42\x47','\x72\x43\x67\x4a\x68':function(_0x8047d9,_0x398be6){return _0x8047d9(_0x398be6);},'\x59\x59\x4d\x47\x61':function(_0x1ced4c,_0x11d137){return _0x1ced4c||_0x11d137;},'\x79\x43\x43\x6d\x43':function(_0xced3d7,_0x25db55){return _0xced3d7===_0x25db55;},'\x69\x6c\x70\x6f\x57':_0x1874f8(0x358,'\x63\x6f\x5e\x24'),'\x55\x4a\x76\x41\x48':_0x1874f8(0x342,'\x6c\x57\x4d\x30'),'\x74\x4f\x62\x59\x4f':function(_0x4f5c67,_0x2af355){return _0x4f5c67(_0x2af355);}},_0x2bfc91=Array[_0x1874f8(0x44a,'\x71\x4b\x61\x4b')](_0x3bdae8)?_0x3bdae8:[],_0x36ad6c=[];for(const _0x1ba6b4 of _0x2bfc91){if(_0x36e87d[_0x1874f8(0x472,'\x72\x76\x61\x5d')](_0x36e87d[_0x1874f8(0x4bb,'\x4b\x64\x78\x78')],_0x36e87d[_0x1874f8(0x205,'\x78\x56\x4c\x45')])){const _0x215060=_0x36e87d[_0x1874f8(0x24c,'\x68\x33\x64\x45')](String,_0x36e87d[_0x1874f8(0x634,'\x41\x31\x43\x39')](_0x1ba6b4,''))['\x74\x72\x69\x6d']();if(!_0x215060)continue;if(_0x215060[_0x1874f8(0x3ea,'\x51\x70\x6f\x4c')+'\x74\x68'](_0x1874f8(0x5ec,'\x6c\x23\x7a\x76'))){if(_0x36e87d[_0x1874f8(0x781,'\x6b\x70\x71\x4c')](_0x36e87d[_0x1874f8(0x517,'\x4b\x28\x32\x23')],_0x1874f8(0x689,'\x6f\x68\x54\x38'))){const _0x2ca8d7=_0x36e87d[_0x1874f8(0x61d,'\x72\x76\x61\x5d')](_0x2f8a01,_0x215060[_0x1874f8(0x862,'\x43\x6a\x77\x54')](_0x36e87d[_0x1874f8(0x29c,'\x51\x70\x6f\x4c')][_0x1874f8(0x238,'\x66\x4c\x65\x47')]));if(_0x2ca8d7)_0x36ad6c[_0x1874f8(0x69e,'\x68\x33\x64\x45')](_0x1874f8(0x5e8,'\x4b\x28\x32\x23')+'\x6f\x72\x6d\x3a'+_0x36e87d[_0x1874f8(0x5c5,'\x4a\x74\x4a\x4f')](_0x41384f,_0x2ca8d7));continue;}else _0x4a393a=_0x550c49[_0x1874f8(0x804,'\x56\x30\x35\x5a')+_0x1874f8(0x2dc,'\x67\x56\x36\x28')](_0x2d37a9,_0x1874f8(0x7e2,'\x72\x76\x61\x5d'));}_0x36ad6c[_0x1874f8(0x83f,'\x43\x6a\x77\x54')](_0x215060);}else{if(_0x36e87d[_0x1874f8(0x477,'\x43\x6a\x77\x54')](_0x4bb05e,!_0x5363a9))return{'\x73\x74\x61\x74\x75\x73':_0x36e87d[_0x1874f8(0x3a1,'\x30\x24\x52\x66')],'\x73\x63\x6f\x72\x65':0.85,'\x6e\x6f\x74\x65':_0x1874f8(0x641,'\x4b\x28\x32\x23')+'\x65\x61\x72\x65\x64'};if(_0x36e87d['\x65\x75\x64\x6f\x4f'](_0xeb9076,_0xef8166))return{'\x73\x74\x61\x74\x75\x73':_0x1874f8(0x819,'\x52\x40\x52\x65'),'\x73\x63\x6f\x72\x65':0.2,'\x6e\x6f\x74\x65':_0x36e87d[_0x1874f8(0x27c,'\x63\x30\x6e\x66')]};const _0x56224f={};_0x56224f[_0x1874f8(0x454,'\x51\x70\x6f\x4c')]=_0x36e87d[_0x1874f8(0x898,'\x43\x6a\x77\x54')],_0x56224f[_0x1874f8(0x522,'\x56\x30\x35\x5a')]=0.15,_0x56224f[_0x1874f8(0x719,'\x6c\x57\x4d\x30')]=_0x36e87d[_0x1874f8(0x631,'\x67\x56\x36\x28')];if(!_0x1abf81&&_0x4845cf)return _0x56224f;const _0x15eedc={};return _0x15eedc['\x73\x74\x61\x74\x75\x73']=_0x36e87d[_0x1874f8(0x4dc,'\x6f\x68\x54\x38')],_0x15eedc[_0x1874f8(0x800,'\x44\x6c\x68\x4d')]=0.6,_0x15eedc[_0x1874f8(0x518,'\x70\x23\x36\x65')]=_0x36e87d['\x51\x51\x4d\x6d\x72'],_0x15eedc;}}return _0x36ad6c;}function _0x319613(_0xf4e34f){const _0x19cabb=_0x24f893,_0x45ccb8={'\x74\x55\x7a\x62\x51':function(_0x452a63,_0x317bdb){return _0x452a63(_0x317bdb);}},_0x142967=_0x45ccb8[_0x19cabb(0x5ac,'\x48\x6d\x74\x4d')](_0x4d1e86,_0xf4e34f),_0xdf231a=Array[_0x19cabb(0x2b3,'\x44\x6c\x68\x4d')](new Set(_0x142967['\x66\x69\x6c\x74\x65\x72'](Boolean)))[_0x19cabb(0x48c,'\x63\x30\x6e\x66')]();return _0xdf231a[_0x19cabb(0x393,'\x63\x4f\x21\x4d')]('\x7c')||'\x28\x6e\x6f\x6e\x65\x29';}function _0x1a17ff(_0x2e4e0a){const _0x245ec5=_0x24f893,_0xa0153e={'\x72\x6e\x68\x67\x53':function(_0x209485,_0x1bff76){return _0x209485!==_0x1bff76;},'\x5a\x67\x78\x67\x42':_0x245ec5(0x2fe,'\x58\x39\x49\x51'),'\x66\x46\x56\x4e\x6a':function(_0x42af20,_0x34013c){return _0x42af20||_0x34013c;},'\x53\x54\x70\x42\x59':'\x65\x72\x72\x73\x69\x67\x3a','\x67\x55\x58\x41\x65':function(_0x9ba5a1,_0x5597d3){return _0x9ba5a1(_0x5597d3);}},_0xbe0376=Array[_0x245ec5(0x774,'\x67\x56\x36\x28')](_0x2e4e0a)?_0x2e4e0a:[];for(const _0x37071f of _0xbe0376){if(_0xa0153e[_0x245ec5(0x646,'\x4e\x70\x6e\x7a')](_0x245ec5(0x38c,'\x24\x6a\x6c\x23'),_0xa0153e[_0x245ec5(0x3fc,'\x78\x56\x4c\x45')])){const _0x4f0eb7=String(_0xa0153e[_0x245ec5(0x603,'\x5b\x2a\x25\x62')](_0x37071f,''));if(_0x4f0eb7[_0x245ec5(0x5fc,'\x67\x56\x36\x28')+'\x74\x68'](_0xa0153e[_0x245ec5(0x764,'\x50\x61\x6e\x76')]))return _0xa0153e[_0x245ec5(0x4ff,'\x72\x76\x61\x5d')](_0x2f8a01,_0x4f0eb7[_0x245ec5(0x828,'\x72\x76\x61\x5d')](_0xa0153e['\x53\x54\x70\x42\x59'][_0x245ec5(0x893,'\x70\x23\x36\x65')]));}else _0x4b57e3[_0x245ec5(0x617,'\x43\x6a\x77\x54')]+=-0x132a+0x50b+-0x1c4*-0x8,_0x1139d7['\x63\x6f\x6e\x73\x65\x63\x75\x74'+_0x245ec5(0x768,'\x4a\x26\x39\x41')+'\x74']=-0x1*-0x21e5+-0x1*0x41b+0x6*-0x4f7;}return null;}function _0x1dcf72(){const _0x42461d=_0x24f893,_0x22b07b={'\x50\x62\x72\x47\x63':function(_0x4d92d9){return _0x4d92d9();},'\x75\x4b\x69\x6e\x75':_0x42461d(0x2a1,'\x41\x31\x43\x39')+_0x42461d(0x30c,'\x44\x6b\x41\x4f')+'\x6e\x6c'},_0x373c84=_0x22b07b[_0x42461d(0x6d3,'\x66\x4c\x65\x47')](_0x32f7d2);return process.env.MEMORY_GRAPH_PATH||_0x2675e0[_0x42461d(0x3aa,'\x44\x6c\x68\x4d')](_0x373c84,_0x22b07b[_0x42461d(0x42c,'\x6b\x70\x71\x4c')]);}function _0x5ed1f9(){const _0x31f87f=_0x24f893,_0x3af3e9={'\x49\x74\x5a\x64\x4e':function(_0x4e9805){return _0x4e9805();},'\x6f\x53\x4d\x6d\x42':_0x31f87f(0x3e5,'\x52\x40\x52\x65')+_0x31f87f(0x635,'\x6c\x57\x4d\x30')+_0x31f87f(0x826,'\x5b\x36\x72\x37')};return _0x2675e0[_0x31f87f(0x270,'\x4b\x64\x78\x78')](_0x3af3e9[_0x31f87f(0x3c0,'\x6c\x23\x7a\x76')](_0x32f7d2),_0x3af3e9['\x6f\x53\x4d\x6d\x42']);}function _0xffdc01(_0x40caf6){const _0x5dc53d=_0x24f893,_0x430dff={'\x55\x72\x49\x43\x73':function(_0x12558e){return _0x12558e();},'\x5a\x57\x49\x45\x48':function(_0x401088,_0x188d78){return _0x401088(_0x188d78);},'\x70\x42\x78\x55\x4f':function(_0x241f01,_0x425619){return _0x241f01===_0x425619;},'\x64\x6a\x71\x77\x6f':function(_0x23ab1c,_0x526891){return _0x23ab1c(_0x526891);},'\x48\x41\x54\x72\x4e':function(_0x497a55,_0x3dbd1c){return _0x497a55(_0x3dbd1c);},'\x50\x54\x76\x53\x6c':function(_0x2531f8,_0x350ae2){return _0x2531f8||_0x350ae2;},'\x6c\x66\x6e\x7a\x59':function(_0x1a31f6){return _0x1a31f6();},'\x6e\x43\x44\x51\x5a':_0x5dc53d(0x89c,'\x46\x46\x5e\x25')+_0x5dc53d(0x36a,'\x70\x30\x56\x79')+'\x74\x65','\x61\x4a\x63\x73\x6c':function(_0x529123,_0x5496f3){return _0x529123||_0x5496f3;},'\x79\x56\x51\x5a\x48':_0x5dc53d(0x770,'\x56\x30\x35\x5a'),'\x75\x49\x62\x68\x42':_0x5dc53d(0x57b,'\x71\x4b\x61\x4b'),'\x62\x53\x68\x70\x61':function(_0x55e414,_0x591156){return _0x55e414(_0x591156);},'\x51\x69\x49\x51\x79':function(_0x50b7bc,_0x554a8d){return _0x50b7bc===_0x554a8d;},'\x48\x78\x59\x49\x4b':_0x5dc53d(0x818,'\x58\x39\x49\x51'),'\x65\x4c\x76\x4c\x6a':_0x5dc53d(0x5da,'\x4b\x28\x32\x23')+'\x67','\x73\x7a\x66\x54\x56':function(_0x44ff58,_0x23312a){return _0x44ff58!==_0x23312a;},'\x68\x44\x6b\x42\x53':_0x5dc53d(0x709,'\x41\x31\x43\x39'),'\x48\x64\x66\x45\x54':function(_0x4cfc76){return _0x4cfc76();},'\x46\x54\x69\x78\x4b':'\x65\x76\x6f\x6c\x75\x74\x69\x6f'+_0x5dc53d(0x814,'\x50\x64\x35\x53')+'\x66\x79\x5f\x73\x74\x61\x74\x65'+_0x5dc53d(0x3f2,'\x71\x4b\x61\x4b'),'\x4d\x53\x4b\x57\x46':function(_0x191db6,_0x4b49e1,_0x28e4d2){return _0x191db6(_0x4b49e1,_0x28e4d2);},'\x4f\x57\x63\x42\x43':function(_0x47f44e,_0x13ab71){return _0x47f44e===_0x13ab71;},'\x67\x56\x58\x42\x45':_0x5dc53d(0x4e8,'\x46\x46\x5e\x25'),'\x4c\x45\x43\x7a\x56':function(_0x27a032,_0x440e9a){return _0x27a032<_0x440e9a;},'\x51\x4c\x4f\x68\x42':function(_0x363d79,_0x18ae54){return _0x363d79(_0x18ae54);},'\x74\x6b\x70\x47\x4a':_0x5dc53d(0x4d3,'\x50\x64\x35\x53')+'\x64','\x45\x52\x43\x48\x73':function(_0x1355be,_0x168eb4){return _0x1355be!==_0x168eb4;},'\x6c\x5a\x42\x47\x5a':_0x5dc53d(0x765,'\x30\x35\x70\x72')+'\x65','\x42\x57\x6a\x69\x51':function(_0x65a893,_0x899f0a){return _0x65a893(_0x899f0a);},'\x66\x71\x61\x47\x6e':'\x65\x76\x6f\x6c\x76\x65\x72\x2d'+_0x5dc53d(0x59d,'\x70\x30\x56\x79'),'\x43\x71\x58\x68\x78':_0x5dc53d(0x299,'\x44\x6c\x68\x4d')+_0x5dc53d(0x70d,'\x5b\x2a\x25\x62')};let _0x522236=_0x430dff[_0x5dc53d(0x5aa,'\x24\x6a\x6c\x23')];try{if('\x4b\x7a\x4b\x73\x57'===_0x5dc53d(0x2de,'\x6f\x68\x54\x38')){const _0x258e18=_0x430dff[_0x5dc53d(0x700,'\x78\x56\x4c\x45')](_0x201bd8);_0x3d3f90(_0x258e18,_0x3ec7b1),_0x430dff[_0x5dc53d(0x3eb,'\x6c\x57\x4d\x30')](_0x55974f,_0x258e18),_0x430dff['\x5a\x57\x49\x45\x48'](_0x2e0766,_0x26cd8f);}else _0x522236=require(_0x430dff[_0x5dc53d(0x2ad,'\x63\x6f\x5e\x24')])[_0x5dc53d(0x257,'\x57\x38\x6b\x49')+_0x5dc53d(0x1ef,'\x24\x6a\x6c\x23')+_0x5dc53d(0x2a6,'\x72\x76\x61\x5d')]();}catch(_0x36f7cb){_0x522236=_0x430dff['\x48\x78\x59\x49\x4b'];}if(_0x430dff[_0x5dc53d(0x744,'\x66\x4c\x65\x47')](_0x522236,_0x430dff[_0x5dc53d(0x66d,'\x70\x30\x56\x79')]))return null;let _0x3f313b=null;try{const _0x2f676f=_0x2675e0[_0x5dc53d(0x288,'\x52\x40\x52\x65')](_0x430dff[_0x5dc53d(0x2b4,'\x6f\x68\x54\x38')](_0x32f7d2),_0x430dff[_0x5dc53d(0x49c,'\x50\x29\x47\x65')]),_0x2b06bd={};_0x2b06bd[_0x5dc53d(0x6db,'\x4b\x36\x25\x33')]=null;const _0x19f7ae=_0x430dff[_0x5dc53d(0x41e,'\x63\x6f\x5e\x24')](_0x1f80a3,_0x2f676f,_0x2b06bd);_0x3f313b=_0x19f7ae&&_0x19f7ae[_0x5dc53d(0x7bd,'\x6c\x57\x4d\x30')]?_0x19f7ae['\x6c\x61\x73\x74\x5f\x72\x75\x6e']:null;}catch(_0x4a9e11){if(_0x430dff['\x4f\x57\x63\x42\x43'](_0x5dc53d(0x26c,'\x4b\x28\x32\x23'),_0x430dff[_0x5dc53d(0x7b5,'\x67\x56\x36\x28')])){const _0x171b0d=_0x307c5b&&_0x430dff[_0x5dc53d(0x422,'\x5b\x2a\x25\x62')](typeof _0x5d9efe,'\x6f\x62\x6a\x65\x63\x74')?_0x7ccd62:null,_0x2eaa12=_0x171b0d&&_0x171b0d[_0x5dc53d(0x584,'\x78\x56\x4c\x45')]?_0x430dff[_0x5dc53d(0x48b,'\x4f\x4b\x4b\x62')](_0x268c46,_0x171b0d[_0x5dc53d(0x889,'\x47\x46\x75\x74')]):null,_0x4a2803=_0x171b0d&&_0x171b0d['\x69\x64']?_0x430dff[_0x5dc53d(0x611,'\x51\x70\x6f\x4c')](_0x1c3503,_0x171b0d['\x69\x64']):null;if(_0x430dff[_0x5dc53d(0x284,'\x4b\x36\x25\x33')](!_0x2eaa12,!_0x4a2803))return null;const _0xe7d96b=_0x430dff[_0x5dc53d(0x3be,'\x44\x6c\x68\x4d')](_0x1793b8),_0x324a4f=_0x430dff['\x5a\x57\x49\x45\x48'](_0xc44e33,_0x276fea),_0x431bb2={'\x74\x79\x70\x65':_0x5dc53d(0x466,'\x75\x45\x5a\x6f')+_0x5dc53d(0x392,'\x72\x76\x61\x5d'),'\x6b\x69\x6e\x64':_0x430dff['\x6e\x43\x44\x51\x5a'],'\x69\x64':_0x5dc53d(0x252,'\x6f\x68\x54\x38')+_0x5b2c43['\x6e\x6f\x77']()+'\x5f'+_0x430dff[_0x5dc53d(0x655,'\x44\x6c\x68\x4d')](_0x310a4d,_0x2eaa12+'\x7c'+_0x4a2803+(_0x5dc53d(0x81f,'\x58\x39\x49\x51')+'\x6c\x7c')+_0xe7d96b),'\x74\x73':_0xe7d96b,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0x324a4f,'\x73\x69\x67\x6e\x61\x6c\x73':_0x61e7f7[_0x5dc53d(0x3d0,'\x68\x33\x64\x45')](_0x57b9b5)?_0x5d7359:[]},'\x65\x78\x74\x65\x72\x6e\x61\x6c':{'\x73\x6f\x75\x72\x63\x65':_0x430dff['\x61\x4a\x63\x73\x6c'](_0x33c44c,_0x430dff[_0x5dc53d(0x263,'\x4f\x4b\x4b\x62')]),'\x72\x65\x63\x65\x69\x76\x65\x64\x5f\x61\x74':_0xe7d96b},'\x61\x73\x73\x65\x74':{'\x74\x79\x70\x65':_0x2eaa12,'\x69\x64':_0x4a2803},'\x63\x61\x6e\x64\x69\x64\x61\x74\x65':{'\x74\x72\x69\x67\x67\x65\x72':_0x430dff[_0x5dc53d(0x538,'\x47\x46\x75\x74')](_0x2eaa12,_0x430dff[_0x5dc53d(0x354,'\x56\x30\x35\x5a')])&&_0x49aa24[_0x5dc53d(0x558,'\x4a\x26\x39\x41')](_0x171b0d[_0x5dc53d(0x39b,'\x63\x30\x6e\x66')])?_0x171b0d[_0x5dc53d(0x535,'\x78\x56\x4c\x45')]:[],'\x67\x65\x6e\x65':_0x430dff['\x70\x42\x78\x55\x4f'](_0x2eaa12,_0x430dff['\x75\x49\x62\x68\x42'])&&_0x171b0d[_0x5dc53d(0x4de,'\x65\x76\x39\x75')]?_0x430dff[_0x5dc53d(0x65e,'\x56\x30\x35\x5a')](_0x1bfc40,_0x171b0d[_0x5dc53d(0x2f2,'\x57\x45\x5e\x4e')]):null,'\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65':_0x430dff[_0x5dc53d(0x414,'\x57\x45\x5e\x4e')](_0x2eaa12,_0x430dff[_0x5dc53d(0x34d,'\x73\x37\x75\x4e')])&&_0x38dc00[_0x5dc53d(0x3b0,'\x68\x33\x64\x45')](_0x430dff[_0x5dc53d(0x35d,'\x57\x45\x5e\x4e')](_0x25759a,_0x171b0d[_0x5dc53d(0x363,'\x56\x30\x35\x5a')+'\x63\x65']))?_0x430dff[_0x5dc53d(0x56a,'\x58\x39\x49\x51')](_0x5c4a6f,_0x171b0d[_0x5dc53d(0x594,'\x48\x6d\x74\x4d')+'\x63\x65']):null}};return _0x430dff[_0x5dc53d(0x580,'\x4b\x36\x25\x33')](_0x36cc2e,_0x431bb2),_0x431bb2;}else return null;}if(!_0x3f313b)return null;const _0x136d90=_0x40caf6&&_0x40caf6[_0x5dc53d(0x4a6,'\x4e\x70\x6e\x7a')+'\x61\x74']?Date[_0x5dc53d(0x85b,'\x51\x70\x6f\x4c')](_0x40caf6[_0x5dc53d(0x614,'\x6f\x68\x54\x38')+'\x61\x74']):NaN,_0x355b2b=_0x3f313b[_0x5dc53d(0x532,'\x5b\x36\x72\x37')+'\x61\x74']?Date['\x70\x61\x72\x73\x65'](_0x3f313b[_0x5dc53d(0x81e,'\x4a\x74\x4a\x4f')+'\x61\x74']):NaN;if(!Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x136d90)||!Number[_0x5dc53d(0x8a0,'\x4b\x28\x32\x23')](_0x355b2b)||_0x430dff['\x4c\x45\x43\x7a\x56'](_0x355b2b,_0x136d90))return null;const _0x1efd55=_0x3f313b[_0x5dc53d(0x4d4,'\x4b\x36\x25\x33')+_0x5dc53d(0x760,'\x50\x64\x35\x53')]?_0x430dff[_0x5dc53d(0x2e5,'\x24\x6a\x6c\x23')](String,_0x3f313b[_0x5dc53d(0x6ac,'\x51\x70\x6f\x4c')+_0x5dc53d(0x4af,'\x63\x30\x6e\x66')]):_0x430dff[_0x5dc53d(0x287,'\x56\x30\x35\x5a')];if(_0x430dff[_0x5dc53d(0x31a,'\x5b\x2a\x25\x62')](_0x1efd55,_0x5dc53d(0x57f,'\x50\x29\x47\x65'))&&_0x430dff[_0x5dc53d(0x852,'\x63\x30\x6e\x66')](_0x1efd55,_0x430dff[_0x5dc53d(0x70e,'\x52\x40\x52\x65')]))return null;const _0x29bce1=_0x3f313b[_0x5dc53d(0x68f,'\x57\x38\x6b\x49')+_0x5dc53d(0x57d,'\x4a\x74\x4a\x4f')]?_0x430dff['\x62\x53\x68\x70\x61'](String,_0x3f313b[_0x5dc53d(0x2d9,'\x75\x45\x5a\x6f')+_0x5dc53d(0x3ee,'\x57\x45\x5e\x4e')]):null;if(!_0x29bce1)return null;return{'\x72\x65\x75\x73\x65\x64\x5f\x61\x73\x73\x65\x74\x5f\x69\x64':_0x29bce1,'\x72\x65\x75\x73\x65\x64\x5f\x63\x68\x61\x69\x6e\x5f\x69\x64':_0x3f313b[_0x5dc53d(0x773,'\x57\x38\x6b\x49')+_0x5dc53d(0x630,'\x5b\x36\x72\x37')]?_0x430dff[_0x5dc53d(0x81d,'\x67\x56\x36\x28')](String,_0x3f313b[_0x5dc53d(0x4dd,'\x70\x46\x25\x2a')+_0x5dc53d(0x67a,'\x63\x30\x6e\x66')]):null,'\x73\x6f\x75\x72\x63\x65\x5f\x74\x79\x70\x65':_0x1efd55,'\x72\x65\x70\x6f\x72\x74\x65\x64\x5f\x62\x79':_0x430dff[_0x5dc53d(0x319,'\x63\x30\x6e\x66')],'\x73\x63\x68\x65\x6d\x61':_0x430dff[_0x5dc53d(0x337,'\x4f\x4b\x4b\x62')]};}function _0x2a4402(_0x3ea900,_0x410774){const _0x28d074=_0x24f893,_0xe21757={'\x55\x48\x76\x56\x61':function(_0x341f1e,_0x199cc3){return _0x341f1e(_0x199cc3);},'\x56\x53\x70\x45\x6a':function(_0x10be63,_0x4f696e){return _0x10be63+_0x4f696e;},'\x72\x4b\x65\x54\x75':_0x28d074(0x88b,'\x75\x45\x5a\x6f')},_0x3388a9=_0x2675e0[_0x28d074(0x3dc,'\x5b\x2a\x25\x62')](_0x3ea900);_0xe21757[_0x28d074(0x279,'\x5b\x2a\x25\x62')](_0x1534b3,_0x3388a9),_0x52037d[_0x28d074(0x2fa,'\x6f\x68\x54\x38')+_0x28d074(0x396,'\x6b\x70\x71\x4c')](_0x3ea900,_0xe21757[_0x28d074(0x4a5,'\x5b\x2a\x25\x62')](JSON[_0x28d074(0x64c,'\x30\x24\x52\x66')+'\x79'](_0x410774),'\x0a'),_0xe21757[_0x28d074(0x2a0,'\x63\x6f\x5e\x24')]);}const _0x2d9cf4=-0xd207*-0x1+0x9d37+-0xfa0e,_0x2ed8b5=0x267f+0x1c1*0x7+-0x3262;let _0x33cf28=0x6b1*-0x1+-0x1*-0x4be+-0x1f3*-0x1,_0x1ac4e5=0x4*0x628+-0x1*0x199+-0x1707;function _0x55483c(){const _0x28c8c0=_0x24f893,_0x285fb9={'\x62\x41\x72\x71\x59':function(_0x5bc275,_0x5e457f){return _0x5bc275(_0x5e457f);},'\x79\x61\x49\x43\x6e':_0x28c8c0(0x4ab,'\x71\x4b\x61\x4b'),'\x51\x53\x50\x6f\x7a':function(_0x77ac8b,_0x1d1f09){return _0x77ac8b!==_0x1d1f09;},'\x69\x72\x76\x4b\x41':'\x66\x61\x6c\x73\x65','\x64\x57\x56\x4d\x61':function(_0x317e6c,_0x316e07){return _0x317e6c!==_0x316e07;}},_0x1774c9=_0x285fb9[_0x28c8c0(0x7b8,'\x51\x70\x6f\x4c')](String,process.env.EVOLVER_MEMORY_GRAPH_AUTO_ROTATE??_0x285fb9[_0x28c8c0(0x32f,'\x72\x76\x61\x5d')])[_0x28c8c0(0x7a2,'\x66\x4c\x65\x47')+_0x28c8c0(0x1f0,'\x6f\x68\x54\x38')]();return _0x285fb9[_0x28c8c0(0x88f,'\x67\x56\x36\x28')](_0x1774c9,_0x285fb9[_0x28c8c0(0x2f0,'\x47\x46\x75\x74')])&&_0x285fb9['\x64\x57\x56\x4d\x61'](_0x1774c9,'\x30')&&_0x285fb9[_0x28c8c0(0x211,'\x44\x6b\x41\x4f')](_0x1774c9,'\x6e\x6f');}function _0x32191a(){const _0x2c600a=_0x24f893,_0x4803bd={'\x64\x54\x68\x42\x48':function(_0x26a7f4,_0x5cf836){return _0x26a7f4(_0x5cf836);},'\x42\x52\x72\x65\x69':function(_0x4d2651,_0x40692){return _0x4d2651>_0x40692;},'\x67\x68\x79\x43\x79':function(_0x2a3f04,_0x10b6f6){return _0x2a3f04*_0x10b6f6;},'\x73\x79\x72\x67\x47':function(_0x2d2d6d,_0x4facbb){return _0x2d2d6d*_0x4facbb;}},_0x3d729b=_0x4803bd[_0x2c600a(0x5ef,'\x4f\x4b\x4b\x62')](Number,process.env.EVOLVER_MEMORY_GRAPH_MAX_SIZE_MB),_0x41a8da=Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x3d729b)&&_0x4803bd[_0x2c600a(0x89b,'\x57\x45\x5e\x4e')](_0x3d729b,0x1d67+-0xee0+-0xe87)?_0x3d729b:-0x1*-0x1154+-0x55*0x4d+0x1*0x8a1;return Math[_0x2c600a(0x561,'\x66\x4c\x65\x47')](_0x4803bd[_0x2c600a(0x32e,'\x70\x46\x25\x2a')](_0x4803bd[_0x2c600a(0x7e4,'\x4f\x4b\x4b\x62')](_0x41a8da,-0xd3f*0x1+-0x179*-0xb+0x86*0x2),-0x4d*-0x6d+0x3*-0x10c+0x19a5*-0x1));}function _0x437821(){const _0x319dc9=_0x24f893,_0x1f4245={'\x54\x50\x59\x6f\x64':function(_0x4aeae3,_0x50b087){return _0x4aeae3(_0x50b087);},'\x57\x46\x44\x45\x6d':function(_0x28bf41,_0x3fd122){return _0x28bf41>=_0x3fd122;}},_0x1891c7=_0x1f4245[_0x319dc9(0x6a8,'\x63\x6f\x5e\x24')](Number,process.env.EVOLVER_MEMORY_GRAPH_RETENTION_COUNT),_0x4a5469=Number[_0x319dc9(0x1fb,'\x48\x6d\x74\x4d')](_0x1891c7)&&_0x1f4245[_0x319dc9(0x2e8,'\x44\x6c\x68\x4d')](_0x1891c7,-0x10ec+-0x187*-0x15+-0xf27)?Math[_0x319dc9(0x6ba,'\x68\x33\x64\x45')](_0x1891c7):0x94+-0x1c27+-0x2*-0xdcd;return _0x4a5469;}const _0x24dc5c=/\.(\d{8,})(?:\.gz)?$/;function _0x464423(_0x549dfc,_0x58ef99){const _0x4140f6=_0x24f893,_0x421fa1={'\x63\x6e\x59\x66\x7a':'\x4a\x6f\x6e\x57\x47','\x4b\x6a\x6b\x78\x47':function(_0x252122,_0x12a3c2){return _0x252122(_0x12a3c2);},'\x4a\x52\x75\x54\x6c':_0x4140f6(0x7ab,'\x6f\x68\x54\x38'),'\x79\x59\x6a\x56\x6b':function(_0x30222d,_0x41e6d4){return _0x30222d+_0x41e6d4;},'\x66\x75\x76\x51\x46':function(_0x2cf144,_0x4d457d){return _0x2cf144===_0x4d457d;},'\x5a\x4a\x63\x53\x4f':_0x4140f6(0x2b0,'\x5b\x2a\x25\x62'),'\x69\x51\x50\x54\x77':_0x4140f6(0x4fc,'\x46\x46\x5e\x25')};try{if(_0x4140f6(0x797,'\x5b\x2a\x25\x62')!==_0x421fa1[_0x4140f6(0x441,'\x4a\x26\x39\x41')])try{return _0x2d0a15['\x70\x61\x72\x73\x65'](_0x413845);}catch(_0x87133a){return null;}else{const _0x502c1b=_0x2675e0[_0x4140f6(0x4b2,'\x63\x30\x6e\x66')](_0x549dfc),_0x538630=_0x2675e0[_0x4140f6(0x542,'\x46\x46\x5e\x25')](_0x549dfc),_0x403adb=_0x421fa1[_0x4140f6(0x285,'\x65\x76\x39\x75')](_0x538630,'\x2e'),_0x2cf738=_0x52037d[_0x4140f6(0x24b,'\x4f\x4b\x4b\x62')+_0x4140f6(0x5a1,'\x63\x30\x6e\x66')](_0x502c1b)[_0x4140f6(0x812,'\x52\x40\x52\x65')](_0x274f78=>_0x274f78[_0x4140f6(0x3ea,'\x51\x70\x6f\x4c')+'\x74\x68'](_0x403adb)&&_0x24dc5c[_0x4140f6(0x7ba,'\x43\x6a\x77\x54')](_0x274f78))[_0x4140f6(0x55f,'\x70\x46\x25\x2a')](_0x421bd8=>{const _0x1933f3=_0x4140f6;if(_0x421fa1[_0x1933f3(0x520,'\x4b\x64\x78\x78')]===_0x421fa1[_0x1933f3(0x4f2,'\x4b\x28\x32\x23')]){const _0x364946=_0x24dc5c[_0x1933f3(0x452,'\x4b\x36\x25\x33')](_0x421bd8);return{'\x6e\x61\x6d\x65':_0x421bd8,'\x74\x73':_0x364946?_0x421fa1[_0x1933f3(0x3e8,'\x44\x6c\x68\x4d')](Number,_0x364946[-0x1d0+0x1b*-0x133+0x2*0x1119]):-0x1d46*-0x1+-0x95*-0x3a+0x8*-0x7e1};}else _0x56e4d7[_0x1933f3(0x80a,'\x66\x4c\x65\x47')](_0x1c9199);})[_0x4140f6(0x583,'\x51\x70\x6f\x4c')]((_0x27f882,_0x10bcbf)=>_0x10bcbf['\x74\x73']-_0x27f882['\x74\x73']),_0x4eecfb=_0x2cf738[_0x4140f6(0x348,'\x63\x30\x6e\x66')](_0x58ef99);for(const _0x2aa813 of _0x4eecfb){if(_0x421fa1[_0x4140f6(0x2ee,'\x63\x6f\x5e\x24')](_0x421fa1[_0x4140f6(0x62e,'\x4f\x4b\x4b\x62')],_0x4140f6(0x5cb,'\x57\x45\x5e\x4e'))){const _0x1280d2={};_0x1280d2[_0x4140f6(0x687,'\x65\x76\x39\x75')]=_0x2eb56d,_0x1280d2[_0x4140f6(0x200,'\x51\x70\x6f\x4c')]=_0x4292a8,_0x13387e[_0x4140f6(0x388,'\x70\x30\x56\x79')](_0x1280d2),_0x5284ac[_0x4140f6(0x76e,'\x71\x4b\x61\x4b')](_0x1f14b9);}else try{if(_0x421fa1['\x66\x75\x76\x51\x46'](_0x421fa1[_0x4140f6(0x341,'\x48\x6d\x74\x4d')],_0x4140f6(0x6b2,'\x51\x70\x6f\x4c'))){const _0x2d2e51=_0x34bc1c[_0x4140f6(0x5c2,'\x4a\x26\x39\x41')+_0x4140f6(0x47b,'\x46\x46\x5e\x25')](_0x2a0b25),_0x6cf383=_0x1fb1ba[_0x4140f6(0x282,'\x72\x76\x61\x5d')](_0x2d2e51);_0x4ebc82[_0x4140f6(0x85a,'\x70\x46\x25\x2a')+_0x4140f6(0x20f,'\x57\x38\x6b\x49')](_0x165b5c+_0x4140f6(0x5ad,'\x50\x61\x6e\x76'),_0x6cf383),_0x58c2e6[_0x4140f6(0x326,'\x70\x30\x56\x79')+'\x6e\x63'](_0x33196a),_0x218f7e=_0x2679a2+_0x4140f6(0x58e,'\x24\x6a\x6c\x23');}else _0x52037d[_0x4140f6(0x61a,'\x4e\x70\x6e\x7a')+'\x6e\x63'](_0x2675e0[_0x4140f6(0x7d8,'\x6f\x68\x54\x38')](_0x502c1b,_0x2aa813[_0x4140f6(0x496,'\x73\x37\x75\x4e')]));}catch(_0x4d634e){}}}}catch(_0x2d0975){}}function _0x532f94(_0x495c16){const _0x164a01=_0x24f893,_0xc3779d={'\x4d\x65\x54\x45\x72':function(_0x5e598d,_0x45b4c4){return _0x5e598d+_0x45b4c4;},'\x4c\x43\x56\x76\x43':function(_0x1c407b,_0x4b8f45){return _0x1c407b(_0x4b8f45);},'\x66\x64\x68\x4f\x6a':function(_0xcc62,_0x3a34ab,_0x2d3c16){return _0xcc62(_0x3a34ab,_0x2d3c16);},'\x45\x52\x4b\x4b\x55':function(_0x32d422){return _0x32d422();},'\x46\x63\x58\x77\x6a':_0x164a01(0x61b,'\x47\x46\x75\x74')+'\x61\x70\x68\x45\x76\x65\x6e\x74','\x42\x69\x6b\x6a\x46':_0x164a01(0x858,'\x66\x4c\x65\x47')+_0x164a01(0x5dd,'\x44\x51\x24\x40')+_0x164a01(0x3ba,'\x56\x30\x35\x5a'),'\x4b\x53\x49\x66\x71':function(_0x48fbed,_0x3e4023){return _0x48fbed(_0x3e4023);},'\x57\x6f\x6b\x46\x59':function(_0x4b3bf6,_0xd7f9e2){return _0x4b3bf6(_0xd7f9e2);},'\x53\x78\x68\x48\x58':function(_0x12a400,_0x542374){return _0x12a400(_0x542374);},'\x72\x4f\x71\x67\x57':function(_0x5b5cc3,_0x1e2123){return _0x5b5cc3(_0x1e2123);},'\x41\x6d\x61\x55\x4c':_0x164a01(0x3af,'\x52\x40\x52\x65'),'\x64\x4c\x63\x78\x6b':_0x164a01(0x3f6,'\x6b\x70\x71\x4c'),'\x4e\x4e\x46\x6b\x55':function(_0x104707,_0x101f15){return _0x104707>_0x101f15;},'\x62\x6c\x4c\x46\x43':function(_0x516189,_0x34b94d){return _0x516189*_0x34b94d;},'\x66\x4c\x47\x78\x70':function(_0x3d2b6d,_0x10629a){return _0x3d2b6d*_0x10629a;},'\x70\x64\x48\x55\x70':function(_0x5ee452,_0x6da941){return _0x5ee452*_0x6da941;},'\x74\x6c\x6b\x65\x55':function(_0xd5d66c,_0x55fb9f){return _0xd5d66c===_0x55fb9f;},'\x4c\x51\x46\x65\x53':_0x164a01(0x462,'\x75\x45\x5a\x6f'),'\x4d\x45\x6c\x6a\x54':_0x164a01(0x5eb,'\x73\x37\x75\x4e')};let _0x23afb8=null;try{if(!_0x52037d['\x65\x78\x69\x73\x74\x73\x53\x79'+'\x6e\x63'](_0x495c16))return null;const _0x1c6d59=new Date()['\x74\x6f\x49\x53\x4f\x53\x74\x72'+'\x69\x6e\x67']()[_0x164a01(0x534,'\x6c\x23\x7a\x76')](/[^0-9]/g,'')[_0x164a01(0x44c,'\x24\x6a\x6c\x23')](-0x873*0x1+0x3f5*0x5+0x2*-0x5ab,0x1bf*-0xd+-0x676*0x6+0x3d85),_0xcccbc1=_0x495c16+'\x2e'+_0x1c6d59;_0x52037d[_0x164a01(0x83d,'\x6c\x57\x4d\x30')+'\x6e\x63'](_0x495c16,_0xcccbc1),_0x23afb8=_0xcccbc1;try{if(_0x164a01(0x41f,'\x48\x6d\x74\x4d')===_0xc3779d[_0x164a01(0x7b3,'\x44\x6c\x68\x4d')]){const _0x34e44b=_0xc3779d[_0x164a01(0x831,'\x44\x6c\x68\x4d')](require,_0xc3779d[_0x164a01(0x70c,'\x4f\x35\x66\x62')]),_0x149649=_0xc3779d[_0x164a01(0x2cd,'\x47\x46\x75\x74')](Number,process.env.EVOLVER_ROTATE_GZIP_MAX_MB),_0x96dcbf=Number[_0x164a01(0x2f7,'\x75\x45\x5a\x6f')](_0x149649)&&_0xc3779d[_0x164a01(0x7b2,'\x4f\x4b\x4b\x62')](_0x149649,-0x2434+0x142f+0x1005)?Math[_0x164a01(0x32b,'\x48\x6d\x74\x4d')](_0xc3779d[_0x164a01(0x6ed,'\x44\x51\x24\x40')](_0xc3779d[_0x164a01(0x7c6,'\x68\x7a\x7a\x21')](_0x149649,-0x2aa*0x9+0x13ea+0x810),-0x1a27+0x1630+-0x7f7*-0x1)):_0xc3779d[_0x164a01(0x437,'\x4b\x28\x32\x23')](_0xc3779d[_0x164a01(0x23c,'\x70\x30\x56\x79')](0x53*0x2b+0x1914+-0x1*0x26e5,0x116c+0x137f+-0x20eb),0x2254+0x131a+-0x316e);let _0x126030=![];try{const _0x3e6cfb=_0x52037d[_0x164a01(0x69c,'\x58\x39\x49\x51')](_0xcccbc1);if(_0xc3779d[_0x164a01(0x314,'\x4b\x36\x25\x33')](_0x3e6cfb[_0x164a01(0x5fd,'\x68\x7a\x7a\x21')],_0x96dcbf))_0x126030=!![];}catch(_0x4f5521){}if(!_0x126030){if(_0xc3779d[_0x164a01(0x510,'\x70\x30\x56\x79')](_0xc3779d[_0x164a01(0x697,'\x44\x6c\x68\x4d')],_0xc3779d[_0x164a01(0x438,'\x6b\x70\x71\x4c')])){const _0x38c0cc=_0x3d935a[_0x164a01(0x39a,'\x70\x23\x36\x65')](_0xc3779d[_0x164a01(0x362,'\x47\x46\x75\x74')](_0x2797d9,-0x884+-0x2*-0x194+0x1*0x55d));_0x171279=_0x574208(_0x38c0cc),_0x36276c=_0xc3779d[_0x164a01(0x7aa,'\x70\x30\x56\x79')](_0x3f86c4,_0x38c0cc);}else{const _0x48e285=_0x52037d[_0x164a01(0x62b,'\x50\x61\x6e\x76')+_0x164a01(0x7ca,'\x24\x6a\x6c\x23')](_0xcccbc1),_0x5e88f6=_0x34e44b[_0x164a01(0x5b0,'\x51\x70\x6f\x4c')](_0x48e285);_0x52037d[_0x164a01(0x88a,'\x4f\x4b\x4b\x62')+_0x164a01(0x3f1,'\x58\x39\x49\x51')](_0xcccbc1+_0x164a01(0x387,'\x50\x29\x47\x65'),_0x5e88f6),_0x52037d[_0x164a01(0x5a3,'\x48\x6d\x74\x4d')+'\x6e\x63'](_0xcccbc1),_0x23afb8=_0xcccbc1+'\x2e\x67\x7a';}}}else{const _0x14dbac=_0xc3779d['\x4c\x43\x56\x76\x43'](_0x4474ff,0x115*-0x10+-0xb8d*-0x2+0x206*0x1),_0x5624b2=_0x48b29a(_0x14dbac),_0x112669={};_0x112669['\x73\x75\x63\x63\x65\x73\x73']=0x0,_0x112669[_0x164a01(0x7fa,'\x63\x4f\x21\x4d')]=0x0,_0x112669[_0x164a01(0x1ed,'\x47\x46\x75\x74')]=null;const _0x16e6ed=_0x5624b2[_0x164a01(0x4fb,'\x65\x76\x39\x75')](_0xc3779d[_0x164a01(0x735,'\x5b\x36\x72\x37')](_0xfba05e,_0x2bc32d))||_0x112669,_0x4b8fde={};_0x4b8fde[_0x164a01(0x881,'\x63\x6f\x5e\x24')+'\x65\x5f\x64\x61\x79\x73']=_0x5919fc;const _0x2f0e85=_0xc3779d[_0x164a01(0x69d,'\x44\x51\x24\x40')](_0x26c879,_0x16e6ed,_0x4b8fde),_0x2f19ca=_0xc3779d[_0x164a01(0x5bb,'\x44\x51\x24\x40')](_0x3c9802),_0x22f329={};return _0x22f329['\x6f\x75\x74\x63\x6f\x6d\x65\x5f'+'\x65\x76\x65\x6e\x74\x5f\x69\x64']=_0x52bb18||null,{'\x74\x79\x70\x65':_0xc3779d[_0x164a01(0x6dd,'\x6b\x70\x71\x4c')],'\x6b\x69\x6e\x64':_0xc3779d[_0x164a01(0x65a,'\x63\x30\x6e\x66')],'\x69\x64':_0x164a01(0x7bb,'\x70\x23\x36\x65')+_0xfbfe52[_0x164a01(0x6fc,'\x63\x6f\x5e\x24')]()+'\x5f'+_0xc3779d[_0x164a01(0x4ea,'\x44\x6c\x68\x4d')](_0x5e7b16,_0x20c5e0+('\x7c\x67\x65\x6e\x65\x5f\x6f\x75'+_0x164a01(0x3d3,'\x4a\x26\x39\x41')+_0x164a01(0x46a,'\x4f\x4b\x4b\x62')+'\x7c')+_0x2f19ca),'\x74\x73':_0x2f19ca,'\x67\x65\x6e\x65':{'\x69\x64':_0x10b109(_0xca435f),'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x3a369d||null},'\x65\x64\x67\x65':{'\x67\x65\x6e\x65\x5f\x69\x64':_0xc3779d['\x4c\x43\x56\x76\x43'](_0x298eb5,_0x33c6f0)},'\x73\x74\x61\x74\x73':{'\x73\x75\x63\x63\x65\x73\x73':_0xc3779d[_0x164a01(0x560,'\x63\x30\x6e\x66')](_0x4184a7,_0x16e6ed[_0x164a01(0x46f,'\x65\x76\x39\x75')])||0x246+0x480+-0x66*0x11,'\x66\x61\x69\x6c':_0xc3779d[_0x164a01(0x4c6,'\x6c\x57\x4d\x30')](_0x2748c0,_0x16e6ed[_0x164a01(0x787,'\x58\x39\x49\x51')])||0xcd*-0x28+-0xade+-0x143*-0x22,'\x61\x74\x74\x65\x6d\x70\x74\x73':_0xc3779d[_0x164a01(0x3ca,'\x44\x51\x24\x40')](_0x4f70c0,_0x2f0e85[_0x164a01(0x660,'\x4b\x28\x32\x23')])||-0x1*0x1151+-0x13*-0x1f3+-0x13b8,'\x70':_0x2f0e85['\x70'],'\x64\x65\x63\x61\x79\x5f\x77\x65\x69\x67\x68\x74':_0x2f0e85['\x77'],'\x76\x61\x6c\x75\x65':_0x2f0e85[_0x164a01(0x25e,'\x4b\x36\x25\x33')],'\x68\x61\x6c\x66\x5f\x6c\x69\x66\x65\x5f\x64\x61\x79\x73':_0x43ce5e,'\x75\x70\x64\x61\x74\x65\x64\x5f\x61\x74':_0x2f19ca},'\x64\x65\x72\x69\x76\x65\x64\x5f\x66\x72\x6f\x6d':_0x22f329};}}catch(_0x15e439){}_0xc3779d[_0x164a01(0x3e0,'\x58\x39\x49\x51')](_0x464423,_0x495c16,_0xc3779d[_0x164a01(0x42f,'\x50\x61\x6e\x76')](_0x437821));}catch(_0x13700b){}return _0x23afb8;}function _0x75b076(_0x1ec765,{force:force=![]}={}){const _0x3570d9=_0x24f893,_0x647b30={'\x69\x58\x66\x74\x7a':function(_0x1eab47,_0x5a6d05){return _0x1eab47(_0x5a6d05);},'\x57\x55\x46\x74\x4f':function(_0x1675d7,_0x415b4a){return _0x1675d7(_0x415b4a);},'\x65\x44\x46\x48\x54':function(_0x2f6f5e,_0x26784b){return _0x2f6f5e(_0x26784b);},'\x4d\x69\x48\x42\x42':function(_0x482c46,_0xa577da){return _0x482c46(_0xa577da);},'\x54\x55\x61\x4c\x79':function(_0x10feaa,_0x20e815){return _0x10feaa(_0x20e815);},'\x4e\x50\x71\x66\x6a':_0x3570d9(0x3d2,'\x4a\x26\x39\x41'),'\x49\x6a\x55\x6a\x71':function(_0xd80b4c){return _0xd80b4c();},'\x49\x45\x6e\x59\x79':function(_0x1d1b4d,_0x19f440){return _0x1d1b4d<_0x19f440;},'\x57\x57\x6c\x59\x45':function(_0xab8242,_0x1d1741){return _0xab8242<_0x1d1741;},'\x50\x56\x78\x67\x78':function(_0x68444b,_0x272986){return _0x68444b-_0x272986;},'\x57\x4b\x41\x76\x77':function(_0x242308,_0xc87cae){return _0x242308!==_0xc87cae;},'\x78\x44\x75\x79\x6c':_0x3570d9(0x4be,'\x4a\x74\x4a\x4f'),'\x50\x69\x4c\x61\x56':_0x3570d9(0x4f7,'\x41\x31\x43\x39'),'\x74\x7a\x47\x62\x4f':function(_0x4ddd08,_0x6a4bbd){return _0x4ddd08<_0x6a4bbd;},'\x4f\x43\x4b\x45\x59':function(_0x1f2284,_0xb7f415){return _0x1f2284(_0xb7f415);},'\x77\x71\x42\x48\x53':_0x3570d9(0x79c,'\x70\x30\x56\x79')};if(!_0x647b30[_0x3570d9(0x3c2,'\x65\x76\x39\x75')](_0x55483c))return null;_0x1ac4e5+=-0x8a1*0x1+0x1*-0x1424+0x1cc6;const _0x2fd0cc=Date[_0x3570d9(0x295,'\x72\x76\x61\x5d')]();if(!force&&_0x647b30[_0x3570d9(0x43b,'\x63\x4f\x21\x4d')](_0x1ac4e5,_0x2ed8b5)&&_0x647b30['\x57\x57\x6c\x59\x45'](_0x647b30[_0x3570d9(0x6aa,'\x65\x76\x39\x75')](_0x2fd0cc,_0x33cf28),_0x2d9cf4))return null;_0x1ac4e5=0x1f76+-0x1*0xe83+0x10f3*-0x1,_0x33cf28=_0x2fd0cc;try{if(_0x647b30[_0x3570d9(0x68e,'\x5b\x2a\x25\x62')](_0x647b30[_0x3570d9(0x4c7,'\x5b\x2a\x25\x62')],_0x647b30[_0x3570d9(0x625,'\x4b\x36\x25\x33')])){if(!_0x52037d[_0x3570d9(0x6c3,'\x68\x33\x64\x45')+'\x6e\x63'](_0x1ec765))return null;const _0x165712=_0x52037d['\x73\x74\x61\x74\x53\x79\x6e\x63'](_0x1ec765);if(_0x647b30[_0x3570d9(0x2e1,'\x44\x6b\x41\x4f')](_0x165712[_0x3570d9(0x615,'\x58\x39\x49\x51')],_0x647b30[_0x3570d9(0x335,'\x43\x6a\x77\x54')](_0x32191a)))return null;return _0x647b30['\x4f\x43\x4b\x45\x59'](_0x532f94,_0x1ec765);}else{const _0x58ef16=_0x647b30['\x69\x58\x66\x74\x7a'](_0x111cc9,{'\x73\x69\x67\x6e\x61\x6c\x4b\x65\x79':_0x4cc2a5(_0x249900[_0x3570d9(0x4b9,'\x56\x30\x35\x5a')+'\x65\x79']||_0x3570d9(0x577,'\x72\x76\x61\x5d')),'\x73\x69\x67\x6e\x61\x6c\x73':_0x12a074[_0x3570d9(0x774,'\x67\x56\x36\x28')](_0x10f497['\x73\x69\x67\x6e\x61\x6c\x73'])?_0x85139[_0x3570d9(0x2ec,'\x57\x45\x5e\x4e')]:[],'\x67\x65\x6e\x65\x49\x64':_0x647b30[_0x3570d9(0x627,'\x67\x56\x36\x28')](_0x255b02,_0x185be0),'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':null,'\x6f\x75\x74\x63\x6f\x6d\x65\x45\x76\x65\x6e\x74\x49\x64':_0x12904d['\x69\x64'],'\x68\x61\x6c\x66\x4c\x69\x66\x65\x44\x61\x79\x73':0x1e});_0x647b30[_0x3570d9(0x886,'\x75\x45\x5a\x6f')](_0x32131a,_0x58ef16);const _0x177192=_0x647b30[_0x3570d9(0x708,'\x46\x46\x5e\x25')](_0x560a1e,{'\x67\x65\x6e\x65\x49\x64':_0x647b30[_0x3570d9(0x579,'\x78\x56\x4c\x45')](_0x1e0928,_0x3ec7d7),'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':null,'\x6f\x75\x74\x63\x6f\x6d\x65\x45\x76\x65\x6e\x74\x49\x64':_0x4d6ba6['\x69\x64'],'\x68\x61\x6c\x66\x4c\x69\x66\x65\x44\x61\x79\x73':0x2d});_0x647b30[_0x3570d9(0x674,'\x30\x24\x52\x66')](_0x27de82,_0x177192);}}catch(_0x1051bf){if(_0x647b30[_0x3570d9(0x468,'\x4b\x28\x32\x23')]!==_0x647b30['\x77\x71\x42\x48\x53'])_0x528201=hqrXBE[_0x3570d9(0x608,'\x44\x51\x24\x40')];else return null;}}function _0x253a28(){const _0x1ef732=_0x24f893,_0x14f846={'\x50\x73\x55\x54\x59':'\x64\x72\x69\x66\x74','\x52\x56\x4d\x67\x73':_0x1ef732(0x5a7,'\x24\x6a\x6c\x23'),'\x66\x67\x53\x76\x6c':_0x1ef732(0x50a,'\x44\x6b\x41\x4f'),'\x41\x6e\x69\x44\x56':function(_0x1b405e){return _0x1b405e();},'\x6a\x75\x49\x6d\x46':function(_0x4b4fc4,_0x38f4ed){return _0x4b4fc4>=_0x38f4ed;},'\x46\x52\x65\x61\x78':function(_0x390005,_0x32198b){return _0x390005===_0x32198b;},'\x75\x54\x6c\x43\x6f':_0x1ef732(0x5cd,'\x48\x6d\x74\x4d'),'\x45\x43\x48\x4a\x6a':function(_0x404237,_0x19a73a){return _0x404237(_0x19a73a);}};try{if(!_0x55483c())return;const _0x13bc42=_0x14f846[_0x1ef732(0x7fc,'\x4b\x28\x32\x23')](_0x1dcf72);if(!_0x52037d[_0x1ef732(0x379,'\x4b\x36\x25\x33')+'\x6e\x63'](_0x13bc42))return;const _0x3bc2bd=_0x52037d[_0x1ef732(0x81b,'\x70\x23\x36\x65')](_0x13bc42);if(_0x14f846[_0x1ef732(0x464,'\x43\x6a\x77\x54')](_0x3bc2bd[_0x1ef732(0x595,'\x67\x56\x36\x28')],_0x14f846[_0x1ef732(0x72d,'\x73\x37\x75\x4e')](_0x32191a))){if(_0x14f846[_0x1ef732(0x453,'\x47\x46\x75\x74')](_0x1ef732(0x250,'\x46\x46\x5e\x25'),_0x14f846['\x75\x54\x6c\x43\x6f']))_0x14f846[_0x1ef732(0x529,'\x71\x4b\x61\x4b')](_0x532f94,_0x13bc42);else{const _0x32be89=_0x549dc5[_0x1ef732(0x774,'\x67\x56\x36\x28')](_0x392d07)?_0x2a04fa[_0x1ef732(0x52f,'\x48\x6d\x74\x4d')]:0x1422+-0x25f*0x3+-0xd05,_0x30002b=_0x4b10af?_0x14f846[_0x1ef732(0x316,'\x67\x56\x36\x28')]:_0x14f846[_0x1ef732(0x649,'\x5b\x2a\x25\x62')],_0x5504c4=_0xad3b9f?''+_0x1c0e19+(_0x372d57?'\x28'+_0x5021ac+'\x29':''):_0x14f846[_0x1ef732(0x2b8,'\x73\x37\x75\x4e')];return'\x47\x69\x76\x65\x6e\x20\x73\x69'+_0x1ef732(0x403,'\x50\x29\x47\x65')+'\x3d'+_0x5d80e7+_0x1ef732(0x64e,'\x4e\x70\x6e\x7a')+_0x32be89+(_0x1ef732(0x450,'\x4b\x36\x25\x33')+_0x1ef732(0x84b,'\x6c\x23\x7a\x76')+_0x1ef732(0x54d,'\x68\x33\x64\x45')+'\x3d')+_0x5504c4+(_0x1ef732(0x856,'\x57\x38\x6b\x49')+_0x1ef732(0x210,'\x63\x6f\x5e\x24'))+_0x30002b+(_0x1ef732(0x334,'\x52\x40\x52\x65')+_0x1ef732(0x810,'\x6b\x70\x71\x4c')+_0x1ef732(0x484,'\x5b\x36\x72\x37')+_0x1ef732(0x5e2,'\x75\x45\x5a\x6f')+_0x1ef732(0x35b,'\x56\x30\x35\x5a')+_0x1ef732(0x447,'\x66\x4c\x65\x47')+_0x1ef732(0x420,'\x46\x46\x5e\x25')+_0x1ef732(0x4ac,'\x4f\x35\x66\x62'));}}}catch(_0x55a565){}}_0x253a28();const _0x738f85=new Set([_0x24f893(0x69a,'\x4e\x70\x6e\x7a'),_0x24f893(0x3df,'\x78\x56\x4c\x45')+'\x6f\x6e',_0x24f893(0x5ab,'\x51\x70\x6f\x4c')+'\x69\x74',_0x24f893(0x3ba,'\x56\x30\x35\x5a'),'\x6d\x75\x74\x61\x74\x69\x6f\x6e'+_0x24f893(0x4a3,'\x4b\x36\x25\x33'),'\x73\x6f\x6c\x69\x64\x69\x66\x79']);function _0x2bb36c(_0x299874){const _0x2b7dae=_0x24f893,_0x161234={'\x48\x6d\x69\x56\x48':function(_0x59f0fe){return _0x59f0fe();},'\x57\x47\x7a\x41\x61':_0x2b7dae(0x4e4,'\x6f\x68\x54\x38')+_0x2b7dae(0x20d,'\x75\x45\x5a\x6f')+_0x2b7dae(0x899,'\x57\x45\x5e\x4e'),'\x62\x62\x43\x42\x50':function(_0x2cb8aa,_0x5465f0){return _0x2cb8aa!==_0x5465f0;},'\x7a\x53\x54\x48\x4e':_0x2b7dae(0x675,'\x63\x6f\x5e\x24'),'\x4a\x62\x6c\x78\x56':function(_0x28ba84,_0x56d8e5){return _0x28ba84===_0x56d8e5;},'\x54\x4c\x66\x52\x47':function(_0xa46d9a,_0x33eff9){return _0xa46d9a(_0x33eff9);},'\x50\x71\x4e\x50\x57':_0x2b7dae(0x24f,'\x4a\x26\x39\x41')+_0x2b7dae(0x1fd,'\x4b\x28\x32\x23'),'\x69\x47\x75\x74\x55':_0x2b7dae(0x59f,'\x6c\x57\x4d\x30'),'\x42\x78\x72\x73\x55':function(_0x5be55b,_0x371a03){return _0x5be55b===_0x371a03;},'\x53\x7a\x43\x69\x45':function(_0x482635,_0x399e9c){return _0x482635+_0x399e9c;},'\x59\x70\x75\x62\x52':_0x2b7dae(0x45d,'\x4a\x74\x4a\x4f')+_0x2b7dae(0x783,'\x5b\x2a\x25\x62')+'\x74','\x64\x68\x7a\x44\x6a':function(_0x130da4,_0x101c03){return _0x130da4!==_0x101c03;},'\x6b\x79\x48\x4c\x54':'\x75\x6e\x64\x65\x66\x69\x6e\x65'+'\x64','\x6f\x75\x4f\x43\x6d':'\x46\x75\x63\x4e\x50','\x70\x42\x47\x4c\x45':function(_0x36d486,_0x5687b1,_0xaa9016){return _0x36d486(_0x5687b1,_0xaa9016);},'\x68\x6b\x64\x51\x75':_0x2b7dae(0x67e,'\x63\x4f\x21\x4d')+_0x2b7dae(0x8a6,'\x4f\x4b\x4b\x62'),'\x4e\x54\x55\x73\x4a':function(_0x25a2c1,_0x20bf73){return _0x25a2c1+_0x20bf73;},'\x74\x4e\x41\x50\x44':_0x2b7dae(0x2d4,'\x6f\x68\x54\x38'),'\x52\x75\x4f\x56\x55':_0x2b7dae(0x269,'\x75\x45\x5a\x6f')};if(!_0x299874||_0x161234[_0x2b7dae(0x256,'\x41\x31\x43\x39')](typeof _0x299874,_0x161234[_0x2b7dae(0x859,'\x48\x6d\x74\x4d')]))return;if(_0x161234[_0x2b7dae(0x460,'\x43\x6a\x77\x54')](process.env.MEMORY_GRAPH_SYNC_HUB,'\x30'))return;const _0x3a2b7e=_0x299874&&_0x299874[_0x2b7dae(0x336,'\x4e\x70\x6e\x7a')]?_0x161234[_0x2b7dae(0x50e,'\x4b\x28\x32\x23')](String,_0x299874[_0x2b7dae(0x6bd,'\x41\x31\x43\x39')]):null;if(!_0x3a2b7e||!_0x738f85['\x68\x61\x73'](_0x3a2b7e))return;let _0x2a05b6;try{_0x2a05b6=_0x161234[_0x2b7dae(0x5e5,'\x50\x64\x35\x53')](require,_0x161234[_0x2b7dae(0x60b,'\x58\x39\x49\x51')]);}catch(_0x3aa9d0){return;}const _0x3094b2=_0x161234[_0x2b7dae(0x3e7,'\x44\x51\x24\x40')](typeof _0x2a05b6['\x67\x65\x74\x48\x75\x62\x55\x72'+'\x6c'],_0x161234[_0x2b7dae(0x839,'\x6f\x68\x54\x38')])?_0x2a05b6['\x67\x65\x74\x48\x75\x62\x55\x72'+'\x6c']():process.env.A2A_HUB_URL||process.env.EVOMAP_HUB_URL||'';if(!_0x3094b2)return;const _0x140333=_0x161234[_0x2b7dae(0x280,'\x41\x31\x43\x39')](typeof _0x2a05b6[_0x2b7dae(0x7d6,'\x68\x33\x64\x45')+'\x64'],_0x161234[_0x2b7dae(0x549,'\x67\x56\x36\x28')])?_0x2a05b6['\x67\x65\x74\x4e\x6f\x64\x65\x49'+'\x64']():null;if(!_0x140333)return;const _0x2f6ee8=typeof _0x2a05b6[_0x2b7dae(0x692,'\x50\x29\x47\x65')+_0x2b7dae(0x6f5,'\x75\x45\x5a\x6f')]===_0x161234['\x69\x47\x75\x74\x55']?_0x2a05b6[_0x2b7dae(0x601,'\x48\x6d\x74\x4d')+_0x2b7dae(0x6f5,'\x75\x45\x5a\x6f')]():null;if(!_0x2f6ee8)return;const _0x3fad57=_0x161234[_0x2b7dae(0x524,'\x56\x30\x35\x5a')](_0x3094b2[_0x2b7dae(0x682,'\x50\x64\x35\x53')](/\/+$/,''),_0x161234[_0x2b7dae(0x5b7,'\x68\x7a\x7a\x21')]),_0x2db121={};_0x2db121[_0x2b7dae(0x769,'\x47\x46\x75\x74')+'\x64']=_0x140333,_0x2db121[_0x2b7dae(0x555,'\x56\x30\x35\x5a')]=_0x299874;const _0x1ea805=JSON['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79'](_0x2db121),_0x5c7913=0x19b7*-0x1+0x586*0x2+0x2233,_0x582032=_0x161234[_0x2b7dae(0x2c9,'\x4f\x35\x66\x62')](typeof AbortSignal,_0x161234[_0x2b7dae(0x246,'\x67\x56\x36\x28')])&&AbortSignal[_0x2b7dae(0x70b,'\x4b\x36\x25\x33')]?AbortSignal[_0x2b7dae(0x3a9,'\x5b\x36\x72\x37')](_0x5c7913):undefined;try{if(_0x161234[_0x2b7dae(0x4d8,'\x47\x46\x75\x74')](_0x2b7dae(0x3e1,'\x57\x38\x6b\x49'),_0x161234[_0x2b7dae(0x704,'\x63\x6f\x5e\x24')])){const _0x390f9d=_0x161234[_0x2b7dae(0x589,'\x4f\x35\x66\x62')](_0x41b1fa,_0x3fad57,{'\x6d\x65\x74\x68\x6f\x64':_0x2b7dae(0x570,'\x50\x29\x47\x65'),'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':_0x161234[_0x2b7dae(0x835,'\x56\x30\x35\x5a')],'\x41\x75\x74\x68\x6f\x72\x69\x7a\x61\x74\x69\x6f\x6e':_0x161234['\x4e\x54\x55\x73\x4a'](_0x161234[_0x2b7dae(0x56c,'\x4b\x36\x25\x33')],_0x2f6ee8)},'\x62\x6f\x64\x79':_0x1ea805,'\x73\x69\x67\x6e\x61\x6c':_0x582032});if(_0x390f9d&&typeof _0x390f9d[_0x2b7dae(0x315,'\x52\x40\x52\x65')]===_0x161234[_0x2b7dae(0x839,'\x6f\x68\x54\x38')]){if(_0x161234['\x52\x75\x4f\x56\x55']===_0x161234[_0x2b7dae(0x693,'\x24\x6a\x6c\x23')])_0x390f9d[_0x2b7dae(0x32d,'\x30\x24\x52\x66')](function(){});else return;}}else return _0x4b634a[_0x2b7dae(0x2f1,'\x4b\x36\x25\x33')](FRugXy[_0x2b7dae(0x758,'\x50\x61\x6e\x76')](_0x1d8519),FRugXy[_0x2b7dae(0x7c2,'\x6f\x68\x54\x38')]);}catch(_0x406315){}}function _0x1f70eb(_0x30d894){const _0x2ab665=_0x24f893,_0x39fd70={'\x72\x55\x63\x51\x6e':function(_0x4e7314){return _0x4e7314();},'\x54\x57\x4b\x6a\x6a':function(_0x5355ae,_0x178018,_0x42b11b){return _0x5355ae(_0x178018,_0x42b11b);},'\x76\x46\x6f\x4a\x65':function(_0x5d531e,_0x41e2e8){return _0x5d531e(_0x41e2e8);},'\x6d\x6c\x75\x62\x6e':function(_0x56aec4,_0x5df8f1){return _0x56aec4(_0x5df8f1);}},_0x2bebf9=_0x39fd70[_0x2ab665(0x79d,'\x4f\x35\x66\x62')](_0x1dcf72);_0x39fd70[_0x2ab665(0x283,'\x65\x76\x39\x75')](_0x2a4402,_0x2bebf9,_0x30d894),_0x39fd70[_0x2ab665(0x690,'\x6f\x68\x54\x38')](_0x75b076,_0x2bebf9),_0x39fd70['\x6d\x6c\x75\x62\x6e'](_0x2bb36c,_0x30d894);}function _0x3dab27(_0x16fe6e,_0xeb142a){const _0xa94914=_0x24f893,_0x36995b={'\x75\x66\x79\x57\x46':function(_0x7279f,_0x392b37){return _0x7279f(_0x392b37);},'\x75\x77\x67\x6d\x62':function(_0x29f05b,_0x304af2){return _0x29f05b+_0x304af2;},'\x79\x4b\x79\x53\x45':'\x75\x74\x66\x38'},_0x164f72=_0x2675e0[_0xa94914(0x20e,'\x4f\x4b\x4b\x62')](_0x16fe6e);_0x36995b[_0xa94914(0x673,'\x44\x6b\x41\x4f')](_0x1534b3,_0x164f72);const _0x7f742f=_0x16fe6e+_0xa94914(0x805,'\x78\x56\x4c\x45');_0x52037d[_0xa94914(0x2cb,'\x63\x6f\x5e\x24')+_0xa94914(0x499,'\x70\x23\x36\x65')](_0x7f742f,_0x36995b[_0xa94914(0x48d,'\x6f\x68\x54\x38')](JSON[_0xa94914(0x75f,'\x4a\x74\x4a\x4f')+'\x79'](_0xeb142a,null,0x26*-0x8+-0x366+0x498),'\x0a'),_0x36995b[_0xa94914(0x546,'\x4f\x4b\x4b\x62')]),_0x52037d['\x72\x65\x6e\x61\x6d\x65\x53\x79'+'\x6e\x63'](_0x7f742f,_0x16fe6e);}function _0x1c2175(_0x137878=0xf55+-0x2096+0x1911){const _0x161c7e=_0x24f893,_0x5ba07d={'\x53\x42\x58\x4b\x46':function(_0x4de95f,_0x36596a){return _0x4de95f(_0x36596a);},'\x58\x5a\x59\x55\x76':_0x161c7e(0x766,'\x4b\x36\x25\x33')+'\x67','\x50\x64\x43\x6c\x78':function(_0x4a50bc,_0x201856){return _0x4a50bc(_0x201856);},'\x57\x75\x4a\x46\x75':function(_0x3b6d50,_0x59fa3d){return _0x3b6d50(_0x59fa3d);},'\x73\x67\x4c\x57\x4e':function(_0x3de321,_0x2fb735){return _0x3de321(_0x2fb735);},'\x44\x4e\x79\x4b\x51':function(_0x54a4ad,_0xa44a26){return _0x54a4ad===_0xa44a26;},'\x79\x59\x6a\x4c\x47':_0x161c7e(0x592,'\x52\x40\x52\x65'),'\x47\x42\x5a\x6b\x44':function(_0x187859,_0x5eac2a){return _0x187859!==_0x5eac2a;},'\x71\x69\x45\x4f\x76':_0x161c7e(0x582,'\x57\x38\x6b\x49'),'\x6e\x43\x76\x63\x71':function(_0x563fc0){return _0x563fc0();},'\x61\x52\x79\x52\x61':function(_0x2e7abe,_0x473aa5){return _0x2e7abe*_0x473aa5;},'\x4e\x73\x65\x6a\x45':_0x161c7e(0x28e,'\x43\x6a\x77\x54'),'\x76\x68\x77\x66\x4a':'\x69\x52\x50\x4e\x6c','\x62\x59\x76\x4a\x46':_0x161c7e(0x62f,'\x4a\x74\x4a\x4f'),'\x43\x4d\x44\x76\x59':_0x161c7e(0x653,'\x5b\x36\x72\x37'),'\x6d\x5a\x6f\x6d\x50':function(_0x6733bd,_0x38ef48){return _0x6733bd-_0x38ef48;},'\x4b\x62\x54\x65\x6d':function(_0x57d9a6,_0x4cf40a){return _0x57d9a6>=_0x4cf40a;},'\x46\x57\x4b\x65\x53':_0x161c7e(0x27b,'\x4a\x74\x4a\x4f')};try{const _0xa82f7f=_0x5ba07d['\x6e\x43\x76\x63\x71'](_0x1dcf72);if(!_0x52037d[_0x161c7e(0x3ce,'\x71\x4b\x61\x4b')+'\x6e\x63'](_0xa82f7f))return[];const _0x9280d2=_0x52037d['\x73\x74\x61\x74\x53\x79\x6e\x63'](_0xa82f7f),_0x7690a=_0x5ba07d[_0x161c7e(0x6e9,'\x70\x30\x56\x79')](-0x2*-0xc75+0x186b*0x1+0x241*-0x15,0xddf*0x1+0x2118+-0x11*0x287);let _0x238f55;if(_0x9280d2['\x73\x69\x7a\x65']<=_0x7690a)_0x238f55=_0x52037d[_0x161c7e(0x790,'\x44\x51\x24\x40')+_0x161c7e(0x54c,'\x6c\x23\x7a\x76')](_0xa82f7f,_0x5ba07d[_0x161c7e(0x84c,'\x57\x45\x5e\x4e')]);else{if(_0x5ba07d[_0x161c7e(0x80d,'\x73\x37\x75\x4e')](_0x5ba07d[_0x161c7e(0x378,'\x68\x33\x64\x45')],_0x5ba07d[_0x161c7e(0x5af,'\x70\x30\x56\x79')]))_0x29c62c=qvpbdl[_0x161c7e(0x82b,'\x70\x30\x56\x79')](_0x5df3f7,qvpbdl[_0x161c7e(0x245,'\x41\x31\x43\x39')])[_0x161c7e(0x865,'\x5b\x2a\x25\x62')+'\x72\x69\x62\x75\x74\x69\x6f\x6e'+_0x161c7e(0x300,'\x52\x40\x52\x65')]();else{const _0x3e649e=_0x52037d[_0x161c7e(0x465,'\x44\x6b\x41\x4f')](_0xa82f7f,'\x72');try{if(_0x5ba07d['\x44\x4e\x79\x4b\x51'](_0x5ba07d['\x43\x4d\x44\x76\x59'],_0x161c7e(0x3ed,'\x41\x31\x43\x39'))){const _0x1df71e=Buffer[_0x161c7e(0x3fd,'\x48\x6d\x74\x4d')](_0x7690a);_0x52037d[_0x161c7e(0x544,'\x5b\x36\x72\x37')](_0x3e649e,_0x1df71e,-0x26*-0x31+-0xb0*-0x1+0x7f6*-0x1,_0x7690a,_0x5ba07d['\x6d\x5a\x6f\x6d\x50'](_0x9280d2[_0x161c7e(0x281,'\x65\x76\x39\x75')],_0x7690a)),_0x238f55=_0x1df71e[_0x161c7e(0x528,'\x63\x4f\x21\x4d')](_0x5ba07d[_0x161c7e(0x6d0,'\x4f\x35\x66\x62')]);const _0x3527ab=_0x238f55[_0x161c7e(0x498,'\x78\x56\x4c\x45')]('\x0a');if(_0x5ba07d[_0x161c7e(0x688,'\x50\x61\x6e\x76')](_0x3527ab,-0x1163*-0x1+0xbdc+-0x1d3f))_0x238f55=_0x238f55[_0x161c7e(0x7be,'\x70\x46\x25\x2a')](_0x3527ab+(-0x2f*-0x97+0xaee+-0x26a6));}else{const _0x2c8e94=_0x5ba07d[_0x161c7e(0x4bf,'\x6c\x23\x7a\x76')](_0x5583ec,{'\x73\x69\x67\x6e\x61\x6c\x4b\x65\x79':_0x267da8(_0x221849[_0x161c7e(0x2c7,'\x46\x46\x5e\x25')+'\x65\x79']||_0x161c7e(0x711,'\x63\x6f\x5e\x24')),'\x73\x69\x67\x6e\x61\x6c\x73':_0x448fb0[_0x161c7e(0x483,'\x48\x6d\x74\x4d')](_0x2afd9a[_0x161c7e(0x854,'\x63\x30\x6e\x66')])?_0x162611[_0x161c7e(0x81a,'\x51\x70\x6f\x4c')]:[],'\x67\x65\x6e\x65\x49\x64':_0x2c2c37(_0x163771[_0x161c7e(0x4b3,'\x68\x33\x64\x45')]),'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':_0x104bb3[_0x161c7e(0x308,'\x4b\x28\x32\x23')+_0x161c7e(0x29d,'\x6f\x68\x54\x38')]||null,'\x6f\x75\x74\x63\x6f\x6d\x65\x45\x76\x65\x6e\x74\x49\x64':_0x146341['\x69\x64'],'\x68\x61\x6c\x66\x4c\x69\x66\x65\x44\x61\x79\x73':0x1e});_0x5bf0d8(_0x2c8e94);const _0x5a9cfa=_0x5ba07d[_0x161c7e(0x62d,'\x75\x45\x5a\x6f')](_0x18e584,{'\x67\x65\x6e\x65\x49\x64':_0x5ba07d[_0x161c7e(0x47d,'\x24\x6a\x6c\x23')](_0x501997,_0x532e30[_0x161c7e(0x6a9,'\x57\x45\x5e\x4e')]),'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':_0x17faaf[_0x161c7e(0x8a5,'\x6b\x70\x71\x4c')+_0x161c7e(0x212,'\x4b\x64\x78\x78')]||null,'\x6f\x75\x74\x63\x6f\x6d\x65\x45\x76\x65\x6e\x74\x49\x64':_0x42419d['\x69\x64'],'\x68\x61\x6c\x66\x4c\x69\x66\x65\x44\x61\x79\x73':0x2d});_0x5ba07d[_0x161c7e(0x75c,'\x6c\x57\x4d\x30')](_0x291afe,_0x5a9cfa);}}finally{if(_0x5ba07d[_0x161c7e(0x6ad,'\x4f\x35\x66\x62')](_0x5ba07d[_0x161c7e(0x22c,'\x50\x29\x47\x65')],_0x5ba07d[_0x161c7e(0x710,'\x46\x46\x5e\x25')]))_0x52037d[_0x161c7e(0x28c,'\x75\x45\x5a\x6f')+'\x63'](_0x3e649e);else return _0x5ba07d[_0x161c7e(0x44f,'\x41\x31\x43\x39')](_0x216b7d,_0x5ba07d[_0x161c7e(0x31e,'\x75\x45\x5a\x6f')]);}}}const _0x8f3857=_0x238f55['\x73\x70\x6c\x69\x74']('\x0a')[_0x161c7e(0x6cd,'\x63\x30\x6e\x66')](_0x309f7a=>_0x309f7a['\x74\x72\x69\x6d']())[_0x161c7e(0x262,'\x63\x30\x6e\x66')](Boolean),_0x5b2b97=_0x8f3857[_0x161c7e(0x6f3,'\x4a\x26\x39\x41')](Math[_0x161c7e(0x1ff,'\x50\x29\x47\x65')](-0x713+0xa99+-0x386,_0x8f3857[_0x161c7e(0x571,'\x68\x7a\x7a\x21')]-_0x137878));return _0x5b2b97['\x6d\x61\x70'](_0x35a3e2=>{const _0x49f9ff=_0x161c7e;try{if(_0x5ba07d['\x47\x42\x5a\x6b\x44'](_0x5ba07d[_0x49f9ff(0x737,'\x68\x33\x64\x45')],_0x49f9ff(0x272,'\x41\x31\x43\x39')))_0x1e8ae5['\x61\x64\x64'](_0x3d0ae0);else return JSON['\x70\x61\x72\x73\x65'](_0x35a3e2);}catch(_0x5e04d8){return null;}})['\x66\x69\x6c\x74\x65\x72'](Boolean);}catch(_0x7b588f){return[];}}function _0x136e3e(_0x37bb67,_0x27fcb9){const _0x954eef=_0x24f893,_0x4a690c={'\x65\x6e\x48\x4d\x6b':function(_0xc84a7,_0xdf3b0c){return _0xc84a7(_0xdf3b0c);},'\x78\x6e\x4a\x76\x73':function(_0x2db4d0,_0x1d1eb3){return _0x2db4d0===_0x1d1eb3;},'\x6b\x65\x72\x73\x47':function(_0x25bcb3,_0x2cb1d0){return _0x25bcb3===_0x2cb1d0;},'\x66\x64\x47\x53\x74':function(_0x468174,_0x1818b8){return _0x468174/_0x1818b8;}},_0x443749=_0x4d1e86(_0x37bb67),_0x56fd96=_0x4a690c[_0x954eef(0x53b,'\x70\x23\x36\x65')](_0x4d1e86,_0x27fcb9),_0x4438bb=new Set((Array[_0x954eef(0x59a,'\x68\x7a\x7a\x21')](_0x443749)?_0x443749:[])[_0x954eef(0x33d,'\x4a\x26\x39\x41')](String)),_0x2c8530=new Set((Array[_0x954eef(0x576,'\x4b\x64\x78\x78')](_0x56fd96)?_0x56fd96:[])[_0x954eef(0x849,'\x52\x40\x52\x65')](String));if(_0x4a690c[_0x954eef(0x79f,'\x41\x31\x43\x39')](_0x4438bb[_0x954eef(0x5d9,'\x56\x30\x35\x5a')],0x1*0x16b3+-0xb85*-0x3+-0x3942)&&_0x4a690c[_0x954eef(0x2a2,'\x73\x37\x75\x4e')](_0x2c8530[_0x954eef(0x6a4,'\x44\x51\x24\x40')],-0xd4*-0x7+0x40*-0x43+0x2*0x57a))return 0x175*-0x7+0x228e+0x6*-0x40f;if(_0x4a690c[_0x954eef(0x37b,'\x6b\x70\x71\x4c')](_0x4438bb['\x73\x69\x7a\x65'],-0x53f*-0x1+0x9c7*0x1+-0xf06)||_0x4a690c[_0x954eef(0x2b7,'\x50\x61\x6e\x76')](_0x2c8530['\x73\x69\x7a\x65'],0x1578+-0x3a9*-0x3+-0x2073))return 0x4*-0x1e9+-0x1bb2+0x2356;let _0x51175e=-0x1d20+0xb74+0x4e*0x3a;for(const _0xeb3d99 of _0x4438bb)if(_0x2c8530[_0x954eef(0x857,'\x46\x46\x5e\x25')](_0xeb3d99))_0x51175e++;const _0x320caa=_0x4438bb[_0x954eef(0x5c7,'\x5b\x36\x72\x37')]+_0x2c8530[_0x954eef(0x7c9,'\x52\x40\x52\x65')]-_0x51175e;return _0x4a690c[_0x954eef(0x500,'\x6f\x68\x54\x38')](_0x320caa,-0x72e*-0x2+-0x10de+-0x6b*-0x6)?-0x1*0xd15+-0x10*0xcd+0x19e5:_0x4a690c[_0x954eef(0x470,'\x70\x46\x25\x2a')](_0x51175e,_0x320caa);}function _0x15e852(_0x4585fe,_0x167a5b){const _0x18c259=_0x24f893,_0x740a88={};_0x740a88[_0x18c259(0x87e,'\x58\x39\x49\x51')]=function(_0x126c44,_0x176726){return _0x126c44<=_0x176726;},_0x740a88[_0x18c259(0x2f3,'\x41\x31\x43\x39')]=function(_0x255735,_0x20b87d){return _0x255735/_0x20b87d;},_0x740a88[_0x18c259(0x3fe,'\x75\x45\x5a\x6f')]=function(_0x38706c,_0x2ecd81){return _0x38706c-_0x2ecd81;},_0x740a88[_0x18c259(0x228,'\x66\x4c\x65\x47')]=function(_0x244eed,_0x213a5f){return _0x244eed*_0x213a5f;};const _0x7c13a1=_0x740a88,_0x2b34c8=Number(_0x167a5b);if(!Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x2b34c8)||_0x7c13a1[_0x18c259(0x81c,'\x24\x6a\x6c\x23')](_0x2b34c8,0x19*0x14b+-0x52*-0x43+-0x35c9))return 0x1*0xb57+-0x2*-0x695+0x20*-0xc4;const _0x47265a=Date[_0x18c259(0x5c9,'\x50\x64\x35\x53')](_0x4585fe);if(!Number[_0x18c259(0x6c6,'\x4f\x35\x66\x62')](_0x47265a))return 0x24c7+-0x135+0xbdb*-0x3;const _0x4f59d4=_0x7c13a1['\x76\x48\x6e\x4b\x4e'](_0x7c13a1[_0x18c259(0x539,'\x4b\x28\x32\x23')](Date[_0x18c259(0x616,'\x4f\x4b\x4b\x62')](),_0x47265a),_0x7c13a1[_0x18c259(0x683,'\x24\x6a\x6c\x23')](_0x7c13a1[_0x18c259(0x77a,'\x68\x33\x64\x45')](0x2*0x3da+-0x17d*-0x2+0x2*-0x363,-0x74f+-0xad*0x3+-0xaf*-0xe),-0x5*0x67+-0x1a2a*0x1+0x1c69*0x1)*(0xb95+0x2*0x12ee+-0x1073*0x3));if(!Number[_0x18c259(0x3b0,'\x68\x33\x64\x45')](_0x4f59d4)||_0x7c13a1[_0x18c259(0x6b8,'\x44\x6c\x68\x4d')](_0x4f59d4,-0x2686+0x1*0x1a98+0xbee))return-0x25f6+-0x479+0x2a70;return Math[_0x18c259(0x266,'\x6c\x57\x4d\x30')](-0xf5*0x7+-0x2102+-0x27b5*-0x1+0.5,_0x7c13a1[_0x18c259(0x28f,'\x4e\x70\x6e\x7a')](_0x4f59d4,_0x2b34c8));}function _0xa9bd7b(_0x1bbbf0){const _0x40af4f=_0x24f893,_0x32a5e0={'\x46\x58\x6f\x70\x6f':function(_0x40f570,_0x555105){return _0x40f570!==_0x555105;},'\x74\x67\x52\x55\x71':_0x40af4f(0x4e2,'\x4e\x70\x6e\x7a'),'\x46\x66\x76\x47\x48':function(_0x3d3afa,_0x40cf89){return _0x3d3afa(_0x40cf89);},'\x4d\x69\x54\x4c\x41':function(_0x992ab2,_0x5efd7b){return _0x992ab2(_0x5efd7b);},'\x50\x41\x41\x5a\x6a':function(_0x3f1742,_0x4b043c){return _0x3f1742===_0x4b043c;},'\x44\x63\x68\x44\x6b':function(_0x2478f7,_0x4eefdc){return _0x2478f7!==_0x4eefdc;},'\x42\x69\x79\x65\x4f':_0x40af4f(0x331,'\x4e\x70\x6e\x7a'),'\x72\x73\x4f\x4c\x52':function(_0x385752,_0x57e48e){return _0x385752!==_0x57e48e;},'\x76\x76\x68\x58\x4c':_0x40af4f(0x61f,'\x68\x7a\x7a\x21'),'\x79\x42\x47\x45\x6f':function(_0x4b6fde,_0xce185){return _0x4b6fde>_0xce185;},'\x43\x66\x63\x45\x79':function(_0x59cefc,_0x597348){return _0x59cefc(_0x597348);}},_0x4e405d=new Map();for(const _0x7f3a14 of _0x1bbbf0){if(!_0x7f3a14||_0x7f3a14[_0x40af4f(0x3e3,'\x4b\x64\x78\x78')]!==_0x40af4f(0x85f,'\x68\x7a\x7a\x21')+_0x40af4f(0x60f,'\x4e\x70\x6e\x7a'))continue;if(_0x32a5e0[_0x40af4f(0x333,'\x46\x46\x5e\x25')](_0x7f3a14[_0x40af4f(0x320,'\x50\x29\x47\x65')],_0x32a5e0[_0x40af4f(0x294,'\x4f\x35\x66\x62')]))continue;const _0x2ca2ee=_0x7f3a14[_0x40af4f(0x1fe,'\x66\x4c\x65\x47')]&&_0x7f3a14[_0x40af4f(0x3cb,'\x4f\x35\x66\x62')][_0x40af4f(0x89e,'\x56\x30\x35\x5a')]?String(_0x7f3a14[_0x40af4f(0x6c5,'\x70\x46\x25\x2a')][_0x40af4f(0x553,'\x52\x40\x52\x65')]):_0x40af4f(0x446,'\x66\x4c\x65\x47'),_0x5373ed=_0x7f3a14[_0x40af4f(0x672,'\x67\x56\x36\x28')]&&_0x7f3a14[_0x40af4f(0x702,'\x68\x33\x64\x45')]['\x69\x64']?_0x32a5e0[_0x40af4f(0x738,'\x73\x37\x75\x4e')](String,_0x7f3a14[_0x40af4f(0x778,'\x66\x4c\x65\x47')]['\x69\x64']):null;if(!_0x5373ed)continue;const _0x438ce4=_0x2ca2ee+'\x3a\x3a'+_0x5373ed,_0x586f4d={};_0x586f4d['\x73\x69\x67\x6e\x61\x6c\x4b\x65'+'\x79']=_0x2ca2ee,_0x586f4d[_0x40af4f(0x559,'\x30\x35\x70\x72')]=_0x5373ed,_0x586f4d[_0x40af4f(0x761,'\x50\x64\x35\x53')]=0x0,_0x586f4d['\x66\x61\x69\x6c']=0x0,_0x586f4d[_0x40af4f(0x39f,'\x4a\x74\x4a\x4f')]=0x0,_0x586f4d[_0x40af4f(0x52e,'\x5b\x2a\x25\x62')+'\x69\x76\x65\x5f\x69\x6e\x65\x72'+'\x74']=0x0,_0x586f4d[_0x40af4f(0x77c,'\x70\x30\x56\x79')]=null,_0x586f4d[_0x40af4f(0x503,'\x43\x6a\x77\x54')+'\x72\x65']=null,_0x586f4d[_0x40af4f(0x7da,'\x57\x45\x5e\x4e')+_0x40af4f(0x413,'\x4e\x70\x6e\x7a')]=![];const _0x399244=_0x4e405d[_0x40af4f(0x2f4,'\x70\x46\x25\x2a')](_0x438ce4)||_0x586f4d,_0x242dda=_0x7f3a14[_0x40af4f(0x5fe,'\x78\x56\x4c\x45')]&&_0x7f3a14[_0x40af4f(0x6a7,'\x57\x38\x6b\x49')][_0x40af4f(0x6e4,'\x66\x4c\x65\x47')]?_0x32a5e0[_0x40af4f(0x705,'\x63\x30\x6e\x66')](String,_0x7f3a14[_0x40af4f(0x844,'\x46\x46\x5e\x25')][_0x40af4f(0x512,'\x43\x6a\x77\x54')]):_0x40af4f(0x573,'\x4b\x36\x25\x33'),_0x34cdf4=_0x7f3a14[_0x40af4f(0x47f,'\x65\x76\x39\x75')]&&_0x7f3a14[_0x40af4f(0x395,'\x58\x39\x49\x51')]['\x6e\x6f\x74\x65']?String(_0x7f3a14[_0x40af4f(0x3ba,'\x56\x30\x35\x5a')][_0x40af4f(0x4ba,'\x66\x4c\x65\x47')]):'',_0x507dac=_0x32a5e0[_0x40af4f(0x71a,'\x48\x6d\x74\x4d')](_0x242dda,_0x40af4f(0x43a,'\x4a\x74\x4a\x4f'))&&_0x32a5e0[_0x40af4f(0x782,'\x70\x23\x36\x65')](_0x34cdf4[_0x40af4f(0x6d6,'\x51\x70\x6f\x4c')](_0x40af4f(0x30e,'\x5b\x2a\x25\x62')+_0x40af4f(0x34e,'\x4b\x64\x78\x78')),-(-0x1682+-0x1407+-0xf2*-0x2d));if(_0x507dac)_0x399244[_0x40af4f(0x49d,'\x56\x30\x35\x5a')]+=0x212f+0x1*-0x2dd+-0x1e51,_0x399244[_0x40af4f(0x487,'\x68\x7a\x7a\x21')+_0x40af4f(0x3a6,'\x70\x30\x56\x79')+'\x74']+=0x17*0x12f+-0x4d7*0x1+-0x1*0x1661;else{if(_0x242dda===_0x40af4f(0x566,'\x30\x24\x52\x66'))_0x399244[_0x40af4f(0x7c3,'\x6f\x68\x54\x38')]+=0xaac+0x1dfb+-0x1453*0x2,_0x399244[_0x40af4f(0x2a5,'\x30\x24\x52\x66')+_0x40af4f(0x7e8,'\x43\x6a\x77\x54')+'\x74']=0x1*-0x2a9+-0x1e80+0x2129;else _0x32a5e0[_0x40af4f(0x201,'\x4a\x74\x4a\x4f')](_0x242dda,_0x32a5e0[_0x40af4f(0x364,'\x50\x29\x47\x65')])&&(_0x32a5e0[_0x40af4f(0x7ad,'\x50\x64\x35\x53')](_0x32a5e0[_0x40af4f(0x5f7,'\x66\x4c\x65\x47')],_0x32a5e0[_0x40af4f(0x7e3,'\x44\x6b\x41\x4f')])?_0x17b005[_0x40af4f(0x61a,'\x4e\x70\x6e\x7a')+'\x6e\x63'](_0x96768e[_0x40af4f(0x7d8,'\x6f\x68\x54\x38')](_0x1e3cc5,_0x15e42c[_0x40af4f(0x4e9,'\x70\x46\x25\x2a')])):(_0x399244[_0x40af4f(0x2a4,'\x44\x6b\x41\x4f')]+=0x14db+0x88*0x21+0x242*-0x11,_0x399244[_0x40af4f(0x62c,'\x50\x61\x6e\x76')+_0x40af4f(0x45e,'\x57\x45\x5e\x4e')+'\x74']=-0x1393+0xc52+0x741));}if(_0x7f3a14[_0x40af4f(0x4e2,'\x4e\x70\x6e\x7a')]&&_0x7f3a14[_0x40af4f(0x426,'\x57\x45\x5e\x4e')][_0x40af4f(0x1ee,'\x30\x24\x52\x66')+'\x76\x65'])_0x399244[_0x40af4f(0x7ea,'\x50\x29\x47\x65')+_0x40af4f(0x59c,'\x56\x30\x35\x5a')]=!![];const _0x33bb89=_0x7f3a14['\x74\x73']||_0x7f3a14[_0x40af4f(0x2c0,'\x5b\x2a\x25\x62')+'\x61\x74']||_0x7f3a14['\x61\x74'];_0x33bb89&&(!_0x399244[_0x40af4f(0x54e,'\x63\x30\x6e\x66')]||_0x32a5e0[_0x40af4f(0x6b6,'\x50\x64\x35\x53')](Date[_0x40af4f(0x897,'\x68\x7a\x7a\x21')](_0x33bb89),Date[_0x40af4f(0x85b,'\x51\x70\x6f\x4c')](_0x399244['\x6c\x61\x73\x74\x5f\x74\x73'])))&&(_0x399244[_0x40af4f(0x51d,'\x4f\x4b\x4b\x62')]=_0x33bb89,_0x399244[_0x40af4f(0x254,'\x70\x30\x56\x79')+'\x72\x65']=_0x7f3a14[_0x40af4f(0x578,'\x4b\x36\x25\x33')]&&Number[_0x40af4f(0x74c,'\x6f\x68\x54\x38')](_0x32a5e0['\x4d\x69\x54\x4c\x41'](Number,_0x7f3a14['\x6f\x75\x74\x63\x6f\x6d\x65']['\x73\x63\x6f\x72\x65']))?_0x32a5e0[_0x40af4f(0x5e7,'\x6c\x23\x7a\x76')](Number,_0x7f3a14[_0x40af4f(0x578,'\x4b\x36\x25\x33')][_0x40af4f(0x471,'\x70\x23\x36\x65')]):_0x399244[_0x40af4f(0x6b1,'\x6c\x23\x7a\x76')+'\x72\x65']),_0x4e405d[_0x40af4f(0x6e1,'\x66\x4c\x65\x47')](_0x438ce4,_0x399244);}return _0x4e405d;}function _0x3aab8b(_0xb26a44){const _0x578b2a=_0x24f893,_0x3115c4={'\x77\x41\x7a\x49\x6a':function(_0x315bfe,_0x5a48af){return _0x315bfe!==_0x5a48af;},'\x6c\x4b\x64\x45\x68':_0x578b2a(0x63d,'\x4f\x35\x66\x62')+_0x578b2a(0x5a6,'\x24\x6a\x6c\x23'),'\x71\x45\x63\x4b\x55':function(_0x5552e5,_0x3033d4){return _0x5552e5!==_0x3033d4;},'\x51\x66\x41\x4e\x51':_0x578b2a(0x66e,'\x47\x46\x75\x74'),'\x6d\x4a\x63\x58\x6a':function(_0x494421,_0x12a1e6){return _0x494421(_0x12a1e6);},'\x47\x57\x50\x79\x59':function(_0x264048,_0x5a00d6){return _0x264048===_0x5a00d6;},'\x42\x4c\x4c\x6a\x6a':_0x578b2a(0x533,'\x41\x31\x43\x39'),'\x51\x66\x4c\x74\x47':_0x578b2a(0x2cf,'\x70\x46\x25\x2a'),'\x55\x69\x66\x55\x61':function(_0x4d4d5e,_0x343c3b){return _0x4d4d5e>_0x343c3b;},'\x6c\x55\x44\x65\x63':function(_0x4035d0,_0x5bdf13){return _0x4035d0(_0x5bdf13);},'\x66\x68\x6b\x4f\x4b':function(_0x26e115,_0x5d8f3c){return _0x26e115(_0x5d8f3c);}},_0x56b656=new Map();for(const _0x4082e5 of _0xb26a44){if(!_0x4082e5||_0x3115c4['\x77\x41\x7a\x49\x6a'](_0x4082e5[_0x578b2a(0x801,'\x6f\x68\x54\x38')],_0x3115c4[_0x578b2a(0x3ec,'\x47\x46\x75\x74')]))continue;if(_0x3115c4[_0x578b2a(0x3dd,'\x4a\x26\x39\x41')](_0x4082e5[_0x578b2a(0x7fd,'\x43\x6a\x77\x54')],_0x3115c4[_0x578b2a(0x33b,'\x67\x56\x36\x28')]))continue;const _0x3ed237=_0x4082e5[_0x578b2a(0x53a,'\x44\x6b\x41\x4f')]&&_0x4082e5[_0x578b2a(0x6fb,'\x50\x29\x47\x65')]['\x69\x64']?_0x3115c4[_0x578b2a(0x694,'\x4a\x26\x39\x41')](String,_0x4082e5[_0x578b2a(0x6cc,'\x4b\x28\x32\x23')]['\x69\x64']):null;if(!_0x3ed237)continue;const _0x30a157=_0x56b656[_0x578b2a(0x5e3,'\x51\x70\x6f\x4c')](_0x3ed237)||{'\x67\x65\x6e\x65\x49\x64':_0x3ed237,'\x73\x75\x63\x63\x65\x73\x73':0x0,'\x66\x61\x69\x6c':0x0,'\x6c\x61\x73\x74\x5f\x74\x73':null,'\x6c\x61\x73\x74\x5f\x73\x63\x6f\x72\x65':null},_0x354014=_0x4082e5[_0x578b2a(0x4c1,'\x70\x46\x25\x2a')]&&_0x4082e5[_0x578b2a(0x3c4,'\x24\x6a\x6c\x23')][_0x578b2a(0x512,'\x43\x6a\x77\x54')]?String(_0x4082e5[_0x578b2a(0x5fe,'\x78\x56\x4c\x45')]['\x73\x74\x61\x74\x75\x73']):_0x578b2a(0x56f,'\x63\x6f\x5e\x24');if(_0x3115c4[_0x578b2a(0x73a,'\x41\x31\x43\x39')](_0x354014,_0x3115c4[_0x578b2a(0x68a,'\x68\x33\x64\x45')]))_0x30a157[_0x578b2a(0x2be,'\x4f\x4b\x4b\x62')]+=0x1f44+-0x1972*0x1+-0x1*0x5d1;else{if(_0x3115c4[_0x578b2a(0x425,'\x63\x30\x6e\x66')](_0x354014,_0x3115c4[_0x578b2a(0x880,'\x41\x31\x43\x39')]))_0x30a157[_0x578b2a(0x2ca,'\x46\x46\x5e\x25')]+=0x13f+0xb09*0x2+-0x175*0x10;}const _0x71a29b=_0x4082e5['\x74\x73']||_0x4082e5[_0x578b2a(0x6c2,'\x4b\x64\x78\x78')+'\x61\x74']||_0x4082e5['\x61\x74'];_0x71a29b&&(!_0x30a157['\x6c\x61\x73\x74\x5f\x74\x73']||_0x3115c4[_0x578b2a(0x5ba,'\x65\x76\x39\x75')](Date[_0x578b2a(0x343,'\x72\x76\x61\x5d')](_0x71a29b),Date[_0x578b2a(0x332,'\x44\x6c\x68\x4d')](_0x30a157[_0x578b2a(0x51d,'\x4f\x4b\x4b\x62')])))&&(_0x30a157[_0x578b2a(0x225,'\x4b\x36\x25\x33')]=_0x71a29b,_0x30a157['\x6c\x61\x73\x74\x5f\x73\x63\x6f'+'\x72\x65']=_0x4082e5[_0x578b2a(0x395,'\x58\x39\x49\x51')]&&Number[_0x578b2a(0x43c,'\x67\x56\x36\x28')](_0x3115c4[_0x578b2a(0x423,'\x43\x6a\x77\x54')](Number,_0x4082e5[_0x578b2a(0x578,'\x4b\x36\x25\x33')]['\x73\x63\x6f\x72\x65']))?_0x3115c4['\x66\x68\x6b\x4f\x4b'](Number,_0x4082e5[_0x578b2a(0x426,'\x57\x45\x5e\x4e')][_0x578b2a(0x5f5,'\x72\x76\x61\x5d')]):_0x30a157[_0x578b2a(0x6da,'\x6c\x57\x4d\x30')+'\x72\x65']),_0x56b656[_0x578b2a(0x720,'\x6f\x68\x54\x38')](_0x3ed237,_0x30a157);}return _0x56b656;}function _0x177b01(_0x101930,_0x428bee){const _0xb28d5b=_0x24f893,_0x28719a={'\x72\x67\x4a\x42\x73':function(_0x25802f,_0x123df9){return _0x25802f||_0x123df9;},'\x6c\x6b\x58\x74\x4c':function(_0x32967a,_0x355f6f){return _0x32967a(_0x355f6f);},'\x50\x73\x74\x67\x4c':function(_0x567a02,_0x1145cf){return _0x567a02(_0x1145cf);},'\x4b\x68\x6e\x78\x7a':function(_0x390dc9,_0x117173){return _0x390dc9+_0x117173;},'\x6d\x76\x4a\x47\x6d':function(_0x413b80,_0x5b6c36){return _0x413b80/_0x5b6c36;},'\x66\x49\x7a\x78\x7a':function(_0x423a0e,_0x53f2ab){return _0x423a0e(_0x53f2ab);},'\x50\x79\x46\x7a\x77':function(_0x1d8d17,_0x146325,_0x3429cd){return _0x1d8d17(_0x146325,_0x3429cd);},'\x45\x5a\x61\x79\x4c':function(_0x5920c0,_0x21aedc){return _0x5920c0*_0x21aedc;}},_0x364ae2={};_0x364ae2[_0xb28d5b(0x617,'\x43\x6a\x77\x54')]=0x0,_0x364ae2[_0xb28d5b(0x35e,'\x44\x6c\x68\x4d')]=0x0,_0x364ae2['\x6c\x61\x73\x74\x5f\x74\x73']=null;const _0x29aeca=_0x28719a[_0xb28d5b(0x3c6,'\x70\x30\x56\x79')](_0x101930,_0x364ae2),_0x3c7d51=_0x28719a[_0xb28d5b(0x6d7,'\x24\x6a\x6c\x23')](Number,_0x29aeca[_0xb28d5b(0x3d9,'\x73\x37\x75\x4e')])||-0xb76+-0x20cf+0x2c45,_0x32cb5a=_0x28719a[_0xb28d5b(0x76f,'\x67\x56\x36\x28')](Number,_0x29aeca[_0xb28d5b(0x68d,'\x70\x46\x25\x2a')])||0x1*-0x827+0x176b+-0xf44,_0xb335f6=_0x28719a[_0xb28d5b(0x431,'\x4f\x35\x66\x62')](_0x3c7d51,_0x32cb5a),_0xe93a84=_0x28719a[_0xb28d5b(0x231,'\x44\x6c\x68\x4d')](_0x28719a[_0xb28d5b(0x7d0,'\x68\x7a\x7a\x21')](_0x3c7d51,-0x2*-0x1313+-0x22af+0x1bb*-0x2),_0xb335f6+(-0x25a7+-0x1cf0+0x4299)),_0x1b97fd=_0x428bee&&Number[_0xb28d5b(0x26d,'\x72\x76\x61\x5d')](_0x28719a[_0xb28d5b(0x750,'\x41\x31\x43\x39')](Number,_0x428bee[_0xb28d5b(0x789,'\x5b\x2a\x25\x62')+_0xb28d5b(0x84d,'\x30\x24\x52\x66')]))?_0x28719a['\x50\x73\x74\x67\x4c'](Number,_0x428bee[_0xb28d5b(0x3fb,'\x63\x4f\x21\x4d')+_0xb28d5b(0x7f3,'\x6c\x23\x7a\x76')]):0x11f*0x1b+0x877+-0x269e,_0x49bcc3=_0x28719a[_0xb28d5b(0x5e4,'\x71\x4b\x61\x4b')](_0x15e852,_0x29aeca[_0xb28d5b(0x6d2,'\x71\x4b\x61\x4b')]||'',_0x1b97fd),_0x355c0b=_0x29aeca['\x68\x61\x73\x5f\x70\x72\x65\x64'+_0xb28d5b(0x232,'\x68\x33\x64\x45')]?-0x13ea+0x11*0x4f+0xeac+0.1499999999999999:-0x4d*-0x6b+-0x4b*0x59+-0x61b;return{'\x70':_0xe93a84,'\x77':_0x49bcc3,'\x74\x6f\x74\x61\x6c':_0xb335f6,'\x76\x61\x6c\x75\x65':_0x28719a[_0xb28d5b(0x76b,'\x5b\x2a\x25\x62')](_0xe93a84,_0x49bcc3)*_0x355c0b};}const _0x46bb59=new Set([_0x24f893(0x4aa,'\x58\x39\x49\x51')+_0x24f893(0x784,'\x6f\x68\x54\x38')+'\x75\x72\x65\x5f\x73\x74\x72\x65'+_0x24f893(0x253,'\x65\x76\x39\x75'),_0x24f893(0x7e0,'\x43\x6a\x77\x54')+_0x24f893(0x63a,'\x65\x76\x39\x75')+'\x65\x74','\x66\x61\x69\x6c\x75\x72\x65\x5f'+_0x24f893(0x5df,'\x5b\x36\x72\x37')+_0x24f893(0x37f,'\x4b\x64\x78\x78')]),_0xecbb45=0x13*-0x123+0x1*-0x1b02+0x309b+0.3;function _0x250cf0(){const _0x19abca=_0x24f893,_0x21273e={'\x56\x43\x4f\x5a\x51':function(_0x3af766){return _0x3af766();},'\x71\x4e\x78\x70\x71':function(_0x377da5,_0x5dd05f,_0x6d5613){return _0x377da5(_0x5dd05f,_0x6d5613);}},_0x5c4ccc=_0x21273e[_0x19abca(0x444,'\x24\x6a\x6c\x23')](_0x5ed1f9),_0xd0531=_0x21273e[_0x19abca(0x863,'\x50\x64\x35\x53')](_0x1f80a3,_0x5c4ccc,{}),_0x3e570d={};return _0x3e570d[_0x19abca(0x70a,'\x30\x35\x70\x72')]=_0xd0531[_0x19abca(0x480,'\x73\x37\x75\x4e')+_0x19abca(0x715,'\x4f\x35\x66\x62')]||null,_0x3e570d[_0x19abca(0x610,'\x50\x29\x47\x65')+_0x19abca(0x6c4,'\x50\x64\x35\x53')]=_0xd0531[_0x19abca(0x610,'\x50\x29\x47\x65')+'\x61\x72\x74\x65\x64\x5f\x61\x74']||null,_0x3e570d['\x70\x72\x65\x76\x5f\x65\x6e\x76'+_0x19abca(0x775,'\x50\x29\x47\x65')+_0x19abca(0x3a2,'\x4e\x70\x6e\x7a')]=_0xd0531[_0x19abca(0x4e7,'\x75\x45\x5a\x6f')+_0x19abca(0x63e,'\x70\x30\x56\x79')+_0x19abca(0x537,'\x65\x76\x39\x75')]||null,_0x3e570d[_0x19abca(0x23e,'\x30\x35\x70\x72')+'\x65\x5f\x6c\x69\x62\x5f\x76\x65'+_0x19abca(0x41a,'\x51\x70\x6f\x4c')]=_0xd0531[_0x19abca(0x260,'\x63\x30\x6e\x66')+_0x19abca(0x75a,'\x5b\x36\x72\x37')+_0x19abca(0x493,'\x72\x76\x61\x5d')]||null,_0x3e570d;}function _0x5c0ba0({signals:_0x3364a3,currentEnvFingerprintKey:_0x5daf60,currentGeneLibVersion:_0x341341}){const _0x6f1aae=_0x24f893,_0x587022={'\x69\x76\x63\x78\x42':function(_0x3ea7ef){return _0x3ea7ef();},'\x66\x42\x69\x48\x49':function(_0x4d113e,_0x4a740f){return _0x4d113e(_0x4a740f);},'\x72\x66\x6a\x78\x70':function(_0xc7d89a,_0x42b44a){return _0xc7d89a!==_0x42b44a;},'\x62\x61\x55\x4f\x65':function(_0x4ba14c,_0x322517){return _0x4ba14c!==_0x322517;},'\x59\x59\x54\x6f\x5a':_0x6f1aae(0x780,'\x44\x6c\x68\x4d'),'\x6d\x6b\x57\x59\x56':'\x65\x6e\x76\x5f\x6d\x61\x6a\x6f'+'\x72\x5f\x63\x68\x61\x6e\x67\x65','\x45\x71\x51\x49\x41':function(_0x104c69,_0x17deae){return _0x104c69!==_0x17deae;},'\x45\x4c\x47\x79\x42':function(_0x1e40f6,_0x1cb8e0){return _0x1e40f6===_0x1cb8e0;},'\x72\x59\x72\x70\x6e':'\x6b\x44\x48\x46\x6e','\x6a\x5a\x57\x4c\x6c':_0x6f1aae(0x2ed,'\x66\x4c\x65\x47'),'\x68\x6c\x48\x69\x62':_0x6f1aae(0x276,'\x6f\x68\x54\x38')+_0x6f1aae(0x6bc,'\x44\x6b\x41\x4f')+'\x68'},_0xd67f64=_0x587022[_0x6f1aae(0x6ea,'\x57\x38\x6b\x49')](_0x250cf0),_0x977267=Array[_0x6f1aae(0x699,'\x4f\x4b\x4b\x62')](_0x3364a3)?_0x3364a3:[];for(const _0x2cdcfa of _0x977267){if(_0x46bb59[_0x6f1aae(0x87a,'\x50\x61\x6e\x76')](_0x587022[_0x6f1aae(0x3a8,'\x63\x6f\x5e\x24')](String,_0x2cdcfa))){const _0x4a3a54={};return _0x4a3a54[_0x6f1aae(0x2aa,'\x44\x6c\x68\x4d')+_0x6f1aae(0x666,'\x30\x35\x70\x72')]=!![],_0x4a3a54[_0x6f1aae(0x44d,'\x47\x46\x75\x74')]=_0x6f1aae(0x527,'\x57\x38\x6b\x49')+_0x2cdcfa,_0x4a3a54;}}if(_0xd67f64[_0x6f1aae(0x372,'\x70\x23\x36\x65')+_0x6f1aae(0x5db,'\x70\x46\x25\x2a')+_0x6f1aae(0x537,'\x65\x76\x39\x75')]&&_0x5daf60&&_0x587022[_0x6f1aae(0x244,'\x5b\x36\x72\x37')](_0xd67f64[_0x6f1aae(0x45c,'\x65\x76\x39\x75')+_0x6f1aae(0x7ae,'\x6c\x23\x7a\x76')+_0x6f1aae(0x1f3,'\x72\x76\x61\x5d')],_0x5daf60)){if(_0x587022[_0x6f1aae(0x3da,'\x4f\x4b\x4b\x62')](_0x6f1aae(0x28b,'\x67\x56\x36\x28'),_0x587022[_0x6f1aae(0x7f8,'\x56\x30\x35\x5a')]))return null;else{const _0x5ee859={};return _0x5ee859[_0x6f1aae(0x82c,'\x6c\x23\x7a\x76')+'\x73\x65\x74']=!![],_0x5ee859[_0x6f1aae(0x32c,'\x46\x46\x5e\x25')]=_0x587022[_0x6f1aae(0x66f,'\x50\x64\x35\x53')],_0x5ee859;}}if(_0xd67f64[_0x6f1aae(0x7a1,'\x44\x6c\x68\x4d')+_0x6f1aae(0x7f4,'\x4f\x35\x66\x62')+_0x6f1aae(0x6b0,'\x78\x56\x4c\x45')]&&_0x341341&&_0x587022[_0x6f1aae(0x6d4,'\x5b\x36\x72\x37')](_0xd67f64[_0x6f1aae(0x24d,'\x6f\x68\x54\x38')+'\x65\x5f\x6c\x69\x62\x5f\x76\x65'+_0x6f1aae(0x721,'\x5b\x36\x72\x37')],_0x341341)){if(_0x587022[_0x6f1aae(0x78f,'\x50\x64\x35\x53')](_0x587022[_0x6f1aae(0x21f,'\x57\x38\x6b\x49')],_0x587022[_0x6f1aae(0x3f5,'\x63\x4f\x21\x4d')])){if(_0x39ba56[_0x6f1aae(0x868,'\x56\x30\x35\x5a')](_0x17a97b(_0x4e67ae))){const _0x3d11f0={};return _0x3d11f0[_0x6f1aae(0x4f0,'\x66\x4c\x65\x47')+_0x6f1aae(0x637,'\x4f\x35\x66\x62')]=!![],_0x3d11f0[_0x6f1aae(0x5a2,'\x50\x29\x47\x65')]=_0x6f1aae(0x802,'\x57\x45\x5e\x4e')+_0x197704,_0x3d11f0;}}else{const _0x282a79={};return _0x282a79[_0x6f1aae(0x399,'\x70\x23\x36\x65')+_0x6f1aae(0x4b7,'\x50\x64\x35\x53')]=!![],_0x282a79[_0x6f1aae(0x72f,'\x68\x7a\x7a\x21')]=_0x587022[_0x6f1aae(0x84a,'\x47\x46\x75\x74')],_0x282a79;}}const _0x16c422={};return _0x16c422[_0x6f1aae(0x5d3,'\x30\x24\x52\x66')+_0x6f1aae(0x505,'\x5b\x2a\x25\x62')]=![],_0x16c422[_0x6f1aae(0x5fa,'\x5b\x36\x72\x37')]=null,_0x16c422;}function _0x1e0372({reason:_0x34f254,currentEnvFingerprintKey:_0x4e42a4,currentGeneLibVersion:_0x725a66}){const _0x2773b4=_0x24f893,_0x18a2a6={'\x6b\x70\x67\x66\x65':function(_0x50ec52){return _0x50ec52();},'\x49\x49\x79\x62\x6b':function(_0x10f982,_0x338bd9){return _0x10f982(_0x338bd9);},'\x4f\x6d\x4b\x43\x48':function(_0x4c3595,_0x577723){return _0x4c3595||_0x577723;},'\x55\x43\x52\x7a\x71':_0x2773b4(0x4f3,'\x24\x6a\x6c\x23')+_0x2773b4(0x2a7,'\x6f\x68\x54\x38'),'\x49\x50\x6b\x79\x65':function(_0x167146,_0x58c83c){return _0x167146(_0x58c83c);},'\x58\x43\x62\x56\x4a':function(_0x10eaea,_0x4f204b){return _0x10eaea(_0x4f204b);},'\x51\x44\x6b\x5a\x58':function(_0x6c6331,_0x31440d){return _0x6c6331||_0x31440d;},'\x57\x73\x5a\x77\x6b':function(_0x2586e3,_0x28d2f9,_0x1112c4){return _0x2586e3(_0x28d2f9,_0x1112c4);}},_0xed3a53=_0x18a2a6[_0x2773b4(0x7f0,'\x6f\x68\x54\x38')](_0xd91d1c),_0x7b96e1='\x65\x70\x6f\x63\x68\x5f'+Date[_0x2773b4(0x796,'\x51\x70\x6f\x4c')]()+'\x5f'+_0x18a2a6[_0x2773b4(0x4e1,'\x6c\x23\x7a\x76')](_0x41384f,_0xed3a53+_0x18a2a6[_0x2773b4(0x670,'\x4b\x28\x32\x23')](_0x34f254,'')),_0x2f7201={'\x74\x79\x70\x65':_0x2773b4(0x83e,'\x50\x29\x47\x65')+_0x2773b4(0x6a5,'\x6c\x23\x7a\x76'),'\x6b\x69\x6e\x64':_0x18a2a6[_0x2773b4(0x882,'\x68\x7a\x7a\x21')],'\x69\x64':_0x2773b4(0x2f5,'\x4b\x28\x32\x23')+Date[_0x2773b4(0x6f0,'\x44\x6c\x68\x4d')]()+'\x5f'+_0x18a2a6[_0x2773b4(0x5ea,'\x50\x64\x35\x53')](_0x41384f,_0x2773b4(0x1f4,'\x70\x23\x36\x65')+_0x2773b4(0x227,'\x52\x40\x52\x65')+_0xed3a53),'\x74\x73':_0xed3a53,'\x65\x70\x6f\x63\x68':{'\x69\x64':_0x7b96e1,'\x72\x65\x61\x73\x6f\x6e':_0x18a2a6['\x4f\x6d\x4b\x43\x48'](_0x34f254,_0x2773b4(0x85c,'\x71\x4b\x61\x4b')),'\x73\x74\x61\x72\x74\x65\x64\x5f\x61\x74':_0xed3a53}};_0x18a2a6['\x58\x43\x62\x56\x4a'](_0x1f70eb,_0x2f7201);const _0x101fcc=_0x5ed1f9(),_0x37c8a3=_0x1f80a3(_0x101fcc,{});_0x37c8a3[_0x2773b4(0x5c4,'\x4a\x74\x4a\x4f')+'\x65\x70\x6f\x63\x68\x5f\x69\x64']=_0x7b96e1,_0x37c8a3[_0x2773b4(0x506,'\x4b\x64\x78\x78')+_0x2773b4(0x3d6,'\x65\x76\x39\x75')]=_0xed3a53,_0x37c8a3['\x70\x72\x65\x76\x5f\x65\x6e\x76'+_0x2773b4(0x602,'\x68\x33\x64\x45')+_0x2773b4(0x1eb,'\x50\x29\x47\x65')]=_0x4e42a4||null,_0x37c8a3[_0x2773b4(0x30f,'\x4a\x74\x4a\x4f')+'\x65\x5f\x6c\x69\x62\x5f\x76\x65'+_0x2773b4(0x721,'\x5b\x36\x72\x37')]=_0x18a2a6[_0x2773b4(0x6e2,'\x50\x29\x47\x65')](_0x725a66,null);if(_0x37c8a3[_0x2773b4(0x4bd,'\x4f\x35\x66\x62')+_0x2773b4(0x430,'\x44\x6b\x41\x4f')])_0x37c8a3[_0x2773b4(0x4db,'\x4f\x4b\x4b\x62')+_0x2773b4(0x355,'\x70\x46\x25\x2a')][_0x2773b4(0x726,'\x63\x6f\x5e\x24')+_0x2773b4(0x504,'\x58\x39\x49\x51')]=!![];_0x18a2a6['\x57\x73\x5a\x77\x6b'](_0x3dab27,_0x101fcc,_0x37c8a3);const _0x4424f3={};return _0x4424f3[_0x2773b4(0x798,'\x50\x29\x47\x65')]=_0x7b96e1,_0x4424f3[_0x2773b4(0x44d,'\x47\x46\x75\x74')]=_0x34f254,_0x4424f3['\x73\x74\x61\x72\x74\x65\x64\x5f'+'\x61\x74']=_0xed3a53,_0x4424f3;}function _0x21a69d({signals:_0x56df93,genes:_0x57201b,driftEnabled:_0x532fd8}){const _0x93deca=_0x24f893,_0x529111={'\x57\x46\x68\x6b\x70':function(_0x16a7a3,_0x5e2295){return _0x16a7a3(_0x5e2295);},'\x58\x71\x41\x47\x4c':function(_0xce5708,_0x4a59c3){return _0xce5708(_0x4a59c3);},'\x50\x42\x48\x64\x57':function(_0xd95272){return _0xd95272();},'\x44\x45\x6c\x4a\x76':function(_0x37b5d2,_0x42b3b1){return _0x37b5d2||_0x42b3b1;},'\x42\x46\x47\x4e\x71':'\x6e\x6f\x6e\x65','\x79\x59\x48\x73\x78':function(_0x34ed85,_0x46d3cc){return _0x34ed85||_0x46d3cc;},'\x4a\x73\x47\x67\x76':function(_0x3575b7,_0xa10e90){return _0x3575b7(_0xa10e90);},'\x65\x4b\x76\x71\x44':'\x4d\x65\x6d\x6f\x72\x79\x47\x72'+_0x93deca(0x86c,'\x63\x6f\x5e\x24'),'\x52\x66\x72\x76\x74':_0x93deca(0x626,'\x44\x51\x24\x40'),'\x76\x4e\x68\x50\x4b':function(_0x840c54,_0x483b38){return _0x840c54(_0x483b38);},'\x79\x68\x7a\x57\x58':function(_0x459564,_0x3a8adb){return _0x459564||_0x3a8adb;},'\x6c\x6d\x4d\x71\x4a':function(_0x3d16f4,_0x12ecd3){return _0x3d16f4(_0x12ecd3);},'\x7a\x6e\x70\x4b\x6b':function(_0x2ca468,_0x57edc9){return _0x2ca468||_0x57edc9;},'\x4a\x52\x64\x41\x62':function(_0x192732,_0x3d78d9){return _0x192732||_0x3d78d9;},'\x6a\x42\x4b\x4c\x53':function(_0x1de5b8,_0x4acb78){return _0x1de5b8===_0x4acb78;},'\x6b\x64\x54\x70\x6a':_0x93deca(0x313,'\x50\x61\x6e\x76'),'\x54\x63\x41\x61\x53':function(_0x25281c){return _0x25281c();},'\x46\x4e\x42\x52\x44':function(_0x4cefb2,_0x505fa8,_0x25e03c){return _0x4cefb2(_0x505fa8,_0x25e03c);},'\x71\x70\x46\x47\x53':function(_0x4e5c9d,_0x348391){return _0x4e5c9d(_0x348391);},'\x52\x42\x56\x73\x59':function(_0x16b213,_0x4611d1){return _0x16b213(_0x4611d1);},'\x5a\x45\x68\x51\x74':function(_0x344981,_0x112f34,_0x70cd84){return _0x344981(_0x112f34,_0x70cd84);},'\x6a\x5a\x46\x6f\x6b':'\x63\x75\x72\x72\x69\x63\x75\x6c'+_0x93deca(0x875,'\x57\x38\x6b\x49')+'\x74\x3a','\x49\x4d\x6e\x58\x64':function(_0x488fca,_0x49ffc0){return _0x488fca(_0x49ffc0);},'\x4d\x45\x43\x75\x49':function(_0xb93d29,_0x41c3a7,_0x1a7a92){return _0xb93d29(_0x41c3a7,_0x1a7a92);},'\x57\x79\x55\x69\x56':function(_0x49146e,_0x1dcea2){return _0x49146e(_0x1dcea2);},'\x52\x54\x70\x50\x5a':function(_0x434f9d,_0x5423de){return _0x434f9d(_0x5423de);},'\x6e\x4c\x6a\x6c\x65':function(_0x516270,_0x193959){return _0x516270||_0x193959;},'\x57\x6c\x55\x4c\x6d':function(_0x309c1e,_0x193863){return _0x309c1e-_0x193863;},'\x67\x79\x44\x65\x73':function(_0x474b7f,_0x3f2ba6){return _0x474b7f===_0x3f2ba6;},'\x5a\x61\x53\x4b\x56':'\x73\x75\x63\x63\x65\x73\x73','\x65\x63\x51\x4f\x47':function(_0x293997,_0x36d641){return _0x293997-_0x36d641;},'\x41\x68\x51\x73\x61':function(_0x1fa59e,_0x3b30ff){return _0x1fa59e*_0x3b30ff;},'\x4e\x61\x51\x45\x6b':function(_0x35a4a9,_0x4a7fb2){return _0x35a4a9>=_0x4a7fb2;},'\x47\x65\x73\x79\x6e':function(_0x12a4e5,_0x428397){return _0x12a4e5!==_0x428397;},'\x66\x6d\x51\x6b\x4e':_0x93deca(0x2e7,'\x4b\x36\x25\x33'),'\x51\x49\x6f\x44\x53':function(_0x18c832,_0xd85c49){return _0x18c832===_0xd85c49;},'\x79\x54\x75\x76\x6e':'\x65\x70\x6f\x63\x68\x5f\x62\x6f'+_0x93deca(0x2e3,'\x48\x6d\x74\x4d'),'\x68\x59\x62\x54\x4d':function(_0x32421f,_0x186dad){return _0x32421f-_0x186dad;},'\x69\x6a\x42\x55\x6a':function(_0x43765e,_0x2fbc83){return _0x43765e>=_0x2fbc83;},'\x4a\x71\x44\x4d\x61':_0x93deca(0x7dd,'\x71\x4b\x61\x4b'),'\x42\x4e\x75\x44\x4c':'\x52\x7a\x70\x49\x79','\x44\x75\x71\x66\x75':function(_0x2f5a35,_0x172016){return _0x2f5a35>=_0x172016;},'\x52\x78\x6e\x58\x70':_0x93deca(0x588,'\x70\x23\x36\x65'),'\x42\x4e\x45\x4f\x73':function(_0x4a4377,_0x510425){return _0x4a4377+_0x510425;},'\x63\x5a\x58\x55\x64':_0x93deca(0x4d5,'\x70\x30\x56\x79'),'\x6e\x61\x4b\x47\x6d':function(_0x460657,_0x40e831){return _0x460657!==_0x40e831;},'\x63\x55\x70\x6e\x74':_0x93deca(0x824,'\x4f\x4b\x4b\x62'),'\x7a\x4c\x70\x53\x66':function(_0x193b59,_0x56cbfc,_0x351344){return _0x193b59(_0x56cbfc,_0x351344);},'\x72\x4a\x6a\x55\x4b':function(_0x5081eb,_0x36006a){return _0x5081eb>=_0x36006a;},'\x49\x6d\x59\x4a\x76':function(_0x3c0694,_0x226e33){return _0x3c0694!==_0x226e33;},'\x4d\x71\x6c\x45\x72':'\x47\x65\x6e\x65','\x54\x6d\x66\x6f\x43':function(_0xa27a52,_0x3fc05f){return _0xa27a52&&_0x3fc05f;},'\x41\x47\x70\x6e\x4d':function(_0xccf3e0,_0x1fb909){return _0xccf3e0>_0x1fb909;},'\x64\x4a\x57\x66\x43':function(_0x341479,_0x3cd62f){return _0x341479+_0x3cd62f;},'\x63\x7a\x4e\x73\x59':_0x93deca(0x365,'\x78\x56\x4c\x45'),'\x67\x78\x65\x75\x7a':_0x93deca(0x306,'\x5b\x36\x72\x37'),'\x61\x77\x54\x47\x51':function(_0x524f98,_0x1572e4){return _0x524f98*_0x1572e4;},'\x78\x68\x6f\x4e\x64':function(_0x84c4a,_0x190cc2,_0x2f4d3c){return _0x84c4a(_0x190cc2,_0x2f4d3c);},'\x6d\x78\x45\x5a\x7a':function(_0x3249cb,_0x30f4d9){return _0x3249cb>_0x30f4d9;},'\x70\x62\x42\x77\x6d':function(_0x93ae48,_0x3ea73d){return _0x93ae48||_0x3ea73d;},'\x5a\x67\x4a\x4a\x57':function(_0x362721,_0x330952){return _0x362721(_0x330952);},'\x4b\x6c\x50\x6f\x79':_0x93deca(0x88c,'\x44\x6c\x68\x4d'),'\x49\x70\x4e\x5a\x6b':function(_0x153950,_0x5862f9){return _0x153950+_0x5862f9;},'\x78\x45\x56\x76\x6f':function(_0x53c8fe,_0x99adc2,_0x26f2e3){return _0x53c8fe(_0x99adc2,_0x26f2e3);},'\x55\x6f\x41\x49\x67':function(_0x380619,_0x43e02d){return _0x380619>_0x43e02d;},'\x42\x50\x77\x43\x70':function(_0x74e954,_0x3ecc84){return _0x74e954<_0x3ecc84;},'\x4f\x4e\x74\x57\x6d':function(_0x3c1d42,_0x285f20){return _0x3c1d42<_0x285f20;},'\x69\x65\x59\x41\x74':function(_0x21921b,_0xf2ce1a){return _0x21921b===_0xf2ce1a;},'\x53\x79\x4d\x5a\x6a':function(_0x1919d9,_0x986267){return _0x1919d9>_0x986267;},'\x45\x79\x73\x73\x66':'\x45\x77\x6f\x58\x4b','\x61\x59\x56\x46\x59':_0x93deca(0x55a,'\x44\x6b\x41\x4f'),'\x50\x59\x64\x6b\x73':function(_0x48b5ba,_0x291806){return _0x48b5ba>_0x291806;},'\x4e\x51\x45\x4b\x71':_0x93deca(0x6a3,'\x6c\x57\x4d\x30')+_0x93deca(0x536,'\x4a\x74\x4a\x4f')+_0x93deca(0x7a4,'\x67\x56\x36\x28')},_0x549c43=_0x1c2175(0x2525+-0x1*-0x194f+-0x1b52*0x2);let _0x17b791=null;for(let _0x32537f=_0x549c43[_0x93deca(0x275,'\x70\x30\x56\x79')]-(-0x14c*0x8+0x3*0x8b5+-0xfbe);_0x529111[_0x93deca(0x345,'\x4e\x70\x6e\x7a')](_0x32537f,-0x13fc+-0x17fa+0x2bf6);_0x32537f--){if(_0x529111[_0x93deca(0x732,'\x4b\x36\x25\x33')](_0x529111[_0x93deca(0x4a1,'\x51\x70\x6f\x4c')],_0x93deca(0x486,'\x78\x56\x4c\x45')))return null;else{const _0x3111e6=_0x549c43[_0x32537f];if(_0x3111e6&&_0x529111['\x51\x49\x6f\x44\x53'](_0x3111e6['\x6b\x69\x6e\x64'],_0x529111[_0x93deca(0x375,'\x75\x45\x5a\x6f')])&&_0x3111e6['\x74\x73']){_0x17b791=Date[_0x93deca(0x85b,'\x51\x70\x6f\x4c')](_0x3111e6['\x74\x73']);break;}}}const _0x12030e=0x12e*-0x1f+0x25*0x7c+0x12a6+0.1,_0x5c49d9=_0x529111[_0x93deca(0x581,'\x65\x76\x39\x75')](_0xa9bd7b,_0x549c43),_0x115423=_0x3aab8b(_0x549c43);let _0xe67328=_0x5c49d9,_0x3830c4=_0x115423,_0x18b185=-(-0x17cc+-0x483*-0x4+0x5c1);if(_0x529111[_0x93deca(0x7b7,'\x4b\x28\x32\x23')](_0x17b791,null))for(let _0x4d6be5=_0x529111['\x68\x59\x62\x54\x4d'](_0x549c43['\x6c\x65\x6e\x67\x74\x68'],0x26ee+0x20c4+-0x47b1);_0x529111[_0x93deca(0x351,'\x63\x6f\x5e\x24')](_0x4d6be5,0x529+-0x1*0x1f0f+-0x11*-0x186);_0x4d6be5--){const _0x46ab08=_0x549c43[_0x4d6be5];if(_0x46ab08&&_0x46ab08['\x6b\x69\x6e\x64']===_0x529111[_0x93deca(0x654,'\x6c\x23\x7a\x76')]&&_0x46ab08['\x74\x73']){if(_0x529111[_0x93deca(0x4a2,'\x4f\x4b\x4b\x62')]===_0x529111[_0x93deca(0x433,'\x41\x31\x43\x39')]){const _0x7307ad=_0x529111[_0x93deca(0x2e6,'\x41\x31\x43\x39')](_0x5118cc,_0x5d76ff),_0x462ec3=_0x3cd83f&&_0x2c2bf7['\x69\x64']?_0x529111[_0x93deca(0x83b,'\x6b\x70\x71\x4c')](_0x51153c,_0x48d141['\x69\x64']):null,_0x14273c=_0x3e6cb6&&_0x1f367f[_0x93deca(0x87c,'\x48\x6d\x74\x4d')]?_0x529111[_0x93deca(0x864,'\x78\x56\x4c\x45')](_0x2aae5b,_0x3e4a05[_0x93deca(0x65d,'\x68\x7a\x7a\x21')]):null,_0x57b254=_0x529111[_0x93deca(0x427,'\x4a\x26\x39\x41')](_0x1a5f27),_0x439a79=_0x529111[_0x93deca(0x597,'\x58\x39\x49\x51')](_0x4b1c58,_0x4af093),_0x50a644=_0x93deca(0x219,'\x70\x30\x56\x79')+_0x38e717[_0x93deca(0x823,'\x6c\x23\x7a\x76')]()+'\x5f'+_0x529111[_0x93deca(0x6e6,'\x73\x37\x75\x4e')](_0xa196f0,_0x7307ad+'\x7c'+_0x529111['\x44\x45\x6c\x4a\x76'](_0x462ec3,_0x529111[_0x93deca(0x88d,'\x75\x45\x5a\x6f')])+'\x7c'+_0x57b254),_0x1ccf78=_0x529111[_0x93deca(0x508,'\x4f\x4b\x4b\x62')](_0x3bb794,null),_0x38a21a=_0xce5a27&&_0x529111[_0x93deca(0x763,'\x67\x56\x36\x28')](_0x16bca8,_0x20d3e5)?_0x529111[_0x93deca(0x318,'\x72\x76\x61\x5d')](_0x232595,_0x34ad52):null,_0x499d1a=_0x1ccf78&&_0x388582(_0x1ccf78)?_0x529111[_0x93deca(0x340,'\x65\x76\x39\x75')](_0x2f7520,_0x1ccf78):null,_0x10f066=_0x2de1c0['\x69\x73\x41\x72\x72\x61\x79'](_0x45e7c5)?_0x8bebd6[_0x93deca(0x7c5,'\x63\x6f\x5e\x24')](function(_0x1c9c1c){const _0x2323ee=_0x93deca;return _0x1c9c1c&&_0x1c9c1c['\x69\x64']?_0x529111[_0x2323ee(0x240,'\x66\x4c\x65\x47')](_0x272ccc,_0x1c9c1c['\x69\x64']):null;})['\x66\x69\x6c\x74\x65\x72'](_0x1994a9):[],_0x497418={};_0x497418['\x69\x64']=_0x462ec3,_0x497418[_0x93deca(0x21c,'\x44\x51\x24\x40')]=_0x14273c;const _0x1bac08={'\x74\x79\x70\x65':_0x529111[_0x93deca(0x54a,'\x50\x29\x47\x65')],'\x6b\x69\x6e\x64':_0x529111[_0x93deca(0x75d,'\x68\x7a\x7a\x21')],'\x69\x64':_0x93deca(0x82f,'\x4b\x36\x25\x33')+_0x3a7af5[_0x93deca(0x36b,'\x70\x23\x36\x65')]()+'\x5f'+_0x529111[_0x93deca(0x4a7,'\x44\x6b\x41\x4f')](_0x52987e,_0x50a644),'\x74\x73':_0x57b254,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0x7307ad,'\x73\x69\x67\x6e\x61\x6c\x73':_0xaa7262[_0x93deca(0x2d2,'\x5b\x36\x72\x37')](_0x177383)?_0x37394e:[],'\x65\x72\x72\x6f\x72\x5f\x73\x69\x67\x6e\x61\x74\x75\x72\x65':_0x529111['\x79\x68\x7a\x57\x58'](_0x439a79,null)},'\x6d\x75\x74\x61\x74\x69\x6f\x6e':_0x38a21a?{'\x69\x64':_0x38a21a['\x69\x64'],'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x38a21a[_0x93deca(0x37e,'\x70\x46\x25\x2a')],'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0x38a21a['\x74\x72\x69\x67\x67\x65\x72\x5f'+_0x93deca(0x46e,'\x6c\x57\x4d\x30')],'\x74\x61\x72\x67\x65\x74':_0x38a21a[_0x93deca(0x28d,'\x6f\x68\x54\x38')],'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':_0x38a21a[_0x93deca(0x741,'\x6f\x68\x54\x38')+_0x93deca(0x21b,'\x5b\x36\x72\x37')],'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x38a21a[_0x93deca(0x24a,'\x51\x70\x6f\x4c')+'\x65\x6c']}:null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79':_0x499d1a?{'\x6b\x65\x79':_0x529111[_0x93deca(0x58a,'\x50\x64\x35\x53')](_0x2208f8,_0x499d1a),'\x73\x74\x61\x74\x65':_0x499d1a}:null,'\x67\x65\x6e\x65':_0x497418,'\x68\x79\x70\x6f\x74\x68\x65\x73\x69\x73':_0xa8fb60?{'\x69\x64':_0x529111['\x6c\x6d\x4d\x71\x4a'](_0x10e0b8,_0x8c504a)}:null,'\x61\x63\x74\x69\x6f\x6e':{'\x69\x64':_0x50a644,'\x64\x72\x69\x66\x74':!!_0x27e1ea,'\x73\x65\x6c\x65\x63\x74\x65\x64\x5f\x62\x79':_0x529111[_0x93deca(0x739,'\x65\x76\x39\x75')](_0x58a52a,_0x93deca(0x494,'\x4b\x64\x78\x78')),'\x73\x65\x6c\x65\x63\x74\x6f\x72':_0x529111[_0x93deca(0x451,'\x50\x61\x6e\x76')](_0x5def53,null)},'\x63\x61\x70\x73\x75\x6c\x65\x73':{'\x75\x73\x65\x64':_0x337425[_0x93deca(0x699,'\x4f\x4b\x4b\x62')](_0x5ccd5f)?_0x383e70[_0x93deca(0x6a2,'\x4e\x70\x6e\x7a')](_0x42016f)[_0x93deca(0x51a,'\x71\x4b\x61\x4b')](_0x59e97e):[]},'\x6f\x62\x73\x65\x72\x76\x65\x64':_0x134a12&&_0x529111['\x6a\x42\x4b\x4c\x53'](typeof _0x225029,_0x529111[_0x93deca(0x3c8,'\x4a\x74\x4a\x4f')])?_0x17aa44:null};_0x529111[_0x93deca(0x410,'\x56\x30\x35\x5a')](_0x2f6c0c,_0x1bac08);const _0x3b25f3=_0x529111[_0x93deca(0x4ec,'\x52\x40\x52\x65')](_0x2f3d85),_0x4b03cb={};_0x4b03cb[_0x93deca(0x4bd,'\x4f\x35\x66\x62')+_0x93deca(0x339,'\x50\x61\x6e\x76')]=null;const _0x44918f=_0x529111[_0x93deca(0x6f7,'\x48\x6d\x74\x4d')](_0x424602,_0x3b25f3,_0x4b03cb);_0x44918f[_0x93deca(0x49e,'\x5b\x2a\x25\x62')+_0x93deca(0x4b8,'\x6c\x23\x7a\x76')]={'\x61\x63\x74\x69\x6f\x6e\x5f\x69\x64':_0x50a644,'\x73\x69\x67\x6e\x61\x6c\x5f\x6b\x65\x79':_0x7307ad,'\x73\x69\x67\x6e\x61\x6c\x73':_0xe6673c['\x69\x73\x41\x72\x72\x61\x79'](_0x38d801)?_0x12e442:[],'\x6d\x75\x74\x61\x74\x69\x6f\x6e\x5f\x69\x64':_0x38a21a?_0x38a21a['\x69\x64']:null,'\x6d\x75\x74\x61\x74\x69\x6f\x6e\x5f\x63\x61\x74\x65\x67\x6f\x72\x79':_0x38a21a?_0x38a21a[_0x93deca(0x309,'\x70\x30\x56\x79')]:null,'\x6d\x75\x74\x61\x74\x69\x6f\x6e\x5f\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x38a21a?_0x38a21a['\x72\x69\x73\x6b\x5f\x6c\x65\x76'+'\x65\x6c']:null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x5f\x6b\x65\x79':_0x499d1a?_0x529111[_0x93deca(0x786,'\x63\x6f\x5e\x24')](_0x13fef8,_0x499d1a):null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x5f\x73\x74\x61\x74\x65':_0x499d1a||null,'\x67\x65\x6e\x65\x5f\x69\x64':_0x462ec3,'\x67\x65\x6e\x65\x5f\x63\x61\x74\x65\x67\x6f\x72\x79':_0x14273c,'\x68\x79\x70\x6f\x74\x68\x65\x73\x69\x73\x5f\x69\x64':_0x232858?_0x529111[_0x93deca(0x846,'\x6f\x68\x54\x38')](_0x53f4ed,_0x8a1112):null,'\x63\x61\x70\x73\x75\x6c\x65\x73\x5f\x75\x73\x65\x64':_0x15b084[_0x93deca(0x6a1,'\x30\x35\x70\x72')](_0x544202)?_0x36ff94[_0x93deca(0x845,'\x58\x39\x49\x51')](_0x3f050a)[_0x93deca(0x74a,'\x50\x64\x35\x53')](_0x473609):[],'\x68\x61\x64\x5f\x65\x72\x72\x6f\x72':_0x529111[_0x93deca(0x58a,'\x50\x64\x35\x53')](_0x6dd1de,_0x1964bc),'\x63\x72\x65\x61\x74\x65\x64\x5f\x61\x74':_0x57b254,'\x6f\x75\x74\x63\x6f\x6d\x65\x5f\x72\x65\x63\x6f\x72\x64\x65\x64':![],'\x62\x61\x73\x65\x6c\x69\x6e\x65\x5f\x6f\x62\x73\x65\x72\x76\x65\x64':_0x391e8b&&_0x529111[_0x93deca(0x52a,'\x44\x6c\x68\x4d')](typeof _0x16ed71,_0x529111[_0x93deca(0x2ae,'\x63\x30\x6e\x66')])?_0x14214b:null,'\x63\x68\x75\x6e\x6b\x5f\x67\x65\x6e\x65\x5f\x69\x64\x73':_0x10f066[_0x93deca(0x2b2,'\x4f\x35\x66\x62')]>-0x23a9+-0x245*0xd+0x412a?_0x10f066:_0x66513d},_0x529111['\x5a\x45\x68\x51\x74'](_0x27527b,_0x3b25f3,_0x44918f);const _0x1d931f={};return _0x1d931f['\x61\x63\x74\x69\x6f\x6e\x49\x64']=_0x50a644,_0x1d931f[_0x93deca(0x874,'\x71\x4b\x61\x4b')+'\x79']=_0x7307ad,_0x1d931f;}else{_0x18b185=_0x4d6be5;break;}}}if(_0x529111[_0x93deca(0x4d2,'\x50\x64\x35\x53')](_0x18b185,0x1*0x149f+-0x1c59+0x7ba)){if(_0x529111[_0x93deca(0x5bf,'\x46\x46\x5e\x25')]!==_0x93deca(0x57a,'\x5b\x36\x72\x37'))return _0x41cf27(_0xc21d54)[_0x93deca(0x665,'\x52\x40\x52\x65')+'\x74\x68'](_0x529111[_0x93deca(0x390,'\x6c\x57\x4d\x30')]);else{const _0x1c7083=_0x549c43[_0x93deca(0x305,'\x50\x29\x47\x65')](_0x529111[_0x93deca(0x551,'\x47\x46\x75\x74')](_0x18b185,-0xd4c+-0x41*-0x97+-0x190a));_0xe67328=_0x529111[_0x93deca(0x723,'\x6c\x23\x7a\x76')](_0xa9bd7b,_0x1c7083),_0x3830c4=_0x3aab8b(_0x1c7083);}}const _0x4d057=Array[_0x93deca(0x42a,'\x56\x30\x35\x5a')](_0x56df93)?_0x56df93:[],_0x23fd41=_0x529111[_0x93deca(0x53c,'\x63\x4f\x21\x4d')](_0x319613,_0x4d057),_0x52d017=new Set(),_0x586168=[],_0x31f659=new Set(),_0x474fb0=[],_0x457870={};_0x457870[_0x93deca(0x428,'\x6c\x23\x7a\x76')]=_0x23fd41,_0x457870[_0x93deca(0x4b6,'\x6c\x23\x7a\x76')]=0x1,_0x474fb0[_0x93deca(0x2c6,'\x30\x35\x70\x72')](_0x457870),_0x31f659[_0x93deca(0x317,'\x47\x46\x75\x74')](_0x23fd41);for(const _0x5a5c96 of _0x549c43){if(_0x529111[_0x93deca(0x37d,'\x70\x23\x36\x65')](_0x529111['\x63\x5a\x58\x55\x64'],_0x529111[_0x93deca(0x514,'\x63\x4f\x21\x4d')])){if(!_0x5a5c96||_0x529111['\x6e\x61\x4b\x47\x6d'](_0x5a5c96[_0x93deca(0x338,'\x4b\x28\x32\x23')],_0x529111['\x65\x4b\x76\x71\x44']))continue;const _0x4eea6c=_0x5a5c96[_0x93deca(0x218,'\x68\x7a\x7a\x21')]&&_0x5a5c96[_0x93deca(0x347,'\x78\x56\x4c\x45')][_0x93deca(0x2ef,'\x4e\x70\x6e\x7a')]?_0x529111[_0x93deca(0x373,'\x30\x35\x70\x72')](String,_0x5a5c96['\x73\x69\x67\x6e\x61\x6c'][_0x93deca(0x830,'\x6b\x70\x71\x4c')]):_0x529111[_0x93deca(0x759,'\x52\x40\x52\x65')];if(_0x31f659['\x68\x61\x73'](_0x4eea6c))continue;const _0x3c608d=_0x5a5c96[_0x93deca(0x475,'\x57\x38\x6b\x49')]&&Array[_0x93deca(0x65b,'\x4e\x70\x6e\x7a')](_0x5a5c96[_0x93deca(0x562,'\x46\x46\x5e\x25')][_0x93deca(0x23d,'\x4e\x70\x6e\x7a')])?_0x5a5c96[_0x93deca(0x347,'\x78\x56\x4c\x45')][_0x93deca(0x74e,'\x4b\x36\x25\x33')]:[],_0x2003b2=_0x529111[_0x93deca(0x7ee,'\x44\x51\x24\x40')](_0x136e3e,_0x4d057,_0x3c608d);if(_0x529111[_0x93deca(0x443,'\x50\x64\x35\x53')](_0x2003b2,0x232e+-0xa*-0x1+-0x62*0x5c+0.34)){const _0x19df86={};_0x19df86[_0x93deca(0x34c,'\x63\x30\x6e\x66')]=_0x4eea6c,_0x19df86[_0x93deca(0x76c,'\x70\x46\x25\x2a')]=_0x2003b2,_0x474fb0[_0x93deca(0x809,'\x70\x46\x25\x2a')](_0x19df86),_0x31f659[_0x93deca(0x2c5,'\x73\x37\x75\x4e')](_0x4eea6c);}}else{const _0x348838=_0x2b67d9(-0x1*-0x10ad+-0x3e0*0x1+-0x4fd),_0x3f4cc3=_0x529111[_0x93deca(0x3f7,'\x56\x30\x35\x5a')](_0x3a1afd,_0x348838),_0x109f6b=_0x141b9d+'\x3a\x3a'+_0x4ae84d,_0x3137a2={};_0x3137a2[_0x93deca(0x4a8,'\x6b\x70\x71\x4c')]=0x0,_0x3137a2['\x66\x61\x69\x6c']=0x0,_0x3137a2[_0x93deca(0x461,'\x4a\x26\x39\x41')]=null;const _0x329fe8=_0x3f4cc3[_0x93deca(0x49f,'\x4b\x28\x32\x23')](_0x109f6b)||_0x3137a2,_0x12e5fd={};_0x12e5fd[_0x93deca(0x767,'\x44\x51\x24\x40')+_0x93deca(0x5ae,'\x5b\x2a\x25\x62')]=_0x5625aa;const _0x3594a9=_0x529111[_0x93deca(0x87b,'\x75\x45\x5a\x6f')](_0x2663ed,_0x329fe8,_0x12e5fd),_0x266327=_0x529111[_0x93deca(0x5f0,'\x30\x24\x52\x66')](_0x390324),_0x3801ae={};_0x3801ae['\x69\x64']=_0x582ed7,_0x3801ae[_0x93deca(0x2d1,'\x72\x76\x61\x5d')]=_0x41d7a8||null;const _0x26bbc2={};return _0x26bbc2[_0x93deca(0x7cd,'\x4b\x28\x32\x23')+'\x65\x79']=_0x2c7acf,_0x26bbc2[_0x93deca(0x879,'\x6c\x23\x7a\x76')]=_0x15b8cd,{'\x74\x79\x70\x65':_0x93deca(0x896,'\x6c\x57\x4d\x30')+_0x93deca(0x807,'\x63\x4f\x21\x4d'),'\x6b\x69\x6e\x64':_0x93deca(0x1f5,'\x73\x37\x75\x4e')+_0x93deca(0x596,'\x50\x61\x6e\x76'),'\x69\x64':_0x93deca(0x8a3,'\x57\x38\x6b\x49')+_0xa4b57b[_0x93deca(0x6d9,'\x4a\x74\x4a\x4f')]()+'\x5f'+_0x529111[_0x93deca(0x48e,'\x57\x45\x5e\x4e')](_0x2a8b7b,_0x43eeef+'\x7c'+_0x4176b6+(_0x93deca(0x63f,'\x43\x6a\x77\x54')+_0x93deca(0x62a,'\x5b\x2a\x25\x62'))+_0x266327),'\x74\x73':_0x266327,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0x3e9df4,'\x73\x69\x67\x6e\x61\x6c\x73':_0xaeadb1[_0x93deca(0x6e0,'\x78\x56\x4c\x45')](_0x4dc562)?_0x43c68f:[]},'\x67\x65\x6e\x65':_0x3801ae,'\x65\x64\x67\x65':_0x26bbc2,'\x73\x74\x61\x74\x73':{'\x73\x75\x63\x63\x65\x73\x73':_0x529111[_0x93deca(0x620,'\x5b\x2a\x25\x62')](_0x259223,_0x329fe8[_0x93deca(0x52c,'\x70\x23\x36\x65')])||-0x1*0x1fa5+0x2b*-0x76+0x3377*0x1,'\x66\x61\x69\x6c':_0x529111[_0x93deca(0x87d,'\x65\x76\x39\x75')](_0x2dc15a,_0x329fe8[_0x93deca(0x5f6,'\x5b\x36\x72\x37')])||-0xbad*-0x1+-0x6*-0x209+-0x17e3,'\x61\x74\x74\x65\x6d\x70\x74\x73':_0x529111[_0x93deca(0x6a0,'\x4b\x64\x78\x78')](_0x248d89,_0x3594a9[_0x93deca(0x407,'\x51\x70\x6f\x4c')])||0x157*0x8+-0x1010+0x558,'\x70':_0x3594a9['\x70'],'\x64\x65\x63\x61\x79\x5f\x77\x65\x69\x67\x68\x74':_0x3594a9['\x77'],'\x76\x61\x6c\x75\x65':_0x3594a9[_0x93deca(0x2f6,'\x63\x30\x6e\x66')],'\x68\x61\x6c\x66\x5f\x6c\x69\x66\x65\x5f\x64\x61\x79\x73':_0x13675b,'\x75\x70\x64\x61\x74\x65\x64\x5f\x61\x74':_0x266327},'\x64\x65\x72\x69\x76\x65\x64\x5f\x66\x72\x6f\x6d':{'\x6f\x75\x74\x63\x6f\x6d\x65\x5f\x65\x76\x65\x6e\x74\x5f\x69\x64':_0x529111[_0x93deca(0x843,'\x24\x6a\x6c\x23')](_0xef7e1,null)}};}}let _0x50e5e9=0x1798+0x2089*0x1+-0x3821*0x1;const _0x4bdb90=new Map();for(const _0x3e1246 of _0x474fb0){for(const _0x13761d of Array[_0x93deca(0x8a2,'\x57\x38\x6b\x49')](_0x57201b)?_0x57201b:[]){if(_0x529111[_0x93deca(0x3f8,'\x72\x76\x61\x5d')](_0x93deca(0x5f8,'\x43\x6a\x77\x54'),_0x93deca(0x325,'\x24\x6a\x6c\x23'))){if(!_0x13761d||_0x529111[_0x93deca(0x370,'\x66\x4c\x65\x47')](_0x13761d[_0x93deca(0x247,'\x46\x46\x5e\x25')],_0x529111[_0x93deca(0x21e,'\x51\x70\x6f\x4c')])||!_0x13761d['\x69\x64'])continue;const _0x2627e8=_0x3e1246[_0x93deca(0x428,'\x6c\x23\x7a\x76')]+'\x3a\x3a'+_0x13761d['\x69\x64'],_0x2a2eb0=_0x5c49d9[_0x93deca(0x5c3,'\x44\x6c\x68\x4d')](_0x2627e8),_0x3b4f2b=_0xe67328['\x67\x65\x74'](_0x2627e8),_0x368df8=_0x4bdb90[_0x93deca(0x2f4,'\x70\x46\x25\x2a')](_0x13761d['\x69\x64'])||{'\x67\x65\x6e\x65\x49\x64':_0x13761d['\x69\x64'],'\x62\x65\x73\x74':0x0,'\x61\x74\x74\x65\x6d\x70\x74\x73':0x0,'\x70\x72\x69\x6f\x72':0x0,'\x70\x72\x69\x6f\x72\x5f\x61\x74\x74\x65\x6d\x70\x74\x73':0x0,'\x72\x61\x77\x53\x75\x63\x63\x65\x73\x73':0x0,'\x72\x61\x77\x46\x61\x69\x6c':0x0,'\x70\x65\x72\x4b\x65\x79\x41\x74\x74\x65\x6d\x70\x74\x73':0x0,'\x69\x6e\x65\x72\x74':0x0,'\x63\x6f\x6e\x73\x65\x63\x75\x74\x69\x76\x65\x49\x6e\x65\x72\x74':0x0};if(_0x2a2eb0){let _0x503e66;if(_0x529111[_0x93deca(0x5c1,'\x68\x33\x64\x45')](_0x17b791,_0x3b4f2b)&&_0x529111['\x41\x47\x70\x6e\x4d'](_0x529111[_0x93deca(0x352,'\x72\x76\x61\x5d')](_0x3b4f2b[_0x93deca(0x621,'\x63\x30\x6e\x66')],_0x3b4f2b[_0x93deca(0x884,'\x41\x31\x43\x39')]),0x191*0x1+0x2b0*0x2+0x6f1*-0x1)){const _0x4e2345={};_0x4e2345[_0x93deca(0x3e2,'\x6b\x70\x71\x4c')+_0x93deca(0x36d,'\x73\x37\x75\x4e')]=0x1e;const _0x3ce4d0=_0x177b01(_0x3b4f2b,_0x4e2345);_0x503e66=_0x3ce4d0[_0x93deca(0x7dc,'\x71\x4b\x61\x4b')]*_0x3e1246[_0x93deca(0x4ce,'\x58\x39\x49\x51')];}else{if(_0x529111[_0x93deca(0x516,'\x78\x56\x4c\x45')]!==_0x529111[_0x93deca(0x5ed,'\x24\x6a\x6c\x23')]){const _0x57e72b={};_0x57e72b[_0x93deca(0x3fb,'\x63\x4f\x21\x4d')+'\x65\x5f\x64\x61\x79\x73']=0x1e;const _0x164485=_0x177b01(_0x2a2eb0,_0x57e72b);let _0x29647d=0x52*-0x2f+0x3*0xd7+0xc8a;if(_0x17b791)_0x29647d=_0x12030e;_0x503e66=_0x529111[_0x93deca(0x49a,'\x73\x37\x75\x4e')](_0x529111[_0x93deca(0x3b4,'\x66\x4c\x65\x47')](_0x164485[_0x93deca(0x6f4,'\x68\x33\x64\x45')],_0x3e1246[_0x93deca(0x224,'\x4a\x26\x39\x41')]),_0x29647d);}else{const _0x44ef9b=_0x529111[_0x93deca(0x38a,'\x4b\x28\x32\x23')](_0x1ba4b4,_0x27860a);_0x4ab3f7+=_0x103069[_0x93deca(0x77f,'\x5b\x36\x72\x37')](-(-0x2690+-0x6ee+-0x50e*-0x9+0.12),_0x2ccf6a[_0x93deca(0x4f4,'\x56\x30\x35\x5a')](-0x22*-0xd5+-0x1924*-0x1+-0x356e+0.12,_0x44ef9b/(-0x907+-0x2e2*0x1+0xc1b)));}}const _0x46bcc7={};_0x46bcc7['\x68\x61\x6c\x66\x5f\x6c\x69\x66'+'\x65\x5f\x64\x61\x79\x73']=0x1e;const _0x343be9=_0x529111[_0x93deca(0x6fa,'\x4b\x36\x25\x33')](_0x177b01,_0x2a2eb0,_0x46bcc7);if(_0x529111[_0x93deca(0x46b,'\x63\x4f\x21\x4d')](_0x503e66,_0x368df8[_0x93deca(0x5d0,'\x50\x61\x6e\x76')]))_0x368df8[_0x93deca(0x656,'\x4b\x64\x78\x78')]=_0x503e66;_0x368df8[_0x93deca(0x7f1,'\x78\x56\x4c\x45')]=Math[_0x93deca(0x3cc,'\x67\x56\x36\x28')](_0x368df8[_0x93deca(0x2b9,'\x57\x38\x6b\x49')],_0x343be9[_0x93deca(0x605,'\x73\x37\x75\x4e')]);const _0x1cd69c={};_0x1cd69c[_0x93deca(0x621,'\x63\x30\x6e\x66')]=0x0,_0x1cd69c[_0x93deca(0x2a4,'\x44\x6b\x41\x4f')]=0x0,_0x1cd69c[_0x93deca(0x3b1,'\x4b\x64\x78\x78')]=0x0,_0x1cd69c[_0x93deca(0x1fa,'\x73\x37\x75\x4e')+_0x93deca(0x4ca,'\x70\x23\x36\x65')+'\x74']=0x0;const _0x41be7b=_0x529111[_0x93deca(0x383,'\x71\x4b\x61\x4b')](_0x3b4f2b,_0x1cd69c);_0x368df8[_0x93deca(0x501,'\x44\x6b\x41\x4f')+'\x73\x73']+=_0x529111[_0x93deca(0x80c,'\x50\x64\x35\x53')](Number,_0x41be7b[_0x93deca(0x467,'\x4b\x64\x78\x78')])||0x1*0x26f3+-0x1a54+0x9*-0x167,_0x368df8[_0x93deca(0x6de,'\x67\x56\x36\x28')]+=_0x529111[_0x93deca(0x540,'\x70\x30\x56\x79')](Number,_0x41be7b['\x66\x61\x69\x6c'])||0x8*-0x125+-0x3d9+0xd01;if(_0x529111[_0x93deca(0x894,'\x4b\x36\x25\x33')](_0x3e1246[_0x93deca(0x71d,'\x44\x6c\x68\x4d')],-0x2071+0x2539*0x1+0x8*-0x99+0.8)){if(_0x93deca(0x7b6,'\x57\x45\x5e\x4e')!==_0x529111[_0x93deca(0x872,'\x57\x45\x5e\x4e')])_0xe56927[_0x93deca(0x612,'\x6f\x68\x54\x38')+'\x63'](_0x3439a0);else{const _0x3c23a2=_0x529111['\x49\x70\x4e\x5a\x6b'](_0x529111[_0x93deca(0x6d5,'\x44\x6c\x68\x4d')](Number,_0x41be7b[_0x93deca(0x5e0,'\x72\x76\x61\x5d')])||0x305+-0x1ef1*-0x1+-0x10fb*0x2,Number(_0x41be7b['\x66\x61\x69\x6c'])||0x249a+0xfbe+0x10c*-0x32);_0x368df8['\x70\x65\x72\x4b\x65\x79\x41\x74'+_0x93deca(0x677,'\x4a\x74\x4a\x4f')]+=_0x3c23a2,_0x368df8['\x69\x6e\x65\x72\x74']+=_0x529111[_0x93deca(0x84f,'\x43\x6a\x77\x54')](Number,_0x41be7b[_0x93deca(0x867,'\x44\x51\x24\x40')])||0x2bf*-0xa+0x13c0+0x2f*0x2a,_0x368df8[_0x93deca(0x4a4,'\x24\x6a\x6c\x23')+'\x69\x76\x65\x49\x6e\x65\x72\x74']=Math[_0x93deca(0x72e,'\x70\x23\x36\x65')](_0x368df8[_0x93deca(0x60e,'\x46\x46\x5e\x25')+_0x93deca(0x432,'\x4f\x35\x66\x62')],Number(_0x41be7b[_0x93deca(0x79a,'\x44\x6c\x68\x4d')+_0x93deca(0x25f,'\x63\x30\x6e\x66')+'\x74'])||-0x38e*0x1+0x15*-0x17d+0x22cf);}}_0x50e5e9+=_0x343be9[_0x93deca(0x44e,'\x63\x4f\x21\x4d')];}const _0x3cd956=_0x115423['\x67\x65\x74'](String(_0x13761d['\x69\x64'])),_0x1accda=_0x3830c4[_0x93deca(0x60a,'\x4f\x35\x66\x62')](String(_0x13761d['\x69\x64']));if(_0x3cd956){let _0x523ecc;if(_0x529111[_0x93deca(0x7ef,'\x72\x76\x61\x5d')](_0x17b791,_0x1accda)&&_0x529111[_0x93deca(0x434,'\x50\x64\x35\x53')](_0x1accda['\x73\x75\x63\x63\x65\x73\x73'],_0x1accda[_0x93deca(0x215,'\x6c\x23\x7a\x76')])>-0x16*0x139+0x47f+0x1667){const _0x586ec4={};_0x586ec4[_0x93deca(0x7bc,'\x75\x45\x5a\x6f')+_0x93deca(0x76a,'\x51\x70\x6f\x4c')]=0x2d;const _0x3cdc51=_0x529111[_0x93deca(0x1ec,'\x67\x56\x36\x28')](_0x177b01,_0x1accda,_0x586ec4);_0x523ecc=_0x3cdc51[_0x93deca(0x361,'\x6f\x68\x54\x38')];}else{const _0x519b8c={};_0x519b8c['\x68\x61\x6c\x66\x5f\x6c\x69\x66'+_0x93deca(0x214,'\x4a\x74\x4a\x4f')]=0x2d;const _0x3199ec=_0x529111[_0x93deca(0x3e4,'\x6b\x70\x71\x4c')](_0x177b01,_0x3cd956,_0x519b8c);let _0x496251=-0x1eb*-0x11+0x1*-0x97b+-0x171f;if(_0x17b791)_0x496251=_0x12030e;_0x523ecc=_0x3199ec[_0x93deca(0x371,'\x72\x76\x61\x5d')]*_0x496251;}const _0x20b87e={};_0x20b87e[_0x93deca(0x7bc,'\x75\x45\x5a\x6f')+_0x93deca(0x57e,'\x47\x46\x75\x74')]=0x2d;const _0x45e4ca=_0x529111[_0x93deca(0x237,'\x4f\x4b\x4b\x62')](_0x177b01,_0x3cd956,_0x20b87e);_0x368df8['\x70\x72\x69\x6f\x72']=Math[_0x93deca(0x60c,'\x65\x76\x39\x75')](_0x368df8[_0x93deca(0x7c0,'\x73\x37\x75\x4e')],_0x523ecc),_0x368df8[_0x93deca(0x479,'\x78\x56\x4c\x45')+_0x93deca(0x7b4,'\x72\x76\x61\x5d')]=Math['\x6d\x61\x78'](_0x368df8['\x70\x72\x69\x6f\x72\x5f\x61\x74'+_0x93deca(0x482,'\x70\x23\x36\x65')],_0x45e4ca[_0x93deca(0x29f,'\x4e\x70\x6e\x7a')]);}_0x4bdb90[_0x93deca(0x777,'\x65\x76\x39\x75')](_0x13761d['\x69\x64'],_0x368df8);}else return _0x4ec12a[_0x93deca(0x4c9,'\x44\x51\x24\x40')](_0x59c170);}}for(const [_0x81a0c5,_0x575e4c]of _0x4bdb90[_0x93deca(0x38e,'\x58\x39\x49\x51')]()){const _0x4f8ad6=_0x529111['\x6d\x78\x45\x5a\x7a'](_0x575e4c['\x62\x65\x73\x74'],0x161d+0x143c+-0x25*0x125)?_0x529111[_0x93deca(0x4e3,'\x68\x7a\x7a\x21')](_0x575e4c[_0x93deca(0x22a,'\x52\x40\x52\x65')],_0x529111[_0x93deca(0x651,'\x66\x4c\x65\x47')](_0x575e4c['\x70\x72\x69\x6f\x72'],-0x823*-0x4+0xf93+-0x301f*0x1+0.12)):_0x529111[_0x93deca(0x6dc,'\x51\x70\x6f\x4c')](_0x575e4c[_0x93deca(0x51e,'\x4b\x64\x78\x78')],0x257*-0x3+0x16*0x13f+0xe3*-0x17+0.4),_0x5bc689=_0x529111[_0x93deca(0x2c1,'\x43\x6a\x77\x54')](_0x575e4c[_0x93deca(0x2bc,'\x5b\x36\x72\x37')+'\x73\x73'],-0x2a5*-0x6+-0x20*0xb3+0x682)&&_0x529111['\x55\x6f\x41\x49\x67'](_0x575e4c[_0x93deca(0x543,'\x5b\x2a\x25\x62')+'\x73\x73'],_0x575e4c[_0x93deca(0x5b2,'\x68\x7a\x7a\x21')]),_0x4caae3={};_0x4caae3['\x67\x65\x6e\x65\x49\x64']=_0x81a0c5,_0x4caae3[_0x93deca(0x28a,'\x6c\x57\x4d\x30')]=_0x4f8ad6,_0x4caae3[_0x93deca(0x25a,'\x51\x70\x6f\x4c')]=_0x575e4c['\x61\x74\x74\x65\x6d\x70\x74\x73'],_0x4caae3[_0x93deca(0x657,'\x70\x30\x56\x79')]=_0x575e4c[_0x93deca(0x842,'\x63\x6f\x5e\x24')],_0x4caae3[_0x93deca(0x668,'\x51\x70\x6f\x4c')+_0x93deca(0x718,'\x5b\x36\x72\x37')+_0x93deca(0x26e,'\x43\x6a\x77\x54')]=_0x5bc689,_0x586168[_0x93deca(0x417,'\x4f\x4b\x4b\x62')](_0x4caae3),_0x575e4c[_0x93deca(0x366,'\x30\x24\x52\x66')+_0x93deca(0x296,'\x57\x45\x5e\x4e')]>=_0x123465[_0x93deca(0x659,'\x68\x7a\x7a\x21')+_0x93deca(0x7b9,'\x66\x4c\x65\x47')+_0x93deca(0x30d,'\x6c\x23\x7a\x76')+'\x53']&&_0x529111[_0x93deca(0x5c6,'\x47\x46\x75\x74')](_0x575e4c[_0x93deca(0x623,'\x57\x45\x5e\x4e')],_0x123465[_0x93deca(0x45b,'\x73\x37\x75\x4e')+'\x5f\x42\x45\x53\x54\x5f\x54\x48'+_0x93deca(0x2d6,'\x4f\x4b\x4b\x62')])&&_0x52d017['\x61\x64\x64'](_0x81a0c5),_0x529111[_0x93deca(0x5b4,'\x30\x24\x52\x66')](_0x575e4c[_0x93deca(0x7ff,'\x63\x4f\x21\x4d')+_0x93deca(0x456,'\x41\x31\x43\x39')],-0x493+-0x3*0xbf9+-0xc*-0x360)&&_0x529111[_0x93deca(0x587,'\x68\x33\x64\x45')](_0x575e4c['\x70\x72\x69\x6f\x72\x5f\x61\x74'+_0x93deca(0x4da,'\x71\x4b\x61\x4b')],-0x1584+0x38a+0x11*0x10f)&&_0x529111['\x4f\x4e\x74\x57\x6d'](_0x575e4c[_0x93deca(0x7cc,'\x57\x45\x5e\x4e')],-0x18a6+-0x7f1+-0x1b*-0x135+0.1)&&_0x52d017['\x61\x64\x64'](_0x81a0c5),_0x529111[_0x93deca(0x3d8,'\x70\x46\x25\x2a')](_0x575e4c[_0x93deca(0x6e8,'\x63\x4f\x21\x4d')+'\x69\x76\x65\x49\x6e\x65\x72\x74'],_0x123465[_0x93deca(0x217,'\x6b\x70\x71\x4c')+_0x93deca(0x5a8,'\x66\x4c\x65\x47')+_0x93deca(0x681,'\x68\x7a\x7a\x21')])&&_0x529111[_0x93deca(0x82a,'\x4e\x70\x6e\x7a')](_0x575e4c[_0x93deca(0x321,'\x4e\x70\x6e\x7a')+'\x73\x73'],0x32b*-0x4+0x1c89+0x83*-0x1f)&&_0x52d017[_0x93deca(0x2ac,'\x56\x30\x35\x5a')](_0x81a0c5);}_0x586168[_0x93deca(0x888,'\x57\x38\x6b\x49')]((_0x56a36b,_0x3f9401)=>_0x3f9401[_0x93deca(0x740,'\x46\x46\x5e\x25')]-_0x56a36b['\x73\x63\x6f\x72\x65']);const _0x3adcfd=_0x586168[_0x93deca(0x238,'\x66\x4c\x65\x47')]?_0x586168[0x1*-0x5ad+-0x16*-0xf1+-0x1*0xf09]:null,_0x26f1a6=_0x3adcfd&&_0x529111[_0x93deca(0x642,'\x57\x45\x5e\x4e')](_0x3adcfd[_0x93deca(0x28a,'\x6c\x57\x4d\x30')],0x963+-0xb*-0x2a1+-0x264e)&&_0x529111[_0x93deca(0x604,'\x50\x29\x47\x65')](_0x3adcfd[_0x93deca(0x5bd,'\x58\x39\x49\x51')],-0x2129+0x277*-0x8+-0x34e1*-0x1)&&_0x3adcfd[_0x93deca(0x753,'\x65\x76\x39\x75')+'\x69\x76\x65\x45\x76\x69\x64\x65'+_0x93deca(0x850,'\x50\x61\x6e\x76')]?_0x3adcfd[_0x93deca(0x248,'\x24\x6a\x6c\x23')]:null,_0xff1e4b=[];if(_0x26f1a6)_0xff1e4b[_0x93deca(0x530,'\x68\x7a\x7a\x21')](_0x93deca(0x4ee,'\x43\x6a\x77\x54')+_0x93deca(0x5ca,'\x63\x30\x6e\x66')+_0x26f1a6);if(_0x52d017[_0x93deca(0x72a,'\x6c\x57\x4d\x30')])_0xff1e4b[_0x93deca(0x5a9,'\x72\x76\x61\x5d')](_0x93deca(0x411,'\x46\x46\x5e\x25')+'\x61\x6e\x3a'+Array[_0x93deca(0x8a1,'\x67\x56\x36\x28')](_0x52d017)[_0x93deca(0x305,'\x50\x29\x47\x65')](0x19e4+0x9eb+0x1*-0x23cf,-0xd6e+-0x1337*-0x1+-0x3b*0x19)[_0x93deca(0x368,'\x4e\x70\x6e\x7a')]('\x2c'));if(_0x26f1a6){if(_0x529111[_0x93deca(0x730,'\x78\x56\x4c\x45')]===_0x529111['\x61\x59\x56\x46\x59']){const _0x182ce5={'\x4a\x57\x48\x79\x50':function(_0x45900d,_0x15da46){const _0x4652f9=_0x93deca;return _0x529111[_0x4652f9(0x323,'\x72\x76\x61\x5d')](_0x45900d,_0x15da46);},'\x67\x45\x45\x50\x7a':_0x529111[_0x93deca(0x4d1,'\x48\x6d\x74\x4d')]},_0x4f5ffb=_0x1c3a9c['\x66\x69\x6c\x74\x65\x72'](function(_0x28c5ac){const _0x597553=_0x93deca;return _0x182ce5['\x4a\x57\x48\x79\x50'](_0x28c5ac,_0x182ce5[_0x597553(0x455,'\x50\x64\x35\x53')]);})[_0x93deca(0x829,'\x58\x39\x49\x51')],_0x4e352d=_0x529111[_0x93deca(0x33f,'\x68\x7a\x7a\x21')](_0x4f5ffb/_0x1fd6a1[_0x93deca(0x2c4,'\x52\x40\x52\x65')],-0x547+0x1d*0x151+-0x20e6+0.5);_0x40383f+=_0x391903[_0x93deca(0x47a,'\x6c\x23\x7a\x76')](-(-0x1*0x155+0x1f0f+-0x1dba+0.06),_0x5ec0f8[_0x93deca(0x89a,'\x67\x56\x36\x28')](0x14d*-0x1+-0x8*-0x402+-0x1ec3+0.06,_0x529111['\x41\x68\x51\x73\x61'](_0x4e352d,-0x1bf0+0x2*0x40e+0x13d4+0.12)));}else{const _0x466172=_0x586168[_0x93deca(0x80e,'\x70\x46\x25\x2a')](_0x1ae575=>_0x1ae575&&_0x1ae575[_0x93deca(0x4a9,'\x58\x39\x49\x51')]===_0x26f1a6);if(_0x466172&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](Number(_0x466172[_0x93deca(0x638,'\x44\x51\x24\x40')]))&&_0x529111[_0x93deca(0x736,'\x70\x23\x36\x65')](_0x466172[_0x93deca(0x385,'\x52\x40\x52\x65')],0x3c4*-0x2+0x4*-0x6f5+0x7c*0x49))_0xff1e4b[_0x93deca(0x4cf,'\x50\x29\x47\x65')](_0x93deca(0x793,'\x44\x6b\x41\x4f')+_0x93deca(0x230,'\x46\x46\x5e\x25')+_0x466172['\x70\x72\x69\x6f\x72']['\x74\x6f\x46\x69\x78\x65\x64'](0x1*-0x74b+0x1*-0x1a17+-0x1*-0x2165));}}if(_0x532fd8)_0xff1e4b[_0x93deca(0x667,'\x57\x45\x5e\x4e')](_0x529111[_0x93deca(0x204,'\x70\x30\x56\x79')]);const _0x312c3f={};return _0x312c3f[_0x93deca(0x4f1,'\x6b\x70\x71\x4c')+'\x69\x67\x6e\x61\x6c\x4b\x65\x79']=_0x23fd41,_0x312c3f[_0x93deca(0x359,'\x44\x6c\x68\x4d')+_0x93deca(0x2b1,'\x44\x6c\x68\x4d')]=_0x26f1a6,_0x312c3f[_0x93deca(0x799,'\x4e\x70\x6e\x7a')+_0x93deca(0x7f9,'\x70\x46\x25\x2a')]=_0x52d017,_0x312c3f[_0x93deca(0x52b,'\x4a\x26\x39\x41')+_0x93deca(0x85d,'\x73\x37\x75\x4e')]=_0xff1e4b,_0x312c3f[_0x93deca(0x820,'\x50\x61\x6e\x76')+_0x93deca(0x412,'\x70\x46\x25\x2a')]=_0x50e5e9,_0x312c3f;}function _0x510d7b({signals:_0x3045a9,observations:_0x592367}){const _0x2f1f2e=_0x24f893,_0x1d494f={'\x66\x61\x73\x41\x5a':function(_0x1815c7,_0xecaea3){return _0x1815c7(_0xecaea3);},'\x66\x45\x45\x64\x49':function(_0xc1e4d6){return _0xc1e4d6();},'\x45\x67\x62\x74\x62':_0x2f1f2e(0x562,'\x46\x46\x5e\x25'),'\x71\x4d\x67\x46\x51':function(_0x293a0e,_0x16d4a4){return _0x293a0e===_0x16d4a4;},'\x61\x69\x71\x7a\x66':_0x2f1f2e(0x41d,'\x73\x37\x75\x4e')},_0x59e117=_0x1d494f[_0x2f1f2e(0x7e5,'\x4a\x26\x39\x41')](_0x319613,_0x3045a9),_0x29ac07=_0x1d494f[_0x2f1f2e(0x31c,'\x47\x46\x75\x74')](_0xd91d1c),_0x9918d5=_0x1d494f[_0x2f1f2e(0x5d2,'\x4f\x4b\x4b\x62')](_0x1a17ff,_0x3045a9),_0x12eb5b={'\x74\x79\x70\x65':_0x2f1f2e(0x3cd,'\x65\x76\x39\x75')+'\x61\x70\x68\x45\x76\x65\x6e\x74','\x6b\x69\x6e\x64':_0x1d494f[_0x2f1f2e(0x816,'\x4b\x28\x32\x23')],'\x69\x64':_0x2f1f2e(0x7ec,'\x70\x46\x25\x2a')+Date[_0x2f1f2e(0x23b,'\x58\x39\x49\x51')]()+'\x5f'+_0x41384f(_0x59e117+'\x7c\x73\x69\x67\x6e\x61\x6c\x7c'+_0x29ac07),'\x74\x73':_0x29ac07,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0x59e117,'\x73\x69\x67\x6e\x61\x6c\x73':Array['\x69\x73\x41\x72\x72\x61\x79'](_0x3045a9)?_0x3045a9:[],'\x65\x72\x72\x6f\x72\x5f\x73\x69\x67\x6e\x61\x74\x75\x72\x65':_0x9918d5||null},'\x6f\x62\x73\x65\x72\x76\x65\x64':_0x592367&&_0x1d494f[_0x2f1f2e(0x59b,'\x63\x6f\x5e\x24')](typeof _0x592367,_0x1d494f[_0x2f1f2e(0x4bc,'\x68\x33\x64\x45')])?_0x592367:null};return _0x1d494f[_0x2f1f2e(0x5d7,'\x65\x76\x39\x75')](_0x1f70eb,_0x12eb5b),_0x12eb5b;}function _0x27f62d({signalKey:_0x4c0b7c,signals:_0x27e64e,geneId:_0x1594ac,geneCategory:_0x540d46,driftEnabled:_0x266e04}){const _0x548dd4=_0x24f893,_0x324eeb={};_0x324eeb[_0x548dd4(0x636,'\x66\x4c\x65\x47')]=_0x548dd4(0x619,'\x71\x4b\x61\x4b'),_0x324eeb['\x57\x46\x4a\x54\x67']=_0x548dd4(0x6e5,'\x48\x6d\x74\x4d'),_0x324eeb[_0x548dd4(0x22e,'\x51\x70\x6f\x4c')]=_0x548dd4(0x871,'\x6c\x57\x4d\x30');const _0x5e7b0b=_0x324eeb,_0x50a596=Array[_0x548dd4(0x5f9,'\x46\x46\x5e\x25')](_0x27e64e)?_0x27e64e[_0x548dd4(0x406,'\x6f\x68\x54\x38')]:-0x1257+0xd*-0x11b+-0x1*-0x20b6,_0x5544df=_0x266e04?_0x5e7b0b[_0x548dd4(0x56d,'\x4e\x70\x6e\x7a')]:_0x5e7b0b[_0x548dd4(0x2bb,'\x68\x33\x64\x45')],_0x4585aa=_0x1594ac?''+_0x1594ac+(_0x540d46?'\x28'+_0x540d46+'\x29':''):_0x5e7b0b[_0x548dd4(0x38f,'\x67\x56\x36\x28')];return _0x548dd4(0x751,'\x67\x56\x36\x28')+_0x548dd4(0x2d0,'\x65\x76\x39\x75')+'\x3d'+_0x4c0b7c+_0x548dd4(0x568,'\x72\x76\x61\x5d')+_0x50a596+('\x20\x73\x69\x67\x6e\x61\x6c\x73'+_0x548dd4(0x591,'\x75\x45\x5a\x6f')+'\x69\x6e\x67\x20\x67\x65\x6e\x65'+'\x3d')+_0x4585aa+(_0x548dd4(0x847,'\x46\x46\x5e\x25')+_0x548dd4(0x39c,'\x44\x6c\x68\x4d'))+_0x5544df+(_0x548dd4(0x86f,'\x4e\x70\x6e\x7a')+_0x548dd4(0x794,'\x63\x6f\x5e\x24')+_0x548dd4(0x55d,'\x63\x4f\x21\x4d')+_0x548dd4(0x31b,'\x5b\x2a\x25\x62')+_0x548dd4(0x3c5,'\x30\x24\x52\x66')+_0x548dd4(0x324,'\x44\x6c\x68\x4d')+_0x548dd4(0x3b3,'\x70\x23\x36\x65')+_0x548dd4(0x51f,'\x46\x46\x5e\x25'));}function _0x5aa63c({signals:_0x2f2e40,mutation:_0x1db836,personality_state:_0xbdeb07,selectedGene:_0x6736fc,selector:_0x332497,driftEnabled:_0x1575a8,selectedBy:_0xb37267,capsulesUsed:_0x2756ba,observations:_0x107ea5}){const _0x49b6ff=_0x24f893,_0x4cc638={'\x75\x62\x7a\x4e\x62':function(_0x4ffde4,_0x5a77fb){return _0x4ffde4(_0x5a77fb);},'\x77\x59\x52\x57\x4f':function(_0x429352,_0x34bcb4){return _0x429352(_0x34bcb4);},'\x6c\x51\x52\x6b\x4f':function(_0x3c48f4,_0x2f1da0){return _0x3c48f4(_0x2f1da0);},'\x6a\x54\x51\x67\x46':function(_0x4f9ddd){return _0x4f9ddd();},'\x54\x59\x69\x75\x4b':function(_0x3a9b28,_0x378079){return _0x3a9b28(_0x378079);},'\x4b\x6b\x54\x64\x61':function(_0x25b41d,_0x6d06fa){return _0x25b41d(_0x6d06fa);},'\x6e\x77\x42\x4b\x59':_0x49b6ff(0x7b1,'\x6c\x23\x7a\x76')+_0x49b6ff(0x714,'\x5b\x36\x72\x37'),'\x7a\x4f\x6b\x41\x53':function(_0x40df06,_0xcd94b0){return _0x40df06||_0xcd94b0;},'\x67\x68\x79\x70\x50':_0x49b6ff(0x6d1,'\x57\x38\x6b\x49'),'\x7a\x70\x41\x57\x45':_0x49b6ff(0x226,'\x4e\x70\x6e\x7a')},_0x5acfc7=_0x4cc638[_0x49b6ff(0x1fc,'\x67\x56\x36\x28')](_0x319613,_0x2f2e40),_0x53a436=_0x6736fc&&_0x6736fc['\x69\x64']?_0x4cc638['\x77\x59\x52\x57\x4f'](String,_0x6736fc['\x69\x64']):null,_0x4e82a2=_0x6736fc&&_0x6736fc[_0x49b6ff(0x78a,'\x50\x61\x6e\x76')]?_0x4cc638[_0x49b6ff(0x746,'\x4b\x28\x32\x23')](String,_0x6736fc[_0x49b6ff(0x69f,'\x57\x45\x5e\x4e')]):null,_0x307f1f=_0x4cc638[_0x49b6ff(0x349,'\x73\x37\x75\x4e')](_0xd91d1c),_0x453194=_0x4cc638[_0x49b6ff(0x220,'\x70\x46\x25\x2a')](_0x1a17ff,_0x2f2e40),_0x57d2f3=_0x49b6ff(0x1f8,'\x6f\x68\x54\x38')+Date[_0x49b6ff(0x7ed,'\x6f\x68\x54\x38')]()+'\x5f'+_0x4cc638[_0x49b6ff(0x415,'\x65\x76\x39\x75')](_0x41384f,_0x5acfc7+'\x7c'+(_0x53a436||_0x49b6ff(0x6a6,'\x4b\x64\x78\x78'))+'\x7c'+_0x307f1f),_0x2e624f=_0xbdeb07||null,_0x3fbe07=_0x1db836&&_0x4cc638[_0x49b6ff(0x2ba,'\x70\x46\x25\x2a')](_0x416f2c,_0x1db836)?_0x4cc638[_0x49b6ff(0x41c,'\x50\x29\x47\x65')](_0x516827,_0x1db836):null,_0x375996=_0x2e624f&&_0x4cc638[_0x49b6ff(0x724,'\x56\x30\x35\x5a')](_0x2f18c1,_0x2e624f)?_0x4cc638[_0x49b6ff(0x35f,'\x30\x35\x70\x72')](_0x4adefe,_0x2e624f):null,_0x39747f={};_0x39747f[_0x49b6ff(0x449,'\x73\x37\x75\x4e')]=null,_0x39747f[_0x49b6ff(0x83a,'\x6f\x68\x54\x38')]=null;const _0x1a6a3f={'\x74\x79\x70\x65':_0x4cc638[_0x49b6ff(0x473,'\x50\x61\x6e\x76')],'\x6b\x69\x6e\x64':_0x49b6ff(0x389,'\x50\x64\x35\x53')+'\x69\x73','\x69\x64':_0x49b6ff(0x23f,'\x68\x7a\x7a\x21')+Date[_0x49b6ff(0x7ed,'\x6f\x68\x54\x38')]()+'\x5f'+_0x4cc638[_0x49b6ff(0x86b,'\x56\x30\x35\x5a')](_0x41384f,_0x57d2f3+'\x7c'+_0x307f1f),'\x74\x73':_0x307f1f,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0x5acfc7,'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x49b6ff(0x851,'\x72\x76\x61\x5d')](_0x2f2e40)?_0x2f2e40:[],'\x65\x72\x72\x6f\x72\x5f\x73\x69\x67\x6e\x61\x74\x75\x72\x65':_0x4cc638[_0x49b6ff(0x7eb,'\x30\x24\x52\x66')](_0x453194,null)},'\x68\x79\x70\x6f\x74\x68\x65\x73\x69\x73':{'\x69\x64':_0x57d2f3,'\x74\x65\x78\x74':_0x4cc638[_0x49b6ff(0x381,'\x24\x6a\x6c\x23')](_0x27f62d,{'\x73\x69\x67\x6e\x61\x6c\x4b\x65\x79':_0x5acfc7,'\x73\x69\x67\x6e\x61\x6c\x73':_0x2f2e40,'\x67\x65\x6e\x65\x49\x64':_0x53a436,'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':_0x4e82a2,'\x64\x72\x69\x66\x74\x45\x6e\x61\x62\x6c\x65\x64':_0x1575a8}),'\x70\x72\x65\x64\x69\x63\x74\x65\x64\x5f\x6f\x75\x74\x63\x6f\x6d\x65':_0x39747f},'\x6d\x75\x74\x61\x74\x69\x6f\x6e':_0x3fbe07?{'\x69\x64':_0x3fbe07['\x69\x64'],'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x3fbe07[_0x49b6ff(0x87c,'\x48\x6d\x74\x4d')],'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0x3fbe07[_0x49b6ff(0x2d8,'\x52\x40\x52\x65')+_0x49b6ff(0x3e6,'\x78\x56\x4c\x45')],'\x74\x61\x72\x67\x65\x74':_0x3fbe07[_0x49b6ff(0x3b9,'\x70\x23\x36\x65')],'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':_0x3fbe07[_0x49b6ff(0x70f,'\x5b\x36\x72\x37')+_0x49b6ff(0x41b,'\x50\x64\x35\x53')],'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x3fbe07[_0x49b6ff(0x267,'\x44\x6c\x68\x4d')+'\x65\x6c']}:null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79':_0x375996?{'\x6b\x65\x79':_0x4cc638[_0x49b6ff(0x2cc,'\x67\x56\x36\x28')](_0x5b7721,_0x375996),'\x73\x74\x61\x74\x65':_0x375996}:null,'\x67\x65\x6e\x65':{'\x69\x64':_0x53a436,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x4e82a2},'\x61\x63\x74\x69\x6f\x6e':{'\x64\x72\x69\x66\x74':!!_0x1575a8,'\x73\x65\x6c\x65\x63\x74\x65\x64\x5f\x62\x79':_0x4cc638[_0x49b6ff(0x439,'\x5b\x2a\x25\x62')](_0xb37267,_0x4cc638[_0x49b6ff(0x585,'\x57\x38\x6b\x49')]),'\x73\x65\x6c\x65\x63\x74\x6f\x72':_0x4cc638[_0x49b6ff(0x2af,'\x71\x4b\x61\x4b')](_0x332497,null)},'\x63\x61\x70\x73\x75\x6c\x65\x73':{'\x75\x73\x65\x64':Array[_0x49b6ff(0x7cb,'\x73\x37\x75\x4e')](_0x2756ba)?_0x2756ba['\x6d\x61\x70'](String)[_0x49b6ff(0x74b,'\x63\x6f\x5e\x24')](Boolean):[]},'\x6f\x62\x73\x65\x72\x76\x65\x64':_0x107ea5&&typeof _0x107ea5===_0x4cc638['\x7a\x70\x41\x57\x45']?_0x107ea5:null};_0x4cc638[_0x49b6ff(0x273,'\x63\x30\x6e\x66')](_0x1f70eb,_0x1a6a3f);const _0x4cbd8a={};return _0x4cbd8a['\x68\x79\x70\x6f\x74\x68\x65\x73'+'\x69\x73\x49\x64']=_0x57d2f3,_0x4cbd8a['\x73\x69\x67\x6e\x61\x6c\x4b\x65'+'\x79']=_0x5acfc7,_0x4cbd8a;}function _0x107c97(_0xdd4a9c){const _0x370547=_0x24f893,_0x48ba13={};_0x48ba13[_0x370547(0x421,'\x47\x46\x75\x74')]=_0x370547(0x3d4,'\x6b\x70\x71\x4c')+'\x72',_0x48ba13[_0x370547(0x86a,'\x63\x4f\x21\x4d')]=_0x370547(0x4f5,'\x50\x61\x6e\x76')+'\x6e',_0x48ba13[_0x370547(0x67f,'\x63\x6f\x5e\x24')]=_0x370547(0x27a,'\x41\x31\x43\x39');const _0x2dab31=_0x48ba13,_0x3fad93=Array[_0x370547(0x5b5,'\x63\x4f\x21\x4d')](_0xdd4a9c)?_0xdd4a9c:[],_0x5da616=[_0x2dab31['\x5a\x76\x69\x42\x43'],_0x370547(0x2f8,'\x4b\x64\x78\x78'),_0x2dab31[_0x370547(0x56b,'\x6c\x57\x4d\x30')],_0x370547(0x25d,'\x46\x46\x5e\x25'),_0x370547(0x360,'\x43\x6a\x77\x54')];for(const _0x50b684 of _0x3fad93){const _0x134207=String(_0x50b684)[_0x370547(0x6c0,'\x50\x64\x35\x53')+'\x61\x73\x65']();if(_0x5da616[_0x370547(0x292,'\x30\x35\x70\x72')](_0x296d01=>_0x134207===_0x296d01))return!![];if(_0x134207[_0x370547(0x5f2,'\x4a\x74\x4a\x4f')+'\x74\x68'](_0x2dab31[_0x370547(0x7f6,'\x57\x45\x5e\x4e')]))return!![];}return![];}function _0x2c42(){const _0x288880=['\x57\x37\x5a\x63\x4f\x71\x30\x66\x57\x35\x4a\x64\x53\x78\x69\x64','\x76\x53\x6f\x46\x57\x50\x72\x36\x66\x47','\x7a\x67\x5a\x63\x4a\x63\x37\x63\x56\x57\x4b\x74','\x42\x53\x6b\x79\x43\x53\x6b\x4c\x79\x47','\x73\x53\x6b\x51\x41\x38\x6b\x68\x7a\x48\x64\x63\x4f\x47','\x68\x65\x6c\x63\x47\x5a\x76\x33','\x67\x43\x6f\x74\x57\x37\x38','\x65\x53\x6f\x64\x57\x34\x54\x63\x61\x71','\x69\x38\x6b\x66\x57\x51\x5a\x64\x52\x53\x6f\x45\x6c\x38\x6b\x39\x57\x51\x4f','\x6e\x4a\x6c\x63\x50\x38\x6f\x43\x44\x33\x39\x38\x57\x36\x71','\x57\x36\x74\x64\x4c\x66\x56\x63\x49\x57','\x6a\x32\x62\x31\x57\x50\x30','\x74\x38\x6f\x45\x57\x52\x58\x4e\x66\x53\x6f\x47\x57\x34\x71','\x44\x4d\x33\x63\x47\x64\x70\x63\x55\x57','\x61\x63\x71\x39\x57\x37\x76\x65\x62\x30\x37\x63\x4e\x47','\x67\x53\x6f\x47\x57\x37\x53','\x6f\x71\x75\x2b\x57\x36\x39\x39','\x70\x38\x6f\x4e\x57\x36\x6a\x63\x63\x57','\x44\x4b\x70\x63\x47\x4c\x66\x6a\x57\x51\x30','\x46\x43\x6f\x35\x57\x35\x64\x63\x4b\x53\x6f\x35\x7a\x43\x6f\x6f\x57\x51\x57','\x42\x65\x46\x63\x47\x66\x72\x5a\x57\x52\x6c\x64\x50\x61\x4f','\x41\x30\x74\x63\x48\x4c\x44\x70\x57\x51\x4f','\x68\x78\x50\x65\x57\x50\x52\x63\x4e\x43\x6f\x35\x57\x50\x69\x66','\x6f\x38\x6f\x6d\x57\x34\x4b\x45\x57\x4f\x31\x31\x64\x53\x6f\x51','\x57\x50\x39\x6e\x57\x35\x37\x64\x48\x47\x79\x4a\x46\x43\x6b\x47','\x75\x38\x6b\x57\x79\x43\x6b\x6b','\x68\x74\x57\x70\x6f\x43\x6b\x78\x43\x43\x6f\x52\x72\x57','\x42\x4e\x37\x63\x4d\x47\x70\x63\x55\x72\x34\x73\x61\x61','\x6d\x53\x6f\x34\x57\x37\x5a\x64\x50\x6d\x6b\x4c\x6f\x48\x31\x56','\x6e\x53\x6f\x38\x57\x37\x70\x64\x56\x53\x6b\x59','\x69\x53\x6f\x37\x57\x35\x68\x64\x4a\x38\x6b\x64','\x6c\x38\x6f\x36\x73\x43\x6b\x75\x57\x35\x38','\x74\x53\x6f\x31\x57\x36\x76\x38\x42\x48\x66\x49\x57\x52\x30','\x44\x53\x6f\x39\x57\x34\x42\x63\x4d\x6d\x6f\x55\x75\x53\x6f\x4f\x57\x51\x43','\x73\x43\x6f\x68\x57\x34\x5a\x63\x4a\x43\x6f\x59','\x57\x34\x33\x63\x52\x67\x72\x4a','\x57\x51\x62\x45\x57\x4f\x58\x4b\x57\x51\x79','\x6e\x43\x6f\x57\x7a\x6d\x6b\x41\x57\x37\x57','\x57\x34\x4e\x63\x4b\x5a\x68\x64\x54\x65\x6d','\x42\x53\x6f\x55\x57\x36\x47\x67\x57\x50\x54\x39\x63\x61','\x57\x36\x2f\x64\x4d\x67\x78\x64\x50\x53\x6b\x50\x57\x37\x4e\x63\x47\x38\x6b\x74','\x45\x43\x6f\x4b\x57\x35\x68\x63\x50\x6d\x6f\x49\x77\x6d\x6f\x73\x57\x52\x61','\x43\x63\x52\x64\x52\x6d\x6b\x39\x6d\x71','\x6b\x6d\x6b\x69\x57\x52\x52\x64\x52\x53\x6f\x63\x6d\x53\x6b\x33\x57\x52\x34','\x6a\x72\x52\x63\x4f\x53\x6f\x38\x73\x61','\x57\x52\x5a\x63\x52\x4d\x53\x41','\x76\x38\x6b\x57\x46\x57','\x63\x53\x6f\x52\x66\x38\x6b\x78\x64\x61','\x57\x36\x5a\x63\x54\x77\x71\x30\x57\x50\x34','\x75\x53\x6b\x56\x42\x38\x6b\x63\x7a\x47','\x57\x4f\x30\x4f\x57\x4f\x4a\x64\x4c\x38\x6b\x64\x57\x51\x42\x63\x4d\x38\x6f\x6a','\x57\x52\x71\x4d\x57\x50\x2f\x64\x4f\x38\x6b\x62','\x57\x36\x42\x63\x54\x4e\x4a\x63\x4a\x4c\x4f\x59','\x57\x37\x37\x64\x51\x65\x78\x64\x4f\x6d\x6b\x38\x57\x34\x70\x63\x48\x38\x6b\x31','\x57\x4f\x58\x70\x57\x35\x4e\x64\x53\x73\x38\x4c\x46\x6d\x6b\x48','\x41\x67\x56\x63\x4d\x64\x56\x63\x56\x57','\x70\x65\x6c\x63\x4a\x47\x72\x50\x71\x71','\x44\x47\x42\x64\x49\x38\x6b\x33\x64\x57','\x57\x52\x2f\x63\x52\x65\x43\x48\x74\x71','\x6f\x78\x65\x33\x57\x34\x79','\x57\x37\x50\x30\x57\x35\x70\x64\x56\x71','\x6d\x49\x6d\x5a\x57\x35\x39\x5a','\x45\x38\x6f\x37\x57\x35\x52\x63\x4e\x57','\x57\x4f\x34\x31\x57\x51\x38\x71\x67\x57','\x6c\x33\x75\x53\x57\x36\x68\x63\x4b\x43\x6b\x44\x57\x34\x68\x63\x47\x61','\x76\x43\x6f\x33\x57\x36\x7a\x4f\x76\x61','\x74\x43\x6b\x4d\x45\x6d\x6b\x62','\x44\x78\x42\x63\x4a\x4a\x6c\x63\x51\x61\x62\x6e','\x43\x43\x6f\x4d\x57\x34\x64\x63\x4e\x53\x6f\x4d\x72\x53\x6f\x64','\x78\x74\x52\x64\x56\x53\x6b\x38\x65\x38\x6b\x51\x45\x43\x6b\x4b','\x57\x34\x69\x4f\x57\x50\x68\x64\x47\x47','\x42\x76\x78\x63\x52\x75\x62\x45\x57\x52\x2f\x64\x54\x61','\x70\x4d\x61\x32\x57\x36\x2f\x63\x47\x53\x6b\x62\x57\x36\x37\x63\x47\x61','\x57\x34\x68\x63\x53\x66\x64\x63\x56\x4d\x53','\x57\x51\x68\x63\x56\x68\x30\x54','\x57\x4f\x58\x42\x57\x35\x75','\x76\x53\x6f\x7a\x57\x34\x6a\x2f\x45\x47','\x62\x4e\x34\x31\x57\x51\x37\x64\x53\x61','\x79\x53\x6f\x4a\x57\x4f\x72\x45\x6e\x71','\x57\x52\x46\x63\x4f\x67\x61\x48','\x69\x43\x6f\x2b\x57\x34\x53\x6c\x70\x61','\x78\x67\x66\x31\x43\x4c\x52\x64\x56\x72\x75\x5a','\x6c\x38\x6b\x53\x57\x51\x2f\x64\x49\x6d\x6f\x62','\x57\x37\x68\x64\x4c\x65\x33\x63\x4d\x4e\x5a\x64\x4c\x71','\x6c\x48\x30\x51\x62\x38\x6b\x6b','\x69\x77\x57\x4f\x57\x50\x4e\x64\x55\x6d\x6f\x51\x57\x34\x78\x64\x51\x47','\x57\x51\x44\x51\x71\x63\x5a\x63\x48\x4d\x62\x70\x57\x34\x69','\x6e\x49\x4f\x34\x57\x36\x39\x68','\x57\x37\x79\x2b\x57\x4f\x34\x32\x57\x52\x70\x64\x49\x62\x56\x63\x4a\x71','\x57\x37\x6c\x63\x54\x57\x6d','\x57\x37\x68\x64\x4e\x65\x4a\x63\x47\x4e\x5a\x64\x47\x57','\x62\x59\x79\x55\x70\x53\x6b\x79\x44\x6d\x6f\x53','\x63\x48\x5a\x64\x55\x74\x46\x63\x54\x59\x34\x38\x7a\x57','\x61\x78\x50\x38\x57\x52\x5a\x63\x53\x61','\x64\x62\x6a\x51\x57\x34\x58\x4a','\x71\x68\x37\x63\x51\x76\x30\x76\x57\x51\x64\x63\x48\x43\x6f\x5a','\x57\x36\x68\x63\x54\x62\x30\x30\x57\x34\x56\x64\x50\x4e\x69\x77','\x57\x37\x4e\x63\x54\x53\x6f\x65\x57\x37\x43\x35\x57\x36\x56\x63\x47\x6d\x6f\x45','\x62\x38\x6f\x67\x57\x36\x34\x6c\x70\x43\x6f\x4f\x57\x51\x65\x49','\x57\x34\x4a\x64\x52\x30\x68\x64\x4d\x38\x6b\x70','\x57\x36\x33\x63\x48\x4d\x53','\x42\x53\x6f\x4e\x45\x43\x6b\x74\x57\x35\x34\x55','\x69\x67\x65\x54\x57\x50\x37\x64\x53\x57','\x70\x53\x6f\x55\x67\x53\x6f\x76\x63\x38\x6b\x6a\x57\x52\x65','\x57\x34\x37\x63\x56\x61\x4f\x2f\x57\x4f\x47','\x57\x34\x56\x63\x54\x67\x53\x34\x57\x52\x47','\x57\x37\x68\x63\x54\x61\x53\x4e\x57\x35\x52\x64\x56\x61','\x57\x51\x69\x7a\x57\x52\x69\x77\x66\x71','\x6c\x53\x6f\x65\x41\x38\x6f\x32\x57\x50\x53','\x57\x37\x64\x63\x47\x78\x70\x63\x4d\x4b\x38\x4c\x76\x66\x47','\x57\x52\x4e\x63\x4d\x77\x30\x71\x73\x71','\x61\x53\x6f\x72\x6b\x53\x6b\x68\x61\x47','\x70\x75\x64\x63\x48\x74\x57','\x76\x68\x62\x50','\x41\x53\x6f\x78\x57\x35\x39\x53\x43\x47','\x71\x73\x61\x56\x57\x52\x52\x63\x4d\x43\x6f\x2b\x57\x4f\x34\x4f\x57\x36\x57','\x42\x6d\x6f\x4b\x57\x36\x44\x77\x41\x57','\x57\x52\x4c\x44\x78\x62\x38\x6b\x41\x32\x61\x31','\x72\x5a\x74\x64\x55\x38\x6b\x6a\x69\x61','\x57\x37\x46\x63\x4d\x5a\x53\x76\x57\x52\x78\x63\x48\x43\x6f\x37\x42\x57','\x6c\x53\x6f\x67\x57\x34\x47\x2b\x57\x4f\x79','\x42\x53\x6f\x48\x57\x37\x48\x63\x76\x47','\x75\x6d\x6b\x79\x46\x43\x6b\x71\x76\x47','\x73\x53\x6b\x38\x7a\x38\x6b\x77\x7a\x47','\x41\x66\x6e\x34\x46\x71\x4f','\x57\x50\x42\x64\x54\x32\x38\x55\x57\x51\x4c\x59\x57\x52\x42\x64\x4b\x61','\x57\x51\x78\x63\x56\x38\x6f\x33\x57\x35\x42\x64\x4e\x43\x6b\x36\x57\x36\x35\x65','\x64\x43\x6b\x6d\x57\x51\x74\x64\x4e\x53\x6f\x61\x6f\x43\x6b\x76\x57\x51\x47','\x79\x6d\x6f\x4e\x57\x34\x46\x63\x4b\x57','\x6c\x4c\x58\x56\x7a\x6d\x6f\x38\x76\x43\x6b\x39','\x75\x77\x78\x63\x56\x31\x43\x2b\x57\x51\x4e\x63\x48\x6d\x6f\x41','\x62\x6d\x6f\x61\x57\x36\x79\x67\x69\x57','\x67\x4c\x76\x58\x57\x50\x6c\x63\x4e\x71','\x57\x37\x78\x63\x4d\x5a\x53\x78\x57\x51\x37\x63\x47\x43\x6f\x58','\x57\x37\x64\x63\x53\x62\x75','\x41\x38\x6b\x44\x78\x53\x6b\x78\x77\x47','\x57\x52\x52\x63\x4d\x59\x65\x71\x57\x51\x74\x63\x4e\x53\x6b\x30\x42\x61','\x71\x6d\x6f\x4d\x57\x36\x7a\x30\x72\x72\x72\x55\x57\x51\x4b','\x57\x37\x52\x64\x4e\x66\x65','\x6e\x76\x4c\x61\x79\x38\x6f\x2f','\x57\x51\x2f\x64\x49\x77\x2f\x63\x49\x4b\x38\x4b\x7a\x75\x4b','\x73\x67\x5a\x63\x4a\x64\x42\x63\x4a\x61','\x6f\x47\x52\x63\x52\x43\x6f\x43\x79\x4b\x43','\x67\x68\x58\x6d\x74\x43\x6f\x4e','\x72\x38\x6f\x75\x57\x35\x5a\x63\x4b\x6d\x6f\x37','\x57\x36\x70\x63\x55\x53\x6f\x76','\x57\x35\x68\x63\x51\x30\x6d\x50\x57\x51\x39\x59\x57\x52\x53','\x64\x38\x6b\x49\x44\x6d\x6f\x39\x6b\x61','\x57\x37\x6c\x64\x4a\x31\x70\x63\x4e\x78\x64\x64\x47\x6d\x6f\x70','\x6f\x43\x6b\x7a\x75\x6d\x6f\x42\x6f\x53\x6b\x2f\x46\x47','\x65\x71\x4e\x64\x56\x62\x5a\x63\x47\x73\x75\x47\x41\x57','\x57\x51\x4e\x64\x53\x30\x4c\x77\x57\x51\x76\x75\x6c\x38\x6b\x49','\x57\x37\x6c\x63\x4a\x5a\x57','\x57\x4f\x35\x71\x57\x35\x2f\x64\x4b\x4a\x61\x4b\x44\x38\x6b\x37','\x57\x51\x7a\x32\x79\x73\x71\x57','\x57\x51\x42\x63\x55\x32\x43\x58\x77\x31\x38\x39\x7a\x61','\x62\x63\x34\x37\x69\x38\x6b\x43','\x6c\x43\x6f\x38\x57\x37\x68\x64\x56\x53\x6b\x32\x6d\x47','\x74\x38\x6f\x63\x57\x50\x6d','\x57\x36\x4c\x63\x72\x63\x79\x31\x79\x75\x71','\x6f\x43\x6f\x51\x57\x36\x66\x76\x61\x38\x6f\x70\x67\x68\x57','\x6d\x53\x6b\x56\x57\x50\x56\x64\x53\x38\x6f\x4a','\x69\x43\x6f\x53\x45\x6d\x6b\x79\x57\x36\x72\x33\x71\x77\x71','\x79\x38\x6f\x2b\x57\x35\x33\x63\x4d\x6d\x6f\x55','\x70\x4e\x30\x4a\x57\x4f\x42\x64\x50\x71','\x57\x52\x71\x54\x57\x52\x33\x64\x54\x43\x6b\x49','\x57\x37\x58\x2b\x57\x35\x74\x64\x51\x38\x6b\x34\x57\x52\x65\x34\x71\x61','\x6f\x4d\x47\x55\x57\x34\x78\x63\x48\x53\x6b\x71\x57\x37\x6d','\x67\x43\x6f\x6a\x61\x53\x6b\x32\x68\x47','\x72\x5a\x37\x64\x52\x61','\x57\x36\x5a\x64\x4d\x75\x6e\x74\x57\x52\x4c\x76','\x66\x33\x75\x6f\x57\x37\x52\x63\x53\x47','\x71\x57\x37\x64\x4a\x43\x6b\x5a\x67\x47','\x66\x43\x6f\x63\x57\x36\x43\x53\x6a\x38\x6f\x4f\x57\x50\x61\x34','\x57\x51\x6a\x41\x57\x4f\x76\x77\x57\x4f\x38\x6a\x6b\x64\x71','\x57\x34\x50\x43\x57\x35\x56\x64\x4a\x6d\x6b\x76','\x57\x36\x53\x76\x57\x50\x48\x33\x62\x6d\x6f\x6a\x57\x37\x4a\x63\x50\x47','\x57\x4f\x76\x4e\x57\x35\x78\x64\x4e\x74\x6d','\x57\x37\x2f\x63\x54\x6d\x6f\x32\x57\x35\x4e\x64\x4c\x43\x6f\x32','\x74\x78\x70\x63\x55\x74\x70\x63\x53\x61','\x57\x36\x6c\x63\x52\x6d\x6f\x65\x57\x37\x75\x36\x57\x34\x46\x63\x4b\x71','\x6d\x38\x6f\x30\x57\x37\x4a\x64\x50\x43\x6b\x32\x6d\x48\x35\x5a','\x57\x37\x5a\x64\x51\x33\x48\x67\x57\x51\x66\x75\x41\x6d\x6b\x51','\x57\x37\x2f\x63\x56\x6d\x6f\x74\x57\x37\x6d\x37\x57\x35\x37\x63\x51\x38\x6f\x70','\x57\x50\x52\x64\x48\x68\x70\x63\x4a\x63\x2f\x63\x4f\x6d\x6b\x51\x68\x43\x6b\x31\x79\x66\x30','\x57\x34\x64\x63\x52\x73\x46\x64\x48\x32\x56\x63\x50\x43\x6b\x36','\x57\x36\x74\x63\x4a\x68\x6c\x63\x49\x4e\x57\x4f\x79\x47','\x57\x36\x78\x63\x55\x6d\x6f\x64','\x57\x35\x48\x57\x70\x43\x6f\x44\x57\x36\x75','\x57\x52\x39\x65\x71\x71\x4b\x7a\x44\x30\x65\x31','\x57\x50\x62\x69\x78\x58\x64\x63\x51\x71','\x57\x36\x4a\x63\x53\x47\x69\x63\x57\x36\x79','\x57\x52\x30\x49\x57\x51\x42\x63\x4f\x38\x6b\x6d','\x76\x75\x64\x63\x4f\x65\x7a\x52','\x68\x6d\x6f\x74\x57\x36\x6d\x70\x64\x53\x6f\x48\x57\x50\x43\x51','\x69\x43\x6f\x6d\x57\x35\x35\x61\x61\x61','\x77\x53\x6b\x47\x57\x37\x58\x42\x62\x43\x6f\x45\x6c\x61','\x79\x4b\x46\x63\x48\x76\x34','\x6c\x4c\x7a\x4e\x45\x6d\x6f\x34','\x57\x37\x58\x54\x67\x6d\x6f\x43\x57\x35\x79','\x72\x43\x6b\x63\x57\x52\x7a\x7a\x79\x6d\x6b\x2f\x57\x34\x34\x62\x57\x4f\x78\x64\x4c\x76\x4b\x50\x41\x57','\x57\x37\x52\x64\x51\x76\x76\x67','\x6b\x75\x58\x34\x42\x57','\x6d\x43\x6f\x37\x46\x38\x6b\x6a\x57\x35\x35\x62\x72\x32\x43','\x57\x36\x62\x62\x67\x6d\x6b\x71','\x41\x6d\x6f\x76\x57\x37\x62\x51\x79\x71','\x57\x35\x44\x5a\x6f\x43\x6f\x4d\x57\x35\x30','\x41\x68\x52\x63\x4e\x5a\x4e\x63\x50\x58\x47\x4f\x63\x57','\x68\x58\x7a\x71\x57\x34\x50\x69','\x7a\x31\x70\x63\x4e\x4b\x62\x6a\x57\x52\x64\x64\x55\x73\x71','\x75\x66\x62\x32\x42\x57\x4b','\x57\x36\x39\x52\x57\x34\x4e\x64\x4e\x43\x6b\x52\x57\x50\x75\x49\x71\x61','\x66\x71\x33\x64\x54\x49\x74\x63\x4b\x64\x38','\x66\x66\x6c\x63\x4b\x71\x76\x4f','\x57\x51\x35\x35\x71\x73\x46\x63\x48\x33\x57','\x57\x50\x52\x63\x56\x38\x6f\x30\x57\x35\x4a\x64\x47\x53\x6b\x4d\x57\x37\x50\x70','\x62\x6d\x6f\x55\x57\x37\x35\x6a\x66\x61','\x78\x53\x6f\x38\x57\x37\x6c\x63\x53\x43\x6f\x55','\x43\x4e\x52\x64\x48\x5a\x42\x63\x55\x47\x6d\x7a','\x69\x59\x58\x55','\x72\x65\x33\x63\x4d\x5a\x4e\x63\x4f\x61','\x57\x37\x2f\x63\x4c\x4a\x53\x72\x57\x52\x70\x63\x47\x53\x6f\x31\x42\x71','\x57\x35\x2f\x63\x52\x38\x6f\x46\x57\x36\x38\x49','\x72\x64\x52\x64\x50\x47','\x77\x77\x33\x63\x47\x63\x2f\x63\x4f\x4a\x6d\x42\x61\x71','\x67\x4a\x34\x43\x57\x37\x6a\x6c\x61\x4d\x78\x63\x4b\x61','\x6b\x64\x44\x56\x57\x34\x47','\x57\x36\x64\x64\x54\x77\x7a\x61\x57\x52\x6a\x68\x44\x47','\x57\x36\x74\x64\x4f\x75\x6a\x54','\x57\x4f\x79\x6c\x57\x50\x53\x45\x6b\x61','\x77\x68\x62\x2b\x43\x59\x78\x64\x51\x48\x54\x4e','\x6c\x38\x6f\x4d\x45\x6d\x6f\x73\x57\x35\x66\x30\x71\x77\x75','\x57\x37\x70\x64\x54\x75\x64\x64\x4d\x43\x6b\x77','\x41\x4a\x74\x64\x50\x43\x6b\x45\x69\x71','\x6d\x53\x6b\x61\x57\x51\x46\x64\x48\x43\x6f\x54\x6b\x38\x6b\x33\x57\x51\x6d','\x6e\x47\x62\x77\x57\x35\x6e\x44','\x6d\x76\x72\x37\x46\x53\x6f\x63\x74\x43\x6b\x39','\x6c\x59\x46\x63\x52\x6d\x6f\x7a\x43\x4c\x44\x54\x57\x37\x71','\x62\x4e\x62\x35\x57\x4f\x56\x63\x4a\x6d\x6f\x38\x57\x4f\x4b\x6b','\x77\x6d\x6b\x53\x42\x71','\x62\x53\x6f\x39\x57\x36\x6e\x69\x6c\x53\x6f\x76\x6d\x68\x53','\x57\x37\x37\x63\x53\x6d\x6f\x6b\x57\x37\x6d','\x57\x34\x52\x63\x53\x77\x57\x56\x57\x4f\x6a\x34\x57\x51\x46\x64\x47\x61','\x68\x62\x4a\x64\x54\x59\x64\x63\x4a\x61\x47\x57\x41\x57','\x72\x43\x6f\x63\x57\x50\x6e\x5a\x64\x43\x6f\x4c\x57\x35\x4a\x64\x4e\x71','\x57\x4f\x72\x72\x57\x35\x6c\x64\x4d\x63\x57\x4b\x44\x38\x6b\x4d','\x74\x64\x37\x64\x51\x38\x6b\x39\x6d\x53\x6b\x53\x7a\x38\x6b\x34','\x75\x43\x6b\x4d\x45\x6d\x6b\x37','\x45\x43\x6f\x48\x57\x36\x56\x63\x4b\x53\x6f\x56','\x72\x43\x6f\x63\x57\x50\x6e\x4d\x61\x43\x6f\x49\x57\x34\x4a\x64\x48\x57','\x57\x52\x76\x77\x43\x57\x75\x71\x43\x75\x43\x50','\x6f\x59\x44\x36\x57\x36\x54\x71','\x62\x59\x69\x35\x57\x37\x72\x6a','\x57\x50\x35\x77\x57\x35\x42\x64\x4d\x4a\x47\x53','\x6c\x43\x6b\x69\x57\x52\x65','\x62\x59\x79\x4b','\x43\x30\x33\x63\x4a\x77\x79\x6c','\x57\x52\x66\x69\x73\x57\x68\x63\x50\x61','\x67\x38\x6b\x4f\x71\x43\x6f\x59\x68\x47','\x6d\x38\x6f\x78\x44\x53\x6f\x32\x57\x51\x57','\x57\x52\x75\x31\x57\x52\x68\x64\x54\x53\x6b\x37','\x57\x50\x50\x31\x45\x61\x61\x78','\x6e\x31\x50\x54\x79\x38\x6f\x73','\x65\x77\x39\x59\x57\x50\x52\x63\x4e\x43\x6f\x37\x57\x4f\x75\x62','\x61\x73\x47\x35\x57\x37\x72\x78\x64\x33\x74\x63\x4b\x71','\x61\x43\x6b\x67\x42\x38\x6f\x67\x70\x71','\x68\x4b\x61\x6c\x57\x51\x46\x64\x4f\x61','\x57\x52\x6a\x77\x57\x35\x75','\x57\x36\x44\x75\x64\x53\x6f\x61\x57\x37\x70\x63\x54\x43\x6b\x64\x77\x57','\x69\x53\x6f\x47\x7a\x6d\x6b\x74\x57\x35\x50\x51\x73\x57','\x57\x36\x5a\x64\x4c\x76\x35\x43\x57\x51\x6d','\x67\x38\x6f\x77\x57\x36\x50\x75','\x57\x4f\x44\x37\x57\x52\x72\x74\x57\x50\x61','\x57\x36\x43\x32\x57\x4f\x75\x4c\x57\x52\x6d','\x57\x34\x4a\x63\x4c\x59\x5a\x64\x4b\x61','\x72\x4c\x70\x63\x51\x66\x30\x79\x57\x52\x79','\x57\x36\x78\x63\x49\x68\x78\x63\x47\x57','\x44\x38\x6f\x33\x57\x35\x52\x63\x4e\x53\x6f\x75\x78\x38\x6f\x74','\x45\x66\x62\x45\x75\x59\x78\x64\x47\x64\x72\x77','\x62\x38\x6f\x4d\x57\x36\x54\x75\x65\x6d\x6f\x41','\x68\x6d\x6f\x4c\x72\x38\x6f\x49','\x6b\x38\x6f\x2f\x75\x43\x6f\x59\x68\x43\x6b\x6c\x57\x52\x64\x64\x53\x47','\x66\x43\x6f\x55\x75\x53\x6f\x7a\x68\x43\x6b\x66\x57\x51\x53','\x65\x38\x6f\x67\x65\x38\x6b\x48\x64\x73\x72\x4b\x79\x47','\x57\x51\x48\x5a\x72\x49\x34','\x6f\x74\x34\x4c\x66\x43\x6b\x6c','\x57\x37\x56\x64\x4e\x31\x76\x63\x57\x51\x34','\x57\x51\x42\x63\x4b\x66\x57\x73\x43\x71','\x70\x76\x79\x34\x57\x50\x70\x64\x55\x53\x6f\x33\x57\x37\x37\x64\x50\x47','\x63\x4b\x75\x2b\x57\x50\x4a\x64\x4f\x61','\x43\x43\x6f\x48\x57\x37\x68\x63\x49\x43\x6f\x35\x77\x43\x6f\x66','\x57\x35\x5a\x63\x4d\x59\x38','\x70\x65\x42\x63\x4b\x58\x44\x63\x78\x43\x6f\x53','\x57\x51\x71\x45\x57\x4f\x65\x59\x61\x53\x6f\x66','\x57\x36\x6c\x64\x4b\x30\x78\x63\x4a\x32\x56\x64\x4e\x53\x6b\x6a','\x57\x51\x7a\x76\x57\x36\x78\x64\x47\x47\x57','\x74\x66\x6a\x5a\x46\x49\x4f','\x57\x37\x78\x64\x4d\x66\x6c\x63\x4d\x47','\x6b\x59\x72\x59\x57\x34\x62\x77','\x62\x53\x6b\x2b\x57\x4f\x6c\x64\x4c\x6d\x6f\x48','\x57\x50\x34\x35\x57\x50\x2f\x64\x4c\x38\x6b\x61\x57\x51\x6c\x63\x53\x6d\x6f\x46','\x6a\x73\x61\x42\x68\x43\x6b\x6b','\x7a\x58\x42\x64\x4b\x31\x61\x55\x65\x43\x6b\x54\x71\x67\x7a\x70\x6b\x5a\x33\x64\x56\x61','\x57\x37\x78\x63\x4e\x68\x75','\x73\x38\x6f\x49\x57\x34\x6e\x44\x78\x61','\x6e\x43\x6f\x6b\x57\x34\x4b\x35\x57\x50\x72\x30','\x63\x77\x44\x6e\x71\x43\x6f\x75','\x57\x51\x70\x63\x50\x4e\x4f\x4b\x73\x4e\x61\x37\x7a\x47','\x6b\x66\x6a\x6a\x72\x38\x6f\x34','\x73\x75\x70\x63\x47\x76\x31\x45\x57\x51\x46\x64\x49\x48\x34','\x61\x6d\x6f\x68\x76\x6d\x6b\x56\x57\x37\x38','\x57\x4f\x66\x41\x57\x35\x2f\x64\x4b\x59\x30\x4f','\x57\x36\x44\x71\x68\x43\x6f\x44\x57\x35\x37\x63\x54\x43\x6b\x45\x74\x61','\x57\x51\x54\x7a\x46\x58\x74\x63\x56\x61','\x57\x37\x70\x63\x56\x48\x69','\x68\x38\x6f\x51\x46\x38\x6f\x37\x57\x50\x34','\x57\x52\x47\x76\x57\x4f\x57\x35\x61\x6d\x6f\x44\x57\x37\x53','\x57\x50\x53\x65\x57\x51\x33\x63\x53\x38\x6b\x66\x62\x76\x66\x48','\x67\x43\x6f\x4f\x57\x36\x4c\x4c','\x57\x52\x50\x35\x57\x35\x4e\x64\x4e\x59\x4b','\x6f\x43\x6b\x65\x76\x53\x6f\x62\x6c\x53\x6b\x47','\x57\x37\x52\x64\x53\x4b\x7a\x71\x57\x51\x58\x64\x75\x6d\x6b\x38','\x63\x58\x70\x63\x52\x6d\x6f\x65\x41\x61','\x6f\x6d\x6f\x54\x78\x53\x6f\x68\x63\x61','\x78\x68\x5a\x63\x54\x77\x44\x41','\x6a\x74\x58\x69\x57\x36\x4c\x4d','\x57\x36\x37\x63\x4c\x5a\x38\x72','\x65\x33\x58\x31\x57\x50\x56\x63\x53\x43\x6f\x58','\x6f\x76\x74\x63\x4f\x72\x66\x56\x73\x6d\x6f\x4d','\x62\x49\x79\x36\x6f\x38\x6b\x4d\x44\x6d\x6f\x36\x76\x61','\x6e\x6d\x6f\x53\x44\x38\x6b\x7a\x57\x35\x39\x55\x78\x66\x47','\x6c\x53\x6f\x51\x57\x35\x4f\x41\x57\x4f\x4f','\x73\x43\x6b\x54\x42\x43\x6b\x73\x78\x61\x74\x63\x54\x67\x38','\x57\x35\x4a\x63\x50\x57\x4f\x53\x57\x35\x56\x64\x4f\x68\x75\x79','\x57\x4f\x68\x64\x4e\x73\x70\x63\x48\x33\x4a\x63\x4d\x53\x6b\x36\x61\x57','\x57\x36\x33\x63\x50\x73\x57\x7a\x57\x4f\x43','\x57\x51\x44\x45\x71\x63\x2f\x63\x47\x67\x61','\x76\x6d\x6b\x34\x42\x43\x6b\x37','\x57\x51\x6e\x33\x43\x68\x75','\x65\x43\x6f\x4e\x71\x6d\x6f\x6a\x57\x4f\x6a\x61\x57\x4f\x5a\x63\x51\x71','\x6b\x73\x56\x64\x51\x72\x74\x63\x4c\x61','\x7a\x4b\x74\x63\x52\x33\x62\x38','\x57\x37\x56\x64\x4f\x31\x6a\x62\x57\x51\x76\x4e\x45\x38\x6b\x37','\x57\x35\x2f\x63\x56\x77\x57\x2b\x57\x4f\x6a\x57\x57\x51\x70\x64\x4a\x71','\x57\x36\x66\x68\x66\x38\x6f\x70\x57\x34\x56\x63\x4f\x38\x6b\x66','\x66\x74\x53\x39\x6e\x43\x6b\x75\x41\x6d\x6f\x52\x75\x71','\x57\x51\x69\x73\x57\x4f\x47\x37\x66\x6d\x6f\x76\x57\x36\x33\x63\x53\x61','\x78\x38\x6f\x69\x57\x35\x5a\x63\x56\x53\x6f\x68','\x57\x37\x5a\x63\x4a\x59\x79\x79\x57\x51\x74\x63\x49\x61','\x6a\x4b\x42\x63\x4a\x62\x7a\x34','\x69\x38\x6b\x67\x75\x53\x6f\x51\x6d\x53\x6b\x39\x41\x66\x65','\x6f\x53\x6b\x63\x75\x53\x6f\x64\x62\x6d\x6b\x30\x41\x65\x30','\x70\x66\x6d\x6b\x57\x34\x42\x63\x53\x47','\x6c\x6d\x6b\x7a\x77\x38\x6f\x62\x70\x53\x6b\x48','\x70\x38\x6f\x46\x72\x38\x6b\x4e\x57\x37\x6d','\x66\x73\x71\x32\x57\x36\x39\x61\x67\x71','\x67\x43\x6f\x75\x6a\x53\x6b\x32\x67\x63\x50\x56','\x57\x51\x46\x63\x54\x43\x6f\x55','\x76\x6d\x6f\x39\x57\x37\x50\x58\x42\x48\x66\x55\x57\x51\x30','\x57\x36\x33\x63\x4a\x33\x78\x63\x49\x30\x79\x56\x7a\x76\x47','\x57\x35\x31\x7a\x63\x38\x6f\x34\x57\x36\x69','\x66\x53\x6f\x7a\x57\x35\x6d\x43\x57\x52\x47','\x6a\x43\x6b\x32\x57\x51\x33\x64\x4b\x6d\x6f\x6c\x6d\x57','\x6b\x58\x38\x39\x57\x36\x48\x31','\x57\x35\x68\x63\x51\x30\x71\x59\x57\x52\x6e\x36\x57\x52\x42\x64\x4e\x61','\x46\x53\x6f\x58\x57\x35\x65','\x57\x37\x58\x2b\x57\x34\x6c\x64\x54\x38\x6b\x56\x57\x50\x71\x50\x75\x61','\x57\x36\x47\x2b\x57\x4f\x6d\x35','\x66\x43\x6f\x78\x6e\x6d\x6b\x6a\x68\x61','\x76\x33\x70\x63\x50\x75\x44\x31','\x68\x53\x6b\x50\x78\x53\x6f\x61\x65\x61','\x73\x53\x6f\x43\x57\x34\x74\x63\x4f\x43\x6f\x37','\x65\x43\x6f\x4a\x78\x43\x6f\x41\x57\x51\x4c\x42','\x78\x53\x6b\x36\x7a\x53\x6b\x62\x78\x62\x70\x63\x56\x4d\x34','\x68\x43\x6f\x57\x57\x34\x38\x36\x57\x51\x53','\x57\x37\x58\x67\x70\x38\x6f\x41\x57\x35\x37\x63\x50\x38\x6b\x6f','\x57\x35\x54\x74\x57\x35\x46\x64\x4a\x53\x6b\x38','\x79\x76\x74\x63\x4e\x4b\x66\x66\x57\x52\x4e\x63\x54\x57','\x74\x4c\x5a\x63\x4a\x78\x34\x75','\x6a\x53\x6b\x59\x77\x6d\x6f\x56\x63\x61','\x57\x36\x4e\x64\x4b\x4c\x4e\x64\x50\x43\x6b\x2f\x57\x37\x2f\x63\x4c\x61','\x57\x37\x6e\x6d\x69\x43\x6f\x42\x57\x35\x4a\x63\x50\x38\x6b\x64\x78\x57','\x57\x37\x37\x63\x47\x43\x6f\x50\x57\x34\x34\x68','\x72\x4c\x37\x63\x4e\x4b\x66\x35','\x57\x52\x66\x31\x76\x73\x75','\x57\x35\x2f\x63\x4f\x4d\x53\x52\x57\x4f\x35\x51\x57\x51\x5a\x64\x4d\x47','\x57\x50\x7a\x6c\x7a\x63\x52\x63\x4d\x71','\x61\x68\x70\x63\x4c\x4a\x62\x58','\x57\x52\x54\x66\x72\x72\x42\x63\x4d\x61','\x7a\x75\x52\x63\x50\x66\x7a\x56','\x77\x5a\x74\x64\x52\x38\x6b\x46\x68\x57','\x57\x37\x33\x64\x4b\x4b\x4a\x63\x47\x61','\x6a\x4c\x57\x31','\x57\x51\x74\x63\x55\x43\x6f\x32\x57\x34\x78\x64\x4c\x71','\x6f\x62\x58\x41\x57\x37\x7a\x64','\x57\x37\x7a\x7a\x65\x43\x6f\x42\x57\x34\x4e\x63\x4c\x43\x6b\x6f\x76\x61','\x74\x43\x6b\x2b\x45\x53\x6b\x64\x7a\x48\x43','\x7a\x43\x6f\x4d\x57\x35\x6c\x64\x47\x57','\x57\x52\x30\x30\x57\x4f\x75\x43\x6c\x57','\x75\x53\x6b\x7a\x78\x53\x6b\x5a\x79\x47','\x57\x36\x56\x63\x4e\x75\x52\x63\x54\x31\x79','\x57\x50\x47\x7a\x57\x51\x78\x63\x4f\x61','\x67\x49\x69\x30','\x57\x36\x2f\x64\x4b\x68\x56\x64\x4e\x6d\x6b\x56','\x57\x35\x42\x63\x54\x33\x75','\x43\x4e\x52\x63\x48\x63\x5a\x63\x56\x72\x38','\x57\x35\x4e\x63\x55\x33\x2f\x63\x55\x66\x61','\x57\x35\x52\x63\x4b\x73\x68\x64\x4b\x67\x52\x63\x55\x43\x6b\x78\x68\x61','\x76\x6d\x6f\x58\x57\x37\x58\x50\x76\x63\x6a\x51\x57\x51\x38','\x57\x35\x78\x64\x56\x32\x6c\x64\x4b\x6d\x6b\x39','\x67\x43\x6f\x68\x57\x37\x53\x69\x6a\x43\x6f\x4b\x57\x50\x65\x49','\x69\x71\x75\x2f\x65\x43\x6b\x58','\x78\x6d\x6b\x34\x7a\x38\x6b\x77\x45\x47','\x6f\x53\x6b\x72\x72\x43\x6f\x67\x70\x47','\x57\x52\x38\x74\x57\x50\x38\x32\x64\x71','\x62\x53\x6f\x35\x57\x36\x4f\x39\x6a\x61','\x41\x75\x70\x63\x47\x76\x31\x45\x57\x51\x46\x64\x4b\x47\x53','\x78\x53\x6f\x64\x57\x52\x44\x4a\x66\x57','\x62\x53\x6f\x35\x57\x34\x66\x35\x67\x71','\x57\x52\x62\x6a\x57\x4f\x31\x71','\x70\x64\x52\x63\x50\x38\x6f\x6f\x46\x4c\x44\x53\x57\x36\x4b','\x57\x37\x78\x63\x54\x32\x79\x2b','\x74\x6d\x6b\x58\x42\x6d\x6b\x66\x43\x72\x4f','\x57\x36\x30\x5a\x57\x4f\x61\x59\x57\x51\x4e\x64\x4f\x57','\x57\x36\x33\x63\x48\x4e\x6c\x63\x49\x47','\x76\x43\x6f\x38\x57\x36\x7a\x56\x78\x72\x4c\x7a\x57\x52\x34','\x57\x51\x54\x56\x41\x73\x4e\x63\x4e\x78\x31\x73\x57\x34\x47','\x74\x4a\x56\x64\x55\x57','\x65\x43\x6f\x2b\x57\x37\x4b\x4c\x6f\x57','\x69\x43\x6b\x75\x79\x38\x6f\x66\x6d\x71','\x6f\x53\x6f\x73\x57\x37\x74\x64\x49\x53\x6b\x65','\x57\x36\x66\x77\x57\x35\x46\x64\x4a\x38\x6b\x57','\x71\x53\x6f\x74\x57\x36\x58\x30\x76\x64\x72\x56','\x57\x37\x46\x64\x4b\x4b\x46\x64\x52\x53\x6b\x51\x57\x37\x71','\x71\x6d\x6f\x4d\x57\x36\x7a\x33','\x43\x43\x6b\x37\x42\x53\x6b\x48\x76\x57','\x42\x4b\x46\x63\x4a\x74\x78\x63\x4f\x57','\x69\x4c\x69\x4a','\x57\x37\x78\x63\x54\x38\x6f\x36\x57\x36\x61\x4d','\x71\x6d\x6f\x6b\x57\x51\x35\x4a\x63\x61','\x57\x36\x4a\x64\x53\x4c\x6e\x78\x57\x51\x31\x77\x45\x38\x6b\x38','\x57\x50\x52\x63\x4f\x4c\x4f\x48\x78\x57','\x63\x38\x6f\x56\x57\x37\x43\x65\x57\x4f\x75','\x6f\x6d\x6f\x51\x71\x38\x6f\x53\x64\x43\x6b\x66\x57\x52\x5a\x64\x50\x71','\x57\x35\x68\x63\x54\x32\x57','\x6e\x43\x6f\x38\x44\x43\x6b\x45\x57\x35\x35\x30\x78\x71','\x7a\x53\x6b\x38\x41\x43\x6b\x71\x7a\x47\x74\x63\x56\x4e\x6d','\x57\x36\x31\x50\x57\x34\x74\x64\x55\x43\x6b\x50\x57\x50\x75\x4f\x41\x57','\x75\x43\x6f\x76\x57\x34\x74\x63\x4c\x43\x6f\x67','\x62\x53\x6f\x4d\x57\x37\x34\x6f\x68\x47','\x69\x33\x64\x63\x50\x72\x7a\x72','\x57\x37\x56\x64\x4d\x65\x2f\x63\x49\x77\x33\x64\x4a\x57','\x72\x38\x6f\x6a\x57\x50\x4b','\x57\x50\x53\x64\x57\x52\x56\x63\x52\x71','\x57\x36\x4e\x63\x48\x59\x47\x41\x57\x51\x64\x63\x47\x6d\x6f\x6c\x41\x47','\x67\x38\x6b\x5a\x71\x43\x6f\x42\x69\x47','\x57\x37\x2f\x64\x4e\x31\x70\x64\x4a\x43\x6b\x30','\x57\x37\x5a\x63\x4a\x59\x79\x79','\x61\x38\x6f\x61\x57\x36\x79\x44\x6e\x6d\x6f\x6c\x57\x50\x43\x47','\x6f\x72\x58\x73\x57\x37\x6a\x39','\x66\x4d\x7a\x62\x42\x6d\x6f\x53','\x57\x35\x68\x63\x4c\x57\x53\x31\x57\x52\x4b','\x57\x52\x46\x63\x51\x67\x43\x50\x77\x33\x30','\x57\x51\x76\x59\x74\x49\x5a\x63\x52\x68\x39\x64\x57\x35\x71','\x57\x35\x56\x63\x55\x78\x79\x2b\x57\x52\x50\x38\x57\x52\x64\x64\x47\x61','\x69\x38\x6f\x34\x44\x43\x6f\x6e\x63\x53\x6b\x68\x57\x51\x79','\x73\x38\x6f\x31\x57\x37\x65','\x45\x38\x6b\x36\x41\x43\x6b\x77\x7a\x48\x68\x64\x53\x71','\x57\x37\x42\x64\x4e\x4c\x78\x63\x48\x33\x42\x64\x49\x43\x6b\x51\x62\x57','\x66\x6d\x6f\x6d\x72\x43\x6b\x31\x57\x37\x72\x6c\x41\x47','\x61\x64\x4b\x37\x57\x36\x39\x71\x67\x61','\x57\x36\x70\x64\x4a\x30\x4a\x63\x49\x78\x37\x64\x47\x53\x6b\x68\x6d\x71','\x57\x36\x44\x71\x63\x38\x6f\x42\x57\x34\x4e\x63\x4f\x53\x6b\x4f\x77\x57','\x69\x38\x6f\x77\x43\x53\x6b\x43\x57\x34\x6a\x30','\x67\x38\x6f\x56\x78\x38\x6f\x6a\x57\x52\x48\x62','\x68\x74\x58\x55\x57\x34\x79','\x57\x35\x7a\x4f\x57\x37\x56\x64\x4a\x53\x6b\x34','\x78\x38\x6b\x6f\x78\x6d\x6b\x66\x42\x57','\x57\x37\x58\x42\x67\x71','\x76\x30\x46\x64\x51\x63\x42\x63\x4c\x49\x71\x39\x41\x47','\x57\x51\x6a\x73\x57\x51\x6e\x45\x57\x51\x75','\x74\x31\x70\x63\x56\x4c\x4b\x68\x57\x52\x46\x63\x48\x6d\x6f\x46','\x57\x51\x4c\x6c\x75\x71\x30\x6d\x79\x71','\x6a\x65\x74\x63\x4a\x57\x35\x34\x76\x43\x6f\x38\x45\x47','\x6a\x76\x76\x75\x57\x50\x42\x63\x55\x47','\x75\x32\x64\x63\x48\x66\x4c\x43','\x6d\x4b\x2f\x63\x4f\x48\x72\x6f','\x43\x43\x6f\x73\x57\x34\x31\x46\x78\x61','\x57\x52\x66\x4f\x74\x49\x6c\x63\x4e\x33\x66\x35\x57\x34\x6d','\x57\x50\x76\x73\x57\x52\x31\x54\x57\x51\x71','\x57\x51\x6a\x72\x57\x50\x72\x7a','\x44\x78\x42\x63\x4a\x4a\x6c\x63\x51\x61\x61\x65','\x57\x52\x35\x57\x57\x36\x70\x64\x4b\x4a\x6d','\x65\x53\x6f\x68\x57\x37\x4b\x34\x66\x57','\x57\x51\x61\x7a\x57\x50\x69','\x6e\x65\x44\x2b\x71\x43\x6f\x43','\x6f\x4b\x4a\x63\x49\x71\x30','\x79\x78\x52\x63\x48\x5a\x4b','\x43\x4d\x37\x63\x47\x4e\x4c\x49','\x57\x52\x42\x63\x52\x68\x4f','\x68\x49\x4f\x2f\x57\x34\x71','\x70\x6d\x6b\x72\x77\x38\x6f\x61\x70\x47','\x57\x37\x58\x67\x6f\x6d\x6f\x62\x57\x34\x6c\x63\x52\x38\x6b\x64\x78\x57','\x57\x36\x43\x4a\x57\x50\x47\x34\x57\x52\x47','\x57\x37\x46\x63\x49\x73\x4f\x52','\x77\x6d\x6b\x56\x45\x6d\x6b\x62\x42\x71\x46\x63\x4c\x32\x47','\x68\x6d\x6f\x32\x57\x37\x58\x76\x62\x43\x6f\x45\x6f\x4e\x30','\x57\x34\x64\x63\x48\x76\x78\x63\x56\x67\x75','\x63\x53\x6b\x48\x57\x51\x33\x64\x48\x43\x6f\x51','\x57\x36\x4a\x63\x4d\x64\x65\x70\x57\x34\x71','\x6f\x6d\x6b\x4d\x57\x4f\x56\x64\x54\x6d\x6f\x41','\x57\x35\x52\x64\x4b\x4b\x78\x63\x49\x57','\x69\x43\x6b\x4a\x57\x4f\x68\x64\x4a\x38\x6b\x34\x64\x38\x6b\x6f\x57\x51\x54\x6d\x57\x37\x4b\x6c\x66\x38\x6b\x51','\x57\x50\x47\x74\x57\x51\x4e\x63\x54\x38\x6b\x35\x63\x47','\x63\x5a\x46\x64\x55\x74\x70\x63\x4c\x64\x69\x5a\x44\x47','\x57\x34\x6e\x2b\x57\x34\x5a\x64\x54\x38\x6b\x56\x57\x4f\x4b\x6c\x72\x47','\x6d\x38\x6b\x66\x57\x51\x64\x64\x4b\x53\x6f\x78','\x67\x38\x6f\x65\x71\x43\x6f\x6e\x6c\x57','\x46\x6d\x6b\x76\x7a\x38\x6b\x77\x7a\x61','\x66\x63\x47\x30\x57\x37\x35\x36\x63\x68\x64\x63\x47\x71','\x68\x53\x6f\x4e\x72\x38\x6f\x79\x57\x52\x50\x43\x57\x50\x33\x63\x56\x57','\x57\x51\x4b\x76\x57\x52\x4a\x64\x54\x43\x6b\x75','\x62\x59\x6d\x47\x6d\x38\x6b\x43','\x57\x51\x72\x6a\x57\x50\x72\x75\x57\x34\x71\x61\x6c\x5a\x71','\x57\x35\x5a\x63\x51\x65\x4a\x63\x55\x32\x79\x6d\x76\x4d\x4b','\x57\x37\x31\x56\x57\x34\x64\x64\x55\x53\x6b\x58\x57\x50\x75\x74\x77\x47','\x75\x33\x37\x63\x51\x75\x4f\x2b\x57\x51\x6c\x63\x48\x6d\x6f\x63','\x73\x33\x62\x39\x7a\x47\x34','\x57\x37\x52\x64\x53\x30\x72\x72\x57\x51\x76\x76\x46\x61','\x66\x61\x4e\x64\x51\x61','\x57\x36\x6c\x63\x55\x38\x6f\x41\x57\x37\x6d\x32\x57\x35\x34','\x68\x4d\x4e\x63\x50\x47\x48\x69','\x57\x37\x74\x64\x4e\x66\x78\x63\x4a\x78\x65','\x68\x4a\x7a\x76\x57\x37\x66\x52','\x70\x66\x66\x53','\x57\x36\x64\x63\x51\x75\x6d\x43\x57\x50\x65','\x6c\x6d\x6b\x62\x76\x53\x6f\x59\x6e\x71','\x57\x37\x31\x48\x57\x34\x46\x64\x4a\x6d\x6b\x6c','\x57\x36\x54\x52\x57\x34\x74\x64\x55\x43\x6b\x50\x57\x50\x75\x4f\x66\x61','\x6f\x33\x62\x6e\x42\x53\x6f\x75','\x68\x73\x69\x54','\x57\x36\x58\x53\x66\x6d\x6f\x4b\x57\x36\x53','\x65\x43\x6f\x65\x65\x38\x6b\x54\x62\x73\x76\x6a\x43\x47','\x6b\x38\x6b\x61\x57\x51\x46\x64\x4c\x71','\x57\x52\x4b\x44\x57\x50\x57\x65\x66\x6d\x6f\x73\x57\x36\x56\x63\x50\x47','\x57\x4f\x71\x64\x57\x52\x5a\x63\x50\x53\x6b\x31\x64\x31\x66\x71','\x57\x35\x2f\x63\x4f\x75\x79\x2b\x57\x51\x34','\x73\x6d\x6f\x57\x57\x51\x4c\x5a\x78\x61\x31\x35\x57\x52\x71','\x66\x33\x50\x2b\x57\x4f\x4e\x63\x55\x47','\x63\x6d\x6f\x4f\x78\x38\x6f\x75\x57\x52\x6e\x79\x57\x52\x5a\x63\x56\x57','\x57\x52\x66\x31\x73\x63\x37\x63\x4b\x4e\x48\x35\x57\x34\x34','\x72\x49\x4f\x52\x57\x35\x66\x55\x65\x4d\x79','\x44\x38\x6b\x35\x6c\x38\x6f\x6e\x57\x4f\x4f\x31\x68\x4b\x7a\x7a\x57\x37\x69\x4c\x61\x74\x75','\x57\x4f\x6a\x44\x57\x35\x56\x64\x4b\x74\x4f\x30','\x57\x52\x50\x6a\x77\x47\x6d\x6d','\x57\x36\x4a\x63\x49\x59\x34\x68\x57\x51\x37\x63\x47\x47','\x70\x64\x74\x63\x56\x43\x6f\x45\x43\x57','\x57\x52\x42\x63\x4f\x78\x43\x67\x72\x57','\x57\x34\x68\x63\x55\x75\x53\x79\x57\x52\x6d','\x6d\x74\x52\x63\x56\x43\x6f\x79','\x57\x51\x30\x44\x57\x4f\x69\x37\x62\x6d\x6f\x76','\x76\x53\x6f\x31\x57\x37\x54\x50\x76\x61','\x57\x35\x5a\x63\x54\x49\x61\x65\x57\x51\x34','\x57\x52\x46\x64\x4c\x66\x6c\x64\x4a\x4e\x5a\x64\x4e\x38\x6b\x66\x63\x57','\x77\x43\x6f\x34\x57\x36\x68\x63\x4b\x43\x6f\x36','\x57\x51\x61\x76\x57\x4f\x75\x5a','\x62\x43\x6f\x34\x74\x53\x6b\x76\x57\x34\x6d','\x62\x5a\x71\x51\x57\x37\x34','\x57\x36\x74\x63\x54\x53\x6f\x45','\x57\x37\x37\x63\x56\x6d\x6f\x65','\x68\x59\x6e\x62\x57\x36\x54\x4a','\x57\x36\x7a\x59\x68\x43\x6f\x61\x57\x37\x57','\x57\x34\x6c\x63\x4b\x5a\x69','\x57\x35\x50\x5a\x6a\x53\x6f\x34\x57\x34\x34','\x65\x43\x6f\x53\x57\x35\x31\x31\x6e\x47','\x57\x4f\x48\x56\x41\x63\x46\x63\x48\x71','\x57\x52\x76\x30\x7a\x74\x47\x6a','\x57\x52\x6c\x63\x51\x6d\x6f\x52\x57\x34\x74\x64\x4d\x43\x6b\x34\x57\x4f\x43','\x57\x34\x4a\x63\x55\x78\x61\x4f\x57\x52\x47','\x75\x53\x6f\x46\x57\x50\x72\x34','\x57\x4f\x75\x44\x57\x52\x4f\x73\x63\x47','\x68\x38\x6f\x4f\x57\x36\x5a\x64\x52\x53\x6b\x5a','\x57\x50\x38\x31\x57\x50\x56\x64\x4e\x6d\x6b\x70\x57\x52\x4f','\x6f\x43\x6b\x43\x78\x53\x6f\x77\x70\x47','\x74\x6d\x6f\x35\x57\x51\x58\x59\x69\x47','\x57\x51\x7a\x6e\x57\x50\x7a\x70\x57\x4f\x75\x65\x70\x74\x43','\x6d\x38\x6f\x66\x57\x34\x42\x64\x4b\x38\x6b\x66','\x69\x43\x6b\x76\x74\x47','\x75\x38\x6f\x4b\x57\x50\x39\x39\x6a\x47','\x57\x36\x30\x6f\x57\x4f\x38\x4c\x57\x52\x4a\x64\x55\x61\x75','\x57\x52\x4b\x7a\x57\x4f\x38\x2b\x61\x53\x6f\x66\x57\x36\x68\x63\x54\x71','\x76\x43\x6f\x47\x57\x36\x48\x4f\x72\x71\x35\x43\x57\x52\x69','\x68\x43\x6f\x79\x57\x34\x30\x38\x6f\x57','\x57\x35\x5a\x63\x4b\x4c\x75\x39\x57\x50\x34','\x57\x50\x47\x63\x57\x51\x4e\x63\x54\x38\x6b\x55\x65\x77\x6e\x4d','\x77\x48\x42\x64\x56\x43\x6b\x57\x66\x57','\x57\x52\x4a\x63\x50\x4d\x61','\x78\x38\x6b\x32\x7a\x6d\x6b\x71\x7a\x48\x65','\x44\x38\x6b\x53\x57\x51\x5a\x63\x55\x6d\x6f\x4b\x7a\x4d\x44\x64\x73\x38\x6b\x46\x57\x37\x52\x63\x56\x6d\x6f\x48','\x66\x43\x6f\x45\x57\x36\x75\x2f\x6f\x71','\x76\x53\x6f\x4d\x57\x36\x58\x38\x76\x61\x39\x35\x57\x52\x34','\x57\x36\x70\x64\x55\x66\x4e\x63\x47\x33\x4f','\x73\x49\x33\x64\x52\x43\x6b\x33\x6a\x38\x6b\x57\x6e\x43\x6b\x47','\x57\x50\x38\x7a\x57\x51\x5a\x63\x50\x6d\x6b\x4a\x70\x76\x48\x47','\x74\x4c\x37\x63\x56\x73\x37\x63\x48\x57','\x71\x6d\x6f\x31\x57\x36\x62\x32','\x57\x50\x57\x56\x57\x50\x52\x63\x4b\x53\x6b\x76','\x7a\x43\x6f\x38\x57\x34\x46\x63\x4a\x38\x6f\x51\x76\x6d\x6f\x42\x57\x51\x43','\x74\x38\x6b\x2b\x7a\x6d\x6b\x72\x7a\x47','\x65\x66\x62\x43\x74\x38\x6f\x56','\x74\x64\x64\x64\x53\x43\x6b\x2b\x70\x6d\x6b\x4e\x43\x6d\x6b\x56','\x61\x53\x6b\x61\x57\x52\x64\x64\x4c\x6d\x6f\x39','\x57\x52\x75\x7a\x57\x4f\x52\x64\x53\x6d\x6b\x34','\x6c\x5a\x64\x63\x55\x38\x6f\x32\x46\x4b\x31\x79\x57\x36\x4b','\x6c\x73\x72\x30\x57\x34\x62\x76\x79\x66\x56\x64\x53\x61','\x57\x51\x65\x74\x57\x4f\x69\x35','\x76\x78\x72\x72\x45\x72\x61','\x69\x53\x6f\x4c\x75\x53\x6f\x74\x57\x52\x4c\x41\x57\x4f\x56\x63\x50\x57','\x66\x57\x46\x64\x52\x57','\x57\x36\x52\x63\x4d\x4c\x33\x63\x4e\x76\x65\x47\x46\x57','\x71\x38\x6f\x59\x57\x50\x4c\x30\x68\x43\x6f\x59','\x74\x68\x37\x63\x54\x77\x57\x74\x57\x51\x64\x63\x48\x38\x6f\x6a','\x46\x53\x6b\x41\x7a\x38\x6b\x77\x74\x47','\x57\x51\x72\x73\x57\x36\x4a\x64\x56\x49\x38','\x57\x34\x37\x63\x55\x77\x34\x55\x57\x52\x47','\x63\x72\x52\x64\x56\x74\x78\x63\x55\x5a\x69\x38\x43\x47','\x57\x52\x4b\x49\x57\x52\x4a\x63\x4c\x43\x6b\x61','\x6f\x63\x2f\x63\x4b\x6d\x6f\x79\x78\x47','\x57\x36\x58\x48\x63\x38\x6f\x45\x57\x34\x69','\x70\x49\x50\x30\x57\x34\x31\x78\x46\x65\x64\x64\x55\x47','\x79\x33\x68\x63\x4e\x72\x4e\x63\x55\x71\x6d\x75\x64\x61','\x6b\x53\x6f\x62\x57\x34\x4f\x32\x57\x51\x47','\x6e\x76\x2f\x63\x49\x72\x62\x50\x77\x53\x6f\x6d\x42\x61','\x57\x4f\x33\x63\x56\x38\x6f\x42\x57\x37\x70\x64\x53\x47','\x76\x68\x62\x49\x7a\x74\x30','\x6b\x6d\x6f\x61\x46\x6d\x6b\x65\x57\x34\x47','\x6b\x63\x68\x64\x54\x57\x46\x63\x54\x57','\x57\x52\x6c\x63\x51\x68\x4f\x47\x77\x78\x79\x4d\x43\x71','\x57\x36\x43\x59\x57\x50\x34\x59\x57\x51\x34','\x57\x52\x6e\x30\x71\x48\x30\x67','\x61\x30\x62\x6a\x57\x51\x4e\x63\x54\x57','\x57\x37\x42\x64\x4e\x4b\x43','\x6d\x6d\x6f\x2f\x57\x35\x33\x64\x56\x6d\x6b\x36','\x57\x35\x56\x63\x55\x78\x69\x4f\x57\x51\x48\x2f\x57\x51\x46\x64\x49\x47','\x57\x36\x46\x64\x4a\x30\x4a\x63\x47\x77\x53','\x75\x65\x56\x63\x52\x31\x71\x58','\x42\x53\x6b\x6f\x57\x52\x6d','\x64\x43\x6f\x5a\x71\x6d\x6f\x76','\x6a\x30\x4f\x52\x57\x50\x4e\x64\x4f\x6d\x6f\x52\x57\x34\x74\x64\x53\x61','\x6a\x63\x65\x70\x57\x35\x44\x69','\x57\x34\x5a\x63\x55\x68\x70\x63\x4d\x65\x30','\x64\x68\x54\x4a\x57\x50\x46\x63\x4a\x71','\x6b\x6d\x6f\x6e\x57\x37\x5a\x64\x4e\x53\x6b\x47','\x57\x37\x4a\x63\x56\x58\x65\x59\x57\x34\x46\x64\x53\x77\x38','\x68\x59\x50\x73\x57\x36\x48\x62','\x57\x52\x33\x63\x47\x6d\x6f\x46\x57\x35\x4a\x64\x4d\x57','\x69\x65\x79\x31\x57\x4f\x69','\x57\x35\x4e\x63\x51\x67\x4f\x45\x57\x51\x54\x32\x57\x51\x5a\x64\x4a\x71','\x6e\x78\x38\x33\x57\x34\x71','\x75\x68\x4a\x63\x52\x75\x47\x75\x57\x52\x79','\x57\x37\x6c\x63\x50\x62\x65\x4a\x57\x34\x68\x64\x55\x78\x4b','\x75\x33\x62\x64\x42\x58\x74\x64\x51\x47','\x43\x6d\x6b\x53\x42\x43\x6b\x4c\x41\x61','\x70\x53\x6f\x69\x57\x34\x34\x31\x57\x4f\x35\x34\x62\x43\x6f\x67','\x63\x47\x64\x64\x54\x5a\x42\x63\x49\x64\x6d\x61\x79\x71','\x63\x47\x74\x64\x53\x73\x64\x63\x47\x71','\x70\x53\x6b\x63\x78\x53\x6f\x73\x70\x6d\x6b\x32\x46\x57','\x73\x43\x6f\x57\x57\x36\x57\x4e','\x79\x33\x35\x47','\x66\x59\x43\x6c\x70\x38\x6b\x6d\x44\x53\x6f\x37\x71\x57','\x73\x4d\x6c\x63\x51\x75\x34\x76','\x73\x4e\x2f\x63\x49\x4c\x75\x70\x57\x51\x5a\x63\x4c\x43\x6f\x6a','\x6a\x72\x68\x63\x51\x53\x6f\x55\x45\x47','\x57\x52\x4b\x76\x57\x4f\x75\x4a\x70\x53\x6f\x41\x57\x36\x33\x63\x55\x47','\x57\x35\x56\x63\x4e\x71\x56\x64\x50\x4c\x42\x63\x4d\x43\x6b\x38\x68\x47','\x57\x36\x6c\x63\x56\x6d\x6f\x67\x57\x37\x30\x77','\x6f\x43\x6f\x4f\x77\x38\x6f\x6e\x68\x71','\x66\x6d\x6f\x57\x76\x53\x6f\x49\x57\x52\x72\x44\x57\x4f\x52\x63\x54\x61','\x57\x51\x4b\x49\x57\x51\x37\x63\x4f\x6d\x6b\x37','\x65\x53\x6f\x57\x57\x36\x79\x48\x67\x61','\x70\x53\x6f\x49\x77\x43\x6f\x41\x66\x38\x6b\x74\x57\x51\x53','\x74\x6d\x6f\x37\x57\x36\x62\x30','\x57\x52\x47\x76\x57\x4f\x57\x35\x61\x6d\x6f\x44\x57\x34\x70\x63\x50\x47','\x74\x43\x6b\x57\x46\x6d\x6b\x66\x42\x57','\x57\x37\x68\x63\x53\x62\x79\x30\x57\x37\x68\x64\x54\x78\x38\x64','\x6b\x53\x6f\x6d\x57\x35\x65','\x57\x37\x37\x64\x55\x4b\x4a\x63\x4d\x32\x57','\x6e\x43\x6f\x41\x57\x37\x53\x35\x57\x4f\x58\x34\x68\x38\x6f\x67','\x57\x36\x53\x2f\x57\x4f\x38\x4c\x57\x52\x34','\x62\x43\x6f\x72\x57\x37\x4b\x41\x57\x52\x61','\x64\x57\x33\x63\x55\x64\x64\x63\x4b\x64\x79\x57\x42\x71','\x57\x4f\x58\x69\x57\x36\x78\x64\x53\x57\x47','\x69\x38\x6b\x64\x44\x53\x6f\x68\x6b\x43\x6b\x59\x44\x61','\x44\x4d\x33\x63\x4a\x63\x52\x63\x47\x71\x30\x74\x69\x71','\x68\x72\x69\x50\x57\x37\x72\x6a\x61\x4e\x78\x63\x4e\x61','\x57\x52\x47\x50\x57\x52\x65\x4a\x66\x57','\x64\x71\x4e\x64\x51\x49\x74\x63\x47\x73\x6d','\x71\x63\x52\x64\x51\x38\x6b\x37\x6f\x53\x6b\x55\x43\x61','\x57\x4f\x69\x5a\x57\x4f\x4a\x64\x4c\x57','\x57\x52\x5a\x63\x52\x67\x6d\x51\x74\x67\x61\x74\x45\x47','\x57\x4f\x72\x6d\x57\x37\x46\x64\x4e\x74\x43\x50\x7a\x53\x6b\x57','\x73\x53\x6f\x59\x57\x36\x44\x47\x41\x61','\x57\x36\x74\x63\x51\x53\x6f\x32\x57\x37\x38\x37\x57\x34\x70\x63\x47\x6d\x6f\x70','\x57\x34\x52\x63\x4e\x75\x42\x63\x49\x32\x30','\x57\x35\x54\x73\x57\x34\x52\x64\x4d\x43\x6b\x45','\x57\x4f\x54\x32\x45\x49\x52\x63\x47\x47','\x57\x52\x70\x63\x51\x68\x30\x47\x75\x4e\x61\x36\x42\x71','\x67\x32\x58\x56\x57\x50\x33\x63\x4c\x38\x6f\x34\x57\x4f\x6d','\x6f\x49\x46\x63\x55\x38\x6f\x73\x41\x75\x43\x35\x57\x37\x57','\x64\x38\x6f\x48\x45\x43\x6f\x2f\x57\x51\x34','\x57\x4f\x37\x63\x51\x4d\x38\x58\x77\x33\x34\x37\x45\x47','\x73\x67\x4a\x63\x4d\x65\x57\x6c','\x57\x34\x68\x63\x4a\x67\x65\x62\x57\x52\x79','\x61\x53\x6f\x4f\x66\x53\x6b\x4a\x70\x71','\x57\x36\x4a\x64\x4e\x4b\x37\x64\x50\x38\x6b\x2f\x57\x37\x61','\x69\x59\x72\x34','\x57\x4f\x39\x35\x71\x49\x2f\x63\x47\x77\x31\x48\x57\x35\x38','\x6a\x43\x6f\x4c\x57\x37\x42\x64\x55\x6d\x6b\x4a\x6c\x71\x7a\x56','\x57\x36\x65\x38\x57\x50\x57\x4c\x57\x52\x34','\x6e\x43\x6f\x41\x57\x37\x57\x49\x57\x50\x62\x57\x65\x47','\x69\x38\x6f\x36\x7a\x43\x6b\x75\x57\x35\x72\x50\x43\x78\x38','\x57\x34\x64\x63\x4c\x63\x71','\x57\x35\x56\x63\x4b\x73\x33\x64\x4d\x68\x5a\x63\x54\x53\x6b\x52\x61\x57','\x75\x33\x50\x33\x73\x72\x2f\x64\x55\x57\x48\x38','\x70\x63\x62\x4a\x57\x34\x50\x61\x41\x30\x5a\x64\x52\x71','\x57\x51\x6e\x55\x77\x59\x78\x63\x4c\x30\x54\x68\x57\x35\x4b','\x57\x37\x31\x54\x67\x53\x6f\x62\x57\x34\x79','\x57\x50\x2f\x63\x51\x66\x38\x61\x76\x71','\x76\x43\x6f\x79\x57\x50\x35\x32\x61\x43\x6f\x59\x57\x34\x34','\x6a\x6d\x6f\x4f\x71\x38\x6b\x59\x57\x35\x34','\x57\x50\x4b\x65\x57\x51\x46\x63\x54\x38\x6b\x66\x61\x76\x54\x36','\x57\x36\x50\x59\x57\x35\x70\x64\x54\x53\x6b\x38\x57\x50\x30\x50','\x57\x35\x37\x63\x54\x59\x68\x64\x56\x4b\x57','\x62\x33\x62\x38\x57\x50\x64\x63\x4d\x43\x6f\x35\x57\x52\x4b\x68','\x57\x50\x4f\x39\x57\x50\x64\x64\x4d\x38\x6b\x6b\x57\x52\x46\x63\x4d\x38\x6f\x74','\x57\x37\x56\x63\x54\x71\x30\x70\x57\x34\x71','\x57\x34\x56\x64\x49\x68\x44\x58\x57\x51\x47','\x76\x33\x72\x38\x43\x63\x78\x64\x50\x72\x6e\x31','\x57\x37\x79\x4f\x57\x50\x4f\x59','\x43\x4c\x62\x74\x79\x5a\x6d','\x57\x37\x52\x64\x4d\x65\x5a\x63\x47\x77\x56\x64\x4e\x53\x6b\x51\x63\x71','\x57\x50\x38\x31\x57\x50\x56\x64\x4e\x6d\x6b\x70\x57\x52\x52\x63\x4e\x61','\x6f\x53\x6f\x66\x63\x38\x6b\x38\x70\x61','\x42\x43\x6f\x2b\x57\x36\x6a\x49\x44\x47','\x74\x78\x62\x5a\x43\x58\x74\x64\x56\x73\x76\x47','\x62\x5a\x53\x4f\x69\x53\x6b\x6e\x41\x38\x6f\x69\x73\x57','\x57\x4f\x33\x63\x4a\x43\x6f\x71\x57\x37\x6c\x64\x55\x61','\x6d\x78\x35\x53\x74\x38\x6f\x31','\x74\x4d\x4a\x63\x4e\x32\x7a\x51','\x44\x77\x5a\x63\x4a\x63\x4a\x63\x4c\x47\x75\x74','\x61\x64\x30\x32\x57\x37\x6a\x72','\x61\x78\x35\x41\x57\x52\x70\x63\x4e\x71','\x57\x37\x4a\x63\x47\x48\x57\x55\x57\x34\x30','\x42\x53\x6f\x33\x57\x36\x5a\x64\x50\x6d\x6b\x35','\x57\x37\x74\x64\x47\x32\x64\x64\x48\x6d\x6b\x32','\x70\x73\x58\x4e\x57\x34\x54\x74\x79\x33\x42\x64\x4f\x47','\x6e\x75\x4f\x6a\x57\x36\x42\x63\x4d\x61','\x72\x78\x4c\x35\x44\x61','\x7a\x48\x6c\x64\x53\x43\x6b\x61\x6d\x71','\x57\x37\x68\x63\x54\x76\x53\x72\x57\x51\x53','\x6c\x38\x6f\x35\x72\x53\x6f\x71\x63\x53\x6b\x35\x57\x52\x5a\x64\x52\x61','\x6d\x76\x46\x63\x4b\x61\x39\x4b','\x6e\x33\x65\x59\x57\x34\x5a\x63\x51\x38\x6b\x69\x57\x36\x4e\x63\x4b\x47','\x57\x52\x79\x37\x57\x4f\x74\x64\x4c\x43\x6b\x53','\x57\x52\x31\x6a\x77\x71\x6d\x44','\x57\x36\x44\x73\x67\x43\x6f\x39\x57\x36\x61','\x57\x36\x4a\x63\x52\x38\x6f\x7a\x57\x37\x69\x57\x57\x34\x74\x63\x4c\x38\x6f\x70','\x41\x31\x70\x63\x4d\x66\x66\x64\x57\x52\x70\x64\x51\x61','\x43\x4b\x46\x63\x47\x65\x44\x6a','\x57\x37\x65\x35\x57\x4f\x75\x4a','\x6a\x38\x6b\x68\x57\x51\x4a\x64\x4e\x43\x6f\x54\x6b\x38\x6b\x33\x57\x51\x6d','\x57\x4f\x39\x4d\x78\x5a\x75\x6d','\x57\x4f\x6c\x63\x47\x67\x4b\x68\x73\x47','\x76\x43\x6b\x36\x7a\x53\x6b\x64\x44\x57\x53','\x61\x63\x61\x39\x6d\x43\x6b\x76','\x6a\x43\x6f\x52\x57\x37\x42\x64\x52\x38\x6b\x59\x6d\x64\x7a\x5a','\x57\x52\x4b\x7a\x57\x4f\x4f\x5a\x69\x53\x6f\x65\x57\x37\x52\x63\x53\x71','\x57\x4f\x34\x66\x57\x52\x56\x63\x52\x6d\x6b\x31\x64\x67\x54\x37','\x6e\x76\x46\x63\x53\x59\x35\x52','\x57\x35\x44\x53\x6d\x53\x6f\x35\x57\x36\x71','\x6d\x4e\x43\x37\x57\x37\x75','\x57\x36\x70\x63\x55\x49\x57\x55\x57\x51\x4f','\x57\x51\x78\x63\x56\x38\x6f\x50\x57\x35\x56\x64\x4b\x43\x6b\x38\x57\x35\x47','\x45\x62\x4e\x64\x54\x38\x6b\x5a\x6a\x71','\x57\x37\x46\x63\x49\x59\x69\x42\x57\x52\x70\x63\x4c\x43\x6f\x6c\x79\x57','\x57\x52\x74\x63\x50\x68\x34\x58\x74\x71','\x57\x51\x69\x46\x57\x50\x38\x2b\x66\x38\x6f\x75','\x76\x33\x42\x63\x4f\x61\x33\x63\x53\x61','\x57\x50\x7a\x66\x72\x4a\x78\x63\x55\x61','\x57\x4f\x44\x71\x57\x35\x74\x64\x4e\x72\x79','\x6e\x53\x6f\x38\x7a\x43\x6b\x76','\x69\x6d\x6f\x6f\x46\x38\x6f\x41\x6d\x57','\x75\x78\x66\x35\x43\x48\x56\x64\x56\x72\x38','\x62\x4a\x57\x47\x70\x38\x6b\x78','\x65\x66\x79\x39\x57\x50\x64\x64\x53\x43\x6f\x47\x57\x35\x75','\x66\x6d\x6b\x57\x57\x51\x64\x64\x48\x6d\x6f\x35','\x73\x43\x6f\x70\x57\x50\x44\x57\x62\x38\x6f\x31','\x6f\x43\x6f\x48\x57\x34\x71\x2b\x66\x57','\x57\x52\x76\x49\x78\x62\x4b\x6c','\x57\x36\x5a\x63\x49\x32\x38\x68\x57\x52\x78\x63\x4a\x43\x6f\x32\x41\x61','\x62\x30\x6e\x48\x73\x6d\x6f\x45','\x57\x37\x35\x7a\x57\x35\x4e\x64\x4a\x43\x6b\x73','\x46\x6d\x6f\x68\x57\x37\x64\x63\x4e\x53\x6f\x4f','\x57\x52\x38\x46\x57\x4f\x71\x36\x62\x6d\x6f\x33\x57\x37\x52\x63\x52\x61','\x64\x43\x6b\x4e\x7a\x38\x6f\x6d\x61\x47','\x41\x77\x52\x63\x4e\x74\x2f\x63\x50\x47\x65\x73','\x57\x37\x2f\x63\x53\x61\x52\x64\x4b\x75\x34','\x57\x36\x4a\x63\x4a\x67\x75','\x57\x51\x72\x41\x57\x4f\x54\x6f','\x72\x49\x5a\x64\x4e\x53\x6b\x51\x6a\x38\x6b\x49\x42\x61','\x57\x37\x35\x53\x74\x4a\x74\x63\x4d\x59\x4f','\x73\x4c\x35\x35\x45\x61\x38','\x70\x38\x6f\x62\x57\x37\x4b\x2b\x57\x51\x53','\x65\x53\x6f\x43\x57\x36\x71\x51\x63\x61','\x57\x34\x4a\x63\x49\x38\x6f\x37\x57\x35\x30\x61','\x57\x52\x39\x68\x57\x4f\x4f','\x57\x35\x64\x64\x4e\x30\x46\x64\x53\x43\x6b\x4b','\x57\x37\x6c\x64\x47\x75\x5a\x64\x47\x6d\x6b\x57\x57\x37\x4e\x63\x47\x38\x6b\x4b','\x72\x4d\x4a\x63\x4d\x78\x7a\x47','\x64\x78\x30\x45\x57\x52\x4e\x64\x50\x57','\x57\x35\x74\x63\x56\x33\x75\x6f\x57\x51\x34','\x41\x4a\x68\x64\x56\x53\x6b\x36\x6f\x43\x6b\x4d\x43\x71','\x61\x59\x4b\x73\x57\x34\x35\x76','\x43\x4c\x62\x38\x46\x63\x34','\x57\x37\x72\x75\x57\x34\x52\x64\x4d\x43\x6b\x6f','\x75\x68\x4e\x63\x52\x31\x38\x65\x57\x52\x42\x63\x4b\x47','\x66\x4c\x75\x57\x57\x37\x70\x63\x4a\x71','\x6a\x5a\x7a\x67\x57\x34\x58\x43\x7a\x4c\x33\x64\x52\x61','\x76\x43\x6f\x48\x57\x36\x50\x35\x76\x61\x35\x34','\x57\x34\x5a\x63\x54\x33\x61','\x57\x4f\x65\x35\x57\x50\x68\x64\x4e\x43\x6b\x43\x57\x51\x2f\x63\x53\x6d\x6f\x78','\x42\x6d\x6f\x36\x57\x35\x68\x63\x4a\x53\x6f\x35\x78\x38\x6f\x65\x57\x52\x79','\x57\x36\x78\x63\x4f\x64\x46\x64\x4f\x78\x75','\x57\x34\x70\x64\x4a\x4b\x6e\x67\x57\x50\x47','\x70\x78\x4b\x58\x57\x51\x70\x64\x4e\x57','\x69\x4c\x50\x75\x57\x51\x74\x63\x51\x71','\x57\x37\x6a\x52\x57\x35\x70\x64\x56\x43\x6b\x35\x57\x50\x4b\x56\x71\x61','\x57\x34\x76\x72\x57\x35\x37\x64\x4d\x4a\x58\x50','\x57\x4f\x6e\x42\x57\x50\x68\x64\x4e\x74\x71\x57\x79\x6d\x6b\x36','\x61\x62\x47\x61\x57\x36\x39\x74','\x76\x43\x6f\x7a\x57\x50\x58\x48\x65\x43\x6f\x59','\x6b\x43\x6f\x55\x57\x35\x37\x64\x55\x43\x6b\x4c\x70\x59\x57','\x6f\x65\x37\x63\x49\x75\x4f\x73','\x62\x33\x76\x59\x57\x50\x33\x63\x4e\x71','\x6c\x31\x62\x50\x45\x43\x6f\x59\x76\x57','\x6b\x33\x38\x51\x57\x34\x56\x63\x4d\x61','\x71\x67\x4a\x63\x4c\x78\x4c\x39','\x43\x66\x74\x63\x49\x71\x72\x5a\x73\x6d\x6f\x5a\x7a\x47','\x57\x34\x46\x63\x49\x38\x6f\x75\x57\x35\x43\x33','\x6e\x76\x2f\x63\x48\x71\x61','\x67\x32\x44\x54\x41\x38\x6f\x4c','\x62\x5a\x53\x4f\x6a\x6d\x6b\x6d\x41\x57','\x6b\x68\x79\x45\x57\x51\x42\x64\x52\x47','\x43\x65\x70\x63\x47\x75\x6a\x79\x57\x51\x30','\x74\x32\x5a\x63\x47\x48\x70\x63\x49\x47','\x41\x74\x5a\x64\x51\x6d\x6b\x72\x68\x47','\x69\x4c\x4f\x31','\x69\x53\x6b\x44\x57\x4f\x74\x64\x4d\x6d\x6f\x4b','\x79\x43\x6f\x4f\x57\x52\x6e\x71\x6f\x38\x6f\x64\x57\x37\x5a\x64\x56\x71','\x57\x52\x6a\x55\x73\x4a\x42\x63\x52\x68\x66\x69\x57\x35\x53','\x64\x67\x33\x64\x56\x4c\x31\x6f\x57\x51\x4a\x63\x48\x6d\x6f\x62','\x42\x32\x4e\x63\x4a\x61\x70\x63\x4f\x61\x69\x73\x66\x47','\x74\x53\x6f\x31\x57\x50\x4c\x38\x64\x47','\x77\x53\x6f\x57\x57\x35\x4a\x63\x47\x38\x6f\x44','\x57\x34\x70\x63\x4b\x5a\x68\x64\x47\x75\x42\x63\x56\x53\x6b\x37','\x57\x37\x58\x30\x6b\x38\x6f\x4d\x57\x36\x47','\x73\x38\x6f\x6b\x57\x50\x48\x6b','\x45\x53\x6f\x4e\x57\x37\x33\x63\x4c\x53\x6f\x6e','\x57\x52\x4c\x79\x57\x4f\x66\x73\x57\x52\x4b\x74\x6d\x4a\x47','\x57\x35\x48\x71\x65\x38\x6f\x68\x57\x35\x37\x63\x56\x38\x6b\x57\x73\x61','\x57\x37\x65\x4b\x57\x4f\x4b\x30\x57\x51\x2f\x64\x50\x61\x71','\x62\x64\x57\x79\x57\x35\x6e\x32','\x46\x4a\x78\x64\x4a\x53\x6b\x6e\x70\x71','\x6b\x6d\x6f\x56\x46\x38\x6b\x7a\x57\x35\x35\x50\x74\x77\x34','\x6d\x4d\x47\x42\x57\x37\x64\x63\x4a\x47','\x65\x38\x6f\x78\x57\x36\x65\x6d\x64\x53\x6f\x4b\x57\x50\x4f','\x6c\x78\x75\x39\x57\x34\x2f\x63\x4d\x53\x6b\x71\x57\x35\x2f\x63\x48\x57','\x57\x51\x74\x63\x53\x38\x6f\x2b\x57\x35\x4e\x64\x4b\x43\x6b\x5a\x57\x34\x34','\x57\x52\x66\x50\x74\x63\x70\x63\x4c\x4d\x44\x76','\x57\x52\x46\x63\x52\x75\x4b\x77\x73\x47','\x63\x47\x56\x64\x54\x5a\x68\x63\x47\x71','\x57\x35\x52\x63\x4f\x66\x71\x69\x57\x4f\x43','\x57\x36\x70\x63\x52\x53\x6f\x59\x57\x35\x30\x6d','\x6d\x6d\x6f\x30\x57\x36\x42\x64\x4a\x38\x6b\x54','\x57\x37\x52\x64\x52\x30\x62\x43\x57\x51\x66\x6b','\x70\x71\x6d\x42\x57\x34\x31\x6b','\x44\x43\x6f\x4e\x57\x35\x64\x63\x4c\x6d\x6f\x65','\x57\x36\x43\x41\x57\x35\x6d\x6b\x57\x35\x6e\x73\x6c\x4a\x43\x2f\x57\x34\x46\x64\x4e\x6d\x6b\x46','\x57\x50\x57\x55\x57\x50\x78\x64\x4e\x43\x6b\x43\x57\x4f\x4e\x63\x4a\x53\x6f\x6f','\x57\x36\x37\x63\x49\x67\x71','\x57\x34\x4e\x63\x4c\x59\x65\x78','\x70\x38\x6f\x6f\x7a\x6d\x6b\x43\x57\x34\x54\x56','\x69\x32\x58\x72\x57\x52\x4a\x63\x4a\x71','\x57\x36\x6e\x38\x57\x34\x74\x64\x48\x57','\x57\x51\x31\x50\x77\x59\x70\x63\x4e\x68\x4c\x64','\x72\x43\x6f\x79\x57\x4f\x39\x4e\x61\x43\x6f\x56\x57\x34\x4e\x64\x52\x61','\x78\x53\x6b\x36\x46\x61','\x64\x71\x33\x64\x54\x74\x70\x63\x4b\x63\x71','\x57\x52\x76\x77\x44\x62\x34\x6d\x45\x75\x4f','\x6f\x6d\x6f\x55\x75\x6d\x6f\x6b\x67\x38\x6b\x64\x57\x37\x2f\x64\x53\x47','\x57\x36\x4e\x63\x50\x4c\x6c\x63\x50\x78\x61','\x57\x4f\x34\x30\x57\x52\x37\x64\x48\x43\x6b\x39','\x66\x38\x6f\x47\x57\x36\x6a\x6a\x66\x6d\x6f\x76\x6b\x4e\x4f','\x44\x38\x6f\x4e\x57\x34\x64\x63\x4a\x6d\x6f\x42','\x72\x4e\x37\x63\x56\x4c\x6d\x74\x57\x50\x52\x63\x4b\x43\x6f\x6a','\x6d\x38\x6f\x6b\x57\x35\x52\x64\x56\x53\x6b\x42','\x69\x53\x6f\x4a\x7a\x38\x6b\x6b\x57\x35\x71','\x6f\x43\x6b\x46\x72\x43\x6f\x62','\x74\x6d\x6b\x4f\x42\x38\x6b\x6a\x79\x71','\x74\x31\x6c\x63\x48\x57\x74\x63\x52\x71','\x74\x38\x6f\x45\x57\x52\x54\x38\x63\x53\x6f\x4f\x57\x34\x4e\x64\x4c\x47','\x67\x53\x6f\x51\x57\x37\x54\x4c\x66\x6d\x6f\x65\x6c\x77\x65','\x57\x37\x58\x30\x57\x35\x74\x64\x54\x53\x6b\x35','\x46\x47\x4a\x63\x49\x62\x7a\x2f\x42\x38\x6f\x36\x79\x71','\x57\x34\x52\x63\x51\x32\x53\x30\x57\x52\x6d','\x57\x37\x65\x30\x57\x4f\x79\x59\x57\x51\x4e\x64\x4f\x58\x4a\x63\x4b\x61','\x57\x4f\x6e\x61\x75\x57\x4f\x42\x45\x30\x43','\x73\x6d\x6f\x6d\x57\x50\x62\x57','\x57\x52\x48\x6e\x57\x52\x54\x76\x57\x4f\x34\x7a','\x57\x4f\x75\x59\x57\x50\x4a\x64\x4c\x38\x6b\x77\x57\x50\x4e\x63\x49\x71','\x68\x64\x56\x64\x4f\x73\x33\x63\x48\x57','\x72\x38\x6f\x41\x57\x51\x4c\x73\x6e\x71','\x6f\x38\x6b\x4c\x79\x53\x6f\x43\x68\x61','\x62\x53\x6b\x39\x57\x51\x64\x64\x49\x43\x6f\x35','\x72\x4a\x68\x64\x55\x53\x6b\x51\x69\x71','\x57\x36\x6a\x36\x57\x35\x6c\x64\x52\x6d\x6b\x63\x57\x50\x65\x56\x71\x61','\x66\x63\x47\x55','\x57\x37\x50\x50\x57\x34\x4a\x64\x56\x38\x6b\x36\x57\x50\x75\x2b','\x65\x49\x69\x79\x6f\x38\x6b\x33','\x64\x6d\x6f\x34\x75\x53\x6b\x57\x57\x35\x4f','\x64\x30\x70\x63\x4b\x47\x6a\x37\x78\x71','\x66\x33\x7a\x31\x57\x4f\x33\x63\x4e\x43\x6f\x32\x57\x50\x6d\x71','\x57\x35\x48\x69\x57\x35\x68\x64\x4e\x43\x6b\x33','\x57\x51\x47\x6f\x57\x4f\x34\x32\x66\x43\x6f\x75\x57\x36\x5a\x63\x4e\x61','\x57\x51\x62\x4d\x57\x4f\x58\x53\x57\x51\x65','\x74\x67\x62\x5a\x44\x72\x2f\x64\x55\x47\x4b','\x57\x37\x52\x63\x54\x61\x53\x4c\x57\x36\x46\x64\x53\x61','\x57\x37\x37\x63\x56\x47\x53\x5a\x57\x34\x56\x64\x54\x32\x4b\x64','\x6e\x6d\x6f\x56\x57\x36\x52\x64\x52\x47','\x57\x37\x46\x64\x4e\x4c\x33\x64\x53\x6d\x6f\x57','\x6d\x74\x68\x64\x56\x4a\x64\x63\x4a\x61','\x66\x73\x74\x63\x48\x43\x6f\x33\x76\x71','\x6d\x38\x6b\x61\x75\x47','\x42\x43\x6f\x6e\x57\x34\x39\x75\x44\x61','\x6a\x43\x6f\x43\x57\x35\x42\x64\x49\x43\x6b\x63','\x6c\x53\x6b\x7a\x72\x43\x6f\x42\x6f\x53\x6b\x2b\x41\x61','\x6f\x38\x6f\x6d\x57\x35\x6d\x31\x57\x52\x31\x34\x64\x57','\x57\x36\x52\x63\x56\x6d\x6f\x45\x57\x37\x6d\x6b\x57\x34\x4e\x63\x4c\x43\x6f\x45','\x70\x61\x75\x71\x57\x37\x50\x62','\x57\x37\x64\x63\x47\x68\x65','\x70\x66\x79\x56','\x57\x36\x52\x63\x48\x4e\x69','\x78\x64\x42\x64\x55\x6d\x6b\x32\x6e\x6d\x6b\x56\x73\x53\x6b\x51','\x57\x4f\x6e\x71\x57\x34\x78\x64\x4b\x71','\x57\x35\x53\x34\x57\x51\x43\x74\x57\x50\x38','\x70\x43\x6f\x61\x57\x34\x57\x51\x57\x4f\x71','\x57\x37\x46\x64\x4c\x4c\x52\x64\x56\x43\x6b\x62\x57\x37\x33\x63\x4b\x53\x6b\x4b','\x76\x33\x42\x63\x51\x32\x79\x77','\x57\x35\x70\x63\x4a\x76\x2f\x63\x47\x31\x53','\x6f\x66\x42\x63\x4a\x75\x7a\x65\x57\x36\x61','\x57\x52\x37\x63\x56\x68\x4f\x4d\x75\x78\x71\x58','\x57\x4f\x62\x45\x57\x34\x4b','\x57\x4f\x54\x56\x72\x61\x2f\x63\x53\x61','\x57\x35\x2f\x63\x53\x63\x34\x4c\x57\x37\x53','\x46\x33\x6d\x58\x57\x50\x43\x63\x70\x62\x4e\x64\x4e\x48\x4e\x64\x4d\x53\x6f\x34\x72\x38\x6b\x50','\x57\x4f\x74\x63\x4f\x53\x6f\x58\x57\x37\x2f\x64\x51\x61','\x57\x37\x7a\x46\x57\x35\x74\x64\x4f\x43\x6b\x58','\x42\x61\x71\x39\x70\x53\x6b\x55\x61\x6d\x6f\x33\x77\x32\x4a\x64\x4f\x32\x57\x69\x77\x57','\x61\x6d\x6f\x67\x66\x43\x6b\x33\x64\x57','\x65\x62\x37\x64\x56\x72\x5a\x63\x4a\x74\x4b\x33\x44\x47','\x68\x53\x6f\x63\x6f\x6d\x6b\x54\x64\x4a\x47','\x65\x71\x4e\x64\x51\x57','\x57\x52\x33\x63\x52\x67\x61\x49\x73\x4e\x65','\x57\x36\x37\x63\x55\x61\x47','\x6d\x6d\x6b\x43\x57\x52\x52\x64\x4d\x71','\x57\x51\x34\x65\x57\x50\x38\x59\x65\x38\x6f\x46\x57\x36\x4e\x63\x52\x57','\x57\x4f\x7a\x65\x7a\x49\x43\x4f','\x63\x30\x79\x51\x57\x50\x64\x64\x4f\x71','\x6b\x66\x79\x31\x57\x50\x70\x64\x50\x53\x6f\x49\x57\x35\x78\x64\x50\x47','\x69\x30\x4a\x63\x4c\x72\x66\x2b\x74\x6d\x6f\x61\x79\x71','\x67\x53\x6f\x59\x46\x38\x6f\x4c\x57\x51\x38','\x68\x74\x53\x57\x64\x38\x6b\x6b\x42\x6d\x6f\x2b\x76\x47','\x78\x67\x2f\x63\x4a\x48\x78\x63\x50\x47','\x6f\x76\x31\x59\x74\x53\x6f\x33','\x75\x67\x62\x4b\x44\x72\x78\x64\x50\x62\x39\x6d','\x6e\x6d\x6f\x34\x57\x37\x6c\x64\x55\x38\x6b\x4a\x6c\x71','\x6b\x53\x6f\x4f\x7a\x43\x6b\x6a\x57\x36\x72\x4d\x74\x78\x38','\x71\x38\x6b\x42\x41\x38\x6b\x33\x79\x47','\x57\x51\x70\x63\x52\x68\x53\x32\x77\x33\x30\x6c\x41\x57','\x57\x51\x76\x35\x71\x73\x75','\x6b\x43\x6f\x36\x57\x36\x53\x4f\x57\x50\x53','\x45\x78\x7a\x4e\x78\x5a\x65','\x57\x34\x52\x63\x4f\x67\x78\x63\x4a\x75\x47','\x57\x51\x71\x6a\x57\x50\x38\x30\x64\x53\x6f\x43\x57\x36\x30','\x65\x6d\x6f\x66\x57\x35\x54\x43\x6d\x47','\x76\x6d\x6b\x36\x7a\x43\x6b\x6c\x43\x72\x52\x63\x4a\x4d\x79','\x70\x68\x71\x34\x57\x50\x37\x64\x48\x61','\x57\x34\x37\x64\x50\x65\x42\x64\x4f\x38\x6b\x4b','\x57\x36\x76\x68\x67\x38\x6f\x45\x57\x37\x70\x63\x4f\x38\x6b\x7a\x74\x61','\x57\x36\x33\x63\x49\x47\x57\x37\x57\x4f\x4b','\x57\x52\x2f\x63\x51\x67\x6d\x47','\x42\x43\x6f\x68\x57\x34\x62\x38\x71\x61','\x57\x36\x42\x63\x51\x4e\x68\x63\x51\x4d\x47','\x57\x34\x70\x64\x4e\x4d\x64\x63\x4a\x30\x4f','\x57\x36\x7a\x77\x68\x38\x6f\x67\x57\x37\x70\x63\x51\x38\x6b\x65','\x46\x43\x6f\x33\x57\x35\x4e\x63\x4c\x6d\x6f\x35\x74\x38\x6f\x4f\x57\x52\x69','\x69\x4e\x33\x63\x51\x57\x54\x4c','\x57\x50\x35\x78\x57\x35\x37\x64\x47\x74\x75\x4b\x71\x6d\x6b\x57','\x78\x67\x62\x49\x7a\x62\x2f\x64\x50\x57\x35\x61','\x65\x63\x6d\x64\x57\x37\x31\x46','\x65\x77\x4c\x30\x57\x50\x33\x63\x4b\x6d\x6f\x6b\x57\x4f\x71\x6c','\x71\x4a\x42\x64\x53\x71','\x57\x36\x4a\x63\x4f\x43\x6f\x74\x57\x37\x6d\x4c\x57\x35\x37\x63\x4e\x43\x6f\x66','\x57\x37\x54\x57\x63\x6d\x6f\x6e\x57\x34\x6c\x63\x53\x47','\x75\x4d\x4a\x63\x48\x76\x39\x30','\x6a\x57\x34\x2f\x57\x37\x6a\x67','\x57\x36\x42\x64\x52\x53\x6b\x56\x57\x4f\x64\x63\x47\x6d\x6f\x52\x57\x37\x58\x73\x71\x75\x4b\x47\x41\x57','\x65\x74\x44\x50\x57\x35\x7a\x7a\x75\x65\x78\x64\x52\x61','\x57\x51\x76\x35\x77\x57','\x57\x37\x56\x63\x4f\x49\x43\x2b\x57\x50\x53','\x71\x64\x33\x64\x54\x43\x6b\x39\x6e\x53\x6b\x33','\x57\x52\x69\x39\x57\x4f\x38\x48\x63\x6d\x6f\x73\x57\x36\x30','\x57\x35\x2f\x63\x4a\x76\x4f\x41\x57\x52\x47','\x71\x43\x6b\x58\x71\x53\x6b\x73\x43\x61','\x57\x51\x72\x6a\x57\x50\x6e\x56\x57\x50\x38\x6a\x70\x5a\x34','\x57\x52\x6c\x63\x4f\x53\x6f\x58\x57\x35\x42\x64\x4f\x47','\x46\x6d\x6f\x5a\x57\x34\x46\x63\x4a\x38\x6f\x75\x72\x43\x6f\x75\x57\x51\x30','\x57\x36\x2f\x63\x54\x61\x79\x56\x57\x35\x5a\x64\x53\x68\x4b\x74','\x57\x37\x31\x2b\x57\x35\x75','\x57\x36\x43\x48\x57\x4f\x75\x30\x57\x51\x6c\x64\x49\x61\x74\x63\x4c\x47','\x6c\x53\x6b\x32\x57\x52\x52\x64\x4b\x6d\x6f\x67\x6e\x43\x6b\x47\x57\x52\x53','\x70\x38\x6f\x71\x78\x53\x6b\x6f\x57\x34\x6d','\x46\x61\x6a\x76\x57\x37\x6e\x6c\x79\x30\x4f','\x57\x37\x35\x67\x57\x4f\x54\x73\x57\x4f\x39\x64','\x63\x6d\x6f\x46\x75\x53\x6f\x41\x67\x71','\x74\x4b\x42\x63\x4a\x59\x2f\x63\x4f\x71','\x6b\x71\x78\x64\x55\x49\x64\x63\x48\x71','\x6a\x57\x65\x38\x57\x34\x4c\x49','\x6a\x53\x6b\x72\x72\x6d\x6f\x62\x62\x6d\x6b\x48\x45\x65\x30','\x63\x43\x6f\x51\x77\x6d\x6f\x79\x57\x4f\x47','\x68\x48\x34\x55\x57\x37\x50\x72\x64\x47','\x79\x38\x6f\x4d\x57\x35\x78\x63\x4a\x38\x6f\x2b\x72\x71','\x57\x51\x79\x74\x57\x51\x78\x63\x51\x53\x6b\x4f\x67\x33\x6e\x39','\x70\x65\x4f\x67\x57\x37\x2f\x63\x4b\x61','\x73\x32\x33\x63\x4f\x66\x4f\x2b\x57\x51\x4e\x63\x49\x6d\x6f\x6b','\x57\x4f\x38\x4d\x57\x52\x6c\x64\x47\x43\x6b\x33','\x67\x49\x65\x51\x57\x37\x72\x59','\x66\x57\x46\x64\x52\x63\x79','\x68\x59\x57\x50\x57\x36\x39\x36\x63\x4e\x6c\x63\x47\x71','\x6a\x53\x6f\x30\x57\x37\x70\x64\x56\x38\x6b\x59\x6c\x61','\x57\x37\x6c\x64\x4a\x75\x78\x63\x50\x76\x65','\x73\x38\x6b\x36\x41\x38\x6b\x62\x42\x72\x46\x63\x4a\x4d\x71','\x6b\x53\x6f\x4f\x7a\x43\x6b\x6a\x57\x36\x72\x5a\x78\x71','\x57\x37\x69\x4a\x57\x4f\x6d\x34\x57\x52\x47','\x57\x37\x42\x63\x48\x5a\x53\x6e\x57\x36\x38','\x57\x36\x65\x2f\x57\x52\x6d\x58\x57\x52\x61','\x74\x38\x6f\x7a\x57\x4f\x72\x6b\x64\x38\x6f\x4b\x57\x34\x71','\x78\x64\x5a\x64\x53\x6d\x6b\x51\x6d\x61','\x57\x34\x4b\x73\x57\x4f\x79\x73\x57\x52\x4b','\x46\x63\x78\x64\x4e\x6d\x6b\x58\x65\x61','\x57\x51\x76\x64\x77\x59\x68\x63\x4d\x4e\x47','\x6f\x31\x50\x36\x41\x43\x6f\x34\x7a\x53\x6b\x39\x72\x47','\x57\x37\x52\x64\x52\x30\x62\x43\x57\x51\x66\x6b\x6e\x71','\x6b\x33\x38\x6e\x57\x35\x37\x63\x48\x53\x6b\x6e\x57\x36\x37\x63\x4b\x57','\x62\x43\x6f\x45\x57\x35\x46\x64\x47\x43\x6b\x39','\x74\x6d\x6f\x77\x57\x34\x6a\x77\x79\x47','\x57\x34\x52\x63\x49\x4a\x6c\x64\x4d\x78\x4a\x63\x50\x6d\x6b\x50\x67\x61','\x63\x48\x33\x64\x55\x59\x64\x63\x47\x73\x71\x48','\x57\x34\x52\x63\x56\x78\x69\x33\x57\x52\x58\x57\x57\x51\x43','\x57\x36\x31\x30\x57\x34\x2f\x64\x51\x38\x6b\x34\x57\x50\x6d\x35\x71\x61','\x57\x52\x62\x61\x77\x57\x53\x6b\x43\x61','\x62\x6d\x6f\x36\x57\x37\x39\x73','\x62\x6d\x6f\x74\x57\x35\x34\x62\x57\x4f\x30','\x6b\x43\x6f\x35\x75\x43\x6f\x45\x64\x6d\x6b\x64\x57\x52\x56\x64\x4e\x57','\x44\x31\x70\x63\x4a\x31\x66\x6a\x57\x51\x33\x64\x56\x47','\x57\x37\x68\x63\x4a\x67\x5a\x63\x47\x30\x69\x49\x79\x57','\x57\x50\x47\x55\x57\x50\x78\x64\x4c\x43\x6b\x6a\x57\x52\x70\x63\x4e\x71','\x75\x77\x78\x63\x51\x4b\x48\x42\x57\x51\x64\x63\x4a\x38\x6f\x6e','\x57\x52\x62\x31\x71\x74\x74\x63\x52\x68\x39\x64\x57\x35\x71','\x6c\x78\x44\x57\x78\x38\x6f\x73','\x61\x73\x4f\x39\x57\x34\x35\x50','\x57\x52\x66\x6e\x57\x4f\x50\x7a','\x68\x61\x42\x64\x4b\x61\x37\x63\x4a\x57','\x6c\x4d\x61\x79\x57\x36\x33\x63\x50\x57','\x68\x6d\x6f\x67\x66\x6d\x6b\x57\x6e\x74\x4c\x4a\x44\x71','\x57\x37\x54\x41\x63\x53\x6f\x6e','\x57\x36\x4a\x64\x51\x4b\x35\x67\x57\x52\x4b','\x6a\x38\x6f\x48\x45\x43\x6f\x33\x57\x4f\x4f','\x42\x53\x6b\x48\x70\x53\x6f\x74\x57\x50\x61\x55\x62\x73\x69','\x57\x37\x4a\x63\x4a\x5a\x57\x72\x57\x51\x2f\x63\x4a\x43\x6f\x35\x7a\x61','\x57\x37\x58\x36\x57\x35\x42\x64\x49\x38\x6b\x4f\x57\x50\x6d\x56\x75\x71','\x6f\x6d\x6f\x55\x76\x43\x6f\x42\x6b\x38\x6b\x46\x57\x52\x68\x64\x4f\x57','\x61\x63\x71\x39\x57\x37\x76\x65\x62\x32\x69','\x70\x38\x6f\x63\x42\x38\x6b\x55\x57\x37\x34','\x67\x59\x47\x34\x57\x35\x50\x47','\x6a\x43\x6b\x66\x71\x38\x6f\x77\x6e\x6d\x6b\x2b\x41\x61','\x6a\x57\x6a\x31\x57\x35\x66\x4e','\x6a\x43\x6b\x49\x57\x52\x2f\x64\x47\x6d\x6f\x32','\x6c\x38\x6f\x43\x57\x35\x34\x5a\x57\x4f\x44\x49\x67\x61','\x57\x35\x64\x63\x4b\x68\x6c\x63\x4a\x61','\x6e\x43\x6f\x68\x57\x35\x50\x57\x57\x4f\x76\x30\x62\x43\x6f\x67','\x6a\x53\x6b\x72\x72\x6d\x6f\x62\x62\x6d\x6b\x4e\x46\x47','\x6b\x5a\x53\x4d\x6a\x43\x6b\x41\x43\x6d\x6f\x36\x72\x47','\x57\x35\x42\x63\x48\x49\x46\x64\x48\x47','\x68\x33\x54\x6e\x72\x43\x6f\x55','\x67\x53\x6f\x4a\x78\x43\x6f\x79\x57\x4f\x6a\x41\x57\x4f\x53','\x57\x37\x5a\x64\x4d\x66\x47','\x57\x37\x42\x63\x4a\x5a\x53\x72\x57\x51\x64\x63\x4d\x71','\x73\x49\x4e\x64\x55\x53\x6b\x32\x69\x71','\x6d\x6d\x6f\x69\x57\x34\x34\x4b\x57\x52\x31\x4c\x67\x61','\x57\x36\x4e\x64\x4b\x4b\x52\x64\x50\x53\x6b\x53\x57\x37\x4a\x63\x56\x53\x6b\x4c','\x57\x34\x42\x63\x47\x71\x70\x64\x48\x32\x56\x63\x51\x38\x6b\x58','\x57\x4f\x57\x74\x57\x51\x42\x63\x4f\x6d\x6b\x74\x62\x47','\x57\x50\x66\x64\x57\x51\x6a\x30\x57\x4f\x30','\x57\x51\x48\x78\x78\x61\x65','\x6d\x38\x6f\x50\x57\x37\x37\x64\x56\x38\x6b\x49\x6c\x71','\x6c\x78\x75\x36\x57\x35\x2f\x63\x4c\x38\x6b\x62\x57\x51\x64\x63\x48\x47','\x63\x61\x5a\x64\x47\x49\x42\x63\x48\x47','\x57\x52\x5a\x63\x51\x68\x34','\x68\x43\x6b\x46\x78\x6d\x6f\x5a\x61\x47','\x57\x4f\x54\x74\x57\x35\x37\x64\x4d\x59\x53','\x57\x36\x4e\x63\x48\x59\x47\x41\x57\x51\x64\x63\x47\x61','\x65\x59\x74\x64\x4b\x58\x4e\x63\x4a\x47','\x61\x73\x47\x35\x57\x36\x35\x78\x67\x68\x4a\x63\x47\x57','\x57\x36\x70\x63\x4b\x6d\x6f\x41\x57\x36\x38\x4d','\x6c\x63\x64\x63\x51\x53\x6f\x45\x46\x4b\x44\x51','\x57\x34\x6e\x6a\x57\x35\x42\x64\x53\x6d\x6b\x7a','\x57\x50\x4a\x63\x52\x32\x53\x56\x57\x52\x75\x5a','\x6f\x65\x6e\x4e\x7a\x53\x6f\x4f\x74\x43\x6b\x4e\x78\x71','\x57\x37\x2f\x63\x47\x47\x30\x57\x57\x34\x38','\x57\x50\x2f\x63\x56\x38\x6f\x6a\x57\x36\x46\x64\x54\x47','\x6a\x67\x4e\x63\x4f\x74\x6e\x7a','\x57\x51\x4b\x6e\x57\x52\x4b\x62\x64\x47','\x57\x51\x33\x63\x47\x32\x2f\x63\x47\x65\x30','\x61\x43\x6f\x43\x57\x36\x71\x68\x70\x53\x6f\x36\x57\x50\x61','\x65\x6d\x6b\x4d\x57\x50\x52\x64\x50\x71','\x67\x6d\x6f\x51\x57\x36\x6a\x44\x62\x43\x6f\x45','\x57\x34\x68\x63\x48\x67\x52\x63\x52\x4d\x69','\x6a\x75\x4e\x63\x49\x57\x31\x59\x78\x53\x6f\x58','\x69\x38\x6f\x59\x57\x37\x68\x64\x52\x43\x6b\x2b\x6f\x4a\x62\x34','\x57\x4f\x46\x63\x56\x43\x6f\x69\x57\x35\x2f\x64\x47\x47','\x57\x36\x53\x49\x57\x51\x53\x4c\x57\x52\x4a\x64\x54\x47\x34','\x57\x50\x64\x63\x54\x4d\x30\x31\x57\x52\x47\x36','\x70\x31\x6c\x63\x4c\x61\x62\x59\x72\x6d\x6f\x36','\x57\x51\x65\x31\x57\x52\x74\x64\x53\x6d\x6b\x53','\x65\x6d\x6f\x65\x79\x6d\x6f\x50\x6e\x47','\x61\x38\x6f\x38\x57\x36\x2f\x64\x55\x6d\x6b\x49\x6d\x4a\x61','\x6c\x63\x72\x5a\x57\x34\x62\x45\x7a\x4b\x46\x64\x52\x61','\x75\x68\x2f\x63\x51\x75\x47\x2b\x57\x51\x5a\x63\x48\x71','\x6f\x67\x50\x53\x41\x38\x6f\x4b\x73\x47','\x6d\x53\x6b\x6d\x57\x52\x5a\x64\x47\x53\x6f\x78\x6a\x61','\x63\x4e\x64\x63\x51\x73\x7a\x76','\x57\x50\x62\x45\x45\x74\x70\x63\x51\x47','\x57\x35\x52\x64\x4b\x32\x35\x68\x57\x50\x4b','\x62\x59\x61\x37\x6a\x61','\x57\x50\x47\x4c\x57\x4f\x5a\x64\x4c\x57','\x57\x36\x37\x64\x52\x4c\x35\x63\x57\x50\x61','\x57\x4f\x6d\x35\x57\x4f\x52\x64\x4d\x43\x6b\x54','\x67\x6d\x6f\x43\x57\x34\x57\x32\x57\x50\x43','\x69\x59\x46\x64\x4a\x62\x78\x63\x51\x47','\x57\x36\x56\x64\x54\x77\x37\x64\x48\x43\x6b\x42','\x67\x68\x75\x5a\x57\x50\x33\x64\x50\x61','\x62\x6d\x6b\x55\x57\x52\x70\x64\x50\x43\x6f\x36','\x57\x36\x78\x64\x4f\x30\x4c\x76\x57\x52\x72\x6f','\x57\x36\x38\x4b\x57\x50\x34\x32\x57\x52\x37\x64\x56\x48\x4a\x63\x4a\x61','\x77\x4e\x35\x48','\x67\x6d\x6f\x52\x71\x38\x6f\x6a\x57\x51\x72\x53\x57\x4f\x5a\x63\x56\x57','\x57\x37\x78\x63\x56\x77\x38\x30\x57\x51\x39\x51\x57\x4f\x78\x64\x49\x57','\x57\x52\x4b\x76\x64\x43\x6f\x6e\x57\x34\x64\x63\x4f\x38\x6b\x75\x74\x47','\x57\x36\x74\x64\x49\x65\x6c\x63\x4a\x78\x5a\x64\x4c\x6d\x6b\x67','\x66\x43\x6f\x72\x46\x53\x6b\x56\x57\x36\x4f','\x57\x52\x39\x6b\x77\x57\x4f\x78\x46\x66\x79\x49','\x70\x73\x58\x36\x57\x34\x61','\x57\x36\x37\x63\x56\x6d\x6f\x56\x57\x37\x6d\x58\x57\x34\x33\x63\x4b\x71','\x57\x34\x78\x63\x4f\x63\x71\x68\x57\x36\x69','\x57\x37\x37\x63\x52\x43\x6f\x72\x57\x36\x69\x47\x57\x35\x4b','\x57\x35\x33\x64\x54\x33\x4e\x63\x4e\x4e\x75','\x68\x43\x6f\x38\x57\x34\x31\x69\x61\x38\x6f\x78\x6a\x47','\x62\x43\x6f\x2f\x57\x36\x47\x56\x61\x61','\x72\x4a\x5a\x64\x51\x38\x6b\x58\x69\x38\x6b\x4d','\x65\x53\x6f\x5a\x72\x38\x6f\x45\x57\x52\x6a\x45\x57\x4f\x4f','\x57\x37\x5a\x64\x4c\x65\x2f\x63\x49\x47','\x57\x52\x68\x63\x52\x38\x6f\x33\x57\x35\x74\x64\x48\x6d\x6b\x32\x57\x35\x6a\x74','\x61\x38\x6f\x79\x57\x36\x42\x64\x4a\x43\x6b\x7a','\x6d\x38\x6b\x45\x76\x61','\x6d\x53\x6b\x6d\x57\x51\x4a\x64\x47\x53\x6f\x44\x6c\x47','\x57\x51\x4c\x6c\x77\x71\x75\x71\x43\x32\x61\x31','\x57\x51\x70\x63\x52\x67\x38\x32\x75\x78\x43','\x69\x33\x43\x37\x57\x34\x74\x63\x4b\x43\x6b\x37\x57\x36\x2f\x63\x47\x71','\x66\x77\x4c\x5a\x57\x52\x56\x63\x4a\x53\x6f\x57\x57\x4f\x47\x71','\x65\x68\x62\x50\x57\x50\x56\x63\x4d\x38\x6f\x48\x57\x4f\x6d\x61','\x57\x52\x39\x52\x57\x36\x37\x64\x54\x48\x47\x6f\x74\x43\x6b\x67','\x57\x34\x4a\x63\x52\x78\x65\x5a','\x70\x67\x66\x63\x57\x52\x46\x63\x53\x57','\x62\x59\x71\x47\x70\x6d\x6b\x76\x72\x38\x6f\x36\x74\x57','\x57\x51\x48\x57\x74\x57\x34\x56','\x57\x51\x70\x63\x56\x53\x6f\x6b','\x57\x36\x54\x65\x57\x34\x78\x64\x55\x43\x6b\x4b\x57\x4f\x6d','\x68\x38\x6f\x46\x72\x43\x6f\x33\x57\x50\x53','\x65\x5a\x75\x47\x69\x6d\x6b\x51\x79\x43\x6f\x58\x71\x71','\x70\x6d\x6f\x38\x79\x6d\x6f\x4e\x57\x50\x79','\x62\x53\x6f\x55\x57\x37\x54\x38\x65\x6d\x6f\x46\x6d\x57','\x57\x37\x37\x64\x54\x65\x35\x67\x57\x51\x76\x52\x41\x53\x6b\x49','\x68\x71\x78\x63\x56\x53\x6f\x2b\x41\x57','\x6e\x4d\x6d\x46\x57\x35\x4a\x63\x48\x53\x6b\x66\x57\x37\x4b','\x57\x35\x5a\x63\x48\x4e\x37\x63\x4e\x65\x79\x5a\x43\x66\x47','\x6c\x43\x6f\x2f\x57\x37\x4c\x79\x69\x57','\x57\x37\x70\x63\x47\x73\x65','\x57\x36\x2f\x63\x4a\x68\x6c\x63\x49\x66\x43\x50','\x57\x50\x44\x31\x73\x72\x78\x63\x4b\x47','\x6e\x43\x6f\x31\x6c\x6d\x6b\x70\x70\x57','\x6a\x43\x6b\x76\x71\x43\x6f\x45\x67\x61','\x57\x37\x5a\x63\x50\x72\x65\x4c\x57\x34\x70\x64\x50\x67\x47\x65','\x6b\x74\x74\x63\x50\x43\x6f\x69\x46\x47','\x57\x34\x4a\x63\x4c\x49\x65\x53\x57\x52\x65','\x57\x36\x37\x63\x4f\x57\x33\x64\x4b\x4d\x6d','\x63\x6d\x6f\x65\x57\x35\x53\x2f\x57\x51\x65','\x57\x35\x33\x63\x4c\x59\x70\x64\x4b\x76\x2f\x63\x4f\x38\x6b\x4b\x63\x71','\x71\x43\x6f\x58\x57\x37\x30','\x71\x68\x4e\x63\x56\x4b\x34\x65\x57\x51\x56\x63\x4c\x43\x6f\x5a','\x76\x30\x70\x63\x52\x4d\x75\x55','\x68\x32\x76\x2f\x73\x43\x6f\x54','\x6f\x43\x6f\x49\x74\x53\x6f\x41','\x57\x36\x78\x64\x4d\x66\x68\x63\x47\x4e\x4a\x64\x48\x6d\x6b\x71','\x70\x31\x69\x50\x57\x4f\x78\x64\x53\x71','\x6f\x6d\x6b\x76\x75\x43\x6f\x71\x6b\x43\x6f\x50','\x76\x76\x78\x63\x55\x59\x2f\x63\x52\x47','\x57\x34\x56\x63\x52\x67\x6d\x56\x57\x51\x48\x47','\x57\x51\x54\x55\x76\x47\x65\x34','\x61\x73\x44\x5a\x57\x34\x62\x61\x45\x75\x5a\x64\x52\x71','\x57\x34\x5a\x63\x49\x47\x33\x64\x4a\x78\x38','\x57\x36\x2f\x63\x56\x6d\x6f\x64\x57\x36\x69','\x6d\x38\x6b\x62\x57\x51\x42\x64\x48\x6d\x6f\x45\x6a\x6d\x6b\x61\x57\x52\x38','\x69\x6d\x6f\x4f\x7a\x43\x6b\x38\x57\x36\x65','\x6c\x64\x33\x63\x50\x53\x6f\x69\x44\x31\x62\x6c\x57\x37\x47','\x70\x65\x76\x47\x74\x38\x6f\x52\x78\x6d\x6b\x47\x72\x47','\x63\x68\x50\x30\x57\x50\x64\x63\x4e\x53\x6f\x38\x57\x4f\x69\x62','\x6a\x53\x6b\x69\x57\x51\x64\x64\x4e\x43\x6f\x78\x6a\x61','\x57\x51\x72\x39\x78\x61\x68\x63\x51\x71','\x6d\x49\x64\x63\x56\x43\x6f\x43\x42\x31\x31\x32\x57\x37\x6d','\x78\x64\x42\x64\x50\x43\x6b\x39','\x78\x77\x6e\x31\x57\x37\x48\x6b\x62\x78\x46\x63\x4e\x61','\x57\x4f\x37\x63\x52\x32\x43\x52\x77\x78\x57\x4d\x45\x61','\x65\x76\x48\x73\x57\x52\x5a\x63\x52\x71','\x65\x38\x6f\x63\x6f\x6d\x6b\x4a\x64\x59\x76\x5a\x72\x61','\x69\x38\x6b\x67\x75\x47','\x6a\x53\x6f\x4b\x77\x38\x6f\x70\x6a\x38\x6b\x63\x57\x52\x52\x64\x54\x61','\x57\x34\x56\x63\x52\x77\x65\x34\x57\x52\x48\x47\x57\x52\x65','\x57\x37\x35\x55\x57\x35\x6c\x64\x53\x61','\x57\x37\x62\x66\x67\x38\x6f\x6a\x57\x35\x4a\x63\x4f\x38\x6b\x74\x67\x47','\x65\x59\x4f\x39','\x65\x6d\x6f\x4b\x57\x35\x4e\x64\x53\x43\x6b\x47','\x67\x33\x38\x39\x57\x51\x74\x64\x4b\x57','\x61\x43\x6f\x4a\x43\x6d\x6f\x66\x6d\x71','\x57\x34\x64\x63\x4a\x33\x2f\x63\x51\x4c\x4f','\x66\x4a\x38\x4f\x57\x36\x48\x6d\x64\x65\x37\x63\x4d\x57','\x42\x6d\x6b\x6a\x71\x43\x6b\x6a\x7a\x71','\x62\x4d\x6d\x57\x57\x4f\x2f\x64\x53\x71','\x73\x6d\x6f\x37\x57\x52\x6a\x46\x6a\x47','\x57\x36\x42\x63\x4d\x32\x37\x63\x4e\x65\x4f\x4d\x70\x61','\x65\x32\x66\x2b\x57\x4f\x56\x63\x47\x47','\x65\x49\x79\x4c\x6a\x6d\x6b\x43\x41\x47','\x69\x53\x6f\x44\x46\x53\x6b\x2f\x57\x37\x6d','\x64\x58\x46\x63\x47\x43\x6f\x7a\x74\x61','\x45\x4a\x46\x64\x52\x6d\x6b\x45\x6a\x71','\x75\x68\x4a\x63\x52\x75\x34\x76\x57\x52\x42\x63\x54\x53\x6f\x66','\x71\x58\x68\x64\x55\x43\x6b\x50\x66\x61','\x57\x34\x6c\x63\x55\x61\x65','\x57\x34\x56\x63\x55\x32\x30\x50\x57\x52\x47','\x6c\x6d\x6f\x51\x78\x43\x6f\x74','\x57\x50\x54\x6a\x57\x35\x4e\x64\x52\x62\x75','\x7a\x6d\x6f\x52\x57\x34\x70\x63\x51\x6d\x6f\x43','\x57\x37\x70\x63\x4e\x71\x34\x67\x57\x52\x70\x63\x4a\x43\x6f\x54','\x6f\x6d\x6f\x55\x76\x43\x6f\x6d\x66\x38\x6b\x69','\x43\x4d\x33\x63\x47\x64\x37\x63\x56\x62\x47\x45\x63\x57','\x70\x74\x66\x48\x57\x35\x44\x67\x46\x68\x37\x64\x4f\x61','\x62\x38\x6f\x4d\x57\x37\x7a\x46','\x57\x4f\x6d\x50\x57\x4f\x4a\x64\x4b\x43\x6b\x62\x57\x52\x56\x63\x49\x47','\x6b\x6d\x6f\x61\x57\x35\x69\x2b','\x61\x74\x34\x5a\x57\x36\x48\x72\x64\x4e\x75','\x57\x52\x54\x61\x71\x73\x71\x6c\x45\x4e\x30\x4a','\x61\x38\x6f\x70\x57\x35\x71\x2b\x57\x4f\x76\x30\x67\x43\x6f\x74','\x57\x36\x48\x44\x57\x37\x46\x64\x4c\x53\x6b\x33','\x65\x38\x6b\x71\x57\x4f\x74\x64\x51\x38\x6f\x79','\x75\x53\x6f\x63\x57\x4f\x4c\x30\x63\x61','\x57\x36\x43\x45\x57\x35\x75\x6f\x57\x35\x50\x7a\x42\x61\x57\x78\x57\x36\x56\x64\x50\x43\x6b\x6d\x57\x37\x6d','\x67\x6d\x6f\x55\x57\x37\x39\x6f\x6c\x53\x6f\x65\x6b\x4d\x61','\x70\x53\x6f\x33\x66\x53\x6b\x49\x61\x61','\x57\x35\x4e\x63\x54\x73\x5a\x64\x4b\x68\x75','\x57\x37\x5a\x64\x4b\x4c\x30','\x57\x34\x33\x63\x4f\x63\x53\x71\x57\x37\x4b','\x57\x51\x39\x39\x76\x57','\x68\x74\x74\x63\x47\x53\x6f\x79\x74\x47','\x57\x37\x4e\x63\x47\x73\x65\x68\x57\x51\x74\x63\x4a\x38\x6f\x48\x44\x71','\x57\x51\x4f\x6d\x57\x4f\x6d\x73\x66\x38\x6f\x75\x57\x36\x42\x63\x54\x57','\x6a\x43\x6b\x7a\x57\x51\x42\x64\x4b\x53\x6f\x41\x68\x38\x6b\x48\x57\x51\x34','\x70\x61\x34\x44\x69\x53\x6b\x33','\x77\x53\x6b\x5a\x7a\x38\x6b\x78\x7a\x4a\x64\x63\x51\x67\x38','\x57\x52\x4c\x44\x72\x71\x4b\x44\x42\x66\x79\x4f','\x77\x53\x6b\x54\x42\x43\x6b\x66\x44\x57\x42\x63\x54\x76\x34','\x57\x36\x37\x63\x55\x62\x38\x4c','\x6b\x6d\x6f\x4d\x79\x71','\x79\x38\x6f\x4e\x57\x35\x46\x63\x4d\x6d\x6f\x55\x72\x43\x6f\x65','\x69\x43\x6f\x6f\x7a\x6d\x6f\x71\x6b\x57','\x6a\x6d\x6f\x56\x57\x37\x42\x64\x52\x43\x6b\x4a','\x57\x52\x34\x73\x57\x4f\x43\x2b\x64\x38\x6f\x41\x57\x35\x56\x63\x55\x47','\x65\x66\x62\x4c\x7a\x43\x6f\x56\x71\x6d\x6b\x6a\x71\x61','\x57\x36\x64\x63\x53\x6d\x6f\x45','\x57\x34\x52\x63\x4d\x32\x75\x72\x57\x52\x75','\x6d\x6d\x6f\x79\x57\x34\x6a\x47\x63\x61','\x61\x43\x6f\x37\x57\x34\x6e\x6d\x68\x47','\x57\x35\x4c\x49\x57\x37\x74\x64\x53\x43\x6b\x6c','\x6f\x43\x6b\x66\x76\x6d\x6f\x77\x70\x53\x6b\x47\x46\x47','\x77\x4d\x61\x48\x6d\x43\x6b\x6b\x43\x61','\x7a\x68\x52\x63\x4d\x49\x47','\x6c\x73\x42\x63\x4f\x6d\x6f\x6f\x42\x31\x66\x39','\x61\x65\x37\x63\x52\x61\x6a\x6c','\x65\x43\x6f\x74\x65\x38\x6b\x48\x62\x5a\x54\x49','\x67\x72\x62\x67\x57\x35\x66\x39','\x68\x59\x52\x64\x4c\x4a\x46\x63\x49\x61','\x67\x33\x64\x63\x49\x4a\x6a\x6e','\x57\x36\x62\x34\x57\x34\x74\x64\x50\x61','\x57\x37\x2f\x63\x56\x6d\x6f\x72\x57\x37\x69\x74\x57\x34\x70\x63\x4d\x6d\x6f\x70','\x57\x36\x37\x63\x54\x53\x6f\x45\x57\x36\x75\x57\x57\x34\x4e\x63\x47\x43\x6f\x45','\x57\x34\x76\x72\x70\x43\x6f\x65\x57\x35\x71','\x68\x6d\x6f\x64\x44\x43\x6b\x55\x57\x37\x71','\x77\x32\x78\x63\x4c\x4e\x71\x6d','\x69\x53\x6f\x51\x78\x43\x6f\x72\x6a\x38\x6b\x70\x57\x52\x53','\x63\x5a\x7a\x58\x57\x34\x50\x34','\x42\x32\x4e\x63\x52\x32\x4f\x6c','\x6c\x61\x31\x52\x57\x35\x76\x63','\x78\x78\x2f\x63\x4f\x78\x76\x6e','\x57\x51\x78\x63\x55\x38\x6f\x50\x57\x35\x2f\x64\x52\x38\x6b\x53\x57\x34\x4c\x43','\x57\x4f\x39\x6f\x57\x36\x70\x64\x4f\x4a\x79','\x57\x36\x4a\x64\x4b\x4c\x30','\x61\x6d\x6f\x76\x64\x53\x6b\x52\x67\x61','\x69\x49\x72\x5a\x57\x35\x66\x54\x42\x4b\x52\x64\x56\x71','\x57\x52\x6a\x5a\x74\x63\x4a\x63\x52\x67\x7a\x64\x57\x35\x34','\x75\x32\x70\x63\x55\x57','\x61\x68\x7a\x69\x57\x4f\x52\x63\x49\x53\x6f\x38\x57\x4f\x47\x64','\x57\x35\x42\x64\x4b\x4b\x74\x64\x50\x53\x6b\x53\x57\x36\x78\x63\x54\x53\x6b\x49','\x69\x53\x6f\x47\x77\x53\x6f\x74\x57\x52\x50\x77\x57\x50\x33\x63\x54\x47','\x42\x6d\x6f\x58\x57\x35\x56\x63\x4c\x43\x6f\x54\x78\x38\x6f\x74\x57\x51\x43','\x57\x52\x4b\x74\x57\x50\x38\x32\x66\x43\x6f\x79\x57\x36\x46\x63\x52\x71','\x66\x4a\x38\x4f\x57\x37\x72\x78\x6e\x68\x6c\x63\x4d\x71','\x76\x77\x42\x63\x50\x61\x42\x63\x4f\x57','\x66\x43\x6b\x46\x76\x43\x6f\x67\x70\x53\x6b\x48\x45\x30\x79','\x42\x49\x78\x64\x4a\x6d\x6b\x63\x68\x47','\x57\x51\x74\x63\x52\x4b\x38\x69\x77\x57','\x57\x52\x4b\x73\x57\x4f\x6d\x57\x6d\x47','\x6c\x6d\x6b\x72\x78\x53\x6f\x7a\x70\x53\x6b\x33','\x57\x51\x70\x64\x54\x53\x6f\x72\x57\x36\x75\x4d\x57\x34\x2f\x63\x47\x6d\x6f\x35','\x57\x35\x58\x6e\x57\x36\x5a\x64\x56\x38\x6b\x55','\x68\x6d\x6f\x56\x78\x57','\x6c\x4c\x61\x56\x57\x51\x4b','\x6c\x63\x68\x63\x55\x38\x6f\x75\x44\x76\x6e\x57\x57\x37\x53','\x57\x37\x62\x79\x65\x43\x6f\x41\x57\x35\x78\x63\x47\x43\x6b\x66\x77\x57','\x57\x36\x53\x6c\x57\x4f\x69\x4a\x63\x43\x6b\x72','\x57\x4f\x62\x77\x57\x35\x38','\x57\x36\x66\x43\x57\x37\x78\x64\x56\x43\x6b\x55','\x57\x51\x58\x78\x57\x36\x64\x64\x48\x5a\x47','\x66\x38\x6b\x46\x57\x34\x4f\x4a\x78\x43\x6b\x35\x57\x34\x2f\x64\x4e\x57\x38\x5a\x73\x53\x6b\x61','\x61\x6d\x6f\x66\x72\x38\x6f\x52\x70\x47','\x57\x37\x52\x63\x56\x77\x4e\x63\x4d\x75\x30','\x42\x53\x6f\x76\x57\x35\x31\x4f\x46\x57','\x57\x36\x61\x30\x57\x50\x4b\x4a','\x64\x43\x6f\x30\x77\x53\x6f\x73\x57\x51\x38','\x57\x36\x6e\x59\x57\x34\x38','\x6d\x38\x6f\x6b\x57\x34\x6a\x2f\x6c\x53\x6f\x30\x68\x4b\x61','\x63\x6d\x6b\x7a\x78\x6d\x6f\x46\x68\x71','\x57\x51\x69\x70\x57\x51\x4f\x4c\x65\x38\x6f\x71\x57\x37\x65','\x64\x73\x72\x57\x57\x35\x7a\x68\x79\x30\x57','\x66\x38\x6f\x55\x57\x37\x48\x46\x66\x53\x6f\x7a\x6c\x78\x43','\x74\x71\x5a\x64\x54\x38\x6b\x4f\x6e\x61','\x79\x38\x6f\x4b\x57\x52\x4c\x73\x68\x47','\x62\x59\x69\x55\x57\x37\x50\x6a','\x74\x38\x6b\x36\x7a\x61','\x6a\x38\x6f\x51\x79\x53\x6b\x75\x57\x35\x72\x50\x7a\x32\x38','\x65\x38\x6b\x54\x57\x52\x31\x45\x75\x62\x7a\x4a\x57\x50\x43\x59','\x57\x36\x54\x38\x57\x34\x37\x64\x51\x53\x6b\x4b','\x57\x36\x74\x64\x49\x75\x64\x63\x4e\x67\x33\x64\x4c\x6d\x6b\x49\x62\x57','\x57\x50\x47\x74\x57\x52\x57','\x44\x4d\x52\x63\x4d\x4a\x71','\x68\x63\x34\x36\x61\x6d\x6b\x77\x41\x38\x6f\x32\x76\x47','\x57\x51\x44\x4b\x72\x4a\x70\x63\x48\x32\x44\x31\x57\x35\x71','\x64\x73\x56\x64\x50\x53\x6b\x4f\x6d\x6d\x6f\x48','\x67\x68\x58\x31\x57\x50\x4e\x63\x4a\x6d\x6f\x39','\x6d\x38\x6b\x61\x57\x51\x37\x64\x4e\x38\x6f\x74\x6c\x6d\x6b\x6e\x57\x52\x65','\x66\x43\x6f\x63\x77\x6d\x6f\x2f\x57\x4f\x34','\x6d\x4b\x62\x38\x41\x43\x6f\x59\x76\x6d\x6b\x52','\x69\x4c\x47\x6d\x57\x51\x2f\x64\x47\x47','\x70\x63\x61\x72\x57\x35\x48\x54','\x57\x50\x47\x76\x57\x51\x46\x63\x54\x38\x6b\x2f','\x6b\x73\x62\x55\x57\x34\x61','\x57\x51\x6e\x6f\x57\x50\x31\x52\x57\x51\x57','\x63\x57\x64\x63\x51\x6d\x6f\x58\x79\x47','\x67\x38\x6f\x71\x57\x36\x75\x6d\x6d\x53\x6f\x35','\x57\x50\x38\x50\x57\x50\x2f\x64\x4b\x43\x6b\x6c\x57\x51\x78\x63\x4e\x61','\x76\x32\x4e\x63\x4f\x75\x57\x76\x57\x52\x79','\x73\x38\x6b\x36\x41\x38\x6b\x6c\x43\x71\x46\x63\x47\x4d\x47','\x65\x78\x35\x30\x57\x4f\x5a\x63\x47\x71','\x69\x53\x6b\x72\x78\x53\x6f\x42\x62\x6d\x6b\x36\x41\x71','\x61\x63\x34\x37\x57\x37\x76\x36\x62\x4d\x69','\x57\x35\x46\x63\x48\x32\x43\x50\x57\x51\x39\x38\x57\x52\x61','\x68\x4a\x75\x53\x57\x34\x66\x57','\x70\x4d\x61\x55\x57\x34\x42\x63\x4e\x43\x6b\x68\x57\x36\x68\x63\x47\x61','\x67\x53\x6f\x67\x57\x37\x34\x6f\x6a\x57','\x77\x4a\x6c\x64\x47\x6d\x6b\x53\x6e\x6d\x6b\x58\x43\x53\x6b\x4b','\x69\x6d\x6f\x44\x57\x34\x4c\x37\x6f\x47','\x70\x76\x79\x52\x57\x50\x52\x64\x54\x43\x6f\x47\x57\x34\x71','\x70\x33\x6e\x70\x57\x4f\x4a\x63\x52\x71','\x57\x37\x58\x65\x57\x34\x64\x64\x51\x6d\x6b\x54\x57\x50\x75\x54\x72\x47','\x6a\x38\x6f\x48\x42\x38\x6b\x51\x57\x35\x38','\x64\x73\x6c\x64\x4f\x31\x38\x6f\x57\x51\x56\x63\x48\x38\x6f\x66','\x57\x51\x4c\x35\x76\x47','\x57\x34\x42\x63\x55\x38\x6f\x4b\x57\x37\x6d\x34','\x77\x6d\x6b\x5a\x79\x53\x6b\x59\x41\x57','\x68\x53\x6f\x4c\x57\x37\x65\x36\x57\x4f\x47','\x57\x52\x31\x77\x46\x48\x4b\x74','\x57\x36\x33\x63\x4f\x4e\x37\x63\x4f\x4b\x4b','\x57\x52\x46\x63\x51\x67\x43\x50','\x57\x35\x4c\x71\x57\x36\x64\x64\x52\x53\x6b\x51','\x57\x37\x56\x64\x4f\x31\x6a\x62\x57\x51\x76\x63\x75\x6d\x6b\x55','\x74\x38\x6b\x7a\x7a\x38\x6b\x55\x7a\x47','\x6f\x6d\x6f\x72\x77\x43\x6f\x74\x57\x52\x57','\x6a\x38\x6b\x6d\x57\x52\x33\x64\x55\x43\x6f\x68\x69\x53\x6b\x43\x57\x52\x75','\x6a\x4d\x58\x75\x57\x51\x4a\x63\x52\x71','\x57\x34\x6c\x63\x55\x63\x68\x64\x52\x78\x6d','\x75\x53\x6f\x37\x57\x37\x31\x37\x78\x71','\x57\x37\x39\x33\x63\x6d\x6f\x52\x57\x36\x38','\x41\x53\x6f\x66\x57\x34\x39\x2f\x79\x47','\x77\x53\x6b\x31\x42\x43\x6b\x70\x76\x61','\x6c\x38\x6f\x36\x76\x38\x6b\x70\x57\x34\x4c\x4d\x76\x57','\x57\x51\x4f\x69\x57\x50\x38\x59\x64\x6d\x6f\x62\x57\x37\x57','\x6e\x47\x71\x5a\x61\x38\x6b\x6e','\x57\x36\x37\x63\x50\x71\x71\x30\x57\x37\x33\x64\x52\x78\x69\x75','\x66\x53\x6f\x64\x64\x38\x6b\x6c\x61\x61','\x6c\x6d\x6f\x43\x57\x34\x34\x34','\x7a\x78\x37\x63\x4e\x74\x4e\x63\x52\x47\x6d\x66\x68\x71','\x57\x36\x34\x38\x57\x51\x43\x4d\x57\x4f\x61','\x57\x4f\x69\x66\x57\x4f\x4e\x63\x54\x38\x6b\x4f\x61\x30\x30','\x57\x51\x79\x44\x57\x50\x53','\x57\x51\x78\x63\x55\x38\x6f\x33\x57\x35\x70\x64\x4e\x38\x6b\x59\x57\x36\x6a\x7a','\x61\x38\x6f\x6f\x68\x43\x6b\x48','\x57\x36\x6c\x63\x4d\x78\x74\x63\x51\x4c\x75\x4b\x41\x65\x4b','\x57\x36\x57\x2b\x57\x4f\x71\x59','\x57\x36\x42\x64\x53\x31\x6e\x72\x57\x51\x39\x6c\x41\x47','\x69\x6d\x6f\x49\x57\x35\x79\x67\x6e\x71','\x79\x78\x52\x63\x48\x5a\x4e\x63\x4c\x47\x75\x74','\x57\x50\x6a\x6b\x76\x59\x46\x63\x49\x57','\x57\x37\x64\x63\x53\x66\x61\x35\x57\x51\x43','\x62\x59\x61\x38\x69\x53\x6b\x41\x46\x43\x6f\x61\x76\x47','\x57\x35\x2f\x64\x55\x76\x64\x64\x47\x53\x6b\x70','\x6d\x47\x71\x64\x57\x34\x48\x30','\x66\x43\x6f\x2f\x71\x38\x6f\x73\x57\x51\x4c\x42\x57\x4f\x52\x63\x54\x71','\x57\x50\x34\x56\x57\x50\x78\x64\x4e\x43\x6b\x61','\x57\x36\x2f\x63\x49\x67\x2f\x63\x4d\x33\x57\x59\x7a\x76\x69','\x70\x63\x53\x54\x68\x43\x6b\x69','\x6d\x61\x65\x75\x57\x37\x7a\x68','\x57\x4f\x4b\x53\x57\x51\x2f\x64\x56\x38\x6b\x79','\x66\x43\x6f\x2f\x57\x36\x72\x51\x65\x6d\x6f\x63\x6e\x57','\x6e\x4e\x65\x43\x57\x52\x70\x64\x55\x57','\x6d\x59\x4e\x64\x4d\x67\x78\x64\x56\x57\x79\x76\x66\x43\x6b\x58\x57\x35\x6d\x68','\x75\x38\x6f\x33\x57\x36\x35\x79\x45\x71','\x43\x43\x6f\x49\x57\x35\x5a\x63\x56\x53\x6f\x39\x75\x38\x6f\x7a\x57\x52\x79','\x6f\x53\x6f\x66\x57\x35\x69\x2f\x57\x50\x61','\x62\x4a\x79\x77\x6a\x6d\x6b\x6c\x46\x43\x6f\x58\x72\x47','\x57\x52\x50\x33\x57\x50\x7a\x7a\x57\x4f\x57\x79\x6f\x73\x47','\x42\x30\x2f\x63\x47\x4c\x79','\x65\x38\x6f\x50\x72\x61','\x41\x4e\x52\x63\x48\x5a\x56\x63\x56\x71\x71','\x6f\x31\x57\x78\x57\x50\x4e\x64\x4f\x38\x6f\x4d\x57\x35\x70\x64\x47\x61','\x44\x30\x2f\x63\x49\x31\x58\x6e\x57\x52\x6c\x64\x4b\x47\x38','\x57\x36\x65\x4a\x57\x4f\x38\x32\x57\x52\x37\x64\x53\x48\x70\x63\x56\x71','\x6f\x43\x6f\x72\x57\x35\x71\x4a\x57\x50\x7a\x49\x6f\x6d\x6f\x41','\x6c\x4b\x65\x56\x57\x50\x70\x64\x53\x6d\x6f\x43\x57\x34\x64\x64\x54\x57','\x57\x51\x6c\x63\x4f\x67\x4b\x52\x78\x33\x75','\x57\x37\x6c\x64\x48\x67\x2f\x64\x4f\x6d\x6b\x57\x57\x37\x78\x63\x48\x43\x6b\x31','\x78\x4c\x68\x63\x55\x49\x74\x63\x56\x61','\x46\x6d\x6f\x33\x57\x35\x52\x63\x4e\x6d\x6f\x2f\x78\x47','\x57\x50\x72\x52\x7a\x49\x4b\x34','\x76\x32\x70\x63\x4e\x30\x47\x74\x57\x51\x5a\x63\x4a\x38\x6f\x6c','\x57\x37\x37\x64\x4b\x4b\x38','\x66\x63\x47\x30\x57\x37\x34','\x6a\x38\x6b\x72\x72\x57','\x76\x43\x6f\x7a\x57\x50\x58\x48\x6e\x38\x6f\x34\x57\x35\x70\x64\x4b\x61','\x65\x53\x6f\x55\x57\x36\x76\x77','\x57\x35\x78\x64\x48\x65\x5a\x64\x4f\x38\x6b\x42','\x57\x37\x52\x64\x4f\x30\x54\x78\x57\x51\x6e\x73\x79\x6d\x6b\x39','\x6c\x6d\x6f\x38\x57\x36\x5a\x64\x56\x38\x6b\x69\x6b\x49\x79','\x57\x52\x31\x44\x57\x34\x70\x64\x53\x5a\x4f','\x64\x38\x6f\x36\x7a\x43\x6f\x32\x6f\x71','\x73\x53\x6f\x35\x57\x34\x72\x52\x45\x57','\x68\x73\x65\x54\x6e\x43\x6b\x62\x76\x38\x6f\x35','\x67\x68\x6a\x64\x57\x4f\x52\x63\x54\x61','\x6a\x43\x6b\x66\x77\x43\x6f\x62','\x74\x77\x70\x63\x55\x57','\x57\x52\x56\x63\x55\x38\x6f\x51\x57\x34\x70\x64\x52\x38\x6b\x53\x57\x35\x35\x73','\x70\x65\x42\x63\x4b\x58\x44\x63\x77\x38\x6f\x51\x45\x57','\x6e\x73\x43\x79\x69\x38\x6b\x79','\x45\x78\x7a\x69\x79\x72\x61','\x70\x63\x72\x33\x57\x36\x6e\x74\x7a\x4b\x75','\x57\x36\x74\x64\x50\x31\x35\x71\x57\x51\x76\x30\x79\x6d\x6b\x37','\x57\x4f\x75\x56\x57\x52\x33\x64\x47\x6d\x6b\x43\x57\x52\x46\x63\x4c\x47','\x57\x50\x35\x41\x57\x34\x75','\x65\x43\x6b\x54\x57\x51\x6c\x64\x51\x38\x6f\x51','\x57\x4f\x58\x77\x57\x35\x30','\x57\x50\x35\x6c\x57\x35\x64\x64\x47\x63\x57\x5a','\x57\x52\x48\x6d\x72\x57\x4b\x44\x42\x66\x79\x4f','\x43\x43\x6f\x52\x57\x50\x76\x2b\x66\x61','\x57\x37\x56\x64\x51\x76\x6e\x74\x57\x52\x72\x64\x71\x53\x6b\x51','\x70\x68\x38\x57\x57\x35\x4e\x63\x4b\x43\x6b\x68\x57\x37\x78\x63\x47\x61','\x68\x6d\x6f\x75\x73\x53\x6f\x56\x57\x52\x57','\x57\x36\x64\x64\x53\x65\x72\x6b\x57\x4f\x69','\x57\x52\x62\x65\x72\x48\x47\x48\x45\x76\x61\x34','\x6a\x4b\x61\x44\x57\x50\x2f\x64\x55\x53\x6f\x51\x57\x35\x78\x64\x50\x47','\x65\x53\x6f\x6c\x6b\x38\x6b\x63\x6b\x71','\x57\x51\x79\x76\x57\x4f\x75','\x57\x51\x34\x2f\x57\x4f\x79\x73\x6b\x47','\x73\x6d\x6f\x37\x57\x37\x34','\x6a\x30\x79\x31\x57\x35\x4e\x63\x4d\x61','\x57\x51\x6e\x37\x57\x52\x6a\x65\x57\x50\x6d','\x57\x35\x5a\x63\x4e\x49\x56\x64\x4c\x4e\x57','\x6b\x53\x6f\x69\x57\x35\x65\x4c\x57\x4f\x43','\x57\x37\x66\x71\x6c\x43\x6f\x6e\x57\x34\x2f\x63\x54\x6d\x6b\x73\x74\x47','\x67\x49\x61\x39\x6e\x71','\x57\x50\x50\x52\x44\x5a\x34\x36','\x6c\x78\x75\x55\x57\x34\x42\x63\x4c\x43\x6b\x68\x57\x36\x75','\x57\x37\x4e\x64\x4f\x31\x76\x62\x57\x51\x39\x69\x42\x53\x6b\x4a','\x6b\x65\x2f\x63\x4a\x59\x31\x35','\x6a\x38\x6b\x6d\x57\x51\x46\x64\x4c\x61','\x67\x53\x6f\x44\x57\x37\x47','\x57\x37\x37\x64\x4a\x30\x64\x64\x55\x53\x6b\x51\x57\x36\x2f\x63\x4f\x53\x6b\x50','\x57\x37\x33\x63\x56\x6d\x6f\x63\x57\x36\x75\x36\x57\x34\x74\x63\x4c\x43\x6f\x67','\x57\x52\x50\x6a\x57\x50\x44\x69\x57\x52\x75\x6c\x70\x59\x38','\x57\x52\x4b\x55\x57\x52\x78\x64\x53\x43\x6b\x44','\x66\x38\x6f\x36\x57\x37\x35\x69\x66\x6d\x6f\x79\x6b\x30\x65','\x6f\x38\x6f\x6d\x57\x35\x6d\x31','\x57\x52\x6d\x59\x57\x4f\x56\x63\x52\x6d\x6b\x74','\x67\x38\x6f\x68\x57\x34\x61\x51\x70\x61','\x62\x38\x6b\x7a\x79\x38\x6f\x35\x67\x47','\x6e\x6d\x6f\x47\x7a\x43\x6b\x77\x57\x36\x72\x52\x73\x33\x30','\x6d\x31\x50\x38\x42\x57','\x57\x37\x2f\x63\x51\x47\x4b\x38\x57\x50\x75','\x44\x30\x37\x63\x4a\x76\x7a\x64\x57\x51\x4b','\x57\x4f\x34\x67\x57\x51\x46\x63\x50\x53\x6b\x59\x70\x76\x31\x52','\x6a\x65\x37\x63\x4a\x71\x7a\x59\x78\x6d\x6f\x52','\x57\x37\x2f\x64\x55\x30\x52\x64\x53\x43\x6b\x31','\x57\x37\x50\x50\x57\x4f\x37\x63\x51\x43\x6f\x5a\x57\x34\x61','\x57\x37\x56\x64\x50\x32\x70\x63\x51\x75\x6d','\x6c\x38\x6f\x5a\x72\x6d\x6f\x41\x67\x38\x6b\x73\x57\x52\x52\x64\x50\x61','\x57\x35\x5a\x63\x55\x71\x71\x72\x57\x50\x69','\x78\x6d\x6f\x43\x57\x36\x61\x68\x6e\x6d\x6b\x4b','\x6f\x4e\x65\x36\x57\x35\x70\x63\x51\x38\x6b\x78\x57\x37\x74\x63\x4c\x71','\x57\x52\x66\x31\x73\x63\x37\x63\x4b\x4e\x48\x76','\x6b\x38\x6f\x37\x78\x6d\x6f\x36\x64\x53\x6b\x64\x57\x52\x68\x64\x54\x61','\x57\x37\x37\x64\x48\x30\x42\x64\x51\x53\x6b\x32\x57\x34\x70\x63\x4d\x6d\x6b\x30','\x57\x37\x50\x61\x63\x53\x6f\x6c\x57\x34\x70\x63\x51\x38\x6b\x73','\x57\x52\x4f\x56\x57\x51\x71\x35\x69\x57','\x69\x38\x6f\x39\x75\x43\x6f\x36\x64\x53\x6b\x70\x57\x52\x56\x64\x50\x71','\x57\x52\x4e\x63\x54\x43\x6f\x54\x57\x35\x69','\x57\x4f\x58\x4b\x44\x64\x79\x75','\x57\x37\x37\x63\x54\x43\x6f\x7a\x57\x37\x75\x57','\x73\x61\x64\x64\x51\x38\x6b\x35\x70\x6d\x6b\x56','\x76\x43\x6f\x39\x57\x36\x71','\x41\x30\x70\x63\x4d\x4c\x4c\x56','\x76\x75\x46\x63\x47\x71\x37\x63\x4d\x61','\x73\x53\x6b\x36\x46\x61','\x6f\x6d\x6f\x34\x78\x43\x6f\x71\x66\x47','\x6a\x33\x30\x30\x57\x4f\x65','\x57\x35\x56\x63\x4d\x66\x33\x63\x51\x67\x38','\x77\x4a\x33\x64\x50\x43\x6b\x77\x6e\x57','\x6d\x38\x6b\x44\x57\x51\x4a\x64\x48\x43\x6f\x68\x6d\x57','\x67\x38\x6f\x68\x57\x37\x53\x6b\x70\x53\x6f\x47\x57\x50\x53\x74','\x6b\x38\x6f\x52\x57\x36\x4c\x6f\x66\x6d\x6f\x76\x6b\x32\x53','\x6f\x68\x75\x57\x57\x34\x2f\x63\x51\x38\x6b\x68\x57\x36\x68\x63\x47\x61','\x57\x34\x44\x31\x57\x35\x46\x63\x4c\x47','\x57\x51\x74\x63\x53\x38\x6f\x4a\x57\x35\x69','\x57\x35\x2f\x63\x56\x77\x57\x2b\x57\x4f\x6a\x36\x57\x51\x79','\x6e\x43\x6f\x4c\x46\x38\x6b\x45\x57\x35\x34','\x7a\x38\x6f\x64\x57\x50\x72\x72\x6d\x47','\x66\x61\x4e\x64\x4f\x61','\x62\x53\x6f\x51\x57\x36\x31\x6a\x68\x53\x6f\x79','\x57\x51\x4b\x4c\x57\x4f\x2f\x64\x47\x43\x6b\x69','\x6c\x6d\x6b\x62\x57\x50\x68\x64\x53\x6d\x6f\x58','\x66\x30\x6c\x63\x4b\x58\x50\x5a','\x57\x37\x74\x64\x4b\x4b\x5a\x63\x4e\x4d\x5a\x64\x4b\x38\x6b\x71\x70\x71','\x44\x30\x42\x63\x54\x76\x69\x6b','\x62\x53\x6f\x69\x79\x53\x6f\x6a\x6f\x57','\x6b\x74\x68\x64\x56\x63\x4a\x63\x4c\x57','\x6c\x43\x6f\x61\x57\x37\x47\x46\x57\x50\x71','\x79\x6d\x6f\x6c\x57\x4f\x54\x73\x6c\x61','\x57\x52\x48\x59\x78\x57\x56\x63\x4d\x61','\x71\x33\x68\x63\x56\x65\x54\x31','\x57\x50\x4c\x67\x57\x34\x68\x64\x4b\x71','\x66\x73\x74\x64\x51\x62\x68\x63\x51\x61','\x57\x37\x54\x77\x67\x38\x6f\x75','\x57\x35\x5a\x63\x49\x67\x47','\x57\x37\x69\x57\x57\x50\x47\x4b\x57\x51\x38','\x57\x36\x4e\x63\x4a\x73\x61\x67\x57\x51\x71','\x78\x6d\x6b\x4e\x45\x6d\x6b\x62\x79\x62\x46\x63\x54\x67\x75','\x67\x38\x6f\x4e\x77\x53\x6f\x72\x57\x52\x48\x78','\x6b\x43\x6f\x55\x57\x35\x4e\x64\x4f\x53\x6b\x35\x6e\x59\x66\x5a','\x57\x50\x35\x66\x57\x35\x46\x64\x4f\x61\x38','\x57\x50\x4b\x7a\x57\x52\x5a\x63\x50\x6d\x6b\x55\x63\x31\x54\x48','\x68\x58\x57\x69\x57\x37\x62\x51','\x6d\x30\x4a\x63\x4a\x48\x62\x50\x77\x38\x6f\x51\x44\x47','\x63\x32\x75\x75\x57\x4f\x46\x64\x4d\x71','\x62\x71\x46\x64\x52\x74\x46\x63\x48\x5a\x47\x2f\x79\x71','\x6b\x76\x4f\x33\x57\x4f\x6c\x64\x53\x43\x6f\x58','\x65\x53\x6f\x42\x57\x36\x6d\x44\x6e\x6d\x6f\x2f','\x75\x6d\x6b\x53\x74\x53\x6b\x6e\x42\x71\x52\x63\x50\x77\x71','\x61\x63\x4f\x37\x70\x53\x6b\x79\x44\x6d\x6f\x43\x71\x57','\x69\x30\x37\x63\x48\x57\x31\x38\x72\x43\x6f\x53','\x63\x73\x78\x64\x4b\x59\x42\x63\x52\x57','\x79\x4d\x2f\x63\x4c\x4b\x50\x77','\x63\x73\x58\x32\x57\x34\x62\x43\x6c\x31\x52\x64\x4f\x61','\x57\x4f\x68\x63\x4f\x4c\x53\x43\x78\x57','\x57\x51\x50\x39\x78\x62\x64\x63\x4e\x67\x44\x70\x57\x35\x4b','\x78\x4d\x5a\x63\x53\x57\x52\x63\x52\x61','\x67\x6d\x6f\x30\x6d\x38\x6b\x70\x70\x61','\x70\x53\x6f\x41\x57\x35\x47\x49\x57\x50\x72\x30\x64\x57','\x44\x33\x33\x64\x4f\x43\x6b\x74\x6d\x62\x30\x59\x57\x52\x71','\x57\x34\x78\x63\x54\x6d\x6f\x7a\x57\x34\x61\x44','\x57\x37\x74\x64\x51\x66\x68\x63\x47\x67\x30','\x6c\x38\x6f\x75\x77\x6d\x6f\x77\x67\x53\x6b\x35\x57\x51\x4e\x64\x50\x71','\x57\x37\x52\x64\x4b\x4c\x70\x63\x4c\x31\x37\x64\x4c\x43\x6b\x75\x68\x47','\x57\x51\x74\x63\x56\x43\x6f\x76\x57\x36\x64\x64\x56\x47','\x6a\x53\x6f\x50\x57\x37\x35\x6d\x62\x71','\x57\x4f\x79\x46\x57\x51\x79','\x75\x68\x4a\x63\x56\x4c\x75\x70\x57\x51\x6c\x63\x49\x6d\x6f\x6b','\x6e\x4b\x6d\x2b','\x70\x65\x79\x34\x57\x50\x78\x64\x53\x43\x6f\x57\x57\x35\x69','\x71\x4b\x78\x63\x51\x76\x43\x6a','\x67\x71\x6e\x4f\x57\x34\x35\x63','\x57\x35\x37\x63\x4a\x43\x6f\x61\x57\x35\x71\x6d','\x57\x50\x4b\x74\x57\x51\x37\x63\x4f\x6d\x6b\x4f\x62\x31\x50\x53','\x46\x47\x4e\x64\x4a\x57\x62\x59\x72\x38\x6f\x35\x46\x61','\x67\x6d\x6f\x67\x63\x38\x6b\x49\x6e\x73\x44\x2f\x46\x71','\x57\x34\x42\x63\x48\x63\x46\x64\x51\x4e\x64\x63\x50\x6d\x6b\x54\x68\x47','\x6c\x4c\x62\x4d\x42\x53\x6f\x34\x73\x38\x6b\x72\x77\x57','\x65\x72\x61\x54\x6d\x43\x6b\x61\x41\x57','\x57\x34\x54\x62\x57\x34\x64\x64\x4f\x43\x6b\x72','\x57\x51\x6c\x63\x4f\x67\x6d','\x67\x53\x6f\x6d\x57\x36\x6e\x70\x68\x38\x6f\x63','\x69\x43\x6f\x35\x57\x37\x53','\x68\x4a\x7a\x30\x57\x34\x6a\x2b','\x73\x49\x46\x64\x51\x38\x6b\x39\x6a\x38\x6b\x54\x44\x6d\x6b\x54','\x79\x53\x6f\x33\x57\x35\x46\x63\x4c\x6d\x6f\x35\x75\x53\x6f\x32\x57\x52\x79','\x57\x52\x54\x71\x57\x50\x6a\x4d\x57\x52\x38','\x57\x37\x56\x64\x4f\x31\x6a\x62\x57\x51\x76\x63\x75\x6d\x6b\x53','\x6a\x5a\x7a\x62\x57\x35\x44\x61\x42\x4c\x61','\x68\x38\x6b\x70\x57\x51\x64\x64\x4e\x38\x6f\x76\x6a\x43\x6b\x47\x57\x51\x4f','\x57\x52\x30\x37\x57\x4f\x75\x59\x64\x71','\x57\x52\x66\x35\x77\x57','\x57\x4f\x50\x41\x57\x35\x2f\x64\x4b\x71','\x57\x36\x64\x63\x55\x6d\x6f\x69','\x66\x38\x6f\x64\x57\x36\x4b\x4d\x57\x52\x43','\x79\x6d\x6f\x47\x57\x35\x68\x63\x4e\x38\x6f\x49\x76\x43\x6f\x64\x57\x51\x53','\x65\x43\x6f\x4e\x71\x6d\x6f\x6a\x57\x4f\x6a\x68\x57\x50\x57','\x57\x52\x4a\x63\x55\x4b\x38\x33\x74\x68\x47\x54','\x57\x36\x64\x63\x47\x78\x4e\x63\x4a\x65\x47\x65\x44\x4c\x69','\x6a\x38\x6f\x51\x74\x61','\x75\x6d\x6f\x6e\x57\x35\x6e\x6a\x71\x61','\x72\x4c\x7a\x74\x45\x5a\x4b','\x70\x71\x56\x64\x53\x61\x46\x63\x4a\x57','\x57\x36\x66\x50\x57\x35\x4a\x63\x54\x38\x6b\x34\x57\x4f\x79\x50\x77\x47','\x75\x6d\x6b\x50\x42\x43\x6b\x37\x7a\x71\x6c\x63\x55\x67\x30','\x6f\x4d\x61\x6e\x57\x4f\x37\x64\x52\x71','\x62\x43\x6f\x63\x57\x34\x4b\x55\x61\x47','\x57\x37\x56\x63\x53\x61\x57\x53','\x57\x37\x64\x64\x4b\x4b\x72\x4f\x57\x51\x53','\x57\x36\x7a\x36\x57\x34\x33\x64\x56\x53\x6b\x63\x57\x50\x57\x4c\x75\x47','\x57\x36\x37\x63\x55\x6d\x6f\x65\x57\x37\x6d\x59\x57\x34\x78\x63\x48\x53\x6f\x74','\x79\x76\x37\x63\x48\x66\x6e\x2b','\x57\x4f\x48\x6e\x57\x34\x70\x64\x4d\x59\x53\x46\x79\x53\x6b\x57','\x57\x37\x50\x50\x57\x35\x4a\x64\x49\x53\x6b\x34\x57\x50\x65\x4f\x45\x71','\x57\x50\x52\x63\x4a\x53\x6f\x61\x57\x36\x33\x64\x48\x57','\x63\x4e\x38\x43\x57\x4f\x2f\x64\x4c\x47','\x61\x53\x6f\x63\x62\x53\x6b\x47\x6c\x63\x6a\x36\x46\x47','\x57\x34\x5a\x63\x51\x49\x34\x2b\x57\x52\x65','\x57\x37\x74\x63\x4f\x49\x71\x59\x57\x35\x5a\x64\x54\x77\x75','\x57\x52\x66\x6e\x57\x4f\x50\x7a\x57\x52\x75\x41\x6c\x4a\x69','\x66\x38\x6f\x67\x57\x36\x4f\x6e\x43\x43\x6f\x35\x57\x50\x66\x53','\x43\x32\x68\x63\x52\x4c\x38\x61','\x67\x49\x61\x2b','\x57\x35\x7a\x54\x57\x35\x74\x64\x4d\x53\x6b\x74','\x6a\x43\x6b\x7a\x57\x51\x42\x64\x4b\x53\x6f\x41\x63\x43\x6b\x32','\x57\x51\x4b\x44\x57\x4f\x75\x35\x62\x6d\x6f\x76\x57\x34\x2f\x63\x50\x47','\x72\x43\x6f\x37\x57\x36\x44\x50\x76\x62\x35\x2b\x57\x51\x38','\x6f\x30\x65\x59\x57\x50\x68\x64\x53\x38\x6f\x4d\x57\x35\x70\x64\x4e\x61','\x62\x38\x6f\x49\x45\x6d\x6f\x52\x57\x52\x43','\x57\x36\x4e\x64\x4f\x4b\x52\x64\x4d\x6d\x6b\x57','\x42\x4e\x52\x63\x49\x58\x33\x63\x4a\x61','\x46\x65\x4a\x63\x50\x4b\x72\x46','\x6b\x38\x6f\x38\x79\x53\x6b\x43\x57\x34\x39\x55\x71\x77\x75','\x76\x53\x6f\x4d\x57\x36\x58\x53\x42\x48\x50\x55\x57\x52\x75','\x57\x50\x4c\x71\x57\x37\x33\x64\x4d\x59\x34\x4c\x79\x6d\x6b\x77','\x57\x36\x4a\x64\x4c\x65\x4a\x64\x50\x38\x6b\x62\x57\x37\x68\x63\x47\x47','\x6c\x63\x4c\x4c\x57\x34\x65','\x57\x52\x39\x67\x57\x4f\x6d','\x57\x4f\x4c\x65\x72\x5a\x70\x63\x48\x57','\x62\x38\x6f\x44\x57\x36\x69\x6d','\x44\x30\x70\x63\x47\x66\x44\x70\x57\x51\x52\x64\x4f\x48\x34','\x72\x6d\x6f\x63\x57\x50\x6a\x4d\x65\x61','\x6d\x43\x6f\x66\x7a\x43\x6f\x6c\x57\x50\x34','\x79\x43\x6b\x50\x46\x43\x6b\x4d\x74\x71','\x6f\x5a\x34\x38\x63\x53\x6b\x4a','\x70\x75\x61\x75\x57\x52\x52\x64\x48\x47','\x57\x35\x5a\x63\x4a\x33\x78\x63\x47\x75\x71\x4b\x44\x65\x30','\x69\x63\x50\x33','\x74\x68\x58\x33\x45\x62\x56\x64\x50\x71\x4b','\x57\x34\x37\x63\x4a\x68\x68\x63\x47\x66\x65\x34\x71\x75\x38','\x63\x6d\x6f\x68\x75\x6d\x6b\x77\x57\x36\x34','\x7a\x38\x6f\x35\x57\x36\x48\x70\x46\x71','\x57\x34\x5a\x63\x56\x77\x38\x52\x57\x51\x4c\x47','\x6b\x72\x6e\x79\x57\x36\x44\x33','\x73\x66\x37\x63\x4b\x63\x5a\x63\x4d\x71','\x6e\x63\x47\x50\x57\x36\x6a\x6c','\x66\x47\x34\x37\x69\x43\x6b\x47','\x57\x52\x6a\x56\x57\x37\x74\x64\x50\x47\x79\x6c\x76\x38\x6b\x6d','\x7a\x6d\x6f\x33\x57\x34\x46\x63\x4a\x57','\x66\x61\x2f\x64\x56\x72\x57','\x57\x37\x31\x75\x65\x53\x6f\x6f\x57\x37\x70\x63\x51\x53\x6b\x45\x78\x61','\x57\x52\x56\x63\x55\x38\x6f\x51\x57\x34\x70\x64\x52\x38\x6b\x54\x57\x34\x48\x74','\x57\x51\x6c\x63\x50\x77\x43\x4d\x77\x57'];_0x2c42=function(){return _0x288880;};return _0x2c42();}function _0x301ab5({signals:_0x192cd0,mutation:_0x576450,personality_state:_0x1f2b77,selectedGene:_0x1a9963,selector:_0x52ff4f,driftEnabled:_0x532dd3,selectedBy:_0x11970f,hypothesisId:_0x2c17d3,capsulesUsed:_0x1f0a9b,observations:_0x5aeef6,chunkGenes:_0x9550cf}){const _0x289c30=_0x24f893,_0x2b36e5={'\x6f\x65\x76\x6b\x43':function(_0x39b65b,_0x2421d5){return _0x39b65b(_0x2421d5);},'\x42\x59\x4c\x51\x48':_0x289c30(0x291,'\x6c\x23\x7a\x76'),'\x68\x58\x64\x69\x6a':function(_0x4caccd,_0x341c0a){return _0x4caccd(_0x341c0a);},'\x65\x43\x6d\x45\x4b':function(_0x30ccd1){return _0x30ccd1();},'\x6a\x61\x41\x6f\x6a':function(_0x4c30a6,_0xb6e09c){return _0x4c30a6||_0xb6e09c;},'\x50\x6b\x55\x59\x61':_0x289c30(0x2a9,'\x6c\x23\x7a\x76'),'\x41\x7a\x53\x5a\x4b':function(_0x1bad42,_0x3b1a90){return _0x1bad42||_0x3b1a90;},'\x48\x59\x66\x73\x68':function(_0x1278ff,_0x153af6){return _0x1278ff(_0x153af6);},'\x46\x63\x77\x49\x4b':function(_0x5a22f1,_0x443241){return _0x5a22f1(_0x443241);},'\x58\x44\x43\x69\x49':_0x289c30(0x513,'\x30\x35\x70\x72')+_0x289c30(0x7f5,'\x66\x4c\x65\x47'),'\x71\x64\x5a\x65\x62':_0x289c30(0x803,'\x43\x6a\x77\x54'),'\x4e\x48\x4b\x59\x63':function(_0x4c0ae0,_0x4a5eff){return _0x4c0ae0(_0x4a5eff);},'\x4b\x43\x6c\x45\x73':function(_0x578c8f,_0x2df914){return _0x578c8f(_0x2df914);},'\x61\x68\x79\x57\x64':function(_0x52ec2d,_0x3fc0e9){return _0x52ec2d(_0x3fc0e9);},'\x6b\x56\x66\x58\x71':_0x289c30(0x7a8,'\x41\x31\x43\x39'),'\x56\x54\x6e\x66\x56':function(_0x54b11d,_0x4d5c50){return _0x54b11d||_0x4d5c50;},'\x45\x6b\x7a\x46\x74':function(_0x1987b5,_0x37b256){return _0x1987b5===_0x37b256;},'\x63\x6d\x76\x72\x74':_0x289c30(0x2a8,'\x4b\x64\x78\x78'),'\x4a\x71\x4c\x4a\x4e':function(_0x52f78d,_0x1ce5b5,_0x2ad3ea){return _0x52f78d(_0x1ce5b5,_0x2ad3ea);},'\x61\x6c\x48\x64\x43':function(_0x25e97b,_0x5d049c){return _0x25e97b(_0x5d049c);},'\x48\x68\x52\x62\x7a':function(_0x11f78f,_0x28f9e0){return _0x11f78f||_0x28f9e0;},'\x76\x65\x4d\x4b\x69':function(_0x14cfd9,_0x4c114c){return _0x14cfd9(_0x4c114c);},'\x51\x73\x50\x51\x74':function(_0x348ffb,_0x5e8356){return _0x348ffb>_0x5e8356;},'\x70\x69\x79\x44\x7a':function(_0xd87561,_0x4de299,_0xb9a3d){return _0xd87561(_0x4de299,_0xb9a3d);}},_0x2ddb98=_0x319613(_0x192cd0),_0x593e52=_0x1a9963&&_0x1a9963['\x69\x64']?_0x2b36e5[_0x289c30(0x71e,'\x41\x31\x43\x39')](String,_0x1a9963['\x69\x64']):null,_0x147f67=_0x1a9963&&_0x1a9963[_0x289c30(0x65d,'\x68\x7a\x7a\x21')]?_0x2b36e5[_0x289c30(0x870,'\x66\x4c\x65\x47')](String,_0x1a9963['\x63\x61\x74\x65\x67\x6f\x72\x79']):null,_0x42c7ae=_0x2b36e5[_0x289c30(0x6ef,'\x4e\x70\x6e\x7a')](_0xd91d1c),_0x55007f=_0x2b36e5[_0x289c30(0x586,'\x78\x56\x4c\x45')](_0x1a17ff,_0x192cd0),_0x47cf5c=_0x289c30(0x64b,'\x50\x64\x35\x53')+Date[_0x289c30(0x616,'\x4f\x4b\x4b\x62')]()+'\x5f'+_0x2b36e5[_0x289c30(0x2b5,'\x57\x45\x5e\x4e')](_0x41384f,_0x2ddb98+'\x7c'+_0x2b36e5[_0x289c30(0x369,'\x6b\x70\x71\x4c')](_0x593e52,_0x2b36e5[_0x289c30(0x752,'\x70\x46\x25\x2a')])+'\x7c'+_0x42c7ae),_0x36f72f=_0x2b36e5[_0x289c30(0x644,'\x56\x30\x35\x5a')](_0x1f2b77,null),_0x53ad2a=_0x576450&&_0x2b36e5[_0x289c30(0x4ad,'\x70\x23\x36\x65')](_0x416f2c,_0x576450)?_0x2b36e5[_0x289c30(0x458,'\x56\x30\x35\x5a')](_0x516827,_0x576450):null,_0x1d341c=_0x36f72f&&_0x2b36e5[_0x289c30(0x50c,'\x57\x45\x5e\x4e')](_0x2f18c1,_0x36f72f)?_0x2b36e5[_0x289c30(0x3d7,'\x75\x45\x5a\x6f')](_0x4adefe,_0x36f72f):null,_0x2058e0=Array[_0x289c30(0x3b5,'\x63\x30\x6e\x66')](_0x9550cf)?_0x9550cf[_0x289c30(0x312,'\x70\x23\x36\x65')](function(_0x43f6ec){const _0x18d4aa=_0x289c30;if(_0x2b36e5[_0x18d4aa(0x808,'\x6c\x23\x7a\x76')]===_0x2b36e5[_0x18d4aa(0x40c,'\x75\x45\x5a\x6f')])return _0x43f6ec&&_0x43f6ec['\x69\x64']?_0x2b36e5[_0x18d4aa(0x3a4,'\x50\x61\x6e\x76')](String,_0x43f6ec['\x69\x64']):null;else nGHhgS[_0x18d4aa(0x5bc,'\x63\x30\x6e\x66')](_0x3fe204,_0x292d05);})[_0x289c30(0x5ee,'\x51\x70\x6f\x4c')](Boolean):[],_0x482a47={};_0x482a47['\x69\x64']=_0x593e52,_0x482a47[_0x289c30(0x78a,'\x50\x61\x6e\x76')]=_0x147f67;const _0x3ed80c={'\x74\x79\x70\x65':_0x2b36e5[_0x289c30(0x703,'\x30\x35\x70\x72')],'\x6b\x69\x6e\x64':_0x2b36e5[_0x289c30(0x55e,'\x70\x23\x36\x65')],'\x69\x64':_0x289c30(0x463,'\x73\x37\x75\x4e')+Date[_0x289c30(0x31d,'\x4b\x28\x32\x23')]()+'\x5f'+_0x2b36e5[_0x289c30(0x29a,'\x4f\x35\x66\x62')](_0x41384f,_0x47cf5c),'\x74\x73':_0x42c7ae,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0x2ddb98,'\x73\x69\x67\x6e\x61\x6c\x73':Array['\x69\x73\x41\x72\x72\x61\x79'](_0x192cd0)?_0x192cd0:[],'\x65\x72\x72\x6f\x72\x5f\x73\x69\x67\x6e\x61\x74\x75\x72\x65':_0x2b36e5[_0x289c30(0x5b1,'\x70\x30\x56\x79')](_0x55007f,null)},'\x6d\x75\x74\x61\x74\x69\x6f\x6e':_0x53ad2a?{'\x69\x64':_0x53ad2a['\x69\x64'],'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x53ad2a[_0x289c30(0x1f7,'\x56\x30\x35\x5a')],'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0x53ad2a[_0x289c30(0x79b,'\x50\x64\x35\x53')+_0x289c30(0x713,'\x65\x76\x39\x75')],'\x74\x61\x72\x67\x65\x74':_0x53ad2a['\x74\x61\x72\x67\x65\x74'],'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':_0x53ad2a[_0x289c30(0x613,'\x48\x6d\x74\x4d')+_0x289c30(0x495,'\x48\x6d\x74\x4d')],'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x53ad2a[_0x289c30(0x706,'\x4f\x4b\x4b\x62')+'\x65\x6c']}:null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79':_0x1d341c?{'\x6b\x65\x79':_0x2b36e5[_0x289c30(0x523,'\x4b\x64\x78\x78')](_0x5b7721,_0x1d341c),'\x73\x74\x61\x74\x65':_0x1d341c}:null,'\x67\x65\x6e\x65':_0x482a47,'\x68\x79\x70\x6f\x74\x68\x65\x73\x69\x73':_0x2c17d3?{'\x69\x64':_0x2b36e5[_0x289c30(0x685,'\x4f\x4b\x4b\x62')](String,_0x2c17d3)}:null,'\x61\x63\x74\x69\x6f\x6e':{'\x69\x64':_0x47cf5c,'\x64\x72\x69\x66\x74':!!_0x532dd3,'\x73\x65\x6c\x65\x63\x74\x65\x64\x5f\x62\x79':_0x11970f||_0x2b36e5['\x6b\x56\x66\x58\x71'],'\x73\x65\x6c\x65\x63\x74\x6f\x72':_0x2b36e5[_0x289c30(0x87f,'\x30\x35\x70\x72')](_0x52ff4f,null)},'\x63\x61\x70\x73\x75\x6c\x65\x73':{'\x75\x73\x65\x64':Array[_0x289c30(0x77d,'\x70\x46\x25\x2a')](_0x1f0a9b)?_0x1f0a9b['\x6d\x61\x70'](String)[_0x289c30(0x356,'\x6f\x68\x54\x38')](Boolean):[]},'\x6f\x62\x73\x65\x72\x76\x65\x64':_0x5aeef6&&_0x2b36e5[_0x289c30(0x1ea,'\x56\x30\x35\x5a')](typeof _0x5aeef6,_0x2b36e5[_0x289c30(0x3cf,'\x4b\x64\x78\x78')])?_0x5aeef6:null};_0x2b36e5[_0x289c30(0x45f,'\x73\x37\x75\x4e')](_0x1f70eb,_0x3ed80c);const _0x2f4a48=_0x2b36e5[_0x289c30(0x4eb,'\x6c\x23\x7a\x76')](_0x5ed1f9),_0x232703={};_0x232703[_0x289c30(0x639,'\x67\x56\x36\x28')+_0x289c30(0x6cb,'\x52\x40\x52\x65')]=null;const _0x565e67=_0x2b36e5[_0x289c30(0x4ae,'\x30\x24\x52\x66')](_0x1f80a3,_0x2f4a48,_0x232703);_0x565e67[_0x289c30(0x519,'\x4b\x28\x32\x23')+_0x289c30(0x5b8,'\x46\x46\x5e\x25')]={'\x61\x63\x74\x69\x6f\x6e\x5f\x69\x64':_0x47cf5c,'\x73\x69\x67\x6e\x61\x6c\x5f\x6b\x65\x79':_0x2ddb98,'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x289c30(0x265,'\x44\x51\x24\x40')](_0x192cd0)?_0x192cd0:[],'\x6d\x75\x74\x61\x74\x69\x6f\x6e\x5f\x69\x64':_0x53ad2a?_0x53ad2a['\x69\x64']:null,'\x6d\x75\x74\x61\x74\x69\x6f\x6e\x5f\x63\x61\x74\x65\x67\x6f\x72\x79':_0x53ad2a?_0x53ad2a[_0x289c30(0x367,'\x67\x56\x36\x28')]:null,'\x6d\x75\x74\x61\x74\x69\x6f\x6e\x5f\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x53ad2a?_0x53ad2a[_0x289c30(0x841,'\x4a\x74\x4a\x4f')+'\x65\x6c']:null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x5f\x6b\x65\x79':_0x1d341c?_0x2b36e5[_0x289c30(0x286,'\x41\x31\x43\x39')](_0x5b7721,_0x1d341c):null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79\x5f\x73\x74\x61\x74\x65':_0x2b36e5[_0x289c30(0x6ab,'\x72\x76\x61\x5d')](_0x1d341c,null),'\x67\x65\x6e\x65\x5f\x69\x64':_0x593e52,'\x67\x65\x6e\x65\x5f\x63\x61\x74\x65\x67\x6f\x72\x79':_0x147f67,'\x68\x79\x70\x6f\x74\x68\x65\x73\x69\x73\x5f\x69\x64':_0x2c17d3?_0x2b36e5[_0x289c30(0x4e0,'\x6b\x70\x71\x4c')](String,_0x2c17d3):null,'\x63\x61\x70\x73\x75\x6c\x65\x73\x5f\x75\x73\x65\x64':Array[_0x289c30(0x249,'\x4b\x36\x25\x33')](_0x1f0a9b)?_0x1f0a9b['\x6d\x61\x70'](String)['\x66\x69\x6c\x74\x65\x72'](Boolean):[],'\x68\x61\x64\x5f\x65\x72\x72\x6f\x72':_0x2b36e5['\x76\x65\x4d\x4b\x69'](_0x107c97,_0x192cd0),'\x63\x72\x65\x61\x74\x65\x64\x5f\x61\x74':_0x42c7ae,'\x6f\x75\x74\x63\x6f\x6d\x65\x5f\x72\x65\x63\x6f\x72\x64\x65\x64':![],'\x62\x61\x73\x65\x6c\x69\x6e\x65\x5f\x6f\x62\x73\x65\x72\x76\x65\x64':_0x5aeef6&&typeof _0x5aeef6===_0x289c30(0x2a8,'\x4b\x64\x78\x78')?_0x5aeef6:null,'\x63\x68\x75\x6e\x6b\x5f\x67\x65\x6e\x65\x5f\x69\x64\x73':_0x2b36e5[_0x289c30(0x20b,'\x50\x64\x35\x53')](_0x2058e0['\x6c\x65\x6e\x67\x74\x68'],0x4d+0x185a*-0x1+0x180d)?_0x2058e0:undefined},_0x2b36e5[_0x289c30(0x474,'\x71\x4b\x61\x4b')](_0x3dab27,_0x2f4a48,_0x565e67);const _0x32852a={};return _0x32852a[_0x289c30(0x662,'\x4f\x4b\x4b\x62')]=_0x47cf5c,_0x32852a[_0x289c30(0x3ab,'\x4e\x70\x6e\x7a')+'\x79']=_0x2ddb98,_0x32852a;}function _0x3af495({prevHadError:_0x3a846f,currentHasError:_0xf3b498}){const _0x29afd7=_0x24f893,_0x3e9304={};_0x3e9304[_0x29afd7(0x50b,'\x5b\x36\x72\x37')]=function(_0x3059e7,_0x20a6e5){return _0x3059e7&&_0x20a6e5;},_0x3e9304[_0x29afd7(0x2dd,'\x5b\x2a\x25\x62')]=_0x29afd7(0x3f9,'\x5b\x36\x72\x37')+_0x29afd7(0x22b,'\x67\x56\x36\x28'),_0x3e9304[_0x29afd7(0x4b1,'\x71\x4b\x61\x4b')]=_0x29afd7(0x78c,'\x66\x4c\x65\x47')+_0x29afd7(0x624,'\x30\x24\x52\x66'),_0x3e9304[_0x29afd7(0x833,'\x44\x6c\x68\x4d')]=_0x29afd7(0x25d,'\x46\x46\x5e\x25'),_0x3e9304[_0x29afd7(0x38b,'\x6c\x23\x7a\x76')]='\x6e\x65\x77\x5f\x65\x72\x72\x6f'+_0x29afd7(0x684,'\x5b\x2a\x25\x62')+'\x65\x64',_0x3e9304['\x5a\x63\x49\x50\x6f']=_0x29afd7(0x54b,'\x68\x33\x64\x45'),_0x3e9304[_0x29afd7(0x891,'\x6b\x70\x71\x4c')]=_0x29afd7(0x821,'\x63\x6f\x5e\x24')+_0x29afd7(0x67c,'\x72\x76\x61\x5d');const _0x3e2d94=_0x3e9304;if(_0x3e2d94[_0x29afd7(0x3a7,'\x30\x35\x70\x72')](_0x3a846f,!_0xf3b498))return{'\x73\x74\x61\x74\x75\x73':_0x29afd7(0x311,'\x57\x38\x6b\x49'),'\x73\x63\x6f\x72\x65':0.85,'\x6e\x6f\x74\x65':_0x3e2d94[_0x29afd7(0x754,'\x57\x45\x5e\x4e')]};const _0xae6a13={};_0xae6a13[_0x29afd7(0x5cc,'\x72\x76\x61\x5d')]=_0x29afd7(0x5d6,'\x50\x29\x47\x65'),_0xae6a13[_0x29afd7(0x671,'\x30\x35\x70\x72')]=0.2,_0xae6a13[_0x29afd7(0x3bb,'\x78\x56\x4c\x45')]=_0x3e2d94[_0x29afd7(0x5dc,'\x24\x6a\x6c\x23')];if(_0x3a846f&&_0xf3b498)return _0xae6a13;const _0x472808={};_0x472808[_0x29afd7(0x725,'\x50\x29\x47\x65')]=_0x3e2d94[_0x29afd7(0x26a,'\x68\x33\x64\x45')],_0x472808['\x73\x63\x6f\x72\x65']=0.15,_0x472808[_0x29afd7(0x330,'\x30\x24\x52\x66')]=_0x3e2d94[_0x29afd7(0x38b,'\x6c\x23\x7a\x76')];if(!_0x3a846f&&_0xf3b498)return _0x472808;const _0x52fc5c={};return _0x52fc5c[_0x29afd7(0x55c,'\x71\x4b\x61\x4b')]=_0x3e2d94['\x5a\x63\x49\x50\x6f'],_0x52fc5c[_0x29afd7(0x800,'\x44\x6c\x68\x4d')]=0.6,_0x52fc5c[_0x29afd7(0x707,'\x47\x46\x75\x74')]=_0x3e2d94[_0x29afd7(0x811,'\x50\x29\x47\x65')],_0x52fc5c;}function _0x570cb5(_0x1a604d){const _0x2f869a=_0x24f893,_0x3a3609={'\x4f\x5a\x68\x45\x4c':function(_0xfbbfe2,_0x4401cf){return _0xfbbfe2(_0x4401cf);}},_0x2bda8f=_0x3a3609[_0x2f869a(0x25c,'\x43\x6a\x77\x54')](Number,_0x1a604d);if(!Number[_0x2f869a(0x7d9,'\x51\x70\x6f\x4c')](_0x2bda8f))return-0x1*0x1be6+0x437*-0x7+0x5*0xb7b;return Math[_0x2f869a(0x2d3,'\x44\x6c\x68\x4d')](0x1d*0x90+0x79+-0x1*0x10c9,Math[_0x2f869a(0x61c,'\x50\x61\x6e\x76')](-0x1d*-0xe0+0xa11*0x1+-0xbd*0x30,_0x2bda8f));}function _0x343f79(_0x4cf5d4){const _0x423761=_0x24f893,_0x150f53={'\x58\x4e\x53\x78\x75':function(_0x15ccf5,_0x312d27){return _0x15ccf5(_0x312d27);},'\x73\x54\x64\x41\x57':function(_0x1d4178,_0x137dc5){return _0x1d4178||_0x137dc5;},'\x61\x5a\x47\x5a\x69':function(_0x22fe29,_0x5dc8e5){return _0x22fe29>=_0x5dc8e5;},'\x65\x70\x64\x4b\x48':_0x423761(0x66a,'\x56\x30\x35\x5a'),'\x4d\x77\x70\x49\x49':function(_0x248f67,_0x31e3cb){return _0x248f67!==_0x31e3cb;},'\x59\x55\x78\x76\x79':function(_0x142e86,_0xf08b33){return _0x142e86===_0xf08b33;},'\x75\x67\x41\x4d\x65':_0x423761(0x4a8,'\x6b\x70\x71\x4c'),'\x4b\x57\x6a\x51\x50':function(_0x168f08,_0x4cedb5){return _0x168f08===_0x4cedb5;},'\x41\x51\x4f\x67\x7a':_0x423761(0x647,'\x63\x30\x6e\x66'),'\x5a\x65\x42\x44\x42':function(_0x1b8ada,_0x3c86fb){return _0x1b8ada(_0x3c86fb);},'\x41\x59\x72\x6a\x49':function(_0x1da5bc,_0x3c98d8){return _0x1da5bc(_0x3c98d8);},'\x55\x49\x6b\x41\x43':function(_0x270d63,_0xeb5c40){return _0x270d63==_0xeb5c40;},'\x63\x6a\x65\x6b\x57':function(_0x3bb3c6,_0x1062d4){return _0x3bb3c6!=_0x1062d4;},'\x4f\x45\x6e\x59\x76':_0x423761(0x815,'\x65\x76\x39\x75')+_0x423761(0x88e,'\x57\x45\x5e\x4e')+_0x423761(0x756,'\x68\x33\x64\x45'),'\x48\x75\x71\x58\x67':_0x423761(0x61e,'\x68\x7a\x7a\x21')},_0x4bb753=_0x150f53[_0x423761(0x6c7,'\x57\x45\x5e\x4e')](String,_0x150f53[_0x423761(0x202,'\x65\x76\x39\x75')](_0x4cf5d4,''));if(!_0x4bb753)return null;const _0x17fbbd=_0x4bb753[_0x423761(0x3ef,'\x4b\x28\x32\x23')]('\x0a')[_0x423761(0x30b,'\x51\x70\x6f\x4c')](-(-0x1ee1+0xbd6+-0x19*-0xd3));for(let _0x4315e8=_0x17fbbd['\x6c\x65\x6e\x67\x74\x68']-(-0x22ec+0xd86*-0x2+0x3df9);_0x150f53['\x61\x5a\x47\x5a\x69'](_0x4315e8,-0xe*0x7a+0xba8+-0x4fc);_0x4315e8--){const _0x270336=_0x17fbbd[_0x4315e8][_0x423761(0x55b,'\x48\x6d\x74\x4d')]();if(!_0x270336)continue;if(!_0x270336[_0x423761(0x1f6,'\x66\x4c\x65\x47')](_0x150f53[_0x423761(0x51b,'\x52\x40\x52\x65')])||!_0x270336[_0x423761(0x25b,'\x4e\x70\x6e\x7a')](_0x423761(0x24e,'\x58\x39\x49\x51')+'\x6e\x45\x76\x65\x6e\x74'))continue;try{const _0x5f245c=JSON[_0x423761(0x29e,'\x63\x30\x6e\x66')](_0x270336);if(!_0x5f245c||_0x150f53[_0x423761(0x8a4,'\x4e\x70\x6e\x7a')](_0x5f245c[_0x423761(0x2eb,'\x44\x6b\x41\x4f')],'\x45\x76\x6f\x6c\x75\x74\x69\x6f'+_0x423761(0x4f6,'\x75\x45\x5a\x6f')))continue;const _0x166e81=_0x5f245c[_0x423761(0x548,'\x63\x30\x6e\x66')]&&_0x150f53['\x59\x55\x78\x76\x79'](typeof _0x5f245c[_0x423761(0x873,'\x50\x61\x6e\x76')],_0x423761(0x7d4,'\x41\x31\x43\x39'))?_0x5f245c[_0x423761(0x400,'\x41\x31\x43\x39')]:null;if(!_0x166e81)continue;const _0x2ec5d4=_0x166e81['\x73\x74\x61\x74\x75\x73']===_0x150f53[_0x423761(0x3f0,'\x24\x6a\x6c\x23')]||_0x150f53[_0x423761(0x629,'\x4b\x36\x25\x33')](_0x166e81[_0x423761(0x394,'\x4a\x74\x4a\x4f')],_0x150f53[_0x423761(0x5c0,'\x4a\x26\x39\x41')])?_0x166e81[_0x423761(0x598,'\x50\x61\x6e\x76')]:null,_0x2d39bb=Number[_0x423761(0x3bd,'\x66\x4c\x65\x47')](_0x150f53[_0x423761(0x37a,'\x6c\x57\x4d\x30')](Number,_0x166e81[_0x423761(0x3a5,'\x5b\x36\x72\x37')]))?_0x570cb5(_0x150f53[_0x423761(0x277,'\x68\x33\x64\x45')](Number,_0x166e81[_0x423761(0x885,'\x47\x46\x75\x74')])):null;if(!_0x2ec5d4&&_0x150f53[_0x423761(0x3c1,'\x5b\x2a\x25\x62')](_0x2d39bb,null))continue;return{'\x73\x74\x61\x74\x75\x73':_0x2ec5d4||(_0x150f53[_0x423761(0x698,'\x6f\x68\x54\x38')](_0x2d39bb,null)&&_0x2d39bb>=-0x156*0xe+-0x2019+-0xf*-0x363+0.5?_0x150f53[_0x423761(0x645,'\x70\x46\x25\x2a')]:_0x423761(0x742,'\x70\x30\x56\x79')),'\x73\x63\x6f\x72\x65':_0x2d39bb!=null?_0x2d39bb:_0x150f53[_0x423761(0x7e1,'\x43\x6a\x77\x54')](_0x2ec5d4,_0x150f53[_0x423761(0x235,'\x47\x46\x75\x74')])?0x9b7+-0x172e+0xd77+0.75:-0x269+-0xfe+-0x1*-0x367+0.25,'\x6e\x6f\x74\x65':_0x150f53['\x4f\x45\x6e\x59\x76']};}catch(_0x336686){if(_0x150f53[_0x423761(0x838,'\x44\x6c\x68\x4d')]===_0x423761(0x261,'\x63\x4f\x21\x4d'))return null;else continue;}}return null;}const _0x344b9c=new Set([_0x24f893(0x242,'\x57\x38\x6b\x49')+_0x24f893(0x298,'\x4a\x26\x39\x41')+_0x24f893(0x554,'\x46\x46\x5e\x25'),_0x24f893(0x43f,'\x78\x56\x4c\x45')+'\x69\x73\x73\x69\x6e\x67','\x65\x76\x6f\x6c\x75\x74\x69\x6f'+_0x24f893(0x507,'\x50\x29\x47\x65')+_0x24f893(0x5ff,'\x68\x33\x64\x45'),_0x24f893(0x526,'\x47\x46\x75\x74')+_0x24f893(0x712,'\x63\x4f\x21\x4d')+'\x74\x65',_0x24f893(0x58f,'\x70\x30\x56\x79')+_0x24f893(0x7c7,'\x50\x29\x47\x65')+_0x24f893(0x727,'\x68\x7a\x7a\x21')+'\x64']);function _0x27e4fb({baselineObserved:_0x4b4af0,currentObserved:_0x3996bc,signals:_0x591644}){const _0x214ea5=_0x24f893,_0x4bfd18={'\x6f\x52\x76\x68\x67':function(_0x4e4596,_0x2d5052){return _0x4e4596(_0x2d5052);},'\x71\x55\x55\x69\x47':function(_0x55d8f0,_0x52f962){return _0x55d8f0<=_0x52f962;},'\x73\x57\x45\x75\x4c':function(_0x48b75e,_0x616616){return _0x48b75e/_0x616616;},'\x44\x47\x7a\x54\x48':function(_0x185a00,_0x542af4){return _0x185a00-_0x542af4;},'\x42\x4b\x7a\x53\x74':function(_0x349dea,_0x2e89f4){return _0x349dea*_0x2e89f4;},'\x4d\x54\x59\x5a\x77':function(_0x1e810e,_0x5b10d2){return _0x1e810e*_0x5b10d2;},'\x56\x44\x61\x4a\x70':function(_0xa757f0,_0x53fe79){return _0xa757f0*_0x53fe79;},'\x73\x55\x5a\x74\x76':function(_0x28426f,_0x22ae87){return _0x28426f===_0x22ae87;},'\x43\x7a\x59\x51\x4e':_0x214ea5(0x206,'\x48\x6d\x74\x4d'),'\x47\x45\x6f\x72\x4d':_0x214ea5(0x485,'\x6c\x23\x7a\x76'),'\x45\x4a\x6f\x72\x67':function(_0x26e7d0,_0x282a7a){return _0x26e7d0(_0x282a7a);},'\x61\x73\x4b\x75\x6d':_0x214ea5(0x861,'\x4f\x4b\x4b\x62')+_0x214ea5(0x2e2,'\x4a\x74\x4a\x4f')+'\x68','\x6c\x67\x77\x55\x73':'\x63\x75\x72\x72\x69\x63\x75\x6c'+_0x214ea5(0x680,'\x56\x30\x35\x5a')+'\x74\x3a','\x4a\x4a\x58\x70\x6c':function(_0x20c27e,_0x504dbc){return _0x20c27e(_0x504dbc);},'\x76\x47\x6e\x65\x6c':function(_0x1479c2,_0x2e3ea8){return _0x1479c2>_0x2e3ea8;},'\x61\x49\x65\x6b\x68':function(_0x4578c7,_0x1e0c0c){return _0x4578c7/_0x1e0c0c;},'\x4e\x4a\x56\x6d\x6b':function(_0x5234a1,_0x4511f8){return _0x5234a1*_0x4511f8;},'\x4f\x71\x75\x5a\x5a':function(_0x5aa0aa,_0x2e8294){return _0x5aa0aa(_0x2e8294);},'\x74\x45\x78\x6d\x63':function(_0x3ed0c4,_0x478e53){return _0x3ed0c4>=_0x478e53;},'\x53\x43\x6a\x59\x72':function(_0x362f28,_0x57b5dd){return _0x362f28<_0x57b5dd;},'\x6b\x6c\x55\x74\x75':function(_0x5dc16d,_0x3b628f){return _0x5dc16d===_0x3b628f;},'\x6e\x66\x69\x58\x62':_0x214ea5(0x844,'\x46\x46\x5e\x25'),'\x79\x62\x51\x4a\x52':function(_0x5d5e35,_0x58c503){return _0x5d5e35>=_0x58c503;},'\x45\x6a\x4c\x41\x48':_0x214ea5(0x23a,'\x65\x76\x39\x75'),'\x54\x4a\x79\x6e\x6b':_0x214ea5(0x6f1,'\x63\x4f\x21\x4d'),'\x4c\x65\x63\x56\x6a':function(_0x1a6752,_0x46f55d){return _0x1a6752/_0x46f55d;},'\x6a\x4c\x4b\x5a\x6a':function(_0x3c9f52,_0x38a841){return _0x3c9f52*_0x38a841;}};let _0x1299df=-0x1*-0x33b+0x188d+-0x1bc8;const _0x2da24e=Array[_0x214ea5(0x483,'\x48\x6d\x74\x4d')](_0x591644)?_0x591644:[],_0x4f285c=_0x4b4af0&&Number[_0x214ea5(0x6ec,'\x50\x64\x35\x53')](_0x4bfd18[_0x214ea5(0x599,'\x52\x40\x52\x65')](Number,_0x4b4af0[_0x214ea5(0x6c1,'\x41\x31\x43\x39')+_0x214ea5(0x391,'\x50\x64\x35\x53')]))?Number(_0x4b4af0[_0x214ea5(0x327,'\x65\x76\x39\x75')+_0x214ea5(0x6d8,'\x63\x30\x6e\x66')]):0x1ebd+0x1d4+0x2091*-0x1,_0x1e84d0=_0x2da24e[_0x214ea5(0x2db,'\x70\x30\x56\x79')](function(_0x2bbfdc){const _0x3868ad=_0x214ea5;if(_0x4bfd18[_0x3868ad(0x3b8,'\x4e\x70\x6e\x7a')](_0x4bfd18[_0x3868ad(0x2ea,'\x44\x6b\x41\x4f')],_0x4bfd18[_0x3868ad(0x36f,'\x6f\x68\x54\x38')])){const _0x2e43c5=UQuGui[_0x3868ad(0x825,'\x50\x64\x35\x53')](_0xd7045c,_0x5104c9);if(!_0x303b07[_0x3868ad(0x3bf,'\x50\x61\x6e\x76')](_0x2e43c5)||UQuGui[_0x3868ad(0x49b,'\x63\x30\x6e\x66')](_0x2e43c5,-0x183a+0xc3f+-0xbfb*-0x1))return 0xdd6+-0x4a*0x3+-0xcf7;const _0x27c3da=_0x745279[_0x3868ad(0x73f,'\x4b\x64\x78\x78')](_0x1162e6);if(!_0x17d871[_0x3868ad(0x3bf,'\x50\x61\x6e\x76')](_0x27c3da))return-0x1e93*-0x1+0x683+-0xb*0x35f;const _0x56d3d4=UQuGui[_0x3868ad(0x2c3,'\x4b\x36\x25\x33')](UQuGui[_0x3868ad(0x86e,'\x5b\x2a\x25\x62')](_0x3e0674['\x6e\x6f\x77'](),_0x27c3da),UQuGui[_0x3868ad(0x69b,'\x51\x70\x6f\x4c')](UQuGui[_0x3868ad(0x78e,'\x6c\x57\x4d\x30')](UQuGui[_0x3868ad(0x791,'\x46\x46\x5e\x25')](0x952*0x1+-0x2*0x7ed+-0x29c*-0x4,-0x585+0x901+0x1a*-0x20),-0x16ab+-0x4f+0x1736),0x1b6f+-0x1a79+0xde*-0x1));if(!_0xc4901b[_0x3868ad(0x6c6,'\x4f\x35\x66\x62')](_0x56d3d4)||_0x56d3d4<=0x215a*-0x1+-0xcef+0x2e49)return-0x1d54+-0x1419+0x316e;return _0x23a922[_0x3868ad(0x63b,'\x4a\x74\x4a\x4f')](-0x6ac+0x22b6+0x2*-0xe05+0.5,UQuGui[_0x3868ad(0x48a,'\x71\x4b\x61\x4b')](_0x56d3d4,_0x2e43c5));}else return!_0x344b9c[_0x3868ad(0x4cc,'\x70\x23\x36\x65')](_0x4bfd18[_0x3868ad(0x307,'\x6f\x68\x54\x38')](String,_0x2bbfdc));});if(_0x4bfd18[_0x214ea5(0x609,'\x4a\x26\x39\x41')](_0x1e84d0['\x6c\x65\x6e\x67\x74\x68'],0x9c2+-0x19b4+0xff2)&&_0x4bfd18[_0x214ea5(0x776,'\x4e\x70\x6e\x7a')](_0x2da24e['\x6c\x65\x6e\x67\x74\x68'],0x2*-0xdc4+-0x1c25+0x37ad)){const _0x19241b=_0x4bfd18[_0x214ea5(0x762,'\x4a\x74\x4a\x4f')](_0x1e84d0[_0x214ea5(0x829,'\x58\x39\x49\x51')],_0x2da24e[_0x214ea5(0x4cd,'\x70\x46\x25\x2a')]);_0x1299df+=Math[_0x214ea5(0x64f,'\x66\x4c\x65\x47')](-0x31d+0x26fa*-0x1+0x19*0x1af+0.08,_0x4bfd18['\x4e\x4a\x56\x6d\x6b'](_0x19241b,-0xb94+0x1*0x134f+-0x7bb+0.08));}try{const _0x42fa64=_0x4bfd18[_0x214ea5(0x7ac,'\x51\x70\x6f\x4c')](_0x1c2175,-0x96*-0x7+-0x69b+0x1*0x2b3),_0x36bc67=[];for(let _0x27cd29=_0x4bfd18[_0x214ea5(0x58b,'\x50\x29\x47\x65')](_0x42fa64['\x6c\x65\x6e\x67\x74\x68'],-0x1*-0x125d+-0x8*0x66+-0xf2c);_0x4bfd18[_0x214ea5(0x35a,'\x52\x40\x52\x65')](_0x27cd29,0x1e88*0x1+-0x1*-0x1139+-0x2fc1)&&_0x4bfd18[_0x214ea5(0x404,'\x48\x6d\x74\x4d')](_0x36bc67[_0x214ea5(0x5b9,'\x6c\x23\x7a\x76')],0xc*-0xfb+0x19ac*0x1+-0xde3);_0x27cd29--){const _0x43b0c2=_0x42fa64[_0x27cd29];if(_0x43b0c2&&_0x4bfd18['\x6b\x6c\x55\x74\x75'](_0x43b0c2[_0x214ea5(0x59e,'\x52\x40\x52\x65')],_0x4bfd18['\x6e\x66\x69\x58\x62'])&&_0x43b0c2['\x6f\x75\x74\x63\x6f\x6d\x65'])_0x36bc67[_0x214ea5(0x5e1,'\x5b\x2a\x25\x62')](_0x43b0c2[_0x214ea5(0x873,'\x50\x61\x6e\x76')][_0x214ea5(0x241,'\x63\x30\x6e\x66')]);}if(_0x4bfd18['\x79\x62\x51\x4a\x52'](_0x36bc67[_0x214ea5(0x4cd,'\x70\x46\x25\x2a')],-0x18ec+-0x21*-0x1d+-0x7*-0x307)){if(_0x4bfd18['\x45\x6a\x4c\x41\x48']===_0x4bfd18[_0x214ea5(0x734,'\x4a\x74\x4a\x4f')]){const _0x5554fc={};return _0x5554fc[_0x214ea5(0x5d1,'\x50\x29\x47\x65')+_0x214ea5(0x33a,'\x50\x61\x6e\x76')]=!![],_0x5554fc[_0x214ea5(0x5a4,'\x70\x46\x25\x2a')]=UQuGui[_0x214ea5(0x68b,'\x48\x6d\x74\x4d')],_0x5554fc;}else{const _0x50886d=_0x36bc67[_0x214ea5(0x264,'\x4b\x28\x32\x23')](function(_0x5eb050){const _0x30ca78=_0x214ea5;return _0x4bfd18[_0x30ca78(0x448,'\x4b\x28\x32\x23')](_0x5eb050,'\x73\x75\x63\x63\x65\x73\x73');})[_0x214ea5(0x6bf,'\x57\x45\x5e\x4e')],_0x2d2807=_0x4bfd18[_0x214ea5(0x7c4,'\x4b\x36\x25\x33')](_0x50886d,_0x36bc67[_0x214ea5(0x58c,'\x57\x38\x6b\x49')])-(-0x17e7+0x8*-0x33b+0x31bf+0.5);_0x1299df+=Math[_0x214ea5(0x779,'\x50\x61\x6e\x76')](-(-0x70*-0x4+-0x71*-0x3e+-0x1d1e+0.06),Math[_0x214ea5(0x6ee,'\x4e\x70\x6e\x7a')](0xfdb+0x13f8+-0xbf1*0x3+0.06,_0x4bfd18[_0x214ea5(0x563,'\x70\x23\x36\x65')](_0x2d2807,0x8f8*-0x1+0x4f*0x1+0x8a9*0x1+0.12)));}}}catch(_0x5d8c92){}const _0x510ba6=_0x2da24e[_0x214ea5(0x7a7,'\x63\x6f\x5e\x24')](function(_0x5e1e41){const _0x39c81e=_0x214ea5;return String(_0x5e1e41)['\x73\x74\x61\x72\x74\x73\x57\x69'+'\x74\x68'](_0x4bfd18[_0x39c81e(0x435,'\x72\x76\x61\x5d')]);});if(_0x510ba6)_0x1299df+=0x1*0x12b2+-0x1a2e+0x77c+0.04;return{'\x62\x6f\x6f\x73\x74':Math[_0x214ea5(0x4c2,'\x66\x4c\x65\x47')](-(-0xe*0x8e+-0x1f60+0x2724+0.1),Math[_0x214ea5(0x459,'\x50\x64\x35\x53')](0x2218+0xf64+0xc5f*-0x4+0.1,_0x1299df)),'\x73\x69\x67\x6e\x61\x6c\x5f\x63\x6c\x61\x72\x69\x74\x79':_0x2da24e[_0x214ea5(0x7f7,'\x4b\x36\x25\x33')]>-0x10c8*0x1+-0x1133+0x21fb?_0x4bfd18[_0x214ea5(0x632,'\x4a\x74\x4a\x4f')](_0x1e84d0[_0x214ea5(0x238,'\x66\x4c\x65\x47')],_0x2da24e[_0x214ea5(0x66b,'\x24\x6a\x6c\x23')]):-0xfc4+-0x47*-0x67+-0x1*0xccd,'\x74\x72\x61\x6a\x65\x63\x74\x6f\x72\x79\x5f\x74\x72\x65\x6e\x64':_0x1299df,'\x66\x72\x6f\x6e\x74\x69\x65\x72\x5f\x74\x6f\x75\x63\x68\x65\x64':_0x510ba6};}function _0x28c018({prevHadError:_0x55b66f,currentHasError:_0x12360b,baselineObserved:_0x654137,currentObserved:_0x23eef8,signals:_0x1630f7}){const _0x3a1358=_0x24f893,_0x59cf6c={'\x72\x76\x4d\x43\x68':function(_0x4332f3,_0x19982e){return _0x4332f3(_0x19982e);},'\x55\x53\x6f\x6a\x7a':_0x3a1358(0x5ec,'\x6c\x23\x7a\x76'),'\x45\x49\x44\x47\x7a':function(_0x7f6f4e,_0x5e0ffa){return _0x7f6f4e(_0x5e0ffa);},'\x6a\x42\x76\x43\x43':function(_0x43a90c,_0xce5e25){return _0x43a90c(_0xce5e25);},'\x49\x73\x6b\x4f\x43':function(_0x315d09,_0x165eae){return _0x315d09!=_0x165eae;},'\x67\x75\x74\x77\x50':function(_0x34a1a4,_0x4fa8af){return _0x34a1a4!==_0x4fa8af;},'\x4b\x79\x44\x41\x78':_0x3a1358(0x4b5,'\x4b\x28\x32\x23'),'\x75\x4e\x4f\x4c\x4e':function(_0x831dc9,_0x1cf13f){return _0x831dc9(_0x1cf13f);},'\x68\x50\x63\x55\x77':function(_0x42dfe1,_0x60ede6){return _0x42dfe1(_0x60ede6);},'\x54\x43\x65\x69\x63':function(_0x11eb96,_0x46c299){return _0x11eb96(_0x46c299);},'\x6f\x53\x46\x50\x4f':function(_0x5294e8,_0xd66ecb){return _0x5294e8(_0xd66ecb);},'\x4b\x59\x46\x4e\x45':function(_0x4dfa4a,_0x56a0e6){return _0x4dfa4a!=_0x56a0e6;},'\x63\x68\x44\x6e\x49':function(_0x564531,_0x25b16d){return _0x564531>_0x25b16d;},'\x4a\x48\x64\x74\x58':function(_0x297b74,_0x39f209){return _0x297b74/_0x39f209;},'\x72\x46\x52\x42\x51':function(_0x43fd93,_0x4fccda){return _0x43fd93-_0x4fccda;},'\x72\x54\x71\x67\x4f':function(_0x44ed06,_0x3bbc7f){return _0x44ed06*_0x3bbc7f;}},_0x2af483=_0x23eef8&&_0x23eef8[_0x3a1358(0x408,'\x71\x4b\x61\x4b')]&&(_0x23eef8[_0x3a1358(0x3ff,'\x50\x61\x6e\x76')][_0x3a1358(0x46d,'\x63\x4f\x21\x4d')+_0x3a1358(0x3d1,'\x4f\x4b\x4b\x62')+_0x3a1358(0x64a,'\x70\x30\x56\x79')]||_0x23eef8[_0x3a1358(0x208,'\x24\x6a\x6c\x23')][_0x3a1358(0x817,'\x4b\x64\x78\x78')+_0x3a1358(0x71c,'\x56\x30\x35\x5a')])?_0x23eef8['\x65\x76\x69\x64\x65\x6e\x63\x65']:null,_0x348936=_0x2af483?_0x59cf6c[_0x3a1358(0x65f,'\x73\x37\x75\x4e')](String,_0x2af483[_0x3a1358(0x3e9,'\x6b\x70\x71\x4c')+_0x3a1358(0x40a,'\x30\x35\x70\x72')+_0x3a1358(0x6e3,'\x66\x4c\x65\x47')]||'')+'\x0a'+_0x59cf6c[_0x3a1358(0x7fe,'\x4e\x70\x6e\x7a')](String,_0x2af483[_0x3a1358(0x35c,'\x30\x35\x70\x72')+_0x3a1358(0x525,'\x65\x76\x39\x75')]||''):'',_0x516764=_0x59cf6c[_0x3a1358(0x2a3,'\x68\x7a\x7a\x21')](_0x343f79,_0x348936);if(_0x516764)return _0x516764;const _0x461171={};_0x461171[_0x3a1358(0x3b6,'\x57\x45\x5e\x4e')+_0x3a1358(0x429,'\x44\x6b\x41\x4f')]=_0x55b66f,_0x461171[_0x3a1358(0x890,'\x41\x31\x43\x39')+_0x3a1358(0x223,'\x43\x6a\x77\x54')]=_0x12360b;const _0x127930=_0x59cf6c[_0x3a1358(0x84e,'\x47\x46\x75\x74')](_0x3af495,_0x461171),_0x21b01b=_0x654137&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x59cf6c[_0x3a1358(0x696,'\x75\x45\x5a\x6f')](Number,_0x654137[_0x3a1358(0x22d,'\x78\x56\x4c\x45')+_0x3a1358(0x3db,'\x30\x35\x70\x72')+'\x6e\x74']))?Number(_0x654137[_0x3a1358(0x221,'\x50\x64\x35\x53')+_0x3a1358(0x7d7,'\x66\x4c\x65\x47')+'\x6e\x74']):null,_0x536b8f=_0x23eef8&&Number[_0x3a1358(0x2ab,'\x65\x76\x39\x75')](_0x59cf6c[_0x3a1358(0x30a,'\x78\x56\x4c\x45')](Number,_0x23eef8[_0x3a1358(0x876,'\x50\x61\x6e\x76')+'\x72\x72\x6f\x72\x5f\x63\x6f\x75'+'\x6e\x74']))?Number(_0x23eef8[_0x3a1358(0x51c,'\x6f\x68\x54\x38')+_0x3a1358(0x1f1,'\x68\x7a\x7a\x21')+'\x6e\x74']):null;let _0x1362e0=_0x127930['\x73\x63\x6f\x72\x65'];if(_0x59cf6c[_0x3a1358(0x457,'\x57\x45\x5e\x4e')](_0x21b01b,null)&&_0x536b8f!=null){if(_0x59cf6c[_0x3a1358(0x488,'\x43\x6a\x77\x54')](_0x3a1358(0x42e,'\x63\x6f\x5e\x24'),_0x59cf6c[_0x3a1358(0x2ce,'\x46\x46\x5e\x25')])){const _0x4c2d40=_0x21b01b-_0x536b8f;_0x1362e0+=Math[_0x3a1358(0x2b6,'\x50\x64\x35\x53')](-(-0x1b11+0x1f21*-0x1+0x1366*0x3+0.12),Math[_0x3a1358(0x658,'\x5b\x2a\x25\x62')](-0x1c3a+0x1*0xf17+0xd23+0.12,_0x4c2d40/(0x1d08+0x131e+-0x2ff4)));}else{const _0x2de89d=_0x47745b[_0x3a1358(0x42a,'\x56\x30\x35\x5a')](_0x2b02e1)?_0x1abc6c:[];for(const _0x2707d0 of _0x2de89d){const _0x3ff034=FUkGZB[_0x3a1358(0x82e,'\x44\x51\x24\x40')](_0x32b1f6,_0x2707d0||'');if(_0x3ff034[_0x3a1358(0x353,'\x30\x35\x70\x72')+'\x74\x68']('\x65\x72\x72\x73\x69\x67\x3a'))return _0x4ffa95(_0x3ff034[_0x3a1358(0x71b,'\x50\x61\x6e\x76')](FUkGZB[_0x3a1358(0x4e6,'\x4f\x35\x66\x62')][_0x3a1358(0x6c8,'\x43\x6a\x77\x54')]));}return null;}}const _0x345286=_0x654137&&Number[_0x3a1358(0x48f,'\x73\x37\x75\x4e')](_0x59cf6c['\x75\x4e\x4f\x4c\x4e'](Number,_0x654137['\x73\x63\x61\x6e\x5f\x6d\x73']))?_0x59cf6c[_0x3a1358(0x82d,'\x70\x46\x25\x2a')](Number,_0x654137[_0x3a1358(0x4ed,'\x75\x45\x5a\x6f')]):null,_0x40e237=_0x23eef8&&Number[_0x3a1358(0x3a0,'\x4a\x74\x4a\x4f')](_0x59cf6c[_0x3a1358(0x4f8,'\x4b\x28\x32\x23')](Number,_0x23eef8[_0x3a1358(0x7a3,'\x4f\x35\x66\x62')]))?_0x59cf6c['\x6f\x53\x46\x50\x4f'](Number,_0x23eef8[_0x3a1358(0x67b,'\x4b\x28\x32\x23')]):null;if(_0x59cf6c[_0x3a1358(0x4c3,'\x65\x76\x39\x75')](_0x345286,null)&&_0x59cf6c[_0x3a1358(0x4b0,'\x44\x6c\x68\x4d')](_0x40e237,null)&&_0x59cf6c[_0x3a1358(0x42d,'\x68\x33\x64\x45')](_0x345286,0x7f8+-0x1c06+0x140e)){const _0x2458a6=_0x59cf6c[_0x3a1358(0x2fd,'\x50\x29\x47\x65')](_0x59cf6c[_0x3a1358(0x860,'\x50\x29\x47\x65')](_0x345286,_0x40e237),_0x345286);_0x1362e0+=Math[_0x3a1358(0x60c,'\x65\x76\x39\x75')](-(-0xcc6+-0x7*-0x4b2+-0x4*0x506+0.06),Math[_0x3a1358(0x75e,'\x30\x35\x70\x72')](0x2596+0x4*-0x805+-0x582+0.06,_0x2458a6));}const _0x2b83aa={};_0x2b83aa[_0x3a1358(0x57c,'\x67\x56\x36\x28')+_0x3a1358(0x5ce,'\x67\x56\x36\x28')]=_0x654137,_0x2b83aa[_0x3a1358(0x701,'\x68\x7a\x7a\x21')+_0x3a1358(0x7c1,'\x57\x45\x5e\x4e')]=_0x23eef8,_0x2b83aa[_0x3a1358(0x545,'\x4b\x28\x32\x23')]=_0x1630f7;const _0x35c5fe=_0x59cf6c[_0x3a1358(0x38d,'\x71\x4b\x61\x4b')](_0x27e4fb,_0x2b83aa);return _0x1362e0+=_0x35c5fe[_0x3a1358(0x7a9,'\x73\x37\x75\x4e')],{'\x73\x74\x61\x74\x75\x73':_0x127930[_0x3a1358(0x2d7,'\x4b\x28\x32\x23')],'\x73\x63\x6f\x72\x65':_0x570cb5(_0x1362e0),'\x6e\x6f\x74\x65':_0x127930[_0x3a1358(0x53e,'\x75\x45\x5a\x6f')]+(_0x3a1358(0x440,'\x43\x6a\x77\x54')+_0x3a1358(0x7d5,'\x24\x6a\x6c\x23')+_0x3a1358(0x445,'\x5b\x2a\x25\x62')+_0x3a1358(0x5de,'\x63\x30\x6e\x66')),'\x70\x72\x65\x64\x69\x63\x74\x69\x76\x65':{'\x73\x69\x67\x6e\x61\x6c\x5f\x63\x6c\x61\x72\x69\x74\x79':_0x59cf6c[_0x3a1358(0x442,'\x57\x38\x6b\x49')](Math[_0x3a1358(0x837,'\x68\x33\x64\x45')](_0x59cf6c['\x72\x54\x71\x67\x4f'](_0x35c5fe[_0x3a1358(0x3de,'\x24\x6a\x6c\x23')+'\x6c\x61\x72\x69\x74\x79'],0x1ad5*-0x1+0x1370+0xb4d)),-0x8*-0x4cc+0x38c*-0x1+-0x1eec),'\x74\x72\x61\x6a\x65\x63\x74\x6f\x72\x79\x5f\x74\x72\x65\x6e\x64':_0x59cf6c[_0x3a1358(0x7cf,'\x4b\x28\x32\x23')](Math[_0x3a1358(0x491,'\x5b\x2a\x25\x62')](_0x59cf6c[_0x3a1358(0x2c2,'\x63\x6f\x5e\x24')](_0x35c5fe[_0x3a1358(0x86d,'\x44\x6b\x41\x4f')+_0x3a1358(0x6bb,'\x51\x70\x6f\x4c')],0xaf9+-0x1*0x139+-0x5d8)),0x2e*-0x93+-0x133*-0x6+0x1720),'\x66\x72\x6f\x6e\x74\x69\x65\x72\x5f\x74\x6f\x75\x63\x68\x65\x64':_0x35c5fe[_0x3a1358(0x848,'\x44\x6c\x68\x4d')+_0x3a1358(0x54f,'\x51\x70\x6f\x4c')]}};}function _0x39f257({signalKey:_0x31ffa8,signals:_0x4a02c7,geneId:_0x42a02a,geneCategory:_0x1ce1c7,outcomeEventId:_0x322d71,halfLifeDays:_0x46e075}){const _0x34fe0b=_0x24f893,_0x5c1632={'\x73\x47\x63\x68\x50':function(_0x27b5d7,_0x5a935c){return _0x27b5d7(_0x5a935c);},'\x6f\x74\x49\x4d\x68':function(_0x59b324,_0x5b0b62,_0x432467){return _0x59b324(_0x5b0b62,_0x432467);},'\x68\x53\x54\x4b\x56':function(_0x24db38){return _0x24db38();},'\x78\x4f\x42\x45\x68':_0x34fe0b(0x304,'\x5b\x2a\x25\x62')+_0x34fe0b(0x6b9,'\x43\x6a\x77\x54'),'\x53\x49\x67\x42\x74':function(_0x4e08f9,_0x6ce25a){return _0x4e08f9||_0x6ce25a;},'\x51\x6a\x51\x55\x68':function(_0xd1009b,_0x3708dc){return _0xd1009b||_0x3708dc;}},_0x5345a9=_0x1c2175(-0x17e4+0xf24+0x1090),_0x75103f=_0x5c1632[_0x34fe0b(0x4e5,'\x50\x64\x35\x53')](_0xa9bd7b,_0x5345a9),_0xbee954=_0x31ffa8+'\x3a\x3a'+_0x42a02a,_0x1eb9a1={};_0x1eb9a1['\x73\x75\x63\x63\x65\x73\x73']=0x0,_0x1eb9a1['\x66\x61\x69\x6c']=0x0,_0x1eb9a1['\x6c\x61\x73\x74\x5f\x74\x73']=null;const _0x6c0a2b=_0x75103f[_0x34fe0b(0x481,'\x6f\x68\x54\x38')](_0xbee954)||_0x1eb9a1,_0x2e6507={};_0x2e6507[_0x34fe0b(0x7df,'\x44\x6c\x68\x4d')+_0x34fe0b(0x26b,'\x50\x29\x47\x65')]=_0x46e075;const _0x583dbd=_0x5c1632[_0x34fe0b(0x3f3,'\x4f\x35\x66\x62')](_0x177b01,_0x6c0a2b,_0x2e6507),_0x1924af=_0x5c1632[_0x34fe0b(0x755,'\x44\x51\x24\x40')](_0xd91d1c);return{'\x74\x79\x70\x65':_0x5c1632[_0x34fe0b(0x2ff,'\x50\x29\x47\x65')],'\x6b\x69\x6e\x64':'\x63\x6f\x6e\x66\x69\x64\x65\x6e'+'\x63\x65\x5f\x65\x64\x67\x65','\x69\x64':_0x34fe0b(0x2f9,'\x46\x46\x5e\x25')+Date[_0x34fe0b(0x7af,'\x67\x56\x36\x28')]()+'\x5f'+_0x5c1632[_0x34fe0b(0x386,'\x4a\x74\x4a\x4f')](_0x41384f,_0x31ffa8+'\x7c'+_0x42a02a+(_0x34fe0b(0x5d5,'\x24\x6a\x6c\x23')+_0x34fe0b(0x73d,'\x75\x45\x5a\x6f'))+_0x1924af),'\x74\x73':_0x1924af,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0x31ffa8,'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x34fe0b(0x6a1,'\x30\x35\x70\x72')](_0x4a02c7)?_0x4a02c7:[]},'\x67\x65\x6e\x65':{'\x69\x64':_0x42a02a,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x5c1632[_0x34fe0b(0x405,'\x70\x46\x25\x2a')](_0x1ce1c7,null)},'\x65\x64\x67\x65':{'\x73\x69\x67\x6e\x61\x6c\x5f\x6b\x65\x79':_0x31ffa8,'\x67\x65\x6e\x65\x5f\x69\x64':_0x42a02a},'\x73\x74\x61\x74\x73':{'\x73\x75\x63\x63\x65\x73\x73':_0x5c1632[_0x34fe0b(0x229,'\x6b\x70\x71\x4c')](Number,_0x6c0a2b[_0x34fe0b(0x54b,'\x68\x33\x64\x45')])||-0x1bdb+-0x19f7+0x35d2,'\x66\x61\x69\x6c':_0x5c1632[_0x34fe0b(0x33c,'\x75\x45\x5a\x6f')](Number,_0x6c0a2b[_0x34fe0b(0x5f6,'\x5b\x36\x72\x37')])||0x2*-0xe5f+-0x1*-0x2dd+0x7d*0x35,'\x61\x74\x74\x65\x6d\x70\x74\x73':Number(_0x583dbd[_0x34fe0b(0x695,'\x44\x6c\x68\x4d')])||0xfb0+0x1337+0x1*-0x22e7,'\x70':_0x583dbd['\x70'],'\x64\x65\x63\x61\x79\x5f\x77\x65\x69\x67\x68\x74':_0x583dbd['\x77'],'\x76\x61\x6c\x75\x65':_0x583dbd[_0x34fe0b(0x5be,'\x30\x24\x52\x66')],'\x68\x61\x6c\x66\x5f\x6c\x69\x66\x65\x5f\x64\x61\x79\x73':_0x46e075,'\x75\x70\x64\x61\x74\x65\x64\x5f\x61\x74':_0x1924af},'\x64\x65\x72\x69\x76\x65\x64\x5f\x66\x72\x6f\x6d':{'\x6f\x75\x74\x63\x6f\x6d\x65\x5f\x65\x76\x65\x6e\x74\x5f\x69\x64':_0x5c1632[_0x34fe0b(0x469,'\x56\x30\x35\x5a')](_0x322d71,null)}};}function _0x11b4a1({geneId:_0x2809bc,geneCategory:_0x1e81a1,outcomeEventId:_0xff6fad,halfLifeDays:_0x98fd1b}){const _0x4abbdd=_0x24f893,_0x3effdf={'\x79\x54\x63\x5a\x6b':function(_0x2d605e,_0x33dbb4){return _0x2d605e(_0x33dbb4);},'\x6a\x6f\x65\x69\x4f':function(_0x316866,_0x568563){return _0x316866(_0x568563);},'\x72\x5a\x4b\x68\x78':function(_0x46ec15,_0x2eb076,_0x161b22){return _0x46ec15(_0x2eb076,_0x161b22);},'\x5a\x4e\x70\x5a\x70':function(_0x498258){return _0x498258();},'\x49\x73\x65\x41\x6b':'\x63\x6f\x6e\x66\x69\x64\x65\x6e'+'\x63\x65\x5f\x67\x65\x6e\x65\x5f'+_0x4abbdd(0x66e,'\x47\x46\x75\x74'),'\x65\x70\x53\x4d\x76':function(_0x333395,_0x2983b8){return _0x333395(_0x2983b8);},'\x58\x7a\x63\x51\x6f':function(_0x54c492,_0x5f0fba){return _0x54c492||_0x5f0fba;}},_0x3d9881=_0x3effdf[_0x4abbdd(0x3c9,'\x72\x76\x61\x5d')](_0x1c2175,0x67+0xd89+0x4*-0x188),_0x3327a2=_0x3effdf[_0x4abbdd(0x207,'\x47\x46\x75\x74')](_0x3aab8b,_0x3d9881),_0x212154={};_0x212154[_0x4abbdd(0x676,'\x78\x56\x4c\x45')]=0x0,_0x212154[_0x4abbdd(0x2a4,'\x44\x6b\x41\x4f')]=0x0,_0x212154[_0x4abbdd(0x556,'\x68\x33\x64\x45')]=null;const _0x5b1641=_0x3327a2['\x67\x65\x74'](_0x3effdf[_0x4abbdd(0x40e,'\x46\x46\x5e\x25')](String,_0x2809bc))||_0x212154,_0x4de30b={};_0x4de30b[_0x4abbdd(0x515,'\x4a\x74\x4a\x4f')+_0x4abbdd(0x2da,'\x4f\x4b\x4b\x62')]=_0x98fd1b;const _0x53c68f=_0x3effdf[_0x4abbdd(0x4ef,'\x4b\x36\x25\x33')](_0x177b01,_0x5b1641,_0x4de30b),_0x40598c=_0x3effdf[_0x4abbdd(0x274,'\x43\x6a\x77\x54')](_0xd91d1c);return{'\x74\x79\x70\x65':_0x4abbdd(0x63d,'\x4f\x35\x66\x62')+_0x4abbdd(0x892,'\x5b\x2a\x25\x62'),'\x6b\x69\x6e\x64':_0x3effdf[_0x4abbdd(0x397,'\x6f\x68\x54\x38')],'\x69\x64':_0x4abbdd(0x47e,'\x5b\x2a\x25\x62')+Date['\x6e\x6f\x77']()+'\x5f'+_0x3effdf[_0x4abbdd(0x788,'\x57\x38\x6b\x49')](_0x41384f,_0x2809bc+(_0x4abbdd(0x5a5,'\x63\x4f\x21\x4d')+_0x4abbdd(0x2e4,'\x4b\x36\x25\x33')+_0x4abbdd(0x268,'\x6c\x23\x7a\x76')+'\x7c')+_0x40598c),'\x74\x73':_0x40598c,'\x67\x65\x6e\x65':{'\x69\x64':_0x3effdf[_0x4abbdd(0x40b,'\x4b\x36\x25\x33')](String,_0x2809bc),'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x3effdf[_0x4abbdd(0x7f2,'\x78\x56\x4c\x45')](_0x1e81a1,null)},'\x65\x64\x67\x65':{'\x67\x65\x6e\x65\x5f\x69\x64':_0x3effdf['\x79\x54\x63\x5a\x6b'](String,_0x2809bc)},'\x73\x74\x61\x74\x73':{'\x73\x75\x63\x63\x65\x73\x73':_0x3effdf[_0x4abbdd(0x6b4,'\x78\x56\x4c\x45')](Number,_0x5b1641[_0x4abbdd(0x43d,'\x44\x6c\x68\x4d')])||-0x7cd+0x2*0xa03+-0xc39,'\x66\x61\x69\x6c':_0x3effdf[_0x4abbdd(0x271,'\x44\x51\x24\x40')](Number,_0x5b1641[_0x4abbdd(0x6cf,'\x68\x7a\x7a\x21')])||0x1c6b+0x19d0+-0x1*0x363b,'\x61\x74\x74\x65\x6d\x70\x74\x73':_0x3effdf[_0x4abbdd(0x416,'\x66\x4c\x65\x47')](Number,_0x53c68f[_0x4abbdd(0x3ac,'\x6f\x68\x54\x38')])||0x45d+-0xa7b+0x61e,'\x70':_0x53c68f['\x70'],'\x64\x65\x63\x61\x79\x5f\x77\x65\x69\x67\x68\x74':_0x53c68f['\x77'],'\x76\x61\x6c\x75\x65':_0x53c68f[_0x4abbdd(0x401,'\x41\x31\x43\x39')],'\x68\x61\x6c\x66\x5f\x6c\x69\x66\x65\x5f\x64\x61\x79\x73':_0x98fd1b,'\x75\x70\x64\x61\x74\x65\x64\x5f\x61\x74':_0x40598c},'\x64\x65\x72\x69\x76\x65\x64\x5f\x66\x72\x6f\x6d':{'\x6f\x75\x74\x63\x6f\x6d\x65\x5f\x65\x76\x65\x6e\x74\x5f\x69\x64':_0x3effdf[_0x4abbdd(0x531,'\x68\x33\x64\x45')](_0xff6fad,null)}};}function _0x943145({signals:_0x45fb20,observations:_0x45602b}){const _0x10ad1e=_0x24f893,_0x5b1b5c={'\x62\x74\x4d\x69\x56':_0x10ad1e(0x853,'\x52\x40\x52\x65'),'\x75\x53\x56\x78\x79':function(_0x24072c,_0xa3c46e){return _0x24072c(_0xa3c46e);},'\x50\x6d\x62\x63\x61':function(_0x185cd0,_0x385a8d){return _0x185cd0(_0x385a8d);},'\x6e\x4b\x62\x4d\x6a':function(_0x2f7672){return _0x2f7672();},'\x72\x63\x76\x71\x55':function(_0x274e3b,_0x179c53,_0x25986d){return _0x274e3b(_0x179c53,_0x25986d);},'\x6d\x66\x77\x62\x68':function(_0x5b7314,_0x4df885){return _0x5b7314(_0x4df885);},'\x5a\x70\x67\x49\x6f':function(_0x17c645,_0x282747){return _0x17c645(_0x282747);},'\x45\x57\x6a\x6e\x61':function(_0x46f24d,_0x404cb5){return _0x46f24d||_0x404cb5;},'\x50\x67\x51\x68\x72':_0x10ad1e(0x236,'\x41\x31\x43\x39')+_0x10ad1e(0x7bf,'\x58\x39\x49\x51'),'\x53\x58\x68\x52\x51':'\x28\x6e\x6f\x6e\x65\x29','\x65\x78\x68\x61\x52':function(_0x3d9c8e,_0x3ebfd6){return _0x3d9c8e(_0x3ebfd6);},'\x63\x78\x4f\x78\x66':_0x10ad1e(0x297,'\x6c\x23\x7a\x76'),'\x6c\x4e\x66\x71\x41':function(_0xfe0b6b,_0x42e56e){return _0xfe0b6b(_0x42e56e);},'\x4a\x68\x76\x65\x4a':function(_0x3f66ee,_0x21475c){return _0x3f66ee(_0x21475c);},'\x41\x49\x59\x53\x51':function(_0x523173,_0x5c7632){return _0x523173(_0x5c7632);},'\x55\x4c\x44\x62\x6d':function(_0x5278da,_0x157dcb){return _0x5278da(_0x157dcb);},'\x6b\x46\x56\x57\x61':function(_0x2792ec,_0x222a51){return _0x2792ec(_0x222a51);},'\x6c\x68\x58\x41\x43':function(_0x10922b,_0x56af07){return _0x10922b(_0x56af07);},'\x42\x61\x4b\x65\x55':function(_0x51edaa,_0x5effa0){return _0x51edaa===_0x5effa0;},'\x52\x76\x6f\x79\x77':'\x59\x78\x44\x4a\x52','\x51\x58\x76\x47\x45':_0x10ad1e(0x5e9,'\x6f\x68\x54\x38'),'\x67\x7a\x59\x65\x45':function(_0x23087c,_0x558fc1){return _0x23087c(_0x558fc1);},'\x43\x45\x79\x46\x4e':function(_0x2debd0,_0x5aa42d){return _0x2debd0(_0x5aa42d);},'\x6f\x47\x54\x65\x73':function(_0x1afc69,_0x287666){return _0x1afc69(_0x287666);},'\x79\x69\x61\x68\x6b':function(_0x2ddc88,_0x109be9){return _0x2ddc88(_0x109be9);},'\x6a\x45\x4b\x65\x4b':function(_0x1a4b01,_0x4a67de,_0xaaf24e){return _0x1a4b01(_0x4a67de,_0xaaf24e);}},_0x59b9ff=_0x5b1b5c['\x6e\x4b\x62\x4d\x6a'](_0x5ed1f9),_0x29d610={};_0x29d610[_0x10ad1e(0x6eb,'\x48\x6d\x74\x4d')+_0x10ad1e(0x2bd,'\x72\x76\x61\x5d')]=null;const _0x12add8=_0x5b1b5c['\x72\x63\x76\x71\x55'](_0x1f80a3,_0x59b9ff,_0x29d610),_0xf6e348=_0x12add8&&_0x12add8[_0x10ad1e(0x6ff,'\x44\x6b\x41\x4f')+_0x10ad1e(0x289,'\x50\x64\x35\x53')]?_0x12add8[_0x10ad1e(0x6eb,'\x48\x6d\x74\x4d')+'\x69\x6f\x6e']:null;if(!_0xf6e348||!_0xf6e348[_0x10ad1e(0x31f,'\x44\x51\x24\x40')+'\x64'])return null;if(_0xf6e348[_0x10ad1e(0x322,'\x30\x35\x70\x72')+_0x10ad1e(0x209,'\x4b\x28\x32\x23')])return null;const _0xaf1043=_0x5b1b5c['\x6d\x66\x77\x62\x68'](_0x107c97,_0x45fb20),_0xaa25af=_0x5b1b5c['\x5a\x70\x67\x49\x6f'](_0x28c018,{'\x70\x72\x65\x76\x48\x61\x64\x45\x72\x72\x6f\x72':!!_0xf6e348[_0x10ad1e(0x855,'\x70\x23\x36\x65')+'\x72'],'\x63\x75\x72\x72\x65\x6e\x74\x48\x61\x73\x45\x72\x72\x6f\x72':_0xaf1043,'\x62\x61\x73\x65\x6c\x69\x6e\x65\x4f\x62\x73\x65\x72\x76\x65\x64':_0xf6e348[_0x10ad1e(0x3c3,'\x70\x46\x25\x2a')+_0x10ad1e(0x5b6,'\x6c\x23\x7a\x76')+'\x64']||null,'\x63\x75\x72\x72\x65\x6e\x74\x4f\x62\x73\x65\x72\x76\x65\x64':_0x5b1b5c[_0x10ad1e(0x691,'\x70\x30\x56\x79')](_0x45602b,null),'\x73\x69\x67\x6e\x61\x6c\x73':_0x45fb20}),_0x575c14=_0x5b1b5c[_0x10ad1e(0x68c,'\x6c\x23\x7a\x76')](_0xd91d1c),_0x354bba=_0x1a17ff(_0x45fb20),_0xcb67f6={};_0xcb67f6[_0x10ad1e(0x7d3,'\x41\x31\x43\x39')+_0x10ad1e(0x869,'\x57\x38\x6b\x49')]=0x1e;const _0x40bf9a={'\x74\x79\x70\x65':_0x5b1b5c[_0x10ad1e(0x575,'\x6c\x57\x4d\x30')],'\x6b\x69\x6e\x64':_0x10ad1e(0x716,'\x75\x45\x5a\x6f'),'\x69\x64':_0x10ad1e(0x40d,'\x63\x4f\x21\x4d')+Date[_0x10ad1e(0x7ce,'\x68\x7a\x7a\x21')]()+'\x5f'+_0x41384f(_0xf6e348[_0x10ad1e(0x2d5,'\x52\x40\x52\x65')+'\x64']+(_0x10ad1e(0x749,'\x70\x23\x36\x65')+'\x7c')+_0x575c14),'\x74\x73':_0x575c14,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':String(_0xf6e348[_0x10ad1e(0x66c,'\x50\x29\x47\x65')+'\x65\x79']||_0x5b1b5c[_0x10ad1e(0x822,'\x4f\x35\x66\x62')]),'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x10ad1e(0x792,'\x58\x39\x49\x51')](_0xf6e348['\x73\x69\x67\x6e\x61\x6c\x73'])?_0xf6e348['\x73\x69\x67\x6e\x61\x6c\x73']:[],'\x65\x72\x72\x6f\x72\x5f\x73\x69\x67\x6e\x61\x74\x75\x72\x65':_0x354bba||null},'\x6d\x75\x74\x61\x74\x69\x6f\x6e':_0xf6e348['\x6d\x75\x74\x61\x74\x69\x6f\x6e'+_0x10ad1e(0x5f4,'\x58\x39\x49\x51')]||_0xf6e348[_0x10ad1e(0x58d,'\x4b\x64\x78\x78')+_0x10ad1e(0x3c7,'\x70\x46\x25\x2a')+'\x79']||_0xf6e348[_0x10ad1e(0x5d8,'\x30\x24\x52\x66')+_0x10ad1e(0x89f,'\x57\x45\x5e\x4e')+_0x10ad1e(0x3ae,'\x68\x33\x64\x45')]?{'\x69\x64':_0xf6e348[_0x10ad1e(0x836,'\x46\x46\x5e\x25')+_0x10ad1e(0x20c,'\x66\x4c\x65\x47')]||null,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0xf6e348[_0x10ad1e(0x29b,'\x63\x6f\x5e\x24')+_0x10ad1e(0x2bf,'\x6f\x68\x54\x38')+'\x79']||null,'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0xf6e348[_0x10ad1e(0x7a0,'\x4f\x4b\x4b\x62')+_0x10ad1e(0x4fa,'\x67\x56\x36\x28')+_0x10ad1e(0x661,'\x6f\x68\x54\x38')]||null}:null,'\x70\x65\x72\x73\x6f\x6e\x61\x6c\x69\x74\x79':_0xf6e348['\x70\x65\x72\x73\x6f\x6e\x61\x6c'+_0x10ad1e(0x521,'\x73\x37\x75\x4e')]||_0xf6e348[_0x10ad1e(0x34a,'\x44\x6b\x41\x4f')+'\x69\x74\x79\x5f\x73\x74\x61\x74'+'\x65']?{'\x6b\x65\x79':_0xf6e348[_0x10ad1e(0x6fe,'\x50\x61\x6e\x76')+_0x10ad1e(0x521,'\x73\x37\x75\x4e')]||null,'\x73\x74\x61\x74\x65':_0xf6e348[_0x10ad1e(0x6f9,'\x57\x38\x6b\x49')+_0x10ad1e(0x4d6,'\x51\x70\x6f\x4c')+'\x65']||null}:null,'\x67\x65\x6e\x65':{'\x69\x64':_0xf6e348[_0x10ad1e(0x552,'\x70\x30\x56\x79')]||null,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0xf6e348[_0x10ad1e(0x4b4,'\x50\x61\x6e\x76')+_0x10ad1e(0x679,'\x24\x6a\x6c\x23')]||null},'\x61\x63\x74\x69\x6f\x6e':{'\x69\x64':_0x5b1b5c[_0x10ad1e(0x50d,'\x70\x23\x36\x65')](String,_0xf6e348['\x61\x63\x74\x69\x6f\x6e\x5f\x69'+'\x64'])},'\x68\x79\x70\x6f\x74\x68\x65\x73\x69\x73':_0xf6e348[_0x10ad1e(0x2fb,'\x68\x7a\x7a\x21')+_0x10ad1e(0x7de,'\x4f\x4b\x4b\x62')]?{'\x69\x64':String(_0xf6e348[_0x10ad1e(0x6af,'\x70\x30\x56\x79')+_0x10ad1e(0x1f9,'\x43\x6a\x77\x54')])}:null,'\x6f\x75\x74\x63\x6f\x6d\x65':{'\x73\x74\x61\x74\x75\x73':_0xaa25af[_0x10ad1e(0x394,'\x4a\x74\x4a\x4f')],'\x73\x63\x6f\x72\x65':_0xaa25af[_0x10ad1e(0x5f5,'\x72\x76\x61\x5d')],'\x6e\x6f\x74\x65':_0xaa25af[_0x10ad1e(0x6f6,'\x51\x70\x6f\x4c')],'\x6f\x62\x73\x65\x72\x76\x65\x64':{'\x63\x75\x72\x72\x65\x6e\x74\x5f\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x10ad1e(0x5b5,'\x63\x4f\x21\x4d')](_0x45fb20)?_0x45fb20:[]},'\x70\x72\x65\x64\x69\x63\x74\x69\x76\x65':_0xaa25af[_0x10ad1e(0x77b,'\x43\x6a\x77\x54')+'\x76\x65']||null},'\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65':_0xcb67f6,'\x6f\x62\x73\x65\x72\x76\x65\x64':_0x45602b&&typeof _0x45602b===_0x10ad1e(0x4fd,'\x56\x30\x35\x5a')?_0x45602b:null,'\x62\x61\x73\x65\x6c\x69\x6e\x65':_0xf6e348[_0x10ad1e(0x398,'\x68\x33\x64\x45')+_0x10ad1e(0x643,'\x63\x30\x6e\x66')+'\x64']||null,'\x63\x61\x70\x73\x75\x6c\x65\x73':{'\x75\x73\x65\x64':Array[_0x10ad1e(0x36c,'\x6c\x23\x7a\x76')](_0xf6e348[_0x10ad1e(0x384,'\x72\x76\x61\x5d')+_0x10ad1e(0x346,'\x71\x4b\x61\x4b')])?_0xf6e348['\x63\x61\x70\x73\x75\x6c\x65\x73'+_0x10ad1e(0x7e9,'\x56\x30\x35\x5a')]:[]}},_0x12e77c=_0x5b1b5c[_0x10ad1e(0x4d7,'\x57\x45\x5e\x4e')](_0xffdc01,_0xf6e348);if(_0x12e77c)_0x40bf9a['\x72\x65\x75\x73\x65\x5f\x61\x74'+_0x10ad1e(0x5fb,'\x57\x45\x5e\x4e')+'\x6e']=_0x12e77c;_0x5b1b5c[_0x10ad1e(0x502,'\x6c\x57\x4d\x30')](_0x1f70eb,_0x40bf9a);try{if(_0xf6e348[_0x10ad1e(0x46c,'\x63\x6f\x5e\x24')]){if(_0x5b1b5c[_0x10ad1e(0x5cf,'\x4a\x26\x39\x41')]===_0x10ad1e(0x813,'\x51\x70\x6f\x4c')){const _0x226f48=_0x5b1b5c[_0x10ad1e(0x5f3,'\x56\x30\x35\x5a')](_0x39f257,{'\x73\x69\x67\x6e\x61\x6c\x4b\x65\x79':_0x5b1b5c['\x4a\x68\x76\x65\x4a'](String,_0xf6e348[_0x10ad1e(0x3f4,'\x67\x56\x36\x28')+'\x65\x79']||_0x5b1b5c[_0x10ad1e(0x593,'\x4f\x4b\x4b\x62')]),'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x10ad1e(0x806,'\x41\x31\x43\x39')](_0xf6e348[_0x10ad1e(0x81a,'\x51\x70\x6f\x4c')])?_0xf6e348['\x73\x69\x67\x6e\x61\x6c\x73']:[],'\x67\x65\x6e\x65\x49\x64':_0x5b1b5c[_0x10ad1e(0x6ae,'\x4b\x28\x32\x23')](String,_0xf6e348[_0x10ad1e(0x216,'\x43\x6a\x77\x54')]),'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':_0xf6e348[_0x10ad1e(0x728,'\x63\x4f\x21\x4d')+_0x10ad1e(0x664,'\x5b\x2a\x25\x62')]||null,'\x6f\x75\x74\x63\x6f\x6d\x65\x45\x76\x65\x6e\x74\x49\x64':_0x40bf9a['\x69\x64'],'\x68\x61\x6c\x66\x4c\x69\x66\x65\x44\x61\x79\x73':0x1e});_0x5b1b5c[_0x10ad1e(0x80f,'\x63\x6f\x5e\x24')](_0x1f70eb,_0x226f48);const _0x56aaa2=_0x5b1b5c[_0x10ad1e(0x290,'\x6f\x68\x54\x38')](_0x11b4a1,{'\x67\x65\x6e\x65\x49\x64':_0x5b1b5c[_0x10ad1e(0x731,'\x50\x29\x47\x65')](String,_0xf6e348[_0x10ad1e(0x552,'\x70\x30\x56\x79')]),'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':_0xf6e348[_0x10ad1e(0x258,'\x72\x76\x61\x5d')+_0x10ad1e(0x212,'\x4b\x64\x78\x78')]||null,'\x6f\x75\x74\x63\x6f\x6d\x65\x45\x76\x65\x6e\x74\x49\x64':_0x40bf9a['\x69\x64'],'\x68\x61\x6c\x66\x4c\x69\x66\x65\x44\x61\x79\x73':0x2d});_0x5b1b5c[_0x10ad1e(0x6f2,'\x44\x6b\x41\x4f')](_0x1f70eb,_0x56aaa2);}else{const _0x5df23f={};_0x5df23f[_0x10ad1e(0x564,'\x4b\x28\x32\x23')+'\x65']=!![];if(!_0x376403[_0x10ad1e(0x834,'\x48\x6d\x74\x4d')+'\x6e\x63'](_0x58b7f8))_0x3a29af[_0x10ad1e(0x7d2,'\x43\x6a\x77\x54')+'\x63'](_0x3af781,_0x5df23f);}}if(Array[_0x10ad1e(0x278,'\x75\x45\x5a\x6f')](_0xf6e348['\x63\x68\x75\x6e\x6b\x5f\x67\x65'+_0x10ad1e(0x4cb,'\x44\x51\x24\x40')]))for(const _0x10dfda of _0xf6e348['\x63\x68\x75\x6e\x6b\x5f\x67\x65'+_0x10ad1e(0x497,'\x44\x6b\x41\x4f')]){if(_0x5b1b5c[_0x10ad1e(0x60d,'\x30\x24\x52\x66')](_0x5b1b5c[_0x10ad1e(0x89d,'\x50\x61\x6e\x76')],_0x10ad1e(0x3b2,'\x68\x33\x64\x45'))){if(!_0x10dfda||_0x10dfda===_0xf6e348[_0x10ad1e(0x72b,'\x72\x76\x61\x5d')])continue;try{if(_0x5b1b5c[_0x10ad1e(0x4c4,'\x58\x39\x49\x51')](_0x5b1b5c[_0x10ad1e(0x203,'\x63\x30\x6e\x66')],_0x10ad1e(0x748,'\x50\x64\x35\x53'))){const _0xc3500f=_0x5ab6b6(_0x25653f||'');if(_0xc3500f[_0x10ad1e(0x350,'\x44\x6c\x68\x4d')+'\x74\x68'](zSrtXd[_0x10ad1e(0x45a,'\x50\x29\x47\x65')]))return zSrtXd[_0x10ad1e(0x4df,'\x68\x33\x64\x45')](_0x5d2053,_0xc3500f[_0x10ad1e(0x72c,'\x4f\x4b\x4b\x62')](zSrtXd[_0x10ad1e(0x45a,'\x50\x29\x47\x65')][_0x10ad1e(0x895,'\x65\x76\x39\x75')]));}else{const _0x4b28c8=_0x39f257({'\x73\x69\x67\x6e\x61\x6c\x4b\x65\x79':_0x5b1b5c[_0x10ad1e(0x78b,'\x41\x31\x43\x39')](String,_0xf6e348[_0x10ad1e(0x7cd,'\x4b\x28\x32\x23')+'\x65\x79']||_0x5b1b5c[_0x10ad1e(0x71f,'\x57\x45\x5e\x4e')]),'\x73\x69\x67\x6e\x61\x6c\x73':Array['\x69\x73\x41\x72\x72\x61\x79'](_0xf6e348[_0x10ad1e(0x7b0,'\x6b\x70\x71\x4c')])?_0xf6e348[_0x10ad1e(0x840,'\x47\x46\x75\x74')]:[],'\x67\x65\x6e\x65\x49\x64':_0x5b1b5c[_0x10ad1e(0x374,'\x30\x24\x52\x66')](String,_0x10dfda),'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':null,'\x6f\x75\x74\x63\x6f\x6d\x65\x45\x76\x65\x6e\x74\x49\x64':_0x40bf9a['\x69\x64'],'\x68\x61\x6c\x66\x4c\x69\x66\x65\x44\x61\x79\x73':0x1e});_0x5b1b5c[_0x10ad1e(0x5a0,'\x71\x4b\x61\x4b')](_0x1f70eb,_0x4b28c8);const _0x294ea6=_0x5b1b5c[_0x10ad1e(0x650,'\x5b\x2a\x25\x62')](_0x11b4a1,{'\x67\x65\x6e\x65\x49\x64':_0x5b1b5c['\x79\x69\x61\x68\x6b'](String,_0x10dfda),'\x67\x65\x6e\x65\x43\x61\x74\x65\x67\x6f\x72\x79':null,'\x6f\x75\x74\x63\x6f\x6d\x65\x45\x76\x65\x6e\x74\x49\x64':_0x40bf9a['\x69\x64'],'\x68\x61\x6c\x66\x4c\x69\x66\x65\x44\x61\x79\x73':0x2d});_0x5b1b5c[_0x10ad1e(0x785,'\x50\x64\x35\x53')](_0x1f70eb,_0x294ea6);}}catch(_0xa46c9a){}}else{const _0x341fcb=zSrtXd[_0x10ad1e(0x795,'\x4a\x74\x4a\x4f')](_0x410012,_0x30e108);if(!_0x590974['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x341fcb))return 0xf3c+0x1c88+0x15e2*-0x2;return _0x45962b['\x6d\x61\x78'](-0xed9+0x19*0x1a+0xc4f,_0x4ec9d8[_0x10ad1e(0x382,'\x4f\x35\x66\x62')](0xfaf*-0x2+0x10c+0x1e53,_0x341fcb));}}}catch(_0x12fa25){}return _0xf6e348['\x6f\x75\x74\x63\x6f\x6d\x65\x5f'+_0x10ad1e(0x3d5,'\x67\x56\x36\x28')]=!![],_0xf6e348[_0x10ad1e(0x4d9,'\x6b\x70\x71\x4c')+_0x10ad1e(0x26f,'\x5b\x2a\x25\x62')+_0x10ad1e(0x73e,'\x6c\x23\x7a\x76')]=_0x575c14,_0x12add8[_0x10ad1e(0x3ad,'\x58\x39\x49\x51')+_0x10ad1e(0x293,'\x4b\x28\x32\x23')]=_0xf6e348,_0x5b1b5c[_0x10ad1e(0x418,'\x5b\x36\x72\x37')](_0x3dab27,_0x59b9ff,_0x12add8),_0x40bf9a;}function _0x3cab75({asset:_0x31627e,source:_0x469efb,signals:_0x176d14}){const _0x270fce=_0x24f893,_0x518883={'\x55\x68\x73\x46\x70':function(_0x3db454,_0x27a703){return _0x3db454===_0x27a703;},'\x43\x4c\x4e\x6d\x62':_0x270fce(0x32a,'\x66\x4c\x65\x47'),'\x4f\x46\x58\x50\x62':function(_0x26130b,_0x176d76){return _0x26130b||_0x176d76;},'\x66\x42\x4e\x74\x6c':function(_0x38c3b7){return _0x38c3b7();},'\x4e\x4e\x41\x56\x6f':function(_0x20083e,_0x5b0bec){return _0x20083e(_0x5b0bec);},'\x71\x53\x4f\x6e\x42':_0x270fce(0x590,'\x72\x76\x61\x5d')+_0x270fce(0x5d4,'\x47\x46\x75\x74'),'\x62\x48\x6b\x70\x70':'\x65\x78\x74\x65\x72\x6e\x61\x6c'+'\x5f\x63\x61\x6e\x64\x69\x64\x61'+'\x74\x65','\x54\x52\x45\x4b\x49':function(_0x250ef1,_0xc31c1e){return _0x250ef1(_0xc31c1e);},'\x54\x46\x65\x79\x73':function(_0x1b6d63,_0x2c8aeb){return _0x1b6d63||_0x2c8aeb;},'\x73\x58\x59\x58\x52':_0x270fce(0x65c,'\x67\x56\x36\x28'),'\x6c\x4c\x70\x52\x4c':function(_0x3fc274,_0x2eb817){return _0x3fc274===_0x2eb817;}},_0x503105=_0x31627e&&_0x518883[_0x270fce(0x5f1,'\x56\x30\x35\x5a')](typeof _0x31627e,_0x518883[_0x270fce(0x6b3,'\x4b\x28\x32\x23')])?_0x31627e:null,_0x27a7d4=_0x503105&&_0x503105[_0x270fce(0x73b,'\x66\x4c\x65\x47')]?String(_0x503105[_0x270fce(0x584,'\x78\x56\x4c\x45')]):null,_0x29ca2f=_0x503105&&_0x503105['\x69\x64']?String(_0x503105['\x69\x64']):null;if(_0x518883[_0x270fce(0x33e,'\x75\x45\x5a\x6f')](!_0x27a7d4,!_0x29ca2f))return null;const _0x467864=_0x518883[_0x270fce(0x628,'\x70\x23\x36\x65')](_0xd91d1c),_0xc4060a=_0x518883['\x4e\x4e\x41\x56\x6f'](_0x319613,_0x176d14),_0xccf0d9={'\x74\x79\x70\x65':_0x518883[_0x270fce(0x717,'\x4e\x70\x6e\x7a')],'\x6b\x69\x6e\x64':_0x518883[_0x270fce(0x633,'\x67\x56\x36\x28')],'\x69\x64':'\x6d\x67\x65\x5f'+Date[_0x270fce(0x6be,'\x70\x30\x56\x79')]()+'\x5f'+_0x518883['\x54\x52\x45\x4b\x49'](_0x41384f,_0x27a7d4+'\x7c'+_0x29ca2f+('\x7c\x65\x78\x74\x65\x72\x6e\x61'+'\x6c\x7c')+_0x467864),'\x74\x73':_0x467864,'\x73\x69\x67\x6e\x61\x6c':{'\x6b\x65\x79':_0xc4060a,'\x73\x69\x67\x6e\x61\x6c\x73':Array[_0x270fce(0x65b,'\x4e\x70\x6e\x7a')](_0x176d14)?_0x176d14:[]},'\x65\x78\x74\x65\x72\x6e\x61\x6c':{'\x73\x6f\x75\x72\x63\x65':_0x518883[_0x270fce(0x243,'\x30\x24\x52\x66')](_0x469efb,_0x270fce(0x4d0,'\x4e\x70\x6e\x7a')),'\x72\x65\x63\x65\x69\x76\x65\x64\x5f\x61\x74':_0x467864},'\x61\x73\x73\x65\x74':{'\x74\x79\x70\x65':_0x27a7d4,'\x69\x64':_0x29ca2f},'\x63\x61\x6e\x64\x69\x64\x61\x74\x65':{'\x74\x72\x69\x67\x67\x65\x72':_0x518883['\x55\x68\x73\x46\x70'](_0x27a7d4,_0x518883[_0x270fce(0x27f,'\x50\x61\x6e\x76')])&&Array[_0x270fce(0x65b,'\x4e\x70\x6e\x7a')](_0x503105[_0x270fce(0x4a0,'\x5b\x2a\x25\x62')])?_0x503105[_0x270fce(0x259,'\x75\x45\x5a\x6f')]:[],'\x67\x65\x6e\x65':_0x27a7d4===_0x518883[_0x270fce(0x34b,'\x71\x4b\x61\x4b')]&&_0x503105[_0x270fce(0x213,'\x4a\x26\x39\x41')]?_0x518883[_0x270fce(0x476,'\x4b\x28\x32\x23')](String,_0x503105[_0x270fce(0x6cc,'\x4b\x28\x32\x23')]):null,'\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65':_0x518883[_0x270fce(0x73c,'\x70\x23\x36\x65')](_0x27a7d4,_0x518883[_0x270fce(0x27f,'\x50\x61\x6e\x76')])&&Number[_0x270fce(0x743,'\x71\x4b\x61\x4b')](_0x518883[_0x270fce(0x233,'\x47\x46\x75\x74')](Number,_0x503105['\x63\x6f\x6e\x66\x69\x64\x65\x6e'+'\x63\x65']))?Number(_0x503105[_0x270fce(0x574,'\x71\x4b\x61\x4b')+'\x63\x65']):null}};return _0x518883[_0x270fce(0x827,'\x46\x46\x5e\x25')](_0x1f70eb,_0xccf0d9),_0xccf0d9;}const _0x5a5bf9={};_0x5a5bf9[_0x24f893(0x3bc,'\x70\x46\x25\x2a')+_0x24f893(0x6b5,'\x68\x7a\x7a\x21')]=_0x1dcf72,_0x5a5bf9[_0x24f893(0x733,'\x52\x40\x52\x65')+_0x24f893(0x7c8,'\x30\x24\x52\x66')]=_0x319613,_0x5a5bf9[_0x24f893(0x78d,'\x5b\x2a\x25\x62')+_0x24f893(0x64d,'\x75\x45\x5a\x6f')+'\x70\x68\x45\x76\x65\x6e\x74\x73']=_0x1c2175,_0x5a5bf9[_0x24f893(0x5b3,'\x57\x38\x6b\x49')+'\x6f\x72\x79\x47\x72\x61\x70\x68'+_0x24f893(0x222,'\x50\x64\x35\x53')]=_0x1f70eb,_0x5a5bf9['\x67\x65\x74\x4d\x65\x6d\x6f\x72'+_0x24f893(0x4fe,'\x4e\x70\x6e\x7a')]=_0x21a69d,_0x5a5bf9[_0x24f893(0x678,'\x6f\x68\x54\x38')+'\x67\x6e\x61\x6c\x53\x6e\x61\x70'+_0x24f893(0x402,'\x4b\x64\x78\x78')]=_0x510d7b,_0x5a5bf9[_0x24f893(0x7db,'\x71\x4b\x61\x4b')+_0x24f893(0x376,'\x67\x56\x36\x28')]=_0x5aa63c,_0x5a5bf9[_0x24f893(0x771,'\x43\x6a\x77\x54')+_0x24f893(0x310,'\x6b\x70\x71\x4c')]=_0x301ab5,_0x5a5bf9[_0x24f893(0x557,'\x4f\x35\x66\x62')+_0x24f893(0x424,'\x4e\x70\x6e\x7a')+_0x24f893(0x511,'\x4b\x28\x32\x23')]=_0x943145,_0x5a5bf9['\x72\x65\x63\x6f\x72\x64\x45\x78'+_0x24f893(0x74d,'\x51\x70\x6f\x4c')+_0x24f893(0x419,'\x6b\x70\x71\x4c')]=_0x3cab75,_0x5a5bf9['\x63\x6f\x6d\x70\x75\x74\x65\x50'+_0x24f893(0x34f,'\x4e\x70\x6e\x7a')+_0x24f893(0x251,'\x65\x76\x39\x75')]=_0x27e4fb,_0x5a5bf9[_0x24f893(0x77e,'\x6c\x23\x7a\x76')+_0x24f893(0x39e,'\x51\x70\x6f\x4c')+'\x72\x79']=_0x5c0ba0,_0x5a5bf9['\x72\x65\x73\x65\x74\x4d\x65\x6d'+_0x24f893(0x36e,'\x4a\x74\x4a\x4f')+_0x24f893(0x7d1,'\x41\x31\x43\x39')]=_0x1e0372,_0x5a5bf9[_0x24f893(0x409,'\x4e\x70\x6e\x7a')+_0x24f893(0x377,'\x57\x45\x5e\x4e')]=_0x250cf0,_0x5a5bf9[_0x24f893(0x6e7,'\x57\x38\x6b\x49')+_0x24f893(0x75b,'\x52\x40\x52\x65')+_0x24f893(0x722,'\x50\x64\x35\x53')]=_0x532f94,_0x5a5bf9[_0x24f893(0x6df,'\x57\x38\x6b\x49')+_0x24f893(0x21a,'\x5b\x36\x72\x37')+_0x24f893(0x47c,'\x4f\x4b\x4b\x62')]=_0x75b076,_0x5a5bf9[_0x24f893(0x234,'\x70\x46\x25\x2a')+_0x24f893(0x436,'\x56\x30\x35\x5a')]=_0x55483c,_0x5a5bf9[_0x24f893(0x640,'\x4e\x70\x6e\x7a')+'\x4d\x61\x78\x53\x69\x7a\x65\x42'+_0x24f893(0x550,'\x4a\x26\x39\x41')]=_0x32191a,_0x5a5bf9[_0x24f893(0x745,'\x30\x35\x70\x72')+'\x52\x65\x74\x65\x6e\x74\x69\x6f'+_0x24f893(0x76d,'\x68\x7a\x7a\x21')]=_0x437821,module[_0x24f893(0x866,'\x63\x4f\x21\x4d')]=_0x5a5bf9;
|
|
1
|
+
const fs = require('fs');
|
|
2
|
+
const path = require('path');
|
|
3
|
+
const { hubFetch } = require('./hubFetch');
|
|
4
|
+
const { getMemoryDir, getEvolutionDir } = require('./paths');
|
|
5
|
+
const { normalizePersonalityState, isValidPersonalityState, personalityKey } = require('./personality');
|
|
6
|
+
const { isValidMutation, normalizeMutation } = require('./mutation');
|
|
7
|
+
const cfg = require('../config');
|
|
8
|
+
const { readJsonIfExists } = require('./assetStore');
|
|
9
|
+
const { stableHash } = require('./hash');
|
|
10
|
+
|
|
11
|
+
function ensureDir(dir) {
|
|
12
|
+
try {
|
|
13
|
+
if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true });
|
|
14
|
+
} catch (e) {}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function nowIso() {
|
|
18
|
+
return new Date().toISOString();
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
function normalizeErrorSignature(text) {
|
|
22
|
+
const s = String(text || '').trim();
|
|
23
|
+
if (!s) return null;
|
|
24
|
+
return (
|
|
25
|
+
s
|
|
26
|
+
.toLowerCase()
|
|
27
|
+
// normalize Windows paths
|
|
28
|
+
.replace(/[a-z]:\\[^ \n\r\t]+/gi, '<path>')
|
|
29
|
+
// normalize Unix paths
|
|
30
|
+
.replace(/\/[^ \n\r\t]+/g, '<path>')
|
|
31
|
+
// normalize hex and numbers
|
|
32
|
+
.replace(/\b0x[0-9a-f]+\b/gi, '<hex>')
|
|
33
|
+
.replace(/\b\d+\b/g, '<n>')
|
|
34
|
+
// normalize whitespace
|
|
35
|
+
.replace(/\s+/g, ' ')
|
|
36
|
+
.slice(0, 220)
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
function normalizeSignalsForMatching(signals) {
|
|
41
|
+
const list = Array.isArray(signals) ? signals : [];
|
|
42
|
+
const out = [];
|
|
43
|
+
for (const s of list) {
|
|
44
|
+
const str = String(s || '').trim();
|
|
45
|
+
if (!str) continue;
|
|
46
|
+
if (str.startsWith('errsig:')) {
|
|
47
|
+
const norm = normalizeErrorSignature(str.slice('errsig:'.length));
|
|
48
|
+
if (norm) out.push(`errsig_norm:${stableHash(norm)}`);
|
|
49
|
+
continue;
|
|
50
|
+
}
|
|
51
|
+
out.push(str);
|
|
52
|
+
}
|
|
53
|
+
return out;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
function computeSignalKey(signals) {
|
|
57
|
+
// Key must be stable across runs; normalize noisy signatures (paths, numbers).
|
|
58
|
+
const list = normalizeSignalsForMatching(signals);
|
|
59
|
+
const uniq = Array.from(new Set(list.filter(Boolean))).sort();
|
|
60
|
+
return uniq.join('|') || '(none)';
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function extractErrorSignatureFromSignals(signals) {
|
|
64
|
+
// Convention: signals can include "errsig:<raw>" emitted by signals extractor.
|
|
65
|
+
const list = Array.isArray(signals) ? signals : [];
|
|
66
|
+
for (const s of list) {
|
|
67
|
+
const str = String(s || '');
|
|
68
|
+
if (str.startsWith('errsig:')) return normalizeErrorSignature(str.slice('errsig:'.length));
|
|
69
|
+
}
|
|
70
|
+
return null;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
function memoryGraphPath() {
|
|
74
|
+
const evoDir = getEvolutionDir();
|
|
75
|
+
return process.env.MEMORY_GRAPH_PATH || path.join(evoDir, 'memory_graph.jsonl');
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
function memoryGraphStatePath() {
|
|
79
|
+
return path.join(getEvolutionDir(), 'memory_graph_state.json');
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// P4-a Slice A: build the reuse-attribution block for the synced `outcome`
|
|
83
|
+
// event. Reads the reuse fields the dispatch stage already wrote into
|
|
84
|
+
// evolution_solidify_state.json (state.last_run.{source_type, reused_asset_id,
|
|
85
|
+
// reused_chain_id}). We read that file DIRECTLY (not require('./solidify') —
|
|
86
|
+
// solidify.js already requires this module, so importing it back would be a
|
|
87
|
+
// circular require). Returns null unless mode==='shadow' AND this cycle
|
|
88
|
+
// actually reused/referenced a Hub asset.
|
|
89
|
+
//
|
|
90
|
+
// HARD invariants (anti-sybil, even though this is just data):
|
|
91
|
+
// - NO source_node_id from the client. The publisher to credit MUST be
|
|
92
|
+
// re-derived server-side from reused_asset_id -> Asset.sourceNodeId; never
|
|
93
|
+
// trust the reporter's claim of who to pay.
|
|
94
|
+
// - reused_asset_id is RUNTIME-OBSERVED (the hubHit the evolver actually
|
|
95
|
+
// selected), not agent-supplied free text.
|
|
96
|
+
// - Absent when source_type==='generated' (nothing was reused).
|
|
97
|
+
// - Absent unless the solidify-state last_run is from THIS cycle. The reuse
|
|
98
|
+
// fields live in evolution_solidify_state.json (state.last_run), but the
|
|
99
|
+
// outcome event is built from memory_graph_state.json (last_action) — two
|
|
100
|
+
// separate files written by different stages (recordAttempt -> dispatch ->
|
|
101
|
+
// recordOutcome). If dispatch never ran this cycle (failure / process stop
|
|
102
|
+
// after recordAttempt), last_run is STALE and would mislink another cycle's
|
|
103
|
+
// reuse to this outcome (Bugbot #186). Pipeline order guarantees a current
|
|
104
|
+
// last_run was created AT/AFTER this cycle's last_action; a stale one is
|
|
105
|
+
// older, so require last_run.created_at >= lastAction.created_at.
|
|
106
|
+
function buildReuseAttribution(lastAction) {
|
|
107
|
+
let mode = 'off';
|
|
108
|
+
try { mode = require('../config').reuseAttributionMode(); } catch (_) { mode = 'off'; }
|
|
109
|
+
if (mode !== 'shadow') return null;
|
|
110
|
+
let lastRun = null;
|
|
111
|
+
try {
|
|
112
|
+
const sp = path.join(getEvolutionDir(), 'evolution_solidify_state.json');
|
|
113
|
+
const st = readJsonIfExists(sp, { last_run: null });
|
|
114
|
+
lastRun = st && st.last_run ? st.last_run : null;
|
|
115
|
+
} catch (_) { return null; }
|
|
116
|
+
if (!lastRun) return null;
|
|
117
|
+
// Cycle-correlation: the reuse data must belong to the SAME cycle as the
|
|
118
|
+
// outcome we are attaching it to. Without a comparable last_action timestamp,
|
|
119
|
+
// or if last_run predates this attempt, refuse rather than mislink.
|
|
120
|
+
const actAt = lastAction && lastAction.created_at ? Date.parse(lastAction.created_at) : NaN;
|
|
121
|
+
const runAt = lastRun.created_at ? Date.parse(lastRun.created_at) : NaN;
|
|
122
|
+
if (!Number.isFinite(actAt) || !Number.isFinite(runAt) || runAt < actAt) return null;
|
|
123
|
+
const sourceType = lastRun.source_type ? String(lastRun.source_type) : 'generated';
|
|
124
|
+
if (sourceType !== 'reused' && sourceType !== 'reference') return null; // nothing reused
|
|
125
|
+
const reusedAssetId = lastRun.reused_asset_id ? String(lastRun.reused_asset_id) : null;
|
|
126
|
+
if (!reusedAssetId) return null;
|
|
127
|
+
return {
|
|
128
|
+
reused_asset_id: reusedAssetId,
|
|
129
|
+
reused_chain_id: lastRun.reused_chain_id ? String(lastRun.reused_chain_id) : null,
|
|
130
|
+
source_type: sourceType,
|
|
131
|
+
reported_by: 'evolver-outcome',
|
|
132
|
+
schema: 'reuse_attr/1.0',
|
|
133
|
+
};
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
function appendJsonl(filePath, obj) {
|
|
137
|
+
const dir = path.dirname(filePath);
|
|
138
|
+
ensureDir(dir);
|
|
139
|
+
fs.appendFileSync(filePath, JSON.stringify(obj) + '\n', 'utf8');
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
// Memory graph rotation (issue #519).
|
|
143
|
+
//
|
|
144
|
+
// memory_graph.jsonl grows unboundedly on long-running nodes, causing
|
|
145
|
+
// disk waste and slow filesystem stat() calls. Rotate the file once it
|
|
146
|
+
// crosses EVOLVER_MEMORY_GRAPH_MAX_SIZE_MB (default 100 MB) by renaming
|
|
147
|
+
// it to memory_graph.jsonl.<ts>.gz (gzip-compressed) and starting a
|
|
148
|
+
// fresh file. Keep at most EVOLVER_MEMORY_GRAPH_RETENTION_COUNT (default
|
|
149
|
+
// 7) rotated archives; older ones are deleted. Opt out entirely with
|
|
150
|
+
// EVOLVER_MEMORY_GRAPH_AUTO_ROTATE=false.
|
|
151
|
+
//
|
|
152
|
+
// The tail-read in tryReadMemoryGraphEvents is safe across rotation:
|
|
153
|
+
// at worst one cycle sees an empty file, not corruption, because the
|
|
154
|
+
// rename is atomic on the same filesystem.
|
|
155
|
+
|
|
156
|
+
const ROTATE_CHECK_INTERVAL_MS = 30_000;
|
|
157
|
+
const ROTATE_CHECK_WRITES = 100;
|
|
158
|
+
|
|
159
|
+
let _lastRotateCheckAt = 0;
|
|
160
|
+
let _writesSinceRotateCheck = 0;
|
|
161
|
+
|
|
162
|
+
function rotationEnabled() {
|
|
163
|
+
const raw = String(process.env.EVOLVER_MEMORY_GRAPH_AUTO_ROTATE ?? 'true').toLowerCase();
|
|
164
|
+
return raw !== 'false' && raw !== '0' && raw !== 'no';
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
function rotationMaxSizeBytes() {
|
|
168
|
+
const mb = Number(process.env.EVOLVER_MEMORY_GRAPH_MAX_SIZE_MB);
|
|
169
|
+
const safe = Number.isFinite(mb) && mb > 0 ? mb : 100;
|
|
170
|
+
return Math.floor(safe * 1024 * 1024);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
function rotationRetentionCount() {
|
|
174
|
+
const n = Number(process.env.EVOLVER_MEMORY_GRAPH_RETENTION_COUNT);
|
|
175
|
+
const safe = Number.isFinite(n) && n >= 0 ? Math.floor(n) : 7;
|
|
176
|
+
return safe;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
// Archive suffix matcher. Matches both legacy `.<ts>` and current
|
|
180
|
+
// `.<ts>.gz` forms so old layouts are pruned consistently.
|
|
181
|
+
const ROTATED_SUFFIX_RE = /\.(\d{8,})(?:\.gz)?$/;
|
|
182
|
+
|
|
183
|
+
function pruneRotatedArchives(activePath, retention) {
|
|
184
|
+
try {
|
|
185
|
+
const dir = path.dirname(activePath);
|
|
186
|
+
const baseName = path.basename(activePath);
|
|
187
|
+
const prefix = baseName + '.';
|
|
188
|
+
const entries = fs.readdirSync(dir)
|
|
189
|
+
.filter(name => name.startsWith(prefix) && ROTATED_SUFFIX_RE.test(name))
|
|
190
|
+
.map(name => {
|
|
191
|
+
const m = ROTATED_SUFFIX_RE.exec(name);
|
|
192
|
+
return { name, ts: m ? Number(m[1]) : 0 };
|
|
193
|
+
})
|
|
194
|
+
.sort((a, b) => b.ts - a.ts);
|
|
195
|
+
const excess = entries.slice(retention);
|
|
196
|
+
for (const entry of excess) {
|
|
197
|
+
try { fs.unlinkSync(path.join(dir, entry.name)); } catch (_) { /* best-effort */ }
|
|
198
|
+
}
|
|
199
|
+
} catch (_) {
|
|
200
|
+
// Pruning is best-effort; never block writes.
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
function rotateMemoryGraphNow(activePath) {
|
|
205
|
+
let renamedTo = null;
|
|
206
|
+
try {
|
|
207
|
+
if (!fs.existsSync(activePath)) return null;
|
|
208
|
+
const ts = new Date().toISOString().replace(/[^0-9]/g, '').slice(0, 14);
|
|
209
|
+
const rotated = `${activePath}.${ts}`;
|
|
210
|
+
// Atomic rename; new writes to activePath will create a fresh file.
|
|
211
|
+
fs.renameSync(activePath, rotated);
|
|
212
|
+
renamedTo = rotated;
|
|
213
|
+
// Compress in-place to .gz to save disk. If compression fails we
|
|
214
|
+
// still keep the uncompressed rotated file — data is preserved.
|
|
215
|
+
//
|
|
216
|
+
// OOM guard: zlib.gzipSync reads the whole file into memory before
|
|
217
|
+
// compressing. On a container with a tight memory limit (e.g. Docker
|
|
218
|
+
// 512 MB), compressing a 100 MB file spikes the heap by ~100 MB,
|
|
219
|
+
// which can itself trigger the OOM killer -- producing a truncated .gz
|
|
220
|
+
// and a lost rotation. Skip gzip for files larger than
|
|
221
|
+
// ROTATE_GZIP_MAX_BYTES (default 32 MB) and keep them uncompressed
|
|
222
|
+
// rather than risk an OOM spike during the compress step.
|
|
223
|
+
// Operators can raise the limit via EVOLVER_ROTATE_GZIP_MAX_MB.
|
|
224
|
+
try {
|
|
225
|
+
const zlib = require('zlib');
|
|
226
|
+
const _gzipMaxMb = Number(process.env.EVOLVER_ROTATE_GZIP_MAX_MB);
|
|
227
|
+
const _gzipMaxBytes = (Number.isFinite(_gzipMaxMb) && _gzipMaxMb > 0)
|
|
228
|
+
? Math.floor(_gzipMaxMb * 1024 * 1024)
|
|
229
|
+
: 32 * 1024 * 1024; // 32 MB default
|
|
230
|
+
let skipGzip = false;
|
|
231
|
+
try {
|
|
232
|
+
const rotatedStat = fs.statSync(rotated);
|
|
233
|
+
if (rotatedStat.size > _gzipMaxBytes) skipGzip = true;
|
|
234
|
+
} catch (_) {}
|
|
235
|
+
if (!skipGzip) {
|
|
236
|
+
const raw = fs.readFileSync(rotated);
|
|
237
|
+
const gz = zlib.gzipSync(raw);
|
|
238
|
+
fs.writeFileSync(`${rotated}.gz`, gz);
|
|
239
|
+
fs.unlinkSync(rotated);
|
|
240
|
+
renamedTo = `${rotated}.gz`;
|
|
241
|
+
}
|
|
242
|
+
// When skipGzip is true, renamedTo stays as the plain rotated file.
|
|
243
|
+
} catch (_) {
|
|
244
|
+
// Keep uncompressed rotated file as a fallback.
|
|
245
|
+
}
|
|
246
|
+
pruneRotatedArchives(activePath, rotationRetentionCount());
|
|
247
|
+
} catch (e) {
|
|
248
|
+
// Rotation failure must never break evolver's write path.
|
|
249
|
+
}
|
|
250
|
+
return renamedTo;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
function maybeRotateMemoryGraph(activePath, { force = false } = {}) {
|
|
254
|
+
if (!rotationEnabled()) return null;
|
|
255
|
+
_writesSinceRotateCheck += 1;
|
|
256
|
+
const now = Date.now();
|
|
257
|
+
if (!force
|
|
258
|
+
&& _writesSinceRotateCheck < ROTATE_CHECK_WRITES
|
|
259
|
+
&& (now - _lastRotateCheckAt) < ROTATE_CHECK_INTERVAL_MS) {
|
|
260
|
+
return null;
|
|
261
|
+
}
|
|
262
|
+
_writesSinceRotateCheck = 0;
|
|
263
|
+
_lastRotateCheckAt = now;
|
|
264
|
+
try {
|
|
265
|
+
if (!fs.existsSync(activePath)) return null;
|
|
266
|
+
const stat = fs.statSync(activePath);
|
|
267
|
+
if (stat.size < rotationMaxSizeBytes()) return null;
|
|
268
|
+
return rotateMemoryGraphNow(activePath);
|
|
269
|
+
} catch (_) {
|
|
270
|
+
return null;
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
// On process start, force an immediate rotation if the file is already
|
|
275
|
+
// oversized from a pre-rotation evolver version.
|
|
276
|
+
function rotateOnStartupIfOversized() {
|
|
277
|
+
try {
|
|
278
|
+
if (!rotationEnabled()) return;
|
|
279
|
+
const p = memoryGraphPath();
|
|
280
|
+
if (!fs.existsSync(p)) return;
|
|
281
|
+
const stat = fs.statSync(p);
|
|
282
|
+
if (stat.size >= rotationMaxSizeBytes()) {
|
|
283
|
+
rotateMemoryGraphNow(p);
|
|
284
|
+
}
|
|
285
|
+
} catch (_) {
|
|
286
|
+
// best-effort
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
// Run once at module load. Idempotent via rotationEnabled() guard and
|
|
290
|
+
// the fs.existsSync guard, so side effects only fire when warranted.
|
|
291
|
+
rotateOnStartupIfOversized();
|
|
292
|
+
|
|
293
|
+
// Hub sync: whitelist of MemoryGraphEvent kinds that are safe to archive at Hub.
|
|
294
|
+
// Only these kinds are mirrored; all kinds remain in the local jsonl regardless.
|
|
295
|
+
//
|
|
296
|
+
// Note: 'recall_verify' (emitted by src/gep/recallVerifier.js) is intentionally
|
|
297
|
+
// NOT in this allowlist on first ship. Verification events stay local-only
|
|
298
|
+
// until the Hub side confirms it accepts the schema; otherwise every emit
|
|
299
|
+
// would 4xx and pollute logs. Once Hub-side support lands, add 'recall_verify'
|
|
300
|
+
// in a one-line follow-up patch to enable cross-node observability.
|
|
301
|
+
const HUB_SYNC_KIND_ALLOWLIST = new Set([
|
|
302
|
+
'attempt',
|
|
303
|
+
'validation',
|
|
304
|
+
'skill_emit',
|
|
305
|
+
'outcome',
|
|
306
|
+
'mutation_draft',
|
|
307
|
+
'solidify',
|
|
308
|
+
]);
|
|
309
|
+
|
|
310
|
+
function syncEventToHub(ev) {
|
|
311
|
+
if (!ev || typeof ev !== 'object') return;
|
|
312
|
+
if (process.env.MEMORY_GRAPH_SYNC_HUB === '0') return;
|
|
313
|
+
const kind = ev && ev.kind ? String(ev.kind) : null;
|
|
314
|
+
if (!kind || !HUB_SYNC_KIND_ALLOWLIST.has(kind)) return;
|
|
315
|
+
let a2a;
|
|
316
|
+
try { a2a = require('./a2aProtocol'); } catch (_) { return; }
|
|
317
|
+
const hubUrl = typeof a2a.getHubUrl === 'function' ? a2a.getHubUrl() : (process.env.A2A_HUB_URL || process.env.EVOMAP_HUB_URL || '');
|
|
318
|
+
if (!hubUrl) return;
|
|
319
|
+
const senderId = typeof a2a.getNodeId === 'function' ? a2a.getNodeId() : null;
|
|
320
|
+
if (!senderId) return;
|
|
321
|
+
const secret = typeof a2a.getHubNodeSecret === 'function' ? a2a.getHubNodeSecret() : null;
|
|
322
|
+
if (!secret) return;
|
|
323
|
+
const endpoint = hubUrl.replace(/\/+$/, '') + '/a2a/memory/event';
|
|
324
|
+
const body = JSON.stringify({ sender_id: senderId, event: ev });
|
|
325
|
+
const timeoutMs = 5000;
|
|
326
|
+
const controller = (typeof AbortSignal !== 'undefined' && AbortSignal.timeout) ? AbortSignal.timeout(timeoutMs) : undefined;
|
|
327
|
+
try {
|
|
328
|
+
const p = hubFetch(endpoint, {
|
|
329
|
+
method: 'POST',
|
|
330
|
+
headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer ' + secret },
|
|
331
|
+
body,
|
|
332
|
+
signal: controller,
|
|
333
|
+
});
|
|
334
|
+
if (p && typeof p.catch === 'function') {
|
|
335
|
+
p.catch(function () { /* best-effort; local jsonl is source of truth */ });
|
|
336
|
+
}
|
|
337
|
+
} catch (_) { /* noop */ }
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
function writeMemoryGraphEvent(ev) {
|
|
341
|
+
const p = memoryGraphPath();
|
|
342
|
+
appendJsonl(p, ev);
|
|
343
|
+
maybeRotateMemoryGraph(p);
|
|
344
|
+
syncEventToHub(ev);
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
function writeJsonAtomic(filePath, obj) {
|
|
348
|
+
const dir = path.dirname(filePath);
|
|
349
|
+
ensureDir(dir);
|
|
350
|
+
const tmp = `${filePath}.tmp`;
|
|
351
|
+
fs.writeFileSync(tmp, JSON.stringify(obj, null, 2) + '\n', 'utf8');
|
|
352
|
+
fs.renameSync(tmp, filePath);
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
function tryReadMemoryGraphEvents(limitLines = 2000) {
|
|
356
|
+
try {
|
|
357
|
+
const p = memoryGraphPath();
|
|
358
|
+
if (!fs.existsSync(p)) return [];
|
|
359
|
+
const stat = fs.statSync(p);
|
|
360
|
+
const TAIL_BYTES = 512 * 1024;
|
|
361
|
+
let raw;
|
|
362
|
+
if (stat.size <= TAIL_BYTES) {
|
|
363
|
+
raw = fs.readFileSync(p, 'utf8');
|
|
364
|
+
} else {
|
|
365
|
+
const fd = fs.openSync(p, 'r');
|
|
366
|
+
try {
|
|
367
|
+
const buf = Buffer.alloc(TAIL_BYTES);
|
|
368
|
+
fs.readSync(fd, buf, 0, TAIL_BYTES, stat.size - TAIL_BYTES);
|
|
369
|
+
raw = buf.toString('utf8');
|
|
370
|
+
const firstNewline = raw.indexOf('\n');
|
|
371
|
+
if (firstNewline >= 0) raw = raw.slice(firstNewline + 1);
|
|
372
|
+
} finally {
|
|
373
|
+
fs.closeSync(fd);
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
const lines = raw
|
|
377
|
+
.split('\n')
|
|
378
|
+
.map(l => l.trim())
|
|
379
|
+
.filter(Boolean);
|
|
380
|
+
const recent = lines.slice(Math.max(0, lines.length - limitLines));
|
|
381
|
+
return recent
|
|
382
|
+
.map(l => {
|
|
383
|
+
try {
|
|
384
|
+
return JSON.parse(l);
|
|
385
|
+
} catch (e) {
|
|
386
|
+
return null;
|
|
387
|
+
}
|
|
388
|
+
})
|
|
389
|
+
.filter(Boolean);
|
|
390
|
+
} catch (e) {
|
|
391
|
+
return [];
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
function jaccard(aList, bList) {
|
|
396
|
+
const aNorm = normalizeSignalsForMatching(aList);
|
|
397
|
+
const bNorm = normalizeSignalsForMatching(bList);
|
|
398
|
+
const a = new Set((Array.isArray(aNorm) ? aNorm : []).map(String));
|
|
399
|
+
const b = new Set((Array.isArray(bNorm) ? bNorm : []).map(String));
|
|
400
|
+
if (a.size === 0 && b.size === 0) return 1;
|
|
401
|
+
if (a.size === 0 || b.size === 0) return 0;
|
|
402
|
+
let inter = 0;
|
|
403
|
+
for (const x of a) if (b.has(x)) inter++;
|
|
404
|
+
const union = a.size + b.size - inter;
|
|
405
|
+
return union === 0 ? 0 : inter / union;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
function decayWeight(updatedAtIso, halfLifeDays) {
|
|
409
|
+
const hl = Number(halfLifeDays);
|
|
410
|
+
if (!Number.isFinite(hl) || hl <= 0) return 1;
|
|
411
|
+
const t = Date.parse(updatedAtIso);
|
|
412
|
+
if (!Number.isFinite(t)) return 1;
|
|
413
|
+
const ageDays = (Date.now() - t) / (1000 * 60 * 60 * 24);
|
|
414
|
+
if (!Number.isFinite(ageDays) || ageDays <= 0) return 1;
|
|
415
|
+
// Exponential half-life decay: weight = 0.5^(age/hl)
|
|
416
|
+
return Math.pow(0.5, ageDays / hl);
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
function aggregateEdges(events) {
|
|
420
|
+
const map = new Map();
|
|
421
|
+
for (const ev of events) {
|
|
422
|
+
if (!ev || ev.type !== 'MemoryGraphEvent') continue;
|
|
423
|
+
if (ev.kind !== 'outcome') continue;
|
|
424
|
+
const signalKey = ev.signal && ev.signal.key ? String(ev.signal.key) : '(none)';
|
|
425
|
+
const geneId = ev.gene && ev.gene.id ? String(ev.gene.id) : null;
|
|
426
|
+
if (!geneId) continue;
|
|
427
|
+
|
|
428
|
+
const k = `${signalKey}::${geneId}`;
|
|
429
|
+
const cur = map.get(k) || { signalKey, geneId, success: 0, fail: 0, inert: 0, consecutive_inert: 0, last_ts: null, last_score: null, has_predictive: false };
|
|
430
|
+
const status = ev.outcome && ev.outcome.status ? String(ev.outcome.status) : 'unknown';
|
|
431
|
+
// Issue EvoMap/evolver#562: a `stable_no_error` success means the cycle hit
|
|
432
|
+
// no error AND produced no parseable EvolutionEvent outcome -- i.e. nothing
|
|
433
|
+
// measurable happened. Counting that as a Bayesian "success" lets a gene that
|
|
434
|
+
// only ever does nothing climb p -> ~1.0 and dominate --loop selection forever
|
|
435
|
+
// (diversity collapse). Tally these "inert" outcomes apart from real ones so
|
|
436
|
+
// they neither build edge confidence nor count toward attempts. The
|
|
437
|
+
// consecutive-trailing run (reset by any real success/failure) is what
|
|
438
|
+
// getMemoryAdvice uses to ban a gene that is stuck doing nothing.
|
|
439
|
+
const note = ev.outcome && ev.outcome.note ? String(ev.outcome.note) : '';
|
|
440
|
+
const isInert = status === 'success' && note.indexOf('stable_no_error') !== -1;
|
|
441
|
+
if (isInert) {
|
|
442
|
+
cur.inert += 1;
|
|
443
|
+
cur.consecutive_inert += 1;
|
|
444
|
+
} else if (status === 'success') {
|
|
445
|
+
cur.success += 1;
|
|
446
|
+
cur.consecutive_inert = 0;
|
|
447
|
+
} else if (status === 'failed') {
|
|
448
|
+
cur.fail += 1;
|
|
449
|
+
cur.consecutive_inert = 0;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
if (ev.outcome && ev.outcome.predictive) cur.has_predictive = true;
|
|
453
|
+
|
|
454
|
+
const ts = ev.ts || ev.created_at || ev.at;
|
|
455
|
+
if (ts && (!cur.last_ts || Date.parse(ts) > Date.parse(cur.last_ts))) {
|
|
456
|
+
cur.last_ts = ts;
|
|
457
|
+
cur.last_score =
|
|
458
|
+
ev.outcome && Number.isFinite(Number(ev.outcome.score)) ? Number(ev.outcome.score) : cur.last_score;
|
|
459
|
+
}
|
|
460
|
+
map.set(k, cur);
|
|
461
|
+
}
|
|
462
|
+
return map;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
function aggregateGeneOutcomes(events) {
|
|
466
|
+
// Aggregate by gene_id from outcome events (gene -> outcome success probability).
|
|
467
|
+
const map = new Map();
|
|
468
|
+
for (const ev of events) {
|
|
469
|
+
if (!ev || ev.type !== 'MemoryGraphEvent') continue;
|
|
470
|
+
if (ev.kind !== 'outcome') continue;
|
|
471
|
+
const geneId = ev.gene && ev.gene.id ? String(ev.gene.id) : null;
|
|
472
|
+
if (!geneId) continue;
|
|
473
|
+
const cur = map.get(geneId) || { geneId, success: 0, fail: 0, last_ts: null, last_score: null };
|
|
474
|
+
const status = ev.outcome && ev.outcome.status ? String(ev.outcome.status) : 'unknown';
|
|
475
|
+
if (status === 'success') cur.success += 1;
|
|
476
|
+
else if (status === 'failed') cur.fail += 1;
|
|
477
|
+
const ts = ev.ts || ev.created_at || ev.at;
|
|
478
|
+
if (ts && (!cur.last_ts || Date.parse(ts) > Date.parse(cur.last_ts))) {
|
|
479
|
+
cur.last_ts = ts;
|
|
480
|
+
cur.last_score =
|
|
481
|
+
ev.outcome && Number.isFinite(Number(ev.outcome.score)) ? Number(ev.outcome.score) : cur.last_score;
|
|
482
|
+
}
|
|
483
|
+
map.set(geneId, cur);
|
|
484
|
+
}
|
|
485
|
+
return map;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
function edgeExpectedSuccess(edge, opts) {
|
|
489
|
+
const e = edge || { success: 0, fail: 0, last_ts: null };
|
|
490
|
+
const succ = Number(e.success) || 0;
|
|
491
|
+
const fail = Number(e.fail) || 0;
|
|
492
|
+
const total = succ + fail;
|
|
493
|
+
const p = (succ + 1) / (total + 2); // Laplace smoothing
|
|
494
|
+
const halfLifeDays = opts && Number.isFinite(Number(opts.half_life_days)) ? Number(opts.half_life_days) : 30;
|
|
495
|
+
const w = decayWeight(e.last_ts || '', halfLifeDays);
|
|
496
|
+
// TTT-inspired: outcomes carrying predictive data (forward-looking evaluation)
|
|
497
|
+
// get a modest boost (1.15x) in the aggregated value, nudging memory preferences
|
|
498
|
+
// toward genes that improve evolvability rather than just fixing symptoms.
|
|
499
|
+
const predictiveMultiplier = e.has_predictive ? 1.15 : 1.0;
|
|
500
|
+
return { p, w, total, value: p * w * predictiveMultiplier };
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
// ---------------------------------------------------------------------------
|
|
504
|
+
// TTT-inspired Epoch Boundary & Memory Reset
|
|
505
|
+
// Analogous to resetting fast weights at document boundaries to prevent
|
|
506
|
+
// context leakage from stale environments into new ones.
|
|
507
|
+
// ---------------------------------------------------------------------------
|
|
508
|
+
const EPOCH_RESET_TRIGGERS = new Set([
|
|
509
|
+
'consecutive_failure_streak_5',
|
|
510
|
+
'forced_epoch_reset',
|
|
511
|
+
'failure_loop_detected',
|
|
512
|
+
]);
|
|
513
|
+
const EPOCH_GENE_POOL_CHANGE_THRESHOLD = 0.3;
|
|
514
|
+
|
|
515
|
+
function readCurrentEpoch() {
|
|
516
|
+
const statePath = memoryGraphStatePath();
|
|
517
|
+
const state = readJsonIfExists(statePath, {});
|
|
518
|
+
return {
|
|
519
|
+
epoch_id: state.current_epoch_id || null,
|
|
520
|
+
epoch_started_at: state.epoch_started_at || null,
|
|
521
|
+
prev_env_fingerprint_key: state.prev_env_fingerprint_key || null,
|
|
522
|
+
prev_gene_lib_version: state.prev_gene_lib_version || null,
|
|
523
|
+
};
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
function checkEpochBoundary({ signals, currentEnvFingerprintKey, currentGeneLibVersion }) {
|
|
527
|
+
const epoch = readCurrentEpoch();
|
|
528
|
+
const curSignals = Array.isArray(signals) ? signals : [];
|
|
529
|
+
|
|
530
|
+
// Trigger 1: explicit reset signals
|
|
531
|
+
for (const s of curSignals) {
|
|
532
|
+
if (EPOCH_RESET_TRIGGERS.has(String(s))) {
|
|
533
|
+
return { shouldReset: true, reason: `signal:${s}` };
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
// Trigger 2: environment fingerprint major change (platform/node version shift)
|
|
538
|
+
if (epoch.prev_env_fingerprint_key && currentEnvFingerprintKey &&
|
|
539
|
+
epoch.prev_env_fingerprint_key !== currentEnvFingerprintKey) {
|
|
540
|
+
return { shouldReset: true, reason: 'env_major_change' };
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
// Trigger 3: gene library version jump (>30% of genes changed)
|
|
544
|
+
if (epoch.prev_gene_lib_version && currentGeneLibVersion &&
|
|
545
|
+
epoch.prev_gene_lib_version !== currentGeneLibVersion) {
|
|
546
|
+
return { shouldReset: true, reason: 'gene_pool_refresh' };
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
return { shouldReset: false, reason: null };
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
function resetMemoryPreferences({ reason, currentEnvFingerprintKey, currentGeneLibVersion }) {
|
|
553
|
+
const ts = nowIso();
|
|
554
|
+
const epochId = `epoch_${Date.now()}_${stableHash(ts + (reason || ''))}`;
|
|
555
|
+
|
|
556
|
+
const epochEvent = {
|
|
557
|
+
type: 'MemoryGraphEvent',
|
|
558
|
+
kind: 'epoch_boundary',
|
|
559
|
+
id: `mge_${Date.now()}_${stableHash(`epoch_boundary|${ts}`)}`,
|
|
560
|
+
ts,
|
|
561
|
+
epoch: {
|
|
562
|
+
id: epochId,
|
|
563
|
+
reason: reason || 'manual',
|
|
564
|
+
started_at: ts,
|
|
565
|
+
},
|
|
566
|
+
};
|
|
567
|
+
writeMemoryGraphEvent(epochEvent);
|
|
568
|
+
|
|
569
|
+
const statePath = memoryGraphStatePath();
|
|
570
|
+
const state = readJsonIfExists(statePath, {});
|
|
571
|
+
state.current_epoch_id = epochId;
|
|
572
|
+
state.epoch_started_at = ts;
|
|
573
|
+
state.prev_env_fingerprint_key = currentEnvFingerprintKey || null;
|
|
574
|
+
state.prev_gene_lib_version = currentGeneLibVersion || null;
|
|
575
|
+
// Reset last_action to prevent stale outcome attribution
|
|
576
|
+
if (state.last_action) state.last_action.outcome_recorded = true;
|
|
577
|
+
writeJsonAtomic(statePath, state);
|
|
578
|
+
|
|
579
|
+
return { epochId, reason, started_at: ts };
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
function getMemoryAdvice({ signals, genes, driftEnabled }) {
|
|
583
|
+
const events = tryReadMemoryGraphEvents(2000);
|
|
584
|
+
|
|
585
|
+
// TTT-inspired epoch filtering: find the latest epoch_boundary event.
|
|
586
|
+
// Only use events from the current epoch for preference calculation.
|
|
587
|
+
// Cross-epoch events get a 0.1x weight (weak prior, not discarded).
|
|
588
|
+
let epochBoundaryTs = null;
|
|
589
|
+
for (let i = events.length - 1; i >= 0; i--) {
|
|
590
|
+
const ev = events[i];
|
|
591
|
+
if (ev && ev.kind === 'epoch_boundary' && ev.ts) {
|
|
592
|
+
epochBoundaryTs = Date.parse(ev.ts);
|
|
593
|
+
break;
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
// TTT-inspired: build epoch-aware edge aggregations.
|
|
598
|
+
// When an epoch boundary exists, split aggregation into current-epoch
|
|
599
|
+
// and cross-epoch sets so that ban decisions and preference scoring
|
|
600
|
+
// operate on current-epoch evidence, with cross-epoch data as weak priors.
|
|
601
|
+
const CROSS_EPOCH_WEIGHT = 0.1;
|
|
602
|
+
|
|
603
|
+
const allEdges = aggregateEdges(events);
|
|
604
|
+
const allGeneOutcomes = aggregateGeneOutcomes(events);
|
|
605
|
+
|
|
606
|
+
// Epoch-split: re-aggregate only current-epoch events for ban decisions.
|
|
607
|
+
// Use the positional index of the epoch_boundary event rather than its
|
|
608
|
+
// timestamp so that events written in the same millisecond are correctly
|
|
609
|
+
// classified as pre- or post-epoch.
|
|
610
|
+
let curEpochEdges = allEdges;
|
|
611
|
+
let curEpochGeneOutcomes = allGeneOutcomes;
|
|
612
|
+
let epochBoundaryIdx = -1;
|
|
613
|
+
if (epochBoundaryTs !== null) {
|
|
614
|
+
for (let i = events.length - 1; i >= 0; i--) {
|
|
615
|
+
const ev = events[i];
|
|
616
|
+
if (ev && ev.kind === 'epoch_boundary' && ev.ts) {
|
|
617
|
+
epochBoundaryIdx = i;
|
|
618
|
+
break;
|
|
619
|
+
}
|
|
620
|
+
}
|
|
621
|
+
}
|
|
622
|
+
if (epochBoundaryIdx >= 0) {
|
|
623
|
+
const curEpochEvents = events.slice(epochBoundaryIdx + 1);
|
|
624
|
+
curEpochEdges = aggregateEdges(curEpochEvents);
|
|
625
|
+
curEpochGeneOutcomes = aggregateGeneOutcomes(curEpochEvents);
|
|
626
|
+
}
|
|
627
|
+
|
|
628
|
+
const curSignals = Array.isArray(signals) ? signals : [];
|
|
629
|
+
const curKey = computeSignalKey(curSignals);
|
|
630
|
+
|
|
631
|
+
const bannedGeneIds = new Set();
|
|
632
|
+
const scoredGeneIds = [];
|
|
633
|
+
|
|
634
|
+
const seenKeys = new Set();
|
|
635
|
+
const candidateKeys = [];
|
|
636
|
+
candidateKeys.push({ key: curKey, sim: 1 });
|
|
637
|
+
seenKeys.add(curKey);
|
|
638
|
+
|
|
639
|
+
for (const ev of events) {
|
|
640
|
+
if (!ev || ev.type !== 'MemoryGraphEvent') continue;
|
|
641
|
+
const k = ev.signal && ev.signal.key ? String(ev.signal.key) : '(none)';
|
|
642
|
+
if (seenKeys.has(k)) continue;
|
|
643
|
+
const sigs = ev.signal && Array.isArray(ev.signal.signals) ? ev.signal.signals : [];
|
|
644
|
+
const sim = jaccard(curSignals, sigs);
|
|
645
|
+
if (sim >= 0.34) {
|
|
646
|
+
candidateKeys.push({ key: k, sim });
|
|
647
|
+
seenKeys.add(k);
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
let totalAttempts = 0;
|
|
652
|
+
const byGene = new Map();
|
|
653
|
+
for (const ck of candidateKeys) {
|
|
654
|
+
for (const g of Array.isArray(genes) ? genes : []) {
|
|
655
|
+
if (!g || g.type !== 'Gene' || !g.id) continue;
|
|
656
|
+
const k = `${ck.key}::${g.id}`;
|
|
657
|
+
const edge = allEdges.get(k);
|
|
658
|
+
const curEpochEdge = curEpochEdges.get(k);
|
|
659
|
+
const cur = byGene.get(g.id) || {
|
|
660
|
+
geneId: g.id, best: 0, attempts: 0, prior: 0, prior_attempts: 0,
|
|
661
|
+
rawSuccess: 0, rawFail: 0,
|
|
662
|
+
perKeyAttempts: 0, inert: 0, consecutiveInert: 0,
|
|
663
|
+
};
|
|
664
|
+
|
|
665
|
+
if (edge) {
|
|
666
|
+
// When an epoch boundary exists and there is current-epoch evidence
|
|
667
|
+
// for this edge, score from the current-epoch edge at full weight
|
|
668
|
+
// and treat the cross-epoch remainder as a weak prior. This avoids
|
|
669
|
+
// timestamp-resolution races where edge.last_ts coincides with the
|
|
670
|
+
// epoch boundary timestamp.
|
|
671
|
+
let weighted;
|
|
672
|
+
if (epochBoundaryTs && curEpochEdge && (curEpochEdge.success + curEpochEdge.fail) > 0) {
|
|
673
|
+
const ceEx = edgeExpectedSuccess(curEpochEdge, { half_life_days: 30 });
|
|
674
|
+
weighted = ceEx.value * ck.sim;
|
|
675
|
+
} else {
|
|
676
|
+
const ex = edgeExpectedSuccess(edge, { half_life_days: 30 });
|
|
677
|
+
let epochFactor = 1.0;
|
|
678
|
+
if (epochBoundaryTs) epochFactor = CROSS_EPOCH_WEIGHT;
|
|
679
|
+
weighted = ex.value * ck.sim * epochFactor;
|
|
680
|
+
}
|
|
681
|
+
const ex = edgeExpectedSuccess(edge, { half_life_days: 30 });
|
|
682
|
+
if (weighted > cur.best) cur.best = weighted;
|
|
683
|
+
cur.attempts = Math.max(cur.attempts, ex.total);
|
|
684
|
+
|
|
685
|
+
const ceEdge = curEpochEdge || { success: 0, fail: 0, inert: 0, consecutive_inert: 0 };
|
|
686
|
+
cur.rawSuccess += (Number(ceEdge.success) || 0);
|
|
687
|
+
cur.rawFail += (Number(ceEdge.fail) || 0);
|
|
688
|
+
if (ck.sim >= 0.8) {
|
|
689
|
+
const ceTotal = (Number(ceEdge.success) || 0) + (Number(ceEdge.fail) || 0);
|
|
690
|
+
cur.perKeyAttempts += ceTotal;
|
|
691
|
+
cur.inert += (Number(ceEdge.inert) || 0);
|
|
692
|
+
// Trailing inert run on the most-similar key (sim>=0.8). Take the max so
|
|
693
|
+
// the strongest stagnation signal across matching keys drives the ban.
|
|
694
|
+
cur.consecutiveInert = Math.max(cur.consecutiveInert, Number(ceEdge.consecutive_inert) || 0);
|
|
695
|
+
}
|
|
696
|
+
totalAttempts += ex.total;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
const gEdge = allGeneOutcomes.get(String(g.id));
|
|
700
|
+
const ceGEdge = curEpochGeneOutcomes.get(String(g.id));
|
|
701
|
+
if (gEdge) {
|
|
702
|
+
// Same logic: prefer current-epoch gene outcome when available.
|
|
703
|
+
let gWeighted;
|
|
704
|
+
if (epochBoundaryTs && ceGEdge && (ceGEdge.success + ceGEdge.fail) > 0) {
|
|
705
|
+
const ceGx = edgeExpectedSuccess(ceGEdge, { half_life_days: 45 });
|
|
706
|
+
gWeighted = ceGx.value;
|
|
707
|
+
} else {
|
|
708
|
+
const gx = edgeExpectedSuccess(gEdge, { half_life_days: 45 });
|
|
709
|
+
let gEpochFactor = 1.0;
|
|
710
|
+
if (epochBoundaryTs) gEpochFactor = CROSS_EPOCH_WEIGHT;
|
|
711
|
+
gWeighted = gx.value * gEpochFactor;
|
|
712
|
+
}
|
|
713
|
+
const gx = edgeExpectedSuccess(gEdge, { half_life_days: 45 });
|
|
714
|
+
cur.prior = Math.max(cur.prior, gWeighted);
|
|
715
|
+
cur.prior_attempts = Math.max(cur.prior_attempts, gx.total);
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
byGene.set(g.id, cur);
|
|
719
|
+
}
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
for (const [geneId, info] of byGene.entries()) {
|
|
723
|
+
const combined = info.best > 0 ? info.best + info.prior * 0.12 : info.prior * 0.4;
|
|
724
|
+
const hasPositiveEvidence = info.rawSuccess > 0 && info.rawSuccess > info.rawFail;
|
|
725
|
+
scoredGeneIds.push({
|
|
726
|
+
geneId,
|
|
727
|
+
score: combined,
|
|
728
|
+
attempts: info.attempts,
|
|
729
|
+
prior: info.prior,
|
|
730
|
+
hasPositiveEvidence,
|
|
731
|
+
});
|
|
732
|
+
// Per-signal-key ban: suppress a gene when it has failed
|
|
733
|
+
// repeatedly on keys similar to the current one (sim >= 0.8).
|
|
734
|
+
// The old global ban used `info.attempts >= 4`, which could
|
|
735
|
+
// incorrectly suppress a gene that performed well on unrelated
|
|
736
|
+
// signals but poorly on one specific key.
|
|
737
|
+
//
|
|
738
|
+
// The previous implementation gated this on `!driftEnabled`, which
|
|
739
|
+
// produced a self-defeating feedback loop: a gene that kept failing
|
|
740
|
+
// would trigger plateau detection in evolve.js, plateau detection
|
|
741
|
+
// forced drift on, and drift then bypassed this ban -- so the same
|
|
742
|
+
// failing gene kept being re-selected. Bans now apply regardless of
|
|
743
|
+
// drift: drift's purpose is to explore new combinations, not to
|
|
744
|
+
// resurrect proven failures. The `useDrift` branch in selector.js
|
|
745
|
+
// also honors bannedGeneIds for the same reason.
|
|
746
|
+
if (info.perKeyAttempts >= cfg.GENE_BAN_PER_KEY_ATTEMPTS && info.best < cfg.GENE_BAN_BEST_THRESHOLD) {
|
|
747
|
+
bannedGeneIds.add(geneId);
|
|
748
|
+
}
|
|
749
|
+
if (info.perKeyAttempts < 2 && info.prior_attempts >= 5 && info.prior < 0.10) {
|
|
750
|
+
bannedGeneIds.add(geneId);
|
|
751
|
+
}
|
|
752
|
+
// Issue EvoMap/evolver#562: ban a gene stuck producing inert (zero-work,
|
|
753
|
+
// `stable_no_error`) outcomes for this signal. A sole-matching gene is
|
|
754
|
+
// re-selected every cycle -- selector drift only diversifies when >1 gene
|
|
755
|
+
// matches -- and the failure-streak ban never trips because nothing "fails",
|
|
756
|
+
// so it dominates --loop mode indefinitely while producing no artifacts.
|
|
757
|
+
// Banning it lets the selector fall through to mutation (null -> fresh gene),
|
|
758
|
+
// restoring diversity. Gated on the consecutive-trailing inert run (reset by
|
|
759
|
+
// any real success/failure in aggregateEdges) AND zero real success on this
|
|
760
|
+
// key, so a gene that ever does real work is never punished for idle cycles.
|
|
761
|
+
if (info.consecutiveInert >= cfg.GENE_INERT_BAN_STREAK && info.rawSuccess === 0) {
|
|
762
|
+
bannedGeneIds.add(geneId);
|
|
763
|
+
}
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
scoredGeneIds.sort((a, b) => b.score - a.score);
|
|
767
|
+
const topScored = scoredGeneIds.length ? scoredGeneIds[0] : null;
|
|
768
|
+
const preferredGeneId = (topScored && topScored.score > 0 && topScored.attempts > 0 && topScored.hasPositiveEvidence)
|
|
769
|
+
? topScored.geneId
|
|
770
|
+
: null;
|
|
771
|
+
|
|
772
|
+
const explanation = [];
|
|
773
|
+
if (preferredGeneId) explanation.push(`memory_prefer:${preferredGeneId}`);
|
|
774
|
+
if (bannedGeneIds.size) explanation.push(`memory_ban:${Array.from(bannedGeneIds).slice(0, 6).join(',')}`);
|
|
775
|
+
if (preferredGeneId) {
|
|
776
|
+
const top = scoredGeneIds.find(x => x && x.geneId === preferredGeneId);
|
|
777
|
+
if (top && Number.isFinite(Number(top.prior)) && top.prior > 0) explanation.push(`gene_prior:${top.prior.toFixed(3)}`);
|
|
778
|
+
}
|
|
779
|
+
if (driftEnabled) explanation.push('random_drift:enabled');
|
|
780
|
+
|
|
781
|
+
return {
|
|
782
|
+
currentSignalKey: curKey,
|
|
783
|
+
preferredGeneId,
|
|
784
|
+
bannedGeneIds,
|
|
785
|
+
explanation,
|
|
786
|
+
totalAttempts,
|
|
787
|
+
};
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
function recordSignalSnapshot({ signals, observations }) {
|
|
791
|
+
const signalKey = computeSignalKey(signals);
|
|
792
|
+
const ts = nowIso();
|
|
793
|
+
const errsig = extractErrorSignatureFromSignals(signals);
|
|
794
|
+
const ev = {
|
|
795
|
+
type: 'MemoryGraphEvent',
|
|
796
|
+
kind: 'signal',
|
|
797
|
+
id: `mge_${Date.now()}_${stableHash(`${signalKey}|signal|${ts}`)}`,
|
|
798
|
+
ts,
|
|
799
|
+
signal: {
|
|
800
|
+
key: signalKey,
|
|
801
|
+
signals: Array.isArray(signals) ? signals : [],
|
|
802
|
+
error_signature: errsig || null,
|
|
803
|
+
},
|
|
804
|
+
observed: observations && typeof observations === 'object' ? observations : null,
|
|
805
|
+
};
|
|
806
|
+
writeMemoryGraphEvent(ev);
|
|
807
|
+
return ev;
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
function buildHypothesisText({ signalKey, signals, geneId, geneCategory, driftEnabled }) {
|
|
811
|
+
const sigCount = Array.isArray(signals) ? signals.length : 0;
|
|
812
|
+
const drift = driftEnabled ? 'drift' : 'directed';
|
|
813
|
+
const g = geneId ? `${geneId}${geneCategory ? `(${geneCategory})` : ''}` : '(none)';
|
|
814
|
+
return `Given signal_key=${signalKey} with ${sigCount} signals, selecting gene=${g} under mode=${drift} is expected to reduce repeated errors and improve stability.`;
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
function recordHypothesis({
|
|
818
|
+
signals,
|
|
819
|
+
mutation,
|
|
820
|
+
personality_state,
|
|
821
|
+
selectedGene,
|
|
822
|
+
selector,
|
|
823
|
+
driftEnabled,
|
|
824
|
+
selectedBy,
|
|
825
|
+
capsulesUsed,
|
|
826
|
+
observations,
|
|
827
|
+
}) {
|
|
828
|
+
const signalKey = computeSignalKey(signals);
|
|
829
|
+
const geneId = selectedGene && selectedGene.id ? String(selectedGene.id) : null;
|
|
830
|
+
const geneCategory = selectedGene && selectedGene.category ? String(selectedGene.category) : null;
|
|
831
|
+
const ts = nowIso();
|
|
832
|
+
const errsig = extractErrorSignatureFromSignals(signals);
|
|
833
|
+
const hypothesisId = `hyp_${Date.now()}_${stableHash(`${signalKey}|${geneId || 'none'}|${ts}`)}`;
|
|
834
|
+
const personalityState = personality_state || null;
|
|
835
|
+
const mutNorm = mutation && isValidMutation(mutation) ? normalizeMutation(mutation) : null;
|
|
836
|
+
const psNorm = personalityState && isValidPersonalityState(personalityState) ? normalizePersonalityState(personalityState) : null;
|
|
837
|
+
const ev = {
|
|
838
|
+
type: 'MemoryGraphEvent',
|
|
839
|
+
kind: 'hypothesis',
|
|
840
|
+
id: `mge_${Date.now()}_${stableHash(`${hypothesisId}|${ts}`)}`,
|
|
841
|
+
ts,
|
|
842
|
+
signal: { key: signalKey, signals: Array.isArray(signals) ? signals : [], error_signature: errsig || null },
|
|
843
|
+
hypothesis: {
|
|
844
|
+
id: hypothesisId,
|
|
845
|
+
text: buildHypothesisText({ signalKey, signals, geneId, geneCategory, driftEnabled }),
|
|
846
|
+
predicted_outcome: { status: null, score: null },
|
|
847
|
+
},
|
|
848
|
+
mutation: mutNorm
|
|
849
|
+
? {
|
|
850
|
+
id: mutNorm.id,
|
|
851
|
+
category: mutNorm.category,
|
|
852
|
+
trigger_signals: mutNorm.trigger_signals,
|
|
853
|
+
target: mutNorm.target,
|
|
854
|
+
expected_effect: mutNorm.expected_effect,
|
|
855
|
+
risk_level: mutNorm.risk_level,
|
|
856
|
+
}
|
|
857
|
+
: null,
|
|
858
|
+
personality: psNorm
|
|
859
|
+
? {
|
|
860
|
+
key: personalityKey(psNorm),
|
|
861
|
+
state: psNorm,
|
|
862
|
+
}
|
|
863
|
+
: null,
|
|
864
|
+
gene: { id: geneId, category: geneCategory },
|
|
865
|
+
action: {
|
|
866
|
+
drift: !!driftEnabled,
|
|
867
|
+
selected_by: selectedBy || 'selector',
|
|
868
|
+
selector: selector || null,
|
|
869
|
+
},
|
|
870
|
+
capsules: {
|
|
871
|
+
used: Array.isArray(capsulesUsed) ? capsulesUsed.map(String).filter(Boolean) : [],
|
|
872
|
+
},
|
|
873
|
+
observed: observations && typeof observations === 'object' ? observations : null,
|
|
874
|
+
};
|
|
875
|
+
writeMemoryGraphEvent(ev);
|
|
876
|
+
return { hypothesisId, signalKey };
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
function hasErrorSignal(signals) {
|
|
880
|
+
const list = Array.isArray(signals) ? signals : [];
|
|
881
|
+
// Check for any signal that indicates an active error state.
|
|
882
|
+
// The original implementation only checked for 'log_error', missing common
|
|
883
|
+
// error indicators like 'error', 'exception', 'failed', and errsig: entries.
|
|
884
|
+
const ERROR_INDICATORS = ['log_error', 'error', 'exception', 'failed', 'unstable'];
|
|
885
|
+
for (const sig of list) {
|
|
886
|
+
const s = String(sig).toLowerCase();
|
|
887
|
+
if (ERROR_INDICATORS.some(ind => s === ind)) return true;
|
|
888
|
+
if (s.startsWith('errsig:')) return true;
|
|
889
|
+
}
|
|
890
|
+
return false;
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
function recordAttempt({
|
|
894
|
+
signals,
|
|
895
|
+
mutation,
|
|
896
|
+
personality_state,
|
|
897
|
+
selectedGene,
|
|
898
|
+
selector,
|
|
899
|
+
driftEnabled,
|
|
900
|
+
selectedBy,
|
|
901
|
+
hypothesisId,
|
|
902
|
+
capsulesUsed,
|
|
903
|
+
observations,
|
|
904
|
+
chunkGenes,
|
|
905
|
+
}) {
|
|
906
|
+
const signalKey = computeSignalKey(signals);
|
|
907
|
+
const geneId = selectedGene && selectedGene.id ? String(selectedGene.id) : null;
|
|
908
|
+
const geneCategory = selectedGene && selectedGene.category ? String(selectedGene.category) : null;
|
|
909
|
+
const ts = nowIso();
|
|
910
|
+
const errsig = extractErrorSignatureFromSignals(signals);
|
|
911
|
+
const actionId = `act_${Date.now()}_${stableHash(`${signalKey}|${geneId || 'none'}|${ts}`)}`;
|
|
912
|
+
const personalityState = personality_state || null;
|
|
913
|
+
const mutNorm = mutation && isValidMutation(mutation) ? normalizeMutation(mutation) : null;
|
|
914
|
+
const psNorm = personalityState && isValidPersonalityState(personalityState) ? normalizePersonalityState(personalityState) : null;
|
|
915
|
+
|
|
916
|
+
// TTT-inspired: multi-gene chunk tracking
|
|
917
|
+
const chunkGeneIds = Array.isArray(chunkGenes)
|
|
918
|
+
? chunkGenes.map(function (g) { return g && g.id ? String(g.id) : null; }).filter(Boolean)
|
|
919
|
+
: [];
|
|
920
|
+
|
|
921
|
+
const ev = {
|
|
922
|
+
type: 'MemoryGraphEvent',
|
|
923
|
+
kind: 'attempt',
|
|
924
|
+
id: `mge_${Date.now()}_${stableHash(actionId)}`,
|
|
925
|
+
ts,
|
|
926
|
+
signal: { key: signalKey, signals: Array.isArray(signals) ? signals : [], error_signature: errsig || null },
|
|
927
|
+
mutation: mutNorm
|
|
928
|
+
? {
|
|
929
|
+
id: mutNorm.id,
|
|
930
|
+
category: mutNorm.category,
|
|
931
|
+
trigger_signals: mutNorm.trigger_signals,
|
|
932
|
+
target: mutNorm.target,
|
|
933
|
+
expected_effect: mutNorm.expected_effect,
|
|
934
|
+
risk_level: mutNorm.risk_level,
|
|
935
|
+
}
|
|
936
|
+
: null,
|
|
937
|
+
personality: psNorm
|
|
938
|
+
? {
|
|
939
|
+
key: personalityKey(psNorm),
|
|
940
|
+
state: psNorm,
|
|
941
|
+
}
|
|
942
|
+
: null,
|
|
943
|
+
gene: { id: geneId, category: geneCategory },
|
|
944
|
+
hypothesis: hypothesisId ? { id: String(hypothesisId) } : null,
|
|
945
|
+
action: {
|
|
946
|
+
id: actionId,
|
|
947
|
+
drift: !!driftEnabled,
|
|
948
|
+
selected_by: selectedBy || 'selector',
|
|
949
|
+
selector: selector || null,
|
|
950
|
+
},
|
|
951
|
+
capsules: {
|
|
952
|
+
used: Array.isArray(capsulesUsed) ? capsulesUsed.map(String).filter(Boolean) : [],
|
|
953
|
+
},
|
|
954
|
+
observed: observations && typeof observations === 'object' ? observations : null,
|
|
955
|
+
};
|
|
956
|
+
|
|
957
|
+
writeMemoryGraphEvent(ev);
|
|
958
|
+
|
|
959
|
+
// State is mutable; graph is append-only.
|
|
960
|
+
const statePath = memoryGraphStatePath();
|
|
961
|
+
const state = readJsonIfExists(statePath, { last_action: null });
|
|
962
|
+
state.last_action = {
|
|
963
|
+
action_id: actionId,
|
|
964
|
+
signal_key: signalKey,
|
|
965
|
+
signals: Array.isArray(signals) ? signals : [],
|
|
966
|
+
mutation_id: mutNorm ? mutNorm.id : null,
|
|
967
|
+
mutation_category: mutNorm ? mutNorm.category : null,
|
|
968
|
+
mutation_risk_level: mutNorm ? mutNorm.risk_level : null,
|
|
969
|
+
personality_key: psNorm ? personalityKey(psNorm) : null,
|
|
970
|
+
personality_state: psNorm || null,
|
|
971
|
+
gene_id: geneId,
|
|
972
|
+
gene_category: geneCategory,
|
|
973
|
+
hypothesis_id: hypothesisId ? String(hypothesisId) : null,
|
|
974
|
+
capsules_used: Array.isArray(capsulesUsed) ? capsulesUsed.map(String).filter(Boolean) : [],
|
|
975
|
+
had_error: hasErrorSignal(signals),
|
|
976
|
+
created_at: ts,
|
|
977
|
+
outcome_recorded: false,
|
|
978
|
+
baseline_observed: observations && typeof observations === 'object' ? observations : null,
|
|
979
|
+
chunk_gene_ids: chunkGeneIds.length > 0 ? chunkGeneIds : undefined,
|
|
980
|
+
};
|
|
981
|
+
writeJsonAtomic(statePath, state);
|
|
982
|
+
|
|
983
|
+
return { actionId, signalKey };
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
function inferOutcomeFromSignals({ prevHadError, currentHasError }) {
|
|
987
|
+
if (prevHadError && !currentHasError) return { status: 'success', score: 0.85, note: 'error_cleared' };
|
|
988
|
+
if (prevHadError && currentHasError) return { status: 'failed', score: 0.2, note: 'error_persisted' };
|
|
989
|
+
if (!prevHadError && currentHasError) return { status: 'failed', score: 0.15, note: 'new_error_appeared' };
|
|
990
|
+
return { status: 'success', score: 0.6, note: 'stable_no_error' };
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
function clamp01(x) {
|
|
994
|
+
const n = Number(x);
|
|
995
|
+
if (!Number.isFinite(n)) return 0;
|
|
996
|
+
return Math.max(0, Math.min(1, n));
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
function tryParseLastEvolutionEventOutcome(evidenceText) {
|
|
1000
|
+
// Scan tail text for an EvolutionEvent JSON line and extract its outcome.
|
|
1001
|
+
const s = String(evidenceText || '');
|
|
1002
|
+
if (!s) return null;
|
|
1003
|
+
const lines = s.split('\n').slice(-400);
|
|
1004
|
+
for (let i = lines.length - 1; i >= 0; i--) {
|
|
1005
|
+
const line = lines[i].trim();
|
|
1006
|
+
if (!line) continue;
|
|
1007
|
+
if (!line.includes('"type"') || !line.includes('EvolutionEvent')) continue;
|
|
1008
|
+
try {
|
|
1009
|
+
const obj = JSON.parse(line);
|
|
1010
|
+
if (!obj || obj.type !== 'EvolutionEvent') continue;
|
|
1011
|
+
const o = obj.outcome && typeof obj.outcome === 'object' ? obj.outcome : null;
|
|
1012
|
+
if (!o) continue;
|
|
1013
|
+
const status = o.status === 'success' || o.status === 'failed' ? o.status : null;
|
|
1014
|
+
const score = Number.isFinite(Number(o.score)) ? clamp01(Number(o.score)) : null;
|
|
1015
|
+
if (!status && score == null) continue;
|
|
1016
|
+
return {
|
|
1017
|
+
status: status || (score != null && score >= 0.5 ? 'success' : 'failed'),
|
|
1018
|
+
score: score != null ? score : status === 'success' ? 0.75 : 0.25,
|
|
1019
|
+
note: 'evolutionevent_observed',
|
|
1020
|
+
};
|
|
1021
|
+
} catch (e) {
|
|
1022
|
+
continue;
|
|
1023
|
+
}
|
|
1024
|
+
}
|
|
1025
|
+
return null;
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
// Decorative (non-actionable) signals that should not count toward clarity.
|
|
1029
|
+
const DECORATIVE_SIGNALS = new Set([
|
|
1030
|
+
'stable_success_plateau', 'memory_missing', 'evolution_saturation',
|
|
1031
|
+
'force_steady_state', 'empty_cycle_loop_detected',
|
|
1032
|
+
]);
|
|
1033
|
+
|
|
1034
|
+
function computePredictiveBoost({ baselineObserved, currentObserved, signals }) {
|
|
1035
|
+
let boost = 0;
|
|
1036
|
+
|
|
1037
|
+
const curSignals = Array.isArray(signals) ? signals : [];
|
|
1038
|
+
const prevSignalCount = baselineObserved && Number.isFinite(Number(baselineObserved.signal_count))
|
|
1039
|
+
? Number(baselineObserved.signal_count) : 0;
|
|
1040
|
+
const curActionable = curSignals.filter(function (s) { return !DECORATIVE_SIGNALS.has(String(s)); });
|
|
1041
|
+
|
|
1042
|
+
// (a) Signal clarity: more actionable signals relative to total = easier next selection
|
|
1043
|
+
if (curActionable.length > 0 && curSignals.length > 0) {
|
|
1044
|
+
const clarity = curActionable.length / curSignals.length;
|
|
1045
|
+
boost += Math.min(0.08, clarity * 0.08);
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
// (b) Trajectory trend: read recent outcomes from memory graph to detect momentum.
|
|
1049
|
+
// Consecutive successes = high predictability; consecutive failures = low.
|
|
1050
|
+
try {
|
|
1051
|
+
const recentEvents = tryReadMemoryGraphEvents(50);
|
|
1052
|
+
const outcomes = [];
|
|
1053
|
+
for (let i = recentEvents.length - 1; i >= 0 && outcomes.length < 5; i--) {
|
|
1054
|
+
const ev = recentEvents[i];
|
|
1055
|
+
if (ev && ev.kind === 'outcome' && ev.outcome) outcomes.push(ev.outcome.status);
|
|
1056
|
+
}
|
|
1057
|
+
if (outcomes.length >= 2) {
|
|
1058
|
+
const successes = outcomes.filter(function (s) { return s === 'success'; }).length;
|
|
1059
|
+
const trend = (successes / outcomes.length) - 0.5; // [-0.5, 0.5]
|
|
1060
|
+
boost += Math.max(-0.06, Math.min(0.06, trend * 0.12));
|
|
1061
|
+
}
|
|
1062
|
+
} catch (_) {}
|
|
1063
|
+
|
|
1064
|
+
// (c) Frontier touched: if current signals include a curriculum_target, it means
|
|
1065
|
+
// this cycle is pushing the capability boundary -- reward forward exploration.
|
|
1066
|
+
const frontierTouched = curSignals.some(function (s) {
|
|
1067
|
+
return String(s).startsWith('curriculum_target:');
|
|
1068
|
+
});
|
|
1069
|
+
if (frontierTouched) boost += 0.04;
|
|
1070
|
+
|
|
1071
|
+
return {
|
|
1072
|
+
boost: Math.max(-0.1, Math.min(0.1, boost)),
|
|
1073
|
+
signal_clarity: curSignals.length > 0 ? curActionable.length / curSignals.length : 0,
|
|
1074
|
+
trajectory_trend: boost,
|
|
1075
|
+
frontier_touched: frontierTouched,
|
|
1076
|
+
};
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
function inferOutcomeEnhanced({ prevHadError, currentHasError, baselineObserved, currentObserved, signals }) {
|
|
1080
|
+
const evidence =
|
|
1081
|
+
currentObserved &&
|
|
1082
|
+
currentObserved.evidence &&
|
|
1083
|
+
(currentObserved.evidence.recent_session_tail || currentObserved.evidence.today_log_tail)
|
|
1084
|
+
? currentObserved.evidence
|
|
1085
|
+
: null;
|
|
1086
|
+
const combinedEvidence = evidence
|
|
1087
|
+
? `${String(evidence.recent_session_tail || '')}\n${String(evidence.today_log_tail || '')}`
|
|
1088
|
+
: '';
|
|
1089
|
+
const observed = tryParseLastEvolutionEventOutcome(combinedEvidence);
|
|
1090
|
+
if (observed) return observed;
|
|
1091
|
+
|
|
1092
|
+
const base = inferOutcomeFromSignals({ prevHadError, currentHasError });
|
|
1093
|
+
|
|
1094
|
+
const prevErrCount =
|
|
1095
|
+
baselineObserved && Number.isFinite(Number(baselineObserved.recent_error_count))
|
|
1096
|
+
? Number(baselineObserved.recent_error_count)
|
|
1097
|
+
: null;
|
|
1098
|
+
const curErrCount =
|
|
1099
|
+
currentObserved && Number.isFinite(Number(currentObserved.recent_error_count))
|
|
1100
|
+
? Number(currentObserved.recent_error_count)
|
|
1101
|
+
: null;
|
|
1102
|
+
|
|
1103
|
+
let score = base.score;
|
|
1104
|
+
if (prevErrCount != null && curErrCount != null) {
|
|
1105
|
+
const delta = prevErrCount - curErrCount;
|
|
1106
|
+
score += Math.max(-0.12, Math.min(0.12, delta / 50));
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
const prevScan =
|
|
1110
|
+
baselineObserved && Number.isFinite(Number(baselineObserved.scan_ms)) ? Number(baselineObserved.scan_ms) : null;
|
|
1111
|
+
const curScan =
|
|
1112
|
+
currentObserved && Number.isFinite(Number(currentObserved.scan_ms)) ? Number(currentObserved.scan_ms) : null;
|
|
1113
|
+
if (prevScan != null && curScan != null && prevScan > 0) {
|
|
1114
|
+
const ratio = (prevScan - curScan) / prevScan;
|
|
1115
|
+
score += Math.max(-0.06, Math.min(0.06, ratio));
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
// TTT-inspired predictive boost: reward actions that improve next-cycle evolvability
|
|
1119
|
+
const predictive = computePredictiveBoost({ baselineObserved, currentObserved, signals });
|
|
1120
|
+
score += predictive.boost;
|
|
1121
|
+
|
|
1122
|
+
return {
|
|
1123
|
+
status: base.status,
|
|
1124
|
+
score: clamp01(score),
|
|
1125
|
+
note: `${base.note}|heuristic_delta|predictive`,
|
|
1126
|
+
predictive: {
|
|
1127
|
+
signal_clarity: Math.round(predictive.signal_clarity * 1000) / 1000,
|
|
1128
|
+
trajectory_trend: Math.round(predictive.trajectory_trend * 1000) / 1000,
|
|
1129
|
+
frontier_touched: predictive.frontier_touched,
|
|
1130
|
+
},
|
|
1131
|
+
};
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
function buildConfidenceEdgeEvent({ signalKey, signals, geneId, geneCategory, outcomeEventId, halfLifeDays }) {
|
|
1135
|
+
const events = tryReadMemoryGraphEvents(2000);
|
|
1136
|
+
const edges = aggregateEdges(events);
|
|
1137
|
+
const k = `${signalKey}::${geneId}`;
|
|
1138
|
+
const edge = edges.get(k) || { success: 0, fail: 0, last_ts: null };
|
|
1139
|
+
const ex = edgeExpectedSuccess(edge, { half_life_days: halfLifeDays });
|
|
1140
|
+
const ts = nowIso();
|
|
1141
|
+
return {
|
|
1142
|
+
type: 'MemoryGraphEvent',
|
|
1143
|
+
kind: 'confidence_edge',
|
|
1144
|
+
id: `mge_${Date.now()}_${stableHash(`${signalKey}|${geneId}|confidence|${ts}`)}`,
|
|
1145
|
+
ts,
|
|
1146
|
+
signal: { key: signalKey, signals: Array.isArray(signals) ? signals : [] },
|
|
1147
|
+
gene: { id: geneId, category: geneCategory || null },
|
|
1148
|
+
edge: { signal_key: signalKey, gene_id: geneId },
|
|
1149
|
+
stats: {
|
|
1150
|
+
success: Number(edge.success) || 0,
|
|
1151
|
+
fail: Number(edge.fail) || 0,
|
|
1152
|
+
attempts: Number(ex.total) || 0,
|
|
1153
|
+
p: ex.p,
|
|
1154
|
+
decay_weight: ex.w,
|
|
1155
|
+
value: ex.value,
|
|
1156
|
+
half_life_days: halfLifeDays,
|
|
1157
|
+
updated_at: ts,
|
|
1158
|
+
},
|
|
1159
|
+
derived_from: { outcome_event_id: outcomeEventId || null },
|
|
1160
|
+
};
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
function buildGeneOutcomeConfidenceEvent({ geneId, geneCategory, outcomeEventId, halfLifeDays }) {
|
|
1164
|
+
const events = tryReadMemoryGraphEvents(2000);
|
|
1165
|
+
const geneOutcomes = aggregateGeneOutcomes(events);
|
|
1166
|
+
const edge = geneOutcomes.get(String(geneId)) || { success: 0, fail: 0, last_ts: null };
|
|
1167
|
+
const ex = edgeExpectedSuccess(edge, { half_life_days: halfLifeDays });
|
|
1168
|
+
const ts = nowIso();
|
|
1169
|
+
return {
|
|
1170
|
+
type: 'MemoryGraphEvent',
|
|
1171
|
+
kind: 'confidence_gene_outcome',
|
|
1172
|
+
id: `mge_${Date.now()}_${stableHash(`${geneId}|gene_outcome|confidence|${ts}`)}`,
|
|
1173
|
+
ts,
|
|
1174
|
+
gene: { id: String(geneId), category: geneCategory || null },
|
|
1175
|
+
edge: { gene_id: String(geneId) },
|
|
1176
|
+
stats: {
|
|
1177
|
+
success: Number(edge.success) || 0,
|
|
1178
|
+
fail: Number(edge.fail) || 0,
|
|
1179
|
+
attempts: Number(ex.total) || 0,
|
|
1180
|
+
p: ex.p,
|
|
1181
|
+
decay_weight: ex.w,
|
|
1182
|
+
value: ex.value,
|
|
1183
|
+
half_life_days: halfLifeDays,
|
|
1184
|
+
updated_at: ts,
|
|
1185
|
+
},
|
|
1186
|
+
derived_from: { outcome_event_id: outcomeEventId || null },
|
|
1187
|
+
};
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1190
|
+
function recordOutcomeFromState({ signals, observations }) {
|
|
1191
|
+
const statePath = memoryGraphStatePath();
|
|
1192
|
+
const state = readJsonIfExists(statePath, { last_action: null });
|
|
1193
|
+
const last = state && state.last_action ? state.last_action : null;
|
|
1194
|
+
if (!last || !last.action_id) return null;
|
|
1195
|
+
if (last.outcome_recorded) return null;
|
|
1196
|
+
|
|
1197
|
+
const currentHasError = hasErrorSignal(signals);
|
|
1198
|
+
const inferred = inferOutcomeEnhanced({
|
|
1199
|
+
prevHadError: !!last.had_error,
|
|
1200
|
+
currentHasError,
|
|
1201
|
+
baselineObserved: last.baseline_observed || null,
|
|
1202
|
+
currentObserved: observations || null,
|
|
1203
|
+
signals,
|
|
1204
|
+
});
|
|
1205
|
+
const ts = nowIso();
|
|
1206
|
+
const errsig = extractErrorSignatureFromSignals(signals);
|
|
1207
|
+
const ev = {
|
|
1208
|
+
type: 'MemoryGraphEvent',
|
|
1209
|
+
kind: 'outcome',
|
|
1210
|
+
id: `mge_${Date.now()}_${stableHash(`${last.action_id}|outcome|${ts}`)}`,
|
|
1211
|
+
ts,
|
|
1212
|
+
signal: {
|
|
1213
|
+
key: String(last.signal_key || '(none)'),
|
|
1214
|
+
signals: Array.isArray(last.signals) ? last.signals : [],
|
|
1215
|
+
error_signature: errsig || null,
|
|
1216
|
+
},
|
|
1217
|
+
mutation:
|
|
1218
|
+
last.mutation_id || last.mutation_category || last.mutation_risk_level
|
|
1219
|
+
? {
|
|
1220
|
+
id: last.mutation_id || null,
|
|
1221
|
+
category: last.mutation_category || null,
|
|
1222
|
+
risk_level: last.mutation_risk_level || null,
|
|
1223
|
+
}
|
|
1224
|
+
: null,
|
|
1225
|
+
personality:
|
|
1226
|
+
last.personality_key || last.personality_state
|
|
1227
|
+
? {
|
|
1228
|
+
key: last.personality_key || null,
|
|
1229
|
+
state: last.personality_state || null,
|
|
1230
|
+
}
|
|
1231
|
+
: null,
|
|
1232
|
+
gene: { id: last.gene_id || null, category: last.gene_category || null },
|
|
1233
|
+
action: { id: String(last.action_id) },
|
|
1234
|
+
hypothesis: last.hypothesis_id ? { id: String(last.hypothesis_id) } : null,
|
|
1235
|
+
outcome: {
|
|
1236
|
+
status: inferred.status,
|
|
1237
|
+
score: inferred.score,
|
|
1238
|
+
note: inferred.note,
|
|
1239
|
+
observed: { current_signals: Array.isArray(signals) ? signals : [] },
|
|
1240
|
+
predictive: inferred.predictive || null,
|
|
1241
|
+
},
|
|
1242
|
+
confidence: {
|
|
1243
|
+
// This is an interpretable, decayed success estimate derived from outcomes; aggregation is computed at read-time.
|
|
1244
|
+
half_life_days: 30,
|
|
1245
|
+
},
|
|
1246
|
+
observed: observations && typeof observations === 'object' ? observations : null,
|
|
1247
|
+
baseline: last.baseline_observed || null,
|
|
1248
|
+
capsules: {
|
|
1249
|
+
used: Array.isArray(last.capsules_used) ? last.capsules_used : [],
|
|
1250
|
+
},
|
|
1251
|
+
};
|
|
1252
|
+
|
|
1253
|
+
// P4-a Slice A: when this cycle reused a Hub asset and the operator opted into
|
|
1254
|
+
// shadow mode, attach reuse attribution so the Hub can LATER (Slice B, gated +
|
|
1255
|
+
// signed off) credit the source publisher. Default off => null => no field =>
|
|
1256
|
+
// byte-identical to pre-P4-a. Data-only: moves no money, lands in the
|
|
1257
|
+
// GDI-inert MemoryGraphEvent.payload blob, read by no payout path today.
|
|
1258
|
+
const reuseAttribution = buildReuseAttribution(last);
|
|
1259
|
+
if (reuseAttribution) ev.reuse_attribution = reuseAttribution;
|
|
1260
|
+
|
|
1261
|
+
writeMemoryGraphEvent(ev);
|
|
1262
|
+
|
|
1263
|
+
// Persist explicit confidence snapshots (append-only) for auditability.
|
|
1264
|
+
try {
|
|
1265
|
+
if (last.gene_id) {
|
|
1266
|
+
const edgeEv = buildConfidenceEdgeEvent({
|
|
1267
|
+
signalKey: String(last.signal_key || '(none)'),
|
|
1268
|
+
signals: Array.isArray(last.signals) ? last.signals : [],
|
|
1269
|
+
geneId: String(last.gene_id),
|
|
1270
|
+
geneCategory: last.gene_category || null,
|
|
1271
|
+
outcomeEventId: ev.id,
|
|
1272
|
+
halfLifeDays: 30,
|
|
1273
|
+
});
|
|
1274
|
+
writeMemoryGraphEvent(edgeEv);
|
|
1275
|
+
|
|
1276
|
+
const geneEv = buildGeneOutcomeConfidenceEvent({
|
|
1277
|
+
geneId: String(last.gene_id),
|
|
1278
|
+
geneCategory: last.gene_category || null,
|
|
1279
|
+
outcomeEventId: ev.id,
|
|
1280
|
+
halfLifeDays: 45,
|
|
1281
|
+
});
|
|
1282
|
+
writeMemoryGraphEvent(geneEv);
|
|
1283
|
+
}
|
|
1284
|
+
// TTT-inspired: record confidence edges for all chunk genes (shared outcome)
|
|
1285
|
+
if (Array.isArray(last.chunk_gene_ids)) {
|
|
1286
|
+
for (const cgId of last.chunk_gene_ids) {
|
|
1287
|
+
if (!cgId || cgId === last.gene_id) continue;
|
|
1288
|
+
try {
|
|
1289
|
+
const chunkEdgeEv = buildConfidenceEdgeEvent({
|
|
1290
|
+
signalKey: String(last.signal_key || '(none)'),
|
|
1291
|
+
signals: Array.isArray(last.signals) ? last.signals : [],
|
|
1292
|
+
geneId: String(cgId),
|
|
1293
|
+
geneCategory: null,
|
|
1294
|
+
outcomeEventId: ev.id,
|
|
1295
|
+
halfLifeDays: 30,
|
|
1296
|
+
});
|
|
1297
|
+
writeMemoryGraphEvent(chunkEdgeEv);
|
|
1298
|
+
const chunkGeneEv = buildGeneOutcomeConfidenceEvent({
|
|
1299
|
+
geneId: String(cgId),
|
|
1300
|
+
geneCategory: null,
|
|
1301
|
+
outcomeEventId: ev.id,
|
|
1302
|
+
halfLifeDays: 45,
|
|
1303
|
+
});
|
|
1304
|
+
writeMemoryGraphEvent(chunkGeneEv);
|
|
1305
|
+
} catch (_) {}
|
|
1306
|
+
}
|
|
1307
|
+
}
|
|
1308
|
+
} catch (e) {}
|
|
1309
|
+
|
|
1310
|
+
last.outcome_recorded = true;
|
|
1311
|
+
last.outcome_recorded_at = ts;
|
|
1312
|
+
state.last_action = last;
|
|
1313
|
+
writeJsonAtomic(statePath, state);
|
|
1314
|
+
|
|
1315
|
+
return ev;
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
function recordExternalCandidate({ asset, source, signals }) {
|
|
1319
|
+
// Append-only annotation: external assets enter as candidates only.
|
|
1320
|
+
// This does not affect outcome aggregation (which only uses kind === 'outcome').
|
|
1321
|
+
const a = asset && typeof asset === 'object' ? asset : null;
|
|
1322
|
+
const type = a && a.type ? String(a.type) : null;
|
|
1323
|
+
const id = a && a.id ? String(a.id) : null;
|
|
1324
|
+
if (!type || !id) return null;
|
|
1325
|
+
|
|
1326
|
+
const ts = nowIso();
|
|
1327
|
+
const signalKey = computeSignalKey(signals);
|
|
1328
|
+
const ev = {
|
|
1329
|
+
type: 'MemoryGraphEvent',
|
|
1330
|
+
kind: 'external_candidate',
|
|
1331
|
+
id: `mge_${Date.now()}_${stableHash(`${type}|${id}|external|${ts}`)}`,
|
|
1332
|
+
ts,
|
|
1333
|
+
signal: { key: signalKey, signals: Array.isArray(signals) ? signals : [] },
|
|
1334
|
+
external: {
|
|
1335
|
+
source: source || 'external',
|
|
1336
|
+
received_at: ts,
|
|
1337
|
+
},
|
|
1338
|
+
asset: { type, id },
|
|
1339
|
+
candidate: {
|
|
1340
|
+
// Minimal hints for later local triggering/validation.
|
|
1341
|
+
trigger: type === 'Capsule' && Array.isArray(a.trigger) ? a.trigger : [],
|
|
1342
|
+
gene: type === 'Capsule' && a.gene ? String(a.gene) : null,
|
|
1343
|
+
confidence: type === 'Capsule' && Number.isFinite(Number(a.confidence)) ? Number(a.confidence) : null,
|
|
1344
|
+
},
|
|
1345
|
+
};
|
|
1346
|
+
|
|
1347
|
+
writeMemoryGraphEvent(ev);
|
|
1348
|
+
return ev;
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
module.exports = {
|
|
1352
|
+
memoryGraphPath,
|
|
1353
|
+
computeSignalKey,
|
|
1354
|
+
tryReadMemoryGraphEvents,
|
|
1355
|
+
writeMemoryGraphEvent,
|
|
1356
|
+
getMemoryAdvice,
|
|
1357
|
+
recordSignalSnapshot,
|
|
1358
|
+
recordHypothesis,
|
|
1359
|
+
recordAttempt,
|
|
1360
|
+
recordOutcomeFromState,
|
|
1361
|
+
recordExternalCandidate,
|
|
1362
|
+
computePredictiveBoost,
|
|
1363
|
+
checkEpochBoundary,
|
|
1364
|
+
resetMemoryPreferences,
|
|
1365
|
+
readCurrentEpoch,
|
|
1366
|
+
// Rotation helpers (issue #519). Exposed so operators / tests can
|
|
1367
|
+
// force a rotation and inspect config without monkey-patching.
|
|
1368
|
+
rotateMemoryGraphNow,
|
|
1369
|
+
maybeRotateMemoryGraph,
|
|
1370
|
+
rotationEnabled,
|
|
1371
|
+
rotationMaxSizeBytes,
|
|
1372
|
+
rotationRetentionCount,
|
|
1373
|
+
};
|
|
1374
|
+
|