@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.
- package/.cursor/BUGBOT.md +182 -0
- package/.env.example +68 -0
- package/.git-commit-guard-token +1 -0
- package/.github/CODEOWNERS +63 -0
- package/.github/ISSUE_TEMPLATE/good_first_issue.md +23 -0
- package/.github/pull_request_template.md +45 -0
- package/.github/workflows/test.yml +75 -0
- package/CHANGELOG.md +1367 -0
- package/README.ja-JP.md +1 -1
- package/README.ko-KR.md +1 -1
- package/README.md +90 -536
- package/README.public.md +578 -0
- package/README.zh-CN.md +1 -1
- package/SECURITY.md +108 -0
- package/assets/gep/events.jsonl +3 -0
- package/examples/atp-consumer-quickstart.md +100 -0
- package/examples/hello-world.md +38 -0
- package/index.js +5 -3
- package/package.json +6 -18
- package/proxy-package.json +39 -0
- package/public.manifest.json +145 -0
- package/src/adapters/scripts/evolver-session-end.js +18 -37
- package/src/atp/atpExecute.js +27 -71
- package/src/atp/serviceHelper.js +28 -36
- package/src/config.js +17 -0
- package/src/evolve/guards.js +721 -1
- package/src/evolve/pipeline/collect.js +1283 -1
- package/src/evolve/pipeline/dispatch.js +421 -1
- package/src/evolve/pipeline/enrich.js +440 -1
- package/src/evolve/pipeline/hub.js +319 -1
- package/src/evolve/pipeline/select.js +274 -1
- package/src/evolve/pipeline/signals.js +206 -1
- package/src/evolve/utils.js +264 -1
- package/src/evolve.js +350 -1
- package/src/gep/a2aProtocol.js +4463 -1
- package/src/gep/antiAbuseTelemetry.js +233 -1
- package/src/gep/autoDistillConv.js +205 -1
- package/src/gep/autoDistillLlm.js +315 -1
- package/src/gep/candidateEval.js +92 -1
- package/src/gep/candidates.js +198 -1
- package/src/gep/contentHash.js +30 -1
- package/src/gep/conversationDistiller.js +270 -0
- package/src/gep/conversationSniffer.js +266 -1
- package/src/gep/crypto.js +89 -1
- package/src/gep/curriculum.js +163 -1
- package/src/gep/deviceId.js +218 -1
- package/src/gep/envFingerprint.js +118 -1
- package/src/gep/epigenetics.js +31 -1
- package/src/gep/execBridge.js +712 -1
- package/src/gep/explore.js +289 -1
- package/src/gep/hash.js +15 -1
- package/src/gep/hubFetch.js +608 -1
- package/src/gep/hubReview.js +207 -1
- package/src/gep/hubSearch.js +526 -1
- package/src/gep/hubVerify.js +306 -1
- package/src/gep/learningSignals.js +89 -1
- package/src/gep/memoryGraph.js +1449 -1
- package/src/gep/memoryGraphAdapter.js +203 -1
- package/src/gep/mutation.js +203 -1
- package/src/gep/narrativeMemory.js +108 -1
- package/src/gep/oauthLogin.js +9 -3
- package/src/gep/openPRRegistry.js +205 -1
- package/src/gep/personality.js +423 -1
- package/src/gep/policyCheck.js +599 -1
- package/src/gep/privacyClient.js +10 -9
- package/src/gep/prompt.js +836 -1
- package/src/gep/questionGenerator.js +103 -0
- package/src/gep/recallInject.js +409 -1
- package/src/gep/recallVerifier.js +318 -1
- package/src/gep/reflection.js +177 -1
- package/src/gep/savingsCore.js +112 -1
- package/src/gep/selector.js +602 -1
- package/src/gep/signals.js +85 -17
- package/src/gep/skillDistiller.js +1294 -1
- package/src/gep/solidify.js +1699 -1
- package/src/gep/strategy.js +136 -1
- package/src/gep/tokenSavings.js +95 -1
- package/src/gep/workspaceKeychain.js +174 -1
- package/src/proxy/extensions/traceControl.js +109 -1
- package/src/proxy/index.js +100 -3
- package/src/proxy/inject.js +52 -1
- package/src/proxy/lifecycle/manager.js +108 -7
- package/src/proxy/server/routes.js +41 -7
- package/src/proxy/server/settings.js +6 -2
- package/src/proxy/sync/engine.js +31 -15
- package/src/proxy/sync/inbound.js +87 -9
- package/src/proxy/sync/outbound.js +57 -4
- package/src/proxy/trace/extractor.js +1403 -1
- package/src/proxy/trace/usage.js +105 -1
- package/CONTRIBUTING.md +0 -19
- package/assets/cover.png +0 -0
- package/scripts/a2a_export.js +0 -63
- package/scripts/a2a_ingest.js +0 -79
- package/scripts/a2a_promote.js +0 -118
- package/scripts/analyze_by_skill.js +0 -121
- package/scripts/build_binaries.js +0 -479
- package/scripts/check-changelog.js +0 -166
- package/scripts/extract_log.js +0 -85
- package/scripts/generate_history.js +0 -75
- package/scripts/gep_append_event.js +0 -96
- package/scripts/gep_personality_report.js +0 -234
- package/scripts/human_report.js +0 -147
- package/scripts/recall-verify-report.js +0 -234
- package/scripts/recover_loop.js +0 -61
- package/scripts/refresh_stars_badge.js +0 -168
- package/scripts/seed-merchants.js +0 -91
- package/scripts/suggest_version.js +0 -89
- package/scripts/validate-modules.js +0 -38
- package/scripts/validate-suite.js +0 -78
- package/skills/index.json +0 -14
- /package/assets/gep/{genes.seed.json → genes.json} +0 -0
- /package/{skills → bundled-skills}/_meta/SKILL.md +0 -0
|
@@ -1 +1,274 @@
|
|
|
1
|
-
function _0x3007(){const _0x4cc267=['\x57\x50\x52\x64\x51\x62\x4f\x76\x57\x35\x42\x64\x50\x38\x6f\x6f\x57\x52\x71','\x57\x51\x78\x64\x4f\x43\x6b\x47\x57\x52\x47\x46','\x57\x35\x6a\x78\x57\x50\x4a\x64\x56\x57\x79\x51\x57\x35\x37\x63\x4a\x47','\x70\x4c\x54\x53\x6b\x4c\x37\x64\x51\x58\x42\x63\x4d\x57','\x7a\x38\x6f\x35\x57\x4f\x52\x63\x55\x47\x52\x64\x48\x43\x6f\x75','\x6b\x63\x74\x63\x50\x6d\x6f\x61\x76\x71','\x43\x61\x75\x43\x57\x34\x57\x41','\x6d\x4d\x35\x4c\x57\x51\x6d','\x57\x34\x52\x63\x48\x6d\x6b\x67\x6b\x71','\x57\x35\x72\x69\x57\x35\x46\x63\x53\x43\x6b\x41\x43\x66\x7a\x4c\x68\x74\x70\x63\x56\x6d\x6b\x46\x64\x71','\x57\x34\x46\x63\x49\x38\x6b\x4f\x64\x48\x6e\x6d\x6b\x62\x47','\x67\x38\x6f\x59\x57\x36\x4a\x64\x48\x53\x6f\x77\x68\x61\x47','\x57\x36\x6c\x63\x47\x38\x6b\x42\x6b\x78\x72\x6d\x67\x6d\x6b\x39','\x72\x71\x54\x76\x67\x59\x47','\x57\x4f\x42\x63\x53\x43\x6f\x53','\x57\x35\x47\x52\x57\x37\x4a\x63\x4a\x4c\x46\x64\x54\x62\x57\x72','\x70\x30\x79\x34\x70\x72\x2f\x64\x51\x72\x37\x63\x48\x57','\x6e\x57\x53\x48\x66\x53\x6b\x79\x63\x6d\x6f\x30\x57\x36\x53','\x46\x6d\x6f\x34\x57\x4f\x2f\x63\x53\x58\x46\x64\x49\x53\x6f\x70\x57\x4f\x30','\x57\x37\x47\x71\x57\x52\x6a\x64\x46\x47','\x57\x50\x71\x42\x57\x50\x78\x64\x4f\x43\x6b\x65\x6d\x57\x6e\x54','\x6e\x4b\x46\x64\x55\x58\x72\x58\x57\x35\x37\x63\x48\x53\x6b\x36','\x57\x37\x70\x63\x52\x57\x4c\x41\x57\x4f\x42\x64\x54\x57','\x57\x51\x33\x63\x48\x53\x6b\x6e\x69\x4d\x6d\x41\x65\x6d\x6b\x36','\x73\x38\x6b\x4c\x57\x36\x52\x63\x4c\x6d\x6f\x6c\x57\x52\x69','\x46\x71\x72\x47\x68\x47\x47\x6a\x6c\x67\x38','\x6e\x4b\x4f\x65\x45\x71\x6d','\x57\x37\x79\x75\x57\x34\x6c\x63\x4e\x31\x34','\x57\x35\x47\x69\x79\x4e\x42\x63\x48\x71','\x44\x31\x30\x6c\x66\x6d\x6b\x59\x74\x43\x6f\x71\x57\x35\x47','\x77\x53\x6b\x39\x79\x47\x50\x68\x7a\x57\x47','\x62\x38\x6b\x6f\x66\x53\x6f\x49\x68\x38\x6f\x42\x71\x61','\x57\x52\x5a\x63\x56\x38\x6b\x31\x57\x34\x6c\x64\x51\x43\x6b\x55\x71\x43\x6b\x5a','\x57\x4f\x52\x63\x4a\x43\x6b\x4d\x64\x6d\x6f\x4b','\x6b\x32\x69\x70\x57\x52\x69','\x6d\x57\x50\x44\x67\x71\x61\x72\x6c\x68\x43','\x76\x53\x6f\x67\x57\x50\x2f\x63\x4d\x74\x53','\x70\x5a\x64\x64\x4a\x38\x6b\x42\x43\x4d\x72\x33\x67\x71','\x76\x53\x6b\x35\x57\x37\x2f\x63\x4b\x38\x6b\x75\x57\x37\x78\x63\x56\x66\x57','\x57\x37\x42\x63\x4d\x43\x6f\x48\x57\x50\x44\x50\x57\x34\x72\x6c\x72\x57','\x62\x73\x72\x4e\x57\x51\x6d\x4f\x70\x6d\x6f\x4c\x6b\x61','\x63\x33\x5a\x63\x55\x6d\x6f\x73\x73\x6d\x6f\x31\x6e\x33\x65','\x6b\x53\x6b\x53\x6d\x43\x6f\x42\x6e\x71','\x57\x35\x35\x5a\x76\x53\x6b\x42\x67\x71','\x6e\x47\x38\x39\x67\x38\x6b\x4d\x78\x6d\x6f\x64\x57\x36\x4f','\x57\x37\x4e\x63\x4b\x38\x6b\x6e\x6c\x77\x30','\x57\x37\x57\x71\x67\x5a\x4e\x64\x52\x71','\x69\x31\x64\x63\x48\x33\x4f','\x70\x49\x56\x63\x52\x53\x6f\x75\x75\x43\x6f\x4b\x70\x77\x4f','\x57\x35\x6a\x78\x57\x4f\x56\x64\x55\x61\x61\x51\x57\x35\x4a\x64\x47\x47','\x46\x6d\x6b\x52\x57\x35\x58\x6c','\x57\x4f\x4e\x63\x48\x6d\x6f\x50\x57\x50\x31\x49\x57\x50\x47','\x57\x34\x65\x4c\x57\x36\x56\x63\x54\x66\x2f\x64\x4b\x47\x79\x72','\x57\x52\x57\x76\x78\x6d\x6f\x2b\x57\x50\x57\x71\x57\x37\x61\x6e','\x44\x73\x6a\x72\x71\x43\x6b\x56\x69\x4c\x46\x63\x4b\x57','\x57\x37\x58\x75\x57\x52\x46\x64\x51\x77\x56\x64\x4d\x58\x34\x58\x68\x74\x6e\x4f\x61\x53\x6b\x2f','\x57\x37\x44\x4b\x72\x72\x37\x63\x4d\x53\x6f\x70\x57\x34\x52\x64\x53\x71','\x57\x36\x4e\x63\x48\x6d\x6b\x42\x6c\x33\x72\x74\x63\x43\x6b\x39','\x57\x34\x74\x63\x4f\x38\x6b\x52\x64\x4d\x4f','\x79\x43\x6f\x59\x57\x50\x78\x63\x54\x57\x64\x64\x4c\x38\x6f\x66\x57\x4f\x43','\x57\x4f\x68\x64\x48\x76\x47\x61\x57\x35\x53','\x57\x37\x30\x2b\x67\x57\x52\x63\x4d\x57','\x57\x34\x56\x63\x4b\x38\x6b\x55\x65\x62\x38','\x64\x66\x74\x63\x4d\x33\x53','\x63\x38\x6f\x41\x57\x34\x68\x64\x48\x38\x6f\x65\x6d\x62\x34\x72','\x6a\x32\x4f\x77\x71\x74\x52\x63\x4c\x6d\x6b\x45\x68\x57','\x76\x43\x6f\x58\x6d\x5a\x6e\x74\x71\x64\x76\x4f','\x57\x51\x34\x52\x73\x61\x5a\x63\x4d\x53\x6f\x79\x57\x35\x4a\x64\x56\x71','\x57\x52\x38\x56\x79\x74\x6c\x63\x55\x61','\x65\x53\x6f\x75\x57\x37\x75','\x6c\x74\x56\x63\x52\x43\x6f\x42\x79\x57','\x57\x35\x76\x78\x6a\x53\x6b\x4d\x66\x32\x79\x6f\x57\x51\x71','\x57\x52\x6c\x63\x56\x38\x6b\x2f\x57\x35\x71','\x57\x34\x56\x63\x4c\x38\x6b\x35\x64\x72\x71','\x46\x47\x58\x78\x65\x47','\x57\x4f\x43\x66\x57\x36\x79','\x46\x71\x7a\x36\x65\x58\x57','\x64\x61\x71\x2f\x65\x43\x6b\x5a\x73\x43\x6f\x73\x57\x36\x53','\x57\x52\x4e\x64\x51\x6d\x6b\x4c\x57\x52\x34\x66\x57\x51\x68\x63\x4f\x38\x6b\x6c','\x57\x52\x65\x2f\x57\x4f\x4f\x4d\x65\x49\x52\x64\x49\x71','\x73\x38\x6b\x42\x73\x71\x33\x64\x52\x53\x6f\x65\x41\x62\x53','\x57\x52\x76\x42\x77\x4e\x6c\x64\x56\x4d\x5a\x64\x50\x5a\x71','\x57\x4f\x57\x6c\x57\x36\x58\x42\x57\x52\x68\x63\x47\x6d\x6f\x64\x79\x71','\x57\x36\x4e\x64\x50\x6d\x6f\x53\x57\x4f\x4a\x63\x50\x6d\x6b\x78\x43\x53\x6b\x33\x46\x53\x6b\x78\x57\x51\x53','\x57\x36\x78\x64\x4e\x6d\x6f\x54\x46\x6d\x6b\x61','\x57\x35\x33\x63\x53\x4a\x66\x30\x57\x52\x43','\x57\x52\x44\x59\x61\x6d\x6b\x5a\x73\x58\x6d\x77\x57\x4f\x57','\x57\x51\x42\x63\x4a\x47\x6c\x63\x53\x65\x5a\x64\x56\x30\x69\x41','\x57\x51\x74\x64\x4b\x65\x4c\x78','\x67\x77\x72\x53\x57\x50\x4b\x53\x70\x6d\x6f\x35\x6c\x47','\x46\x48\x7a\x68\x66\x48\x53\x6f\x69\x4d\x30','\x72\x6d\x6b\x2b\x57\x36\x33\x63\x4a\x53\x6b\x46\x57\x37\x78\x64\x50\x78\x47','\x57\x50\x4e\x64\x53\x48\x47\x76\x57\x35\x42\x64\x50\x38\x6f\x6f\x57\x52\x71','\x69\x65\x2f\x63\x53\x77\x4c\x38','\x63\x4e\x79\x73\x78\x62\x37\x63\x4c\x6d\x6f\x46\x65\x57','\x57\x51\x42\x63\x4a\x47\x6c\x63\x53\x65\x5a\x64\x56\x30\x69','\x57\x35\x74\x64\x4e\x53\x6f\x33\x62\x38\x6b\x49\x57\x36\x33\x64\x48\x6d\x6b\x54\x6f\x4c\x71','\x57\x36\x50\x31\x76\x38\x6b\x47\x66\x71','\x57\x36\x42\x63\x4d\x53\x6f\x54\x57\x50\x35\x78\x57\x37\x43\x68\x78\x61','\x57\x4f\x6d\x78\x57\x35\x44\x43','\x71\x53\x6b\x42\x41\x57\x78\x64\x55\x57','\x72\x38\x6b\x36\x45\x71\x50\x71\x7a\x4b\x4e\x63\x4d\x71','\x61\x30\x47\x4e\x6d\x78\x4b','\x57\x34\x65\x30\x75\x33\x52\x63\x50\x38\x6f\x79','\x57\x50\x2f\x64\x4f\x47\x4b\x65\x57\x4f\x6c\x64\x52\x6d\x6f\x6e\x57\x52\x53','\x6e\x4c\x42\x64\x54\x48\x6e\x2b\x57\x34\x2f\x63\x54\x53\x6b\x37','\x73\x38\x6b\x61\x57\x34\x44\x72\x78\x47','\x64\x6d\x6f\x62\x57\x36\x5a\x64\x4e\x6d\x6f\x67\x6a\x47','\x68\x6d\x6f\x74\x6f\x43\x6f\x54\x6e\x53\x6f\x4d\x57\x52\x4e\x64\x51\x57','\x72\x43\x6b\x35\x42\x62\x39\x62','\x57\x35\x62\x78\x57\x4f\x5a\x64\x51\x72\x53\x32\x57\x35\x52\x63\x48\x47','\x57\x37\x79\x75\x62\x71','\x75\x59\x61\x72\x57\x36\x30','\x41\x63\x79\x7a\x57\x36\x53\x32\x57\x52\x65','\x57\x4f\x46\x63\x4e\x53\x6b\x54\x78\x38\x6b\x47\x57\x4f\x52\x64\x47\x53\x6b\x37','\x57\x52\x53\x46\x78\x43\x6f\x52\x57\x35\x4b','\x57\x35\x33\x63\x50\x43\x6f\x39\x57\x50\x50\x59','\x69\x6d\x6b\x71\x57\x35\x54\x79\x57\x52\x4e\x63\x56\x53\x6f\x6b\x79\x57','\x57\x51\x53\x51\x57\x52\x69\x54\x70\x71','\x57\x52\x5a\x63\x49\x61\x56\x63\x52\x71','\x57\x36\x7a\x69\x57\x52\x6c\x64\x55\x4a\x53','\x6c\x68\x75\x32\x71\x64\x5a\x63\x50\x38\x6b\x67','\x57\x34\x7a\x51\x57\x51\x64\x64\x4c\x72\x4b','\x6e\x53\x6f\x41\x69\x53\x6f\x31\x6e\x61','\x57\x51\x78\x64\x4f\x66\x65\x65\x57\x37\x7a\x48','\x57\x52\x53\x75\x67\x74\x64\x63\x56\x5a\x74\x64\x49\x64\x47','\x57\x37\x2f\x63\x48\x6d\x6b\x6d\x6f\x77\x76\x46','\x79\x43\x6f\x2b\x57\x50\x37\x63\x56\x61\x6c\x64\x4a\x38\x6f\x74','\x57\x36\x68\x63\x48\x6d\x6b\x67\x6b\x33\x6a\x73','\x57\x34\x4f\x63\x57\x37\x66\x6b\x57\x37\x74\x63\x56\x43\x6f\x66\x7a\x47','\x57\x36\x78\x64\x4f\x38\x6f\x6f\x7a\x53\x6b\x50\x41\x38\x6f\x6f','\x57\x35\x31\x6d\x46\x6d\x6b\x58\x78\x61','\x69\x61\x43\x48\x63\x53\x6b\x38\x44\x38\x6f\x66\x57\x37\x43','\x57\x35\x53\x35\x73\x67\x33\x63\x52\x61','\x42\x5a\x30\x78\x57\x36\x75\x4d\x57\x51\x44\x67\x57\x37\x75','\x57\x52\x42\x64\x48\x33\x42\x64\x55\x43\x6f\x2f\x57\x34\x65\x4f\x64\x71','\x57\x4f\x70\x63\x56\x38\x6b\x73\x72\x53\x6b\x69','\x57\x35\x2f\x64\x50\x43\x6f\x46\x79\x71','\x62\x57\x53\x34\x75\x53\x6f\x75','\x6d\x43\x6f\x54\x57\x4f\x61\x77\x6a\x58\x6e\x55\x57\x52\x65','\x61\x30\x33\x64\x50\x72\x6a\x33\x57\x4f\x52\x63\x4d\x53\x6b\x38','\x64\x6d\x6f\x4c\x57\x52\x68\x64\x49\x43\x6f\x46\x57\x52\x33\x63\x4f\x4d\x4b','\x57\x51\x57\x54\x73\x48\x52\x63\x49\x53\x6b\x71\x57\x4f\x30','\x45\x43\x6f\x4b\x57\x52\x52\x63\x51\x4a\x71','\x57\x36\x52\x64\x4f\x6d\x6b\x4d\x57\x52\x38\x64\x57\x36\x47','\x57\x51\x71\x6a\x57\x36\x5a\x63\x56\x57','\x69\x68\x71\x66\x78\x74\x57','\x45\x48\x62\x31\x68\x47\x65\x6f\x6f\x77\x79','\x57\x36\x4b\x7a\x66\x63\x57','\x57\x36\x74\x63\x4a\x38\x6f\x4c\x57\x50\x39\x31\x57\x35\x58\x47\x72\x47','\x45\x77\x4f\x70\x57\x51\x68\x64\x48\x65\x4e\x63\x54\x4e\x4f','\x75\x43\x6f\x52\x6e\x73\x54\x46','\x57\x52\x68\x63\x51\x53\x6f\x5a\x57\x37\x47\x74','\x57\x36\x6d\x44\x44\x32\x2f\x63\x56\x57','\x65\x65\x6e\x65\x57\x52\x57\x71','\x6c\x38\x6f\x41\x6a\x6d\x6f\x37\x69\x38\x6f\x38','\x57\x37\x38\x68\x68\x64\x52\x63\x50\x61\x42\x64\x52\x4a\x61','\x6a\x4c\x46\x64\x4b\x62\x31\x33','\x69\x73\x7a\x46\x78\x63\x68\x63\x51\x6d\x6f\x73\x68\x71','\x6e\x47\x6d\x32\x65\x6d\x6b\x4b\x72\x6d\x6f\x76','\x57\x50\x38\x73\x57\x4f\x34\x44\x67\x61','\x42\x64\x57\x44\x57\x36\x43','\x6f\x4e\x30\x4c\x57\x52\x52\x64\x4c\x57','\x57\x52\x4e\x64\x4f\x53\x6b\x4b\x57\x52\x34','\x67\x6d\x6f\x54\x6e\x43\x6f\x53\x69\x6d\x6f\x4d\x57\x52\x4a\x64\x54\x57','\x6e\x4d\x6d\x42\x76\x59\x33\x63\x53\x53\x6b\x41\x68\x57','\x46\x38\x6f\x49\x57\x4f\x33\x63\x53\x58\x46\x64\x49\x53\x6f\x70\x57\x4f\x30','\x57\x36\x5a\x63\x50\x47\x35\x45\x57\x50\x43','\x78\x43\x6f\x49\x6d\x74\x62\x75\x74\x78\x69\x4e','\x57\x52\x78\x63\x52\x38\x6f\x73\x57\x36\x47\x59','\x57\x51\x69\x59\x72\x57\x56\x63\x49\x38\x6b\x6b\x57\x34\x6c\x64\x51\x61','\x43\x71\x39\x77\x65\x57','\x6e\x4b\x4f\x59\x62\x38\x6b\x4d\x72\x6d\x6f\x64\x57\x52\x71','\x57\x50\x46\x63\x53\x6d\x6f\x51\x57\x35\x6d','\x72\x6d\x6b\x51\x57\x37\x46\x63\x49\x38\x6b\x75\x57\x37\x79','\x6b\x48\x57\x57\x63\x53\x6b\x47','\x57\x36\x53\x6d\x42\x78\x52\x63\x47\x57','\x57\x34\x33\x64\x53\x38\x6f\x75\x79\x61','\x57\x50\x52\x64\x4d\x62\x38\x76\x57\x35\x42\x64\x55\x38\x6f\x74\x57\x52\x53','\x62\x59\x61\x57\x45\x38\x6f\x59\x57\x52\x53\x70\x7a\x47','\x63\x43\x6b\x6e\x74\x48\x46\x64\x4f\x38\x6f\x70\x77\x47\x4f','\x66\x4a\x6c\x63\x56\x38\x6f\x75\x74\x61','\x72\x6d\x6b\x37\x46\x47','\x71\x74\x79\x41\x57\x36\x57','\x57\x50\x53\x53\x71\x62\x70\x63\x51\x71','\x75\x59\x66\x6b\x57\x35\x38\x55\x6e\x6d\x6f\x35\x41\x71','\x66\x38\x6f\x75\x57\x37\x34','\x74\x6d\x6b\x36\x46\x47\x6a\x6b\x41\x61\x42\x63\x47\x57','\x73\x53\x6b\x59\x57\x34\x44\x70\x46\x71','\x77\x53\x6b\x46\x73\x57\x42\x64\x51\x6d\x6f\x75\x71\x61\x57','\x57\x34\x6d\x6d\x68\x58\x6c\x63\x4e\x47','\x57\x4f\x4f\x46\x57\x50\x79','\x77\x43\x6b\x53\x79\x48\x4c\x62','\x57\x36\x5a\x63\x49\x6d\x6b\x65\x6b\x77\x69\x61\x77\x71','\x74\x43\x6b\x2b\x57\x36\x52\x63\x48\x6d\x6b\x45\x57\x37\x2f\x63\x4f\x61','\x57\x50\x75\x46\x57\x4f\x4e\x64\x52\x6d\x6f\x6d\x6e\x61\x6e\x4c','\x71\x38\x6b\x34\x57\x37\x53','\x57\x51\x48\x2f\x62\x38\x6b\x2b\x78\x62\x79\x45\x57\x4f\x53','\x43\x49\x65\x72\x57\x36\x47\x34\x57\x36\x6e\x68\x57\x36\x6d','\x57\x36\x56\x63\x4a\x53\x6b\x41\x6c\x32\x6e\x5a\x66\x38\x6b\x4e','\x57\x34\x61\x48\x57\x37\x6c\x63\x4d\x76\x46\x64\x4b\x47\x71\x74','\x6b\x4d\x69\x63\x57\x52\x5a\x64\x4f\x76\x74\x63\x56\x33\x53','\x72\x43\x6b\x46\x72\x48\x68\x64\x50\x43\x6f\x6a\x71\x72\x4b','\x6e\x4e\x69\x41\x57\x52\x52\x64\x52\x75\x33\x63\x56\x57','\x57\x35\x70\x63\x52\x73\x48\x6a\x57\x52\x6d','\x57\x4f\x6d\x6c\x57\x37\x62\x6c','\x72\x53\x6b\x70\x75\x57\x64\x64\x50\x6d\x6f\x6e\x73\x47','\x57\x35\x72\x4f\x43\x38\x6b\x47\x65\x32\x69\x6f','\x6e\x74\x30\x6a\x64\x43\x6b\x73','\x57\x50\x79\x70\x57\x50\x42\x64\x4f\x71','\x74\x38\x6b\x2b\x57\x36\x52\x63\x48\x53\x6b\x66\x57\x37\x56\x63\x51\x4d\x69','\x57\x50\x4e\x64\x51\x61\x47\x72','\x57\x37\x65\x6d\x42\x32\x56\x63\x52\x61','\x57\x34\x54\x62\x57\x51\x56\x64\x56\x48\x53\x4c\x57\x34\x79','\x57\x34\x35\x74\x57\x50\x37\x64\x51\x71\x47\x58','\x57\x34\x42\x63\x4d\x53\x6b\x52\x72\x43\x6b\x56\x57\x50\x43','\x57\x50\x35\x55\x65\x63\x42\x64\x53\x6d\x6f\x4e\x57\x35\x52\x64\x4a\x6d\x6f\x69\x57\x50\x61\x77','\x57\x52\x48\x74\x78\x38\x6f\x53\x57\x34\x47\x64\x57\x36\x65\x75','\x76\x49\x6e\x66\x57\x34\x57\x53\x6c\x53\x6b\x53\x6c\x47','\x6f\x76\x35\x55\x57\x50\x43\x4a','\x68\x6d\x6f\x75\x57\x37\x33\x64\x4d\x38\x6f\x67\x6f\x71\x4b\x48','\x71\x62\x72\x43\x61\x62\x34','\x57\x36\x4b\x71\x62\x74\x33\x63\x55\x74\x68\x64\x4b\x59\x75','\x57\x51\x70\x64\x56\x76\x34\x7a\x57\x36\x66\x32\x57\x35\x78\x63\x54\x71','\x6d\x38\x6b\x64\x57\x34\x76\x6f\x57\x52\x6c\x64\x51\x53\x6f\x63','\x57\x37\x4f\x66\x62\x74\x64\x63\x51\x71','\x46\x38\x6b\x47\x57\x35\x4f\x79\x46\x31\x43\x4b\x57\x37\x71','\x57\x36\x43\x51\x71\x4e\x68\x63\x4d\x43\x6f\x2b\x57\x51\x4a\x64\x49\x71','\x61\x53\x6f\x53\x6f\x6d\x6f\x30\x64\x61','\x57\x36\x74\x63\x4a\x38\x6b\x6c\x69\x68\x6e\x45\x68\x6d\x6b\x36','\x57\x52\x74\x63\x4c\x57\x33\x64\x56\x4d\x78\x64\x51\x4b\x65\x51','\x62\x31\x74\x63\x4e\x78\x50\x6a\x64\x38\x6f\x65\x57\x34\x6d','\x57\x37\x38\x4d\x70\x61\x37\x63\x4d\x71','\x57\x36\x68\x63\x47\x6d\x6b\x6b\x6b\x77\x4f','\x41\x53\x6b\x47\x57\x34\x72\x44\x42\x30\x34\x47\x57\x37\x57','\x62\x66\x54\x49\x79\x43\x6b\x44','\x57\x51\x70\x63\x4b\x53\x6f\x4b\x57\x37\x79\x70','\x78\x63\x76\x42\x57\x35\x34\x31\x6d\x43\x6f\x59\x74\x71','\x57\x37\x4e\x63\x4a\x53\x6b\x4b\x69\x33\x66\x46\x63\x38\x6b\x6b','\x57\x35\x33\x63\x47\x6d\x6b\x34\x6b\x31\x61','\x57\x34\x44\x43\x57\x50\x37\x64\x56\x57','\x45\x48\x44\x6b\x6a\x62\x53\x67\x6f\x77\x79','\x42\x76\x57\x50\x6e\x66\x52\x64\x52\x61\x56\x63\x49\x57','\x57\x51\x38\x4f\x71\x58\x53','\x57\x51\x6c\x63\x4b\x53\x6b\x41\x71\x6d\x6b\x77','\x57\x34\x75\x52\x57\x37\x30','\x67\x4b\x42\x64\x53\x47\x76\x33\x57\x34\x4e\x63\x4e\x43\x6b\x54','\x57\x52\x6c\x63\x53\x43\x6b\x4a\x57\x36\x37\x64\x55\x38\x6b\x31\x74\x6d\x6b\x2f','\x57\x51\x61\x44\x57\x52\x42\x64\x47\x43\x6f\x79','\x79\x62\x44\x62\x66\x48\x53\x63\x6b\x4e\x4f','\x6e\x38\x6b\x66\x6d\x43\x6f\x6b\x62\x47','\x6b\x75\x33\x64\x53\x63\x35\x33\x57\x35\x4a\x63\x4d\x38\x6b\x4e','\x74\x6d\x6b\x55\x57\x35\x46\x63\x47\x38\x6b\x63','\x7a\x43\x6f\x61\x6f\x5a\x76\x73','\x69\x33\x78\x64\x48\x53\x6b\x69\x46\x4e\x58\x4b\x67\x61','\x57\x34\x68\x64\x48\x43\x6b\x55\x66\x61\x4c\x65\x6f\x57\x34','\x57\x52\x4f\x55\x57\x35\x33\x63\x48\x73\x57','\x57\x36\x69\x72\x70\x57\x74\x63\x48\x61','\x57\x36\x4a\x63\x4a\x43\x6b\x38\x68\x67\x71','\x61\x72\x47\x6c\x64\x43\x6b\x2f','\x68\x75\x65\x78\x57\x52\x6c\x64\x51\x71','\x57\x37\x70\x63\x47\x76\x74\x64\x53\x57','\x41\x49\x6a\x72\x57\x37\x71\x4b','\x41\x64\x7a\x78\x57\x36\x68\x63\x55\x58\x70\x64\x51\x4e\x34\x2b\x64\x73\x57\x79\x57\x51\x6d','\x65\x49\x46\x63\x53\x53\x6f\x4f\x76\x38\x6f\x4b\x6e\x78\x65','\x57\x52\x4f\x7a\x75\x43\x6f\x38\x57\x35\x69\x77\x57\x35\x61\x6c','\x57\x4f\x70\x63\x4d\x53\x6b\x57\x77\x43\x6b\x32','\x69\x65\x74\x64\x4c\x48\x54\x66','\x6a\x4c\x4a\x64\x4e\x62\x6a\x68','\x6e\x43\x6f\x71\x6a\x53\x6f\x35\x67\x57','\x70\x63\x43\x69\x57\x52\x4a\x64\x51\x30\x5a\x63\x56\x33\x53','\x57\x51\x33\x64\x4f\x4b\x72\x6b\x57\x36\x6a\x32\x57\x35\x33\x63\x51\x61','\x70\x65\x4c\x69\x57\x4f\x71\x4c','\x66\x78\x47\x56\x6f\x76\x53','\x65\x53\x6b\x50\x41\x57\x6e\x4d\x7a\x4b\x38','\x6e\x53\x6f\x79\x6d\x38\x6f\x37\x6d\x43\x6f\x36\x57\x50\x74\x64\x4f\x47','\x44\x66\x50\x4f\x73\x43\x6f\x32\x65\x43\x6b\x78\x57\x34\x6c\x63\x50\x38\x6f\x6e\x61\x74\x34\x2b','\x57\x52\x6c\x63\x49\x43\x6b\x57\x75\x43\x6b\x48\x57\x35\x37\x63\x49\x53\x6f\x2b','\x57\x36\x5a\x63\x52\x57\x54\x79\x57\x50\x68\x64\x51\x38\x6b\x47\x6f\x47','\x46\x47\x7a\x45\x67\x62\x30\x45\x79\x59\x6d','\x57\x36\x37\x63\x47\x67\x4a\x64\x53\x47','\x6d\x31\x38\x4d\x75\x5a\x43','\x6b\x4e\x69\x6e\x57\x52\x52\x64\x50\x31\x70\x63\x51\x71','\x57\x36\x56\x64\x55\x6d\x6f\x6f\x42\x6d\x6b\x7a\x44\x53\x6f\x6b\x77\x47','\x57\x35\x69\x51\x78\x4c\x6c\x63\x51\x57','\x44\x58\x66\x41\x65\x72\x53\x49\x69\x32\x69','\x72\x43\x6b\x46\x73\x71\x74\x64\x56\x38\x6f\x69','\x77\x53\x6b\x77\x74\x47\x64\x64\x52\x47','\x57\x35\x57\x73\x46\x30\x56\x63\x55\x57','\x6c\x6d\x6f\x6f\x6a\x6d\x6f\x39\x6c\x43\x6f\x4b\x57\x51\x34','\x44\x63\x50\x6a','\x57\x36\x37\x63\x47\x67\x64\x64\x50\x6d\x6f\x79\x57\x34\x4b\x47','\x69\x74\x64\x64\x4a\x53\x6b\x72\x79\x32\x4c\x6e\x67\x47','\x70\x59\x4e\x63\x4b\x38\x6f\x62\x44\x47','\x75\x74\x66\x67\x57\x34\x38\x4c\x6c\x57','\x67\x58\x4e\x64\x4b\x43\x6b\x55\x77\x47','\x57\x34\x5a\x63\x49\x43\x6f\x38\x57\x50\x39\x31','\x57\x37\x39\x70\x63\x38\x6b\x52\x57\x4f\x53\x79\x57\x35\x4b\x65\x67\x38\x6f\x48\x57\x36\x38','\x57\x36\x74\x63\x4f\x38\x6f\x4d\x57\x37\x76\x69\x57\x37\x52\x63\x51\x38\x6b\x43','\x57\x50\x56\x63\x47\x43\x6b\x39\x57\x37\x52\x64\x48\x71','\x6c\x4d\x7a\x63\x74\x57','\x57\x36\x69\x6b\x57\x52\x39\x65\x78\x38\x6f\x4d\x57\x52\x48\x6f','\x57\x51\x78\x64\x54\x47\x50\x6b','\x57\x51\x5a\x64\x4f\x53\x6b\x37\x57\x52\x47\x64\x57\x4f\x52\x63\x50\x43\x6b\x78','\x57\x50\x76\x41\x57\x4f\x56\x64\x51\x6d\x6f\x44\x6d\x47\x4c\x32','\x57\x35\x47\x39\x6a\x48\x68\x63\x4e\x57','\x57\x4f\x57\x76\x57\x4f\x5a\x64\x50\x57','\x57\x51\x5a\x63\x56\x6d\x6b\x59\x57\x35\x6c\x64\x55\x61','\x6a\x49\x71\x67\x57\x36\x61\x4e\x57\x51\x79\x64\x57\x36\x61','\x44\x38\x6b\x47\x57\x36\x66\x43\x46\x57','\x67\x6d\x6f\x71\x57\x51\x6d','\x57\x36\x4a\x64\x55\x53\x6f\x46\x79\x71','\x46\x62\x54\x30\x42\x61\x56\x64\x52\x48\x6c\x63\x4e\x33\x2f\x63\x50\x4e\x43','\x78\x59\x53\x54\x7a\x53\x6f\x34\x57\x37\x57','\x63\x64\x64\x63\x50\x6d\x6f\x66\x71\x71','\x43\x4a\x4f\x42\x57\x36\x43','\x6c\x38\x6f\x45\x70\x53\x6f\x35\x6e\x53\x6f\x48','\x57\x36\x2f\x63\x4a\x38\x6b\x34\x69\x77\x61','\x57\x37\x2f\x63\x47\x6d\x6b\x79\x6a\x66\x53\x41\x6d\x43\x6b\x57','\x6c\x53\x6f\x73\x70\x47','\x45\x47\x54\x43\x57\x36\x79\x4c','\x76\x78\x33\x64\x50\x6d\x6b\x7a\x63\x53\x6b\x2f\x6d\x32\x61','\x69\x77\x6d\x65\x75\x74\x5a\x63\x52\x38\x6b\x70\x64\x57','\x57\x51\x79\x68\x57\x35\x39\x2b\x57\x50\x43','\x57\x36\x46\x64\x54\x38\x6f\x6b','\x6e\x48\x69\x51\x79\x53\x6f\x74','\x67\x76\x34\x45\x63\x4d\x47','\x6a\x4e\x54\x56\x71\x53\x6b\x38\x6a\x4c\x78\x63\x4f\x61','\x69\x57\x6d\x39\x63\x53\x6b\x47\x77\x47','\x72\x74\x69\x65\x57\x37\x4f\x4d\x57\x51\x39\x67\x57\x34\x38','\x78\x4a\x57\x6c\x57\x34\x53\x50\x6d\x43\x6f\x59\x46\x71','\x6c\x5a\x74\x64\x4b\x38\x6b\x6e\x7a\x68\x58\x33\x64\x47','\x57\x52\x61\x2f\x57\x50\x47\x4e\x68\x73\x74\x64\x47\x4c\x71','\x74\x38\x6b\x54\x57\x34\x35\x75\x73\x57','\x57\x51\x4f\x48\x57\x36\x64\x63\x56\x5a\x56\x63\x4f\x4b\x4f','\x57\x4f\x69\x66\x57\x36\x30','\x7a\x75\x68\x64\x54\x47\x66\x48\x57\x35\x2f\x63\x48\x43\x6b\x54','\x57\x4f\x52\x63\x4a\x43\x6b\x53\x75\x43\x6b\x57\x57\x34\x69','\x57\x36\x30\x49\x71\x4e\x5a\x63\x56\x6d\x6f\x79\x57\x36\x68\x64\x4a\x47','\x57\x35\x72\x6d\x44\x6d\x6b\x58\x65\x77\x69\x63\x57\x52\x6d','\x70\x6d\x6b\x6d\x57\x34\x50\x72\x57\x51\x6c\x63\x52\x53\x6b\x70\x79\x57','\x67\x38\x6f\x6f\x65\x73\x4e\x64\x50\x43\x6f\x74\x46\x63\x53\x2f','\x57\x34\x56\x63\x48\x64\x44\x58\x57\x50\x65','\x76\x49\x44\x6e\x57\x36\x53\x66','\x70\x64\x64\x64\x4b\x43\x6b\x6e\x46\x4e\x35\x5a\x65\x71','\x57\x50\x50\x6c\x57\x36\x31\x6d\x57\x51\x42\x63\x51\x6d\x6f\x7a\x41\x47','\x62\x32\x50\x37\x57\x51\x34\x75\x42\x53\x6f\x64\x6f\x61','\x61\x43\x6b\x69\x69\x38\x6f\x5a\x61\x53\x6f\x78\x78\x61','\x71\x43\x6b\x64\x76\x57\x5a\x64\x56\x38\x6f\x69\x73\x47\x30','\x57\x51\x68\x64\x4b\x67\x69\x69\x57\x37\x38','\x57\x52\x4e\x64\x4f\x43\x6b\x47\x57\x52\x47\x64','\x57\x35\x46\x63\x4e\x65\x33\x64\x56\x38\x6f\x6a\x57\x35\x65','\x57\x50\x42\x63\x4a\x43\x6b\x57\x72\x43\x6b\x52\x57\x34\x74\x64\x4b\x43\x6b\x59','\x57\x50\x4e\x64\x50\x48\x47\x78\x57\x34\x4f','\x70\x4a\x64\x64\x47\x6d\x6b\x42\x46\x32\x72\x78\x63\x57','\x64\x53\x6b\x56\x57\x34\x58\x71\x57\x52\x4a\x63\x55\x6d\x6b\x74\x76\x57','\x57\x51\x30\x30\x46\x43\x6f\x4a\x57\x36\x75','\x62\x53\x6f\x2b\x65\x38\x6f\x57\x63\x57','\x44\x57\x7a\x61\x66\x62\x30\x6f\x70\x78\x43','\x57\x4f\x61\x48\x73\x58\x64\x63\x4e\x6d\x6f\x74\x57\x36\x52\x64\x52\x61','\x6c\x4e\x50\x4c','\x57\x51\x34\x32\x57\x50\x47\x4c','\x62\x4c\x74\x63\x48\x33\x66\x6c\x62\x6d\x6f\x58\x57\x35\x38','\x57\x35\x79\x33\x57\x52\x39\x68\x79\x6d\x6f\x67\x57\x4f\x4c\x47','\x57\x36\x53\x71\x62\x59\x2f\x63\x56\x59\x33\x64\x4f\x74\x30','\x57\x35\x4e\x63\x47\x6d\x6b\x41\x6b\x32\x6e\x6f\x71\x38\x6f\x50','\x46\x53\x6f\x6c\x57\x4f\x69\x7a','\x57\x51\x42\x64\x4f\x47\x53\x44\x57\x35\x68\x64\x55\x53\x6f\x74\x57\x51\x6d','\x7a\x64\x38\x72\x57\x51\x4b\x57\x57\x51\x54\x63\x57\x36\x47','\x57\x4f\x43\x6a\x57\x4f\x61','\x57\x52\x46\x63\x53\x43\x6b\x50\x57\x35\x75','\x79\x61\x62\x43\x62\x71\x4f','\x57\x4f\x47\x42\x57\x4f\x4a\x64\x52\x61','\x57\x34\x72\x6b\x76\x43\x6b\x47\x61\x68\x38\x66\x57\x51\x69','\x57\x35\x38\x55\x57\x52\x7a\x44\x76\x43\x6f\x4d','\x57\x34\x65\x48\x57\x36\x64\x63\x4d\x66\x4a\x64\x4e\x61\x38','\x41\x4a\x57\x74','\x57\x35\x47\x2f\x76\x77\x5a\x63\x50\x53\x6f\x63\x57\x36\x4e\x64\x4a\x71','\x57\x35\x57\x31\x74\x68\x52\x63\x50\x38\x6f\x4a\x57\x37\x37\x64\x48\x61','\x57\x51\x52\x63\x4a\x53\x6f\x32\x57\x35\x61\x74','\x44\x74\x79\x79\x57\x36\x57\x57\x57\x52\x44\x67\x57\x36\x69','\x76\x53\x6b\x4a\x57\x37\x56\x63\x4c\x6d\x6b\x79\x57\x36\x68\x64\x50\x78\x53','\x57\x4f\x38\x55\x57\x4f\x53\x30\x62\x59\x4a\x64\x49\x30\x4f','\x57\x52\x72\x31\x65\x53\x6b\x4b\x76\x57\x57\x7a\x57\x50\x38','\x6e\x4b\x46\x64\x54\x47\x6e\x58\x57\x34\x69','\x71\x38\x6b\x65\x57\x35\x54\x62\x77\x57','\x44\x43\x6b\x38\x7a\x61\x58\x6b\x42\x4b\x52\x63\x48\x61','\x6b\x75\x46\x64\x55\x72\x7a\x4d\x57\x34\x69','\x57\x4f\x5a\x64\x50\x75\x79\x4a\x57\x34\x69','\x42\x64\x42\x64\x47\x53\x6b\x6c\x79\x4e\x66\x2b\x78\x71','\x78\x53\x6b\x47\x57\x34\x7a\x44','\x68\x71\x47\x52\x72\x43\x6f\x6d','\x57\x50\x4e\x64\x53\x67\x61\x54\x57\x35\x61','\x46\x59\x44\x2f\x6d\x48\x75','\x57\x36\x74\x63\x4b\x53\x6b\x55\x6a\x77\x48\x74\x64\x43\x6b\x53','\x6d\x68\x71\x56\x57\x51\x56\x64\x53\x65\x68\x63\x4f\x57','\x75\x43\x6b\x42\x57\x51\x6c\x63\x48\x53\x6b\x44\x45\x47\x53\x33','\x66\x32\x44\x55\x57\x51\x69','\x57\x4f\x2f\x63\x48\x53\x6b\x32\x72\x43\x6f\x2b\x57\x4f\x4f','\x57\x51\x56\x64\x4f\x43\x6b\x4c\x57\x52\x71\x72\x57\x50\x33\x63\x50\x43\x6b\x45','\x71\x6d\x6b\x6f\x78\x4a\x5a\x64\x4f\x6d\x6f\x6f\x71\x61\x4b','\x6c\x6d\x6f\x34\x57\x34\x46\x64\x4d\x38\x6f\x35','\x6a\x6d\x6b\x66\x57\x34\x76\x74\x57\x4f\x69','\x57\x4f\x64\x64\x54\x72\x4b\x72','\x67\x68\x31\x49\x77\x6d\x6b\x53\x6b\x66\x70\x63\x56\x61','\x68\x4d\x34\x6a\x57\x52\x5a\x64\x50\x71','\x6e\x67\x74\x63\x50\x68\x62\x33','\x57\x36\x4a\x63\x48\x38\x6b\x6e\x70\x49\x7a\x74\x66\x38\x6b\x4e','\x57\x36\x68\x63\x50\x77\x2f\x64\x4c\x6d\x6f\x45','\x74\x43\x6b\x39\x57\x37\x2f\x63\x4b\x38\x6b\x75','\x57\x4f\x4b\x50\x57\x50\x57\x58','\x70\x32\x43\x6b\x6e\x66\x69','\x43\x49\x35\x66\x57\x37\x30','\x71\x6d\x6f\x59\x6c\x5a\x43','\x57\x35\x4f\x37\x75\x33\x52\x63\x52\x53\x6f\x76\x57\x51\x4a\x64\x4b\x47','\x71\x53\x6b\x32\x46\x71\x72\x71\x7a\x30\x70\x63\x48\x61','\x57\x52\x78\x63\x52\x6d\x6f\x2f\x57\x35\x61\x39\x57\x37\x76\x4e\x57\x34\x53','\x57\x52\x53\x7a\x78\x53\x6f\x38\x57\x35\x38\x77\x57\x37\x61\x7a','\x6d\x75\x46\x64\x50\x72\x39\x48','\x44\x6d\x6b\x47\x57\x35\x54\x6c\x42\x76\x30\x47','\x45\x38\x6f\x34\x57\x50\x46\x63\x4f\x71','\x57\x4f\x56\x63\x4d\x43\x6b\x61\x46\x38\x6b\x4e','\x46\x43\x6b\x42\x76\x71\x74\x64\x52\x53\x6f\x75\x66\x76\x34','\x6a\x30\x61\x4c\x6e\x47','\x6b\x76\x4b\x4c\x6f\x31\x52\x63\x54\x76\x2f\x63\x4e\x47','\x46\x57\x7a\x44\x65\x62\x53\x70','\x6a\x53\x6f\x5a\x68\x38\x6f\x4b\x67\x57','\x76\x4a\x44\x51\x57\x35\x38\x59\x70\x6d\x6f\x55','\x6a\x48\x38\x77\x65\x53\x6b\x47','\x57\x36\x42\x64\x55\x43\x6f\x44','\x57\x51\x2f\x64\x50\x66\x65\x45\x57\x37\x61','\x6b\x30\x79\x47\x6c\x66\x52\x64\x56\x71','\x57\x36\x2f\x64\x4d\x38\x6f\x76\x79\x43\x6b\x4a\x6f\x57','\x57\x4f\x78\x63\x4b\x53\x6b\x32\x43\x53\x6b\x32','\x41\x53\x6b\x47\x57\x34\x72\x44\x42\x30\x34\x51\x57\x36\x4f','\x57\x4f\x6d\x69\x57\x50\x46\x64\x50\x53\x6f\x44','\x57\x52\x6c\x64\x4c\x38\x6b\x4d\x57\x50\x71\x4a','\x6a\x38\x6b\x64\x57\x35\x4c\x76\x57\x4f\x52\x64\x51\x53\x6b\x34\x44\x71','\x6c\x68\x6d\x65\x46\x59\x2f\x63\x56\x53\x6b\x35\x65\x47','\x45\x6d\x6b\x31\x57\x35\x48\x75\x44\x71','\x66\x4b\x5a\x63\x4a\x66\x31\x66','\x57\x37\x78\x63\x4d\x4c\x78\x64\x53\x38\x6b\x6b\x57\x34\x34\x34\x63\x47','\x7a\x5a\x4f\x79\x57\x37\x57\x48\x57\x51\x79\x64\x57\x37\x75','\x57\x52\x34\x66\x57\x36\x58\x46\x57\x52\x68\x63\x56\x43\x6b\x6e\x79\x47','\x6b\x77\x69\x43\x57\x51\x52\x64\x52\x75\x37\x63\x55\x33\x6d','\x69\x6d\x6f\x41\x6a\x43\x6f\x51\x6b\x38\x6f\x4d\x57\x52\x37\x64\x4f\x71','\x63\x43\x6b\x76\x62\x43\x6f\x35\x68\x53\x6f\x72\x62\x61','\x66\x53\x6f\x69\x6e\x43\x6f\x36','\x44\x53\x6f\x32\x57\x4f\x4e\x63\x50\x47\x52\x64\x4c\x43\x6f\x66\x57\x52\x61','\x57\x52\x42\x64\x47\x48\x4a\x63\x52\x53\x6b\x74\x57\x50\x54\x50\x61\x53\x6b\x58\x44\x38\x6f\x66\x57\x51\x54\x6e','\x6c\x65\x79\x47\x70\x76\x56\x63\x52\x58\x37\x63\x4e\x47','\x73\x6d\x6b\x75\x75\x57\x52\x64\x4c\x6d\x6f\x71\x74\x47\x4f','\x42\x63\x6c\x64\x49\x53\x6b\x6b\x45\x78\x39\x4e\x63\x71','\x75\x74\x62\x79','\x57\x50\x79\x6f\x57\x4f\x64\x64\x55\x57','\x6a\x38\x6b\x56\x6f\x38\x6f\x46\x68\x57','\x66\x4c\x5a\x63\x4d\x4e\x72\x58\x66\x6d\x6f\x7a\x57\x35\x79','\x74\x64\x66\x69\x57\x34\x34\x4c\x6c\x53\x6f\x4b','\x63\x53\x6f\x66\x57\x51\x33\x64\x4a\x53\x6f\x73\x70\x61\x61\x33','\x57\x36\x78\x63\x49\x6d\x6b\x6f\x6f\x64\x57\x41\x63\x43\x6b\x37','\x72\x4e\x76\x37\x70\x38\x6b\x55\x57\x36\x58\x46\x72\x53\x6b\x69\x57\x34\x50\x73\x57\x34\x4b\x45','\x57\x51\x78\x64\x55\x6d\x6b\x39\x57\x52\x47\x6a\x57\x52\x4a\x63\x51\x71','\x46\x64\x6a\x6f\x63\x4e\x56\x64\x53\x6d\x6b\x31\x61\x30\x33\x64\x4a\x4e\x33\x63\x4b\x71','\x57\x36\x7a\x6e\x79\x6d\x6b\x34\x6e\x71','\x57\x34\x66\x61\x57\x4f\x2f\x64\x52\x72\x30\x54\x57\x34\x4e\x63\x49\x57','\x6c\x66\x68\x64\x4e\x48\x75','\x57\x52\x5a\x64\x48\x43\x6b\x6e\x57\x52\x61\x76','\x57\x34\x4f\x32\x72\x4d\x5a\x63\x56\x43\x6f\x2b\x57\x36\x4e\x64\x48\x71','\x57\x35\x47\x33\x57\x51\x50\x66\x73\x71','\x41\x53\x6b\x55\x57\x4f\x48\x45\x79\x30\x48\x4c\x57\x37\x53','\x57\x50\x42\x64\x48\x38\x6b\x56\x75\x38\x6b\x50\x57\x34\x78\x64\x47\x53\x6b\x4e','\x66\x53\x6b\x30\x57\x36\x6e\x79\x57\x50\x30','\x57\x52\x75\x55\x57\x4f\x61\x6b\x61\x64\x4e\x64\x4a\x75\x43','\x57\x50\x39\x31\x68\x43\x6b\x5a','\x6a\x66\x53\x31\x63\x30\x56\x64\x52\x47\x56\x63\x49\x57','\x57\x36\x47\x44\x78\x6d\x6f\x39\x57\x50\x57\x73\x57\x36\x43\x79','\x57\x52\x74\x64\x4f\x65\x75\x70','\x57\x52\x4a\x64\x51\x6d\x6b\x51\x57\x52\x34\x69\x57\x51\x68\x64\x52\x6d\x6b\x46','\x78\x53\x6b\x47\x73\x57\x6a\x43\x41\x4b\x69','\x43\x6d\x6f\x37\x57\x50\x5a\x63\x54\x47','\x57\x34\x65\x50\x7a\x4d\x33\x63\x55\x38\x6f\x6e\x57\x37\x65','\x6c\x76\x6e\x56\x57\x51\x30\x4c','\x42\x53\x6b\x49\x76\x72\x56\x64\x4b\x71','\x70\x68\x38\x45\x57\x52\x42\x64\x53\x66\x74\x63\x51\x71','\x57\x36\x74\x63\x53\x38\x6b\x6e\x65\x4a\x61','\x57\x4f\x4f\x41\x57\x34\x6c\x63\x4f\x4b\x6a\x54\x57\x50\x74\x64\x49\x57','\x57\x35\x78\x64\x50\x43\x6f\x74\x79\x53\x6b\x4f\x7a\x38\x6f\x68\x78\x71','\x6b\x53\x6f\x69\x65\x43\x6f\x53\x6d\x6d\x6f\x4f\x57\x52\x69','\x62\x32\x6a\x53\x57\x51\x4b\x37','\x65\x68\x33\x63\x53\x75\x54\x43','\x57\x36\x37\x63\x47\x67\x46\x64\x56\x38\x6f\x65\x57\x34\x65\x54\x62\x47','\x6b\x65\x56\x64\x55\x71','\x64\x4d\x65\x4c\x65\x4e\x4f','\x57\x34\x78\x63\x4c\x6d\x6b\x6b\x44\x49\x7a\x73\x64\x6d\x6b\x52','\x41\x30\x72\x2b\x75\x6d\x6f\x52\x62\x38\x6f\x62\x57\x36\x53','\x77\x43\x6f\x30\x66\x74\x53','\x6c\x4b\x7a\x55\x57\x51\x53\x4d\x70\x6d\x6f\x59\x62\x47','\x69\x4e\x54\x2f\x77\x61','\x57\x50\x6d\x67\x57\x35\x6c\x63\x55\x66\x30\x4c\x57\x35\x6c\x63\x4b\x33\x4e\x64\x56\x76\x79','\x72\x47\x48\x54\x57\x34\x4f\x58','\x57\x34\x74\x64\x47\x53\x6f\x45\x79\x6d\x6b\x4c','\x6b\x77\x6d\x74\x63\x67\x34','\x41\x53\x6b\x53\x57\x34\x39\x77\x42\x76\x79\x32','\x70\x6d\x6b\x72\x57\x36\x48\x70\x57\x51\x78\x63\x51\x38\x6b\x74','\x57\x52\x6c\x64\x53\x30\x61\x63\x57\x34\x47\x4b\x57\x37\x78\x63\x51\x61','\x7a\x6d\x6b\x46\x73\x47\x5a\x64\x55\x43\x6f\x7a\x64\x58\x38','\x70\x48\x68\x64\x47\x6d\x6b\x74\x41\x71','\x57\x34\x33\x64\x53\x38\x6f\x75\x79\x6d\x6f\x4d\x44\x43\x6f\x6f\x71\x47','\x57\x4f\x4f\x42\x57\x4f\x46\x64\x52\x6d\x6f\x64','\x57\x51\x2f\x63\x50\x43\x6b\x4f\x57\x35\x4b','\x57\x37\x74\x63\x4c\x4b\x33\x64\x53\x38\x6f\x6a\x57\x35\x57\x32\x65\x71','\x6a\x59\x71\x73\x42\x38\x6f\x6c','\x57\x36\x52\x64\x56\x43\x6b\x4d\x57\x52\x43\x70\x57\x52\x42\x63\x54\x43\x6f\x64','\x7a\x33\x7a\x51\x78\x53\x6b\x53\x6c\x4b\x37\x63\x53\x61','\x57\x52\x2f\x63\x4c\x75\x46\x64\x56\x53\x6f\x4f\x57\x34\x65\x57','\x57\x50\x76\x31\x68\x53\x6b\x35\x73\x58\x57\x57\x57\x4f\x4f','\x57\x35\x34\x36\x61\x48\x46\x63\x54\x71','\x57\x50\x74\x63\x52\x5a\x68\x63\x52\x66\x75','\x57\x50\x33\x64\x54\x6d\x6b\x69\x57\x52\x69\x70','\x64\x38\x6f\x68\x57\x36\x4a\x64\x4a\x53\x6f\x77\x6a\x58\x34\x33','\x57\x52\x70\x63\x54\x43\x6b\x4f','\x63\x38\x6f\x36\x57\x37\x4a\x64\x47\x53\x6f\x67','\x57\x34\x75\x57\x57\x37\x42\x64\x49\x31\x2f\x64\x4d\x47\x6d\x79','\x45\x77\x65\x62\x57\x51\x56\x64\x4f\x75\x78\x63\x4b\x33\x65','\x70\x75\x4f\x2b\x6b\x31\x64\x64\x4f\x72\x37\x63\x47\x47','\x57\x52\x5a\x63\x51\x53\x6b\x71\x57\x35\x6c\x64\x49\x61','\x57\x36\x46\x64\x54\x38\x6f\x6f\x7a\x53\x6b\x55','\x71\x53\x6b\x69\x57\x34\x31\x76\x79\x30\x47\x38\x57\x35\x38','\x57\x34\x68\x64\x55\x6d\x6f\x69\x74\x38\x6b\x51','\x57\x51\x71\x33\x7a\x57\x33\x63\x4e\x6d\x6f\x6c\x57\x35\x71','\x57\x50\x78\x64\x54\x57\x72\x75\x57\x36\x70\x64\x55\x53\x6f\x76\x57\x52\x38','\x57\x50\x78\x64\x53\x57\x4b\x74\x57\x35\x56\x63\x54\x6d\x6b\x62','\x63\x53\x6b\x50\x79\x48\x4c\x68\x41\x4d\x2f\x63\x4d\x71','\x57\x4f\x4b\x79\x57\x50\x42\x64\x52\x6d\x6f\x44\x6e\x47\x44\x31','\x57\x51\x71\x7a\x75\x38\x6f\x52\x57\x35\x69\x6c\x57\x37\x53\x41','\x57\x36\x4f\x59\x6e\x62\x4e\x63\x51\x61','\x57\x34\x61\x4a\x76\x33\x64\x63\x56\x43\x6f\x65\x57\x36\x33\x64\x4b\x47','\x57\x36\x5a\x63\x52\x38\x6f\x6c\x57\x50\x35\x6f','\x66\x38\x6b\x73\x65\x53\x6f\x72\x6f\x61','\x72\x53\x6b\x62\x57\x52\x74\x63\x4b\x6d\x6b\x67\x79\x59\x79\x51\x57\x34\x2f\x64\x49\x38\x6f\x63\x46\x57','\x76\x6d\x6b\x64\x57\x35\x52\x63\x4a\x6d\x6b\x63','\x57\x35\x52\x63\x50\x53\x6f\x37\x57\x52\x54\x6b','\x57\x51\x56\x63\x55\x43\x6b\x30\x57\x35\x38','\x76\x59\x79\x4a\x46\x43\x6f\x55\x57\x52\x71\x63\x6b\x47','\x57\x51\x30\x6f\x71\x6d\x6f\x32\x57\x34\x34','\x57\x34\x64\x63\x48\x6d\x6f\x38\x57\x35\x62\x52\x57\x34\x50\x69\x78\x57','\x66\x68\x69\x41\x57\x52\x4a\x64\x54\x4b\x4e\x63\x54\x78\x65','\x57\x36\x38\x71\x62\x5a\x6c\x63\x4f\x57','\x57\x51\x53\x74\x78\x38\x6f\x50\x57\x34\x4b\x77\x57\x37\x61\x38','\x57\x36\x38\x4a\x73\x53\x6f\x4b\x64\x48\x38\x37\x57\x4f\x65\x51\x46\x5a\x75','\x57\x4f\x69\x6e\x57\x37\x4c\x71\x57\x4f\x42\x63\x4f\x6d\x6f\x45\x7a\x61','\x57\x35\x48\x31\x73\x67\x2f\x63\x52\x6d\x6f\x63\x57\x35\x4a\x64\x53\x57','\x75\x43\x6b\x49\x57\x37\x4e\x63\x49\x43\x6b\x71\x57\x37\x37\x63\x54\x4c\x6d','\x57\x37\x39\x57\x65\x64\x78\x63\x47\x6d\x6f\x7a\x57\x37\x37\x64\x49\x38\x6f\x2f','\x6b\x4c\x46\x64\x4f\x58\x6a\x39\x57\x34\x46\x63\x4a\x61','\x57\x51\x47\x6a\x57\x37\x46\x63\x53\x4a\x56\x63\x4f\x4b\x61\x37','\x57\x52\x34\x54\x71\x72\x68\x63\x4a\x38\x6f\x67\x57\x35\x34','\x79\x61\x7a\x46\x65\x47\x57\x74\x6b\x67\x43','\x6b\x48\x57\x57\x63\x53\x6b\x53\x72\x38\x6f\x69','\x64\x38\x6b\x41\x57\x37\x33\x64\x4a\x43\x6f\x62\x6a\x47\x6d\x38','\x57\x51\x64\x63\x48\x61\x42\x63\x55\x31\x37\x64\x4f\x67\x34\x31','\x7a\x71\x35\x79\x57\x35\x43\x30','\x57\x37\x78\x63\x48\x71\x74\x63\x53\x65\x70\x64\x54\x4c\x76\x34','\x57\x37\x50\x6c\x57\x51\x74\x64\x56\x48\x4f','\x57\x37\x75\x4b\x57\x50\x54\x56\x43\x57','\x57\x50\x75\x76\x57\x4f\x4a\x64\x52\x61','\x71\x38\x6b\x37\x44\x64\x72\x78\x45\x30\x46\x63\x47\x57','\x65\x6d\x6f\x68\x57\x36\x4a\x63\x4c\x71','\x57\x34\x4b\x76\x57\x50\x39\x61\x46\x61','\x6a\x64\x5a\x64\x4c\x57','\x57\x4f\x74\x63\x4e\x43\x6b\x2b\x57\x35\x5a\x64\x53\x53\x6b\x55\x77\x43\x6b\x44','\x57\x52\x50\x58\x68\x43\x6b\x34\x78\x61\x65\x57\x57\x50\x30','\x57\x52\x64\x63\x56\x38\x6f\x54\x57\x34\x76\x31\x57\x34\x44\x33\x57\x35\x47','\x6d\x72\x47\x4b\x67\x38\x6f\x4c\x61\x6d\x6f\x76\x57\x36\x30','\x6a\x4e\x6d\x57\x78\x49\x53','\x57\x52\x35\x58\x67\x53\x6b\x36\x74\x62\x43\x73\x57\x51\x53','\x57\x37\x38\x37\x7a\x77\x4a\x63\x4b\x57','\x57\x36\x4b\x43\x62\x4a\x46\x63\x4a\x59\x2f\x64\x50\x73\x43','\x57\x50\x75\x74\x57\x4f\x6c\x64\x50\x38\x6f\x6f\x6c\x62\x75','\x63\x43\x6f\x6d\x57\x36\x4e\x64\x49\x43\x6f\x57','\x7a\x5a\x31\x4c\x57\x35\x38\x5a','\x78\x53\x6f\x30\x57\x52\x4a\x63\x4c\x63\x61','\x45\x53\x6f\x6e\x66\x62\x31\x76','\x57\x35\x5a\x63\x47\x6d\x6b\x4f\x62\x57\x48\x43\x63\x62\x30','\x68\x33\x6c\x64\x56\x71\x7a\x45','\x79\x6d\x6b\x68\x57\x35\x5a\x63\x4c\x43\x6b\x4c','\x79\x57\x58\x68\x68\x57\x4f\x75\x6a\x68\x61','\x57\x35\x42\x63\x54\x38\x6b\x6e\x70\x4d\x72\x76\x63\x53\x6b\x53','\x57\x36\x52\x64\x55\x53\x6b\x47\x57\x51\x38\x6f\x57\x52\x52\x63\x55\x43\x6b\x6e','\x57\x51\x53\x52\x76\x62\x5a\x63\x49\x38\x6f\x4a\x57\x34\x70\x64\x53\x61','\x57\x4f\x64\x64\x4f\x47\x65\x65\x57\x35\x42\x63\x52\x53\x6f\x77\x57\x51\x47','\x57\x51\x42\x63\x53\x73\x4e\x63\x49\x68\x71','\x74\x53\x6b\x62\x57\x35\x52\x64\x48\x38\x6f\x4d\x70\x62\x30\x38','\x44\x38\x6b\x58\x57\x35\x53','\x72\x38\x6b\x51\x46\x48\x48\x66\x41\x65\x6d','\x64\x43\x6b\x6b\x70\x53\x6f\x7a\x63\x57','\x57\x52\x53\x69\x57\x36\x37\x63\x56\x5a\x68\x63\x4e\x65\x61','\x57\x36\x64\x63\x47\x6d\x6b\x79','\x57\x34\x64\x63\x49\x53\x6b\x39\x61\x58\x6a\x6e\x43\x61','\x6c\x73\x78\x64\x49\x38\x6f\x45\x77\x77\x4c\x49\x65\x47','\x57\x51\x50\x31\x61\x38\x6b\x33\x75\x62\x43','\x57\x52\x47\x62\x57\x37\x31\x44\x57\x52\x52\x63\x56\x43\x6b\x6e\x41\x71','\x57\x4f\x4b\x45\x57\x35\x76\x42\x57\x4f\x65'];_0x3007=function(){return _0x4cc267;};return _0x3007();}const _0x495819=_0x20bb;(function(_0x4c56a6,_0x314df8){const _0x290638=_0x20bb,_0x2c276a=_0x4c56a6();while(!![]){try{const _0x34f104=-parseInt(_0x290638(0x2d2,'\x4c\x78\x58\x28'))/(-0xa9*-0x1+-0x75d+0x6b5)*(parseInt(_0x290638(0x281,'\x41\x6b\x45\x57'))/(-0x9cf+-0x3*-0x2e7+0x11c))+-parseInt(_0x290638(0x16b,'\x59\x45\x71\x33'))/(0xd46+-0x115e+0x1*0x41b)+-parseInt(_0x290638(0x30c,'\x37\x78\x4e\x77'))/(0x71*0x11+0xbcd*0x3+-0x2ae4)*(-parseInt(_0x290638(0x160,'\x41\x6b\x45\x57'))/(-0x1773+0xae9+0x1*0xc8f))+parseInt(_0x290638(0x1c8,'\x53\x51\x36\x4e'))/(0x1f*-0x73+-0x193f*-0x1+-0xb4c)*(parseInt(_0x290638(0x1c4,'\x66\x34\x55\x69'))/(0x20e8+0x74*-0x6+-0x1e29))+-parseInt(_0x290638(0x1ba,'\x2a\x31\x68\x69'))/(-0x105*0x1+0x23a6+0x1*-0x2299)*(-parseInt(_0x290638(0x230,'\x2a\x57\x4e\x70'))/(0x1d17+0x7*0x2f6+-0x31c8))+parseInt(_0x290638(0x203,'\x33\x77\x40\x7a'))/(-0x113f+0x1544+-0x1*0x3fb)+parseInt(_0x290638(0x25a,'\x5b\x59\x36\x33'))/(-0x4*-0x40a+0x4fd*-0x1+-0xb20)*(-parseInt(_0x290638(0x332,'\x51\x66\x72\x31'))/(-0xb09+0x181*0xb+-0x576));if(_0x34f104===_0x314df8)break;else _0x2c276a['push'](_0x2c276a['shift']());}catch(_0x24ce34){_0x2c276a['push'](_0x2c276a['shift']());}}}(_0x3007,-0x8d305+-0x34*-0x4be+0xd91cd));const _0xb477db=(function(){const _0x47ed47={'\x4f\x4b\x6c\x48\x57':function(_0x4d0036){return _0x4d0036();},'\x62\x6e\x50\x6d\x66':function(_0x35c61d,_0x361672){return _0x35c61d===_0x361672;}};let _0x5c56bc=!![];return function(_0x35e400,_0x51d5ab){const _0x4a518d=_0x20bb,_0x2fff35={'\x4b\x6e\x72\x4a\x6c':function(_0x2b6221){return _0x47ed47['\x4f\x4b\x6c\x48\x57'](_0x2b6221);},'\x79\x4f\x46\x72\x57':function(_0x2f0239,_0x8b58f9){const _0x47b2f8=_0x20bb;return _0x47ed47[_0x47b2f8(0x337,'\x71\x44\x23\x79')](_0x2f0239,_0x8b58f9);},'\x57\x4c\x72\x50\x4b':'\x64\x62\x4e\x70\x52','\x74\x4f\x75\x6a\x75':_0x4a518d(0x313,'\x24\x5d\x5d\x36')},_0x605850=_0x5c56bc?function(){const _0x33f9be=_0x4a518d;if(_0x2fff35['\x79\x4f\x46\x72\x57'](_0x2fff35[_0x33f9be(0x321,'\x25\x31\x2a\x6d')],_0x33f9be(0x305,'\x6c\x31\x25\x30'))){const _0x46fa66={};_0x46fa66[_0x33f9be(0x299,'\x68\x31\x5d\x78')]=_0x3c8c3f,_0x46fa66[_0x33f9be(0x2a0,'\x5d\x24\x58\x55')]=_0x347411,_0x46fa66[_0x33f9be(0x15b,'\x44\x33\x23\x73')+'\x69\x74\x79\x5f\x73\x74\x61\x74'+'\x65']=_0x446093,_0x46fa66[_0x33f9be(0x2c3,'\x44\x33\x23\x73')+_0x33f9be(0x2b1,'\x74\x5a\x63\x71')]=_0x5c9251,_0x46fa66[_0x33f9be(0x3ac,'\x36\x61\x65\x70')]=_0x452bbc,_0x46fa66['\x64\x72\x69\x66\x74\x45\x6e\x61'+_0x33f9be(0x331,'\x4f\x71\x65\x53')]=_0x2f9f37,_0x46fa66[_0x33f9be(0x39b,'\x5a\x62\x37\x67')+'\x42\x79']=_0x153e0c,_0x46fa66[_0x33f9be(0x1b7,'\x4c\x78\x58\x28')+_0x33f9be(0x18e,'\x5d\x53\x4b\x71')]=_0x17181f,_0x46fa66[_0x33f9be(0x345,'\x25\x31\x2a\x6d')+_0x33f9be(0x394,'\x79\x4c\x48\x75')]=_0x451ec8,_0x46fa66[_0x33f9be(0x250,'\x66\x34\x55\x69')+_0x33f9be(0x2c7,'\x75\x65\x72\x51')]=_0x596a7a,_0x405e76(_0x46fa66);}else{if(_0x51d5ab){if(_0x2fff35[_0x33f9be(0x1a8,'\x2a\x31\x68\x69')]===_0x2fff35[_0x33f9be(0x26e,'\x63\x28\x5a\x77')]){const _0x1687cd=_0x51d5ab[_0x33f9be(0x2db,'\x53\x63\x28\x21')](_0x35e400,arguments);return _0x51d5ab=null,_0x1687cd;}else{_0x17700d[_0x33f9be(0x28c,'\x24\x5d\x5d\x36')](_0x33f9be(0x327,'\x4a\x6c\x48\x26')+_0x33f9be(0x338,'\x71\x44\x23\x79')+_0x33f9be(0x1e9,'\x73\x46\x50\x58')+_0x33f9be(0x32e,'\x74\x5a\x63\x71')+_0x33f9be(0x2bb,'\x71\x44\x23\x79')+_0x19a627[_0x33f9be(0x249,'\x79\x4c\x48\x75')]),_0x1dd0ae[_0x33f9be(0x243,'\x40\x34\x59\x24')]('\x5b\x4d\x65\x6d\x6f\x72\x79\x47'+'\x72\x61\x70\x68\x5d\x20\x52\x65'+_0x33f9be(0x2b5,'\x37\x78\x4e\x77')+'\x6f\x20\x65\x76\x6f\x6c\x76\x65'+_0x33f9be(0x163,'\x25\x31\x2a\x6d')+_0x33f9be(0x1be,'\x59\x45\x71\x33')+_0x33f9be(0x2a2,'\x5d\x53\x4b\x71')+_0x33f9be(0x367,'\x71\x44\x23\x79')+_0x2fff35[_0x33f9be(0x1af,'\x4f\x71\x65\x53')](_0x5f3dd8));throw new _0x3f14b2(_0x33f9be(0x1a2,'\x66\x34\x55\x69')+_0x33f9be(0x1f6,'\x25\x31\x2a\x6d')+'\x74\x68\x65\x73\x69\x73\x20\x77'+_0x33f9be(0x158,'\x41\x6b\x45\x57')+_0x33f9be(0x194,'\x24\x5d\x5d\x36')+_0x296367[_0x33f9be(0x249,'\x79\x4c\x48\x75')]);}}}}:function(){};return _0x5c56bc=![],_0x605850;};}()),_0x1e8021=_0xb477db(this,function(){const _0x2bb1d6=_0x20bb,_0x10ee90={};_0x10ee90[_0x2bb1d6(0x270,'\x79\x4c\x48\x75')]=_0x2bb1d6(0x285,'\x36\x61\x65\x70')+_0x2bb1d6(0x396,'\x44\x33\x23\x73');const _0x21f1c8=_0x10ee90;return _0x1e8021[_0x2bb1d6(0x36f,'\x78\x29\x45\x73')]()['\x73\x65\x61\x72\x63\x68'](_0x2bb1d6(0x184,'\x4f\x61\x76\x33')+_0x2bb1d6(0x368,'\x58\x71\x25\x79'))['\x74\x6f\x53\x74\x72\x69\x6e\x67']()[_0x2bb1d6(0x23d,'\x53\x51\x36\x4e')+_0x2bb1d6(0x208,'\x69\x72\x40\x55')](_0x1e8021)[_0x2bb1d6(0x37a,'\x6c\x31\x25\x30')](_0x21f1c8['\x77\x70\x4b\x78\x4e']);});_0x1e8021();function _0x20bb(_0x23b47d,_0x32378a){_0x23b47d=_0x23b47d-(0x22ec+-0x2219*-0x1+-0x5*0xd8a);const _0x43ef4d=_0x3007();let _0x32e314=_0x43ef4d[_0x23b47d];if(_0x20bb['\x73\x7a\x4a\x43\x78\x52']===undefined){var _0x205dad=function(_0x52f659){const _0x155895='\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 _0x3096a2='',_0x4fa3ed='',_0x1a5e0c=_0x3096a2+_0x205dad,_0x2abedf=(''+function(){return-0x4*0x9c+0x1*0x2429+0x61*-0x59;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0xf3*0x7+-0x12*-0xb3+0x1*-0x5f0);for(let _0x235cbc=-0x2005+-0x2204+-0x45*-0xf5,_0x15ad71,_0x498dad,_0x49c257=-0x1*0x8eb+-0x2055+0x1e0*0x16;_0x498dad=_0x52f659['\x63\x68\x61\x72\x41\x74'](_0x49c257++);~_0x498dad&&(_0x15ad71=_0x235cbc%(0x1f40+0x2697+0x7d*-0x8f)?_0x15ad71*(0x946*0x4+-0x2451+-0x87*0x1)+_0x498dad:_0x498dad,_0x235cbc++%(0xcc3+-0x39e*-0x7+-0x2611))?_0x3096a2+=_0x2abedf||_0x1a5e0c['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x49c257+(0x1*0x13f3+-0x1e16+0xa2d))-(0x1abd*-0x1+0x6*-0x238+0x2817)!==0x14ea+0x24a0+-0x398a?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x1*-0x21d+-0x125b+-0x113d*-0x1&_0x15ad71>>(-(-0x2113+-0x1*0x1eaf+0x3fc4)*_0x235cbc&-0x845+-0x39b*-0x9+-0x1828)):_0x235cbc:0x1*0x17cf+-0x1669*-0x1+-0x2e38){_0x498dad=_0x155895['\x69\x6e\x64\x65\x78\x4f\x66'](_0x498dad);}for(let _0x1dc593=0x76c+-0x2341+0x1bd5,_0x6e0a26=_0x3096a2['\x6c\x65\x6e\x67\x74\x68'];_0x1dc593<_0x6e0a26;_0x1dc593++){_0x4fa3ed+='\x25'+('\x30\x30'+_0x3096a2['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1dc593)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x26f6+0xc9c*0x1+-0x1*0x3382))['\x73\x6c\x69\x63\x65'](-(0x2634+-0x2*0x53d+-0x4*0x6ee));}return decodeURIComponent(_0x4fa3ed);};const _0x38e3c9=function(_0x4ace56,_0x494e90){let _0xb57448=[],_0x129df3=0x1*0xdab+0x1f*0x57+-0x1834,_0x105cd1,_0x39726e='';_0x4ace56=_0x205dad(_0x4ace56);let _0x3cb8ea;for(_0x3cb8ea=0x15ab*-0x1+-0x1427+0x65*0x6a;_0x3cb8ea<0x1b2f+0xd*-0x5d+-0x1576;_0x3cb8ea++){_0xb57448[_0x3cb8ea]=_0x3cb8ea;}for(_0x3cb8ea=0xb77+-0x2*0x779+0x37b;_0x3cb8ea<-0x1cc+0x1f39+-0x1c6d;_0x3cb8ea++){_0x129df3=(_0x129df3+_0xb57448[_0x3cb8ea]+_0x494e90['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3cb8ea%_0x494e90['\x6c\x65\x6e\x67\x74\x68']))%(-0x1ef2+-0x130f+0x3301),_0x105cd1=_0xb57448[_0x3cb8ea],_0xb57448[_0x3cb8ea]=_0xb57448[_0x129df3],_0xb57448[_0x129df3]=_0x105cd1;}_0x3cb8ea=-0x29*-0xe9+-0x1344+-0x120d,_0x129df3=-0x932+-0x701+0x1033;for(let _0x35fa8b=-0x141c+0x146*0x1c+0x2*-0x7c6;_0x35fa8b<_0x4ace56['\x6c\x65\x6e\x67\x74\x68'];_0x35fa8b++){_0x3cb8ea=(_0x3cb8ea+(0x26ce+0x290*0x2+-0x41*0xad))%(-0x1bdc+0xef5+0xde7),_0x129df3=(_0x129df3+_0xb57448[_0x3cb8ea])%(0x94e+0x7*-0x1e0+-0x1*-0x4d2),_0x105cd1=_0xb57448[_0x3cb8ea],_0xb57448[_0x3cb8ea]=_0xb57448[_0x129df3],_0xb57448[_0x129df3]=_0x105cd1,_0x39726e+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x4ace56['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x35fa8b)^_0xb57448[(_0xb57448[_0x3cb8ea]+_0xb57448[_0x129df3])%(0x2499+0x1907+-0x3ca0)]);}return _0x39726e;};_0x20bb['\x53\x7a\x68\x71\x52\x59']=_0x38e3c9,_0x20bb['\x62\x6f\x56\x6e\x5a\x43']={},_0x20bb['\x73\x7a\x4a\x43\x78\x52']=!![];}const _0x538f41=_0x43ef4d[0x8e6+0x13d4+-0x1cba],_0x48b304=_0x23b47d+_0x538f41,_0x2f2622=_0x20bb['\x62\x6f\x56\x6e\x5a\x43'][_0x48b304];if(!_0x2f2622){if(_0x20bb['\x6a\x71\x4e\x4a\x79\x57']===undefined){const _0x2ee0cc=function(_0x27fb35){this['\x66\x71\x45\x55\x65\x6e']=_0x27fb35,this['\x6a\x58\x62\x4a\x66\x4e']=[-0x1415*-0x1+-0xf8d+-0x3d*0x13,0x21c7+0x698+-0x3*0xd75,-0x3*0x1b7+0xab+0x47a*0x1],this['\x4b\x4c\x79\x6b\x58\x75']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x58\x6b\x57\x59\x5a\x63']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x76\x58\x64\x63\x55\x75']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x2ee0cc['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x4c\x71\x41\x55\x50\x6c']=function(){const _0x466547=new RegExp(this['\x58\x6b\x57\x59\x5a\x63']+this['\x76\x58\x64\x63\x55\x75']),_0x1a74a8=_0x466547['\x74\x65\x73\x74'](this['\x4b\x4c\x79\x6b\x58\x75']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x6a\x58\x62\x4a\x66\x4e'][-0x8c1+-0x269d+0x2f5f]:--this['\x6a\x58\x62\x4a\x66\x4e'][0x84b*-0x2+0x194a+-0x8b4];return this['\x78\x4f\x59\x63\x6b\x73'](_0x1a74a8);},_0x2ee0cc['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x78\x4f\x59\x63\x6b\x73']=function(_0x4aa1b9){if(!Boolean(~_0x4aa1b9))return _0x4aa1b9;return this['\x50\x4d\x51\x6f\x6a\x70'](this['\x66\x71\x45\x55\x65\x6e']);},_0x2ee0cc['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x50\x4d\x51\x6f\x6a\x70']=function(_0x30ed52){for(let _0x337b1b=-0xa61+0x4b7+0x5aa,_0x11b547=this['\x6a\x58\x62\x4a\x66\x4e']['\x6c\x65\x6e\x67\x74\x68'];_0x337b1b<_0x11b547;_0x337b1b++){this['\x6a\x58\x62\x4a\x66\x4e']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x11b547=this['\x6a\x58\x62\x4a\x66\x4e']['\x6c\x65\x6e\x67\x74\x68'];}return _0x30ed52(this['\x6a\x58\x62\x4a\x66\x4e'][-0x1c8+-0x8ee+0xab6*0x1]);},(''+function(){return 0x1cbf*0x1+-0x10b2+0x269*-0x5;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x1b9+0xc86+-0xe3e)&&new _0x2ee0cc(_0x20bb)['\x4c\x71\x41\x55\x50\x6c'](),_0x20bb['\x6a\x71\x4e\x4a\x79\x57']=!![];}_0x32e314=_0x20bb['\x53\x7a\x68\x71\x52\x59'](_0x32e314,_0x32378a),_0x20bb['\x62\x6f\x56\x6e\x5a\x43'][_0x48b304]=_0x32e314;}else _0x32e314=_0x2f2622;return _0x32e314;}'use strict';const {selectGeneAndCapsule:_0x327f13}=require(_0x495819(0x33b,'\x61\x35\x79\x55')+_0x495819(0x223,'\x61\x35\x79\x55')+'\x6f\x72'),{buildMutation:_0xc50db6,isHighRiskMutationAllowed:_0x361d4b}=require(_0x495819(0x324,'\x42\x70\x2a\x67')+_0x495819(0x2d3,'\x5a\x62\x37\x67')+'\x6f\x6e'),{selectPersonalityForRun:_0x418d5f}=require('\x2e\x2e\x2f\x2e\x2e\x2f\x67\x65'+_0x495819(0x1ce,'\x2a\x31\x68\x69')+_0x495819(0x291,'\x5d\x53\x4b\x71')),_0x7eb7bb=require(_0x495819(0x287,'\x61\x2a\x4c\x6c')+_0x495819(0x175,'\x5b\x59\x36\x33')+_0x495819(0x39a,'\x69\x72\x40\x55')+_0x495819(0x165,'\x33\x77\x40\x7a')),{recordHypothesis:_0x118a66,recordAttempt:_0x2e852f,memoryGraphPath:_0x41cd5a}=_0x7eb7bb,{expandSignals:_0x113a22}=require(_0x495819(0x386,'\x2a\x31\x68\x69')+_0x495819(0x222,'\x6d\x4d\x4e\x56')+_0x495819(0x213,'\x73\x46\x50\x58')+'\x73'),{resolveStrategy:_0x31faa5}=require(_0x495819(0x24b,'\x53\x63\x28\x21')+_0x495819(0x353,'\x75\x65\x72\x51')+'\x67\x79');function _0x5c9f7d(..._0x213702){const _0x4782bc=_0x495819,_0x3ad49e={'\x79\x54\x53\x77\x74':function(_0x436021,_0xe9e4bf){return _0x436021(_0xe9e4bf);},'\x55\x47\x67\x6a\x74':_0x4782bc(0x38d,'\x61\x61\x76\x24'),'\x51\x4c\x7a\x56\x5a':_0x4782bc(0x1ea,'\x71\x44\x23\x79')+'\x5d'};if(_0x3ad49e['\x79\x54\x53\x77\x74'](String,process.env.EVOLVER_VERBOSE||'')[_0x4782bc(0x2e8,'\x71\x44\x23\x79')+_0x4782bc(0x2be,'\x61\x2a\x4c\x6c')]()!==_0x3ad49e[_0x4782bc(0x2f7,'\x5d\x53\x4b\x71')])return;_0x213702['\x75\x6e\x73\x68\x69\x66\x74'](_0x3ad49e[_0x4782bc(0x2e6,'\x69\x72\x40\x55')]),console[_0x4782bc(0x372,'\x74\x5a\x63\x71')][_0x4782bc(0x156,'\x36\x61\x65\x70')](console,_0x213702);}function _0x4ba259(_0x317a56){const _0x4207da=_0x495819,_0x26b620={'\x70\x52\x45\x69\x4c':function(_0x591dd6,_0x23da7d){return _0x591dd6(_0x23da7d);},'\x66\x56\x4e\x42\x74':function(_0x52a0cf,_0x3bc218){return _0x52a0cf!==_0x3bc218;},'\x70\x72\x42\x67\x62':function(_0x47bb3c,_0x684e24){return _0x47bb3c(_0x684e24);},'\x59\x56\x48\x74\x65':_0x4207da(0x17b,'\x56\x75\x74\x64'),'\x53\x77\x6f\x77\x71':function(_0x54564e,_0x3f0295){return _0x54564e===_0x3f0295;},'\x45\x4f\x77\x4b\x65':_0x4207da(0x275,'\x41\x49\x6b\x6c'),'\x76\x48\x44\x6b\x73':function(_0x1a7191,_0x59f417){return _0x1a7191+_0x59f417;},'\x5a\x50\x6a\x77\x4c':function(_0x2fc99a,_0x5f1e07){return _0x2fc99a(_0x5f1e07);},'\x72\x48\x46\x6c\x6d':_0x4207da(0x25c,'\x63\x28\x5a\x77')+_0x4207da(0x388,'\x5b\x59\x36\x33'),'\x50\x61\x50\x67\x56':_0x4207da(0x3ab,'\x5b\x59\x36\x33'),'\x54\x56\x63\x4e\x66':_0x4207da(0x239,'\x72\x47\x5d\x4a'),'\x4b\x47\x50\x70\x76':_0x4207da(0x2fb,'\x53\x63\x28\x21'),'\x44\x72\x5a\x73\x7a':_0x4207da(0x24e,'\x4f\x71\x65\x53'),'\x59\x62\x50\x47\x45':function(_0x25fd3e,_0x451a31){return _0x25fd3e!==_0x451a31;},'\x54\x4e\x50\x4c\x63':function(_0x95bae6,_0x4a8540){return _0x95bae6-_0x4a8540;},'\x63\x75\x47\x6c\x65':function(_0x49eb7f,_0x5c0d1c){return _0x49eb7f>=_0x5c0d1c;},'\x76\x6b\x76\x67\x59':_0x4207da(0x1f7,'\x66\x34\x55\x69'),'\x4e\x54\x64\x65\x63':function(_0x37187a,_0x3e95dd){return _0x37187a-_0x3e95dd;},'\x59\x78\x66\x5a\x6b':_0x4207da(0x2a8,'\x61\x2a\x4c\x6c'),'\x76\x56\x68\x45\x49':function(_0x3893b3,_0x34c2a3,_0xa3f9e6){return _0x3893b3(_0x34c2a3,_0xa3f9e6);},'\x78\x5a\x6f\x4f\x45':_0x4207da(0x23c,'\x5d\x53\x4b\x71')+_0x4207da(0x2ac,'\x61\x61\x76\x24')+_0x4207da(0x1bd,'\x4d\x41\x49\x6d'),'\x66\x4b\x6e\x56\x4b':_0x4207da(0x27e,'\x68\x31\x5d\x78')+'\x63\x6c\x65\x5f\x6c\x6f\x6f\x70'+_0x4207da(0x2f0,'\x6c\x31\x25\x30')+'\x64','\x47\x58\x72\x78\x5a':function(_0x25f4f4,_0x51651d){return _0x25f4f4>=_0x51651d;},'\x4c\x67\x4f\x74\x41':_0x4207da(0x253,'\x6d\x4d\x4e\x56')+'\x72','\x55\x66\x7a\x59\x64':function(_0x21f7b2,_0x567857){return _0x21f7b2>=_0x567857;},'\x6d\x71\x42\x49\x63':function(_0x32e825,_0x341d85){return _0x32e825(_0x341d85);},'\x73\x4c\x73\x4b\x4d':function(_0x17ec95,_0x32aacf){return _0x17ec95+_0x32aacf;},'\x5a\x4a\x73\x7a\x74':function(_0x2d0331,_0x3fc45f){return _0x2d0331+_0x3fc45f;},'\x54\x71\x52\x52\x57':_0x4207da(0x1db,'\x69\x72\x40\x55')+_0x4207da(0x1b2,'\x61\x61\x76\x24'),'\x79\x4c\x46\x67\x71':_0x4207da(0x286,'\x6c\x31\x25\x30')+_0x4207da(0x398,'\x4c\x78\x58\x28')+_0x4207da(0x16a,'\x71\x44\x23\x79')+_0x4207da(0x391,'\x71\x44\x23\x79')+_0x4207da(0x2a4,'\x53\x51\x36\x4e')+_0x4207da(0x241,'\x78\x29\x45\x73')+_0x4207da(0x22f,'\x5a\x62\x37\x67')+'\x61\x69\x72\x2f\x6f\x70\x74\x69'+_0x4207da(0x27d,'\x78\x29\x45\x73'),'\x64\x53\x49\x52\x49':'\x53\x65\x6c\x65\x63\x74\x65\x64'+_0x4207da(0x211,'\x71\x44\x23\x79')+'\x20\x68\x69\x67\x68\x20\x72\x69'+_0x4207da(0x174,'\x36\x61\x65\x70')+_0x4207da(0x26f,'\x58\x71\x25\x79')+_0x4207da(0x2d4,'\x47\x6c\x29\x4b')+_0x4207da(0x262,'\x61\x61\x76\x24')+_0x4207da(0x1fd,'\x51\x66\x72\x31')+_0x4207da(0x32a,'\x33\x77\x40\x7a')+_0x4207da(0x17a,'\x5a\x62\x37\x67')+_0x4207da(0x2dc,'\x36\x61\x65\x70')+'\x6c\x65\x73\x74\x20\x76\x69\x61'+_0x4207da(0x36a,'\x74\x5a\x63\x71')+_0x4207da(0x330,'\x2a\x31\x68\x69'),'\x58\x79\x6a\x4e\x4e':function(_0x87ae62,_0x1c8e84){return _0x87ae62>=_0x1c8e84;},'\x65\x57\x50\x70\x4c':_0x4207da(0x1f8,'\x75\x65\x72\x51')+_0x4207da(0x159,'\x74\x5a\x63\x71')+_0x4207da(0x2c0,'\x74\x5a\x63\x71')+'\x74\x65\x63\x74\x65\x64\x3b\x20'+_0x4207da(0x26c,'\x5b\x59\x36\x33')+_0x4207da(0x22b,'\x4f\x61\x76\x33')+_0x4207da(0x17c,'\x42\x70\x2a\x67')+_0x4207da(0x161,'\x51\x66\x72\x31')+_0x4207da(0x218,'\x37\x78\x4e\x77'),'\x74\x6d\x51\x49\x63':_0x4207da(0x15a,'\x75\x65\x72\x51')+_0x4207da(0x344,'\x47\x6c\x29\x4b')+_0x4207da(0x27b,'\x75\x65\x72\x51')+_0x4207da(0x2a6,'\x68\x31\x5d\x78')+'\x20'},_0x242613=Array['\x69\x73\x41\x72\x72\x61\x79'](_0x317a56&&_0x317a56[_0x4207da(0x1e6,'\x40\x34\x59\x24')+_0x4207da(0x22c,'\x36\x61\x65\x70')])?_0x317a56[_0x4207da(0x303,'\x5a\x62\x37\x67')+_0x4207da(0x190,'\x2a\x57\x4e\x70')]:[],_0x5f1519=_0x317a56&&_0x317a56[_0x4207da(0x21f,'\x25\x31\x2a\x6d')+_0x4207da(0x380,'\x36\x61\x65\x70')]?_0x317a56[_0x4207da(0x226,'\x68\x31\x5d\x78')+_0x4207da(0x201,'\x6d\x4d\x4e\x56')]:null,_0x191932=Array[_0x4207da(0x385,'\x44\x33\x23\x73')](_0x317a56&&_0x317a56['\x73\x69\x67\x6e\x61\x6c\x73'])?_0x317a56['\x73\x69\x67\x6e\x61\x6c\x73']:[],_0x36632c={};_0x36632c[_0x4207da(0x259,'\x65\x55\x4f\x75')]=_0x191932;const _0x3fbd47=_0x31faa5(_0x36632c),_0x4f18d4=_0x242613[_0x4207da(0x32d,'\x4d\x41\x49\x6d')](-(-0x15fa+0xa75+-0x1*-0xb8d));let _0x9a5920=-0x446+0x8*0x2cd+0xb*-0x1a6;for(let _0xc476ca=_0x26b620[_0x4207da(0x350,'\x51\x4e\x78\x6b')](_0x4f18d4[_0x4207da(0x3a3,'\x73\x46\x50\x58')],0x142c+-0x58a*0x5+0x787);_0x26b620[_0x4207da(0x1dd,'\x24\x5d\x5d\x36')](_0xc476ca,0x1ecd+-0x1769+-0x4*0x1d9);_0xc476ca--){if(_0x4f18d4[_0xc476ca]&&_0x4f18d4[_0xc476ca][_0x4207da(0x261,'\x4c\x78\x58\x28')]===_0x26b620[_0x4207da(0x307,'\x41\x49\x6b\x6c')])_0x9a5920++;else break;}let _0x12d217=-0x1*-0x1f8b+0x1b3e+-0x3ac9;for(let _0x5d9820=_0x26b620[_0x4207da(0x193,'\x4f\x71\x65\x53')](_0x4f18d4[_0x4207da(0x27a,'\x71\x44\x23\x79')],0x8*0x8e+0x1f36+-0x23a5);_0x26b620[_0x4207da(0x297,'\x6c\x31\x25\x30')](_0x5d9820,0x233a+-0x1f85+-0x3b5);_0x5d9820--){if(_0x4f18d4[_0x5d9820]&&_0x4f18d4[_0x5d9820][_0x4207da(0x31b,'\x41\x49\x6b\x6c')]&&_0x26b620[_0x4207da(0x2d7,'\x73\x46\x50\x58')](_0x4f18d4[_0x5d9820]['\x6f\x75\x74\x63\x6f\x6d\x65'][_0x4207da(0x265,'\x2a\x31\x68\x69')],_0x26b620[_0x4207da(0x2f4,'\x42\x47\x5a\x6d')]))_0x12d217++;else break;}const _0x50a099=_0x5f1519&&Array[_0x4207da(0x1b0,'\x53\x51\x36\x4e')](_0x5f1519[_0x4207da(0x315,'\x4f\x71\x65\x53')+_0x4207da(0x1c2,'\x53\x63\x28\x21')])?_0x5f1519[_0x4207da(0x162,'\x70\x73\x52\x58')+_0x4207da(0x39c,'\x6c\x31\x25\x30')][_0x4207da(0x2a1,'\x51\x4e\x78\x6b')](-(0x14*0x1c6+0xa2*0x12+0x6b1*-0x7)):[],_0x46e4bf=_0x5f1519&&Array[_0x4207da(0x196,'\x58\x71\x25\x79')](_0x5f1519[_0x4207da(0x2c4,'\x70\x73\x52\x58')+_0x4207da(0x266,'\x41\x49\x6b\x6c')])?_0x5f1519[_0x4207da(0x1b5,'\x5a\x62\x37\x67')+_0x4207da(0x38e,'\x2a\x57\x4e\x70')][_0x4207da(0x358,'\x42\x70\x2a\x67')](-(-0x1*-0x137d+0x1*0x1c69+0x5fc*-0x8)):[],_0xe535f8=new Set(_0x26b620[_0x4207da(0x200,'\x74\x5a\x63\x71')](_0x113a22,_0x191932,'')),_0x4a7e36=_0x50a099[_0x4207da(0x342,'\x68\x31\x5d\x78')](function(_0x44b61e){const _0x24de60=_0x4207da;if(_0x26b620[_0x24de60(0x1ff,'\x61\x35\x79\x55')](_0x26b620[_0x24de60(0x1a3,'\x53\x63\x28\x21')],_0x26b620[_0x24de60(0x33a,'\x47\x6c\x29\x4b')]))return _0x44b61e&&Array['\x69\x73\x41\x72\x72\x61\x79'](_0x44b61e[_0x24de60(0x346,'\x79\x4c\x48\x75')+_0x24de60(0x221,'\x63\x28\x5a\x77')])&&_0x44b61e[_0x24de60(0x2b3,'\x47\x6c\x29\x4b')+'\x5f\x73\x69\x67\x6e\x61\x6c\x73'][_0x24de60(0x1d4,'\x33\x77\x40\x7a')](function(_0xaa487c){const _0x53fc25=_0x24de60;return _0xe535f8[_0x53fc25(0x2b4,'\x2a\x31\x68\x69')](_0x26b620[_0x53fc25(0x1d7,'\x4a\x6c\x48\x26')](String,_0xaa487c));});else{if(HRqsNw[_0x24de60(0x392,'\x41\x6b\x45\x57')](HRqsNw['\x70\x72\x42\x67\x62'](_0x89c21b,_0x62b82b.env.EVOLVER_VERBOSE||'')['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+'\x61\x73\x65'](),HRqsNw[_0x24de60(0x2ce,'\x4c\x78\x58\x28')]))return;_0x1dc70[_0x24de60(0x1fe,'\x5d\x24\x58\x55')](_0x24de60(0x29e,'\x41\x49\x6b\x6c')+'\x5d'),_0x26f1b8[_0x24de60(0x3a7,'\x4f\x71\x65\x53')][_0x24de60(0x173,'\x4a\x6c\x48\x26')](_0x391ed3,_0x1bff5e);}}),_0x4d7321=_0x4a7e36[_0x4207da(0x370,'\x4a\x6c\x48\x26')](function(_0x439489){const _0x1c12a0=_0x4207da;if(_0x26b620['\x53\x77\x6f\x77\x71'](_0x26b620[_0x1c12a0(0x19e,'\x59\x45\x71\x33')],_0x26b620[_0x1c12a0(0x2e9,'\x71\x44\x23\x79')]))return _0x439489&&_0x26b620[_0x1c12a0(0x2b6,'\x36\x61\x65\x70')](_0x439489[_0x1c12a0(0x2cd,'\x61\x61\x76\x24')],_0x26b620['\x54\x56\x63\x4e\x66']);else{const _0x13792d={'\x49\x52\x6c\x4f\x72':function(_0x5adaf4,_0x41446c){const _0x459168=_0x1c12a0;return _0x26b620[_0x459168(0x171,'\x42\x70\x2a\x67')](_0x5adaf4,_0x41446c);}};_0x26b620[_0x1c12a0(0x1e7,'\x6c\x31\x25\x30')](_0x4aa7a9,_0x26b620['\x76\x48\x44\x6b\x73'](_0x26b620[_0x1c12a0(0x395,'\x51\x66\x72\x31')],_0x391abe[_0x1c12a0(0x269,'\x53\x63\x28\x21')](function(_0x418b81){const _0x4d3c52=_0x1c12a0;return _0x13792d['\x49\x52\x6c\x4f\x72'](_0x13792d[_0x4d3c52(0x166,'\x42\x47\x5a\x6d')]('\x23',_0x418b81[_0x4d3c52(0x26b,'\x74\x5a\x63\x71')])+'\x20\x28'+_0x418b81[_0x4d3c52(0x209,'\x42\x49\x5b\x72')+_0x4d3c52(0x363,'\x79\x4c\x48\x75')]['\x74\x6f\x46\x69\x78\x65\x64'](-0x1*0x1115+-0x2355+0x346c),'\x29');})[_0x1c12a0(0x32c,'\x33\x77\x40\x7a')]('\x2c\x20')));}})[_0x4207da(0x37d,'\x6c\x31\x25\x30')],_0x474d27=_0x4a7e36['\x66\x69\x6c\x74\x65\x72'](function(_0x283c43){const _0x3a0888=_0x4207da;return _0x26b620[_0x3a0888(0x293,'\x4c\x78\x58\x28')]!==_0x26b620[_0x3a0888(0x2fd,'\x68\x31\x5d\x78')]?_0x283c43&&_0x26b620[_0x3a0888(0x382,'\x56\x75\x74\x64')](_0x283c43[_0x3a0888(0x244,'\x73\x46\x50\x58')],_0x26b620['\x54\x56\x63\x4e\x66']):_0x55ff57&&_0xd01a63['\x6d\x6f\x64\x65']===_0x3a0888(0x36c,'\x4d\x41\x49\x6d');})[_0x4207da(0x3a3,'\x73\x46\x50\x58')],_0xc5b3ad=_0x46e4bf['\x66\x69\x6c\x74\x65\x72'](function(_0x2b91d1){const _0x2cd43b=_0x4207da;return _0x2b91d1&&_0x2b91d1[_0x2cd43b(0x27c,'\x4f\x71\x65\x53')]===_0x2cd43b(0x168,'\x47\x6c\x29\x4b');})[_0x4207da(0x3a3,'\x73\x46\x50\x58')],_0x28bc18=_0x191932[_0x4207da(0x280,'\x74\x5a\x63\x71')](_0x4207da(0x263,'\x6c\x31\x25\x30')+_0x4207da(0x30d,'\x41\x49\x6b\x6c')+_0x4207da(0x295,'\x41\x49\x6b\x6c'))||_0x191932[_0x4207da(0x204,'\x40\x34\x59\x24')](_0x26b620[_0x4207da(0x153,'\x42\x70\x2a\x67')])||_0x191932[_0x4207da(0x2df,'\x71\x44\x23\x79')](_0x26b620[_0x4207da(0x237,'\x53\x63\x28\x21')])||_0x26b620[_0x4207da(0x181,'\x70\x73\x52\x58')](_0x12d217,0x1807+-0x73e*0x3+-0x24a)||_0x9a5920>=0x63*0x3+-0x1c6c+0x1b46,_0x2eee46=_0x28bc18&&!_0x191932[_0x4207da(0x34e,'\x58\x71\x25\x79')](_0x26b620[_0x4207da(0x2c6,'\x51\x4e\x78\x6b')]),_0x5763dd=_0x26b620[_0x4207da(0x3a6,'\x68\x31\x5d\x78')](_0x4d7321,0xf0c+0x7b7+-0xb61*0x2)||_0x474d27>=-0xc27*-0x3+0x1da3+-0x4216&&_0xc5b3ad===-0x26be+-0x3c1+0x17*0x1d9,_0x24df81=_0x5763dd||_0x26b620[_0x4207da(0x300,'\x47\x6c\x29\x4b')](_0x12d217,-0x26cd+0x13*0x17f+0xa62);let _0x4fd2d3=_0x5f1519&&_0x5f1519[_0x4207da(0x2d9,'\x56\x75\x74\x64')+'\x6e\x74\x73']&&Number[_0x4207da(0x384,'\x71\x44\x23\x79')](_0x26b620[_0x4207da(0x216,'\x4c\x78\x58\x28')](Number,_0x5f1519[_0x4207da(0x21a,'\x4d\x41\x49\x6d')+_0x4207da(0x164,'\x47\x6c\x29\x4b')][_0x4207da(0x2f1,'\x4d\x41\x49\x6d')+'\x73']))?_0x26b620[_0x4207da(0x39f,'\x5b\x59\x36\x33')](Number,_0x5f1519['\x63\x6f\x6e\x73\x74\x72\x61\x69'+_0x4207da(0x1f0,'\x36\x61\x65\x70')][_0x4207da(0x22e,'\x42\x49\x5b\x72')+'\x73']):0x53*0x35+0x31*-0x79+0x202*0x3;if(_0x24df81)_0x4fd2d3=Math[_0x4207da(0x245,'\x75\x65\x72\x51')](0x3*-0x868+-0x25c3*0x1+0x3efd,Math[_0x4207da(0x18a,'\x6c\x31\x25\x30')](_0x4fd2d3,-0x1*0x245+-0xe16+0x1061));else{if(_0x2eee46)_0x4fd2d3=Math[_0x4207da(0x23f,'\x2a\x31\x68\x69')](-0x1290+-0x1c9*0x1+-0x145c*-0x1,Math[_0x4207da(0x339,'\x41\x49\x6b\x6c')](_0x4fd2d3,0x9b9*0x3+-0x7*0x539+-0x13d*-0x6));}const _0x5b7f28=[];_0x5b7f28['\x70\x75\x73\x68'](_0x26b620[_0x4207da(0x1bb,'\x61\x2a\x4c\x6c')](_0x26b620[_0x4207da(0x214,'\x24\x5d\x5d\x36')](_0x26b620[_0x4207da(0x1d0,'\x47\x6c\x29\x4b')](_0x26b620[_0x4207da(0x340,'\x51\x66\x72\x31')],_0x3fbd47[_0x4207da(0x2e3,'\x71\x44\x23\x79')]),'\x20\x28')+_0x3fbd47[_0x4207da(0x360,'\x73\x46\x50\x58')+'\x69\x6f\x6e'],'\x29'));if(_0x2eee46)_0x5b7f28[_0x4207da(0x397,'\x5d\x53\x4b\x71')](_0x26b620[_0x4207da(0x192,'\x47\x6c\x29\x4b')]);if(_0x5763dd)_0x5b7f28[_0x4207da(0x19c,'\x4d\x41\x49\x6d')](_0x26b620[_0x4207da(0x2e2,'\x53\x63\x28\x21')]);if(_0x26b620[_0x4207da(0x2b8,'\x53\x63\x28\x21')](_0x12d217,-0x1887+-0x19cf*-0x1+-0xa3*0x2))_0x5b7f28[_0x4207da(0x2cb,'\x33\x77\x40\x7a')](_0x26b620[_0x4207da(0x282,'\x5b\x59\x36\x33')]);_0x5b7f28['\x70\x75\x73\x68'](_0x26b620[_0x4207da(0x1bc,'\x63\x28\x5a\x77')](_0x26b620['\x5a\x4a\x73\x7a\x74'](_0x26b620['\x74\x6d\x51\x49\x63'],_0x4fd2d3),'\x2e'));const _0x4932e={};return _0x4932e['\x6e\x61\x6d\x65']=_0x3fbd47[_0x4207da(0x36e,'\x33\x77\x40\x7a')],_0x4932e[_0x4207da(0x19b,'\x33\x77\x40\x7a')]=_0x3fbd47['\x6c\x61\x62\x65\x6c'],_0x4932e[_0x4207da(0x233,'\x71\x44\x23\x79')+_0x4207da(0x2ef,'\x42\x49\x5b\x72')]=_0x3fbd47[_0x4207da(0x33c,'\x24\x5d\x5d\x36')+_0x4207da(0x362,'\x2a\x57\x4e\x70')],_0x4932e[_0x4207da(0x1ec,'\x53\x51\x36\x4e')+_0x4207da(0x267,'\x37\x78\x4e\x77')]=_0x2eee46,_0x4932e[_0x4207da(0x15c,'\x41\x49\x6b\x6c')+_0x4207da(0x34c,'\x4c\x78\x58\x28')+'\x6e']=_0x24df81,_0x4932e[_0x4207da(0x1c5,'\x75\x65\x72\x51')+_0x4207da(0x202,'\x71\x44\x23\x79')]=_0x5763dd,_0x4932e[_0x4207da(0x2d8,'\x53\x63\x28\x21')+_0x4207da(0x21c,'\x44\x33\x23\x73')]=_0x9a5920,_0x4932e[_0x4207da(0x1de,'\x66\x34\x55\x69')+_0x4207da(0x227,'\x71\x44\x23\x79')]=_0x12d217,_0x4932e[_0x4207da(0x23b,'\x24\x5d\x5d\x36')+'\x69\x75\x73\x4d\x61\x78\x46\x69'+_0x4207da(0x1a7,'\x4d\x41\x49\x6d')]=_0x4fd2d3,_0x4932e[_0x4207da(0x34d,'\x78\x29\x45\x73')+'\x65\x73']=_0x5b7f28,_0x4932e;}async function _0x463836(_0x31413f){const _0x2c5a00=_0x495819,_0x24bbbe={'\x41\x57\x68\x6a\x4e':function(_0x331362,_0x371b0e){return _0x331362(_0x371b0e);},'\x4c\x55\x65\x51\x6a':function(_0x360ef7,_0x5e32f9){return _0x360ef7+_0x5e32f9;},'\x63\x7a\x4b\x63\x55':function(_0x4864ef,_0x3e6ecd){return _0x4864ef+_0x3e6ecd;},'\x44\x7a\x58\x76\x52':function(_0x4618b5,_0x5edc35){return _0x4618b5+_0x5edc35;},'\x74\x48\x58\x54\x72':function(_0x2f1e34,_0x171fbd){return _0x2f1e34+_0x171fbd;},'\x72\x79\x65\x42\x6b':_0x2c5a00(0x198,'\x70\x73\x52\x58')+_0x2c5a00(0x3a2,'\x51\x66\x72\x31')+_0x2c5a00(0x268,'\x4f\x61\x76\x33')+'\x3d','\x56\x68\x66\x6c\x47':_0x2c5a00(0x333,'\x59\x45\x71\x33'),'\x43\x48\x77\x48\x6b':_0x2c5a00(0x1d1,'\x65\x55\x4f\x75')+'\x5b','\x65\x48\x4f\x7a\x59':function(_0x1f343a,_0x37b965){return _0x1f343a+_0x37b965;},'\x61\x42\x52\x62\x6a':_0x2c5a00(0x31e,'\x25\x31\x2a\x6d')+_0x2c5a00(0x20e,'\x33\x77\x40\x7a')+_0x2c5a00(0x322,'\x63\x28\x5a\x77'),'\x64\x58\x4a\x59\x70':_0x2c5a00(0x248,'\x42\x70\x2a\x67'),'\x72\x6b\x47\x4d\x56':_0x2c5a00(0x19a,'\x4f\x71\x65\x53')+'\x65\x63\x74\x69\x6f\x6e\x3a\x20'+_0x2c5a00(0x228,'\x53\x63\x28\x21'),'\x72\x6c\x41\x64\x53':_0x2c5a00(0x34a,'\x6c\x31\x25\x30')+'\x3d','\x43\x4e\x69\x4a\x45':function(_0x30a33f,_0x3d769b){return _0x30a33f||_0x3d769b;},'\x6b\x61\x4c\x66\x70':_0x2c5a00(0x2ec,'\x51\x66\x72\x31')+_0x2c5a00(0x252,'\x56\x75\x74\x64'),'\x58\x6d\x68\x52\x65':'\x20\x73\x65\x6c\x65\x63\x74\x6f'+'\x72\x3d','\x43\x48\x53\x4d\x4f':function(_0x510a9d,_0x2043d4){return _0x510a9d+_0x2043d4;},'\x4c\x63\x41\x46\x43':function(_0x39bdb9,_0x3614f5){return _0x39bdb9+_0x3614f5;},'\x4a\x56\x46\x70\x56':_0x2c5a00(0x378,'\x79\x4c\x48\x75')+_0x2c5a00(0x19f,'\x42\x70\x2a\x67')+_0x2c5a00(0x22d,'\x63\x28\x5a\x77'),'\x76\x79\x64\x61\x43':function(_0x1dfc3,_0x284ecc){return _0x1dfc3(_0x284ecc);},'\x42\x4d\x76\x45\x63':function(_0x6af8fe,_0x330bab){return _0x6af8fe(_0x330bab);},'\x63\x77\x69\x49\x66':function(_0x4506c9,_0xb20075){return _0x4506c9>=_0xb20075;},'\x4c\x77\x76\x49\x57':function(_0x1a0e9e,_0x33bb14){return _0x1a0e9e>_0x33bb14;},'\x47\x71\x4c\x48\x67':function(_0x18bbdc,_0x565a4e){return _0x18bbdc&&_0x565a4e;},'\x43\x56\x4a\x65\x4a':function(_0x4f3a12,_0x1db416){return _0x4f3a12(_0x1db416);},'\x49\x42\x43\x42\x6c':function(_0x506b8a,_0x3e8a66){return _0x506b8a>=_0x3e8a66;},'\x58\x79\x4e\x72\x73':function(_0x51974c,_0x2327d4){return _0x51974c(_0x2327d4);},'\x5a\x41\x73\x79\x57':function(_0x2e1efc,_0x3e7e03){return _0x2e1efc(_0x3e7e03);},'\x44\x43\x49\x72\x66':_0x2c5a00(0x2ff,'\x41\x6b\x45\x57'),'\x69\x63\x66\x46\x45':'\x73\x74\x61\x62\x6c\x65\x5f\x73'+_0x2c5a00(0x1cf,'\x65\x55\x4f\x75')+_0x2c5a00(0x2d0,'\x4f\x61\x76\x33'),'\x71\x67\x6c\x6e\x55':_0x2c5a00(0x329,'\x42\x70\x2a\x67')+_0x2c5a00(0x1fa,'\x61\x61\x76\x24'),'\x58\x57\x63\x61\x64':function(_0x1b61c1,_0x51dfa7){return _0x1b61c1(_0x51dfa7);},'\x71\x47\x41\x45\x78':_0x2c5a00(0x2f5,'\x6c\x31\x25\x30')+'\x72','\x5a\x50\x51\x74\x67':function(_0x5055ba,_0xa41cca){return _0x5055ba(_0xa41cca);},'\x47\x69\x67\x65\x67':function(_0x3fc0ea,_0x3975d2){return _0x3fc0ea(_0x3975d2);},'\x43\x6e\x52\x57\x50':function(_0xbbf4e2,_0x49343d){return _0xbbf4e2+_0x49343d;},'\x46\x67\x53\x48\x77':function(_0xdbf375,_0x38bfd8){return _0xdbf375+_0x38bfd8;},'\x44\x51\x66\x4b\x58':function(_0x150308,_0x4993f8){return _0x150308+_0x4993f8;},'\x58\x50\x68\x70\x46':function(_0x26328d,_0x2614ba){return _0x26328d+_0x2614ba;},'\x43\x74\x6d\x58\x46':function(_0xf32cf0,_0x12cd8d){return _0xf32cf0+_0x12cd8d;},'\x45\x45\x43\x6e\x49':function(_0x343f7b,_0x1a967d){return _0x343f7b+_0x1a967d;},'\x6c\x44\x4c\x45\x7a':function(_0x4b6c69,_0x335e0c){return _0x4b6c69+_0x335e0c;},'\x65\x6a\x61\x59\x50':_0x2c5a00(0x1c1,'\x44\x33\x23\x73')+_0x2c5a00(0x232,'\x53\x51\x36\x4e')+_0x2c5a00(0x31c,'\x74\x5a\x63\x71'),'\x72\x44\x63\x6d\x78':_0x2c5a00(0x21d,'\x73\x46\x50\x58')+_0x2c5a00(0x3aa,'\x4f\x71\x65\x53'),'\x6a\x4d\x69\x4d\x51':_0x2c5a00(0x1b3,'\x37\x78\x4e\x77')+_0x2c5a00(0x20c,'\x5d\x24\x58\x55')+'\x3d','\x44\x46\x79\x6b\x6b':_0x2c5a00(0x277,'\x53\x63\x28\x21')+_0x2c5a00(0x15d,'\x42\x47\x5a\x6d'),'\x70\x4e\x7a\x5a\x49':_0x2c5a00(0x18c,'\x71\x44\x23\x79')+'\x48\x69\x74\x3d','\x58\x58\x64\x6b\x6c':function(_0x2a8bbb,_0xfa8f7d){return _0x2a8bbb+_0xfa8f7d;},'\x7a\x70\x79\x4d\x62':function(_0x16306e,_0x3446dc){return _0x16306e+_0x3446dc;},'\x65\x6c\x54\x50\x62':_0x2c5a00(0x1dc,'\x68\x31\x5d\x78')+_0x2c5a00(0x1d6,'\x2a\x31\x68\x69'),'\x73\x56\x4c\x56\x59':_0x2c5a00(0x28a,'\x42\x70\x2a\x67'),'\x42\x78\x56\x49\x45':_0x2c5a00(0x2da,'\x58\x71\x25\x79'),'\x79\x6f\x45\x41\x55':_0x2c5a00(0x1f3,'\x49\x33\x46\x54'),'\x50\x51\x4d\x6f\x59':function(_0x5cd8c9,_0x48e652){return _0x5cd8c9!==_0x48e652;},'\x4f\x78\x42\x41\x56':_0x2c5a00(0x1e8,'\x61\x2a\x4c\x6c'),'\x6e\x56\x50\x4f\x6b':function(_0x56309b,_0x5e3c40){return _0x56309b(_0x5e3c40);},'\x45\x68\x52\x5a\x77':function(_0x12d11a){return _0x12d11a();},'\x53\x4d\x4a\x73\x4a':function(_0x283ebf,_0x1c5e1c){return _0x283ebf!==_0x1c5e1c;},'\x6b\x73\x43\x78\x57':_0x2c5a00(0x260,'\x51\x66\x72\x31'),'\x70\x57\x58\x73\x57':function(_0x5b7bce){return _0x5b7bce();},'\x4a\x4a\x48\x42\x73':function(_0x1df279,_0x182633){return _0x1df279!==_0x182633;},'\x54\x51\x67\x4a\x4f':_0x2c5a00(0x18d,'\x68\x31\x5d\x78')+_0x2c5a00(0x1c6,'\x4c\x78\x58\x28')+_0x2c5a00(0x369,'\x61\x61\x76\x24'),'\x57\x79\x41\x69\x69':function(_0x306a69,_0x5afe3b){return _0x306a69>_0x5afe3b;},'\x57\x61\x42\x77\x5a':function(_0x4544ca,_0x4a2247){return _0x4544ca(_0x4a2247);},'\x52\x45\x6f\x69\x52':_0x2c5a00(0x2dd,'\x4c\x78\x58\x28')+_0x2c5a00(0x212,'\x61\x2a\x4c\x6c'),'\x41\x48\x54\x72\x78':_0x2c5a00(0x258,'\x24\x5d\x5d\x36')+_0x2c5a00(0x1c0,'\x63\x28\x5a\x77')+_0x2c5a00(0x169,'\x2a\x31\x68\x69')+_0x2c5a00(0x298,'\x24\x5d\x5d\x36')+'\x61\x74\x61\x6c\x29\x3a\x20'},{genes:_0xad26be,capsules:_0xc31bad,signals:_0x50e3e1,recentEvents:_0x338632,memoryAdvice:_0x2f3038,recentFailedCapsules:_0xff797c,heartbeatCapGaps:_0x131431,heartbeatNovelty:_0xbe72b1,plateauOverride:_0x20754f,observations:_0x5e19e4,IS_RANDOM_DRIFT:_0x506f3c,hubHit:_0x29fb8d}=_0x31413f,{selectedGene:_0x1f6497,capsuleCandidates:_0x546e54,selector:_0x3a2fb4}=_0x24bbbe[_0x2c5a00(0x2de,'\x41\x49\x6b\x6c')](_0x327f13,{'\x67\x65\x6e\x65\x73':_0xad26be,'\x63\x61\x70\x73\x75\x6c\x65\x73':_0xc31bad,'\x73\x69\x67\x6e\x61\x6c\x73':_0x50e3e1,'\x6d\x65\x6d\x6f\x72\x79\x41\x64\x76\x69\x63\x65':_0x2f3038,'\x64\x72\x69\x66\x74\x45\x6e\x61\x62\x6c\x65\x64':_0x506f3c,'\x66\x61\x69\x6c\x65\x64\x43\x61\x70\x73\x75\x6c\x65\x73':_0xff797c,'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x79\x47\x61\x70\x73':_0x131431,'\x6e\x6f\x76\x65\x6c\x74\x79\x53\x63\x6f\x72\x65':_0xbe72b1&&Number[_0x2c5a00(0x28d,'\x73\x46\x50\x58')](_0xbe72b1[_0x2c5a00(0x26d,'\x5a\x62\x37\x67')])?_0xbe72b1[_0x2c5a00(0x2ba,'\x37\x78\x4e\x77')]:null,'\x70\x6c\x61\x74\x65\x61\x75\x4f\x76\x65\x72\x72\x69\x64\x65':_0x20754f}),_0x39d6a3=_0x2f3038&&_0x2f3038['\x70\x72\x65\x66\x65\x72\x72\x65'+'\x64\x47\x65\x6e\x65\x49\x64']?_0x24bbbe[_0x2c5a00(0x357,'\x56\x75\x74\x64')]:_0x24bbbe[_0x2c5a00(0x274,'\x4f\x61\x76\x33')],_0x108745=Array['\x69\x73\x41\x72\x72\x61\x79'](_0x546e54)?_0x546e54[_0x2c5a00(0x1f4,'\x71\x44\x23\x79')](_0x2b3205=>_0x2b3205&&_0x2b3205['\x69\x64']?String(_0x2b3205['\x69\x64']):null)[_0x2c5a00(0x3a9,'\x51\x66\x72\x31')](Boolean):[],_0x4f577a=_0x108745[_0x2c5a00(0x34b,'\x5b\x59\x36\x33')]?_0x108745[-0x4*-0x826+0xe08+-0x2ea0]:null,_0x2dd832={};_0x2dd832['\x72\x65\x63\x65\x6e\x74\x45\x76'+_0x2c5a00(0x2ea,'\x4f\x61\x76\x33')]=_0x338632,_0x2dd832[_0x2c5a00(0x21f,'\x25\x31\x2a\x6d')+_0x2c5a00(0x178,'\x66\x34\x55\x69')]=_0x1f6497,_0x2dd832[_0x2c5a00(0x1e1,'\x33\x77\x40\x7a')]=_0x50e3e1;const _0x4c6469=_0x24bbbe[_0x2c5a00(0x33f,'\x59\x45\x71\x33')](_0x4ba259,_0x2dd832);_0x5c9f7d(_0x24bbbe[_0x2c5a00(0x31a,'\x4c\x78\x58\x28')](_0x24bbbe[_0x2c5a00(0x1ac,'\x4d\x41\x49\x6d')](_0x24bbbe[_0x2c5a00(0x35e,'\x5a\x62\x37\x67')](_0x24bbbe[_0x2c5a00(0x2ee,'\x5b\x59\x36\x33')](_0x24bbbe[_0x2c5a00(0x23e,'\x53\x51\x36\x4e')]+(_0x1f6497?_0x1f6497['\x69\x64']:_0x24bbbe[_0x2c5a00(0x207,'\x73\x46\x50\x58')]),_0x24bbbe['\x72\x6c\x41\x64\x53']),_0x24bbbe[_0x2c5a00(0x2e5,'\x2a\x57\x4e\x70')](_0x4f577a,_0x24bbbe[_0x2c5a00(0x16e,'\x78\x29\x45\x73')])),_0x24bbbe[_0x2c5a00(0x25e,'\x70\x73\x52\x58')]),_0x39d6a3)+_0x24bbbe['\x58\x6d\x68\x52\x65']+_0x24bbbe[_0x2c5a00(0x18b,'\x51\x66\x72\x31')](_0x3a2fb4,_0x24bbbe[_0x2c5a00(0x240,'\x61\x35\x79\x55')])),_0x5c9f7d(_0x24bbbe[_0x2c5a00(0x32b,'\x53\x63\x28\x21')](_0x24bbbe[_0x2c5a00(0x33d,'\x75\x65\x72\x51')](_0x24bbbe[_0x2c5a00(0x3a4,'\x41\x49\x6b\x6c')](_0x24bbbe[_0x2c5a00(0x1e4,'\x5d\x24\x58\x55')](_0x24bbbe[_0x2c5a00(0x183,'\x40\x34\x59\x24')]+_0x4c6469[_0x2c5a00(0x36e,'\x33\x77\x40\x7a')],_0x2c5a00(0x1aa,'\x44\x33\x23\x73')+_0x2c5a00(0x1f5,'\x40\x34\x59\x24')),_0x4c6469[_0x2c5a00(0x2c1,'\x71\x44\x23\x79')+_0x2c5a00(0x2a9,'\x68\x31\x5d\x78')])+(_0x2c5a00(0x1a0,'\x2a\x57\x4e\x70')+'\x73\x3d'),_0x4c6469['\x63\x61\x75\x74\x69\x6f\x75\x73'+_0x2c5a00(0x22a,'\x61\x35\x79\x55')+'\x6e']),_0x2c5a00(0x290,'\x44\x33\x23\x73')+'\x73\x3d')+_0x4c6469[_0x2c5a00(0x172,'\x4c\x78\x58\x28')+_0x2c5a00(0x155,'\x24\x5d\x5d\x36')+_0x2c5a00(0x2b9,'\x33\x77\x40\x7a')]);_0x2f3038&&_0x24bbbe[_0x2c5a00(0x1e2,'\x2a\x31\x68\x69')](_0x5c9f7d,_0x24bbbe['\x44\x7a\x58\x76\x52'](_0x24bbbe[_0x2c5a00(0x2fa,'\x49\x33\x46\x54')](_0x24bbbe['\x43\x48\x53\x4d\x4f'](_0x24bbbe[_0x2c5a00(0x157,'\x72\x47\x5d\x4a')],_0x2f3038[_0x2c5a00(0x1a6,'\x2a\x31\x68\x69')+_0x2c5a00(0x348,'\x49\x33\x46\x54')]||_0x24bbbe[_0x2c5a00(0x2b2,'\x53\x51\x36\x4e')]),_0x24bbbe['\x43\x48\x77\x48\x6b']),Array[_0x2c5a00(0x219,'\x42\x47\x5a\x6d')](_0x2f3038[_0x2c5a00(0x1da,'\x66\x34\x55\x69')+_0x2c5a00(0x2f6,'\x61\x2a\x4c\x6c')])?_0x2f3038[_0x2c5a00(0x364,'\x72\x47\x5d\x4a')+'\x6e\x65\x49\x64\x73'][_0x2c5a00(0x29b,'\x74\x5a\x63\x71')]('\x2c'):'')+'\x5d');const _0x23ffd8={};_0x23ffd8['\x64\x72\x69\x66\x74\x45\x6e\x61'+_0x2c5a00(0x17e,'\x5d\x24\x58\x55')]=_0x506f3c,_0x23ffd8['\x73\x69\x67\x6e\x61\x6c\x73']=_0x50e3e1,_0x23ffd8[_0x2c5a00(0x35c,'\x25\x31\x2a\x6d')+_0x2c5a00(0x2a7,'\x69\x72\x40\x55')]=_0x338632;const _0x1c7a70=_0x24bbbe['\x42\x4d\x76\x45\x63'](_0x418d5f,_0x23ffd8),_0x3947f2=_0x1c7a70&&_0x1c7a70[_0x2c5a00(0x2ad,'\x59\x45\x71\x33')+_0x2c5a00(0x302,'\x61\x35\x79\x55')+'\x65']?_0x1c7a70['\x70\x65\x72\x73\x6f\x6e\x61\x6c'+_0x2c5a00(0x1d5,'\x37\x78\x4e\x77')+'\x65']:null,_0x389f14=Array[_0x2c5a00(0x186,'\x41\x49\x6b\x6c')](_0x338632)?_0x338632[_0x2c5a00(0x319,'\x70\x73\x52\x58')](-(0x1005*-0x1+0xdae*-0x1+0x43f*0x7)):[],_0x23d167=_0x389f14['\x6d\x61\x70'](_0x235603=>_0x235603&&_0x235603[_0x2c5a00(0x2c5,'\x44\x33\x23\x73')]&&_0x235603[_0x2c5a00(0x355,'\x42\x47\x5a\x6d')]['\x73\x74\x61\x74\x75\x73']?String(_0x235603[_0x2c5a00(0x2bc,'\x61\x2a\x4c\x6c')]['\x73\x74\x61\x74\x75\x73']):null)['\x66\x69\x6c\x74\x65\x72'](Boolean),_0x1c7c34=_0x24bbbe[_0x2c5a00(0x1f2,'\x42\x47\x5a\x6d')](_0x23d167['\x6c\x65\x6e\x67\x74\x68'],-0x151e+-0x15da+-0x2afe*-0x1)&&_0x23d167[_0x2c5a00(0x238,'\x40\x34\x59\x24')](_0x403082=>_0x403082===_0x2c5a00(0x314,'\x44\x33\x23\x73')),_0x1ca2d4=_0x24bbbe[_0x2c5a00(0x37e,'\x56\x75\x74\x64')](_0x389f14[_0x2c5a00(0x318,'\x70\x73\x52\x58')],-0x2675+0x3*0xa5d+-0x29*-0x2e)?_0x389f14[_0x2c5a00(0x278,'\x71\x44\x23\x79')]((_0x4ce11b,_0x2b177a)=>_0x4ce11b+(_0x2b177a&&_0x2b177a[_0x2c5a00(0x2c8,'\x70\x73\x52\x58')]&&Number[_0x2c5a00(0x189,'\x41\x6b\x45\x57')](Number(_0x2b177a[_0x2c5a00(0x1c9,'\x6c\x31\x25\x30')][_0x2c5a00(0x36d,'\x73\x46\x50\x58')]))?Number(_0x2b177a[_0x2c5a00(0x16c,'\x42\x70\x2a\x67')][_0x2c5a00(0x334,'\x61\x35\x79\x55')]):0x20e*0x2+-0x16a5+0xd*0x16d),-0x11*-0x12e+-0x7*-0x383+0x2ca3*-0x1)/_0x389f14[_0x2c5a00(0x210,'\x51\x4e\x78\x6b')]:0x8b*0x20+-0x199+-0xfc7,_0x2d0264=_0x24bbbe['\x47\x71\x4c\x48\x67'](!_0x506f3c,_0x3947f2)&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x24bbbe[_0x2c5a00(0x176,'\x58\x71\x25\x79')](Number,_0x3947f2['\x63\x72\x65\x61\x74\x69\x76\x69'+'\x74\x79']))&&_0x24bbbe[_0x2c5a00(0x30a,'\x6d\x4d\x4e\x56')](_0x24bbbe[_0x2c5a00(0x1d2,'\x4f\x61\x76\x33')](Number,_0x3947f2[_0x2c5a00(0x16f,'\x4f\x61\x76\x33')+'\x74\x79']),0x1*-0x101e+0x1366+0x1a4*-0x2+0.75)&&_0x1c7c34&&_0x24bbbe[_0x2c5a00(0x234,'\x71\x44\x23\x79')](_0x1ca2d4,-0x1c66+0x26c5+0x213*-0x5+0.7),_0x52655a=_0x24bbbe[_0x2c5a00(0x37b,'\x36\x61\x65\x70')](String,process.env.FORCE_INNOVATION||process.env.EVOLVE_FORCE_INNOVATION||'')[_0x2c5a00(0x23a,'\x2a\x31\x68\x69')+_0x2c5a00(0x36b,'\x33\x77\x40\x7a')]()===_0x24bbbe['\x44\x43\x49\x72\x66'],_0x481c56=_0x24bbbe['\x43\x4e\x69\x4a\x45'](!!_0x506f3c,!!_0x2d0264)||!!_0x52655a||!!_0x4c6469[_0x2c5a00(0x1ca,'\x49\x33\x46\x54')+_0x2c5a00(0x393,'\x61\x2a\x4c\x6c')],_0x33b7c5=_0x2d0264?[...Array[_0x2c5a00(0x2cf,'\x4f\x61\x76\x33')](_0x50e3e1)?_0x50e3e1:[],_0x24bbbe[_0x2c5a00(0x351,'\x47\x6c\x29\x4b')]]:_0x50e3e1,_0x2132ff=_0x52655a||_0x4c6469[_0x2c5a00(0x24c,'\x75\x65\x72\x51')+_0x2c5a00(0x3a8,'\x56\x75\x74\x64')]?[...Array[_0x2c5a00(0x3a5,'\x47\x6c\x29\x4b')](_0x33b7c5)?_0x33b7c5:[],_0x24bbbe[_0x2c5a00(0x38c,'\x58\x71\x25\x79')]]:_0x33b7c5,_0x2c524a=_0x24bbbe[_0x2c5a00(0x2a3,'\x69\x72\x40\x55')](!!_0x506f3c,!!_0x1c7a70)&&!!_0x1c7a70[_0x2c5a00(0x1ab,'\x51\x66\x72\x31')+_0x2c5a00(0x38a,'\x70\x73\x52\x58')+'\x6e']&&_0x3947f2&&_0x361d4b(_0x3947f2)&&_0x24bbbe['\x49\x42\x43\x42\x6c'](Number(_0x3947f2[_0x2c5a00(0x187,'\x6d\x4d\x4e\x56')]),-0x1*0x1551+-0x52*0x19+-0x1d53*-0x1+0.8)&&_0x24bbbe[_0x2c5a00(0x30b,'\x51\x66\x72\x31')](Number,_0x3947f2[_0x2c5a00(0x167,'\x72\x47\x5d\x4a')+_0x2c5a00(0x276,'\x56\x75\x74\x64')])<=-0xd74+0x25c7+0xd*-0x1df+0.3&&!(Array[_0x2c5a00(0x31d,'\x41\x6b\x45\x57')](_0x50e3e1)&&_0x50e3e1['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x24bbbe[_0x2c5a00(0x1b6,'\x53\x63\x28\x21')])),_0x77edfa={};_0x77edfa[_0x2c5a00(0x279,'\x5d\x24\x58\x55')]=_0x2132ff,_0x77edfa[_0x2c5a00(0x1cc,'\x73\x46\x50\x58')+'\x47\x65\x6e\x65']=_0x1f6497,_0x77edfa[_0x2c5a00(0x317,'\x73\x46\x50\x58')+_0x2c5a00(0x2a5,'\x73\x46\x50\x58')]=_0x481c56,_0x77edfa[_0x2c5a00(0x373,'\x4c\x78\x58\x28')+_0x2c5a00(0x2eb,'\x73\x46\x50\x58')]=_0x3947f2,_0x77edfa[_0x2c5a00(0x389,'\x42\x70\x2a\x67')+'\x68\x52\x69\x73\x6b']=_0x2c524a;const _0x5bebdc=_0x24bbbe[_0x2c5a00(0x25b,'\x78\x29\x45\x73')](_0xc50db6,_0x77edfa);_0x24bbbe[_0x2c5a00(0x38f,'\x44\x33\x23\x73')](_0x5c9f7d,_0x24bbbe['\x43\x6e\x52\x57\x50'](_0x24bbbe[_0x2c5a00(0x257,'\x72\x47\x5d\x4a')](_0x24bbbe[_0x2c5a00(0x2f2,'\x33\x77\x40\x7a')](_0x24bbbe[_0x2c5a00(0x325,'\x4d\x41\x49\x6d')](_0x24bbbe[_0x2c5a00(0x375,'\x69\x72\x40\x55')](_0x24bbbe[_0x2c5a00(0x292,'\x69\x72\x40\x55')](_0x24bbbe[_0x2c5a00(0x35f,'\x41\x49\x6b\x6c')](_0x24bbbe[_0x2c5a00(0x383,'\x73\x46\x50\x58')](_0x24bbbe['\x65\x6a\x61\x59\x50'],_0x5bebdc&&_0x5bebdc[_0x2c5a00(0x2e1,'\x72\x47\x5d\x4a')]||'\x3f'),_0x2c5a00(0x2d1,'\x5b\x59\x36\x33')),_0x5bebdc&&_0x5bebdc[_0x2c5a00(0x1e0,'\x53\x63\x28\x21')+'\x65\x6c']||'\x3f'),_0x24bbbe[_0x2c5a00(0x199,'\x25\x31\x2a\x6d')]),_0x481c56),_0x24bbbe[_0x2c5a00(0x381,'\x59\x45\x71\x33')]),_0x52655a)+_0x24bbbe[_0x2c5a00(0x2fe,'\x44\x33\x23\x73')],_0x2c524a)),_0x24bbbe[_0x2c5a00(0x2aa,'\x4c\x78\x58\x28')](_0x5c9f7d,_0x24bbbe[_0x2c5a00(0x1b8,'\x63\x28\x5a\x77')](_0x24bbbe[_0x2c5a00(0x284,'\x59\x45\x71\x33')],_0x29fb8d&&_0x29fb8d[_0x2c5a00(0x1d8,'\x25\x31\x2a\x6d')]?_0x24bbbe[_0x2c5a00(0x21e,'\x5d\x24\x58\x55')](_0x24bbbe[_0x2c5a00(0x180,'\x6d\x4d\x4e\x56')](_0x24bbbe[_0x2c5a00(0x316,'\x4c\x78\x58\x28')](_0x24bbbe[_0x2c5a00(0x224,'\x42\x47\x5a\x6d')](_0x24bbbe[_0x2c5a00(0x2fc,'\x71\x44\x23\x79')],_0x29fb8d[_0x2c5a00(0x27f,'\x4c\x78\x58\x28')]),_0x24bbbe[_0x2c5a00(0x1ee,'\x65\x55\x4f\x75')]),_0x29fb8d[_0x2c5a00(0x242,'\x4d\x41\x49\x6d')]),'\x29'):_0x24bbbe[_0x2c5a00(0x306,'\x6c\x31\x25\x30')](_0x24bbbe[_0x2c5a00(0x294,'\x6d\x4d\x4e\x56')](_0x24bbbe[_0x2c5a00(0x24f,'\x51\x4e\x78\x6b')],_0x29fb8d&&_0x29fb8d['\x72\x65\x61\x73\x6f\x6e']||_0x24bbbe[_0x2c5a00(0x1b9,'\x42\x47\x5a\x6d')]),'\x29')));let _0x1f8996=null;try{if(_0x24bbbe[_0x2c5a00(0x390,'\x72\x47\x5d\x4a')](_0x24bbbe['\x4f\x78\x42\x41\x56'],'\x4e\x7a\x46\x54\x6c')){const _0x33544b={};_0x33544b[_0x2c5a00(0x195,'\x36\x61\x65\x70')]=_0x50e3e1,_0x33544b[_0x2c5a00(0x254,'\x73\x46\x50\x58')]=_0x5bebdc,_0x33544b[_0x2c5a00(0x352,'\x25\x31\x2a\x6d')+'\x69\x74\x79\x5f\x73\x74\x61\x74'+'\x65']=_0x3947f2,_0x33544b['\x73\x65\x6c\x65\x63\x74\x65\x64'+_0x2c5a00(0x229,'\x72\x47\x5d\x4a')]=_0x1f6497,_0x33544b[_0x2c5a00(0x20f,'\x6c\x31\x25\x30')]=_0x3a2fb4,_0x33544b[_0x2c5a00(0x296,'\x53\x63\x28\x21')+_0x2c5a00(0x2ed,'\x53\x51\x36\x4e')]=_0x481c56,_0x33544b[_0x2c5a00(0x235,'\x5d\x24\x58\x55')+'\x42\x79']=_0x39d6a3,_0x33544b['\x63\x61\x70\x73\x75\x6c\x65\x73'+_0x2c5a00(0x283,'\x4f\x71\x65\x53')]=_0x108745,_0x33544b[_0x2c5a00(0x1b4,'\x33\x77\x40\x7a')+_0x2c5a00(0x271,'\x65\x55\x4f\x75')]=_0x5e19e4;const _0xe4c83=_0x24bbbe[_0x2c5a00(0x225,'\x78\x29\x45\x73')](_0x118a66,_0x33544b);_0x1f8996=_0xe4c83&&_0xe4c83[_0x2c5a00(0x356,'\x70\x73\x52\x58')+_0x2c5a00(0x312,'\x41\x6b\x45\x57')]?_0xe4c83[_0x2c5a00(0x399,'\x37\x78\x4e\x77')+_0x2c5a00(0x326,'\x2a\x57\x4e\x70')]:null;}else return _0x53e853&&_0x55d43d[_0x2c5a00(0x17f,'\x4c\x78\x58\x28')](_0x5eca5f[_0x2c5a00(0x379,'\x66\x34\x55\x69')+_0x2c5a00(0x37c,'\x37\x78\x4e\x77')])&&_0x21f883[_0x2c5a00(0x2c2,'\x42\x49\x5b\x72')+_0x2c5a00(0x185,'\x4f\x71\x65\x53')][_0x2c5a00(0x29d,'\x42\x70\x2a\x67')](function(_0x499407){const _0x2eb4c6=_0x2c5a00;return _0x4495a5[_0x2eb4c6(0x349,'\x75\x65\x72\x51')](tgzypb[_0x2eb4c6(0x20d,'\x4a\x6c\x48\x26')](_0x5cf6a2,_0x499407));});}catch(_0x119bb3){console[_0x2c5a00(0x304,'\x5b\x59\x36\x33')](_0x2c5a00(0x35d,'\x58\x71\x25\x79')+_0x2c5a00(0x354,'\x6d\x4d\x4e\x56')+_0x2c5a00(0x2bf,'\x66\x34\x55\x69')+'\x20\x77\x72\x69\x74\x65\x20\x66'+_0x2c5a00(0x288,'\x53\x51\x36\x4e')+_0x119bb3['\x6d\x65\x73\x73\x61\x67\x65']),console[_0x2c5a00(0x1bf,'\x5a\x62\x37\x67')](_0x2c5a00(0x1ae,'\x36\x61\x65\x70')+_0x2c5a00(0x20b,'\x68\x31\x5d\x78')+_0x2c5a00(0x255,'\x61\x2a\x4c\x6c')+_0x2c5a00(0x2f8,'\x25\x31\x2a\x6d')+_0x2c5a00(0x1eb,'\x42\x70\x2a\x67')+'\x20\x63\x61\x75\x73\x61\x6c\x20'+_0x2c5a00(0x311,'\x73\x46\x50\x58')+_0x2c5a00(0x30f,'\x5b\x59\x36\x33')+_0x24bbbe['\x45\x68\x52\x5a\x77'](_0x41cd5a));throw new Error(_0x2c5a00(0x28f,'\x63\x28\x5a\x77')+_0x2c5a00(0x2e0,'\x65\x55\x4f\x75')+_0x2c5a00(0x377,'\x61\x2a\x4c\x6c')+_0x2c5a00(0x20a,'\x51\x66\x72\x31')+_0x2c5a00(0x21b,'\x5b\x59\x36\x33')+_0x119bb3[_0x2c5a00(0x1f1,'\x37\x78\x4e\x77')]);}try{const _0xbe2744={};_0xbe2744[_0x2c5a00(0x1cb,'\x53\x51\x36\x4e')]=_0x50e3e1,_0xbe2744[_0x2c5a00(0x25f,'\x37\x78\x4e\x77')]=_0x5bebdc,_0xbe2744[_0x2c5a00(0x35a,'\x5b\x59\x36\x33')+_0x2c5a00(0x177,'\x79\x4c\x48\x75')+'\x65']=_0x3947f2,_0xbe2744[_0x2c5a00(0x2bd,'\x33\x77\x40\x7a')+_0x2c5a00(0x178,'\x66\x34\x55\x69')]=_0x1f6497,_0xbe2744[_0x2c5a00(0x19d,'\x41\x6b\x45\x57')]=_0x3a2fb4,_0xbe2744['\x64\x72\x69\x66\x74\x45\x6e\x61'+_0x2c5a00(0x387,'\x6d\x4d\x4e\x56')]=_0x481c56,_0xbe2744[_0x2c5a00(0x2e4,'\x36\x61\x65\x70')+'\x42\x79']=_0x39d6a3,_0xbe2744['\x68\x79\x70\x6f\x74\x68\x65\x73'+_0x2c5a00(0x170,'\x6c\x31\x25\x30')]=_0x1f8996,_0xbe2744[_0x2c5a00(0x345,'\x25\x31\x2a\x6d')+_0x2c5a00(0x15e,'\x41\x49\x6b\x6c')]=_0x108745,_0xbe2744[_0x2c5a00(0x206,'\x71\x44\x23\x79')+_0x2c5a00(0x39e,'\x5d\x24\x58\x55')]=_0x5e19e4,_0x24bbbe[_0x2c5a00(0x236,'\x56\x75\x74\x64')](_0x2e852f,_0xbe2744);}catch(_0x14d6f0){if(_0x24bbbe[_0x2c5a00(0x38b,'\x2a\x31\x68\x69')]('\x4f\x4f\x71\x64\x63',_0x24bbbe[_0x2c5a00(0x289,'\x5d\x24\x58\x55')])){console['\x65\x72\x72\x6f\x72'](_0x2c5a00(0x1d9,'\x4d\x41\x49\x6d')+_0x2c5a00(0x197,'\x56\x75\x74\x64')+_0x2c5a00(0x1ed,'\x61\x61\x76\x24')+_0x2c5a00(0x1a9,'\x42\x49\x5b\x72')+_0x2c5a00(0x328,'\x56\x75\x74\x64')+_0x14d6f0[_0x2c5a00(0x249,'\x79\x4c\x48\x75')]),console[_0x2c5a00(0x3ad,'\x33\x77\x40\x7a')](_0x2c5a00(0x18f,'\x6d\x4d\x4e\x56')+_0x2c5a00(0x154,'\x58\x71\x25\x79')+'\x66\x75\x73\x69\x6e\x67\x20\x74'+_0x2c5a00(0x2f9,'\x40\x34\x59\x24')+_0x2c5a00(0x2ae,'\x70\x73\x52\x58')+_0x2c5a00(0x37f,'\x25\x31\x2a\x6d')+'\x6d\x65\x6d\x6f\x72\x79\x2e\x20'+_0x2c5a00(0x3a0,'\x70\x73\x52\x58')+_0x24bbbe[_0x2c5a00(0x2ca,'\x68\x31\x5d\x78')](_0x41cd5a));throw new Error(_0x2c5a00(0x361,'\x53\x51\x36\x4e')+_0x2c5a00(0x1b1,'\x61\x61\x76\x24')+_0x2c5a00(0x309,'\x56\x75\x74\x64')+_0x2c5a00(0x308,'\x44\x33\x23\x73')+'\x3a\x20'+_0x14d6f0['\x6d\x65\x73\x73\x61\x67\x65']);}else _0x27e6b7(_0x24bbbe[_0x2c5a00(0x2d5,'\x6d\x4d\x4e\x56')](_0x24bbbe[_0x2c5a00(0x29c,'\x44\x33\x23\x73')](_0x24bbbe[_0x2c5a00(0x272,'\x4f\x61\x76\x33')](_0x24bbbe[_0x2c5a00(0x2fa,'\x49\x33\x46\x54')](_0x24bbbe['\x72\x79\x65\x42\x6b'],_0x49377f['\x70\x72\x65\x66\x65\x72\x72\x65'+_0x2c5a00(0x205,'\x2a\x31\x68\x69')]||_0x24bbbe[_0x2c5a00(0x347,'\x36\x61\x65\x70')]),_0x24bbbe[_0x2c5a00(0x29a,'\x79\x4c\x48\x75')]),_0x5c6458[_0x2c5a00(0x273,'\x24\x5d\x5d\x36')](_0x98e3d4['\x62\x61\x6e\x6e\x65\x64\x47\x65'+_0x2c5a00(0x32f,'\x36\x61\x65\x70')])?_0x5c9cb4[_0x2c5a00(0x24a,'\x70\x73\x52\x58')+_0x2c5a00(0x246,'\x73\x46\x50\x58')][_0x2c5a00(0x28b,'\x49\x33\x46\x54')]('\x2c'):''),'\x5d'));}let _0x215bf5=[];if(_0x24bbbe[_0x2c5a00(0x1e5,'\x5d\x53\x4b\x71')](process.env.EVOLVE_OPEN_PR_DEDUP,'\x30'))try{const {findSignalHints:_0x3ea1fc}=_0x24bbbe[_0x2c5a00(0x215,'\x42\x49\x5b\x72')](require,_0x24bbbe['\x54\x51\x67\x4a\x4f']),_0x34bfc6=_0x1f6497&&Array['\x69\x73\x41\x72\x72\x61\x79'](_0x1f6497['\x73\x69\x67\x6e\x61\x6c\x73\x5f'+_0x2c5a00(0x1ad,'\x4f\x71\x65\x53')])&&_0x24bbbe[_0x2c5a00(0x1a5,'\x42\x70\x2a\x67')](_0x1f6497[_0x2c5a00(0x251,'\x65\x55\x4f\x75')+_0x2c5a00(0x35b,'\x61\x61\x76\x24')][_0x2c5a00(0x3a3,'\x73\x46\x50\x58')],-0x2462+0x60a*-0x1+0x2a6c)?_0x1f6497[_0x2c5a00(0x1c7,'\x61\x2a\x4c\x6c')+_0x2c5a00(0x2af,'\x61\x35\x79\x55')]:_0x50e3e1,_0x37ed55={};_0x37ed55['\x73\x69\x67\x6e\x61\x6c\x73']=_0x34bfc6,_0x215bf5=_0x24bbbe[_0x2c5a00(0x1df,'\x4c\x78\x58\x28')](_0x3ea1fc,_0x37ed55),_0x24bbbe[_0x2c5a00(0x37e,'\x56\x75\x74\x64')](_0x215bf5[_0x2c5a00(0x336,'\x41\x49\x6b\x6c')],-0xc88+-0x443*0x2+0x150e)&&_0x5c9f7d(_0x24bbbe['\x4c\x63\x41\x46\x43'](_0x24bbbe[_0x2c5a00(0x264,'\x36\x61\x65\x70')],_0x215bf5[_0x2c5a00(0x33e,'\x4f\x71\x65\x53')](function(_0x58162d){const _0x47b402=_0x2c5a00;return _0x24bbbe[_0x47b402(0x188,'\x72\x47\x5d\x4a')](_0x24bbbe[_0x47b402(0x1f9,'\x75\x65\x72\x51')](_0x24bbbe[_0x47b402(0x31f,'\x61\x35\x79\x55')](_0x24bbbe[_0x47b402(0x3a4,'\x41\x49\x6b\x6c')]('\x23',_0x58162d[_0x47b402(0x320,'\x47\x6c\x29\x4b')]),'\x20\x28'),_0x58162d[_0x47b402(0x374,'\x4c\x78\x58\x28')+_0x47b402(0x28e,'\x53\x63\x28\x21')][_0x47b402(0x17d,'\x37\x78\x4e\x77')](-0x3f*0x8+0x5f*0x5+0x1f)),'\x29');})[_0x2c5a00(0x3a1,'\x51\x66\x72\x31')]('\x2c\x20')));}catch(_0x353302){_0x24bbbe[_0x2c5a00(0x1e3,'\x47\x6c\x29\x4b')](_0x5c9f7d,_0x24bbbe[_0x2c5a00(0x1d3,'\x4a\x6c\x48\x26')](_0x24bbbe[_0x2c5a00(0x1a4,'\x65\x55\x4f\x75')],_0x353302&&_0x353302[_0x2c5a00(0x39d,'\x36\x61\x65\x70')]?_0x353302[_0x2c5a00(0x371,'\x42\x49\x5b\x72')]:_0x353302));}const _0x539f98={..._0x31413f};return _0x539f98[_0x2c5a00(0x29f,'\x24\x5d\x5d\x36')+_0x2c5a00(0x2ab,'\x4f\x71\x65\x53')]=_0x1f6497,_0x539f98[_0x2c5a00(0x2e7,'\x47\x6c\x29\x4b')+_0x2c5a00(0x341,'\x2a\x57\x4e\x70')+'\x73']=_0x546e54,_0x539f98[_0x2c5a00(0x2b7,'\x70\x73\x52\x58')]=_0x3a2fb4,_0x539f98[_0x2c5a00(0x376,'\x74\x5a\x63\x71')+'\x42\x79']=_0x39d6a3,_0x539f98[_0x2c5a00(0x2d6,'\x2a\x31\x68\x69')+_0x2c5a00(0x26a,'\x74\x5a\x63\x71')]=_0x108745,_0x539f98[_0x2c5a00(0x39b,'\x5a\x62\x37\x67')+_0x2c5a00(0x343,'\x74\x5a\x63\x71')+'\x64']=_0x4f577a,_0x539f98[_0x2c5a00(0x2f3,'\x73\x46\x50\x58')+_0x2c5a00(0x359,'\x41\x6b\x45\x57')]=_0x4c6469,_0x539f98[_0x2c5a00(0x366,'\x53\x63\x28\x21')+'\x69\x74\x79\x53\x65\x6c\x65\x63'+_0x2c5a00(0x335,'\x74\x5a\x63\x71')]=_0x1c7a70,_0x539f98[_0x2c5a00(0x1fc,'\x4f\x61\x76\x33')+_0x2c5a00(0x179,'\x51\x66\x72\x31')]=_0x3947f2,_0x539f98[_0x2c5a00(0x256,'\x61\x61\x76\x24')]=_0x5bebdc,_0x539f98[_0x2c5a00(0x2cc,'\x61\x2a\x4c\x6c')+_0x2c5a00(0x247,'\x68\x31\x5d\x78')+'\x4d\x6f\x64\x65']=_0x481c56,_0x539f98['\x66\x6f\x72\x63\x65\x49\x6e\x6e'+_0x2c5a00(0x1cd,'\x68\x31\x5d\x78')]=_0x52655a,_0x539f98['\x68\x79\x70\x6f\x74\x68\x65\x73'+_0x2c5a00(0x25d,'\x75\x65\x72\x51')]=_0x1f8996,_0x539f98[_0x2c5a00(0x365,'\x4a\x6c\x48\x26')+_0x2c5a00(0x2b0,'\x37\x78\x4e\x77')]=_0x215bf5,_0x539f98;}const _0x2e7f5e={};_0x2e7f5e[_0x495819(0x310,'\x51\x4e\x78\x6b')+_0x495819(0x2c9,'\x78\x29\x45\x73')]=_0x463836,_0x2e7f5e[_0x495819(0x1c3,'\x5a\x62\x37\x67')+_0x495819(0x15f,'\x5d\x24\x58\x55')+_0x495819(0x220,'\x61\x2a\x4c\x6c')+_0x495819(0x1fb,'\x42\x70\x2a\x67')]=_0x4ba259,module[_0x495819(0x182,'\x44\x33\x23\x73')]=_0x2e7f5e;
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { selectGeneAndCapsule } = require('../../gep/selector');
|
|
4
|
+
const { buildMutation, isHighRiskMutationAllowed } = require('../../gep/mutation');
|
|
5
|
+
const { selectPersonalityForRun } = require('../../gep/personality');
|
|
6
|
+
const memoryAdapter = require('../../gep/memoryGraphAdapter');
|
|
7
|
+
const { recordHypothesis, recordAttempt, memoryGraphPath } = memoryAdapter;
|
|
8
|
+
const { expandSignals } = require('../../gep/learningSignals');
|
|
9
|
+
const { resolveStrategy } = require('../../gep/strategy');
|
|
10
|
+
|
|
11
|
+
function _verbose(...args) {
|
|
12
|
+
if (String(process.env.EVOLVER_VERBOSE || '').toLowerCase() !== 'true') return;
|
|
13
|
+
args.unshift('[Verbose]');
|
|
14
|
+
console.log.apply(console, args);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
// ---------------------------------------------------------------------------
|
|
18
|
+
// computeAdaptiveStrategyPolicy
|
|
19
|
+
// ---------------------------------------------------------------------------
|
|
20
|
+
|
|
21
|
+
function computeAdaptiveStrategyPolicy(opts) {
|
|
22
|
+
const recentEvents = Array.isArray(opts && opts.recentEvents) ? opts.recentEvents : [];
|
|
23
|
+
const selectedGene = opts && opts.selectedGene ? opts.selectedGene : null;
|
|
24
|
+
const signals = Array.isArray(opts && opts.signals) ? opts.signals : [];
|
|
25
|
+
const baseStrategy = resolveStrategy({ signals: signals });
|
|
26
|
+
|
|
27
|
+
const tail = recentEvents.slice(-8);
|
|
28
|
+
let repairStreak = 0;
|
|
29
|
+
for (let i = tail.length - 1; i >= 0; i--) {
|
|
30
|
+
if (tail[i] && tail[i].intent === 'repair') repairStreak++;
|
|
31
|
+
else break;
|
|
32
|
+
}
|
|
33
|
+
let failureStreak = 0;
|
|
34
|
+
for (let i = tail.length - 1; i >= 0; i--) {
|
|
35
|
+
if (tail[i] && tail[i].outcome && tail[i].outcome.status === 'failed') failureStreak++;
|
|
36
|
+
else break;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
const antiPatterns = selectedGene && Array.isArray(selectedGene.anti_patterns) ? selectedGene.anti_patterns.slice(-5) : [];
|
|
40
|
+
const learningHistory = selectedGene && Array.isArray(selectedGene.learning_history) ? selectedGene.learning_history.slice(-6) : [];
|
|
41
|
+
const signalTags = new Set(expandSignals(signals, ''));
|
|
42
|
+
const overlappingAntiPatterns = antiPatterns.filter(function (ap) {
|
|
43
|
+
return ap && Array.isArray(ap.learning_signals) && ap.learning_signals.some(function (tag) {
|
|
44
|
+
return signalTags.has(String(tag));
|
|
45
|
+
});
|
|
46
|
+
});
|
|
47
|
+
const hardFailures = overlappingAntiPatterns.filter(function (ap) { return ap && ap.mode === 'hard'; }).length;
|
|
48
|
+
const softFailures = overlappingAntiPatterns.filter(function (ap) { return ap && ap.mode !== 'hard'; }).length;
|
|
49
|
+
const recentSuccesses = learningHistory.filter(function (x) { return x && x.outcome === 'success'; }).length;
|
|
50
|
+
|
|
51
|
+
const stagnation = signals.includes('stable_success_plateau') ||
|
|
52
|
+
signals.includes('evolution_saturation') ||
|
|
53
|
+
signals.includes('empty_cycle_loop_detected') ||
|
|
54
|
+
failureStreak >= 3 ||
|
|
55
|
+
repairStreak >= 3;
|
|
56
|
+
|
|
57
|
+
const forceInnovate = stagnation && !signals.includes('log_error');
|
|
58
|
+
const highRiskGene = hardFailures >= 1 || (softFailures >= 2 && recentSuccesses === 0);
|
|
59
|
+
const cautiousExecution = highRiskGene || failureStreak >= 2;
|
|
60
|
+
|
|
61
|
+
let blastRadiusMaxFiles = selectedGene && selectedGene.constraints && Number.isFinite(Number(selectedGene.constraints.max_files))
|
|
62
|
+
? Number(selectedGene.constraints.max_files)
|
|
63
|
+
: 12;
|
|
64
|
+
if (cautiousExecution) blastRadiusMaxFiles = Math.max(2, Math.min(blastRadiusMaxFiles, 6));
|
|
65
|
+
else if (forceInnovate) blastRadiusMaxFiles = Math.max(3, Math.min(blastRadiusMaxFiles, 10));
|
|
66
|
+
|
|
67
|
+
const directives = [];
|
|
68
|
+
directives.push('Base strategy: ' + baseStrategy.label + ' (' + baseStrategy.description + ')');
|
|
69
|
+
if (forceInnovate) directives.push('Force strategy shift: prefer innovate over repeating repair/optimize.');
|
|
70
|
+
if (highRiskGene) directives.push('Selected gene is high risk for current signals; keep blast radius narrow and prefer smallest viable change.');
|
|
71
|
+
if (failureStreak >= 2) directives.push('Recent failure streak detected; avoid repeating recent failed approach.');
|
|
72
|
+
directives.push('Target max files for this cycle: ' + blastRadiusMaxFiles + '.');
|
|
73
|
+
|
|
74
|
+
return {
|
|
75
|
+
name: baseStrategy.name,
|
|
76
|
+
label: baseStrategy.label,
|
|
77
|
+
description: baseStrategy.description,
|
|
78
|
+
forceInnovate: forceInnovate,
|
|
79
|
+
cautiousExecution: cautiousExecution,
|
|
80
|
+
highRiskGene: highRiskGene,
|
|
81
|
+
repairStreak: repairStreak,
|
|
82
|
+
failureStreak: failureStreak,
|
|
83
|
+
blastRadiusMaxFiles: blastRadiusMaxFiles,
|
|
84
|
+
directives: directives,
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// ---------------------------------------------------------------------------
|
|
89
|
+
// Stage 6 — Selection & Mutation
|
|
90
|
+
// ---------------------------------------------------------------------------
|
|
91
|
+
// Input ctx fields: genes, capsules, signals, recentEvents, memoryAdvice,
|
|
92
|
+
// recentFailedCapsules, heartbeatCapGaps, heartbeatNovelty, plateauOverride,
|
|
93
|
+
// observations, IS_RANDOM_DRIFT, hubHit (optional, for verbose only)
|
|
94
|
+
// Output ctx additions: selectedGene, capsuleCandidates, selector, selectedBy,
|
|
95
|
+
// capsulesUsed, selectedCapsuleId, strategyPolicy, personalitySelection,
|
|
96
|
+
// personalityState, mutation, mutationInnovateMode, hypothesisId
|
|
97
|
+
|
|
98
|
+
async function selectAndMutate(ctx) {
|
|
99
|
+
const {
|
|
100
|
+
genes, capsules, signals, recentEvents,
|
|
101
|
+
memoryAdvice, recentFailedCapsules,
|
|
102
|
+
heartbeatCapGaps, heartbeatNovelty,
|
|
103
|
+
plateauOverride, observations,
|
|
104
|
+
IS_RANDOM_DRIFT,
|
|
105
|
+
hubHit,
|
|
106
|
+
} = ctx;
|
|
107
|
+
|
|
108
|
+
const { selectedGene, capsuleCandidates, selector } = selectGeneAndCapsule({
|
|
109
|
+
genes,
|
|
110
|
+
capsules,
|
|
111
|
+
signals,
|
|
112
|
+
memoryAdvice,
|
|
113
|
+
driftEnabled: IS_RANDOM_DRIFT,
|
|
114
|
+
failedCapsules: recentFailedCapsules,
|
|
115
|
+
capabilityGaps: heartbeatCapGaps,
|
|
116
|
+
noveltyScore: heartbeatNovelty && Number.isFinite(heartbeatNovelty.score) ? heartbeatNovelty.score : null,
|
|
117
|
+
plateauOverride,
|
|
118
|
+
});
|
|
119
|
+
|
|
120
|
+
const selectedBy = memoryAdvice && memoryAdvice.preferredGeneId ? 'memory_graph+selector' : 'selector';
|
|
121
|
+
const capsulesUsed = Array.isArray(capsuleCandidates)
|
|
122
|
+
? capsuleCandidates.map(c => (c && c.id ? String(c.id) : null)).filter(Boolean)
|
|
123
|
+
: [];
|
|
124
|
+
const selectedCapsuleId = capsulesUsed.length ? capsulesUsed[0] : null;
|
|
125
|
+
const strategyPolicy = computeAdaptiveStrategyPolicy({
|
|
126
|
+
recentEvents,
|
|
127
|
+
selectedGene,
|
|
128
|
+
signals,
|
|
129
|
+
});
|
|
130
|
+
|
|
131
|
+
_verbose('Gene selection: gene=' + (selectedGene ? selectedGene.id : '(none)') + ' capsule=' + (selectedCapsuleId || '(none)') + ' selectedBy=' + selectedBy + ' selector=' + (selector || '(none)'));
|
|
132
|
+
_verbose('Strategy policy: name=' + strategyPolicy.name + ' forceInnovate=' + strategyPolicy.forceInnovate + ' cautious=' + strategyPolicy.cautiousExecution + ' maxFiles=' + strategyPolicy.blastRadiusMaxFiles);
|
|
133
|
+
if (memoryAdvice) {
|
|
134
|
+
_verbose('Memory advice: preferred=' + (memoryAdvice.preferredGeneId || '(none)') + ' banned=[' + (Array.isArray(memoryAdvice.bannedGeneIds) ? memoryAdvice.bannedGeneIds.join(',') : '') + ']');
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
// Personality selection (natural selection + small mutation when triggered).
|
|
138
|
+
// This state is persisted in MEMORY_DIR and is treated as an evolution control surface (not role-play).
|
|
139
|
+
const personalitySelection = selectPersonalityForRun({
|
|
140
|
+
driftEnabled: IS_RANDOM_DRIFT,
|
|
141
|
+
signals,
|
|
142
|
+
recentEvents,
|
|
143
|
+
});
|
|
144
|
+
const personalityState = personalitySelection && personalitySelection.personality_state ? personalitySelection.personality_state : null;
|
|
145
|
+
|
|
146
|
+
// Mutation object is mandatory for every evolution run.
|
|
147
|
+
const tail = Array.isArray(recentEvents) ? recentEvents.slice(-6) : [];
|
|
148
|
+
const tailOutcomes = tail
|
|
149
|
+
.map(e => (e && e.outcome && e.outcome.status ? String(e.outcome.status) : null))
|
|
150
|
+
.filter(Boolean);
|
|
151
|
+
const stableSuccess = tailOutcomes.length >= 6 && tailOutcomes.every(s => s === 'success');
|
|
152
|
+
const tailAvgScore =
|
|
153
|
+
tail.length > 0
|
|
154
|
+
? tail.reduce((acc, e) => acc + (e && e.outcome && Number.isFinite(Number(e.outcome.score)) ? Number(e.outcome.score) : 0), 0) /
|
|
155
|
+
tail.length
|
|
156
|
+
: 0;
|
|
157
|
+
const innovationPressure =
|
|
158
|
+
!IS_RANDOM_DRIFT &&
|
|
159
|
+
personalityState &&
|
|
160
|
+
Number.isFinite(Number(personalityState.creativity)) &&
|
|
161
|
+
Number(personalityState.creativity) >= 0.75 &&
|
|
162
|
+
stableSuccess &&
|
|
163
|
+
tailAvgScore >= 0.7;
|
|
164
|
+
const forceInnovation =
|
|
165
|
+
String(process.env.FORCE_INNOVATION || process.env.EVOLVE_FORCE_INNOVATION || '').toLowerCase() === 'true';
|
|
166
|
+
const mutationInnovateMode = !!IS_RANDOM_DRIFT || !!innovationPressure || !!forceInnovation || !!strategyPolicy.forceInnovate;
|
|
167
|
+
const mutationSignals = innovationPressure ? [...(Array.isArray(signals) ? signals : []), 'stable_success_plateau'] : signals;
|
|
168
|
+
const mutationSignalsEffective = (forceInnovation || strategyPolicy.forceInnovate)
|
|
169
|
+
? [...(Array.isArray(mutationSignals) ? mutationSignals : []), 'force_innovation']
|
|
170
|
+
: mutationSignals;
|
|
171
|
+
|
|
172
|
+
const allowHighRisk =
|
|
173
|
+
!!IS_RANDOM_DRIFT &&
|
|
174
|
+
!!personalitySelection &&
|
|
175
|
+
!!personalitySelection.personality_known &&
|
|
176
|
+
personalityState &&
|
|
177
|
+
isHighRiskMutationAllowed(personalityState) &&
|
|
178
|
+
Number(personalityState.rigor) >= 0.8 &&
|
|
179
|
+
Number(personalityState.risk_tolerance) <= 0.3 &&
|
|
180
|
+
!(Array.isArray(signals) && signals.includes('log_error'));
|
|
181
|
+
const mutation = buildMutation({
|
|
182
|
+
signals: mutationSignalsEffective,
|
|
183
|
+
selectedGene,
|
|
184
|
+
driftEnabled: mutationInnovateMode,
|
|
185
|
+
personalityState,
|
|
186
|
+
allowHighRisk,
|
|
187
|
+
});
|
|
188
|
+
|
|
189
|
+
_verbose('Mutation: category=' + (mutation && mutation.category || '?') + ' risk=' + (mutation && mutation.risk_level || '?') + ' innovateMode=' + mutationInnovateMode + ' forceInnovation=' + forceInnovation + ' allowHighRisk=' + allowHighRisk);
|
|
190
|
+
_verbose('Hub: hubHit=' + (hubHit && hubHit.hit ? 'true (score=' + hubHit.score + ' mode=' + hubHit.mode + ')' : 'false (' + (hubHit && hubHit.reason || 'unknown') + ')'));
|
|
191
|
+
|
|
192
|
+
// Memory Graph: record hypothesis bridging Signal -> Action. If this fails, refuse to evolve.
|
|
193
|
+
let hypothesisId = null;
|
|
194
|
+
try {
|
|
195
|
+
const hyp = recordHypothesis({
|
|
196
|
+
signals,
|
|
197
|
+
mutation,
|
|
198
|
+
personality_state: personalityState,
|
|
199
|
+
selectedGene,
|
|
200
|
+
selector,
|
|
201
|
+
driftEnabled: mutationInnovateMode,
|
|
202
|
+
selectedBy,
|
|
203
|
+
capsulesUsed,
|
|
204
|
+
observations,
|
|
205
|
+
});
|
|
206
|
+
hypothesisId = hyp && hyp.hypothesisId ? hyp.hypothesisId : null;
|
|
207
|
+
} catch (e) {
|
|
208
|
+
console.error(`[MemoryGraph] Hypothesis write failed: ${e.message}`);
|
|
209
|
+
console.error(`[MemoryGraph] Refusing to evolve without causal memory. Target: ${memoryGraphPath()}`);
|
|
210
|
+
throw new Error(`MemoryGraph Hypothesis write failed: ${e.message}`);
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
// Memory Graph: record the chosen causal path for this run. If this fails, refuse to output a mutation prompt.
|
|
214
|
+
try {
|
|
215
|
+
recordAttempt({
|
|
216
|
+
signals,
|
|
217
|
+
mutation,
|
|
218
|
+
personality_state: personalityState,
|
|
219
|
+
selectedGene,
|
|
220
|
+
selector,
|
|
221
|
+
driftEnabled: mutationInnovateMode,
|
|
222
|
+
selectedBy,
|
|
223
|
+
hypothesisId,
|
|
224
|
+
capsulesUsed,
|
|
225
|
+
observations,
|
|
226
|
+
});
|
|
227
|
+
} catch (e) {
|
|
228
|
+
console.error(`[MemoryGraph] Attempt write failed: ${e.message}`);
|
|
229
|
+
console.error(`[MemoryGraph] Refusing to evolve without causal memory. Target: ${memoryGraphPath()}`);
|
|
230
|
+
throw new Error(`MemoryGraph Attempt write failed: ${e.message}`);
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
// Open-PR hints: weak token-overlap signal between selected gene and any
|
|
234
|
+
// open PR. Hint-only — does not block this cycle. dispatch.js will inject
|
|
235
|
+
// it into the LLM prompt so a thinking model can choose to defer if its
|
|
236
|
+
// planned changes look suspicious. The hard guard is in solidify.js, where
|
|
237
|
+
// file-level overlap triggers a rollback.
|
|
238
|
+
let openPRHints = [];
|
|
239
|
+
if (process.env.EVOLVE_OPEN_PR_DEDUP !== '0') {
|
|
240
|
+
try {
|
|
241
|
+
const { findSignalHints } = require('../../gep/openPRRegistry');
|
|
242
|
+
const sigPool = (selectedGene && Array.isArray(selectedGene.signals_match) && selectedGene.signals_match.length > 0)
|
|
243
|
+
? selectedGene.signals_match
|
|
244
|
+
: signals;
|
|
245
|
+
openPRHints = findSignalHints({ signals: sigPool });
|
|
246
|
+
if (openPRHints.length > 0) {
|
|
247
|
+
_verbose('OpenPR hints: ' + openPRHints.map(function (h) { return '#' + h.number + ' (' + h.tokenOverlap.toFixed(2) + ')'; }).join(', '));
|
|
248
|
+
}
|
|
249
|
+
} catch (e) {
|
|
250
|
+
// Hints must never block selection.
|
|
251
|
+
_verbose('OpenPR hint lookup failed (non-fatal): ' + (e && e.message ? e.message : e));
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
return {
|
|
256
|
+
...ctx,
|
|
257
|
+
selectedGene,
|
|
258
|
+
capsuleCandidates,
|
|
259
|
+
selector,
|
|
260
|
+
selectedBy,
|
|
261
|
+
capsulesUsed,
|
|
262
|
+
selectedCapsuleId,
|
|
263
|
+
strategyPolicy,
|
|
264
|
+
personalitySelection,
|
|
265
|
+
personalityState,
|
|
266
|
+
mutation,
|
|
267
|
+
mutationInnovateMode,
|
|
268
|
+
forceInnovation,
|
|
269
|
+
hypothesisId,
|
|
270
|
+
openPRHints,
|
|
271
|
+
};
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
module.exports = { selectAndMutate, computeAdaptiveStrategyPolicy };
|