@evomap/evolver 1.89.10 → 1.89.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. package/.cursor/BUGBOT.md +182 -0
  2. package/.env.example +68 -0
  3. package/.git-commit-guard-token +1 -0
  4. package/.github/CODEOWNERS +63 -0
  5. package/.github/ISSUE_TEMPLATE/good_first_issue.md +23 -0
  6. package/.github/pull_request_template.md +45 -0
  7. package/.github/workflows/test.yml +75 -0
  8. package/CHANGELOG.md +1367 -0
  9. package/README.ja-JP.md +1 -1
  10. package/README.ko-KR.md +1 -1
  11. package/README.md +90 -536
  12. package/README.public.md +578 -0
  13. package/README.zh-CN.md +1 -1
  14. package/SECURITY.md +108 -0
  15. package/assets/gep/events.jsonl +3 -0
  16. package/examples/atp-consumer-quickstart.md +100 -0
  17. package/examples/hello-world.md +38 -0
  18. package/index.js +5 -3
  19. package/package.json +6 -18
  20. package/proxy-package.json +39 -0
  21. package/public.manifest.json +145 -0
  22. package/src/adapters/scripts/evolver-session-end.js +18 -37
  23. package/src/atp/atpExecute.js +27 -71
  24. package/src/atp/serviceHelper.js +28 -36
  25. package/src/config.js +17 -0
  26. package/src/evolve/guards.js +721 -1
  27. package/src/evolve/pipeline/collect.js +1283 -1
  28. package/src/evolve/pipeline/dispatch.js +421 -1
  29. package/src/evolve/pipeline/enrich.js +440 -1
  30. package/src/evolve/pipeline/hub.js +319 -1
  31. package/src/evolve/pipeline/select.js +274 -1
  32. package/src/evolve/pipeline/signals.js +206 -1
  33. package/src/evolve/utils.js +264 -1
  34. package/src/evolve.js +350 -1
  35. package/src/gep/a2aProtocol.js +4463 -1
  36. package/src/gep/antiAbuseTelemetry.js +233 -1
  37. package/src/gep/autoDistillConv.js +205 -1
  38. package/src/gep/autoDistillLlm.js +315 -1
  39. package/src/gep/candidateEval.js +92 -1
  40. package/src/gep/candidates.js +198 -1
  41. package/src/gep/contentHash.js +30 -1
  42. package/src/gep/conversationDistiller.js +270 -0
  43. package/src/gep/conversationSniffer.js +266 -1
  44. package/src/gep/crypto.js +89 -1
  45. package/src/gep/curriculum.js +163 -1
  46. package/src/gep/deviceId.js +218 -1
  47. package/src/gep/envFingerprint.js +118 -1
  48. package/src/gep/epigenetics.js +31 -1
  49. package/src/gep/execBridge.js +712 -1
  50. package/src/gep/explore.js +289 -1
  51. package/src/gep/hash.js +15 -1
  52. package/src/gep/hubFetch.js +608 -1
  53. package/src/gep/hubReview.js +207 -1
  54. package/src/gep/hubSearch.js +526 -1
  55. package/src/gep/hubVerify.js +306 -1
  56. package/src/gep/learningSignals.js +89 -1
  57. package/src/gep/memoryGraph.js +1449 -1
  58. package/src/gep/memoryGraphAdapter.js +203 -1
  59. package/src/gep/mutation.js +203 -1
  60. package/src/gep/narrativeMemory.js +108 -1
  61. package/src/gep/oauthLogin.js +9 -3
  62. package/src/gep/openPRRegistry.js +205 -1
  63. package/src/gep/personality.js +423 -1
  64. package/src/gep/policyCheck.js +599 -1
  65. package/src/gep/privacyClient.js +10 -9
  66. package/src/gep/prompt.js +836 -1
  67. package/src/gep/questionGenerator.js +103 -0
  68. package/src/gep/recallInject.js +409 -1
  69. package/src/gep/recallVerifier.js +318 -1
  70. package/src/gep/reflection.js +177 -1
  71. package/src/gep/savingsCore.js +112 -1
  72. package/src/gep/selector.js +602 -1
  73. package/src/gep/signals.js +85 -17
  74. package/src/gep/skillDistiller.js +1294 -1
  75. package/src/gep/solidify.js +1699 -1
  76. package/src/gep/strategy.js +136 -1
  77. package/src/gep/tokenSavings.js +95 -1
  78. package/src/gep/workspaceKeychain.js +174 -1
  79. package/src/proxy/extensions/traceControl.js +109 -1
  80. package/src/proxy/index.js +100 -3
  81. package/src/proxy/inject.js +52 -1
  82. package/src/proxy/lifecycle/manager.js +108 -7
  83. package/src/proxy/server/routes.js +41 -7
  84. package/src/proxy/server/settings.js +6 -2
  85. package/src/proxy/sync/engine.js +31 -15
  86. package/src/proxy/sync/inbound.js +87 -9
  87. package/src/proxy/sync/outbound.js +57 -4
  88. package/src/proxy/trace/extractor.js +1403 -1
  89. package/src/proxy/trace/usage.js +105 -1
  90. package/CONTRIBUTING.md +0 -19
  91. package/assets/cover.png +0 -0
  92. package/scripts/a2a_export.js +0 -63
  93. package/scripts/a2a_ingest.js +0 -79
  94. package/scripts/a2a_promote.js +0 -118
  95. package/scripts/analyze_by_skill.js +0 -121
  96. package/scripts/build_binaries.js +0 -479
  97. package/scripts/check-changelog.js +0 -166
  98. package/scripts/extract_log.js +0 -85
  99. package/scripts/generate_history.js +0 -75
  100. package/scripts/gep_append_event.js +0 -96
  101. package/scripts/gep_personality_report.js +0 -234
  102. package/scripts/human_report.js +0 -147
  103. package/scripts/recall-verify-report.js +0 -234
  104. package/scripts/recover_loop.js +0 -61
  105. package/scripts/refresh_stars_badge.js +0 -168
  106. package/scripts/seed-merchants.js +0 -91
  107. package/scripts/suggest_version.js +0 -89
  108. package/scripts/validate-modules.js +0 -38
  109. package/scripts/validate-suite.js +0 -78
  110. package/skills/index.json +0 -14
  111. /package/assets/gep/{genes.seed.json → genes.json} +0 -0
  112. /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
@@ -1 +1,177 @@
1
- const _0x31f7d4=_0x6397;(function(_0x3110ce,_0x3127d2){const _0x358dd6=_0x6397,_0x4afe5a=_0x3110ce();while(!![]){try{const _0x313a86=parseInt(_0x358dd6(0x2aa,'\x77\x4f\x77\x37'))/(0x2677+0xa2e*-0x1+-0xa*0x2d4)*(-parseInt(_0x358dd6(0xf0,'\x6a\x69\x32\x4f'))/(-0x2628+-0x2*0x16f+0x2908))+-parseInt(_0x358dd6(0x132,'\x72\x6d\x4e\x36'))/(-0x1a81+0x27f*0xb+-0xf1)+-parseInt(_0x358dd6(0x293,'\x69\x5d\x6e\x6f'))/(0x2*-0x805+0x21f6+-0x11e8)+-parseInt(_0x358dd6(0x2a8,'\x69\x61\x55\x66'))/(0x1*0x8a8+0x1786+0x2029*-0x1)*(-parseInt(_0x358dd6(0x14e,'\x69\x5d\x6e\x6f'))/(-0x272+0xd71*0x2+-0x2*0xc35))+-parseInt(_0x358dd6(0x1d4,'\x66\x50\x25\x5a'))/(0x462*0x2+-0x226c+0x19af)*(parseInt(_0x358dd6(0x27b,'\x74\x55\x74\x41'))/(0x259d+-0x176f*0x1+-0x2*0x713))+-parseInt(_0x358dd6(0x1f7,'\x35\x4c\x48\x5e'))/(0xaa5+-0xd5b+0x2bf)*(-parseInt(_0x358dd6(0x170,'\x33\x73\x5d\x6c'))/(0xf0b+-0x17f6+0x1*0x8f5))+parseInt(_0x358dd6(0x230,'\x56\x76\x41\x29'))/(0x29*-0xd7+-0x11e*-0x1+-0xf4*-0x23);if(_0x313a86===_0x3127d2)break;else _0x4afe5a['push'](_0x4afe5a['shift']());}catch(_0x4e9a59){_0x4afe5a['push'](_0x4afe5a['shift']());}}}(_0x14e5,-0x182a0+0x2a900+0xda87));function _0x6397(_0x304fd2,_0x211dfc){_0x304fd2=_0x304fd2-(0x1*-0x1587+0x1729+-0xb5);const _0x2a16d0=_0x14e5();let _0x40933a=_0x2a16d0[_0x304fd2];if(_0x6397['\x62\x6a\x42\x47\x4a\x78']===undefined){var _0x32e783=function(_0x1dffd){const _0x220902='\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 _0x253b13='',_0x378487='',_0x206bb8=_0x253b13+_0x32e783,_0x3025f3=(''+function(){return 0xb53*-0x3+-0xcea+-0x1*-0x2ee3;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x456+0x2*-0xf3e+-0x1*-0x1a27);for(let _0x412b7a=0x1*-0x2a+-0x1*-0x8a1+0xc5*-0xb,_0x226d24,_0x179ca8,_0xd09495=-0x986+0x6*-0x53e+-0x5*-0x832;_0x179ca8=_0x1dffd['\x63\x68\x61\x72\x41\x74'](_0xd09495++);~_0x179ca8&&(_0x226d24=_0x412b7a%(-0x1*0x17ee+-0x75a*-0x2+0xa9*0xe)?_0x226d24*(0x174*-0x7+-0x6*-0x2bb+0x5f6*-0x1)+_0x179ca8:_0x179ca8,_0x412b7a++%(0x3*0x332+0x1e26+0x8*-0x4f7))?_0x253b13+=_0x3025f3||_0x206bb8['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xd09495+(0x83*-0xd+0x1548+0x2eb*-0x5))-(0x22be+-0x10c1*0x2+0x99*-0x2)!==-0x1ce7+-0x2675+-0x1*-0x435c?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0xaa6+0x13f3+-0x84e*0x1&_0x226d24>>(-(-0xde6+0x182e*-0x1+-0x7d*-0x4e)*_0x412b7a&-0xf*0x47+-0xcff*0x1+0x112e)):_0x412b7a:0x11*0x17d+0x2335+-0x3c82){_0x179ca8=_0x220902['\x69\x6e\x64\x65\x78\x4f\x66'](_0x179ca8);}for(let _0x30f812=0x3*0xc25+-0x1f4e*0x1+-0xd*0x65,_0x52b81d=_0x253b13['\x6c\x65\x6e\x67\x74\x68'];_0x30f812<_0x52b81d;_0x30f812++){_0x378487+='\x25'+('\x30\x30'+_0x253b13['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x30f812)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0xf68+-0x1*0xec3+0x1*-0x95))['\x73\x6c\x69\x63\x65'](-(0x3a1+-0x248b+0x83b*0x4));}return decodeURIComponent(_0x378487);};const _0x2431cd=function(_0x2ae746,_0x4c97b5){let _0x3d9b20=[],_0x2a8d12=0x47*-0x41+0x2*-0x305+0x1811,_0x1cd851,_0xebe8eb='';_0x2ae746=_0x32e783(_0x2ae746);let _0x42002a;for(_0x42002a=0x63f+0x21dd+-0x281c;_0x42002a<0x18f2+-0x1ed8+0x6e6;_0x42002a++){_0x3d9b20[_0x42002a]=_0x42002a;}for(_0x42002a=-0x155a+-0x342+0x189c;_0x42002a<0x1*-0x1c1+-0x81*-0x4b+-0x230a;_0x42002a++){_0x2a8d12=(_0x2a8d12+_0x3d9b20[_0x42002a]+_0x4c97b5['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x42002a%_0x4c97b5['\x6c\x65\x6e\x67\x74\x68']))%(0x607*0x3+0x227*0x12+-0x37d3),_0x1cd851=_0x3d9b20[_0x42002a],_0x3d9b20[_0x42002a]=_0x3d9b20[_0x2a8d12],_0x3d9b20[_0x2a8d12]=_0x1cd851;}_0x42002a=0x342+-0x192c+0x15ea,_0x2a8d12=-0x1291+-0x1*-0x4ee+0x1*0xda3;for(let _0x31f771=0x1bd6+0xeb9+-0x2a8f;_0x31f771<_0x2ae746['\x6c\x65\x6e\x67\x74\x68'];_0x31f771++){_0x42002a=(_0x42002a+(0x19f4+-0x1369+-0x68a))%(-0x101*-0x14+0x1ed5+0x1*-0x31e9),_0x2a8d12=(_0x2a8d12+_0x3d9b20[_0x42002a])%(-0xc5d+-0x1fbb+0x2d18),_0x1cd851=_0x3d9b20[_0x42002a],_0x3d9b20[_0x42002a]=_0x3d9b20[_0x2a8d12],_0x3d9b20[_0x2a8d12]=_0x1cd851,_0xebe8eb+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x2ae746['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x31f771)^_0x3d9b20[(_0x3d9b20[_0x42002a]+_0x3d9b20[_0x2a8d12])%(-0x2000+-0x2*-0x7ea+0x112c)]);}return _0xebe8eb;};_0x6397['\x6c\x49\x6a\x56\x50\x4c']=_0x2431cd,_0x6397['\x66\x6b\x5a\x42\x50\x70']={},_0x6397['\x62\x6a\x42\x47\x4a\x78']=!![];}const _0x4476de=_0x2a16d0[-0xdee+0x1252+0x232*-0x2],_0x20a76c=_0x304fd2+_0x4476de,_0x4b6fda=_0x6397['\x66\x6b\x5a\x42\x50\x70'][_0x20a76c];if(!_0x4b6fda){if(_0x6397['\x6b\x66\x4b\x48\x57\x78']===undefined){const _0x309ff8=function(_0x54b726){this['\x79\x67\x71\x51\x41\x72']=_0x54b726,this['\x4b\x74\x6b\x50\x47\x51']=[-0xc7e+-0x1*0x1883+0x2502,-0x5a6+-0x1ee7+0x3*0xc2f,0xa*-0x18a+-0x1b98+0x2afc],this['\x52\x79\x4f\x47\x58\x76']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x77\x50\x6a\x57\x53\x43']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x76\x6e\x62\x42\x5a\x6f']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x309ff8['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x6d\x62\x57\x55\x53\x51']=function(){const _0x915106=new RegExp(this['\x77\x50\x6a\x57\x53\x43']+this['\x76\x6e\x62\x42\x5a\x6f']),_0x25da7c=_0x915106['\x74\x65\x73\x74'](this['\x52\x79\x4f\x47\x58\x76']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x4b\x74\x6b\x50\x47\x51'][-0x2231*0x1+-0x11ac+-0x33de*-0x1]:--this['\x4b\x74\x6b\x50\x47\x51'][0x118e*0x1+-0x1d2f+0xba1];return this['\x4a\x4d\x6d\x43\x72\x56'](_0x25da7c);},_0x309ff8['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4a\x4d\x6d\x43\x72\x56']=function(_0x571777){if(!Boolean(~_0x571777))return _0x571777;return this['\x65\x55\x6e\x6b\x68\x50'](this['\x79\x67\x71\x51\x41\x72']);},_0x309ff8['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x65\x55\x6e\x6b\x68\x50']=function(_0x164da0){for(let _0x482b12=-0x1987+0x1*0xf5b+0x2*0x516,_0x3946ee=this['\x4b\x74\x6b\x50\x47\x51']['\x6c\x65\x6e\x67\x74\x68'];_0x482b12<_0x3946ee;_0x482b12++){this['\x4b\x74\x6b\x50\x47\x51']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x3946ee=this['\x4b\x74\x6b\x50\x47\x51']['\x6c\x65\x6e\x67\x74\x68'];}return _0x164da0(this['\x4b\x74\x6b\x50\x47\x51'][0x1*0x269f+-0x10b*0x1f+-0x325*0x2]);},(''+function(){return 0x7fc+-0x6*-0x421+-0x20c2;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x115a+-0x2054+-0x1*-0xefb)&&new _0x309ff8(_0x6397)['\x6d\x62\x57\x55\x53\x51'](),_0x6397['\x6b\x66\x4b\x48\x57\x78']=!![];}_0x40933a=_0x6397['\x6c\x49\x6a\x56\x50\x4c'](_0x40933a,_0x211dfc),_0x6397['\x66\x6b\x5a\x42\x50\x70'][_0x20a76c]=_0x40933a;}else _0x40933a=_0x4b6fda;return _0x40933a;}const _0xb10868=(function(){const _0x479cb9=_0x6397,_0x5abb19={};_0x5abb19[_0x479cb9(0x212,'\x74\x55\x74\x41')]=function(_0xf2632f,_0x1dc422){return _0xf2632f===_0x1dc422;},_0x5abb19[_0x479cb9(0xfc,'\x5b\x5a\x54\x4d')]=function(_0x3f1d15,_0x1efcee){return _0x3f1d15<_0x1efcee;},_0x5abb19[_0x479cb9(0x16d,'\x4a\x4c\x46\x46')]=_0x479cb9(0x141,'\x66\x48\x2a\x44');const _0x578b9e=_0x5abb19;let _0x2ddfef=!![];return function(_0x68d77a,_0x304c8c){const _0x1bc64b=_0x479cb9,_0xbe6cd8={'\x68\x6d\x61\x4a\x49':function(_0x566e91,_0x1889fe){const _0x530b97=_0x6397;return _0x578b9e[_0x530b97(0x278,'\x57\x78\x37\x6a')](_0x566e91,_0x1889fe);},'\x62\x78\x65\x65\x49':_0x1bc64b(0x117,'\x63\x51\x47\x57'),'\x61\x48\x64\x6f\x67':function(_0x1f0e33,_0x3cc085){const _0x3738be=_0x1bc64b;return _0x578b9e[_0x3738be(0x218,'\x29\x64\x45\x4f')](_0x1f0e33,_0x3cc085);}};if(_0x578b9e[_0x1bc64b(0x292,'\x24\x46\x37\x42')]!==_0x578b9e[_0x1bc64b(0x279,'\x52\x40\x4b\x79')]){const _0x3fbb74={'\x4d\x50\x63\x57\x4c':function(_0x30d060,_0x427fe6){const _0x406d26=_0x1bc64b;return _0xbe6cd8[_0x406d26(0x2b6,'\x7a\x7a\x28\x5a')](_0x30d060,_0x427fe6);},'\x78\x67\x65\x45\x6f':function(_0x45bd00,_0x59ff53){return _0x45bd00===_0x59ff53;},'\x45\x67\x56\x65\x4c':_0xbe6cd8['\x62\x78\x65\x65\x49']};var _0x43a3e5=_0x43aeb7[_0x1bc64b(0x159,'\x77\x36\x6f\x50')](_0x314247)?_0x5452d9:[];if(_0xbe6cd8[_0x1bc64b(0x283,'\x66\x4d\x56\x61')](_0x43a3e5[_0x1bc64b(0x243,'\x72\x47\x64\x35')],0x16fb+0x70*0x4+0x71*-0x38))return _0x44f8e3;var _0x17a425=_0x43a3e5[_0x1bc64b(0x26a,'\x52\x40\x4b\x79')](-(0x1d72+0x1759*-0x1+-0x616)),_0x407d92=_0x17a425[_0x1bc64b(0x13c,'\x23\x5e\x35\x28')](function(_0x41e257){const _0x3af157=_0x1bc64b;return _0x41e257&&_0x41e257[_0x3af157(0x1ed,'\x56\x76\x41\x29')]&&_0x3fbb74[_0x3af157(0x12d,'\x6a\x69\x32\x4f')](_0x41e257[_0x3af157(0x29f,'\x31\x7a\x43\x40')][_0x3af157(0x193,'\x32\x25\x63\x78')],_0x3af157(0x1b2,'\x23\x5e\x35\x28'));}),_0x2b6443=_0x17a425[_0x1bc64b(0x199,'\x78\x57\x5e\x6f')](function(_0x5b7493){const _0x50d886=_0x1bc64b;return _0x5b7493&&_0x5b7493[_0x50d886(0xfa,'\x45\x38\x44\x69')]&&_0x3fbb74[_0x50d886(0x140,'\x77\x36\x6f\x50')](_0x5b7493[_0x50d886(0x221,'\x7a\x7a\x28\x5a')][_0x50d886(0x1e1,'\x7a\x50\x65\x75')],_0x3fbb74[_0x50d886(0x11b,'\x24\x46\x37\x42')]);});if(_0x407d92)return _0x213ccc;if(_0x2b6443)return _0x433e27;}else{const _0x3c3503=_0x2ddfef?function(){const _0x467698=_0x1bc64b;if(_0x304c8c){const _0x52136c=_0x304c8c[_0x467698(0x2c6,'\x72\x47\x64\x35')](_0x68d77a,arguments);return _0x304c8c=null,_0x52136c;}}:function(){};return _0x2ddfef=![],_0x3c3503;}};}()),_0x555b74=_0xb10868(this,function(){const _0x1aae93=_0x6397,_0x18bc17={};_0x18bc17[_0x1aae93(0x2d6,'\x58\x72\x73\x5d')]='\x28\x28\x28\x2e\x2b\x29\x2b\x29'+_0x1aae93(0x1c5,'\x69\x61\x55\x66');const _0x3f9c6a=_0x18bc17;return _0x555b74[_0x1aae93(0x28d,'\x69\x77\x76\x77')]()['\x73\x65\x61\x72\x63\x68']('\x28\x28\x28\x2e\x2b\x29\x2b\x29'+_0x1aae93(0x2ca,'\x4a\x4c\x46\x46'))[_0x1aae93(0x1a2,'\x77\x4f\x77\x37')]()['\x63\x6f\x6e\x73\x74\x72\x75\x63'+_0x1aae93(0x12c,'\x66\x4c\x5b\x5d')](_0x555b74)['\x73\x65\x61\x72\x63\x68'](_0x3f9c6a[_0x1aae93(0x1fc,'\x31\x7a\x43\x40')]);});_0x555b74();'use strict';const _0x3456d0=require('\x66\x73'),_0x254a7c=require(_0x31f7d4(0x26c,'\x63\x51\x47\x57')),{getReflectionLogPath:_0xfca8ef,getEvolutionDir:_0x324a26}=require('\x2e\x2f\x70\x61\x74\x68\x73'),_0x5957fd=-0x5*0x2a6+0x26e7*0x1+0x88c*-0x3,_0x1296cd=-0x1*-0x1fa1+-0x152d+0x17*-0x74,_0x44ddea=-0xd88+-0x25+0xdb0,_0xd9b4ce=(0x1d*0x1c+0x1d72+-0x20*0x104)*(-0x31*0x34+-0x84*0x4+-0xe0*-0xe)*(-0x10d*0x1+0x2*-0x7c9+-0x1*-0x1487),_0x10d631=_0x5957fd;function _0x2ff3fa(_0x58d889){const _0x3c490e=_0x31f7d4,_0x1456a8={};_0x1456a8[_0x3c490e(0x22b,'\x79\x4d\x37\x25')]=function(_0x2636df,_0x15a7a3){return _0x2636df<_0x15a7a3;},_0x1456a8[_0x3c490e(0x1de,'\x5a\x73\x63\x28')]=function(_0x261d5b,_0x2a46ec){return _0x261d5b-_0x2a46ec;},_0x1456a8[_0x3c490e(0x290,'\x6a\x69\x32\x4f')]=function(_0x3bccc8,_0x3f55c2){return _0x3bccc8===_0x3f55c2;},_0x1456a8[_0x3c490e(0x1e0,'\x63\x51\x47\x57')]=_0x3c490e(0x295,'\x6a\x69\x32\x4f'),_0x1456a8[_0x3c490e(0x1b5,'\x35\x4c\x48\x5e')]=_0x3c490e(0x15c,'\x66\x48\x2a\x44');const _0x12eb5b=_0x1456a8;try{if(_0x12eb5b[_0x3c490e(0x124,'\x72\x47\x64\x35')](_0x12eb5b[_0x3c490e(0x18d,'\x6b\x5d\x67\x6c')],_0x12eb5b[_0x3c490e(0x2ba,'\x72\x47\x64\x35')])){const _0x483dcb=_0x19cb32[_0x3c490e(0x222,'\x72\x6d\x4e\x36')](_0x51213f);if(_0x12eb5b[_0x3c490e(0x12a,'\x69\x5d\x6e\x6f')](_0x12eb5b[_0x3c490e(0x234,'\x69\x77\x76\x77')](_0x577691['\x6e\x6f\x77'](),_0x483dcb[_0x3c490e(0x258,'\x43\x25\x5e\x44')]),_0x19afa1))return![];}else{const _0x420a82={};_0x420a82[_0x3c490e(0x1ad,'\x5a\x73\x63\x28')+'\x65']=!![];if(!_0x3456d0[_0x3c490e(0x262,'\x31\x7a\x43\x40')+'\x6e\x63'](_0x58d889))_0x3456d0[_0x3c490e(0x1c8,'\x69\x5d\x6e\x6f')+'\x63'](_0x58d889,_0x420a82);}}catch(_0x53baf5){}}function _0x2ab537(_0x38fe55){const _0x35c38c=_0x31f7d4,_0x22f8d1={};_0x22f8d1[_0x35c38c(0x10f,'\x24\x46\x37\x42')]=function(_0x385495,_0x3e1bcc){return _0x385495===_0x3e1bcc;},_0x22f8d1[_0x35c38c(0x188,'\x31\x7a\x43\x40')]=_0x35c38c(0x214,'\x66\x4d\x56\x61'),_0x22f8d1[_0x35c38c(0x242,'\x66\x48\x2a\x44')]=function(_0x5c265b,_0x581d1b){return _0x5c265b+_0x581d1b;},_0x22f8d1[_0x35c38c(0x2ae,'\x6a\x69\x32\x4f')]=function(_0x5cf829,_0x350470){return _0x5cf829!==_0x350470;},_0x22f8d1[_0x35c38c(0x2ac,'\x54\x23\x59\x2a')]=_0x35c38c(0x2ab,'\x52\x2a\x57\x26'),_0x22f8d1[_0x35c38c(0x190,'\x57\x78\x37\x6a')]=_0x35c38c(0x288,'\x66\x4d\x56\x61'),_0x22f8d1[_0x35c38c(0x111,'\x66\x48\x2a\x44')]=_0x35c38c(0x2e2,'\x6b\x5d\x67\x6c');const _0x165413=_0x22f8d1;try{var _0x5abc75=Array[_0x35c38c(0x29a,'\x78\x28\x7a\x7a')](_0x38fe55)?_0x38fe55:[];if(_0x5abc75[_0x35c38c(0x21a,'\x57\x78\x37\x6a')]<-0x19da+-0x1cf+-0xb*-0x284)return _0x5957fd;var _0x483ea3=_0x5abc75[_0x35c38c(0x25b,'\x29\x64\x45\x4f')](-(0x3*-0x642+0x1ee*0x6+-0x3*-0x267)),_0x122c5c=_0x483ea3[_0x35c38c(0x1e7,'\x66\x50\x25\x5a')](function(_0x5b80c9){const _0x156f7d=_0x35c38c;return _0x5b80c9&&_0x5b80c9[_0x156f7d(0x139,'\x51\x55\x4e\x36')]&&_0x165413[_0x156f7d(0x17d,'\x74\x34\x75\x57')](_0x5b80c9[_0x156f7d(0x25a,'\x6e\x5b\x26\x26')][_0x156f7d(0x2e1,'\x30\x31\x58\x55')],_0x165413[_0x156f7d(0x280,'\x56\x76\x41\x29')]);}),_0x28230c=_0x483ea3[_0x35c38c(0x168,'\x7a\x7a\x28\x5a')](function(_0x27de80){const _0x1fab8c=_0x35c38c,_0x23e087={'\x42\x48\x74\x70\x50':_0x1fab8c(0x1ab,'\x6c\x59\x45\x30'),'\x7a\x4c\x4e\x6d\x50':function(_0x41d5b6,_0x4abb22){const _0xef6328=_0x1fab8c;return _0x165413[_0xef6328(0x28c,'\x58\x72\x73\x5d')](_0x41d5b6,_0x4abb22);}};if(_0x165413[_0x1fab8c(0x181,'\x63\x51\x47\x57')](_0x165413[_0x1fab8c(0x23a,'\x69\x77\x76\x77')],_0x165413[_0x1fab8c(0x236,'\x77\x4f\x77\x37')]))return _0x27de80&&_0x27de80[_0x1fab8c(0x173,'\x5b\x5a\x54\x4d')]&&_0x165413[_0x1fab8c(0x2d8,'\x6c\x59\x45\x30')](_0x27de80[_0x1fab8c(0x1ee,'\x29\x64\x45\x4f')][_0x1fab8c(0x1e5,'\x52\x2a\x57\x26')],_0x165413[_0x1fab8c(0x255,'\x43\x25\x5e\x44')]);else{const _0x1a12ea=_0x35b3fb&&_0x33dff2[_0x1fab8c(0x271,'\x24\x46\x37\x42')]?_0x2098eb['\x69\x6e\x74\x65\x6e\x74']:_0x23e087[_0x1fab8c(0x184,'\x6c\x59\x45\x30')];_0x8f56d3[_0x1a12ea]=_0x23e087[_0x1fab8c(0x1b7,'\x78\x25\x23\x59')](_0x270468[_0x1a12ea]||-0x1e07+0x26cb+0xbb*-0xc,0xdf7+0x1532+0x4*-0x8ca);}});if(_0x122c5c)return _0x1296cd;if(_0x28230c)return _0x44ddea;}catch(_0x202576){}return _0x5957fd;}function _0x5a6bf0({cycleCount:_0x2ec6b4,recentEvents:_0x311f7f}){const _0x2c6a74=_0x31f7d4,_0x2f1778={'\x4c\x7a\x57\x5a\x5a':function(_0x3baee1,_0x535178){return _0x3baee1===_0x535178;},'\x75\x63\x78\x52\x75':_0x2c6a74(0xf4,'\x73\x54\x55\x70'),'\x43\x58\x4c\x42\x50':function(_0x2b536a,_0x3bb2e0){return _0x2b536a(_0x3bb2e0);},'\x53\x59\x6c\x6a\x6b':function(_0x5f4bbb,_0x22d7fa){return _0x5f4bbb!==_0x22d7fa;},'\x63\x6d\x52\x65\x71':function(_0x446c76,_0x243eba){return _0x446c76%_0x243eba;},'\x48\x4e\x6c\x57\x74':function(_0x1f1564){return _0x1f1564();},'\x53\x66\x61\x78\x67':'\x69\x44\x62\x71\x4b','\x64\x67\x61\x79\x54':function(_0x380c49,_0xe82b61){return _0x380c49-_0xe82b61;}};var _0x2dafc2=_0x2f1778[_0x2c6a74(0x103,'\x69\x77\x76\x77')](_0x2ab537,_0x311f7f);if(!Number[_0x2c6a74(0x15f,'\x79\x4d\x37\x25')](_0x2ec6b4)||_0x2ec6b4<_0x2dafc2)return![];if(_0x2f1778[_0x2c6a74(0x10c,'\x66\x50\x25\x5a')](_0x2f1778[_0x2c6a74(0x2a5,'\x66\x50\x25\x5a')](_0x2ec6b4,_0x2dafc2),0x1*-0x6bc+-0x2*0x3b9+-0x14a*-0xb))return![];const _0xc0a5cc=_0x2f1778[_0x2c6a74(0x13e,'\x6e\x5b\x26\x26')](_0xfca8ef);try{if(_0x3456d0[_0x2c6a74(0x19d,'\x5b\x5a\x54\x4d')+'\x6e\x63'](_0xc0a5cc)){if(_0x2f1778[_0x2c6a74(0x260,'\x74\x55\x74\x41')]===_0x2c6a74(0x2dc,'\x66\x4d\x56\x61')){const _0x2c47a2=_0x3456d0[_0x2c6a74(0x10b,'\x69\x77\x76\x77')](_0xc0a5cc);if(_0x2f1778[_0x2c6a74(0x136,'\x45\x38\x44\x69')](Date[_0x2c6a74(0x144,'\x74\x34\x75\x57')](),_0x2c47a2[_0x2c6a74(0x22f,'\x72\x47\x64\x35')])<_0xd9b4ce)return![];}else return _0x49a939&&_0x441cc5[_0x2c6a74(0x1a8,'\x6b\x5d\x67\x6c')]&&dPfBnT[_0x2c6a74(0x11a,'\x6c\x59\x45\x30')](_0x535a11[_0x2c6a74(0x25a,'\x6e\x5b\x26\x26')]['\x73\x74\x61\x74\x75\x73'],dPfBnT[_0x2c6a74(0x1cf,'\x52\x40\x4b\x79')]);}}catch(_0x4cde36){}return!![];}function _0xb2ac2c(_0x3d20c1){const _0x3bd2db=_0x31f7d4,_0x5e44df={'\x4d\x67\x41\x43\x54':_0x3bd2db(0x2c5,'\x5b\x5a\x54\x4d'),'\x70\x6e\x45\x41\x4a':_0x3bd2db(0x238,'\x32\x25\x63\x78'),'\x76\x66\x56\x75\x44':function(_0x232440,_0x32b7dc){return _0x232440===_0x32b7dc;},'\x69\x47\x48\x4d\x4d':function(_0x23f344,_0x355af5){return _0x23f344===_0x355af5;},'\x6f\x41\x41\x78\x7a':_0x3bd2db(0x269,'\x31\x7a\x43\x40'),'\x4d\x56\x59\x41\x62':'\x65\x72\x72\x6f\x72\x73\x20\x64'+_0x3bd2db(0x2e3,'\x77\x36\x6f\x50')+_0x3bd2db(0x152,'\x79\x4d\x37\x25')+_0x3bd2db(0x2d5,'\x7a\x50\x65\x75'),'\x52\x6a\x6a\x65\x68':_0x3bd2db(0x2e5,'\x79\x4d\x37\x25'),'\x50\x7a\x7a\x4d\x7a':function(_0x231bea,_0x17ca31){return _0x231bea===_0x17ca31;},'\x6c\x69\x4b\x6b\x51':_0x3bd2db(0x19b,'\x7a\x50\x65\x75')+'\x72','\x49\x68\x6a\x49\x48':function(_0x592c8b,_0x2570e7){return _0x592c8b(_0x2570e7);},'\x78\x4c\x51\x68\x78':_0x3bd2db(0x102,'\x52\x40\x4b\x79'),'\x79\x6d\x65\x6e\x5a':_0x3bd2db(0x142,'\x67\x61\x4f\x73')+_0x3bd2db(0x171,'\x67\x61\x4f\x73'),'\x51\x57\x6d\x42\x70':'\x63\x61\x70\x61\x62\x69\x6c\x69'+'\x74\x79\x5f\x67\x61\x70','\x52\x41\x59\x4e\x42':_0x3bd2db(0x299,'\x72\x47\x64\x35')+_0x3bd2db(0x107,'\x6b\x5d\x67\x6c')+_0x3bd2db(0x1fd,'\x5b\x5a\x54\x4d'),'\x72\x59\x49\x54\x54':_0x3bd2db(0x108,'\x66\x4c\x5b\x5d')+'\x74\x79','\x46\x71\x5a\x54\x5a':_0x3bd2db(0x1ac,'\x66\x4d\x56\x61')+_0x3bd2db(0x1d3,'\x72\x35\x79\x26')+_0x3bd2db(0x118,'\x77\x36\x6f\x50')+_0x3bd2db(0x1c3,'\x77\x4f\x77\x37')};var _0x8a5b23=Array[_0x3bd2db(0x159,'\x77\x36\x6f\x50')](_0x3d20c1)?_0x3d20c1:[],_0x5b2655=[],_0x2bbae3=_0x8a5b23[_0x3bd2db(0x25f,'\x6c\x59\x45\x30')](function(_0x5f78c6){const _0x360fc4=_0x3bd2db;if(_0x5e44df[_0x360fc4(0x23d,'\x78\x28\x7a\x7a')]===_0x5e44df[_0x360fc4(0x120,'\x5b\x5a\x54\x4d')])_0x426241[_0x360fc4(0x17b,'\x7a\x50\x65\x75')](_0x360fc4(0x1a9,'\x52\x2a\x57\x26')+_0x360fc4(0x2bf,'\x7a\x50\x65\x75')+'\x3a\x20'+_0x432147[_0x360fc4(0x2b5,'\x55\x24\x43\x74')+_0x360fc4(0x28e,'\x66\x4c\x5b\x5d')]);else return _0x5e44df['\x76\x66\x56\x75\x44'](_0x5f78c6,_0x360fc4(0x21e,'\x56\x76\x41\x29')+_0x360fc4(0x240,'\x77\x36\x6f\x50')+_0x360fc4(0x163,'\x6b\x5d\x67\x6c'))||_0x5e44df[_0x360fc4(0xf5,'\x57\x78\x37\x6a')](_0x5f78c6,_0x360fc4(0x1b1,'\x66\x48\x2a\x44')+_0x360fc4(0x209,'\x31\x7a\x43\x40')+_0x360fc4(0x282,'\x72\x47\x64\x35')+'\x65\x63\x74\x65\x64')||_0x5e44df[_0x360fc4(0x10a,'\x43\x25\x5e\x44')](_0x5f78c6,_0x360fc4(0x207,'\x57\x78\x37\x6a')+_0x360fc4(0x2a4,'\x73\x54\x55\x70')+'\x5f\x64\x65\x74\x65\x63\x74\x65'+'\x64');}),_0x2555ed=_0x8a5b23['\x73\x6f\x6d\x65'](function(_0x3f8dc9){const _0x1fac5c=_0x3bd2db;if(_0x5e44df[_0x1fac5c(0x155,'\x78\x28\x7a\x7a')](_0x5e44df[_0x1fac5c(0x231,'\x33\x73\x5d\x6c')],_0x1fac5c(0x217,'\x52\x2a\x57\x26')))return _0x5e44df[_0x1fac5c(0x26f,'\x72\x35\x79\x26')](_0x3f8dc9,_0x5e44df[_0x1fac5c(0x20f,'\x30\x31\x58\x55')])||_0x5e44df[_0x1fac5c(0x265,'\x69\x61\x55\x66')](String,_0x3f8dc9)[_0x1fac5c(0x27a,'\x24\x46\x37\x42')+'\x74\x68'](_0x5e44df[_0x1fac5c(0x2b0,'\x74\x34\x75\x57')])||_0x5e44df[_0x1fac5c(0x2c1,'\x6e\x5b\x26\x26')](String,_0x3f8dc9)[_0x1fac5c(0xf3,'\x72\x6d\x4e\x36')+'\x74\x68'](_0x5e44df[_0x1fac5c(0x1ca,'\x74\x34\x75\x57')]);else{const _0x1c22f5={};_0x1c22f5[_0x1fac5c(0x24d,'\x24\x46\x37\x42')]=_0x5e44df[_0x1fac5c(0x16b,'\x69\x61\x55\x66')],_0x1c22f5[_0x1fac5c(0x122,'\x72\x35\x79\x26')]=+(0x4c6*-0x7+-0x1d97*0x1+0x3f01*0x1+0.05),_0x1c22f5[_0x1fac5c(0x1a6,'\x66\x48\x2a\x44')]=_0x5e44df[_0x1fac5c(0x150,'\x66\x4c\x5b\x5d')],_0x4234f2['\x70\x75\x73\x68'](_0x1c22f5);}}),_0x44f3fd=_0x8a5b23[_0x3bd2db(0x11e,'\x66\x50\x25\x5a')](function(_0x57a339){const _0x2de956=_0x3bd2db;return _0x5e44df[_0x2de956(0x1df,'\x35\x4c\x48\x5e')](_0x57a339,_0x5e44df[_0x2de956(0x19e,'\x33\x73\x5d\x6c')])||_0x5e44df[_0x2de956(0x104,'\x77\x4f\x77\x37')](_0x57a339,_0x5e44df[_0x2de956(0x174,'\x65\x79\x46\x36')]);});if(_0x2bbae3){const _0x43f710={};_0x43f710[_0x3bd2db(0x23c,'\x79\x4d\x37\x25')]=_0x5e44df[_0x3bd2db(0x2be,'\x56\x76\x41\x29')],_0x43f710['\x64\x65\x6c\x74\x61']=+(0x1*-0x161b+-0xcf8+-0x3*-0xbb1+0.05),_0x43f710[_0x3bd2db(0x20a,'\x35\x4c\x48\x5e')]='\x73\x74\x61\x67\x6e\x61\x74\x69'+_0x3bd2db(0x21b,'\x69\x5d\x6e\x6f')+_0x3bd2db(0x1ae,'\x5b\x5a\x54\x4d')+'\x65\x66\x6c\x65\x63\x74\x69\x6f'+'\x6e',_0x5b2655['\x70\x75\x73\x68'](_0x43f710);}if(_0x2555ed){const _0x26ed28={};_0x26ed28['\x70\x61\x72\x61\x6d']=_0x5e44df[_0x3bd2db(0x287,'\x45\x38\x44\x69')],_0x26ed28['\x64\x65\x6c\x74\x61']=+(-0x1bc*0xd+-0x2cc+0x1958+0.05),_0x26ed28['\x72\x65\x61\x73\x6f\x6e']=_0x5e44df[_0x3bd2db(0x277,'\x73\x54\x55\x70')],_0x5b2655[_0x3bd2db(0x291,'\x77\x4f\x77\x37')](_0x26ed28);}if(_0x44f3fd){const _0x5dda3d={};_0x5dda3d[_0x3bd2db(0x1ff,'\x66\x4c\x5b\x5d')]=_0x3bd2db(0x15b,'\x63\x6b\x43\x7a')+_0x3bd2db(0x1b9,'\x7a\x7a\x28\x5a'),_0x5dda3d[_0x3bd2db(0x2a1,'\x54\x23\x59\x2a')]=+(0x2*0x133+0x490+-0x6f6+0.05),_0x5dda3d[_0x3bd2db(0x2db,'\x69\x5d\x6e\x6f')]=_0x5e44df[_0x3bd2db(0x201,'\x6a\x69\x32\x4f')],_0x5b2655[_0x3bd2db(0x2dd,'\x78\x57\x5e\x6f')](_0x5dda3d);}return _0x5b2655[_0x3bd2db(0x1f1,'\x7a\x7a\x28\x5a')](-0xf9d+-0x1*-0x911+0x68c,-0x26b4+0x23e0+0x2d6);}function _0x14e5(){const _0x49d53=['\x71\x6d\x6b\x36\x57\x4f\x38\x34\x6a\x47','\x43\x6d\x6b\x2b\x57\x35\x57\x73\x77\x58\x4b','\x41\x6d\x6b\x59\x57\x34\x30\x7a\x74\x4b\x34\x4f\x57\x35\x34','\x57\x34\x58\x6e\x45\x5a\x68\x63\x56\x57\x38','\x57\x34\x33\x64\x4c\x38\x6b\x53\x57\x50\x74\x63\x55\x57','\x79\x43\x6b\x75\x57\x35\x61\x56\x57\x35\x65','\x6c\x72\x33\x64\x4b\x38\x6f\x36\x57\x36\x46\x63\x4b\x53\x6f\x36\x57\x37\x79','\x57\x4f\x57\x65\x77\x38\x6b\x68\x57\x36\x78\x63\x50\x71\x53\x38','\x57\x4f\x6a\x76\x75\x4b\x34','\x57\x36\x38\x37\x6a\x4d\x66\x6f\x78\x53\x6b\x49\x72\x71','\x45\x6d\x6b\x5a\x78\x5a\x75','\x57\x4f\x6e\x69\x77\x58\x47','\x76\x65\x48\x4c\x57\x52\x61\x75','\x7a\x38\x6f\x6c\x63\x48\x72\x30\x57\x35\x6c\x64\x55\x38\x6b\x4f','\x57\x52\x61\x45\x57\x37\x53\x74\x57\x36\x30\x4a\x65\x64\x38','\x78\x38\x6f\x64\x57\x37\x42\x64\x51\x77\x71','\x57\x51\x4c\x70\x76\x65\x46\x64\x47\x32\x46\x63\x53\x30\x69','\x6f\x64\x4f\x58\x79\x57','\x76\x53\x6f\x42\x65\x5a\x46\x64\x52\x6d\x6f\x49\x57\x36\x74\x63\x49\x57','\x57\x52\x6d\x2b\x46\x38\x6f\x67\x57\x36\x52\x63\x54\x38\x6f\x4c\x63\x71','\x57\x35\x74\x64\x4e\x38\x6b\x5a\x57\x50\x74\x63\x51\x61','\x7a\x6d\x6b\x4b\x57\x50\x79','\x57\x37\x4c\x31\x76\x38\x6f\x74\x57\x37\x57','\x57\x34\x71\x73\x68\x77\x4e\x64\x4e\x49\x42\x63\x51\x31\x4b','\x45\x78\x47\x64\x57\x50\x71\x4f\x71\x38\x6b\x78\x57\x35\x47','\x44\x76\x2f\x63\x50\x38\x6f\x37\x57\x34\x4e\x63\x56\x43\x6b\x69\x57\x35\x33\x64\x51\x58\x61','\x57\x51\x5a\x64\x4b\x6d\x6b\x41','\x57\x4f\x6a\x36\x57\x34\x78\x63\x48\x71\x4c\x78\x57\x34\x53','\x57\x4f\x38\x67\x57\x37\x79\x74\x57\x34\x4f','\x42\x65\x52\x63\x48\x57','\x57\x37\x39\x51\x75\x38\x6f\x72\x57\x37\x74\x64\x4f\x43\x6b\x4b','\x57\x34\x4a\x64\x4b\x43\x6b\x49\x57\x52\x5a\x63\x55\x6d\x6f\x52\x57\x37\x68\x64\x4a\x61','\x57\x50\x74\x63\x53\x38\x6b\x6b\x7a\x30\x48\x6b\x57\x50\x57\x33','\x76\x4c\x66\x4f\x57\x50\x34\x54','\x6e\x72\x4e\x64\x4b\x38\x6f\x2b\x57\x51\x4f','\x44\x53\x6b\x59\x57\x52\x79\x62\x6a\x71','\x77\x78\x50\x66\x57\x52\x61\x75','\x69\x78\x57\x56\x57\x4f\x31\x4c','\x57\x52\x42\x64\x49\x38\x6b\x76\x57\x36\x39\x73\x57\x51\x53','\x68\x38\x6b\x71\x45\x59\x30','\x70\x63\x79\x54\x7a\x71','\x57\x50\x34\x45\x57\x37\x4b\x77\x57\x36\x43\x38\x76\x77\x57','\x76\x6d\x6b\x7a\x69\x58\x37\x64\x53\x72\x79','\x69\x31\x65\x56\x57\x51\x76\x55\x6b\x33\x5a\x64\x55\x71','\x69\x72\x2f\x64\x53\x53\x6b\x36\x57\x37\x57','\x57\x4f\x46\x64\x56\x6d\x6f\x6f\x78\x4c\x76\x77\x57\x50\x30\x32','\x57\x52\x42\x63\x50\x38\x6b\x4a\x65\x31\x66\x31\x57\x4f\x4e\x63\x54\x61','\x79\x53\x6b\x50\x57\x35\x69\x53\x57\x50\x30\x69\x6a\x38\x6b\x44','\x67\x75\x31\x5a\x57\x35\x57\x6c\x57\x37\x78\x63\x50\x6d\x6f\x37','\x46\x4c\x4e\x63\x4d\x6d\x6f\x6f\x57\x35\x4b','\x71\x53\x6b\x38\x57\x35\x75\x49\x62\x4e\x35\x53','\x57\x50\x44\x72\x42\x6d\x6b\x44\x57\x36\x4e\x63\x50\x61\x53','\x78\x78\x6c\x63\x56\x38\x6f\x6f\x57\x37\x4f','\x6a\x72\x4e\x64\x50\x38\x6b\x54\x57\x36\x56\x63\x4d\x53\x6b\x45\x57\x36\x69','\x75\x43\x6b\x6f\x61\x6d\x6f\x47\x57\x35\x75','\x57\x4f\x65\x66\x6f\x78\x4b','\x70\x6d\x6b\x43\x7a\x49\x79','\x57\x52\x48\x69\x57\x35\x70\x63\x4a\x49\x47','\x79\x38\x6b\x55\x57\x4f\x75\x42\x6d\x47\x4f','\x57\x52\x78\x64\x4f\x43\x6b\x55\x57\x4f\x31\x70','\x63\x78\x54\x51\x57\x50\x65\x32\x57\x4f\x6a\x57','\x46\x43\x6b\x52\x57\x34\x65\x62\x78\x57','\x57\x34\x62\x35\x57\x51\x54\x45\x71\x49\x4c\x30\x57\x34\x47','\x75\x38\x6f\x61\x57\x37\x4a\x64\x51\x76\x65\x69\x6e\x71','\x6b\x43\x6f\x7a\x6f\x32\x6a\x58','\x72\x6d\x6f\x43\x71\x5a\x68\x64\x56\x61','\x70\x43\x6f\x39\x43\x48\x34','\x57\x37\x50\x36\x57\x34\x34\x78','\x79\x5a\x72\x4d\x45\x53\x6b\x51','\x76\x4c\x66\x4f\x57\x50\x34\x54\x57\x50\x39\x2b\x57\x51\x30','\x76\x53\x6b\x36\x57\x51\x79\x73\x77\x71','\x42\x76\x4a\x63\x52\x43\x6f\x73\x57\x34\x33\x64\x51\x53\x6b\x39\x57\x4f\x71','\x46\x78\x72\x71\x57\x50\x53','\x57\x4f\x5a\x64\x4f\x68\x6a\x34\x6b\x38\x6b\x73\x57\x34\x4a\x64\x55\x57','\x57\x52\x2f\x63\x4f\x43\x6f\x5a\x61\x76\x66\x59\x57\x50\x78\x63\x50\x57','\x76\x43\x6f\x56\x57\x50\x4f','\x57\x36\x4a\x64\x4c\x71\x72\x43\x6d\x43\x6f\x44\x57\x51\x4c\x48','\x7a\x49\x39\x71\x79\x53\x6b\x75','\x75\x6d\x6f\x48\x71\x63\x56\x64\x50\x6d\x6f\x49\x57\x36\x6c\x63\x4a\x57','\x71\x4c\x48\x53\x57\x4f\x34\x32\x57\x50\x47','\x76\x75\x39\x2f\x57\x4f\x34\x57\x57\x50\x65\x52','\x6b\x38\x6f\x2b\x57\x34\x76\x33','\x57\x36\x5a\x64\x4d\x48\x31\x65\x69\x43\x6f\x32\x57\x52\x6d\x34','\x46\x53\x6f\x4e\x61\x62\x58\x4b','\x41\x6d\x6b\x43\x57\x35\x4e\x64\x54\x43\x6b\x48','\x79\x53\x6f\x4d\x57\x34\x71\x55\x57\x4f\x61\x6e\x70\x6d\x6b\x6f','\x57\x36\x56\x64\x4b\x72\x48\x43\x6c\x43\x6f\x57','\x57\x37\x5a\x64\x55\x53\x6b\x2f\x57\x51\x61\x76','\x57\x52\x5a\x64\x55\x6d\x6b\x4f\x57\x52\x66\x6b\x57\x34\x34','\x45\x30\x64\x63\x56\x53\x6f\x66\x57\x35\x68\x64\x48\x53\x6b\x54','\x57\x36\x46\x64\x4e\x53\x6b\x63\x57\x51\x47\x34','\x57\x4f\x74\x64\x55\x65\x74\x63\x48\x6d\x6f\x48','\x78\x43\x6b\x6d\x6a\x73\x68\x64\x4a\x61','\x57\x52\x4c\x5a\x74\x38\x6b\x72\x57\x35\x57','\x70\x6d\x6f\x55\x57\x35\x48\x36\x67\x43\x6b\x61\x67\x38\x6b\x34','\x57\x36\x68\x64\x4e\x72\x50\x70\x70\x6d\x6f\x51','\x7a\x43\x6f\x6f\x74\x48\x4c\x4a\x57\x37\x78\x64\x50\x38\x6b\x4c','\x57\x37\x37\x64\x4c\x53\x6f\x6a\x43\x67\x57','\x73\x32\x4c\x4d\x66\x4b\x50\x44\x7a\x61','\x78\x53\x6b\x39\x57\x34\x61\x4a\x62\x78\x7a\x77\x57\x36\x75','\x57\x36\x4a\x63\x4e\x38\x6b\x4e\x57\x36\x35\x65\x57\x52\x54\x2b\x77\x71','\x57\x50\x50\x7a\x75\x30\x46\x64\x4d\x77\x34','\x74\x43\x6b\x78\x68\x43\x6f\x47\x57\x35\x2f\x63\x4f\x49\x38','\x57\x35\x74\x64\x51\x43\x6f\x6c\x71\x68\x6e\x43\x57\x4f\x43\x34','\x57\x37\x4e\x63\x4d\x62\x50\x68\x41\x6d\x6f\x48\x57\x52\x39\x51','\x57\x50\x62\x76\x75\x76\x74\x64\x49\x68\x71','\x57\x36\x4a\x63\x53\x38\x6f\x39\x57\x36\x79\x46\x57\x50\x4a\x64\x47\x57\x4f\x71\x57\x4f\x72\x49\x57\x35\x31\x2b','\x57\x50\x2f\x64\x55\x53\x6b\x37\x57\x4f\x50\x49','\x77\x53\x6b\x56\x57\x50\x38\x43\x43\x71','\x57\x52\x33\x64\x4b\x4b\x4e\x63\x53\x38\x6f\x45\x57\x36\x4b','\x46\x53\x6f\x52\x57\x4f\x53\x68\x43\x72\x64\x63\x48\x4d\x53','\x57\x50\x46\x64\x4d\x53\x6b\x68\x57\x36\x54\x69\x57\x52\x7a\x2f\x63\x47','\x69\x59\x6e\x74\x57\x35\x47\x31','\x57\x35\x48\x6a\x46\x63\x4e\x64\x55\x47\x58\x6c\x57\x52\x65','\x41\x53\x6b\x37\x57\x4f\x65\x56\x77\x6d\x6f\x56\x6f\x38\x6b\x45\x57\x52\x4e\x63\x54\x73\x4a\x64\x56\x57','\x74\x77\x74\x64\x48\x76\x4c\x78\x73\x76\x4c\x47','\x6e\x53\x6f\x2f\x57\x35\x39\x59\x64\x38\x6b\x73\x68\x71','\x68\x53\x6f\x36\x57\x50\x48\x34\x78\x49\x61\x2b\x57\x37\x61\x42\x70\x48\x39\x34\x70\x61','\x72\x6d\x6b\x53\x57\x36\x53\x39\x57\x4f\x43','\x57\x34\x37\x64\x49\x43\x6b\x2f\x57\x51\x78\x63\x53\x53\x6b\x50\x57\x37\x30','\x57\x4f\x76\x69\x68\x75\x4e\x64\x47\x68\x42\x63\x56\x4c\x69','\x75\x4a\x33\x64\x4b\x65\x6e\x63','\x45\x6d\x6b\x68\x57\x50\x43\x2f\x76\x61','\x57\x50\x58\x74\x42\x67\x70\x64\x52\x47','\x68\x6d\x6b\x71\x68\x78\x68\x63\x50\x38\x6b\x50\x57\x51\x5a\x64\x4a\x61','\x57\x51\x34\x76\x57\x52\x48\x43\x57\x50\x38','\x57\x35\x50\x6c\x43\x53\x6f\x30\x57\x36\x30','\x76\x47\x4a\x64\x49\x75\x4c\x74','\x6d\x53\x6f\x34\x57\x37\x62\x32\x62\x6d\x6b\x32\x67\x53\x6b\x55','\x65\x61\x58\x55\x57\x34\x30\x73','\x63\x62\x2f\x64\x4f\x6d\x6f\x43\x57\x50\x6d','\x77\x6d\x6f\x4c\x6b\x64\x66\x64\x57\x34\x6c\x64\x4c\x53\x6b\x70','\x57\x36\x42\x64\x4b\x43\x6b\x41\x57\x50\x6d\x54','\x67\x53\x6b\x67\x41\x59\x62\x38\x57\x34\x6d\x56\x6a\x71','\x71\x31\x76\x49\x57\x4f\x47\x31\x57\x50\x6a\x64\x57\x51\x79','\x57\x52\x52\x63\x4c\x53\x6b\x37\x6e\x58\x79','\x6e\x38\x6f\x55\x57\x35\x48\x34\x68\x53\x6b\x33','\x57\x51\x64\x64\x48\x38\x6b\x65\x57\x37\x44\x67\x57\x52\x7a\x36\x78\x47','\x61\x43\x6f\x62\x73\x43\x6f\x6f\x57\x35\x78\x63\x4f\x49\x76\x78','\x57\x52\x6a\x4c\x74\x32\x56\x64\x49\x71','\x79\x33\x4a\x63\x4b\x53\x6f\x69\x57\x37\x57','\x57\x51\x50\x52\x57\x35\x71\x6d\x57\x36\x38\x50\x73\x43\x6b\x34','\x57\x36\x33\x64\x4c\x6d\x6f\x71\x75\x78\x79','\x46\x53\x6b\x51\x57\x34\x65\x42\x78\x4a\x39\x4e\x57\x50\x4b','\x57\x37\x42\x64\x4d\x53\x6b\x49\x57\x50\x76\x36\x63\x6d\x6f\x46\x7a\x71','\x57\x50\x62\x74\x74\x32\x78\x64\x4a\x67\x78\x63\x54\x57','\x57\x51\x4e\x64\x51\x38\x6b\x37\x57\x52\x35\x65','\x46\x38\x6b\x31\x57\x34\x61\x51\x57\x50\x30\x61\x6d\x61','\x57\x51\x72\x33\x43\x76\x68\x64\x4e\x61','\x57\x51\x48\x77\x61\x30\x72\x37','\x76\x38\x6f\x6e\x43\x49\x33\x64\x54\x38\x6f\x4b\x57\x37\x75','\x57\x50\x78\x64\x56\x78\x4b\x2b\x61\x6d\x6b\x62\x57\x34\x4a\x64\x52\x61','\x78\x77\x4b\x31\x77\x76\x39\x68\x7a\x53\x6f\x79','\x57\x52\x37\x63\x49\x6d\x6b\x66\x57\x4f\x47\x55\x64\x38\x6f\x75\x46\x71','\x57\x52\x72\x61\x57\x35\x64\x63\x51\x72\x71','\x57\x50\x62\x52\x57\x52\x31\x79','\x57\x4f\x48\x72\x41\x38\x6b\x77','\x57\x4f\x62\x37\x57\x35\x4a\x63\x49\x57\x6e\x33\x57\x35\x30','\x57\x50\x53\x4a\x57\x4f\x54\x46\x57\x50\x79','\x57\x34\x76\x7a\x7a\x4a\x37\x63\x54\x71\x7a\x6c','\x57\x4f\x54\x69\x43\x43\x6b\x44\x57\x36\x6d','\x77\x5a\x70\x63\x4f\x4b\x50\x79\x78\x72\x65\x57','\x57\x52\x47\x76\x57\x37\x79\x46\x57\x36\x30\x7a\x72\x74\x38','\x57\x36\x64\x64\x4e\x6d\x6b\x54\x57\x50\x69\x56\x67\x71','\x42\x38\x6b\x57\x57\x34\x75\x73','\x57\x34\x64\x64\x4a\x53\x6b\x54\x57\x50\x34\x39','\x41\x43\x6f\x4e\x72\x4a\x6c\x64\x4c\x57','\x77\x38\x6f\x67\x77\x49\x5a\x64\x53\x43\x6f\x32\x57\x35\x2f\x63\x4c\x57','\x41\x32\x58\x49\x77\x43\x6f\x37\x44\x62\x58\x61','\x57\x52\x64\x63\x49\x38\x6f\x53\x57\x51\x75\x56\x67\x6d\x6f\x69\x42\x61','\x67\x53\x6f\x59\x68\x4c\x48\x6c','\x64\x64\x52\x64\x51\x38\x6f\x34\x57\x4f\x4b','\x79\x4e\x52\x63\x54\x38\x6f\x4a\x57\x35\x47','\x57\x34\x37\x64\x53\x53\x6f\x65','\x74\x6d\x6f\x78\x76\x64\x64\x64\x54\x57','\x57\x35\x6c\x64\x4b\x6d\x6b\x49\x57\x51\x78\x63\x55\x61','\x57\x34\x31\x6a\x46\x64\x4a\x63\x51\x74\x72\x42\x57\x51\x57','\x69\x65\x71\x50\x57\x51\x71','\x74\x53\x6b\x64\x6e\x47\x2f\x64\x51\x48\x65','\x6e\x71\x75\x38\x57\x51\x48\x4b\x70\x4e\x64\x64\x52\x61','\x78\x78\x54\x7a\x57\x52\x34\x5a','\x57\x52\x62\x62\x78\x53\x6b\x42\x57\x34\x4f','\x57\x52\x64\x64\x50\x6d\x6b\x39\x57\x52\x50\x68\x57\x35\x38','\x73\x43\x6b\x4b\x57\x4f\x4c\x4d\x79\x4b\x6c\x63\x51\x38\x6b\x44','\x57\x51\x68\x64\x47\x4c\x74\x63\x56\x61','\x6b\x53\x6b\x4b\x77\x73\x6e\x77','\x57\x51\x68\x63\x53\x38\x6b\x47\x63\x61','\x41\x38\x6b\x61\x57\x36\x42\x64\x56\x43\x6b\x46\x63\x63\x38','\x41\x38\x6b\x64\x57\x36\x6d\x53\x57\x35\x4b','\x57\x36\x6c\x64\x51\x47\x44\x55\x62\x57','\x57\x35\x46\x64\x4a\x38\x6b\x62\x57\x51\x37\x63\x52\x71','\x57\x51\x52\x64\x56\x53\x6b\x4f\x57\x51\x31\x44\x57\x35\x4a\x63\x50\x62\x71','\x57\x51\x74\x63\x4d\x53\x6f\x35\x57\x35\x61\x73\x63\x43\x6f\x43\x45\x43\x6b\x64\x75\x47','\x57\x37\x5a\x64\x4e\x43\x6b\x34\x57\x4f\x75\x31\x62\x38\x6f\x46','\x70\x64\x47\x4e\x42\x53\x6f\x57\x6e\x57\x54\x6c','\x57\x51\x53\x54\x57\x35\x33\x63\x4c\x53\x6f\x37','\x57\x50\x42\x64\x55\x33\x30\x36\x63\x43\x6b\x77\x57\x36\x78\x64\x55\x47','\x71\x38\x6b\x45\x57\x35\x47\x6e\x68\x61','\x45\x78\x6e\x63\x57\x4f\x43\x53\x76\x6d\x6f\x45\x57\x35\x69','\x6c\x38\x6f\x49\x57\x35\x4c\x58\x6e\x43\x6b\x37\x63\x38\x6b\x2f','\x41\x78\x33\x63\x55\x43\x6f\x6a\x57\x35\x6d','\x57\x37\x34\x56\x7a\x73\x7a\x57\x46\x6d\x6b\x67\x44\x53\x6b\x4c\x69\x61','\x71\x66\x58\x2f\x57\x4f\x34\x38','\x57\x51\x50\x4f\x57\x34\x47\x77\x57\x37\x38\x36\x74\x53\x6b\x35','\x6a\x57\x34\x64\x43\x38\x6f\x4b','\x79\x77\x70\x63\x4d\x43\x6f\x4b\x57\x37\x34','\x64\x61\x48\x59\x57\x34\x53\x6c\x57\x37\x71','\x57\x35\x6c\x64\x4e\x43\x6b\x53\x57\x51\x70\x64\x50\x38\x6f\x4b','\x57\x34\x37\x64\x52\x53\x6f\x52\x72\x4c\x6a\x65\x57\x50\x61','\x44\x63\x64\x64\x4a\x38\x6f\x74\x64\x61','\x71\x63\x56\x64\x4b\x76\x39\x65\x75\x66\x38\x4e','\x44\x58\x6a\x58\x44\x43\x6b\x49\x73\x6d\x6b\x4b','\x41\x4d\x72\x71\x57\x4f\x43\x53\x76\x38\x6f\x36\x57\x34\x71','\x41\x43\x6b\x65\x57\x52\x47\x52\x45\x47','\x57\x4f\x7a\x6a\x74\x4b\x47','\x57\x51\x2f\x64\x55\x43\x6b\x64\x57\x52\x44\x7a','\x6f\x38\x6b\x71\x77\x75\x30\x30\x57\x52\x68\x64\x4c\x38\x6b\x74\x68\x68\x71\x42\x66\x47','\x71\x4c\x68\x63\x56\x53\x6f\x38\x57\x34\x79','\x72\x38\x6b\x46\x57\x50\x53\x56\x43\x61','\x6c\x53\x6f\x4c\x57\x35\x31\x58\x62\x43\x6b\x4f\x61\x61','\x57\x37\x64\x64\x48\x38\x6b\x49\x57\x50\x75\x55\x67\x6d\x6f\x70\x41\x47','\x46\x63\x62\x47\x45\x6d\x6b\x4f\x42\x6d\x6b\x4c','\x70\x53\x6f\x5a\x57\x34\x6a\x36\x67\x6d\x6b\x58\x64\x38\x6b\x4e','\x6c\x61\x56\x64\x4f\x6d\x6f\x54\x57\x52\x78\x63\x4b\x6d\x6f\x49','\x77\x43\x6b\x75\x57\x36\x61\x7a\x76\x61','\x42\x38\x6f\x79\x68\x48\x66\x4e\x57\x36\x2f\x64\x4f\x38\x6b\x59','\x57\x4f\x76\x4d\x57\x35\x46\x63\x4b\x4c\x4b','\x70\x43\x6f\x52\x57\x51\x79\x69\x70\x57\x5a\x63\x48\x4d\x57','\x75\x43\x6f\x6c\x72\x5a\x5a\x64\x51\x53\x6f\x4f\x57\x36\x4b','\x78\x43\x6b\x38\x57\x35\x69\x50','\x77\x4e\x48\x4a\x64\x75\x75','\x44\x64\x62\x36\x46\x53\x6b\x30\x78\x53\x6b\x31\x7a\x71','\x57\x50\x48\x37\x57\x35\x4a\x63\x49\x71\x47\x61\x57\x4f\x34','\x72\x43\x6b\x35\x57\x35\x38\x59\x57\x35\x44\x48\x57\x35\x35\x75','\x6a\x57\x74\x64\x48\x43\x6b\x54\x57\x37\x71','\x75\x43\x6f\x56\x57\x37\x78\x64\x54\x31\x75','\x57\x52\x79\x32\x65\x53\x6b\x71\x57\x52\x68\x64\x53\x53\x6b\x56\x74\x47','\x7a\x53\x6f\x54\x6e\x78\x6a\x53\x41\x4b\x69','\x69\x62\x33\x64\x54\x43\x6b\x69\x57\x50\x2f\x63\x4e\x6d\x6f\x31\x57\x35\x71','\x57\x34\x43\x70\x64\x58\x46\x63\x4c\x64\x37\x63\x52\x33\x7a\x36\x77\x38\x6f\x58\x6a\x71','\x78\x38\x6b\x7a\x6e\x62\x6c\x64\x48\x47','\x78\x66\x66\x65\x67\x30\x65','\x6c\x61\x5a\x64\x50\x43\x6b\x54\x57\x51\x78\x63\x4a\x53\x6b\x39\x57\x37\x4b','\x72\x53\x6b\x2f\x57\x51\x79\x68\x74\x47','\x44\x38\x6b\x55\x57\x50\x69\x4a\x43\x67\x2f\x63\x55\x38\x6f\x6f','\x78\x53\x6f\x49\x57\x34\x6c\x64\x52\x30\x79','\x57\x36\x6e\x38\x57\x37\x57\x6e\x57\x36\x4b\x36\x77\x71','\x45\x6d\x6f\x2f\x57\x35\x57\x46\x78\x30\x58\x57\x57\x50\x38','\x57\x51\x4a\x64\x4d\x30\x6c\x63\x4f\x53\x6f\x37','\x57\x51\x39\x76\x57\x50\x75\x4b\x57\x35\x4b\x6d\x57\x35\x52\x64\x47\x61','\x57\x37\x50\x39\x57\x35\x47\x7a\x57\x37\x34\x50\x75\x53\x6b\x2f','\x73\x53\x6b\x70\x63\x6d\x6f\x6a\x57\x37\x4b','\x57\x4f\x68\x64\x55\x4e\x37\x63\x55\x43\x6f\x69','\x57\x35\x75\x78\x57\x50\x5a\x64\x53\x68\x65\x35\x6f\x6d\x6b\x55','\x57\x4f\x72\x76\x74\x4b\x56\x64\x53\x4e\x6c\x63\x53\x66\x30','\x61\x38\x6f\x4c\x57\x35\x35\x39\x61\x61','\x57\x51\x46\x64\x4e\x53\x6b\x41\x57\x37\x76\x63\x57\x52\x58\x43\x74\x57','\x57\x36\x4a\x63\x4e\x38\x6b\x4b\x57\x36\x4c\x63\x57\x52\x35\x2b\x77\x61','\x57\x50\x46\x64\x51\x4e\x4f\x30\x61\x6d\x6b\x71\x57\x34\x37\x64\x4f\x61','\x78\x38\x6b\x71\x57\x36\x47\x76\x70\x71','\x57\x52\x46\x64\x4d\x53\x6b\x71\x57\x52\x54\x61\x57\x52\x31\x31\x74\x57','\x75\x31\x66\x52\x65\x75\x53','\x57\x36\x6e\x65\x45\x62\x74\x63\x4b\x47','\x57\x35\x35\x76\x6d\x4a\x52\x63\x55\x58\x53\x6f\x57\x52\x79','\x43\x38\x6b\x66\x57\x34\x42\x64\x49\x38\x6b\x64','\x6b\x38\x6f\x51\x57\x34\x72\x53\x64\x57','\x6d\x53\x6f\x34\x76\x57\x74\x63\x4b\x47','\x6f\x53\x6f\x37\x57\x34\x7a\x5a\x65\x57','\x57\x4f\x6a\x6c\x77\x38\x6b\x52\x57\x37\x38','\x79\x74\x50\x49\x43\x53\x6b\x4a\x7a\x6d\x6f\x47\x44\x71','\x57\x51\x38\x73\x57\x34\x56\x63\x55\x38\x6f\x68\x78\x61\x56\x64\x49\x61','\x57\x37\x52\x63\x4e\x47\x5a\x64\x53\x61','\x76\x68\x50\x4f\x57\x50\x6d\x38\x57\x52\x39\x31','\x41\x43\x6b\x43\x57\x37\x4b\x4d\x68\x47','\x6e\x48\x68\x64\x4a\x38\x6f\x34\x57\x51\x56\x63\x4c\x6d\x6b\x37\x57\x37\x75','\x76\x6d\x6b\x7a\x6d\x61\x70\x64\x51\x47\x6c\x64\x4b\x61\x6d','\x57\x50\x76\x50\x77\x43\x6b\x6c\x57\x36\x43','\x70\x43\x6f\x4b\x57\x34\x72\x41\x63\x38\x6b\x38\x62\x47','\x66\x6d\x6b\x70\x57\x37\x6d\x6f\x57\x36\x48\x6d\x57\x34\x4b','\x71\x38\x6b\x35\x57\x35\x38\x6f\x57\x34\x39\x4e\x57\x35\x35\x6b','\x41\x4e\x48\x38\x57\x50\x69\x54\x77\x43\x6f\x63\x57\x34\x69','\x76\x65\x50\x61\x57\x52\x43\x66','\x57\x51\x42\x64\x49\x38\x6b\x44\x57\x37\x72\x6a','\x7a\x72\x6c\x64\x4c\x38\x6f\x51\x65\x47','\x57\x50\x71\x49\x57\x37\x57\x56\x57\x35\x71','\x75\x53\x6b\x43\x57\x34\x79\x66\x74\x71','\x57\x4f\x7a\x6f\x76\x65\x2f\x64\x4e\x32\x2f\x63\x51\x30\x47','\x74\x4d\x48\x38\x65\x71','\x45\x6d\x6f\x66\x64\x57\x35\x50\x57\x36\x38','\x79\x78\x68\x63\x56\x38\x6f\x78\x57\x37\x38','\x57\x52\x39\x53\x6a\x4e\x30','\x78\x38\x6f\x56\x64\x73\x31\x6e','\x79\x43\x6f\x56\x57\x37\x4e\x64\x48\x76\x71','\x57\x52\x69\x6a\x57\x34\x2f\x63\x53\x38\x6f\x44\x78\x4b\x6c\x64\x4e\x71','\x44\x38\x6b\x62\x57\x37\x70\x64\x51\x53\x6b\x66\x66\x47','\x57\x52\x4f\x68\x57\x35\x64\x63\x56\x53\x6f\x6d\x78\x57','\x63\x53\x6b\x72\x42\x73\x7a\x37\x57\x35\x75\x75\x44\x71','\x6f\x53\x6f\x30\x61\x68\x72\x54\x78\x57','\x67\x47\x58\x37\x57\x36\x43\x33','\x74\x6d\x6f\x67\x6b\x62\x44\x51\x57\x35\x6d\x76\x6f\x57','\x46\x66\x48\x38\x6e\x4d\x6d','\x57\x4f\x7a\x44\x76\x66\x6c\x63\x47\x4d\x4e\x63\x52\x30\x75','\x69\x53\x6b\x72\x57\x52\x75\x4c\x75\x68\x6c\x63\x54\x47','\x42\x43\x6f\x66\x61\x62\x48\x31\x57\x35\x37\x64\x54\x38\x6b\x31','\x57\x37\x62\x67\x57\x37\x2f\x63\x53\x38\x6f\x61\x76\x57\x46\x64\x49\x47','\x57\x35\x74\x64\x51\x43\x6f\x6c\x72\x4c\x72\x77\x57\x52\x34\x59','\x76\x43\x6b\x47\x57\x35\x4b\x6f\x57\x35\x35\x39\x57\x34\x69','\x57\x36\x74\x64\x56\x5a\x58\x4c\x62\x71','\x75\x6d\x6b\x43\x57\x34\x6c\x64\x4e\x38\x6b\x6b','\x57\x50\x64\x63\x4a\x38\x6f\x2b\x57\x37\x78\x64\x50\x43\x6f\x31\x57\x34\x56\x64\x4c\x4d\x31\x76\x57\x37\x74\x63\x4d\x57','\x6d\x4c\x64\x64\x54\x6d\x6f\x58\x63\x6d\x6f\x4c\x57\x51\x79\x52','\x61\x6d\x6f\x55\x66\x77\x76\x51\x77\x65\x72\x48','\x6a\x5a\x4f\x32\x41\x6d\x6f\x58\x45\x48\x57','\x71\x38\x6b\x2f\x57\x4f\x75\x44\x6f\x62\x68\x63\x4c\x32\x65','\x65\x53\x6f\x64\x75\x71\x4a\x63\x51\x57','\x57\x4f\x5a\x64\x4f\x78\x53','\x75\x6d\x6b\x4a\x57\x35\x34\x52\x57\x37\x47','\x71\x65\x48\x2b\x57\x50\x75','\x71\x43\x6b\x4a\x57\x4f\x75\x57\x77\x47','\x68\x6d\x6f\x75\x6b\x31\x48\x6e\x46\x33\x76\x41','\x57\x34\x74\x64\x4a\x53\x6b\x35\x57\x52\x78\x63\x54\x6d\x6b\x4a\x57\x51\x69','\x44\x58\x5a\x64\x4a\x4d\x4c\x4d','\x57\x51\x7a\x67\x72\x32\x33\x64\x4c\x57','\x67\x64\x58\x6a\x57\x34\x65\x31','\x57\x52\x74\x63\x4c\x30\x64\x63\x53\x43\x6f\x65\x57\x36\x72\x79\x68\x71','\x57\x4f\x6d\x6a\x57\x34\x4e\x63\x4f\x53\x6f\x67\x73\x72\x42\x64\x4d\x57','\x43\x63\x44\x58\x45\x53\x6b\x5a\x41\x6d\x6b\x32\x46\x57','\x6e\x62\x5a\x64\x50\x6d\x6b\x47','\x57\x4f\x72\x69\x57\x37\x4e\x63\x51\x59\x53','\x72\x5a\x64\x64\x4f\x31\x39\x4c\x71\x66\x38\x4a','\x66\x5a\x64\x64\x55\x38\x6b\x49\x57\x36\x34','\x46\x53\x6b\x30\x74\x57\x4e\x63\x48\x75\x48\x6c\x57\x35\x69','\x57\x35\x6c\x64\x4e\x62\x66\x43\x6c\x43\x6f\x48\x57\x52\x35\x39','\x57\x50\x46\x64\x49\x43\x6b\x4e\x57\x51\x31\x45','\x67\x57\x61\x6d\x6b\x38\x6f\x58\x44\x72\x6e\x6c','\x57\x4f\x4a\x63\x49\x43\x6b\x59\x6c\x57\x6d','\x57\x52\x75\x46\x57\x37\x65\x75','\x57\x52\x74\x63\x4c\x31\x64\x63\x53\x43\x6b\x6b\x57\x37\x69\x6d\x67\x57','\x74\x6d\x6f\x42\x76\x33\x2f\x64\x4f\x53\x6f\x47\x57\x36\x6c\x63\x49\x57','\x57\x34\x4a\x64\x4a\x38\x6b\x6b\x57\x52\x74\x63\x52\x38\x6b\x4c\x57\x36\x65','\x57\x52\x58\x74\x57\x34\x7a\x4b','\x6e\x4b\x71\x30\x57\x51\x62\x4c\x6b\x61','\x61\x43\x6f\x66\x45\x49\x62\x50\x57\x35\x57\x76\x6e\x47','\x57\x52\x74\x64\x56\x48\x6e\x65\x6a\x38\x6f\x32\x57\x51\x53','\x75\x6d\x6b\x4c\x57\x37\x38\x54\x79\x61','\x57\x50\x5a\x64\x52\x43\x6b\x46\x57\x52\x50\x4c','\x76\x43\x6f\x41\x57\x37\x6c\x64\x53\x30\x53\x6d','\x79\x32\x72\x51\x57\x50\x43\x36','\x6e\x57\x42\x64\x55\x53\x6b\x54','\x46\x6d\x6b\x4e\x57\x4f\x38\x2b\x69\x61','\x69\x38\x6f\x36\x71\x59\x42\x63\x55\x57','\x45\x48\x42\x64\x49\x38\x6f\x48\x63\x6d\x6f\x59\x57\x51\x4f\x33','\x41\x77\x72\x70\x57\x4f\x43\x4f','\x57\x52\x5a\x63\x4c\x4c\x72\x50\x6f\x53\x6f\x4e\x57\x36\x50\x53','\x69\x53\x6f\x65\x57\x37\x6a\x59\x65\x57','\x45\x38\x6b\x2b\x57\x34\x53\x61\x73\x57','\x57\x52\x46\x64\x56\x53\x6f\x50\x57\x4f\x58\x61\x57\x34\x5a\x63\x4e\x72\x57','\x67\x38\x6f\x66\x73\x5a\x58\x53\x57\x35\x57\x76\x44\x71','\x57\x51\x62\x6e\x74\x6d\x6b\x4b\x57\x36\x4f','\x6a\x53\x6f\x36\x42\x71\x4e\x63\x4e\x4c\x50\x6c','\x73\x43\x6f\x55\x69\x71\x4c\x6d','\x45\x30\x78\x63\x53\x43\x6f\x70\x57\x34\x61','\x7a\x5a\x50\x4d','\x78\x43\x6b\x42\x57\x50\x38\x72\x74\x57','\x6d\x53\x6f\x58\x57\x35\x57\x44\x6c\x72\x37\x64\x4f\x6d\x6f\x47','\x78\x62\x42\x64\x4a\x6d\x6f\x75\x65\x47','\x57\x51\x64\x64\x50\x43\x6b\x32\x57\x34\x31\x6d','\x71\x53\x6b\x76\x6b\x58\x4e\x64\x53\x62\x42\x64\x51\x48\x57','\x57\x50\x42\x63\x52\x53\x6b\x46\x62\x58\x47\x75\x57\x52\x4f\x56\x6e\x38\x6b\x7a\x6f\x64\x61','\x75\x4a\x66\x49\x43\x53\x6b\x4b\x7a\x61','\x57\x35\x65\x54\x57\x37\x57\x68\x68\x4d\x69\x2b\x57\x51\x39\x52\x57\x51\x76\x55\x57\x52\x47','\x57\x50\x62\x53\x57\x51\x54\x77\x71\x49\x47\x38\x57\x4f\x30','\x6c\x63\x47\x4a\x43\x53\x6f\x6b','\x57\x51\x57\x34\x57\x52\x31\x6b\x57\x51\x66\x42\x57\x50\x53\x6d','\x57\x52\x69\x54\x57\x50\x31\x43\x57\x51\x69','\x57\x51\x6e\x74\x57\x34\x66\x56\x57\x35\x4f\x61\x57\x34\x57','\x78\x78\x66\x51\x63\x47\x4f','\x7a\x32\x35\x6b\x57\x50\x30','\x57\x37\x54\x4f\x78\x38\x6f\x6d\x57\x36\x6d','\x6f\x38\x6f\x4d\x57\x34\x79\x39\x57\x4f\x65\x65\x41\x43\x6b\x70','\x57\x36\x6a\x49\x46\x47\x52\x63\x52\x47','\x57\x4f\x4e\x64\x51\x4e\x38\x53\x64\x6d\x6b\x43\x57\x35\x74\x64\x49\x47','\x66\x38\x6b\x63\x42\x71\x62\x47','\x57\x51\x68\x63\x4f\x6d\x6b\x62\x64\x74\x34','\x57\x36\x79\x4b\x57\x51\x6c\x64\x4e\x66\x53\x68\x6a\x6d\x6b\x6d','\x57\x35\x5a\x64\x4c\x58\x35\x53\x65\x47','\x73\x6d\x6f\x62\x57\x36\x71','\x74\x77\x48\x53\x67\x4b\x65\x75\x6e\x57','\x57\x52\x71\x36\x57\x4f\x54\x50\x57\x4f\x71','\x57\x51\x4e\x64\x56\x38\x6b\x36\x57\x52\x43','\x7a\x43\x6b\x2f\x57\x4f\x30\x67\x70\x30\x6c\x63\x47\x68\x65','\x6a\x6d\x6b\x67\x57\x36\x42\x64\x52\x6d\x6b\x72\x65\x73\x2f\x64\x55\x47','\x74\x72\x37\x64\x50\x53\x6f\x32\x6d\x57','\x41\x57\x6c\x64\x4a\x53\x6f\x50','\x57\x52\x6c\x64\x4c\x4c\x46\x63\x54\x43\x6f\x69\x57\x36\x47\x75\x62\x57','\x73\x43\x6f\x31\x6c\x58\x62\x47','\x6f\x6d\x6b\x74\x77\x75\x71\x31\x57\x52\x46\x64\x54\x53\x6b\x71\x66\x32\x38\x33\x61\x57','\x62\x38\x6b\x6a\x6b\x58\x4e\x64\x53\x62\x46\x64\x4b\x61\x43','\x78\x47\x6e\x6e\x77\x53\x6b\x4c','\x71\x31\x66\x4b\x57\x50\x34\x38','\x63\x71\x6d\x38\x57\x35\x34\x41\x57\x37\x52\x63\x50\x43\x6f\x2f','\x45\x53\x6f\x76\x68\x72\x75','\x57\x51\x56\x63\x4e\x38\x6b\x67\x57\x37\x35\x62\x57\x52\x72\x2b\x73\x71','\x6d\x58\x37\x64\x54\x38\x6f\x51\x57\x4f\x6d','\x57\x4f\x58\x6c\x75\x43\x6b\x54\x57\x34\x4e\x63\x4d\x48\x50\x55','\x6b\x65\x6c\x63\x4b\x53\x6b\x59\x69\x38\x6f\x4c\x57\x51\x75\x4f\x57\x35\x50\x50','\x44\x43\x6b\x4c\x57\x50\x62\x6a\x6a\x47\x33\x63\x4c\x4d\x71','\x62\x53\x6b\x77\x73\x74\x44\x39\x57\x35\x65\x6a','\x63\x72\x35\x44\x57\x35\x34\x6e\x57\x37\x33\x63\x53\x61','\x57\x50\x6a\x33\x57\x52\x31\x42\x45\x63\x34\x48\x57\x4f\x71','\x57\x50\x64\x63\x51\x6d\x6b\x38\x6c\x4a\x57','\x77\x33\x6e\x37\x77\x75\x65\x72\x6b\x38\x6f\x44','\x57\x34\x34\x53\x57\x50\x68\x63\x54\x58\x6e\x46\x57\x35\x31\x69','\x63\x72\x35\x41\x57\x34\x75\x72\x57\x37\x78\x63\x56\x43\x6f\x2f','\x57\x34\x68\x64\x53\x53\x6f\x79\x43\x75\x66\x67\x57\x4f\x65','\x57\x50\x66\x6b\x42\x6d\x6b\x42\x57\x36\x4a\x63\x56\x71','\x57\x35\x4c\x6a\x43\x59\x2f\x63\x55\x71\x6d','\x57\x52\x61\x68\x57\x34\x33\x63\x54\x38\x6f\x69\x74\x47','\x71\x31\x72\x2b\x57\x4f\x4b\x38\x57\x50\x48\x4c\x57\x36\x6d','\x46\x74\x50\x4d\x46\x53\x6b\x4a\x70\x47','\x6d\x62\x56\x64\x47\x53\x6f\x36\x57\x52\x74\x63\x47\x53\x6f\x65\x57\x37\x79','\x57\x37\x4e\x64\x48\x38\x6b\x4c\x57\x4f\x47','\x72\x38\x6b\x75\x64\x6d\x6f\x58\x57\x34\x4b','\x46\x53\x6f\x73\x64\x57\x4c\x4a\x57\x36\x42\x64\x51\x38\x6b\x4c','\x7a\x6d\x6b\x51\x57\x4f\x47\x56\x42\x66\x37\x63\x56\x71','\x70\x6d\x6f\x42\x6e\x77\x4c\x35','\x57\x50\x64\x64\x53\x6d\x6b\x78\x57\x34\x54\x53','\x57\x51\x46\x64\x48\x67\x33\x63\x56\x6d\x6f\x41','\x57\x52\x39\x6b\x57\x35\x58\x56\x57\x35\x61','\x6b\x6d\x6f\x36\x57\x37\x35\x76\x64\x47','\x6a\x38\x6f\x2f\x57\x52\x76\x48\x57\x35\x4c\x73\x45\x43\x6b\x6e\x46\x78\x4a\x64\x4e\x6d\x6b\x46\x6d\x57','\x57\x36\x57\x4b\x57\x52\x33\x63\x4c\x71','\x76\x38\x6b\x79\x6d\x71\x69','\x70\x6d\x6f\x48\x43\x47\x74\x63\x4e\x4b\x62\x61','\x57\x52\x46\x64\x4a\x4b\x75\x77\x6a\x57','\x57\x35\x39\x57\x73\x43\x6f\x6a\x57\x37\x2f\x63\x51\x71','\x76\x53\x6b\x75\x6a\x38\x6f\x6e\x57\x35\x69','\x79\x59\x62\x4e\x43\x57','\x69\x58\x68\x64\x4a\x43\x6f\x52\x57\x51\x6c\x63\x47\x57','\x62\x6d\x6f\x64\x61\x78\x58\x72','\x6b\x43\x6f\x55\x57\x35\x44\x53\x62\x43\x6b\x58','\x57\x52\x78\x64\x49\x53\x6b\x68\x57\x37\x6d','\x57\x36\x4e\x64\x4a\x72\x58\x4c\x62\x71','\x41\x6d\x6f\x54\x57\x37\x33\x64\x54\x75\x4b','\x57\x34\x68\x64\x54\x6d\x6f\x67\x71\x65\x76\x78','\x6e\x38\x6b\x77\x75\x48\x7a\x51','\x57\x51\x57\x74\x57\x34\x52\x63\x55\x47','\x62\x4c\x65\x68\x57\x4f\x31\x6e','\x6a\x72\x78\x63\x4d\x53\x6f\x64\x57\x35\x52\x64\x4b\x6d\x6f\x2b\x57\x4f\x47','\x57\x50\x79\x56\x57\x34\x70\x63\x54\x38\x6f\x2f','\x78\x53\x6b\x78\x57\x35\x57\x68\x41\x47','\x57\x51\x34\x50\x57\x4f\x66\x69\x57\x52\x6e\x46','\x57\x52\x69\x35\x57\x50\x58\x68','\x75\x4c\x58\x4a\x57\x50\x6d\x38\x57\x50\x6a\x77\x57\x51\x79','\x75\x6d\x6f\x50\x73\x48\x70\x64\x53\x61','\x7a\x30\x52\x63\x54\x38\x6b\x41\x57\x36\x64\x63\x4e\x43\x6b\x39\x57\x36\x75','\x42\x6d\x6b\x51\x57\x35\x53\x46','\x57\x52\x42\x64\x56\x38\x6b\x39\x57\x52\x58\x67\x57\x34\x42\x63\x4c\x47','\x76\x53\x6b\x4c\x62\x38\x6f\x49\x57\x35\x69','\x57\x51\x30\x2f\x57\x34\x56\x63\x4b\x38\x6f\x6d','\x57\x52\x39\x46\x78\x32\x74\x64\x49\x57','\x69\x38\x6b\x58\x57\x34\x61\x37\x57\x4f\x61\x47\x6f\x57','\x57\x36\x46\x64\x4c\x59\x76\x52\x63\x57','\x57\x4f\x58\x37\x57\x35\x74\x63\x47\x71\x39\x7a\x57\x4f\x35\x6f','\x57\x36\x4e\x64\x56\x58\x66\x67\x6c\x43\x6f\x6c\x57\x51\x34','\x57\x52\x65\x34\x57\x4f\x35\x42\x57\x52\x6a\x65','\x41\x38\x6b\x68\x57\x36\x69\x56\x71\x57','\x73\x6d\x6f\x6c\x57\x35\x52\x64\x4f\x30\x30','\x71\x43\x6b\x2b\x57\x35\x52\x64\x53\x6d\x6b\x45','\x72\x6d\x6b\x6e\x67\x38\x6f\x67\x57\x35\x68\x63\x52\x63\x69','\x57\x52\x46\x64\x52\x38\x6b\x61\x57\x52\x54\x41','\x57\x51\x50\x56\x6d\x67\x44\x66','\x45\x43\x6b\x4c\x57\x4f\x47\x4a\x42\x75\x71','\x57\x51\x4e\x64\x4b\x6d\x6b\x74\x57\x34\x72\x63\x57\x51\x50\x50\x72\x71','\x6c\x74\x61\x74\x57\x35\x4f','\x6e\x53\x6f\x53\x42\x58\x74\x63\x48\x76\x35\x32\x57\x35\x38','\x72\x38\x6b\x72\x57\x36\x57\x41\x57\x50\x38','\x57\x50\x42\x64\x55\x33\x30\x51\x65\x43\x6b\x61\x57\x36\x33\x64\x4f\x61','\x43\x58\x2f\x64\x47\x6d\x6f\x42\x64\x53\x6f\x30\x57\x52\x65\x33','\x7a\x53\x6b\x45\x57\x51\x4f\x4d\x62\x71','\x57\x4f\x6a\x74\x42\x4c\x74\x64\x4e\x32\x2f\x63\x53\x76\x79','\x78\x66\x58\x4a\x57\x50\x34\x38\x57\x35\x7a\x5a\x57\x51\x79','\x57\x37\x31\x31\x67\x53\x6f\x78\x57\x37\x74\x64\x55\x38\x6f\x4c\x72\x57','\x73\x38\x6b\x30\x57\x34\x4f','\x57\x51\x70\x63\x4f\x38\x6b\x59\x65\x58\x35\x56','\x70\x6d\x6f\x4d\x41\x31\x30','\x57\x52\x6d\x74\x57\x34\x33\x63\x53\x43\x6f\x67\x76\x47\x43','\x63\x53\x6f\x6e\x65\x48\x4a\x64\x4f\x71\x70\x64\x4e\x62\x43','\x69\x6d\x6f\x32\x68\x78\x6a\x4d','\x41\x43\x6b\x58\x57\x34\x6d\x7a\x76\x72\x54\x38','\x41\x31\x74\x63\x52\x43\x6f\x68\x57\x35\x42\x64\x4e\x6d\x6b\x59\x57\x50\x71','\x79\x53\x6b\x55\x57\x4f\x43\x43\x69\x58\x68\x63\x49\x4e\x34','\x6a\x38\x6f\x58\x79\x4b\x46\x63\x4d\x65\x6d\x66\x57\x35\x71','\x42\x38\x6b\x52\x57\x34\x4b\x64\x74\x58\x38','\x69\x66\x61\x55\x57\x51\x71','\x57\x52\x74\x63\x53\x6d\x6b\x38\x64\x61\x72\x31\x57\x4f\x4a\x63\x55\x47','\x57\x36\x31\x52\x77\x43\x6f\x44\x57\x37\x2f\x63\x51\x6d\x6f\x33','\x44\x58\x64\x64\x4d\x67\x6a\x4a','\x76\x43\x6b\x69\x69\x57\x37\x64\x47\x47\x5a\x64\x4c\x71\x61','\x41\x66\x6e\x4c\x57\x50\x38\x5a','\x57\x51\x57\x72\x57\x37\x38\x46\x57\x51\x72\x4d','\x57\x51\x75\x38\x57\x35\x79\x78\x57\x34\x34','\x6b\x4a\x42\x64\x50\x6d\x6b\x38\x57\x36\x74\x63\x4d\x43\x6b\x32\x57\x36\x4f','\x72\x38\x6b\x71\x63\x6d\x6f\x54\x57\x35\x70\x63\x51\x47','\x57\x50\x31\x36\x57\x34\x6c\x63\x4a\x47'];_0x14e5=function(){return _0x49d53;};return _0x14e5();}function _0x362069({recentEvents:_0x4ca407,signals:_0x4db6ba,memoryAdvice:_0x11d772,narrative:_0x28502b}){const _0x512e66=_0x31f7d4,_0x268367={'\x4e\x43\x68\x69\x53':_0x512e66(0x2a7,'\x23\x5e\x35\x28')+_0x512e66(0x1c5,'\x69\x61\x55\x66'),'\x51\x6f\x6a\x44\x5a':function(_0x1e47d3,_0x23f00d){return _0x1e47d3===_0x23f00d;},'\x79\x6c\x66\x74\x6b':_0x512e66(0x130,'\x7a\x50\x65\x75'),'\x44\x55\x58\x67\x77':'\x75\x6e\x6b\x6e\x6f\x77\x6e','\x42\x45\x73\x4f\x47':function(_0x287d64,_0x559868){return _0x287d64+_0x559868;},'\x54\x69\x50\x41\x7a':_0x512e66(0x1c7,'\x35\x4c\x48\x5e'),'\x77\x41\x66\x70\x6b':function(_0x53eb1b,_0x45874b){return _0x53eb1b+_0x45874b;},'\x46\x70\x72\x55\x4b':function(_0x52b970,_0x357a81){return _0x52b970===_0x357a81;},'\x58\x69\x54\x5a\x6c':_0x512e66(0x1a0,'\x58\x72\x73\x5d')+'\x72','\x47\x41\x6a\x42\x6a':function(_0x2489eb,_0x278fd2){return _0x2489eb(_0x278fd2);},'\x67\x4f\x56\x51\x47':'\x65\x72\x72\x73\x69\x67\x5f\x6e'+_0x512e66(0x1a7,'\x5b\x5a\x54\x4d'),'\x57\x59\x75\x6d\x52':function(_0x123cac,_0x387d34){return _0x123cac>_0x387d34;},'\x77\x58\x4a\x58\x79':function(_0x248e86,_0x12cdcc){return _0x248e86===_0x12cdcc;},'\x76\x55\x4e\x4f\x54':_0x512e66(0x274,'\x77\x36\x6f\x50'),'\x54\x6e\x6e\x68\x52':function(_0x38e3bb,_0x3414ed){return _0x38e3bb===_0x3414ed;},'\x4b\x52\x64\x55\x4a':_0x512e66(0x270,'\x29\x64\x45\x4f'),'\x7a\x43\x4f\x73\x72':_0x512e66(0x27e,'\x6b\x5d\x67\x6c'),'\x73\x71\x48\x4a\x64':_0x512e66(0x264,'\x74\x55\x74\x41')+_0x512e66(0x126,'\x24\x46\x37\x42')+'\x6c\x73','\x68\x4c\x6b\x79\x57':function(_0x3bf23c,_0x44221f){return _0x3bf23c!==_0x44221f;},'\x67\x6b\x6d\x6d\x66':_0x512e66(0x2b7,'\x4a\x4c\x46\x46'),'\x50\x71\x6b\x51\x77':_0x512e66(0x245,'\x7a\x7a\x28\x5a')+_0x512e66(0x22e,'\x69\x77\x76\x77')+_0x512e66(0x133,'\x66\x4c\x5b\x5d'),'\x6b\x4d\x4f\x6e\x48':_0x512e66(0x267,'\x66\x4d\x56\x61'),'\x51\x68\x79\x76\x59':_0x512e66(0x14a,'\x58\x72\x73\x5d'),'\x67\x61\x63\x77\x71':_0x512e66(0x263,'\x45\x38\x44\x69')+_0x512e66(0x210,'\x33\x73\x5d\x6c')+_0x512e66(0x204,'\x65\x79\x46\x36')+_0x512e66(0x1f8,'\x6c\x59\x45\x30'),'\x58\x73\x5a\x53\x65':function(_0x581b19,_0x2fe986){return _0x581b19(_0x2fe986);},'\x6d\x4c\x64\x68\x6f':_0x512e66(0x1d2,'\x77\x4f\x77\x37')+_0x512e66(0x106,'\x4a\x4c\x46\x46')+_0x512e66(0x2d2,'\x73\x54\x55\x70')+_0x512e66(0x149,'\x30\x31\x58\x55')+_0x512e66(0x1eb,'\x79\x4d\x37\x25')+'\x6c\x2c\x20\x6f\x72\x20\x61\x72'+_0x512e66(0x113,'\x4a\x4c\x46\x46')+_0x512e66(0x1a4,'\x23\x5e\x35\x28')+'\x6c\x6f\x63\x61\x6c\x20\x6d\x61'+'\x78\x69\x6d\x75\x6d\x3f','\x76\x6c\x45\x68\x6d':_0x512e66(0x1db,'\x72\x6d\x4e\x36')+_0x512e66(0x2b2,'\x6c\x59\x45\x30')+_0x512e66(0x1a3,'\x35\x4c\x48\x5e')+_0x512e66(0x27d,'\x45\x38\x44\x69')+_0x512e66(0xef,'\x77\x4f\x77\x37')+_0x512e66(0x1da,'\x52\x40\x4b\x79')+_0x512e66(0x2e0,'\x6b\x5d\x67\x6c')+_0x512e66(0x29d,'\x43\x25\x5e\x44'),'\x6c\x6c\x6b\x57\x71':'\x34\x2e\x20\x41\x72\x65\x20\x74'+_0x512e66(0x1c1,'\x78\x28\x7a\x7a')+_0x512e66(0x20d,'\x57\x78\x37\x6a')+_0x512e66(0x1e9,'\x66\x48\x2a\x44')+_0x512e66(0x223,'\x57\x78\x37\x6a')+_0x512e66(0x22c,'\x6e\x5b\x26\x26')+_0x512e66(0x26e,'\x63\x51\x47\x57')+'\x73\x65\x73\x3f','\x50\x76\x6e\x69\x54':'\x35\x2e\x20\x57\x68\x61\x74\x20'+_0x512e66(0x2cd,'\x78\x28\x7a\x7a')+_0x512e66(0x169,'\x69\x5d\x6e\x6f')+_0x512e66(0x1e8,'\x72\x6d\x4e\x36')+_0x512e66(0x158,'\x5a\x73\x63\x28')+'\x64\x20\x68\x61\x76\x65\x20\x74'+_0x512e66(0x1cd,'\x31\x7a\x43\x40')+_0x512e66(0x233,'\x77\x4f\x77\x37')+'\x74\x3f','\x43\x55\x41\x6d\x66':_0x512e66(0x22a,'\x7a\x50\x65\x75')+'\x77\x69\x74\x68\x20\x61\x20\x4a'+_0x512e66(0x110,'\x45\x38\x44\x69')+_0x512e66(0x253,'\x54\x23\x59\x2a')+'\x6e\x73\x69\x67\x68\x74\x73\x22'+'\x3a\x20\x5b\x2e\x2e\x2e\x5d\x2c'+_0x512e66(0x1c4,'\x78\x57\x5e\x6f')+_0x512e66(0x2d3,'\x72\x35\x79\x26')+_0x512e66(0x1bd,'\x6c\x59\x45\x30')+_0x512e66(0x237,'\x31\x7a\x43\x40')+_0x512e66(0x2d9,'\x77\x4f\x77\x37')+_0x512e66(0x1cb,'\x77\x4f\x77\x37')+_0x512e66(0x12e,'\x6a\x69\x32\x4f')+'\x20\x7d'},_0x4d0816=[_0x512e66(0x272,'\x6a\x69\x32\x4f')+'\x70\x65\x72\x66\x6f\x72\x6d\x69'+_0x512e66(0x205,'\x66\x48\x2a\x44')+_0x512e66(0x191,'\x43\x25\x5e\x44')+_0x512e66(0x121,'\x58\x72\x73\x5d')+_0x512e66(0x229,'\x5a\x73\x63\x28')+_0x512e66(0x15d,'\x54\x23\x59\x2a')+_0x512e66(0x148,'\x5a\x73\x63\x28')+_0x512e66(0x13a,'\x54\x23\x59\x2a')];_0x4d0816[_0x512e66(0x177,'\x66\x4c\x5b\x5d')](_0x512e66(0x1e4,'\x78\x25\x23\x59')+'\x74\x68\x65\x20\x70\x61\x74\x74'+_0x512e66(0x24b,'\x74\x55\x74\x41')+_0x512e66(0x25c,'\x69\x77\x76\x77')+_0x512e66(0x2c8,'\x66\x4c\x5b\x5d')+_0x512e66(0x1c9,'\x78\x25\x23\x59')+_0x512e66(0x281,'\x72\x35\x79\x26')+_0x512e66(0x286,'\x55\x24\x43\x74')+'\x65\x2e'),_0x4d0816[_0x512e66(0x273,'\x4a\x4c\x46\x46')]('');if(Array[_0x512e66(0x115,'\x52\x40\x4b\x79')](_0x4ca407)&&_0x268367[_0x512e66(0x261,'\x31\x7a\x43\x40')](_0x4ca407[_0x512e66(0x228,'\x4a\x4c\x46\x46')],-0x1992+-0x1ecd+0x385f*0x1)){if(_0x268367[_0x512e66(0x194,'\x6c\x59\x45\x30')](_0x268367[_0x512e66(0x1a1,'\x5a\x73\x63\x28')],_0x512e66(0x18e,'\x77\x4f\x77\x37')))return _0x1933af[_0x512e66(0x1ea,'\x33\x73\x5d\x6c')]()[_0x512e66(0x162,'\x6e\x5b\x26\x26')](bukgqb['\x4e\x43\x68\x69\x53'])['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x512e66(0x297,'\x74\x55\x74\x41')+_0x512e66(0x1d0,'\x5a\x73\x63\x28')](_0x322aa9)[_0x512e66(0x1f5,'\x5a\x73\x63\x28')](_0x512e66(0x2a9,'\x66\x4d\x56\x61')+_0x512e66(0x1f2,'\x6e\x5b\x26\x26'));else{const _0x2c7983=_0x4ca407[_0x512e66(0x16e,'\x51\x55\x4e\x36')](-(0x1c54+0x1*0x248+-0x2*0xf49)),_0x9d68e4=_0x2c7983[_0x512e66(0x17e,'\x72\x6d\x4e\x36')](_0x3bf914=>_0x3bf914&&_0x3bf914[_0x512e66(0x27c,'\x74\x55\x74\x41')]&&_0x3bf914[_0x512e66(0x1d6,'\x43\x25\x5e\x44')][_0x512e66(0x1af,'\x6c\x59\x45\x30')]==='\x73\x75\x63\x63\x65\x73\x73')['\x6c\x65\x6e\x67\x74\x68'],_0x7586ce=_0x2c7983[_0x512e66(0x178,'\x78\x28\x7a\x7a')](_0x3d59ff=>_0x3d59ff&&_0x3d59ff[_0x512e66(0x18b,'\x24\x46\x37\x42')]&&_0x3d59ff['\x6f\x75\x74\x63\x6f\x6d\x65'][_0x512e66(0x11c,'\x74\x34\x75\x57')]===_0x512e66(0x1be,'\x6e\x5b\x26\x26'))[_0x512e66(0x289,'\x79\x4d\x37\x25')],_0x4ba2e2={};_0x2c7983[_0x512e66(0x2d0,'\x72\x47\x64\x35')](_0x41f297=>{const _0x3786f4=_0x512e66;if(_0x268367[_0x3786f4(0x143,'\x57\x78\x37\x6a')](_0x3786f4(0x23f,'\x74\x55\x74\x41'),_0x268367['\x79\x6c\x66\x74\x6b']))return _0x19d19f[_0x3786f4(0x285,'\x35\x4c\x48\x5e')](_0x4d32bf);else{const _0x54b96e=_0x41f297&&_0x41f297[_0x3786f4(0x2e4,'\x69\x61\x55\x66')]?_0x41f297[_0x3786f4(0x161,'\x29\x64\x45\x4f')]:_0x268367[_0x3786f4(0x2cc,'\x56\x76\x41\x29')];_0x4ba2e2[_0x54b96e]=_0x268367[_0x3786f4(0xee,'\x54\x23\x59\x2a')](_0x4ba2e2[_0x54b96e]||-0x2*0x105b+-0x4c*-0x29+0xef*0x16,0x139+-0x189+0x51);}});const _0x2bb7cc={};_0x2c7983[_0x512e66(0x197,'\x7a\x7a\x28\x5a')](_0x5bb54b=>{const _0x25bfc5=_0x512e66,_0x373b75={};_0x373b75[_0x25bfc5(0x1f4,'\x43\x25\x5e\x44')]=_0x25bfc5(0x2b9,'\x77\x4f\x77\x37')+_0x25bfc5(0x213,'\x24\x46\x37\x42');const _0x35f5ec=_0x373b75;if(_0x268367[_0x25bfc5(0xf6,'\x30\x31\x58\x55')]===_0x25bfc5(0x17c,'\x57\x78\x37\x6a')){const _0x5f2890=_0x5bb54b&&Array[_0x25bfc5(0x2b1,'\x55\x24\x43\x74')](_0x5bb54b[_0x25bfc5(0x2a2,'\x66\x4c\x5b\x5d')+'\x65\x64'])&&_0x5bb54b[_0x25bfc5(0x2af,'\x6a\x69\x32\x4f')+'\x65\x64'][-0x4*-0x346+0x25*0xf9+-0x3115]?_0x5bb54b[_0x25bfc5(0x26b,'\x6e\x5b\x26\x26')+'\x65\x64'][0x10c3+-0x1869+-0xb2*-0xb]:_0x25bfc5(0x129,'\x5b\x5a\x54\x4d');_0x2bb7cc[_0x5f2890]=_0x268367[_0x25bfc5(0x2a6,'\x74\x34\x75\x57')](_0x2bb7cc[_0x5f2890]||-0xa4*0x8+0xcdf+-0x7bf,-0x23a7+0x7*-0x3f+-0x1*-0x2561);}else{const _0x1aaf3a={};_0x1aaf3a[_0x25bfc5(0x1dd,'\x78\x28\x7a\x7a')]=IGSUDU[_0x25bfc5(0x1ef,'\x66\x4d\x56\x61')],_0x1aaf3a['\x64\x65\x6c\x74\x61']=+(0x2*-0x11d7+0x1d11+0x69d+0.05),_0x1aaf3a[_0x25bfc5(0x17a,'\x72\x47\x64\x35')]=_0x25bfc5(0x14c,'\x4a\x4c\x46\x46')+_0x25bfc5(0x2c2,'\x6e\x5b\x26\x26')+_0x25bfc5(0x154,'\x7a\x50\x65\x75')+_0x25bfc5(0x1e3,'\x45\x38\x44\x69'),_0x15882e[_0x25bfc5(0xff,'\x35\x4c\x48\x5e')](_0x1aaf3a);}}),_0x4d0816[_0x512e66(0x291,'\x77\x4f\x77\x37')](_0x512e66(0xed,'\x77\x36\x6f\x50')+_0x512e66(0x1c2,'\x29\x64\x45\x4f')+_0x512e66(0xf9,'\x69\x61\x55\x66')+'\x63\x73\x20\x28\x6c\x61\x73\x74'+_0x512e66(0x19c,'\x72\x35\x79\x26')),_0x4d0816[_0x512e66(0x1b0,'\x63\x51\x47\x57')](_0x512e66(0xf8,'\x58\x72\x73\x5d')+_0x512e66(0x206,'\x73\x54\x55\x70')+_0x9d68e4+('\x2c\x20\x46\x61\x69\x6c\x65\x64'+'\x3a\x20')+_0x7586ce),_0x4d0816[_0x512e66(0x20c,'\x72\x47\x64\x35')](_0x512e66(0x10d,'\x5b\x5a\x54\x4d')+_0x512e66(0x248,'\x55\x24\x43\x74')+_0x512e66(0x21d,'\x54\x23\x59\x2a')+JSON[_0x512e66(0x2c9,'\x6b\x5d\x67\x6c')+'\x79'](_0x4ba2e2)),_0x4d0816[_0x512e66(0x153,'\x69\x5d\x6e\x6f')](_0x512e66(0x13d,'\x33\x73\x5d\x6c')+_0x512e66(0x28a,'\x52\x40\x4b\x79')+JSON['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79'](_0x2bb7cc)),_0x4d0816[_0x512e66(0x18a,'\x6c\x59\x45\x30')]('');}}if(Array[_0x512e66(0x251,'\x31\x7a\x43\x40')](_0x4db6ba)&&_0x268367[_0x512e66(0x179,'\x69\x61\x55\x66')](_0x4db6ba[_0x512e66(0x185,'\x32\x25\x63\x78')],0x1b1a*-0x1+0x24ce+-0x33c*0x3)){if(_0x268367['\x54\x6e\x6e\x68\x52'](_0x268367[_0x512e66(0x2d7,'\x78\x25\x23\x59')],_0x268367[_0x512e66(0x1fb,'\x69\x61\x55\x66')]))try{return _0x1e15d5[_0x512e66(0x2c4,'\x72\x47\x64\x35')](_0x250394);}catch(_0x42ce9b){return null;}else _0x4d0816[_0x512e66(0x186,'\x32\x25\x63\x78')](_0x268367[_0x512e66(0x16f,'\x72\x47\x64\x35')]),_0x4d0816[_0x512e66(0xff,'\x35\x4c\x48\x5e')](_0x4db6ba[_0x512e66(0x1aa,'\x69\x61\x55\x66')](-0x248a+0x183*0x3+0x3*0xaab,-0x3*-0xc26+-0x1*0xeda+-0x1584)[_0x512e66(0x112,'\x78\x25\x23\x59')]('\x2c\x20')),_0x4d0816[_0x512e66(0x172,'\x52\x2a\x57\x26')]('');}if(_0x11d772){if(_0x268367[_0x512e66(0x235,'\x6a\x69\x32\x4f')](_0x512e66(0x105,'\x79\x4d\x37\x25'),_0x268367[_0x512e66(0x1d1,'\x23\x5e\x35\x28')])){_0x4d0816[_0x512e66(0x275,'\x66\x48\x2a\x44')](_0x268367[_0x512e66(0x1bb,'\x5a\x73\x63\x28')]);_0x11d772[_0x512e66(0x135,'\x63\x6b\x43\x7a')+_0x512e66(0x192,'\x57\x78\x37\x6a')]&&_0x4d0816[_0x512e66(0x1cc,'\x45\x38\x44\x69')](_0x512e66(0x2bc,'\x7a\x50\x65\x75')+_0x512e66(0x114,'\x31\x7a\x43\x40')+'\x3a\x20'+_0x11d772[_0x512e66(0x252,'\x65\x79\x46\x36')+_0x512e66(0x2cb,'\x35\x4c\x48\x5e')]);if(Array[_0x512e66(0x24e,'\x33\x73\x5d\x6c')](_0x11d772['\x62\x61\x6e\x6e\x65\x64\x47\x65'+_0x512e66(0x195,'\x74\x34\x75\x57')])&&_0x11d772[_0x512e66(0x187,'\x35\x4c\x48\x5e')+_0x512e66(0x11d,'\x72\x35\x79\x26')][_0x512e66(0x21a,'\x57\x78\x37\x6a')]>0x153*-0x1d+-0x18df+0x3f46){if(_0x268367[_0x512e66(0x247,'\x66\x4d\x56\x61')]===_0x268367[_0x512e66(0x100,'\x6a\x69\x32\x4f')])return bukgqb[_0x512e66(0x226,'\x24\x46\x37\x42')](_0xa0a6eb,bukgqb[_0x512e66(0x128,'\x29\x64\x45\x4f')])||bukgqb[_0x512e66(0x1c0,'\x73\x54\x55\x70')](_0x1fa6b3,_0xbd411d)['\x73\x74\x61\x72\x74\x73\x57\x69'+'\x74\x68'](_0x512e66(0x20b,'\x35\x4c\x48\x5e'))||bukgqb[_0x512e66(0x2df,'\x74\x34\x75\x57')](_0x12980c,_0x15a14d)[_0x512e66(0x19f,'\x65\x79\x46\x36')+'\x74\x68'](bukgqb[_0x512e66(0x250,'\x78\x57\x5e\x6f')]);else _0x4d0816[_0x512e66(0x1b0,'\x63\x51\x47\x57')](_0x512e66(0x29e,'\x5a\x73\x63\x28')+_0x512e66(0x1f9,'\x63\x6b\x43\x7a')+_0x11d772[_0x512e66(0x2bb,'\x7a\x50\x65\x75')+_0x512e66(0x198,'\x24\x46\x37\x42')][_0x512e66(0x13b,'\x72\x35\x79\x26')]('\x2c\x20'));}_0x11d772[_0x512e66(0x29c,'\x69\x5d\x6e\x6f')+_0x512e66(0x1d5,'\x7a\x50\x65\x75')]&&_0x4d0816[_0x512e66(0x203,'\x72\x35\x79\x26')](_0x512e66(0x1ce,'\x23\x5e\x35\x28')+_0x512e66(0x1d9,'\x23\x5e\x35\x28')+_0x11d772[_0x512e66(0x244,'\x7a\x50\x65\x75')+_0x512e66(0x268,'\x72\x6d\x4e\x36')]),_0x4d0816[_0x512e66(0x109,'\x66\x50\x25\x5a')]('');}else return[];}return _0x28502b&&(_0x4d0816[_0x512e66(0x2da,'\x54\x23\x59\x2a')](_0x268367[_0x512e66(0x125,'\x6c\x59\x45\x30')]),_0x4d0816['\x70\x75\x73\x68'](_0x268367[_0x512e66(0x17f,'\x77\x36\x6f\x50')](String,_0x28502b)['\x73\x6c\x69\x63\x65'](0x8fc+0x2*-0xa+-0x5f*0x18,0x1*0xadd+0x116*0x15+-0x15f3)),_0x4d0816[_0x512e66(0x256,'\x63\x6b\x43\x7a')]('')),_0x4d0816['\x70\x75\x73\x68'](_0x512e66(0x15e,'\x43\x25\x5e\x44')+'\x69\x6f\x6e\x73\x20\x74\x6f\x20'+_0x512e66(0x175,'\x23\x5e\x35\x28')),_0x4d0816[_0x512e66(0x116,'\x51\x55\x4e\x36')](_0x512e66(0x123,'\x57\x78\x37\x6a')+_0x512e66(0x2ad,'\x66\x50\x25\x5a')+_0x512e66(0x164,'\x35\x4c\x48\x5e')+'\x73\x69\x67\x6e\x61\x6c\x73\x20'+'\x62\x65\x69\x6e\x67\x20\x69\x67'+_0x512e66(0x165,'\x66\x4c\x5b\x5d')),_0x4d0816[_0x512e66(0x1fe,'\x55\x24\x43\x74')](_0x268367[_0x512e66(0x2c0,'\x54\x23\x59\x2a')]),_0x4d0816[_0x512e66(0x2a0,'\x56\x76\x41\x29')](_0x268367[_0x512e66(0x1ec,'\x66\x4d\x56\x61')]),_0x4d0816[_0x512e66(0x1ba,'\x43\x25\x5e\x44')](_0x268367[_0x512e66(0x11f,'\x5a\x73\x63\x28')]),_0x4d0816[_0x512e66(0x203,'\x72\x35\x79\x26')](_0x268367[_0x512e66(0x1d7,'\x78\x25\x23\x59')]),_0x4d0816[_0x512e66(0x172,'\x52\x2a\x57\x26')](''),_0x4d0816['\x70\x75\x73\x68'](_0x268367[_0x512e66(0x14d,'\x69\x5d\x6e\x6f')]),_0x4d0816[_0x512e66(0x167,'\x74\x55\x74\x41')]('\x0a');}function _0x237d1f(_0x8fbc72){const _0x58300a=_0x31f7d4,_0x2c0da6={'\x43\x54\x5a\x49\x55':function(_0x378a81,_0x120d06){return _0x378a81(_0x120d06);},'\x43\x66\x6b\x50\x79':_0x58300a(0x2bd,'\x65\x79\x46\x36')+'\x6f\x6e','\x75\x7a\x44\x79\x53':_0x58300a(0x1c6,'\x77\x4f\x77\x37')},_0x47dd5c=_0xfca8ef();_0x2c0da6[_0x58300a(0x1b3,'\x69\x77\x76\x77')](_0x2ff3fa,_0x254a7c['\x64\x69\x72\x6e\x61\x6d\x65'](_0x47dd5c));const _0x8fb2b7=JSON[_0x58300a(0x2ce,'\x52\x2a\x57\x26')+'\x79']({'\x74\x73':new Date()[_0x58300a(0x156,'\x29\x64\x45\x4f')+_0x58300a(0xfd,'\x65\x79\x46\x36')](),'\x74\x79\x70\x65':_0x2c0da6[_0x58300a(0x12f,'\x58\x72\x73\x5d')],..._0x8fbc72})+'\x0a';_0x3456d0[_0x58300a(0x1f0,'\x66\x50\x25\x5a')+'\x6c\x65\x53\x79\x6e\x63'](_0x47dd5c,_0x8fb2b7,_0x2c0da6[_0x58300a(0x208,'\x66\x4c\x5b\x5d')]);}function _0x1d7187(_0x194815){const _0x1f659f=_0x31f7d4,_0x490dc0={};_0x490dc0[_0x1f659f(0x183,'\x6b\x5d\x67\x6c')]='\x75\x6e\x6b\x6e\x6f\x77\x6e',_0x490dc0[_0x1f659f(0x2cf,'\x29\x64\x45\x4f')]=_0x1f659f(0x189,'\x66\x50\x25\x5a')+_0x1f659f(0x127,'\x77\x36\x6f\x50')+_0x1f659f(0xfb,'\x5a\x73\x63\x28')+_0x1f659f(0x2b4,'\x51\x55\x4e\x36')+'\x20\x31\x30\x29',_0x490dc0[_0x1f659f(0x2de,'\x69\x5d\x6e\x6f')]=function(_0x2d4037,_0x5416bb){return _0x2d4037===_0x5416bb;},_0x490dc0['\x59\x6f\x64\x70\x51']=_0x1f659f(0x215,'\x74\x55\x74\x41'),_0x490dc0[_0x1f659f(0x18c,'\x7a\x7a\x28\x5a')]=function(_0x5abce6,_0xde6f68){return _0x5abce6===_0xde6f68;},_0x490dc0[_0x1f659f(0x239,'\x23\x5e\x35\x28')]=_0x1f659f(0x24f,'\x77\x4f\x77\x37'),_0x490dc0[_0x1f659f(0x2b3,'\x4a\x4c\x46\x46')]='\x74\x54\x6e\x4b\x70',_0x490dc0[_0x1f659f(0x21c,'\x72\x6d\x4e\x36')]=_0x1f659f(0x27f,'\x65\x79\x46\x36')+_0x1f659f(0x166,'\x78\x28\x7a\x7a')+_0x1f659f(0x1bc,'\x6c\x59\x45\x30'),_0x490dc0[_0x1f659f(0x227,'\x6a\x69\x32\x4f')]='\x65\x76\x6f\x6c\x75\x74\x69\x6f'+_0x1f659f(0x1b8,'\x66\x50\x25\x5a')+'\x74\x69\x6f\x6e\x5f\x64\x65\x74'+'\x65\x63\x74\x65\x64',_0x490dc0[_0x1f659f(0x246,'\x77\x4f\x77\x37')]='\x75\x74\x66\x38',_0x490dc0['\x77\x70\x54\x55\x73']=function(_0x1c9211,_0x102b2b){return _0x1c9211===_0x102b2b;},_0x490dc0[_0x1f659f(0xfe,'\x73\x54\x55\x70')]=_0x1f659f(0x2c7,'\x29\x64\x45\x4f');const _0x59dd71=_0x490dc0,_0x53b603=Number[_0x1f659f(0x23b,'\x72\x47\x64\x35')](_0x194815)?_0x194815:0x2*0x223+0x2*0x100a+-0x3*0xc1d,_0x5f0bd4=_0xfca8ef();try{if(!_0x3456d0[_0x1f659f(0x131,'\x52\x2a\x57\x26')+'\x6e\x63'](_0x5f0bd4))return[];const _0x56e824=_0x3456d0[_0x1f659f(0x1b4,'\x52\x2a\x57\x26')+_0x1f659f(0x1f3,'\x77\x36\x6f\x50')](_0x5f0bd4,_0x59dd71['\x44\x59\x72\x4b\x64'])[_0x1f659f(0x14b,'\x58\x72\x73\x5d')]()[_0x1f659f(0x12b,'\x66\x4d\x56\x61')]('\x0a')[_0x1f659f(0x224,'\x77\x4f\x77\x37')](Boolean);return _0x56e824[_0x1f659f(0x151,'\x35\x4c\x48\x5e')](-_0x53b603)[_0x1f659f(0x1a5,'\x73\x54\x55\x70')](_0x23a98d=>{const _0xddd67c=_0x1f659f,_0x3a40b8={};_0x3a40b8[_0xddd67c(0x1f6,'\x24\x46\x37\x42')]=_0x59dd71[_0xddd67c(0x249,'\x72\x6d\x4e\x36')],_0x3a40b8[_0xddd67c(0x266,'\x78\x28\x7a\x7a')]=_0x59dd71['\x6d\x4d\x41\x75\x61'];const _0x231904=_0x3a40b8;if(_0x59dd71[_0xddd67c(0x216,'\x4a\x4c\x46\x46')](_0x59dd71[_0xddd67c(0x259,'\x32\x25\x63\x78')],_0xddd67c(0x176,'\x7a\x7a\x28\x5a')))try{return JSON[_0xddd67c(0x138,'\x32\x25\x63\x78')](_0x23a98d);}catch(_0x1f22ff){if(_0x59dd71[_0xddd67c(0x20e,'\x69\x5d\x6e\x6f')](_0x59dd71['\x44\x55\x48\x4a\x77'],_0x59dd71['\x79\x6c\x65\x76\x51'])){const _0x59749d=_0x1eaf96&&_0x460d0d[_0xddd67c(0x15a,'\x79\x4d\x37\x25')](_0x20a608[_0xddd67c(0x2a2,'\x66\x4c\x5b\x5d')+'\x65\x64'])&&_0x1d32a1[_0xddd67c(0x25d,'\x78\x25\x23\x59')+'\x65\x64'][0xbb*-0x4+-0x901+0xbed]?_0x31689d[_0xddd67c(0xf1,'\x69\x5d\x6e\x6f')+'\x65\x64'][-0x1*0x9a9+0x12cb*-0x2+-0xcd*-0x3b]:xnQvaG[_0xddd67c(0x1bf,'\x52\x40\x4b\x79')];_0x55e6f8[_0x59749d]=(_0x20717b[_0x59749d]||-0x81d+0x2*0x6ca+0x577*-0x1)+(-0x156b*0x1+0x4*-0x12a+0xd0a*0x2);}else return null;}else{const _0x3867b8={};_0x3867b8[_0xddd67c(0x196,'\x30\x31\x58\x55')]=function(_0x4d158a,_0x4d7758){return _0x4d158a+_0x4d7758;};const _0x53f04b=_0x3867b8,_0xa0c67d=_0x10f77d[_0xddd67c(0x151,'\x35\x4c\x48\x5e')](-(-0xc4d*0x1+-0x1*-0x277+0x9e0)),_0x1f8d89=_0xa0c67d['\x66\x69\x6c\x74\x65\x72'](_0xc1f90e=>_0xc1f90e&&_0xc1f90e[_0xddd67c(0x276,'\x30\x31\x58\x55')]&&_0xc1f90e[_0xddd67c(0x232,'\x52\x40\x4b\x79')]['\x73\x74\x61\x74\x75\x73']===_0xddd67c(0x145,'\x54\x23\x59\x2a'))[_0xddd67c(0x220,'\x77\x4f\x77\x37')],_0x4b00e1=_0xa0c67d['\x66\x69\x6c\x74\x65\x72'](_0x5a8d2d=>_0x5a8d2d&&_0x5a8d2d['\x6f\x75\x74\x63\x6f\x6d\x65']&&_0x5a8d2d[_0xddd67c(0x298,'\x66\x4c\x5b\x5d')][_0xddd67c(0x25e,'\x74\x55\x74\x41')]==='\x66\x61\x69\x6c\x65\x64')['\x6c\x65\x6e\x67\x74\x68'],_0x18ce60={};_0xa0c67d[_0xddd67c(0x160,'\x72\x6d\x4e\x36')](_0x235dbc=>{const _0x2ea820=_0xddd67c,_0x26f36b=_0x235dbc&&_0x235dbc[_0x2ea820(0x26d,'\x52\x2a\x57\x26')]?_0x235dbc[_0x2ea820(0x19a,'\x6a\x69\x32\x4f')]:_0x2ea820(0x1fa,'\x74\x34\x75\x57');_0x18ce60[_0x26f36b]=_0x53f04b[_0x2ea820(0x29b,'\x6c\x59\x45\x30')](_0x18ce60[_0x26f36b]||0x256b*0x1+-0x91+-0x24da,-0x1*-0x248a+0x1cb5+-0x413e);});const _0x4bc434={};_0xa0c67d[_0xddd67c(0x24c,'\x77\x4f\x77\x37')](_0x47e884=>{const _0x1b80de=_0xddd67c,_0x35e979=_0x47e884&&_0x3ce061[_0x1b80de(0x28b,'\x72\x6d\x4e\x36')](_0x47e884[_0x1b80de(0x219,'\x72\x47\x64\x35')+'\x65\x64'])&&_0x47e884['\x67\x65\x6e\x65\x73\x5f\x75\x73'+'\x65\x64'][0x172e*0x1+0x203e+-0x376c]?_0x47e884[_0x1b80de(0x219,'\x72\x47\x64\x35')+'\x65\x64'][-0xeb*-0xb+0x37*0x5f+-0x1e82]:_0x1b80de(0x296,'\x72\x47\x64\x35');_0x4bc434[_0x35e979]=(_0x4bc434[_0x35e979]||0x12a0+-0x2ef*-0x9+0x1*-0x2d07)+(0xd2+-0xc42*-0x3+-0x2597);}),_0x2e6770[_0xddd67c(0x180,'\x6b\x5d\x67\x6c')](xnQvaG['\x49\x42\x4a\x67\x4e']),_0x3b4f44[_0xddd67c(0x18a,'\x6c\x59\x45\x30')](_0xddd67c(0x21f,'\x7a\x50\x65\x75')+_0xddd67c(0x1d8,'\x58\x72\x73\x5d')+_0x1f8d89+(_0xddd67c(0xf2,'\x6b\x5d\x67\x6c')+'\x3a\x20')+_0x4b00e1),_0x1906a4[_0xddd67c(0x147,'\x24\x46\x37\x42')](_0xddd67c(0x254,'\x74\x55\x74\x41')+_0xddd67c(0x14f,'\x52\x2a\x57\x26')+_0xddd67c(0x2a3,'\x43\x25\x5e\x44')+_0x35b4ac[_0xddd67c(0x1e6,'\x63\x51\x47\x57')+'\x79'](_0x18ce60)),_0x2f283b[_0xddd67c(0x257,'\x29\x64\x45\x4f')](_0xddd67c(0x182,'\x66\x4d\x56\x61')+_0xddd67c(0x1b6,'\x78\x25\x23\x59')+_0x561e51['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79'](_0x4bc434)),_0x29d34c[_0xddd67c(0x1e2,'\x77\x36\x6f\x50')]('');}})[_0x1f659f(0x211,'\x57\x78\x37\x6a')](Boolean);}catch(_0xd7cd84){return _0x59dd71[_0x1f659f(0x2c3,'\x30\x31\x58\x55')](_0x59dd71['\x76\x76\x64\x46\x43'],_0x59dd71[_0x1f659f(0x146,'\x32\x25\x63\x78')])?[]:_0x40a475===sNeEMR[_0x1f659f(0x2d4,'\x72\x35\x79\x26')]||_0x1d060e===sNeEMR[_0x1f659f(0x294,'\x66\x4d\x56\x61')]||sNeEMR[_0x1f659f(0x16c,'\x7a\x50\x65\x75')](_0x374f5e,_0x1f659f(0x202,'\x66\x4d\x56\x61')+'\x63\x6c\x65\x5f\x6c\x6f\x6f\x70'+_0x1f659f(0x10e,'\x57\x78\x37\x6a')+'\x64');}}const _0x10bb72={};_0x10bb72[_0x31f7d4(0x241,'\x35\x4c\x48\x5e')+_0x31f7d4(0x1dc,'\x35\x4c\x48\x5e')]=_0x5a6bf0,_0x10bb72['\x62\x75\x69\x6c\x64\x52\x65\x66'+_0x31f7d4(0x13f,'\x65\x79\x46\x36')+'\x6f\x6e\x74\x65\x78\x74']=_0x362069,_0x10bb72['\x72\x65\x63\x6f\x72\x64\x52\x65'+_0x31f7d4(0x200,'\x35\x4c\x48\x5e')]=_0x237d1f,_0x10bb72['\x6c\x6f\x61\x64\x52\x65\x63\x65'+_0x31f7d4(0x137,'\x32\x25\x63\x78')+'\x74\x69\x6f\x6e\x73']=_0x1d7187,_0x10bb72[_0x31f7d4(0x24a,'\x6c\x59\x45\x30')+_0x31f7d4(0x28f,'\x72\x35\x79\x26')+_0x31f7d4(0x16a,'\x6a\x69\x32\x4f')]=_0xb2ac2c,_0x10bb72[_0x31f7d4(0x23e,'\x69\x5d\x6e\x6f')+_0x31f7d4(0x101,'\x69\x61\x55\x66')+_0x31f7d4(0x2b8,'\x67\x61\x4f\x73')+'\x45\x53']=_0x10d631,module['\x65\x78\x70\x6f\x72\x74\x73']=_0x10bb72;
1
+ 'use strict';
2
+
3
+ const fs = require('fs');
4
+ const path = require('path');
5
+ const { getReflectionLogPath, getEvolutionDir } = require('./paths');
6
+
7
+ const REFLECTION_INTERVAL_DEFAULT = 5;
8
+ const REFLECTION_INTERVAL_SUCCESS = 8;
9
+ const REFLECTION_INTERVAL_FAILURE = 3;
10
+ const REFLECTION_COOLDOWN_MS = 30 * 60 * 1000;
11
+
12
+ // Keep the export name for backward compat.
13
+ const REFLECTION_INTERVAL_CYCLES = REFLECTION_INTERVAL_DEFAULT;
14
+
15
+ function ensureDir(dir) {
16
+ try { if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true }); } catch (_) {}
17
+ }
18
+
19
+ function computeReflectionInterval(recentEvents) {
20
+ try {
21
+ var events = Array.isArray(recentEvents) ? recentEvents : [];
22
+ if (events.length < 3) return REFLECTION_INTERVAL_DEFAULT;
23
+ var tail = events.slice(-3);
24
+ var allSuccess = tail.every(function (e) {
25
+ return e && e.outcome && e.outcome.status === 'success';
26
+ });
27
+ var allFailed = tail.every(function (e) {
28
+ return e && e.outcome && e.outcome.status === 'failed';
29
+ });
30
+ if (allSuccess) return REFLECTION_INTERVAL_SUCCESS;
31
+ if (allFailed) return REFLECTION_INTERVAL_FAILURE;
32
+ } catch (_) {}
33
+ return REFLECTION_INTERVAL_DEFAULT;
34
+ }
35
+
36
+ function shouldReflect({ cycleCount, recentEvents }) {
37
+ var interval = computeReflectionInterval(recentEvents);
38
+ if (!Number.isFinite(cycleCount) || cycleCount < interval) return false;
39
+ if (cycleCount % interval !== 0) return false;
40
+
41
+ const logPath = getReflectionLogPath();
42
+ try {
43
+ if (fs.existsSync(logPath)) {
44
+ const stat = fs.statSync(logPath);
45
+ if (Date.now() - stat.mtimeMs < REFLECTION_COOLDOWN_MS) return false;
46
+ }
47
+ } catch (_) {}
48
+
49
+ return true;
50
+ }
51
+
52
+ function buildSuggestedMutations(signals) {
53
+ var sigs = Array.isArray(signals) ? signals : [];
54
+ var muts = [];
55
+ var hasStagnation = sigs.some(function (s) {
56
+ return s === 'stable_success_plateau' ||
57
+ s === 'evolution_stagnation_detected' ||
58
+ s === 'empty_cycle_loop_detected';
59
+ });
60
+ var hasError = sigs.some(function (s) {
61
+ return s === 'log_error' || String(s).startsWith('errsig:') || String(s).startsWith('errsig_norm:');
62
+ });
63
+ var hasGap = sigs.some(function (s) {
64
+ return s === 'capability_gap' || s === 'external_opportunity';
65
+ });
66
+ if (hasStagnation) {
67
+ muts.push({ param: 'creativity', delta: +0.05, reason: 'stagnation detected in reflection' });
68
+ }
69
+ if (hasError) {
70
+ muts.push({ param: 'rigor', delta: +0.05, reason: 'errors detected in reflection' });
71
+ }
72
+ if (hasGap) {
73
+ muts.push({ param: 'risk_tolerance', delta: +0.05, reason: 'capability gap in reflection' });
74
+ }
75
+ return muts.slice(0, 2);
76
+ }
77
+
78
+ function buildReflectionContext({ recentEvents, signals, memoryAdvice, narrative }) {
79
+ const parts = ['You are performing a strategic reflection on recent evolution cycles.'];
80
+ parts.push('Analyze the patterns below and provide concise strategic guidance.');
81
+ parts.push('');
82
+
83
+ if (Array.isArray(recentEvents) && recentEvents.length > 0) {
84
+ const last10 = recentEvents.slice(-10);
85
+ const successCount = last10.filter(e => e && e.outcome && e.outcome.status === 'success').length;
86
+ const failCount = last10.filter(e => e && e.outcome && e.outcome.status === 'failed').length;
87
+ const intents = {};
88
+ last10.forEach(e => {
89
+ const i = e && e.intent ? e.intent : 'unknown';
90
+ intents[i] = (intents[i] || 0) + 1;
91
+ });
92
+ const genes = {};
93
+ last10.forEach(e => {
94
+ const g = e && Array.isArray(e.genes_used) && e.genes_used[0] ? e.genes_used[0] : 'unknown';
95
+ genes[g] = (genes[g] || 0) + 1;
96
+ });
97
+
98
+ parts.push('## Recent Cycle Statistics (last 10)');
99
+ parts.push(`- Success: ${successCount}, Failed: ${failCount}`);
100
+ parts.push(`- Intent distribution: ${JSON.stringify(intents)}`);
101
+ parts.push(`- Gene usage: ${JSON.stringify(genes)}`);
102
+ parts.push('');
103
+ }
104
+
105
+ if (Array.isArray(signals) && signals.length > 0) {
106
+ parts.push('## Current Signals');
107
+ parts.push(signals.slice(0, 20).join(', '));
108
+ parts.push('');
109
+ }
110
+
111
+ if (memoryAdvice) {
112
+ parts.push('## Memory Graph Advice');
113
+ if (memoryAdvice.preferredGeneId) {
114
+ parts.push(`- Preferred gene: ${memoryAdvice.preferredGeneId}`);
115
+ }
116
+ if (Array.isArray(memoryAdvice.bannedGeneIds) && memoryAdvice.bannedGeneIds.length > 0) {
117
+ parts.push(`- Banned genes: ${memoryAdvice.bannedGeneIds.join(', ')}`);
118
+ }
119
+ if (memoryAdvice.explanation) {
120
+ parts.push(`- Explanation: ${memoryAdvice.explanation}`);
121
+ }
122
+ parts.push('');
123
+ }
124
+
125
+ if (narrative) {
126
+ parts.push('## Recent Evolution Narrative');
127
+ parts.push(String(narrative).slice(0, 3000));
128
+ parts.push('');
129
+ }
130
+
131
+ parts.push('## Questions to Answer');
132
+ parts.push('1. Are there persistent signals being ignored?');
133
+ parts.push('2. Is the gene selection strategy optimal, or are we stuck in a local maximum?');
134
+ parts.push('3. Should the balance between repair/optimize/innovate shift?');
135
+ parts.push('4. Are there capability gaps that no current gene addresses?');
136
+ parts.push('5. What single strategic adjustment would have the highest impact?');
137
+ parts.push('');
138
+ parts.push('Respond with a JSON object: { "insights": [...], "strategy_adjustment": "...", "priority_signals": [...] }');
139
+
140
+ return parts.join('\n');
141
+ }
142
+
143
+ function recordReflection(reflection) {
144
+ const logPath = getReflectionLogPath();
145
+ ensureDir(path.dirname(logPath));
146
+
147
+ const entry = JSON.stringify({
148
+ ts: new Date().toISOString(),
149
+ type: 'reflection',
150
+ ...reflection,
151
+ }) + '\n';
152
+
153
+ fs.appendFileSync(logPath, entry, 'utf8');
154
+ }
155
+
156
+ function loadRecentReflections(count) {
157
+ const n = Number.isFinite(count) ? count : 3;
158
+ const logPath = getReflectionLogPath();
159
+ try {
160
+ if (!fs.existsSync(logPath)) return [];
161
+ const lines = fs.readFileSync(logPath, 'utf8').trim().split('\n').filter(Boolean);
162
+ return lines.slice(-n).map(line => {
163
+ try { return JSON.parse(line); } catch (_) { return null; }
164
+ }).filter(Boolean);
165
+ } catch (_) {
166
+ return [];
167
+ }
168
+ }
169
+
170
+ module.exports = {
171
+ shouldReflect,
172
+ buildReflectionContext,
173
+ recordReflection,
174
+ loadRecentReflections,
175
+ buildSuggestedMutations,
176
+ REFLECTION_INTERVAL_CYCLES,
177
+ };
@@ -1 +1,112 @@
1
- const _0x45258c=_0x4026;(function(_0x59ba4a,_0x3b5e3e){const _0x56364e=_0x4026,_0x5c5ca0=_0x59ba4a();while(!![]){try{const _0x44ec8d=-parseInt(_0x56364e(0x17c,'\x75\x68\x42\x75'))/(-0x1947+-0xe9*0x11+0x28c1*0x1)+-parseInt(_0x56364e(0x10a,'\x40\x74\x44\x43'))/(-0x3b*0x7f+0xf02+0xe45)+parseInt(_0x56364e(0x134,'\x56\x71\x46\x26'))/(0x1*-0x2a7+-0x3*-0x142+-0x11c)+parseInt(_0x56364e(0x146,'\x6e\x76\x5d\x53'))/(0x1e17+-0x1dc4+-0x4f)+-parseInt(_0x56364e(0x13c,'\x33\x50\x64\x65'))/(0x12db*-0x1+-0x25bc+0x389c)+parseInt(_0x56364e(0x18c,'\x56\x71\x46\x26'))/(0x1f*0x3a+0x18d7*0x1+-0x1fd7)+-parseInt(_0x56364e(0x112,'\x37\x44\x66\x63'))/(0x89*0x17+-0xa1d*-0x3+0x3*-0xe35)*(parseInt(_0x56364e(0x137,'\x24\x41\x4c\x73'))/(-0x9*0x406+0x1b4a+0x8f4));if(_0x44ec8d===_0x3b5e3e)break;else _0x5c5ca0['push'](_0x5c5ca0['shift']());}catch(_0x4d1344){_0x5c5ca0['push'](_0x5c5ca0['shift']());}}}(_0x37c2,0x4*-0x3df15+0x2*-0xd5f42+0x3858a9));const _0x50a836=(function(){const _0x49c0fb=_0x4026,_0x2000e0={'\x72\x53\x56\x6f\x7a':function(_0x40a21f,_0x10f30a){return _0x40a21f(_0x10f30a);},'\x41\x4f\x71\x57\x74':function(_0x5ccd73,_0x5c7144){return _0x5ccd73>_0x5c7144;},'\x69\x48\x5a\x59\x75':_0x49c0fb(0x186,'\x31\x73\x57\x59')+_0x49c0fb(0x162,'\x71\x36\x2a\x5d')+_0x49c0fb(0xf6,'\x6c\x4a\x70\x74'),'\x4b\x56\x62\x6c\x4e':function(_0xba17a4,_0x11bb04){return _0xba17a4*_0x11bb04;},'\x56\x52\x7a\x43\x53':function(_0x40b4ce,_0x53897b){return _0x40b4ce===_0x53897b;},'\x62\x52\x49\x73\x52':_0x49c0fb(0x168,'\x73\x67\x62\x35')+'\x65','\x71\x43\x74\x78\x70':function(_0x42280e,_0x47c786){return _0x42280e!==_0x47c786;},'\x47\x69\x54\x49\x66':_0x49c0fb(0x10d,'\x6c\x4a\x70\x74'),'\x6d\x66\x7a\x51\x44':_0x49c0fb(0x16a,'\x28\x43\x5d\x57')};let _0x517374=!![];return function(_0x13c6e4,_0x5c2373){const _0x23a0c9=_0x49c0fb,_0x30086e={'\x63\x4b\x67\x4a\x45':function(_0x5b1689,_0x57266b){const _0x5ead16=_0x4026;return _0x2000e0[_0x5ead16(0xf7,'\x59\x53\x55\x42')](_0x5b1689,_0x57266b);},'\x4c\x44\x47\x62\x45':function(_0x161612,_0x549334){const _0xb2ce5d=_0x4026;return _0x2000e0[_0xb2ce5d(0x150,'\x50\x53\x5e\x7a')](_0x161612,_0x549334);},'\x5a\x5a\x59\x50\x7a':_0x2000e0[_0x23a0c9(0x161,'\x37\x44\x66\x63')],'\x74\x4c\x69\x6f\x54':_0x23a0c9(0x117,'\x50\x53\x5e\x7a')+_0x23a0c9(0xc8,'\x72\x55\x51\x30')+'\x74','\x69\x78\x49\x7a\x53':function(_0x46cd3c,_0x3c4457){return _0x46cd3c+_0x3c4457;},'\x51\x5a\x6a\x58\x49':function(_0x27a6c0,_0x5b028d){const _0xf592e7=_0x23a0c9;return _0x2000e0[_0xf592e7(0x14f,'\x59\x53\x55\x42')](_0x27a6c0,_0x5b028d);},'\x75\x59\x49\x50\x4e':function(_0xc526fe,_0x4a5d0a){return _0x2000e0['\x56\x52\x7a\x43\x53'](_0xc526fe,_0x4a5d0a);},'\x71\x4d\x55\x71\x4c':_0x2000e0[_0x23a0c9(0xc5,'\x24\x41\x4c\x73')],'\x48\x74\x64\x6e\x67':function(_0x565914,_0x1c7f36){const _0x267f1e=_0x23a0c9;return _0x2000e0[_0x267f1e(0xf0,'\x50\x4d\x52\x44')](_0x565914,_0x1c7f36);},'\x73\x67\x54\x68\x59':function(_0x472276,_0x5d8c4a){return _0x2000e0['\x4b\x56\x62\x6c\x4e'](_0x472276,_0x5d8c4a);},'\x66\x55\x61\x6a\x66':function(_0x38c49e,_0x3bcb9b){const _0x59fd28=_0x23a0c9;return _0x2000e0[_0x59fd28(0xd3,'\x40\x74\x44\x43')](_0x38c49e,_0x3bcb9b);},'\x76\x46\x47\x7a\x41':function(_0x4df15c,_0x1804c4){const _0x141db7=_0x23a0c9;return _0x2000e0[_0x141db7(0x149,'\x59\x53\x55\x42')](_0x4df15c,_0x1804c4);},'\x73\x57\x6b\x59\x6b':_0x2000e0[_0x23a0c9(0xee,'\x5e\x23\x73\x79')],'\x62\x78\x52\x48\x48':_0x2000e0[_0x23a0c9(0x133,'\x54\x44\x4d\x6f')]},_0x29ce46=_0x517374?function(){const _0x49f6a5=_0x23a0c9,_0x8dd22={'\x4b\x69\x77\x78\x78':function(_0x1694dc,_0x2531a7){return _0x1694dc||_0x2531a7;},'\x43\x65\x4a\x47\x46':function(_0x217c56,_0x1b3476){const _0x232ddf=_0x4026;return _0x30086e[_0x232ddf(0x17f,'\x58\x25\x44\x6e')](_0x217c56,_0x1b3476);},'\x67\x50\x77\x49\x59':function(_0x558c97,_0x1ecf61){const _0x2af4bc=_0x4026;return _0x30086e[_0x2af4bc(0x109,'\x5e\x23\x73\x79')](_0x558c97,_0x1ecf61);},'\x52\x73\x58\x50\x46':function(_0x33b60e,_0x3d4654){const _0x12a41a=_0x4026;return _0x30086e[_0x12a41a(0x131,'\x37\x42\x38\x63')](_0x33b60e,_0x3d4654);}};if(_0x30086e[_0x49f6a5(0x110,'\x53\x48\x5a\x2a')](_0x30086e['\x73\x57\x6b\x59\x6b'],_0x30086e[_0x49f6a5(0x12a,'\x77\x4c\x41\x25')])){const _0x1e09bc=_0x3e3b06[_0x49f6a5(0x16f,'\x76\x68\x46\x71')+_0x49f6a5(0xdc,'\x33\x50\x64\x65')],_0x16c609=_0x30086e['\x63\x4b\x67\x4a\x45'](_0x4e6280,_0x20b013),_0x44a858=_0x46ae53[_0x49f6a5(0xe9,'\x6c\x4a\x70\x74')](_0x16c609)&&_0x30086e[_0x49f6a5(0x136,'\x56\x61\x47\x47')](_0x16c609,-0x39*0x34+-0x2*0xc62+0x2458),_0x2b3aef=_0x44a858?_0x30086e[_0x49f6a5(0x143,'\x72\x55\x51\x30')]:_0x30086e[_0x49f6a5(0x10e,'\x75\x68\x42\x75')],_0x22082a=_0x44a858?_0x16c609:_0x1e09bc[_0x49f6a5(0xf5,'\x26\x55\x36\x38')+_0x49f6a5(0xdd,'\x5a\x29\x75\x67')+_0x49f6a5(0xdb,'\x6c\x4a\x70\x74')],_0x4520f1=_0x47edfe[_0x49f6a5(0x124,'\x32\x71\x5d\x4f')](_0x30086e['\x69\x78\x49\x7a\x53'](_0x1e09bc[_0x49f6a5(0x15d,'\x6e\x76\x5d\x53')+_0x49f6a5(0x176,'\x75\x6a\x53\x23')+'\x6e\x73'],_0x30086e[_0x49f6a5(0xef,'\x72\x55\x51\x30')](_0x22082a,_0x1e09bc['\x74\x6f\x6b\x65\x6e\x73\x5f\x70'+_0x49f6a5(0xfa,'\x5a\x29\x75\x67')+_0x49f6a5(0xe2,'\x26\x55\x36\x38')])),_0x1e09bc[_0x49f6a5(0x115,'\x47\x51\x65\x79')+_0x49f6a5(0xde,'\x47\x40\x72\x40')+'\x73']),_0x3797b4=_0x484fbd['\x72\x6f\x75\x6e\x64'](_0x30086e[_0x49f6a5(0x139,'\x31\x4a\x74\x7a')](_0x16a352,_0x30086e[_0x49f6a5(0x152,'\x5e\x23\x73\x79')])?_0x30086e[_0x49f6a5(0x11d,'\x37\x44\x66\x63')](_0x4520f1,_0x1e09bc[_0x49f6a5(0x17e,'\x47\x40\x72\x40')+_0x49f6a5(0x15b,'\x37\x42\x38\x63')+_0x49f6a5(0x101,'\x47\x40\x72\x40')+'\x6e']):_0x4520f1),_0x1399c2={};return _0x1399c2[_0x49f6a5(0x142,'\x47\x40\x72\x40')+_0x49f6a5(0x10c,'\x5e\x23\x73\x79')]=_0x3797b4,_0x1399c2[_0x49f6a5(0x14c,'\x73\x67\x62\x35')]=_0x2b3aef,_0x1399c2;}else{if(_0x5c2373){if(_0x30086e[_0x49f6a5(0x125,'\x40\x74\x44\x43')]===_0x49f6a5(0x182,'\x26\x55\x36\x38')){const _0x9681a5=_0x5c2373[_0x49f6a5(0x17a,'\x76\x56\x4b\x78')](_0x13c6e4,arguments);return _0x5c2373=null,_0x9681a5;}else{let _0x33b50a=0xe45*-0x1+-0x1e3*0x13+0x321e;for(const [_0x185686,_0x2a01c1]of _0x24f05[_0x49f6a5(0xd9,'\x32\x71\x5d\x4f')](_0x8dd22[_0x49f6a5(0x166,'\x56\x61\x47\x47')](_0x5116e0,{}))){const _0x2a44a6=_0x3ea5e5[_0x49f6a5(0x123,'\x58\x25\x44\x6e')+_0x49f6a5(0x114,'\x53\x6b\x63\x6c')+_0x49f6a5(0x12f,'\x49\x35\x57\x68')][_0x185686];_0x33b50a+=_0x8dd22[_0x49f6a5(0x113,'\x76\x56\x4b\x78')](_0x8dd22[_0x49f6a5(0x157,'\x5e\x28\x69\x47')](_0x2a44a6,_0x50cab5)?0x213*0xd+0xdfe+0xe9*-0x2d:_0x2a44a6,_0x8dd22[_0x49f6a5(0x13a,'\x5e\x23\x73\x79')](_0x57f3ac,_0x2a01c1));}return _0x33b50a;}}}}:function(){};return _0x517374=![],_0x29ce46;};}()),_0x730418=_0x50a836(this,function(){const _0x49ffc5=_0x4026,_0x596c3b={};_0x596c3b[_0x49ffc5(0xd4,'\x56\x71\x46\x26')]=_0x49ffc5(0x11c,'\x24\x41\x4c\x73')+_0x49ffc5(0x188,'\x46\x68\x37\x68');const _0x89ccf2=_0x596c3b;return _0x730418[_0x49ffc5(0x16b,'\x73\x67\x62\x35')]()['\x73\x65\x61\x72\x63\x68'](_0x89ccf2[_0x49ffc5(0x116,'\x77\x4c\x41\x25')])[_0x49ffc5(0x180,'\x56\x5d\x78\x74')]()[_0x49ffc5(0xe0,'\x32\x71\x5d\x4f')+_0x49ffc5(0xea,'\x46\x68\x37\x68')](_0x730418)[_0x49ffc5(0x16c,'\x54\x44\x4d\x6f')](_0x49ffc5(0x11c,'\x24\x41\x4c\x73')+_0x49ffc5(0xd7,'\x59\x53\x55\x42'));});_0x730418();'use strict';const _0x43e9e2=require(_0x45258c(0x174,'\x38\x46\x45\x57')),_0x13bd2b=require(_0x43e9e2[_0x45258c(0x126,'\x5e\x28\x69\x47')](__dirname,'\x2e\x2e','\x2e\x2e',_0x45258c(0x185,'\x31\x4a\x74\x7a')+'\x6e\x63\x65',_0x45258c(0x12b,'\x73\x67\x62\x35')+'\x63\x6f\x72\x65',_0x45258c(0x141,'\x76\x68\x46\x71')+_0x45258c(0x111,'\x73\x67\x62\x35'))),_0x39397d=_0x13936d=>Math[_0x45258c(0x13d,'\x5a\x29\x75\x67')]((_0x13936d+Number['\x45\x50\x53\x49\x4c\x4f\x4e'])*(-0x6d0*0x4+-0x1578+0x311c))/(0x1*-0x25df+0x5*-0x2d5+0x6e*0x7a),_0x179e05=_0x22e208=>Math[_0x45258c(0x12c,'\x37\x44\x66\x63')]((_0x22e208+Number[_0x45258c(0x172,'\x59\x53\x55\x42')])*(-0x3acc+-0x6*-0x80e+-0x18c4*-0x2))/(0x2*0x31d+0x4d56+-0x2*0x1640),_0x1462a9=_0x5d4ec7=>Math[_0x45258c(0x15f,'\x43\x77\x4a\x77')](-0x11d3+0x824+0x43*0x25,Math[_0x45258c(0x118,'\x47\x78\x44\x44')](Number(_0x5d4ec7)||0x1dcf+-0x1b38+0x33*-0xd));function _0x2571ba(_0x1ca08c,_0x235837){const _0x1795a8=_0x45258c,_0x529a16={'\x6b\x72\x41\x6e\x73':function(_0x43eae4,_0x54ca07){return _0x43eae4-_0x54ca07;},'\x67\x79\x77\x79\x78':function(_0xcff250,_0x590dd8){return _0xcff250>_0x590dd8;},'\x4d\x69\x55\x7a\x6d':function(_0x3ff081,_0x1d1aa2){return _0x3ff081-_0x1d1aa2;},'\x4e\x52\x54\x45\x4b':function(_0x26c520,_0x3b0106){return _0x26c520/_0x3b0106;},'\x55\x6e\x55\x73\x6c':function(_0x375485,_0x32575a){return _0x375485(_0x32575a);},'\x56\x51\x57\x59\x4e':function(_0x3f26c5,_0x5f3a2c){return _0x3f26c5*_0x5f3a2c;}},_0x1ac6b0=_0x1462a9(_0x1ca08c),_0x34a5b1=_0x1462a9(_0x235837),_0x4f4513=Math[_0x1795a8(0x154,'\x31\x4a\x74\x7a')](-0x3be*-0x5+-0x7d9+-0xadd,_0x529a16[_0x1795a8(0x121,'\x56\x61\x47\x47')](_0x1ac6b0,_0x34a5b1)),_0x1a4d18=_0x529a16['\x67\x79\x77\x79\x78'](_0x1ac6b0,-0x1a12+0x78+0x199a)?Math[_0x1795a8(0x12e,'\x31\x73\x57\x59')](-0xd73*-0x1+-0x25e1+0x186e,_0x529a16['\x4d\x69\x55\x7a\x6d'](-0x1*-0x1758+-0x7*-0x427+-0x3468,_0x529a16[_0x1795a8(0x10b,'\x50\x53\x5e\x7a')](_0x34a5b1,_0x1ac6b0))):0x1f*0x1d+-0x290+-0xf3;return{'\x74\x6f\x6b\x65\x6e\x73\x5f\x73\x61\x76\x65\x64':_0x4f4513,'\x73\x61\x76\x69\x6e\x67\x73\x5f\x70\x63\x74':_0x529a16[_0x1795a8(0x163,'\x47\x40\x72\x40')](_0x39397d,_0x529a16[_0x1795a8(0xd2,'\x4a\x65\x71\x36')](_0x1a4d18,0x14a*-0x9+0x5*0x2dd+-0x253))};}function _0x3e4b90(_0x21552a){const _0x6aa880=_0x45258c,_0xcf37ae={'\x41\x6d\x76\x43\x6f':function(_0x37e988,_0x1208b1){return _0x37e988(_0x1208b1);},'\x52\x65\x55\x59\x58':function(_0x3d77dc,_0x21106f){return _0x3d77dc*_0x21106f;},'\x4d\x4c\x71\x50\x66':function(_0x456e57,_0x43dc27){return _0x456e57/_0x43dc27;}},_0x43e50c=Number(_0x21552a)||-0x1a1+-0x705+-0x453*-0x2;return _0x43e50c>=0x1*-0x163f+0xb57+-0x85*-0x15?_0xcf37ae[_0x6aa880(0xff,'\x75\x68\x42\x75')](_0x39397d,_0xcf37ae[_0x6aa880(0x187,'\x75\x68\x42\x75')](0x1*0xfaa+0x1*-0xa47+-0x562-_0xcf37ae['\x4d\x4c\x71\x50\x66'](0x199e+0x102+-0x1a9f,_0x43e50c),0x1*-0x23b+-0x39a+-0x3b*-0x1b)):-0x1*-0xfd7+0x20b9+0x2*-0x1848;}function _0x37c2(){const _0x470953=['\x57\x35\x37\x64\x4c\x33\x65\x41\x57\x37\x6a\x6d\x64\x53\x6f\x57','\x65\x67\x42\x64\x4b\x32\x35\x68','\x57\x51\x44\x49\x62\x53\x6f\x31\x63\x6d\x6f\x35','\x74\x38\x6b\x66\x67\x33\x54\x2f','\x76\x38\x6f\x77\x57\x4f\x37\x64\x4a\x74\x47','\x57\x34\x42\x64\x51\x53\x6b\x31\x57\x51\x46\x63\x50\x43\x6f\x31\x66\x38\x6b\x51','\x57\x51\x7a\x49\x61\x43\x6f\x49\x67\x43\x6f\x30\x57\x4f\x53\x4c','\x6e\x78\x70\x63\x54\x57\x71\x41\x57\x35\x35\x71\x45\x6d\x6f\x69\x57\x52\x53\x4d\x75\x67\x43','\x71\x43\x6f\x69\x57\x52\x6a\x74\x77\x61','\x57\x51\x62\x4f\x6e\x6d\x6f\x5a\x67\x43\x6f\x34\x57\x4f\x53\x48','\x74\x38\x6b\x44\x57\x4f\x74\x64\x4d\x6d\x6f\x54\x43\x47','\x57\x51\x62\x4f\x65\x38\x6f\x4d\x62\x38\x6f\x6f\x57\x4f\x61\x57','\x68\x75\x46\x64\x56\x67\x48\x6a','\x57\x51\x46\x64\x4f\x73\x78\x63\x4f\x71\x5a\x64\x55\x43\x6f\x31\x63\x71','\x57\x35\x31\x79\x6d\x4e\x44\x74\x57\x52\x4c\x45\x57\x51\x50\x78\x57\x4f\x30\x6d\x57\x34\x74\x64\x4a\x61','\x57\x4f\x72\x57\x57\x37\x4c\x55\x76\x57','\x72\x48\x74\x64\x4b\x4e\x39\x4a\x57\x51\x65\x51','\x44\x64\x56\x64\x47\x38\x6b\x77\x61\x53\x6b\x6f\x42\x57','\x65\x47\x78\x63\x4c\x6d\x6b\x56','\x57\x50\x58\x74\x64\x43\x6f\x33\x62\x71','\x6c\x6d\x6b\x57\x74\x71\x57\x52\x57\x51\x6d\x43\x70\x47','\x57\x4f\x42\x64\x4e\x43\x6f\x76\x67\x6d\x6f\x34\x43\x59\x6c\x64\x4c\x47','\x71\x72\x4c\x30\x57\x36\x72\x4c\x45\x38\x6f\x55\x7a\x71','\x45\x64\x69\x6a\x42\x43\x6f\x6b','\x61\x43\x6b\x34\x42\x4c\x6c\x64\x4b\x47','\x57\x37\x43\x77\x57\x36\x6d\x5a\x57\x51\x4f\x71\x57\x37\x33\x63\x4f\x57','\x57\x35\x69\x4b\x57\x51\x53\x5a\x68\x62\x61\x6e\x71\x57\x61\x70\x78\x6d\x6b\x35','\x6a\x74\x42\x64\x53\x43\x6b\x4e\x78\x43\x6f\x43\x7a\x43\x6f\x55','\x6e\x32\x33\x64\x4f\x68\x48\x7a\x76\x6d\x6f\x65\x73\x47','\x67\x4c\x79\x69\x57\x51\x69\x78','\x57\x4f\x64\x64\x4c\x38\x6f\x47\x63\x43\x6f\x34\x46\x59\x6c\x64\x4b\x47','\x43\x6d\x6f\x76\x57\x52\x58\x74\x76\x61','\x57\x51\x50\x72\x61\x49\x6e\x62','\x57\x34\x76\x50\x57\x50\x33\x64\x55\x47\x69','\x75\x43\x6b\x65\x75\x38\x6f\x7a\x57\x4f\x72\x7a\x57\x36\x43\x6a','\x57\x37\x65\x6b\x57\x37\x4b\x38\x57\x51\x47\x64\x57\x36\x74\x63\x50\x57','\x65\x32\x66\x47\x57\x37\x4f\x41\x57\x52\x78\x63\x51\x6d\x6b\x61','\x57\x52\x48\x57\x57\x34\x50\x73\x46\x61','\x57\x34\x72\x65\x6b\x4d\x61','\x44\x64\x5a\x63\x56\x49\x75\x41\x63\x43\x6b\x7a\x78\x53\x6b\x59\x57\x50\x64\x64\x4c\x62\x38\x62','\x6f\x76\x6a\x45\x57\x4f\x52\x64\x4d\x38\x6f\x50\x73\x68\x4f','\x57\x35\x5a\x64\x52\x49\x6d\x4b\x57\x4f\x38','\x57\x4f\x68\x63\x53\x6d\x6f\x47\x57\x37\x52\x64\x56\x53\x6b\x59\x76\x38\x6b\x56\x57\x4f\x7a\x65\x70\x6d\x6f\x61\x72\x47','\x79\x43\x6f\x32\x42\x32\x33\x64\x55\x61','\x57\x52\x6a\x59\x57\x37\x64\x64\x4e\x49\x56\x64\x55\x53\x6b\x51\x41\x38\x6b\x6b\x66\x6d\x6b\x30\x79\x47','\x44\x68\x76\x45\x57\x4f\x48\x51','\x6f\x77\x48\x69\x57\x4f\x42\x64\x49\x38\x6f\x54\x79\x4e\x75','\x41\x68\x52\x63\x52\x53\x6f\x47','\x43\x53\x6f\x61\x57\x37\x74\x63\x4b\x6d\x6f\x33\x6a\x71','\x72\x64\x7a\x57\x74\x64\x42\x64\x56\x5a\x6a\x39','\x57\x52\x39\x6e\x6e\x62\x6a\x30\x57\x4f\x75\x32\x57\x4f\x30','\x57\x35\x74\x64\x49\x62\x71\x6c\x57\x51\x79','\x57\x51\x56\x63\x47\x33\x47\x62\x57\x52\x37\x64\x56\x43\x6f\x64\x57\x34\x6d','\x68\x76\x33\x63\x53\x43\x6f\x64\x71\x78\x2f\x64\x4b\x53\x6b\x55','\x57\x50\x6c\x63\x4f\x64\x54\x79\x57\x52\x47\x77\x75\x43\x6b\x67','\x6b\x4e\x33\x63\x4c\x6d\x6f\x31\x45\x30\x33\x64\x4d\x43\x6b\x6a','\x44\x61\x54\x36\x57\x34\x78\x64\x4a\x71','\x46\x6d\x6b\x5a\x6e\x65\x54\x69','\x57\x35\x33\x64\x50\x6d\x6b\x53\x57\x4f\x4e\x63\x56\x71','\x78\x6d\x6b\x38\x57\x37\x35\x44\x57\x37\x61\x4e\x64\x74\x4b','\x6a\x57\x5a\x64\x4f\x43\x6b\x48\x75\x38\x6f\x49\x7a\x43\x6f\x58','\x6b\x67\x33\x63\x51\x48\x69','\x42\x6d\x6f\x4a\x57\x34\x33\x63\x52\x43\x6f\x76','\x76\x58\x34\x46\x42\x6d\x6f\x50\x57\x4f\x37\x64\x50\x61','\x57\x36\x78\x64\x50\x75\x57\x63\x57\x37\x58\x75\x68\x38\x6f\x62','\x57\x35\x4c\x30\x68\x53\x6b\x38\x73\x61','\x6d\x73\x2f\x63\x4e\x43\x6b\x53\x6a\x4e\x6a\x33','\x77\x30\x74\x63\x4c\x53\x6b\x33\x76\x38\x6b\x56\x6d\x6d\x6b\x5a','\x6a\x68\x4a\x64\x4d\x77\x4c\x65\x77\x53\x6f\x70\x72\x57','\x78\x43\x6b\x72\x42\x43\x6f\x45\x57\x50\x35\x61\x57\x36\x43\x64','\x75\x72\x38\x66\x42\x43\x6f\x30\x57\x50\x4e\x64\x4f\x4c\x43','\x64\x6d\x6b\x43\x76\x77\x2f\x64\x50\x71','\x57\x51\x35\x67\x6f\x61\x50\x56\x57\x4f\x69\x39','\x57\x52\x33\x63\x53\x32\x38\x64\x57\x52\x53','\x57\x35\x68\x64\x54\x53\x6b\x54\x57\x51\x6c\x63\x50\x38\x6f\x48\x66\x38\x6b\x6a','\x42\x38\x6b\x35\x57\x52\x70\x64\x4f\x38\x6f\x61\x78\x43\x6f\x7a\x57\x4f\x75','\x57\x36\x56\x64\x53\x6d\x6b\x51\x57\x51\x2f\x63\x4c\x43\x6f\x57\x62\x53\x6b\x45','\x57\x37\x68\x63\x50\x53\x6b\x72\x57\x36\x5a\x63\x53\x61','\x57\x51\x6a\x70\x62\x48\x6a\x4a','\x57\x35\x58\x55\x6e\x53\x6b\x57\x76\x43\x6f\x63\x61\x78\x6d','\x57\x50\x53\x63\x43\x57','\x43\x38\x6f\x75\x57\x37\x37\x64\x4d\x43\x6f\x44','\x57\x52\x56\x63\x4a\x33\x53\x42\x57\x52\x52\x64\x51\x47','\x78\x62\x72\x62\x45\x71\x4b','\x67\x78\x56\x63\x51\x38\x6f\x7a\x43\x57','\x64\x67\x31\x67\x57\x52\x56\x64\x50\x61','\x57\x37\x78\x64\x4d\x74\x69\x48\x57\x52\x69','\x61\x53\x6b\x35\x73\x68\x2f\x64\x50\x57','\x6f\x61\x46\x64\x4c\x53\x6b\x57\x64\x38\x6b\x6c\x42\x49\x47','\x41\x43\x6b\x71\x64\x32\x4c\x32','\x6a\x43\x6b\x51\x78\x61\x65\x2b\x57\x52\x47\x73\x63\x57','\x57\x52\x39\x42\x66\x57\x39\x4c\x57\x4f\x30\x30\x57\x52\x75','\x57\x34\x44\x38\x66\x6d\x6b\x57\x74\x53\x6f\x79','\x43\x72\x46\x64\x4c\x31\x4c\x76','\x77\x6d\x6b\x65\x71\x6d\x6f\x64\x57\x4f\x44\x6f\x57\x35\x30\x70','\x6c\x6d\x6b\x4b\x74\x71\x57\x52\x57\x51\x6d\x43\x70\x47','\x78\x76\x37\x63\x51\x6d\x6b\x36\x77\x6d\x6b\x52\x6f\x53\x6b\x6c','\x77\x6d\x6f\x48\x57\x4f\x4e\x63\x55\x6d\x6f\x59\x57\x36\x4e\x63\x4d\x53\x6f\x55','\x62\x68\x53\x55\x57\x4f\x53\x53','\x57\x36\x2f\x63\x55\x38\x6f\x34\x46\x4c\x61','\x45\x6d\x6f\x6b\x57\x50\x4a\x64\x55\x49\x75','\x57\x51\x54\x34\x57\x36\x4c\x69\x73\x57','\x74\x73\x35\x6d\x57\x37\x61','\x67\x4d\x37\x64\x54\x68\x58\x69\x72\x43\x6f\x64\x72\x47','\x74\x65\x70\x63\x4e\x6d\x6b\x38\x78\x53\x6b\x35\x63\x38\x6b\x46','\x57\x50\x35\x36\x57\x37\x72\x55\x73\x4c\x6d\x32\x44\x47','\x7a\x48\x35\x44\x72\x47\x43','\x57\x36\x58\x45\x57\x50\x46\x64\x53\x58\x76\x78\x57\x34\x64\x64\x55\x47','\x43\x4a\x72\x67\x57\x35\x4e\x64\x49\x61','\x78\x38\x6b\x52\x57\x35\x76\x44\x57\x37\x61\x74\x65\x64\x38','\x57\x50\x68\x64\x4c\x53\x6f\x68\x64\x38\x6f\x4c\x7a\x4a\x78\x64\x4f\x71','\x6f\x65\x46\x63\x4e\x53\x6f\x36\x43\x57','\x68\x53\x6f\x76\x46\x64\x61\x4f\x57\x35\x37\x64\x4b\x4e\x76\x70\x63\x57\x2f\x64\x4f\x71','\x44\x38\x6f\x78\x57\x4f\x6c\x63\x4a\x53\x6f\x79','\x70\x32\x74\x63\x4d\x53\x6f\x30','\x57\x37\x72\x72\x69\x53\x6b\x44\x76\x71','\x57\x50\x35\x7a\x57\x37\x7a\x4b\x43\x61','\x44\x73\x6a\x65\x78\x4a\x34','\x57\x36\x33\x63\x50\x38\x6b\x73\x57\x35\x64\x63\x51\x57','\x57\x51\x43\x50\x64\x43\x6f\x30\x62\x6d\x6f\x2f','\x73\x61\x2f\x63\x47\x53\x6b\x6d\x57\x34\x4e\x64\x4b\x6d\x6f\x31\x77\x6d\x6b\x44\x75\x48\x4e\x64\x55\x31\x65','\x69\x38\x6b\x54\x76\x68\x4e\x64\x52\x71','\x78\x43\x6b\x67\x76\x38\x6f\x31\x57\x4f\x76\x65\x57\x36\x4b\x69','\x45\x53\x6f\x37\x57\x37\x37\x64\x53\x43\x6f\x6a\x6d\x4a\x4e\x64\x4a\x71','\x75\x6d\x6b\x56\x57\x35\x72\x38\x57\x36\x38','\x78\x6d\x6f\x32\x57\x51\x6c\x63\x4f\x53\x6f\x2b\x57\x37\x37\x63\x49\x38\x6f\x56','\x57\x35\x64\x63\x4d\x43\x6f\x33\x7a\x76\x30','\x66\x31\x2f\x64\x4d\x43\x6f\x6d\x57\x51\x6c\x63\x47\x38\x6b\x5a\x73\x47','\x57\x50\x48\x59\x69\x49\x76\x7a\x57\x52\x4f\x44\x57\x52\x47','\x76\x43\x6f\x53\x57\x52\x4a\x63\x52\x53\x6f\x47','\x6b\x38\x6b\x6d\x64\x4a\x64\x63\x47\x43\x6f\x7a\x75\x53\x6b\x4f','\x6e\x65\x37\x64\x4b\x38\x6f\x72\x57\x50\x4f','\x69\x43\x6b\x53\x76\x78\x2f\x64\x48\x61','\x74\x38\x6b\x72\x57\x4f\x52\x64\x48\x61','\x75\x43\x6f\x33\x57\x36\x6e\x6e','\x44\x38\x6f\x6e\x57\x52\x4a\x64\x4d\x5a\x6d','\x57\x35\x4a\x63\x56\x6d\x6f\x4c\x46\x38\x6b\x67\x6e\x38\x6f\x44\x43\x61','\x64\x31\x71\x4f\x57\x51\x4b\x4d\x64\x43\x6b\x57\x70\x57','\x78\x58\x4b\x66','\x73\x6d\x6b\x7a\x68\x65\x62\x74','\x57\x36\x61\x53\x57\x51\x33\x63\x49\x61','\x6b\x68\x70\x63\x54\x43\x6f\x74\x7a\x71','\x74\x5a\x6e\x64','\x6d\x38\x6b\x62\x75\x78\x61','\x73\x53\x6b\x7a\x57\x34\x50\x4e\x57\x37\x6d','\x57\x51\x44\x4d\x65\x43\x6f\x55\x62\x43\x6f\x32\x57\x50\x7a\x52','\x64\x4c\x78\x64\x47\x53\x6f\x72\x57\x50\x4b','\x6a\x47\x5a\x64\x54\x53\x6b\x4c\x71\x38\x6f\x51\x46\x53\x6f\x36','\x67\x33\x6e\x53','\x57\x36\x66\x63\x57\x51\x42\x64\x50\x72\x6a\x72','\x57\x37\x30\x6a\x57\x37\x6d\x6b\x57\x51\x71\x66','\x69\x53\x6b\x63\x67\x53\x6b\x6b\x57\x34\x53','\x57\x34\x66\x4b\x61\x6d\x6b\x38','\x75\x43\x6b\x45\x57\x50\x2f\x64\x55\x38\x6f\x6b','\x57\x4f\x78\x63\x53\x43\x6f\x48\x57\x37\x70\x64\x55\x38\x6b\x34\x75\x6d\x6b\x42\x57\x52\x6e\x68\x69\x38\x6f\x56\x77\x57','\x6c\x4b\x44\x6a\x57\x4f\x64\x64\x53\x53\x6f\x36\x43\x4d\x53','\x75\x6d\x6f\x37\x57\x52\x37\x64\x4c\x57\x75','\x6f\x38\x6f\x33\x72\x31\x4e\x64\x49\x38\x6b\x51\x64\x61','\x57\x36\x4e\x63\x48\x6d\x6b\x5a\x57\x34\x2f\x63\x4d\x64\x64\x64\x4e\x53\x6b\x4f','\x57\x36\x43\x38\x57\x35\x34\x6b\x57\x4f\x4b','\x64\x67\x68\x63\x50\x38\x6f\x61\x75\x57','\x57\x50\x53\x63\x41\x49\x65\x6f\x57\x37\x4f\x55\x57\x50\x61','\x44\x33\x70\x64\x47\x38\x6f\x2b\x79\x73\x30\x57\x57\x50\x4f\x57\x57\x52\x78\x63\x49\x47\x37\x64\x52\x57','\x73\x4b\x70\x63\x47\x53\x6b\x33\x76\x61','\x74\x68\x2f\x63\x4c\x53\x6b\x56\x76\x43\x6b\x55','\x74\x43\x6f\x2f\x57\x37\x52\x64\x53\x43\x6f\x72\x6d\x62\x75','\x7a\x53\x6f\x58\x57\x35\x6a\x30\x69\x57','\x57\x52\x42\x64\x51\x5a\x37\x63\x4f\x72\x33\x64\x48\x38\x6f\x2b\x64\x47','\x6d\x77\x46\x64\x52\x78\x48\x66\x71\x53\x6f\x31\x77\x47','\x62\x32\x31\x31\x57\x52\x70\x64\x4c\x57','\x72\x57\x6d\x70\x74\x43\x6f\x48\x57\x50\x33\x64\x53\x4c\x61','\x57\x35\x5a\x64\x47\x6d\x6b\x33\x57\x50\x52\x63\x4b\x47','\x45\x4c\x2f\x63\x4c\x6d\x6f\x4a\x76\x53\x6f\x4b\x6c\x47\x42\x63\x49\x43\x6f\x4c\x43\x47\x4e\x64\x4e\x61','\x6a\x6d\x6b\x2f\x67\x6d\x6b\x55\x57\x37\x4f\x72\x57\x36\x78\x64\x55\x61','\x57\x37\x57\x77\x57\x34\x47\x2f\x57\x52\x71\x66','\x43\x47\x46\x64\x54\x75\x35\x46','\x57\x36\x4e\x64\x52\x78\x53\x56\x57\x35\x38','\x57\x34\x74\x63\x47\x38\x6b\x35\x57\x34\x2f\x63\x48\x64\x68\x64\x4c\x43\x6b\x56','\x57\x52\x7a\x4d\x66\x6d\x6f\x55\x67\x61','\x57\x52\x4a\x63\x4f\x6d\x6f\x56\x57\x4f\x70\x63\x49\x61','\x75\x43\x6f\x37\x57\x34\x37\x64\x49\x43\x6f\x36','\x73\x62\x6c\x64\x4f\x31\x50\x48','\x45\x6d\x6f\x6b\x57\x51\x46\x63\x4e\x6d\x6f\x4e','\x6a\x73\x33\x63\x4b\x43\x6b\x6c\x6c\x57','\x6c\x31\x2f\x63\x51\x53\x6f\x48\x77\x71','\x57\x35\x52\x64\x4d\x38\x6b\x46\x57\x34\x4a\x64\x4d\x53\x6f\x43\x57\x50\x33\x63\x4f\x38\x6b\x37\x66\x76\x37\x63\x56\x59\x71','\x57\x37\x38\x65\x57\x36\x38','\x57\x50\x34\x30\x77\x38\x6f\x39','\x71\x59\x58\x69\x57\x37\x47','\x57\x36\x30\x74\x57\x52\x70\x63\x52\x30\x4f','\x79\x6d\x6f\x66\x72\x78\x42\x64\x4a\x38\x6b\x4a\x67\x6d\x6f\x33','\x57\x37\x34\x36\x57\x52\x74\x63\x4a\x33\x64\x63\x51\x38\x6b\x49\x43\x71','\x57\x52\x66\x4a\x6f\x6d\x6f\x52\x61\x53\x6f\x2f\x57\x4f\x61','\x6a\x6d\x6b\x77\x64\x53\x6b\x48\x57\x37\x47\x4e\x57\x37\x2f\x64\x53\x61','\x71\x59\x43\x54\x57\x51\x6a\x64\x57\x36\x42\x64\x51\x6d\x6b\x4d\x72\x43\x6b\x7a\x74\x47\x52\x64\x56\x61','\x6b\x61\x33\x64\x4b\x6d\x6b\x34\x66\x43\x6b\x58\x72\x73\x75','\x45\x38\x6f\x78\x57\x35\x52\x64\x53\x43\x6f\x6f','\x79\x77\x44\x55','\x78\x43\x6b\x6c\x57\x4f\x64\x64\x54\x43\x6f\x36\x44\x43\x6f\x48\x57\x52\x38','\x66\x78\x6c\x64\x52\x43\x6f\x4d\x57\x4f\x47'];_0x37c2=function(){return _0x470953;};return _0x37c2();}function _0x5df644(_0x197de8){const _0x1ed145=_0x45258c,_0x498761={'\x6c\x54\x4b\x51\x4e':_0x1ed145(0xd0,'\x71\x36\x2a\x5d')+_0x1ed145(0x155,'\x6c\x4a\x70\x74'),'\x6a\x47\x44\x46\x5a':function(_0x5228e5,_0x2556ca){return _0x5228e5!==_0x2556ca;},'\x6d\x4a\x72\x41\x62':function(_0x56e2c8,_0x3a63e7){return _0x56e2c8(_0x3a63e7);},'\x53\x65\x68\x59\x4c':_0x1ed145(0xf3,'\x40\x74\x44\x43'),'\x6d\x46\x58\x4f\x41':function(_0x5c9a75,_0x4aa21f){return _0x5c9a75===_0x4aa21f;},'\x58\x4f\x7a\x75\x62':function(_0x1361c9,_0x3eae03){return _0x1361c9*_0x3eae03;}};let _0x43fba9=-0x16*0x1af+-0x1b6+0x1*0x26c0,_0x2bfa5e=-0x23c2+0x7a8+-0x16*-0x147;for(const _0x5f0010 of _0x197de8||[]){let _0xe3d153;if(_0x498761[_0x1ed145(0xed,'\x4d\x4d\x62\x48')](_0x5f0010['\x74\x6f\x6b\x65\x6e\x73\x45\x73'+_0x1ed145(0x13e,'\x5a\x29\x75\x67')],undefined)&&_0x498761[_0x1ed145(0xcd,'\x50\x4d\x52\x44')](_0x5f0010[_0x1ed145(0xd1,'\x5e\x23\x73\x79')+'\x74\x53\x61\x76\x65\x64'],null))_0xe3d153=_0x498761[_0x1ed145(0xfc,'\x58\x25\x44\x6e')](_0x1462a9,_0x5f0010[_0x1ed145(0x13b,'\x46\x68\x37\x68')+_0x1ed145(0xec,'\x66\x6b\x51\x7a')]);else{if(_0x498761[_0x1ed145(0xe7,'\x53\x48\x5a\x2a')](_0x1ed145(0x10f,'\x4d\x4d\x62\x48'),_0x498761[_0x1ed145(0x14a,'\x71\x36\x2a\x5d')]))return _0x11a188[_0x1ed145(0xcc,'\x26\x55\x36\x38')]()[_0x1ed145(0xca,'\x4e\x7a\x42\x57')](_0x1ed145(0x178,'\x58\x25\x44\x6e')+_0x1ed145(0xc9,'\x34\x42\x4b\x43'))[_0x1ed145(0x122,'\x62\x6b\x57\x43')]()[_0x1ed145(0x105,'\x49\x35\x57\x68')+_0x1ed145(0xea,'\x46\x68\x37\x68')](_0xf72d79)[_0x1ed145(0x164,'\x73\x67\x62\x35')](IKaVxI[_0x1ed145(0xe1,'\x76\x56\x4b\x78')]);else{const _0x2824e8=_0x13bd2b['\x65\x6e\x74\x72\x6f\x70\x79\x5f'+_0x1ed145(0x147,'\x37\x42\x38\x63')+_0x1ed145(0x119,'\x37\x44\x66\x63')][_0x5f0010[_0x1ed145(0x132,'\x6c\x4a\x70\x74')]];if(_0x498761[_0x1ed145(0xd8,'\x4e\x7a\x42\x57')](_0x2824e8,undefined))continue;_0xe3d153=_0x2824e8;}}const _0x258592=_0x498761[_0x1ed145(0xeb,'\x47\x51\x65\x79')](_0x1462a9,_0x5f0010['\x63\x6f\x75\x6e\x74']!=null?_0x5f0010['\x63\x6f\x75\x6e\x74']:0x64d+-0xaac+0x460);_0x43fba9+=_0x498761[_0x1ed145(0x16e,'\x47\x40\x72\x40')](_0xe3d153,_0x258592),_0x2bfa5e+=_0x258592;}const _0x564874={};return _0x564874[_0x1ed145(0xf2,'\x6e\x76\x5d\x53')+'\x6b\x65\x6e\x73\x5f\x73\x61\x76'+'\x65\x64']=_0x43fba9,_0x564874[_0x1ed145(0x16d,'\x73\x67\x62\x35')+_0x1ed145(0x120,'\x68\x6e\x6f\x56')]=_0x2bfa5e,_0x564874;}function _0x5e9c45(_0x4075bf){const _0x43bcb7=_0x45258c,_0x3fae4b={'\x59\x54\x71\x4c\x41':function(_0x411ce5,_0x339ad7){return _0x411ce5(_0x339ad7);}};let _0x9c19f1=0xa2*0x12+0xd8a+-0x18ee;for(const [_0x1d8a57,_0x3c0f42]of Object['\x65\x6e\x74\x72\x69\x65\x73'](_0x4075bf||{})){const _0x2fff50=_0x13bd2b[_0x43bcb7(0x17d,'\x34\x42\x4b\x43')+_0x43bcb7(0xf9,'\x75\x6a\x53\x23')+_0x43bcb7(0x148,'\x31\x4a\x74\x7a')][_0x1d8a57];_0x9c19f1+=(_0x2fff50===undefined?-0x9be*0x1+-0x242d+0x92f*0x5:_0x2fff50)*_0x3fae4b['\x59\x54\x71\x4c\x41'](_0x1462a9,_0x3c0f42);}return _0x9c19f1;}function _0x4026(_0x401cea,_0x4a3e38){_0x401cea=_0x401cea-(-0x167*-0x3+-0x116c+0xa*0x166);const _0x29607e=_0x37c2();let _0x1daaea=_0x29607e[_0x401cea];if(_0x4026['\x6c\x6c\x55\x57\x51\x4d']===undefined){var _0x192ad8=function(_0x2af68f){const _0x1c4556='\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 _0x4bdeed='',_0x3360de='',_0x7adc56=_0x4bdeed+_0x192ad8,_0x4140b5=(''+function(){return-0x504*-0x4+0x1208+-0x2618;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x1dc4+0x3b5+-0x2178);for(let _0x3c8386=0x19ef+-0x21ee+0x7ff,_0x390641,_0x29ac7,_0x508d19=-0x11a7+-0x10a6*0x1+-0x224d*-0x1;_0x29ac7=_0x2af68f['\x63\x68\x61\x72\x41\x74'](_0x508d19++);~_0x29ac7&&(_0x390641=_0x3c8386%(0x67b+-0x128+-0x54f)?_0x390641*(-0xed4+-0xfe3*0x1+0x1*0x1ef7)+_0x29ac7:_0x29ac7,_0x3c8386++%(0x788+-0x7*-0xd1+-0xd3b))?_0x4bdeed+=_0x4140b5||_0x7adc56['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x508d19+(0x14f5*0x1+0x1787*0x1+-0x2c72))-(-0x1a7a*-0x1+0x1e8d*0x1+-0x12ff*0x3)!==0x6*0x20b+-0x1*-0x1b1f+0x2761*-0x1?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x6*-0x173+0x8*-0x499+0x2e79&_0x390641>>(-(-0x67*-0x4d+0x246b+-0x4364)*_0x3c8386&0x5*-0x205+0x7ba*0x3+0xd0f*-0x1)):_0x3c8386:0x79*-0x1a+0x12d7+-0x3*0x22f){_0x29ac7=_0x1c4556['\x69\x6e\x64\x65\x78\x4f\x66'](_0x29ac7);}for(let _0xca0ae1=-0xeec+-0x1*0x1655+0x2541,_0x4b3792=_0x4bdeed['\x6c\x65\x6e\x67\x74\x68'];_0xca0ae1<_0x4b3792;_0xca0ae1++){_0x3360de+='\x25'+('\x30\x30'+_0x4bdeed['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xca0ae1)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x3ec*0x2+-0x1*-0x1786+-0xf9e*0x1))['\x73\x6c\x69\x63\x65'](-(-0x1*-0x3f+0x107c+-0x10b9));}return decodeURIComponent(_0x3360de);};const _0x2be2ca=function(_0x2960d1,_0x3fa080){let _0x5c99b8=[],_0x5444ab=0x2225+0x8*-0x12b+-0x18cd,_0x3bb6ea,_0x1f9ab5='';_0x2960d1=_0x192ad8(_0x2960d1);let _0x5084a1;for(_0x5084a1=-0x7f4+0xa*-0x2a2+-0x892*-0x4;_0x5084a1<0xbdc*0x2+-0x26b*0x2+-0x11e2;_0x5084a1++){_0x5c99b8[_0x5084a1]=_0x5084a1;}for(_0x5084a1=0xeea+0x2ad+-0x1197;_0x5084a1<0x721+-0xd*-0xc0+0x1*-0xfe1;_0x5084a1++){_0x5444ab=(_0x5444ab+_0x5c99b8[_0x5084a1]+_0x3fa080['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5084a1%_0x3fa080['\x6c\x65\x6e\x67\x74\x68']))%(-0xf*-0x11b+0x1a3b+-0x29d0),_0x3bb6ea=_0x5c99b8[_0x5084a1],_0x5c99b8[_0x5084a1]=_0x5c99b8[_0x5444ab],_0x5c99b8[_0x5444ab]=_0x3bb6ea;}_0x5084a1=-0xb9d+0x4d*0x49+-0xa58,_0x5444ab=0x1*-0x260d+-0x26d1+-0x4cde*-0x1;for(let _0x220ab2=0x10f*-0x13+0xb3d+0x8e0;_0x220ab2<_0x2960d1['\x6c\x65\x6e\x67\x74\x68'];_0x220ab2++){_0x5084a1=(_0x5084a1+(-0x7*-0x295+0x5*0x82+-0x149c))%(0x158f+-0xb9d+-0x8f2),_0x5444ab=(_0x5444ab+_0x5c99b8[_0x5084a1])%(-0x2653*-0x1+0x1*-0x23ad+-0x1a6),_0x3bb6ea=_0x5c99b8[_0x5084a1],_0x5c99b8[_0x5084a1]=_0x5c99b8[_0x5444ab],_0x5c99b8[_0x5444ab]=_0x3bb6ea,_0x1f9ab5+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x2960d1['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x220ab2)^_0x5c99b8[(_0x5c99b8[_0x5084a1]+_0x5c99b8[_0x5444ab])%(0x14a4+0x5*-0x3ba+-0x102*0x1)]);}return _0x1f9ab5;};_0x4026['\x67\x69\x58\x51\x59\x72']=_0x2be2ca,_0x4026['\x56\x4b\x64\x6e\x55\x4e']={},_0x4026['\x6c\x6c\x55\x57\x51\x4d']=!![];}const _0x4282bd=_0x29607e[0x75c+-0x24a3+0x1d47*0x1],_0xfc8cb7=_0x401cea+_0x4282bd,_0x2911b2=_0x4026['\x56\x4b\x64\x6e\x55\x4e'][_0xfc8cb7];if(!_0x2911b2){if(_0x4026['\x70\x68\x4f\x4c\x6a\x6f']===undefined){const _0x5b8733=function(_0x4c7c71){this['\x73\x76\x6b\x6f\x7a\x4d']=_0x4c7c71,this['\x59\x78\x6a\x57\x75\x49']=[0x256a+0x1712+-0xd*0x4a7,0x1111+-0x1ab9*0x1+0x9a8,-0x20df+-0x1*0x1a87+-0x3b66*-0x1],this['\x65\x6b\x63\x6b\x4e\x64']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x4c\x4f\x6d\x45\x45\x58']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x64\x51\x64\x76\x47\x4a']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x5b8733['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x52\x41\x67\x44\x53\x61']=function(){const _0x397a8c=new RegExp(this['\x4c\x4f\x6d\x45\x45\x58']+this['\x64\x51\x64\x76\x47\x4a']),_0x1606a6=_0x397a8c['\x74\x65\x73\x74'](this['\x65\x6b\x63\x6b\x4e\x64']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x59\x78\x6a\x57\x75\x49'][-0x3b*0x3b+0x1*0x18d7+-0xb3d]:--this['\x59\x78\x6a\x57\x75\x49'][0x10b6+0x5*0x5cf+0xdd*-0x35];return this['\x6d\x55\x7a\x51\x6b\x69'](_0x1606a6);},_0x5b8733['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x6d\x55\x7a\x51\x6b\x69']=function(_0x13a86){if(!Boolean(~_0x13a86))return _0x13a86;return this['\x73\x57\x4b\x4a\x43\x59'](this['\x73\x76\x6b\x6f\x7a\x4d']);},_0x5b8733['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x73\x57\x4b\x4a\x43\x59']=function(_0x4f5fa5){for(let _0xa60f1c=0x469+0x58a*0x2+-0xf7d,_0x50ffc3=this['\x59\x78\x6a\x57\x75\x49']['\x6c\x65\x6e\x67\x74\x68'];_0xa60f1c<_0x50ffc3;_0xa60f1c++){this['\x59\x78\x6a\x57\x75\x49']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x50ffc3=this['\x59\x78\x6a\x57\x75\x49']['\x6c\x65\x6e\x67\x74\x68'];}return _0x4f5fa5(this['\x59\x78\x6a\x57\x75\x49'][0x17*0xbf+-0x1468+0x33f]);},(''+function(){return-0x1247+-0x1daf+0xe*0x36d;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(-0x63b+0xfa6+0x1e2*-0x5)&&new _0x5b8733(_0x4026)['\x52\x41\x67\x44\x53\x61'](),_0x4026['\x70\x68\x4f\x4c\x6a\x6f']=!![];}_0x1daaea=_0x4026['\x67\x69\x58\x51\x59\x72'](_0x1daaea,_0x4a3e38),_0x4026['\x56\x4b\x64\x6e\x55\x4e'][_0xfc8cb7]=_0x1daaea;}else _0x1daaea=_0x2911b2;return _0x1daaea;}function _0x15217d(_0x20f0e8,_0x30edce){const _0x277ebd=_0x45258c,_0x58e8e7={'\x4a\x42\x62\x73\x4a':function(_0x2ac4b6,_0x2463fc){return _0x2ac4b6(_0x2463fc);},'\x50\x4d\x58\x79\x54':function(_0x2a22d4,_0x306789){return _0x2a22d4>_0x306789;},'\x68\x45\x6e\x51\x58':_0x277ebd(0x17b,'\x31\x4a\x74\x7a')+_0x277ebd(0xce,'\x66\x6b\x51\x7a')+'\x72\x61\x64\x69\x75\x73','\x78\x73\x48\x45\x6d':_0x277ebd(0xe4,'\x56\x71\x46\x26')+_0x277ebd(0xd6,'\x34\x42\x4b\x43')+'\x74','\x4a\x58\x64\x7a\x63':function(_0x481977,_0x1fab0a){return _0x481977+_0x1fab0a;},'\x6e\x65\x66\x65\x73':function(_0x2d3d6b,_0x4390fa){return _0x2d3d6b*_0x4390fa;},'\x48\x54\x6a\x70\x6e':function(_0x12356d,_0x218b00){return _0x12356d===_0x218b00;},'\x41\x64\x4b\x41\x6f':_0x277ebd(0x177,'\x56\x5d\x78\x74')+'\x65'},_0x4ac912=_0x13bd2b[_0x277ebd(0xcb,'\x4d\x4d\x62\x48')+_0x277ebd(0xdc,'\x33\x50\x64\x65')],_0x41e07a=_0x58e8e7[_0x277ebd(0x179,'\x32\x71\x5d\x4f')](Number,_0x20f0e8),_0x220866=Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x41e07a)&&_0x58e8e7[_0x277ebd(0x104,'\x4d\x4d\x62\x48')](_0x41e07a,-0x190c+-0x2594+0x14e*0x30),_0x3cf15e=_0x220866?_0x58e8e7[_0x277ebd(0x145,'\x56\x71\x46\x26')]:_0x58e8e7[_0x277ebd(0xc7,'\x43\x77\x4a\x77')],_0x1f2269=_0x220866?_0x41e07a:_0x4ac912[_0x277ebd(0x159,'\x5e\x28\x69\x47')+'\x63\x68\x61\x6e\x67\x65\x64\x5f'+_0x277ebd(0x11b,'\x50\x53\x5e\x7a')],_0x501557=Math[_0x277ebd(0x128,'\x4a\x65\x71\x36')](_0x58e8e7[_0x277ebd(0x183,'\x49\x35\x57\x68')](_0x4ac912[_0x277ebd(0xf8,'\x53\x6b\x63\x6c')+_0x277ebd(0x160,'\x54\x44\x4d\x6f')+'\x6e\x73'],_0x58e8e7[_0x277ebd(0x171,'\x75\x68\x42\x75')](_0x1f2269,_0x4ac912[_0x277ebd(0x103,'\x75\x68\x42\x75')+_0x277ebd(0xd5,'\x77\x4c\x41\x25')+_0x277ebd(0x15a,'\x73\x67\x62\x35')])),_0x4ac912[_0x277ebd(0x18a,'\x72\x55\x51\x30')+_0x277ebd(0xdf,'\x53\x6b\x63\x6c')+'\x73']),_0x242f0c=Math[_0x277ebd(0xe3,'\x66\x6b\x51\x7a')](_0x58e8e7[_0x277ebd(0x175,'\x73\x67\x62\x35')](_0x30edce,_0x58e8e7[_0x277ebd(0x11e,'\x76\x56\x4b\x78')])?_0x501557*_0x4ac912[_0x277ebd(0x138,'\x53\x48\x5a\x2a')+_0x277ebd(0x12d,'\x34\x42\x4b\x43')+'\x5f\x66\x72\x61\x63\x74\x69\x6f'+'\x6e']:_0x501557),_0x401c58={};return _0x401c58[_0x277ebd(0x102,'\x5a\x29\x75\x67')+_0x277ebd(0x156,'\x4a\x65\x71\x36')]=_0x242f0c,_0x401c58[_0x277ebd(0x18b,'\x50\x4d\x52\x44')]=_0x3cf15e,_0x401c58;}function _0x21e3a7(_0x32a967,_0x1d059d){const _0xf9cbc3=_0x45258c,_0x204da0={'\x4d\x4d\x7a\x75\x69':function(_0x484fe8,_0x219ed8){return _0x484fe8(_0x219ed8);},'\x47\x49\x71\x4c\x4e':function(_0x3f7a67,_0x35a27f){return _0x3f7a67+_0x35a27f;},'\x52\x68\x45\x4a\x6a':function(_0x642003,_0x5561ad){return _0x642003*_0x5561ad;}},_0xa3d71c=_0x204da0['\x4d\x4d\x7a\x75\x69'](_0x1462a9,_0x32a967),_0x2e592a=_0x1462a9(_0x1d059d);return _0x204da0[_0xf9cbc3(0x151,'\x38\x46\x45\x57')](_0xa3d71c,_0x2e592a)>-0x2*-0x137b+-0x1*0xccf+-0x1a27?_0x204da0[_0xf9cbc3(0xfd,'\x47\x78\x44\x44')](_0x39397d,_0x204da0[_0xf9cbc3(0x140,'\x68\x6e\x6f\x56')](_0xa3d71c/(_0xa3d71c+_0x2e592a),-0x8a5*-0x1+0x1dbb+-0xb*0x374)):-0xa*-0x259+0x33*0x94+0x1a7b*-0x2;}function _0x20524f(_0x1d236f){const _0x4a0d64=_0x45258c,_0x5e1e3d={'\x50\x6e\x6b\x45\x4b':function(_0x1f0cb8,_0x41fbc2){return _0x1f0cb8(_0x41fbc2);},'\x65\x49\x56\x69\x71':function(_0x84f503,_0x22dd7b){return _0x84f503*_0x22dd7b;},'\x62\x71\x56\x41\x4c':function(_0x55b005,_0x8e4b02){return _0x55b005/_0x8e4b02;}};return _0x5e1e3d[_0x4a0d64(0x106,'\x4a\x65\x71\x36')](_0x39397d,_0x5e1e3d[_0x4a0d64(0x15e,'\x47\x51\x65\x79')](_0x5e1e3d[_0x4a0d64(0xf1,'\x76\x56\x4b\x78')](_0x5e1e3d[_0x4a0d64(0x181,'\x28\x43\x5d\x57')](_0x1462a9,_0x1d236f),-0x40b*0x243+-0x4c*-0x1af8+0x106581),_0x13bd2b['\x75\x73\x64\x5f\x70\x65\x72\x5f'+'\x6d\x5f\x74\x6f\x6b\x65\x6e\x73'+_0x4a0d64(0x14b,'\x53\x48\x5a\x2a')]));}function _0x4ea563(_0x29b9e7,_0x31d9e2){const _0x2d5658=_0x45258c,_0x12d0a0={'\x76\x61\x4a\x43\x70':function(_0x21f1ae,_0x57b85e){return _0x21f1ae*_0x57b85e;},'\x4f\x65\x42\x51\x45':function(_0x4b5a89,_0x571060){return _0x4b5a89/_0x571060;},'\x56\x4e\x45\x78\x66':function(_0x25e66a,_0x2a868e){return _0x25e66a(_0x2a868e);},'\x64\x75\x61\x4f\x65':function(_0x59662f,_0x1e6f2f){return _0x59662f===_0x1e6f2f;}},_0x1f8848=_0x13bd2b['\x63\x61\x63\x68\x65\x5f\x72\x65'+_0x2d5658(0xfb,'\x50\x53\x5e\x7a')+_0x2d5658(0xe6,'\x56\x71\x46\x26')+_0x2d5658(0xda,'\x71\x36\x2a\x5d')+'\x73'][_0x29b9e7];return _0x179e05(_0x12d0a0[_0x2d5658(0x127,'\x5e\x23\x73\x79')](_0x12d0a0[_0x2d5658(0x14e,'\x47\x51\x65\x79')](_0x12d0a0[_0x2d5658(0x14d,'\x76\x34\x44\x71')](_0x1462a9,_0x31d9e2),0x145ed7+-0xa*0x12d90+-0x57*-0x139f),_0x12d0a0[_0x2d5658(0xfe,'\x56\x61\x47\x47')](_0x1f8848,undefined)?0x212c+0x15df+0x4d*-0xb7:_0x1f8848));}const _0x51a8f3={};_0x51a8f3[_0x45258c(0xe5,'\x54\x44\x4d\x6f')+_0x45258c(0x11a,'\x26\x55\x36\x38')+_0x45258c(0x129,'\x76\x56\x4b\x78')]=_0x13bd2b[_0x45258c(0x135,'\x72\x55\x51\x30')+_0x45258c(0x11f,'\x54\x44\x4d\x6f')],_0x51a8f3[_0x45258c(0xcf,'\x5e\x23\x73\x79')+'\x53']=_0x13bd2b,_0x51a8f3[_0x45258c(0x184,'\x53\x6b\x63\x6c')+_0x45258c(0x13f,'\x47\x51\x65\x79')]=_0x2571ba,_0x51a8f3[_0x45258c(0x167,'\x56\x71\x46\x26')+_0x45258c(0x130,'\x31\x4a\x74\x7a')]=_0x3e4b90,_0x51a8f3[_0x45258c(0x108,'\x56\x5d\x78\x74')+_0x45258c(0x100,'\x4a\x65\x71\x36')]=_0x5df644,_0x51a8f3[_0x45258c(0x107,'\x77\x4c\x41\x25')+'\x67\x65\x45\x73\x74\x69\x6d\x61'+'\x74\x65']=_0x5e9c45,_0x51a8f3['\x72\x65\x75\x73\x65\x45\x73\x74'+_0x45258c(0xe8,'\x26\x55\x36\x38')]=_0x15217d,_0x51a8f3[_0x45258c(0xf4,'\x75\x6a\x53\x23')+'\x63\x74']=_0x21e3a7,_0x51a8f3[_0x45258c(0x144,'\x32\x71\x5d\x4f')]=_0x20524f,_0x51a8f3[_0x45258c(0x158,'\x24\x41\x4c\x73')+_0x45258c(0x165,'\x40\x74\x44\x43')]=_0x4ea563,module['\x65\x78\x70\x6f\x72\x74\x73']=_0x51a8f3;
1
+ 'use strict';
2
+
3
+ // savings-core -- token-savings formula, Node (CJS) implementation for evolver.
4
+ //
5
+ // Single source of truth: EvoMap/savings-core (spec v0.3.0). Constants come ONLY from the vendored
6
+ // conformance/savings-core/constants.json; formula semantics mirror savings-core's Node oracle
7
+ // (gen-vectors.mjs) and must reproduce conformance/savings-core/golden-vectors.json bit-for-bit --
8
+ // test/savingsCoreConformance.test.js is the gate, and savings-core's daily drift-check locks the
9
+ // vendored copies to upstream. To change a coefficient: change savings-core first, regenerate
10
+ // vectors there, bump spec_version, then re-vendor here AND in evomap-hub / evomap-private /
11
+ // evox-online-deck / evomap-desktop / evox.
12
+ //
13
+ // evolver's production path uses E3 via src/gep/tokenSavings.js (the estimator basis behind
14
+ // dispatch.js's measured > cost_index > estimator precedence); the rest of the set is here so this
15
+ // repo replays the full vector set like every other consumer.
16
+
17
+ const path = require('path');
18
+
19
+ const CONSTANTS = require(path.join(__dirname, '..', '..', 'conformance', 'savings-core', 'constants.json'));
20
+
21
+ const round2 = (x) => Math.round((x + Number.EPSILON) * 100) / 100;
22
+ const round4 = (x) => Math.round((x + Number.EPSILON) * 10000) / 10000;
23
+ const coerce = (x) => Math.max(0, Math.round(Number(x) || 0));
24
+
25
+ // R1 -- measured savings from a raw/optimized token pair (preferred basis).
26
+ function measuredSavings(rawTokens, optimizedTokens) {
27
+ const raw = coerce(rawTokens);
28
+ const optimized = coerce(optimizedTokens);
29
+ const saved = Math.max(0, raw - optimized);
30
+ const rate = raw > 0 ? Math.max(0, 1 - optimized / raw) : 0;
31
+ return { tokens_saved: saved, savings_pct: round2(rate * 100) };
32
+ }
33
+
34
+ // R2 -- rollout-folding rate.
35
+ function rolloutFoldPct(nAvgRollouts) {
36
+ const n = Number(nAvgRollouts) || 0;
37
+ return n >= 1 ? round2((1 - 1 / n) * 100) : 0;
38
+ }
39
+
40
+ // E1 -- aggregate estimated savings over entropy events (unknown types skipped).
41
+ function entropyTotal(events) {
42
+ let tokens = 0;
43
+ let count = 0;
44
+ for (const e of events || []) {
45
+ let per;
46
+ if (e.tokensEstSaved !== undefined && e.tokensEstSaved !== null) {
47
+ per = coerce(e.tokensEstSaved);
48
+ } else {
49
+ const coeff = CONSTANTS.entropy_event_tokens_est[e.type];
50
+ if (coeff === undefined) continue;
51
+ per = coeff;
52
+ }
53
+ const n = coerce(e.count != null ? e.count : 1);
54
+ tokens += per * n;
55
+ count += n;
56
+ }
57
+ return { total_tokens_saved: tokens, total_events: count };
58
+ }
59
+
60
+ // E2 -- node fetch-usage estimate; unknown asset types contribute 0.
61
+ function fetchUsageEstimate(byType) {
62
+ let sum = 0;
63
+ for (const [type, n] of Object.entries(byType || {})) {
64
+ const coeff = CONSTANTS.fetch_usage_tokens_est[type];
65
+ sum += (coeff === undefined ? 0 : coeff) * coerce(n);
66
+ }
67
+ return sum;
68
+ }
69
+
70
+ // E3 -- blast-radius reuse estimator (the `estimator` basis; production wrapper in tokenSavings.js).
71
+ // Calibration anchor: 120,000 + 75 x 800 = 180,000, the deprecated blanket.
72
+ function reuseEstimate(blastRadiusLines, mode) {
73
+ const E = CONSTANTS.reuse_estimator;
74
+ const n = Number(blastRadiusLines);
75
+ const valid = Number.isFinite(n) && n > 0;
76
+ const basis = valid ? 'estimated_blast_radius' : 'estimated_default';
77
+ const lines = valid ? n : E.typical_changed_lines;
78
+ const full = Math.min(E.derive_base_tokens + lines * E.tokens_per_changed_line, E.derive_cap_tokens);
79
+ const tokens = Math.round(mode === 'reference' ? full * E.reference_saving_fraction : full);
80
+ return { tokens_saved: tokens, basis };
81
+ }
82
+
83
+ // H1 -- search hit rate as a 2-dp percentage.
84
+ function hitRatePct(hits, misses) {
85
+ const h = coerce(hits);
86
+ const m = coerce(misses);
87
+ return h + m > 0 ? round2((h / (h + m)) * 100) : 0;
88
+ }
89
+
90
+ // U1 -- USD value of saved tokens at the blended rate.
91
+ function usdSaved(tokens) {
92
+ return round2((coerce(tokens) / 1_000_000) * CONSTANTS.usd_per_m_tokens_blended);
93
+ }
94
+
95
+ // C1 -- prompt-cache savings in USD (4 dp); unknown providers contribute 0.
96
+ function cacheSavedUsd(provider, cacheReadTokens) {
97
+ const rate = CONSTANTS.cache_read_saved_usd_per_m_tokens[provider];
98
+ return round4((coerce(cacheReadTokens) / 1_000_000) * (rate === undefined ? 0 : rate));
99
+ }
100
+
101
+ module.exports = {
102
+ SAVINGS_SPEC_VERSION: CONSTANTS.spec_version,
103
+ CONSTANTS,
104
+ measuredSavings,
105
+ rolloutFoldPct,
106
+ entropyTotal,
107
+ fetchUsageEstimate,
108
+ reuseEstimate,
109
+ hitRatePct,
110
+ usdSaved,
111
+ cacheSavedUsd,
112
+ };