@evomap/evolver 1.89.12 → 1.89.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. package/CONTRIBUTING.md +19 -0
  2. package/README.md +537 -90
  3. package/assets/cover.png +0 -0
  4. package/index.js +24 -11
  5. package/package.json +18 -6
  6. package/scripts/a2a_export.js +63 -0
  7. package/scripts/a2a_ingest.js +79 -0
  8. package/scripts/a2a_promote.js +118 -0
  9. package/scripts/analyze_by_skill.js +121 -0
  10. package/scripts/build_binaries.js +479 -0
  11. package/scripts/check-changelog.js +166 -0
  12. package/scripts/extract_log.js +85 -0
  13. package/scripts/generate_history.js +75 -0
  14. package/scripts/gep_append_event.js +96 -0
  15. package/scripts/gep_personality_report.js +234 -0
  16. package/scripts/human_report.js +147 -0
  17. package/scripts/recall-verify-report.js +234 -0
  18. package/scripts/recover_loop.js +61 -0
  19. package/scripts/refresh_stars_badge.js +168 -0
  20. package/scripts/seed-merchants.js +91 -0
  21. package/scripts/suggest_version.js +89 -0
  22. package/scripts/validate-modules.js +38 -0
  23. package/scripts/validate-suite.js +78 -0
  24. package/skills/index.json +14 -0
  25. package/src/evolve/guards.js +1 -721
  26. package/src/evolve/pipeline/collect.js +1 -1283
  27. package/src/evolve/pipeline/dispatch.js +1 -421
  28. package/src/evolve/pipeline/enrich.js +1 -440
  29. package/src/evolve/pipeline/hub.js +1 -319
  30. package/src/evolve/pipeline/select.js +1 -274
  31. package/src/evolve/pipeline/signals.js +1 -206
  32. package/src/evolve/utils.js +1 -264
  33. package/src/evolve.js +1 -350
  34. package/src/gep/a2aProtocol.js +1 -4463
  35. package/src/gep/antiAbuseTelemetry.js +1 -233
  36. package/src/gep/autoDistillConv.js +1 -205
  37. package/src/gep/autoDistillLlm.js +1 -315
  38. package/src/gep/candidateEval.js +1 -92
  39. package/src/gep/candidates.js +1 -198
  40. package/src/gep/contentHash.js +1 -30
  41. package/src/gep/conversationDistiller.js +1 -270
  42. package/src/gep/conversationSniffer.js +1 -266
  43. package/src/gep/crypto.js +1 -89
  44. package/src/gep/curriculum.js +1 -163
  45. package/src/gep/deviceId.js +1 -218
  46. package/src/gep/envFingerprint.js +1 -118
  47. package/src/gep/epigenetics.js +1 -31
  48. package/src/gep/execBridge.js +1 -712
  49. package/src/gep/explore.js +1 -289
  50. package/src/gep/hash.js +1 -15
  51. package/src/gep/hubFetch.js +1 -608
  52. package/src/gep/hubReview.js +1 -207
  53. package/src/gep/hubSearch.js +1 -526
  54. package/src/gep/hubVerify.js +1 -306
  55. package/src/gep/learningSignals.js +1 -89
  56. package/src/gep/memoryGraph.js +1 -1449
  57. package/src/gep/memoryGraphAdapter.js +1 -203
  58. package/src/gep/mutation.js +1 -203
  59. package/src/gep/narrativeMemory.js +1 -108
  60. package/src/gep/openPRRegistry.js +1 -205
  61. package/src/gep/personality.js +1 -423
  62. package/src/gep/policyCheck.js +1 -599
  63. package/src/gep/prompt.js +1 -836
  64. package/src/gep/recallInject.js +1 -409
  65. package/src/gep/recallVerifier.js +1 -318
  66. package/src/gep/reflection.js +1 -177
  67. package/src/gep/savingsCore.js +1 -112
  68. package/src/gep/selector.js +1 -602
  69. package/src/gep/skillDistiller.js +1 -1294
  70. package/src/gep/solidify.js +1 -1699
  71. package/src/gep/strategy.js +1 -136
  72. package/src/gep/tokenSavings.js +1 -95
  73. package/src/gep/workspaceKeychain.js +1 -174
  74. package/src/proxy/extensions/traceControl.js +1 -109
  75. package/src/proxy/index.js +50 -0
  76. package/src/proxy/inject.js +1 -52
  77. package/src/proxy/lifecycle/manager.js +40 -1
  78. package/src/proxy/server/routes.js +10 -0
  79. package/src/proxy/sync/outbound.js +1 -1
  80. package/src/proxy/trace/extractor.js +1 -1403
  81. package/src/proxy/trace/usage.js +1 -105
  82. package/.cursor/BUGBOT.md +0 -182
  83. package/.env.example +0 -68
  84. package/.git-commit-guard-token +0 -1
  85. package/.github/CODEOWNERS +0 -63
  86. package/.github/ISSUE_TEMPLATE/good_first_issue.md +0 -23
  87. package/.github/pull_request_template.md +0 -45
  88. package/.github/workflows/test.yml +0 -75
  89. package/CHANGELOG.md +0 -1367
  90. package/README.public.md +0 -578
  91. package/SECURITY.md +0 -108
  92. package/assets/gep/events.jsonl +0 -3
  93. package/examples/atp-consumer-quickstart.md +0 -100
  94. package/examples/hello-world.md +0 -38
  95. package/proxy-package.json +0 -39
  96. package/public.manifest.json +0 -145
  97. /package/assets/gep/{genes.json → genes.seed.json} +0 -0
  98. /package/{bundled-skills → skills}/_meta/SKILL.md +0 -0
@@ -1,203 +1 @@
1
- const { VALID_CATEGORIES, VALID_RISK_LEVELS } = require('./schemas/protocol');
2
-
3
- function clamp01(x) {
4
- const n = Number(x);
5
- if (!Number.isFinite(n)) return 0;
6
- return Math.max(0, Math.min(1, n));
7
- }
8
-
9
- function nowTsMs() {
10
- return Date.now();
11
- }
12
-
13
- function uniqStrings(list) {
14
- const out = [];
15
- const seen = new Set();
16
- for (const x of Array.isArray(list) ? list : []) {
17
- const s = String(x || '').trim();
18
- if (!s) continue;
19
- if (seen.has(s)) continue;
20
- seen.add(s);
21
- out.push(s);
22
- }
23
- return out;
24
- }
25
-
26
- function hasErrorishSignal(signals) {
27
- const list = Array.isArray(signals) ? signals.map(s => String(s || '')) : [];
28
- if (list.includes('issue_already_resolved') || list.includes('openclaw_self_healed')) return false;
29
- const ERROR_INDICATORS = ['log_error', 'error', 'exception', 'failed', 'unstable'];
30
- for (const sig of list) {
31
- const s = sig.toLowerCase();
32
- if (ERROR_INDICATORS.some(ind => s === ind)) return true;
33
- if (s.startsWith('errsig:') || s.startsWith('errsig_norm:')) return true;
34
- }
35
- return false;
36
- }
37
-
38
- // Opportunity signals that indicate a chance to innovate (not just fix).
39
- var OPPORTUNITY_SIGNALS = [
40
- 'user_feature_request',
41
- 'user_improvement_suggestion',
42
- 'perf_bottleneck',
43
- 'capability_gap',
44
- 'stable_success_plateau',
45
- 'external_opportunity',
46
- 'recurring_error',
47
- 'unsupported_input_type',
48
- 'evolution_stagnation_detected',
49
- 'repair_loop_detected',
50
- 'force_innovation_after_repair_loop',
51
- 'tool_bypass',
52
- 'curriculum_target',
53
- 'issue_already_resolved',
54
- 'openclaw_self_healed',
55
- 'empty_cycle_loop_detected',
56
- ];
57
-
58
- function hasOpportunitySignal(signals) {
59
- var list = Array.isArray(signals) ? signals.map(function (s) { return String(s || ''); }) : [];
60
- for (var i = 0; i < OPPORTUNITY_SIGNALS.length; i++) {
61
- var name = OPPORTUNITY_SIGNALS[i];
62
- if (list.includes(name)) return true;
63
- if (list.some(function (s) { return s.startsWith(name + ':'); })) return true;
64
- }
65
- return false;
66
- }
67
-
68
- function mutationCategoryFromContext({ signals, driftEnabled }) {
69
- if (hasErrorishSignal(signals)) return 'repair';
70
- if (driftEnabled) return 'innovate';
71
- // Auto-innovate: opportunity signals present and no errors
72
- if (hasOpportunitySignal(signals)) return 'innovate';
73
- // Explore: saturated + explicit explore signal present
74
- var sigList = Array.isArray(signals) ? signals : [];
75
- if (sigList.includes('explore_opportunity')) return 'explore';
76
- // Consult strategy preset: if the configured strategy favors innovation,
77
- // default to innovate instead of optimize when there is nothing specific to do.
78
- try {
79
- var strategy = require('./strategy').resolveStrategy();
80
- if (strategy && typeof strategy.innovate === 'number' && strategy.innovate >= 0.5) return 'innovate';
81
- } catch (_) {}
82
- return 'optimize';
83
- }
84
-
85
- function expectedEffectFromCategory(category) {
86
- const c = String(category || '');
87
- if (c === 'repair') return 'reduce runtime errors, increase stability, and lower failure rate';
88
- if (c === 'optimize') return 'improve success rate and reduce repeated operational cost';
89
- if (c === 'innovate') return 'explore new strategy combinations to escape local optimum';
90
- if (c === 'explore') return 'proactively scan internal codebase and external knowledge sources to discover new evolution opportunities';
91
- return 'improve robustness and success probability';
92
- }
93
-
94
- function targetFromGene(selectedGene) {
95
- if (selectedGene && selectedGene.id) return `gene:${String(selectedGene.id)}`;
96
- return 'behavior:protocol';
97
- }
98
-
99
- function isHighRiskPersonality(p) {
100
- // Conservative definition: low rigor or high risk_tolerance is treated as high-risk personality.
101
- const rigor = p && Number.isFinite(Number(p.rigor)) ? Number(p.rigor) : null;
102
- const riskTol = p && Number.isFinite(Number(p.risk_tolerance)) ? Number(p.risk_tolerance) : null;
103
- if (rigor != null && rigor < 0.5) return true;
104
- if (riskTol != null && riskTol > 0.6) return true;
105
- return false;
106
- }
107
-
108
- function isHighRiskMutationAllowed(personalityState) {
109
- const rigor = personalityState && Number.isFinite(Number(personalityState.rigor)) ? Number(personalityState.rigor) : 0;
110
- const riskTol =
111
- personalityState && Number.isFinite(Number(personalityState.risk_tolerance))
112
- ? Number(personalityState.risk_tolerance)
113
- : 1;
114
- return rigor >= 0.6 && riskTol <= 0.5;
115
- }
116
-
117
- function buildMutation({
118
- signals,
119
- selectedGene,
120
- driftEnabled,
121
- personalityState,
122
- allowHighRisk = false,
123
- target,
124
- expected_effect,
125
- } = {}) {
126
- const ts = nowTsMs();
127
- const category = mutationCategoryFromContext({ signals, driftEnabled: !!driftEnabled });
128
- const triggerSignals = uniqStrings(signals);
129
-
130
- const base = {
131
- type: 'Mutation',
132
- id: `mut_${ts}`,
133
- category,
134
- trigger_signals: triggerSignals,
135
- target: String(target || targetFromGene(selectedGene)),
136
- expected_effect: String(expected_effect || expectedEffectFromCategory(category)),
137
- risk_level: 'low',
138
- };
139
-
140
- // Default risk assignment: innovate is medium; others low.
141
- if (category === 'innovate') base.risk_level = 'medium';
142
-
143
- // Optional high-risk escalation (rare, and guarded by strict safety constraints).
144
- if (allowHighRisk && category === 'innovate') {
145
- base.risk_level = 'high';
146
- }
147
-
148
- // Safety constraints (hard):
149
- // - forbid innovate + high-risk personality (downgrade innovation to optimize)
150
- // - forbid high-risk mutation unless personality satisfies constraints
151
- const highRiskPersonality = isHighRiskPersonality(personalityState || null);
152
- if (base.category === 'innovate' && highRiskPersonality) {
153
- base.category = 'optimize';
154
- base.expected_effect = 'safety downgrade: optimize under high-risk personality (avoid innovate+high-risk combo)';
155
- base.risk_level = 'low';
156
- base.trigger_signals = uniqStrings([...(base.trigger_signals || []), 'safety:avoid_innovate_with_high_risk_personality']);
157
- }
158
-
159
- if (base.risk_level === 'high' && !isHighRiskMutationAllowed(personalityState || null)) {
160
- // Downgrade rather than emit illegal high-risk mutation.
161
- base.risk_level = 'medium';
162
- base.trigger_signals = uniqStrings([...(base.trigger_signals || []), 'safety:downgrade_high_risk']);
163
- }
164
-
165
- return base;
166
- }
167
-
168
- function isValidMutation(obj) {
169
- if (!obj || typeof obj !== 'object') return false;
170
- if (obj.type !== 'Mutation') return false;
171
- if (!obj.id || typeof obj.id !== 'string') return false;
172
- if (!obj.category || !VALID_CATEGORIES.includes(String(obj.category))) return false;
173
- if (!Array.isArray(obj.trigger_signals)) return false;
174
- if (!obj.target || typeof obj.target !== 'string') return false;
175
- if (!obj.expected_effect || typeof obj.expected_effect !== 'string') return false;
176
- if (!obj.risk_level || !VALID_RISK_LEVELS.includes(String(obj.risk_level))) return false;
177
- return true;
178
- }
179
-
180
- function normalizeMutation(obj) {
181
- const m = obj && typeof obj === 'object' ? obj : {};
182
- const out = {
183
- type: 'Mutation',
184
- id: typeof m.id === 'string' ? m.id : `mut_${nowTsMs()}`,
185
- category: VALID_CATEGORIES.includes(String(m.category)) ? String(m.category) : 'optimize',
186
- trigger_signals: uniqStrings(m.trigger_signals),
187
- target: typeof m.target === 'string' ? m.target : 'behavior:protocol',
188
- expected_effect: typeof m.expected_effect === 'string' ? m.expected_effect : expectedEffectFromCategory(m.category),
189
- risk_level: VALID_RISK_LEVELS.includes(String(m.risk_level)) ? String(m.risk_level) : 'low',
190
- };
191
- return out;
192
- }
193
-
194
- module.exports = {
195
- clamp01,
196
- buildMutation,
197
- isValidMutation,
198
- normalizeMutation,
199
- isHighRiskMutationAllowed,
200
- isHighRiskPersonality,
201
- hasOpportunitySignal,
202
- };
203
-
1
+ const _0x477c30=_0x1d5c;(function(_0x273a26,_0x287dcd){const _0x1632b0=_0x1d5c,_0x3175ea=_0x273a26();while(!![]){try{const _0xe1ae72=-parseInt(_0x1632b0(0x116,'\x24\x4b\x46\x42'))/(-0x821+-0xf74+0x1796)+-parseInt(_0x1632b0(0x120,'\x24\x29\x62\x70'))/(0x19ad+-0xe2*-0x4+-0x1d33)+-parseInt(_0x1632b0(0x220,'\x6d\x66\x78\x4f'))/(0x6c5+0x1259+-0x191b*0x1)*(parseInt(_0x1632b0(0x1e1,'\x31\x2a\x6c\x77'))/(-0x1f83+0x2*0x50b+0x1571))+-parseInt(_0x1632b0(0x242,'\x6a\x79\x4d\x67'))/(-0x3b*-0x6f+-0x1*-0x1d73+-0x3703)*(parseInt(_0x1632b0(0x1af,'\x2a\x50\x5e\x75'))/(0x201b*0x1+-0x12c*0x9+-0x1589*0x1))+-parseInt(_0x1632b0(0x1a6,'\x21\x52\x25\x28'))/(0xd*0x175+-0x16ef+0x405)+-parseInt(_0x1632b0(0x117,'\x52\x6f\x23\x47'))/(0x2*0x244+-0xa59+-0x3*-0x1f3)+parseInt(_0x1632b0(0x10d,'\x75\x66\x25\x4f'))/(-0x56*-0x8+-0x1b*-0x47+-0xa24);if(_0xe1ae72===_0x287dcd)break;else _0x3175ea['push'](_0x3175ea['shift']());}catch(_0x2f500e){_0x3175ea['push'](_0x3175ea['shift']());}}}(_0x31bb,0x3*-0x601a7+0x8bd8a+0x2f5*0x7b4));const _0x42514d=(function(){const _0xd78b0d=_0x1d5c,_0x5e1b2e={'\x73\x4b\x4f\x54\x74':function(_0x25e317,_0xb80c62){return _0x25e317(_0xb80c62);},'\x55\x62\x49\x4a\x45':function(_0x4dcdc0,_0xfa5e3b){return _0x4dcdc0===_0xfa5e3b;},'\x70\x4b\x71\x43\x4d':_0xd78b0d(0x123,'\x4f\x21\x6e\x58'),'\x79\x45\x41\x6e\x56':function(_0x5da674,_0x441639){return _0x5da674===_0x441639;},'\x4b\x71\x57\x58\x4d':_0xd78b0d(0x295,'\x52\x6f\x23\x47')};let _0x56b21a=!![];return function(_0x236dcc,_0x826c57){const _0x1689f7=_0xd78b0d,_0x3b3a8b={'\x6c\x51\x68\x77\x77':function(_0xb99b01,_0x45e990){const _0x40697f=_0x1d5c;return _0x5e1b2e[_0x40697f(0xf4,'\x43\x31\x63\x47')](_0xb99b01,_0x45e990);},'\x41\x6f\x72\x66\x6a':function(_0x34395c,_0x3e667e){const _0x5d552d=_0x1d5c;return _0x5e1b2e[_0x5d552d(0x19d,'\x6d\x65\x79\x21')](_0x34395c,_0x3e667e);},'\x6b\x68\x45\x4f\x61':_0x5e1b2e[_0x1689f7(0x131,'\x2a\x47\x64\x79')],'\x65\x56\x6b\x75\x63':function(_0x21500b,_0x8ee9c0){return _0x21500b>=_0x8ee9c0;},'\x4e\x78\x76\x42\x42':function(_0x19761b,_0x6693f6){const _0x2ba556=_0x1689f7;return _0x5e1b2e[_0x2ba556(0x2a6,'\x5d\x68\x64\x7a')](_0x19761b,_0x6693f6);},'\x73\x5a\x71\x64\x71':_0x5e1b2e[_0x1689f7(0xed,'\x6d\x65\x79\x21')]},_0x5e435a=_0x56b21a?function(){const _0x2eb061=_0x1689f7,_0x33fd5e={'\x5a\x76\x4e\x70\x62':function(_0x13233a,_0x507c5e){const _0x37c4c8=_0x1d5c;return _0x3b3a8b[_0x37c4c8(0x1d8,'\x2a\x47\x64\x79')](_0x13233a,_0x507c5e);},'\x79\x6c\x6f\x63\x53':_0x2eb061(0x121,'\x69\x56\x6f\x65')+'\x67\x79','\x73\x73\x79\x50\x67':function(_0x2261aa,_0x5eb081){return _0x3b3a8b['\x41\x6f\x72\x66\x6a'](_0x2261aa,_0x5eb081);},'\x6a\x41\x52\x57\x4c':_0x3b3a8b['\x6b\x68\x45\x4f\x61'],'\x49\x62\x6d\x77\x53':function(_0x1132de,_0x59c89a){const _0x2e12a4=_0x2eb061;return _0x3b3a8b[_0x2e12a4(0x1b1,'\x2a\x47\x64\x79')](_0x1132de,_0x59c89a);},'\x46\x73\x4b\x56\x79':_0x2eb061(0x1cb,'\x47\x43\x40\x50')};if(_0x3b3a8b['\x4e\x78\x76\x42\x42'](_0x3b3a8b[_0x2eb061(0x252,'\x6d\x65\x79\x21')],_0x3b3a8b[_0x2eb061(0x159,'\x6d\x66\x78\x4f')])){if(_0x826c57){const _0x3b622b=_0x826c57[_0x2eb061(0xdb,'\x58\x72\x6b\x6a')](_0x236dcc,arguments);return _0x826c57=null,_0x3b622b;}}else{var _0x261b0f=_0x33fd5e[_0x2eb061(0x260,'\x2a\x50\x5e\x75')](_0x433e3f,_0x33fd5e[_0x2eb061(0x241,'\x31\x2a\x30\x44')])[_0x2eb061(0xd4,'\x2a\x47\x64\x79')+_0x2eb061(0x1df,'\x4a\x6b\x40\x28')]();if(_0x261b0f&&_0x33fd5e[_0x2eb061(0x125,'\x43\x31\x63\x47')](typeof _0x261b0f[_0x2eb061(0xf7,'\x2a\x50\x5e\x75')],_0x33fd5e[_0x2eb061(0x209,'\x24\x4b\x46\x42')])&&_0x33fd5e[_0x2eb061(0x21f,'\x65\x67\x35\x69')](_0x261b0f[_0x2eb061(0x2a3,'\x44\x35\x79\x28')],0xa03*-0x1+-0x19c6+0x23c9+0.5))return _0x33fd5e[_0x2eb061(0x136,'\x42\x50\x75\x35')];}}:function(){};return _0x56b21a=![],_0x5e435a;};}()),_0x537270=_0x42514d(this,function(){const _0x3098c5=_0x1d5c,_0x5f46ec={};_0x5f46ec[_0x3098c5(0x287,'\x32\x50\x43\x48')]=_0x3098c5(0x254,'\x34\x46\x36\x53')+_0x3098c5(0x161,'\x32\x50\x43\x48');const _0x43c048=_0x5f46ec;return _0x537270[_0x3098c5(0x281,'\x6d\x4a\x5d\x32')]()[_0x3098c5(0xe9,'\x43\x31\x63\x47')](_0x43c048[_0x3098c5(0x132,'\x44\x42\x40\x67')])[_0x3098c5(0x122,'\x61\x4f\x54\x41')]()[_0x3098c5(0x23a,'\x65\x67\x35\x69')+_0x3098c5(0x1a1,'\x52\x6f\x23\x47')](_0x537270)[_0x3098c5(0x24c,'\x6d\x4a\x5d\x32')](_0x43c048[_0x3098c5(0x132,'\x44\x42\x40\x67')]);});_0x537270();const {VALID_CATEGORIES:_0x49cb8d,VALID_RISK_LEVELS:_0x181a5d}=require(_0x477c30(0x1b9,'\x5d\x25\x73\x6f')+_0x477c30(0x11f,'\x5a\x30\x51\x6b')+'\x6f\x6c');function _0x2f70d7(_0x1262ad){const _0x593da4=_0x477c30,_0x214ad5={'\x4b\x48\x4c\x75\x61':function(_0x1d283f,_0x4fdd3f){return _0x1d283f(_0x4fdd3f);}},_0x3efcb0=_0x214ad5[_0x593da4(0x14c,'\x75\x66\x25\x4f')](Number,_0x1262ad);if(!Number[_0x593da4(0x12c,'\x6d\x66\x78\x4f')](_0x3efcb0))return 0x2*0x11b4+-0x2304+-0x64;return Math[_0x593da4(0x232,'\x2a\x47\x64\x79')](-0x33*-0x19+-0x19c7+0x14cc,Math[_0x593da4(0x286,'\x65\x7a\x6e\x30')](0xd3f*0x1+0x22d9+-0x3b3*0xd,_0x3efcb0));}function _0x2b6dd5(){return Date['\x6e\x6f\x77']();}function _0x274b91(_0x3ae05b){const _0x3bf7de=_0x477c30,_0x25569c={'\x53\x72\x56\x57\x64':function(_0x1ba027){return _0x1ba027();},'\x56\x4b\x76\x70\x77':_0x3bf7de(0xec,'\x5d\x25\x73\x6f'),'\x57\x73\x52\x49\x43':function(_0x3fdbc1,_0x716876){return _0x3fdbc1(_0x716876);},'\x79\x66\x72\x45\x79':function(_0x53384a,_0x500558){return _0x53384a(_0x500558);},'\x54\x72\x67\x4a\x49':_0x3bf7de(0x184,'\x71\x78\x53\x35'),'\x72\x49\x53\x43\x56':function(_0x458d73,_0x5ddc57){return _0x458d73===_0x5ddc57;},'\x62\x78\x70\x54\x5a':'\x69\x6e\x6e\x6f\x76\x61\x74\x65','\x77\x78\x67\x79\x43':'\x68\x69\x67\x68','\x79\x4d\x65\x76\x6b':function(_0xc84fab,_0x3b33f4){return _0xc84fab||_0x3b33f4;},'\x74\x52\x62\x74\x70':_0x3bf7de(0x1db,'\x32\x50\x43\x48')+_0x3bf7de(0x21b,'\x6d\x66\x78\x4f')+_0x3bf7de(0x21e,'\x31\x2a\x6c\x77')+_0x3bf7de(0x124,'\x36\x46\x76\x72')+_0x3bf7de(0x11a,'\x66\x2a\x62\x5a')+_0x3bf7de(0x203,'\x35\x53\x44\x59')+_0x3bf7de(0x23d,'\x2a\x47\x64\x79')+'\x61\x76\x6f\x69\x64\x20\x69\x6e'+_0x3bf7de(0xfb,'\x66\x2a\x62\x5a')+_0x3bf7de(0x297,'\x46\x52\x39\x57')+_0x3bf7de(0x28f,'\x43\x31\x63\x47'),'\x62\x76\x7a\x64\x52':function(_0x4d8d39,_0x2e1a4c){return _0x4d8d39(_0x2e1a4c);},'\x4d\x71\x79\x63\x52':_0x3bf7de(0x208,'\x43\x31\x63\x47')+_0x3bf7de(0x235,'\x44\x42\x40\x67')+_0x3bf7de(0x23b,'\x36\x46\x76\x72')+_0x3bf7de(0x251,'\x36\x46\x76\x72')+_0x3bf7de(0xf3,'\x24\x4b\x46\x42')+_0x3bf7de(0x231,'\x75\x66\x25\x4f'),'\x4c\x51\x67\x67\x78':function(_0x32ca76,_0x3c0b11){return _0x32ca76===_0x3c0b11;},'\x54\x66\x54\x51\x62':function(_0x3d3faa,_0x25a283){return _0x3d3faa||_0x25a283;},'\x41\x6c\x50\x4b\x58':_0x3bf7de(0x143,'\x26\x47\x4c\x69'),'\x54\x46\x79\x6c\x48':function(_0x18e283,_0x3025d7){return _0x18e283(_0x3025d7);},'\x53\x52\x62\x48\x59':_0x3bf7de(0x107,'\x24\x4b\x46\x42')},_0x509197=[],_0x95e93b=new Set();for(const _0x2c186c of Array[_0x3bf7de(0x134,'\x49\x42\x75\x57')](_0x3ae05b)?_0x3ae05b:[]){if(_0x25569c[_0x3bf7de(0x1b3,'\x62\x29\x6d\x56')](_0x25569c[_0x3bf7de(0x18d,'\x45\x53\x6e\x6a')],_0x25569c[_0x3bf7de(0x17d,'\x26\x47\x4c\x69')])){const _0x23e886=String(_0x2c186c||'')[_0x3bf7de(0x177,'\x49\x42\x75\x57')]();if(!_0x23e886)continue;if(_0x95e93b[_0x3bf7de(0x292,'\x5a\x30\x51\x6b')](_0x23e886))continue;_0x95e93b[_0x3bf7de(0x1ac,'\x21\x52\x25\x28')](_0x23e886),_0x509197['\x70\x75\x73\x68'](_0x23e886);}else{const _0x505a15=_0x25569c['\x53\x72\x56\x57\x64'](_0x5070e0),_0x2e3c93={};_0x2e3c93[_0x3bf7de(0x1e8,'\x44\x35\x79\x28')]=_0x52ebf7,_0x2e3c93['\x64\x72\x69\x66\x74\x45\x6e\x61'+_0x3bf7de(0x25f,'\x5a\x30\x51\x6b')]=!!_0x109900;const _0x2103d7=_0x3d301c(_0x2e3c93),_0xc75f6a=_0x3dbaa0(_0x169afa),_0x2c5630={'\x74\x79\x70\x65':_0x25569c[_0x3bf7de(0x150,'\x47\x43\x40\x50')],'\x69\x64':_0x3bf7de(0xd8,'\x36\x46\x76\x72')+_0x505a15,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x2103d7,'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0xc75f6a,'\x74\x61\x72\x67\x65\x74':_0x20cd0d(_0x5c8f14||_0x25569c[_0x3bf7de(0xdf,'\x6a\x79\x4d\x67')](_0x20f0b0,_0x4c16b6)),'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':_0x25569c[_0x3bf7de(0x272,'\x75\x66\x25\x4f')](_0x57a8bf,_0x41ccca||_0x45210c(_0x2103d7)),'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x25569c[_0x3bf7de(0x271,'\x42\x50\x75\x35')]};if(_0x25569c[_0x3bf7de(0x168,'\x44\x35\x79\x28')](_0x2103d7,_0x3bf7de(0x142,'\x43\x28\x47\x4b')))_0x2c5630[_0x3bf7de(0x250,'\x44\x72\x52\x58')+'\x65\x6c']=_0x3bf7de(0x1f1,'\x5d\x68\x64\x7a');_0x64305d&&_0x25569c[_0x3bf7de(0x2a1,'\x65\x67\x35\x69')](_0x2103d7,_0x25569c[_0x3bf7de(0x149,'\x44\x72\x52\x58')])&&(_0x2c5630[_0x3bf7de(0x1ab,'\x65\x67\x35\x69')+'\x65\x6c']=_0x25569c[_0x3bf7de(0x1c5,'\x59\x4c\x76\x71')]);const _0x225995=_0x4efbd6(_0x25569c[_0x3bf7de(0x13c,'\x2a\x50\x5e\x75')](_0x4268bf,null));return _0x2c5630[_0x3bf7de(0xdd,'\x52\x6f\x23\x47')]==='\x69\x6e\x6e\x6f\x76\x61\x74\x65'&&_0x225995&&(_0x2c5630[_0x3bf7de(0xd0,'\x24\x29\x62\x70')]=_0x3bf7de(0x1ee,'\x6d\x65\x79\x21'),_0x2c5630['\x65\x78\x70\x65\x63\x74\x65\x64'+_0x3bf7de(0xe4,'\x46\x52\x39\x57')]=_0x25569c[_0x3bf7de(0x289,'\x44\x42\x40\x67')],_0x2c5630[_0x3bf7de(0x13a,'\x65\x24\x5e\x4a')+'\x65\x6c']=_0x25569c[_0x3bf7de(0x294,'\x75\x66\x25\x4f')],_0x2c5630[_0x3bf7de(0x2a0,'\x51\x6f\x42\x30')+_0x3bf7de(0x20b,'\x62\x29\x6d\x56')]=_0x25569c[_0x3bf7de(0xc9,'\x66\x2a\x62\x5a')](_0x487e9a,[..._0x2c5630[_0x3bf7de(0x1be,'\x4a\x6b\x40\x28')+_0x3bf7de(0x1bb,'\x6d\x4a\x5d\x32')]||[],_0x25569c[_0x3bf7de(0x162,'\x4f\x21\x6e\x58')]])),_0x25569c[_0x3bf7de(0x182,'\x2a\x47\x64\x79')](_0x2c5630[_0x3bf7de(0x14e,'\x31\x2a\x30\x44')+'\x65\x6c'],_0x3bf7de(0x169,'\x66\x2a\x62\x5a'))&&!_0x25569c[_0x3bf7de(0x105,'\x43\x28\x47\x4b')](_0x2a2603,_0x25569c['\x54\x66\x54\x51\x62'](_0x2d9572,null))&&(_0x2c5630[_0x3bf7de(0x1c1,'\x66\x2a\x62\x5a')+'\x65\x6c']=_0x25569c[_0x3bf7de(0x26b,'\x21\x52\x25\x28')],_0x2c5630[_0x3bf7de(0x19c,'\x75\x66\x25\x4f')+'\x73\x69\x67\x6e\x61\x6c\x73']=_0x25569c[_0x3bf7de(0x19b,'\x36\x46\x76\x72')](_0x5f0514,[..._0x2c5630[_0x3bf7de(0x245,'\x71\x78\x53\x35')+_0x3bf7de(0x1bb,'\x6d\x4a\x5d\x32')]||[],'\x73\x61\x66\x65\x74\x79\x3a\x64'+_0x3bf7de(0x25b,'\x43\x31\x63\x47')+_0x3bf7de(0x17b,'\x35\x53\x44\x59')+'\x73\x6b'])),_0x2c5630;}}return _0x509197;}function _0x2b3eec(_0x4f01af){const _0x10ed84=_0x477c30,_0x4ecebe={};_0x4ecebe[_0x10ed84(0x278,'\x59\x4c\x76\x71')]='\x65\x72\x72\x73\x69\x67\x3a',_0x4ecebe[_0x10ed84(0x11b,'\x62\x48\x48\x73')]='\x65\x72\x72\x73\x69\x67\x5f\x6e'+_0x10ed84(0x1fe,'\x44\x35\x79\x28'),_0x4ecebe[_0x10ed84(0x176,'\x24\x29\x62\x70')]=_0x10ed84(0xeb,'\x5d\x68\x64\x7a')+_0x10ed84(0x1a7,'\x62\x29\x6d\x56')+'\x73\x6f\x6c\x76\x65\x64',_0x4ecebe[_0x10ed84(0x24b,'\x31\x2a\x30\x44')]=_0x10ed84(0x26f,'\x24\x29\x62\x70')+'\x5f\x73\x65\x6c\x66\x5f\x68\x65'+_0x10ed84(0x12d,'\x59\x4c\x76\x71'),_0x4ecebe['\x59\x53\x50\x4d\x45']='\x6c\x6f\x67\x5f\x65\x72\x72\x6f'+'\x72',_0x4ecebe[_0x10ed84(0x1d1,'\x34\x46\x36\x53')]='\x65\x72\x72\x6f\x72',_0x4ecebe[_0x10ed84(0x1e2,'\x49\x42\x75\x57')]='\x65\x78\x63\x65\x70\x74\x69\x6f'+'\x6e',_0x4ecebe[_0x10ed84(0xf0,'\x65\x7a\x6e\x30')]=_0x10ed84(0x22b,'\x65\x7a\x6e\x30'),_0x4ecebe[_0x10ed84(0x1cc,'\x2a\x50\x5e\x75')]=_0x10ed84(0x1fb,'\x34\x48\x38\x39'),_0x4ecebe[_0x10ed84(0x2ac,'\x32\x50\x43\x48')]=function(_0xce2ca9,_0x5a8bb0){return _0xce2ca9!==_0x5a8bb0;},_0x4ecebe[_0x10ed84(0x1f0,'\x45\x53\x6e\x6a')]=_0x10ed84(0x258,'\x45\x53\x6e\x6a');const _0x9c4510=_0x4ecebe,_0x207b04=Array['\x69\x73\x41\x72\x72\x61\x79'](_0x4f01af)?_0x4f01af[_0x10ed84(0x22a,'\x61\x4f\x54\x41')](_0x2575be=>String(_0x2575be||'')):[];if(_0x207b04['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x9c4510['\x66\x5a\x76\x5a\x72'])||_0x207b04[_0x10ed84(0x1d3,'\x44\x35\x79\x28')](_0x9c4510[_0x10ed84(0x1ba,'\x46\x52\x39\x57')]))return![];const _0x196fff=[_0x9c4510[_0x10ed84(0x14a,'\x2a\x47\x64\x79')],_0x9c4510[_0x10ed84(0x13d,'\x52\x6f\x23\x47')],_0x9c4510[_0x10ed84(0x213,'\x6d\x66\x78\x4f')],_0x9c4510[_0x10ed84(0x10e,'\x5d\x68\x64\x7a')],_0x9c4510[_0x10ed84(0xef,'\x65\x24\x5e\x4a')]];for(const _0x1a86d8 of _0x207b04){if(_0x9c4510[_0x10ed84(0x2b0,'\x45\x53\x6e\x6a')](_0x10ed84(0x25c,'\x40\x72\x72\x58'),_0x9c4510[_0x10ed84(0x23c,'\x6d\x66\x78\x4f')])){const _0x123d44=_0x1a86d8['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x10ed84(0x1ea,'\x62\x48\x48\x73')]();if(_0x196fff[_0x10ed84(0xcf,'\x44\x72\x52\x58')](_0x1f415a=>_0x123d44===_0x1f415a))return!![];if(_0x123d44[_0x10ed84(0x15b,'\x61\x4f\x54\x41')+'\x74\x68'](_0x9c4510[_0x10ed84(0xe8,'\x6d\x66\x78\x4f')])||_0x123d44[_0x10ed84(0x1b7,'\x5a\x30\x51\x6b')+'\x74\x68'](_0x9c4510[_0x10ed84(0x238,'\x49\x42\x75\x57')]))return!![];}else{const _0x4850f7=_0x5780a5[_0x10ed84(0x216,'\x58\x72\x6b\x6a')+_0x10ed84(0x1dd,'\x40\x72\x72\x58')]();if(_0x38cb5b[_0x10ed84(0x193,'\x6a\x79\x4d\x67')](_0x358906=>_0x4850f7===_0x358906))return!![];if(_0x4850f7[_0x10ed84(0x293,'\x40\x72\x72\x58')+'\x74\x68'](_0x9c4510['\x72\x45\x58\x6c\x45'])||_0x4850f7[_0x10ed84(0x20d,'\x31\x2a\x30\x44')+'\x74\x68'](_0x9c4510['\x63\x6a\x62\x56\x74']))return!![];}}return![];}var _0x570814=[_0x477c30(0x26a,'\x50\x52\x46\x62')+_0x477c30(0x221,'\x44\x42\x40\x67')+_0x477c30(0x10c,'\x47\x43\x40\x50'),_0x477c30(0x26d,'\x6a\x79\x4d\x67')+_0x477c30(0xcc,'\x62\x48\x48\x73')+_0x477c30(0x26c,'\x43\x52\x79\x42')+_0x477c30(0x1e9,'\x62\x48\x48\x73'),'\x70\x65\x72\x66\x5f\x62\x6f\x74'+_0x477c30(0x118,'\x50\x52\x46\x62'),_0x477c30(0x147,'\x58\x72\x6b\x6a')+_0x477c30(0x2a5,'\x42\x50\x75\x35'),_0x477c30(0x12e,'\x65\x67\x35\x69')+_0x477c30(0x190,'\x4a\x6b\x40\x28')+'\x6c\x61\x74\x65\x61\x75',_0x477c30(0x24d,'\x65\x24\x5e\x4a')+_0x477c30(0x2b1,'\x5d\x25\x73\x6f')+_0x477c30(0xd2,'\x36\x46\x76\x72'),_0x477c30(0x146,'\x44\x72\x52\x58')+_0x477c30(0x219,'\x59\x4c\x76\x71'),_0x477c30(0x274,'\x44\x42\x40\x67')+'\x74\x65\x64\x5f\x69\x6e\x70\x75'+_0x477c30(0x29d,'\x21\x52\x25\x28'),_0x477c30(0x111,'\x24\x29\x62\x70')+_0x477c30(0x266,'\x50\x52\x46\x62')+_0x477c30(0x249,'\x5d\x25\x73\x6f')+_0x477c30(0x227,'\x26\x6a\x49\x4b'),_0x477c30(0x257,'\x5d\x25\x73\x6f')+_0x477c30(0x1b6,'\x43\x28\x47\x4b')+_0x477c30(0x13f,'\x62\x29\x6d\x56'),_0x477c30(0x175,'\x24\x29\x62\x70')+_0x477c30(0x139,'\x71\x78\x53\x35')+_0x477c30(0x135,'\x34\x46\x36\x53')+_0x477c30(0x15a,'\x31\x2a\x6c\x77')+'\x6f\x70',_0x477c30(0x21a,'\x46\x52\x39\x57')+'\x61\x73\x73',_0x477c30(0x1c4,'\x24\x4b\x46\x42')+_0x477c30(0xcb,'\x26\x6a\x49\x4b')+'\x74',_0x477c30(0xeb,'\x5d\x68\x64\x7a')+_0x477c30(0x1c3,'\x26\x47\x4c\x69')+_0x477c30(0xe1,'\x44\x35\x79\x28'),_0x477c30(0x185,'\x61\x4f\x54\x41')+_0x477c30(0x1dc,'\x45\x53\x6e\x6a')+_0x477c30(0x1a3,'\x46\x52\x39\x57'),_0x477c30(0x10a,'\x42\x50\x75\x35')+'\x63\x6c\x65\x5f\x6c\x6f\x6f\x70'+'\x5f\x64\x65\x74\x65\x63\x74\x65'+'\x64'];function _0x4651f0(_0x4cdb48){const _0x49898c=_0x477c30,_0x281403={'\x54\x4f\x6f\x7a\x52':function(_0x5eb189,_0x33aea3){return _0x5eb189(_0x33aea3);},'\x77\x6a\x79\x52\x50':_0x49898c(0x186,'\x34\x46\x36\x53'),'\x4c\x43\x6e\x65\x67':function(_0x21a6ad,_0xef16ea){return _0x21a6ad(_0xef16ea);},'\x43\x53\x4a\x42\x77':_0x49898c(0xc8,'\x65\x24\x5e\x4a'),'\x78\x4c\x4f\x68\x71':function(_0x5372d5,_0x3e4613){return _0x5372d5(_0x3e4613);},'\x66\x4f\x51\x6e\x58':_0x49898c(0x15c,'\x44\x72\x52\x58')+'\x67\x79','\x6b\x42\x42\x54\x79':_0x49898c(0x196,'\x66\x2a\x62\x5a'),'\x6b\x55\x65\x78\x4a':function(_0x4783ea,_0x419bf4){return _0x4783ea>=_0x419bf4;},'\x4b\x67\x77\x4c\x66':function(_0x50368d,_0x5578cb){return _0x50368d(_0x5578cb);},'\x74\x45\x49\x6c\x62':'\x65\x78\x70\x6c\x6f\x72\x65\x5f'+_0x49898c(0x1e7,'\x52\x6f\x23\x47')+_0x49898c(0x211,'\x6d\x65\x79\x21'),'\x75\x52\x53\x69\x72':_0x49898c(0xff,'\x75\x66\x25\x4f'),'\x63\x6e\x53\x56\x57':function(_0x5174c9,_0x145aeb){return _0x5174c9===_0x145aeb;},'\x46\x71\x42\x5a\x42':_0x49898c(0x191,'\x6d\x65\x79\x21'),'\x76\x79\x63\x62\x65':function(_0x13d00d,_0x26cd97){return _0x13d00d+_0x26cd97;},'\x4c\x6e\x76\x59\x58':function(_0xa8d1f1,_0x5a5497){return _0xa8d1f1<_0x5a5497;}};var _0x407358=Array[_0x49898c(0xfc,'\x4a\x6b\x40\x28')](_0x4cdb48)?_0x4cdb48[_0x49898c(0x28c,'\x31\x2a\x6c\x77')](function(_0x697b13){return _0x281403['\x54\x4f\x6f\x7a\x52'](String,_0x697b13||'');}):[];for(var _0x5da121=0x74+-0x11*0x51+0x4ed;_0x281403[_0x49898c(0x25d,'\x42\x50\x75\x35')](_0x5da121,_0x570814[_0x49898c(0x1d2,'\x6a\x79\x4d\x67')]);_0x5da121++){var _0x86e2d9=_0x570814[_0x5da121];if(_0x407358[_0x49898c(0x27f,'\x49\x42\x75\x57')](_0x86e2d9))return!![];if(_0x407358[_0x49898c(0x167,'\x31\x2a\x6c\x77')](function(_0x340418){const _0xe2ee23=_0x49898c;if(_0x281403[_0xe2ee23(0x1ce,'\x65\x24\x5e\x4a')](_0x281403[_0xe2ee23(0x17e,'\x47\x43\x40\x50')],_0x281403['\x46\x71\x42\x5a\x42']))return _0x340418['\x73\x74\x61\x72\x74\x73\x57\x69'+'\x74\x68'](_0x281403[_0xe2ee23(0x130,'\x26\x47\x4c\x69')](_0x86e2d9,'\x3a'));else{const _0x73728d=(_0xe2ee23(0x188,'\x44\x72\x52\x58')+'\x36\x7c\x33\x7c\x30')[_0xe2ee23(0x22e,'\x2a\x47\x64\x79')]('\x7c');let _0x37308e=-0xdff*0x1+-0x1*0xb7b+-0x1*-0x197a;while(!![]){switch(_0x73728d[_0x37308e++]){case'\x30':return _0x281403[_0xe2ee23(0x1ed,'\x24\x29\x62\x70')];case'\x31':if(_0x281403[_0xe2ee23(0x263,'\x44\x35\x79\x28')](_0x484991,_0x20811c))return _0x281403[_0xe2ee23(0xf6,'\x21\x52\x25\x28')];continue;case'\x32':if(_0x346dff)return _0x281403[_0xe2ee23(0xe7,'\x69\x56\x6f\x65')];continue;case'\x33':try{var _0x399e6a=_0x281403[_0xe2ee23(0x18b,'\x24\x29\x62\x70')](_0x43a13e,_0x281403[_0xe2ee23(0x2ad,'\x43\x28\x47\x4b')])[_0xe2ee23(0x11d,'\x65\x24\x5e\x4a')+_0xe2ee23(0x22d,'\x2a\x47\x64\x79')]();if(_0x399e6a&&typeof _0x399e6a[_0xe2ee23(0x1e5,'\x75\x66\x25\x4f')]===_0x281403[_0xe2ee23(0xf2,'\x4f\x21\x6e\x58')]&&_0x281403[_0xe2ee23(0xf9,'\x59\x4c\x76\x71')](_0x399e6a[_0xe2ee23(0x153,'\x26\x6a\x49\x4b')],-0x19*0x76+0xa6a+-0x2*-0x8e+0.5))return _0x281403[_0xe2ee23(0x1e0,'\x24\x4b\x46\x42')];}catch(_0x20dc27){}continue;case'\x34':var _0x59d6ae=_0x47d543[_0xe2ee23(0x25e,'\x40\x72\x72\x58')](_0x1827b0)?_0x386e62:[];continue;case'\x35':if(_0x281403[_0xe2ee23(0x12a,'\x31\x2a\x30\x44')](_0x574282,_0x4adc3f))return _0xe2ee23(0x234,'\x62\x48\x48\x73');continue;case'\x36':if(_0x59d6ae[_0xe2ee23(0xfe,'\x75\x66\x25\x4f')](_0x281403[_0xe2ee23(0x27d,'\x6d\x4a\x5d\x32')]))return _0x281403[_0xe2ee23(0x1ae,'\x6d\x66\x78\x4f')];continue;}break;}}}))return!![];}return![];}function _0x1d9d5a({signals:_0x1ea4d8,driftEnabled:_0x23583c}){const _0x56cbef=_0x477c30,_0x5a447e={'\x45\x61\x71\x74\x6c':function(_0x4a81f6,_0x305785){return _0x4a81f6(_0x305785);},'\x4c\x6c\x5a\x49\x59':function(_0x320c6f,_0x420581){return _0x320c6f!=_0x420581;},'\x4f\x66\x49\x56\x77':function(_0xa49190,_0x3104f4){return _0xa49190<_0x3104f4;},'\x75\x56\x62\x51\x46':function(_0x1bb96b,_0x3c5af3){return _0x1bb96b!=_0x3c5af3;},'\x46\x46\x6f\x6b\x45':function(_0x2afe8c,_0x2d113f){return _0x2afe8c>_0x2d113f;},'\x42\x52\x6b\x63\x42':_0x56cbef(0x253,'\x4a\x6b\x40\x28'),'\x6d\x41\x71\x70\x4e':function(_0x5c4edc,_0x33f201){return _0x5c4edc(_0x33f201);},'\x4e\x47\x63\x71\x49':_0x56cbef(0x13e,'\x62\x29\x6d\x56'),'\x73\x56\x45\x4f\x4f':_0x56cbef(0x197,'\x6a\x79\x4d\x67')+_0x56cbef(0x1da,'\x5d\x25\x73\x6f')+_0x56cbef(0x25a,'\x69\x56\x6f\x65'),'\x61\x51\x6b\x69\x49':_0x56cbef(0x165,'\x66\x2a\x62\x5a'),'\x65\x6e\x4c\x64\x67':function(_0xdb0b60,_0x4e4a4b){return _0xdb0b60===_0x4e4a4b;},'\x4e\x5a\x65\x45\x64':_0x56cbef(0x28b,'\x6d\x65\x79\x21'),'\x79\x42\x47\x4f\x4a':_0x56cbef(0x104,'\x44\x42\x40\x67')+'\x67\x79','\x66\x6a\x50\x44\x6c':function(_0x157ee9,_0x1b0c16){return _0x157ee9===_0x1b0c16;},'\x63\x58\x45\x72\x4d':_0x56cbef(0x269,'\x44\x42\x40\x67'),'\x42\x48\x52\x70\x50':function(_0x5a7faf,_0x2f2a2e){return _0x5a7faf>=_0x2f2a2e;},'\x6d\x62\x55\x6d\x46':_0x56cbef(0xd6,'\x31\x2a\x6c\x77')};if(_0x2b3eec(_0x1ea4d8))return _0x5a447e[_0x56cbef(0x222,'\x4a\x6b\x40\x28')];if(_0x23583c)return'\x69\x6e\x6e\x6f\x76\x61\x74\x65';if(_0x5a447e[_0x56cbef(0x1fc,'\x45\x53\x6e\x6a')](_0x4651f0,_0x1ea4d8))return _0x5a447e[_0x56cbef(0xdc,'\x58\x72\x6b\x6a')];var _0x27b04d=Array[_0x56cbef(0x2af,'\x2a\x50\x5e\x75')](_0x1ea4d8)?_0x1ea4d8:[];if(_0x27b04d[_0x56cbef(0x11c,'\x42\x50\x75\x35')](_0x5a447e[_0x56cbef(0x112,'\x35\x53\x44\x59')]))return _0x5a447e['\x61\x51\x6b\x69\x49'];try{if(_0x5a447e[_0x56cbef(0xe0,'\x6d\x4a\x5d\x32')](_0x56cbef(0x1d9,'\x65\x67\x35\x69'),_0x5a447e[_0x56cbef(0x127,'\x43\x52\x79\x42')])){var _0x22a3dc=_0x5a447e[_0x56cbef(0x277,'\x31\x2a\x6c\x77')](require,_0x5a447e[_0x56cbef(0x10f,'\x62\x29\x6d\x56')])[_0x56cbef(0x1a9,'\x43\x52\x79\x42')+_0x56cbef(0x2a2,'\x47\x43\x40\x50')]();if(_0x22a3dc&&_0x5a447e[_0x56cbef(0x298,'\x42\x50\x75\x35')](typeof _0x22a3dc[_0x56cbef(0xd5,'\x6a\x79\x4d\x67')],_0x5a447e[_0x56cbef(0x24e,'\x34\x48\x38\x39')])&&_0x5a447e[_0x56cbef(0x16c,'\x24\x4b\x46\x42')](_0x22a3dc[_0x56cbef(0x1e5,'\x75\x66\x25\x4f')],0x1fd4+-0x20e4+-0x110*-0x1+0.5))return _0x56cbef(0x173,'\x31\x2a\x6c\x77');}else{const _0xe2dc70=_0x1f0201&&_0x255047[_0x56cbef(0x290,'\x44\x42\x40\x67')](_0x5a447e[_0x56cbef(0x1bd,'\x26\x47\x4c\x69')](_0x3fee4f,_0x14482c[_0x56cbef(0x1fa,'\x31\x2a\x6c\x77')]))?_0x5a447e[_0x56cbef(0x1e6,'\x59\x4c\x76\x71')](_0x3512c9,_0x2608fb[_0x56cbef(0x20c,'\x5a\x30\x51\x6b')]):null,_0x38e3e4=_0x2a2442&&_0x2a145b['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x22a85c(_0x685825[_0x56cbef(0x19f,'\x49\x42\x75\x57')+_0x56cbef(0x20f,'\x59\x4c\x76\x71')]))?_0x5a447e[_0x56cbef(0x1bd,'\x26\x47\x4c\x69')](_0x5f0236,_0x184ea7['\x72\x69\x73\x6b\x5f\x74\x6f\x6c'+_0x56cbef(0x138,'\x31\x2a\x6c\x77')]):null;if(_0x5a447e[_0x56cbef(0x1b8,'\x65\x24\x5e\x4a')](_0xe2dc70,null)&&_0x5a447e[_0x56cbef(0xde,'\x66\x2a\x62\x5a')](_0xe2dc70,-0x2550*-0x1+-0x1a15+-0xb3b+0.5))return!![];if(_0x5a447e[_0x56cbef(0x264,'\x31\x2a\x6c\x77')](_0x38e3e4,null)&&_0x5a447e[_0x56cbef(0x268,'\x2a\x50\x5e\x75')](_0x38e3e4,-0x1*0xfe5+-0xe43*0x2+-0x2c6b*-0x1+0.6))return!![];return![];}}catch(_0x18d6df){}return _0x5a447e[_0x56cbef(0x256,'\x2a\x50\x5e\x75')];}function _0x5c04c9(_0x262f04){const _0x5add75=_0x477c30,_0x5b0c38={'\x59\x50\x65\x59\x45':function(_0x1b9728,_0x254c80){return _0x1b9728(_0x254c80);},'\x51\x5a\x5a\x79\x78':function(_0x482da5,_0x5b3377){return _0x482da5||_0x5b3377;},'\x57\x62\x58\x4d\x54':function(_0x1eebdd,_0x4d2c7d){return _0x1eebdd===_0x4d2c7d;},'\x6f\x72\x72\x6d\x52':_0x5add75(0x206,'\x43\x28\x47\x4b'),'\x67\x43\x59\x44\x4a':_0x5add75(0x259,'\x43\x52\x79\x42'),'\x4c\x79\x65\x55\x61':'\x69\x6d\x70\x72\x6f\x76\x65\x20'+_0x5add75(0x225,'\x59\x4c\x76\x71')+_0x5add75(0xcd,'\x75\x66\x25\x4f')+'\x20\x72\x65\x64\x75\x63\x65\x20'+_0x5add75(0x114,'\x66\x2a\x62\x5a')+_0x5add75(0x17f,'\x5d\x25\x73\x6f')+_0x5add75(0x113,'\x40\x72\x72\x58')+'\x74','\x6b\x77\x68\x64\x5a':'\x69\x6e\x6e\x6f\x76\x61\x74\x65','\x68\x62\x44\x62\x69':_0x5add75(0x1cd,'\x21\x52\x25\x28')+'\x6e\x65\x77\x20\x73\x74\x72\x61'+_0x5add75(0x262,'\x24\x29\x62\x70')+_0x5add75(0x144,'\x32\x50\x43\x48')+_0x5add75(0x141,'\x26\x47\x4c\x69')+'\x61\x70\x65\x20\x6c\x6f\x63\x61'+_0x5add75(0x217,'\x26\x6a\x49\x4b')+'\x6d','\x48\x68\x57\x51\x74':_0x5add75(0x16b,'\x65\x24\x5e\x4a'),'\x57\x59\x49\x53\x61':_0x5add75(0xee,'\x6d\x65\x79\x21')+_0x5add75(0x288,'\x6d\x66\x78\x4f')+_0x5add75(0x154,'\x43\x31\x63\x47')+_0x5add75(0x291,'\x43\x52\x79\x42')+_0x5add75(0x233,'\x42\x50\x75\x35')+_0x5add75(0xda,'\x43\x28\x47\x4b')+_0x5add75(0x1b2,'\x46\x52\x39\x57')+_0x5add75(0x215,'\x44\x35\x79\x28')+_0x5add75(0x1c9,'\x21\x52\x25\x28')+'\x63\x6f\x76\x65\x72\x20\x6e\x65'+_0x5add75(0x166,'\x59\x4c\x76\x71')+_0x5add75(0x23f,'\x46\x52\x39\x57')+_0x5add75(0x18c,'\x49\x42\x75\x57')+'\x73','\x76\x74\x68\x45\x4d':'\x69\x6d\x70\x72\x6f\x76\x65\x20'+'\x72\x6f\x62\x75\x73\x74\x6e\x65'+_0x5add75(0x158,'\x71\x78\x53\x35')+_0x5add75(0x19e,'\x4f\x21\x6e\x58')+_0x5add75(0x178,'\x5a\x30\x51\x6b')+'\x74\x79'},_0x4dd9ad=_0x5b0c38[_0x5add75(0x202,'\x42\x50\x75\x35')](String,_0x5b0c38[_0x5add75(0x17c,'\x34\x48\x38\x39')](_0x262f04,''));if(_0x5b0c38[_0x5add75(0x275,'\x24\x29\x62\x70')](_0x4dd9ad,_0x5b0c38[_0x5add75(0x1c8,'\x4f\x21\x6e\x58')]))return _0x5add75(0xe5,'\x4a\x6b\x40\x28')+_0x5add75(0x296,'\x44\x35\x79\x28')+_0x5add75(0x17a,'\x65\x7a\x6e\x30')+_0x5add75(0x1a5,'\x47\x43\x40\x50')+_0x5add75(0x1ef,'\x62\x29\x6d\x56')+_0x5add75(0x28e,'\x40\x72\x72\x58')+_0x5add75(0x240,'\x65\x67\x35\x69')+_0x5add75(0x27b,'\x31\x2a\x6c\x77')+'\x65';if(_0x4dd9ad===_0x5b0c38[_0x5add75(0x29e,'\x65\x7a\x6e\x30')])return _0x5b0c38[_0x5add75(0x239,'\x52\x6f\x23\x47')];if(_0x5b0c38[_0x5add75(0x15f,'\x5d\x25\x73\x6f')](_0x4dd9ad,_0x5b0c38[_0x5add75(0x19a,'\x58\x72\x6b\x6a')]))return _0x5b0c38[_0x5add75(0x163,'\x59\x4c\x76\x71')];if(_0x5b0c38[_0x5add75(0x200,'\x6d\x65\x79\x21')](_0x4dd9ad,_0x5b0c38[_0x5add75(0x14f,'\x43\x31\x63\x47')]))return _0x5b0c38['\x57\x59\x49\x53\x61'];return _0x5b0c38[_0x5add75(0x1eb,'\x46\x52\x39\x57')];}function _0x42452a(_0x5abfdf){const _0x5bf64c=_0x477c30,_0x3d97fe={'\x75\x70\x46\x4c\x73':function(_0x5252f8,_0x200367){return _0x5252f8(_0x200367);},'\x6d\x4d\x52\x63\x79':_0x5bf64c(0x1b4,'\x65\x67\x35\x69')+_0x5bf64c(0x21c,'\x34\x46\x36\x53')+'\x6c'};if(_0x5abfdf&&_0x5abfdf['\x69\x64'])return _0x5bf64c(0x1f6,'\x43\x31\x63\x47')+_0x3d97fe[_0x5bf64c(0x1d6,'\x45\x53\x6e\x6a')](String,_0x5abfdf['\x69\x64']);return _0x3d97fe['\x6d\x4d\x52\x63\x79'];}function _0x145b68(_0x4dc1b5){const _0x307c8b=_0x477c30,_0xc475b1={'\x63\x41\x53\x68\x71':function(_0x9f38de,_0x43329f){return _0x9f38de(_0x43329f);},'\x6b\x77\x63\x42\x65':function(_0x13ae54,_0x224bee){return _0x13ae54(_0x224bee);},'\x75\x45\x63\x55\x76':function(_0x1a3087,_0x1093ca){return _0x1a3087(_0x1093ca);},'\x53\x73\x58\x5a\x58':function(_0x1e916f,_0x103637){return _0x1e916f<_0x103637;}},_0x33377f=_0x4dc1b5&&Number[_0x307c8b(0x26e,'\x42\x50\x75\x35')](_0xc475b1[_0x307c8b(0xe2,'\x46\x52\x39\x57')](Number,_0x4dc1b5[_0x307c8b(0x1bc,'\x24\x29\x62\x70')]))?_0xc475b1[_0x307c8b(0x2a9,'\x31\x2a\x30\x44')](Number,_0x4dc1b5['\x72\x69\x67\x6f\x72']):null,_0x30f8e4=_0x4dc1b5&&Number[_0x307c8b(0x1ca,'\x65\x24\x5e\x4a')](_0xc475b1[_0x307c8b(0x152,'\x66\x2a\x62\x5a')](Number,_0x4dc1b5[_0x307c8b(0x2a7,'\x32\x50\x43\x48')+_0x307c8b(0x16f,'\x44\x35\x79\x28')]))?_0xc475b1[_0x307c8b(0x1c7,'\x44\x42\x40\x67')](Number,_0x4dc1b5[_0x307c8b(0x285,'\x75\x66\x25\x4f')+_0x307c8b(0x270,'\x2a\x50\x5e\x75')]):null;if(_0x33377f!=null&&_0xc475b1[_0x307c8b(0x1cf,'\x5a\x30\x51\x6b')](_0x33377f,-0x11c*-0x1d+-0x261+-0x1dcb+0.5))return!![];if(_0x30f8e4!=null&&_0x30f8e4>0x1b56*-0x1+0x1*-0xfcf+0x2b25+0.6)return!![];return![];}function _0x4edd17(_0x58e4ae){const _0x175e14=_0x477c30,_0x3f1a7c={'\x6d\x75\x55\x6f\x54':function(_0x426c90,_0x41941b){return _0x426c90(_0x41941b);},'\x4a\x74\x43\x66\x76':function(_0x56dd81,_0x5ea82f){return _0x56dd81(_0x5ea82f);},'\x69\x5a\x64\x41\x64':function(_0x40afe6,_0x39822e){return _0x40afe6>=_0x39822e;}},_0x3b9c80=_0x58e4ae&&Number[_0x175e14(0x109,'\x44\x35\x79\x28')](_0x3f1a7c['\x6d\x75\x55\x6f\x54'](Number,_0x58e4ae[_0x175e14(0x12b,'\x69\x56\x6f\x65')]))?Number(_0x58e4ae[_0x175e14(0x1d5,'\x6d\x66\x78\x4f')]):-0x1c94+0x796+0x14fe,_0x3085df=_0x58e4ae&&Number[_0x175e14(0xe3,'\x6d\x4a\x5d\x32')](Number(_0x58e4ae['\x72\x69\x73\x6b\x5f\x74\x6f\x6c'+_0x175e14(0x1c2,'\x58\x72\x6b\x6a')]))?_0x3f1a7c[_0x175e14(0x160,'\x6d\x65\x79\x21')](Number,_0x58e4ae['\x72\x69\x73\x6b\x5f\x74\x6f\x6c'+_0x175e14(0xce,'\x4a\x6b\x40\x28')]):-0xb*-0xfa+0x1abe+0x1f9*-0x13;return _0x3f1a7c[_0x175e14(0x237,'\x34\x48\x38\x39')](_0x3b9c80,0xe66+0x1ba4+-0x2a0a+0.6)&&_0x3085df<=0x22c2+-0x367+-0x1f5b+0.5;}function _0x29ee64({signals:_0x2d7b35,selectedGene:_0x26a45f,driftEnabled:_0x2b471a,personalityState:_0x5a4774,allowHighRisk:allowHighRisk=![],target:_0x1b69c5,expected_effect:_0x185c09}={}){const _0xea33fd=_0x477c30,_0x24b587={'\x71\x78\x41\x71\x43':function(_0x105d2f){return _0x105d2f();},'\x59\x67\x74\x42\x55':function(_0x224f2f,_0x32cc66){return _0x224f2f(_0x32cc66);},'\x74\x69\x47\x69\x77':_0xea33fd(0x21d,'\x44\x72\x52\x58'),'\x61\x7a\x70\x62\x4f':function(_0x1789d1,_0x119cf4){return _0x1789d1(_0x119cf4);},'\x73\x41\x77\x65\x6d':_0xea33fd(0x1ff,'\x51\x6f\x42\x30'),'\x62\x78\x6e\x57\x6d':function(_0x45af50,_0x5829e4){return _0x45af50===_0x5829e4;},'\x64\x5a\x55\x61\x56':_0xea33fd(0x171,'\x40\x72\x72\x58'),'\x55\x6f\x76\x46\x6e':'\x68\x69\x67\x68','\x5a\x71\x55\x57\x61':function(_0x3ef6f2,_0x31cc63){return _0x3ef6f2||_0x31cc63;},'\x74\x48\x44\x52\x7a':_0xea33fd(0x14d,'\x5d\x25\x73\x6f'),'\x45\x58\x62\x64\x6f':_0xea33fd(0x110,'\x43\x31\x63\x47')+_0xea33fd(0x248,'\x66\x2a\x62\x5a')+'\x3a\x20\x6f\x70\x74\x69\x6d\x69'+'\x7a\x65\x20\x75\x6e\x64\x65\x72'+_0xea33fd(0x157,'\x65\x24\x5e\x4a')+_0xea33fd(0x195,'\x40\x72\x72\x58')+_0xea33fd(0x101,'\x26\x6a\x49\x4b')+_0xea33fd(0x28d,'\x44\x35\x79\x28')+_0xea33fd(0x140,'\x69\x56\x6f\x65')+_0xea33fd(0x2a4,'\x50\x52\x46\x62')+_0xea33fd(0x28f,'\x43\x31\x63\x47'),'\x67\x4d\x77\x63\x43':function(_0x1b17f9,_0x13ef31){return _0x1b17f9===_0x13ef31;},'\x6f\x4a\x4d\x74\x43':function(_0x42163b,_0x5e0a91){return _0x42163b(_0x5e0a91);},'\x74\x54\x72\x72\x5a':_0xea33fd(0x156,'\x75\x66\x25\x4f'),'\x78\x46\x6b\x63\x4b':function(_0x54e7fb,_0x56425c){return _0x54e7fb(_0x56425c);},'\x66\x4c\x58\x52\x6a':_0xea33fd(0x183,'\x21\x52\x25\x28')+_0xea33fd(0x1b0,'\x42\x50\x75\x35')+_0xea33fd(0x226,'\x44\x35\x79\x28')+'\x73\x6b'},_0x310678=_0x24b587[_0xea33fd(0x204,'\x5d\x68\x64\x7a')](_0x2b6dd5),_0x1c1e9c={};_0x1c1e9c[_0xea33fd(0x1ec,'\x26\x47\x4c\x69')]=_0x2d7b35,_0x1c1e9c['\x64\x72\x69\x66\x74\x45\x6e\x61'+_0xea33fd(0x228,'\x65\x67\x35\x69')]=!!_0x2b471a;const _0x46f1f1=_0x24b587[_0xea33fd(0x282,'\x34\x48\x38\x39')](_0x1d9d5a,_0x1c1e9c),_0x1a50ff=_0x24b587[_0xea33fd(0x229,'\x36\x46\x76\x72')](_0x274b91,_0x2d7b35),_0x15d019={'\x74\x79\x70\x65':_0x24b587[_0xea33fd(0x218,'\x31\x2a\x6c\x77')],'\x69\x64':_0xea33fd(0x27c,'\x43\x31\x63\x47')+_0x310678,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x46f1f1,'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0x1a50ff,'\x74\x61\x72\x67\x65\x74':_0x24b587[_0xea33fd(0x273,'\x65\x7a\x6e\x30')](String,_0x1b69c5||_0x24b587['\x61\x7a\x70\x62\x4f'](_0x42452a,_0x26a45f)),'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':_0x24b587[_0xea33fd(0x1a4,'\x47\x43\x40\x50')](String,_0x185c09||_0x5c04c9(_0x46f1f1)),'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x24b587[_0xea33fd(0x108,'\x62\x29\x6d\x56')]};if(_0x24b587[_0xea33fd(0x137,'\x75\x66\x25\x4f')](_0x46f1f1,_0x24b587[_0xea33fd(0x210,'\x44\x35\x79\x28')]))_0x15d019[_0xea33fd(0x224,'\x65\x7a\x6e\x30')+'\x65\x6c']=_0xea33fd(0x145,'\x40\x72\x72\x58');allowHighRisk&&_0x24b587['\x62\x78\x6e\x57\x6d'](_0x46f1f1,_0x24b587[_0xea33fd(0x155,'\x51\x6f\x42\x30')])&&(_0x15d019[_0xea33fd(0x129,'\x47\x43\x40\x50')+'\x65\x6c']=_0x24b587[_0xea33fd(0x255,'\x62\x29\x6d\x56')]);const _0x38a1b1=_0x24b587[_0xea33fd(0x29c,'\x5a\x30\x51\x6b')](_0x145b68,_0x24b587[_0xea33fd(0x1aa,'\x52\x6f\x23\x47')](_0x5a4774,null));return _0x24b587[_0xea33fd(0x27a,'\x5a\x30\x51\x6b')](_0x15d019[_0xea33fd(0xd9,'\x34\x48\x38\x39')],_0x24b587[_0xea33fd(0x155,'\x51\x6f\x42\x30')])&&_0x38a1b1&&(_0x15d019[_0xea33fd(0x29a,'\x62\x29\x6d\x56')]=_0x24b587[_0xea33fd(0x24a,'\x51\x6f\x42\x30')],_0x15d019['\x65\x78\x70\x65\x63\x74\x65\x64'+_0xea33fd(0x1bf,'\x2a\x47\x64\x79')]=_0x24b587[_0xea33fd(0x279,'\x45\x53\x6e\x6a')],_0x15d019[_0xea33fd(0x2aa,'\x6d\x66\x78\x4f')+'\x65\x6c']=_0xea33fd(0x106,'\x4f\x21\x6e\x58'),_0x15d019[_0xea33fd(0x2a8,'\x35\x53\x44\x59')+_0xea33fd(0x187,'\x51\x6f\x42\x30')]=_0x274b91([..._0x15d019[_0xea33fd(0xfa,'\x61\x4f\x54\x41')+_0xea33fd(0x283,'\x32\x50\x43\x48')]||[],_0xea33fd(0x179,'\x65\x7a\x6e\x30')+_0xea33fd(0x1f5,'\x31\x2a\x30\x44')+_0xea33fd(0x1c6,'\x58\x72\x6b\x6a')+_0xea33fd(0x199,'\x47\x43\x40\x50')+'\x72\x69\x73\x6b\x5f\x70\x65\x72'+_0xea33fd(0x276,'\x31\x2a\x6c\x77')])),_0x24b587[_0xea33fd(0x10b,'\x65\x24\x5e\x4a')](_0x15d019['\x72\x69\x73\x6b\x5f\x6c\x65\x76'+'\x65\x6c'],_0x24b587[_0xea33fd(0x103,'\x6d\x66\x78\x4f')])&&!_0x24b587[_0xea33fd(0x2ab,'\x61\x4f\x54\x41')](_0x4edd17,_0x24b587['\x5a\x71\x55\x57\x61'](_0x5a4774,null))&&(_0x15d019[_0xea33fd(0x174,'\x2a\x47\x64\x79')+'\x65\x6c']=_0x24b587[_0xea33fd(0x265,'\x26\x6a\x49\x4b')],_0x15d019[_0xea33fd(0x27e,'\x43\x52\x79\x42')+_0xea33fd(0x1d0,'\x65\x7a\x6e\x30')]=_0x24b587[_0xea33fd(0x236,'\x31\x2a\x6c\x77')](_0x274b91,[..._0x15d019[_0xea33fd(0xf1,'\x50\x52\x46\x62')+_0xea33fd(0xca,'\x62\x48\x48\x73')]||[],_0x24b587['\x66\x4c\x58\x52\x6a']])),_0x15d019;}function _0x1d5c(_0x15f0f0,_0x4c7ea9){_0x15f0f0=_0x15f0f0-(-0x1515+-0xda2*0x2+0x3121);const _0x398739=_0x31bb();let _0x24f0de=_0x398739[_0x15f0f0];if(_0x1d5c['\x49\x42\x48\x6a\x54\x6d']===undefined){var _0x3c27db=function(_0x327097){const _0x57a44d='\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 _0x3ae5ba='',_0x409477='',_0x2ea50a=_0x3ae5ba+_0x3c27db,_0x3d77b9=(''+function(){return-0xf04+-0x533*0x1+-0x3*-0x6bd;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(-0x9*0x403+0xaea+-0x6*-0x433);for(let _0x4e1a6c=-0x213b+-0x2500+0x463b,_0x225c75,_0x57f9f8,_0x59cb34=-0x3*-0x665+0x160d*-0x1+0x2*0x16f;_0x57f9f8=_0x327097['\x63\x68\x61\x72\x41\x74'](_0x59cb34++);~_0x57f9f8&&(_0x225c75=_0x4e1a6c%(-0x854+0x211*-0x4+0x109c)?_0x225c75*(0xe6*0x21+-0x1*0x1e38+0xd2)+_0x57f9f8:_0x57f9f8,_0x4e1a6c++%(0x17e3*-0x1+-0x4a9*-0x7+-0x3*0x2e8))?_0x3ae5ba+=_0x3d77b9||_0x2ea50a['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x59cb34+(-0x19*-0x9+-0x53*0x43+-0x51*-0x42))-(-0x1c3b+0x92f+0x1316)!==0x1*0x1387+-0x2001+0x63d*0x2?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x1baa*0x1+0x29*0x89+0x44*-0xb7&_0x225c75>>(-(-0xd+-0x209f+0x59*0x5e)*_0x4e1a6c&-0x18d3+0x3f*-0x6+0x1a53)):_0x4e1a6c:0x2317*0x1+0x2*-0x9bd+-0xf9d){_0x57f9f8=_0x57a44d['\x69\x6e\x64\x65\x78\x4f\x66'](_0x57f9f8);}for(let _0x1c0692=-0xc71+-0x11*0x215+0x27*0x13a,_0xdbf1a9=_0x3ae5ba['\x6c\x65\x6e\x67\x74\x68'];_0x1c0692<_0xdbf1a9;_0x1c0692++){_0x409477+='\x25'+('\x30\x30'+_0x3ae5ba['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1c0692)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x1*0xfad+0xa8b*0x2+-0x24b3))['\x73\x6c\x69\x63\x65'](-(-0x19df+0xe4e*0x1+-0x1*-0xb93));}return decodeURIComponent(_0x409477);};const _0x50e7ca=function(_0x189cdf,_0x592c60){let _0x2eef2d=[],_0x5272a3=0x22fb+0x1*0x17b+-0x2476,_0x4d0822,_0x3b6287='';_0x189cdf=_0x3c27db(_0x189cdf);let _0x162758;for(_0x162758=0x9*0x34f+0x25eb+-0x43b2;_0x162758<0x17f7+-0x5*0x78d+0xeca;_0x162758++){_0x2eef2d[_0x162758]=_0x162758;}for(_0x162758=-0x1*-0xd4f+-0x1674+0x925;_0x162758<-0x4d*0x7c+-0x21bb*0x1+-0x1*-0x4807;_0x162758++){_0x5272a3=(_0x5272a3+_0x2eef2d[_0x162758]+_0x592c60['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x162758%_0x592c60['\x6c\x65\x6e\x67\x74\x68']))%(0x1a*0x10f+0x11*0x116+-0x2cfc),_0x4d0822=_0x2eef2d[_0x162758],_0x2eef2d[_0x162758]=_0x2eef2d[_0x5272a3],_0x2eef2d[_0x5272a3]=_0x4d0822;}_0x162758=0x1875*0x1+0x8*-0x2c2+-0x265,_0x5272a3=0x14*-0x57+0x18d7+-0x95*0x1f;for(let _0x5d7675=-0x1*0xe53+-0xf4e+0x1da1;_0x5d7675<_0x189cdf['\x6c\x65\x6e\x67\x74\x68'];_0x5d7675++){_0x162758=(_0x162758+(-0x11ae+-0x26ef+0x389e))%(-0x2397*-0x1+-0x374+-0x1f23*0x1),_0x5272a3=(_0x5272a3+_0x2eef2d[_0x162758])%(-0x21c2+-0x2*0x611+0x2*0x1772),_0x4d0822=_0x2eef2d[_0x162758],_0x2eef2d[_0x162758]=_0x2eef2d[_0x5272a3],_0x2eef2d[_0x5272a3]=_0x4d0822,_0x3b6287+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x189cdf['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5d7675)^_0x2eef2d[(_0x2eef2d[_0x162758]+_0x2eef2d[_0x5272a3])%(-0x2e3*-0xa+-0x1979+-0x265*0x1)]);}return _0x3b6287;};_0x1d5c['\x75\x68\x4a\x4b\x56\x69']=_0x50e7ca,_0x1d5c['\x47\x44\x78\x67\x6a\x61']={},_0x1d5c['\x49\x42\x48\x6a\x54\x6d']=!![];}const _0x3d0c93=_0x398739[0x25*0xa1+0x20c0+0x1*-0x3805],_0x582173=_0x15f0f0+_0x3d0c93,_0x4a7696=_0x1d5c['\x47\x44\x78\x67\x6a\x61'][_0x582173];if(!_0x4a7696){if(_0x1d5c['\x78\x74\x4b\x72\x44\x56']===undefined){const _0x2a901b=function(_0x9c87fb){this['\x4b\x47\x53\x73\x4a\x76']=_0x9c87fb,this['\x77\x54\x7a\x62\x4b\x57']=[0x2228+-0x48a+0x1d9d*-0x1,0x21ae+0xc98+-0x2e46,0x1a61+-0x16a0+-0x3c1],this['\x65\x67\x6b\x46\x4d\x6f']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x62\x61\x63\x4f\x75\x79']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x68\x70\x63\x78\x53\x62']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x2a901b['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x6d\x47\x67\x5a\x56\x59']=function(){const _0x577210=new RegExp(this['\x62\x61\x63\x4f\x75\x79']+this['\x68\x70\x63\x78\x53\x62']),_0x463c06=_0x577210['\x74\x65\x73\x74'](this['\x65\x67\x6b\x46\x4d\x6f']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x77\x54\x7a\x62\x4b\x57'][-0x7*-0x2b+0xe8*-0x14+-0x364*-0x5]:--this['\x77\x54\x7a\x62\x4b\x57'][-0xd14+0x1*-0x1c03+-0x43*-0x9d];return this['\x59\x55\x45\x75\x69\x56'](_0x463c06);},_0x2a901b['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x59\x55\x45\x75\x69\x56']=function(_0x4fdaeb){if(!Boolean(~_0x4fdaeb))return _0x4fdaeb;return this['\x78\x57\x55\x54\x68\x4c'](this['\x4b\x47\x53\x73\x4a\x76']);},_0x2a901b['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x78\x57\x55\x54\x68\x4c']=function(_0x20299c){for(let _0x2108b2=0x2cf*0x5+-0x1273+-0x18*-0x2f,_0x596a73=this['\x77\x54\x7a\x62\x4b\x57']['\x6c\x65\x6e\x67\x74\x68'];_0x2108b2<_0x596a73;_0x2108b2++){this['\x77\x54\x7a\x62\x4b\x57']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x596a73=this['\x77\x54\x7a\x62\x4b\x57']['\x6c\x65\x6e\x67\x74\x68'];}return _0x20299c(this['\x77\x54\x7a\x62\x4b\x57'][-0x85*-0x7+0x1*0x1d63+-0x2106]);},(''+function(){return-0xb*-0xb+0x14f4+0x1*-0x156d;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0x2610+0x2f5*0xa+-0x43a1)&&new _0x2a901b(_0x1d5c)['\x6d\x47\x67\x5a\x56\x59'](),_0x1d5c['\x78\x74\x4b\x72\x44\x56']=!![];}_0x24f0de=_0x1d5c['\x75\x68\x4a\x4b\x56\x69'](_0x24f0de,_0x4c7ea9),_0x1d5c['\x47\x44\x78\x67\x6a\x61'][_0x582173]=_0x24f0de;}else _0x24f0de=_0x4a7696;return _0x24f0de;}function _0x25dce4(_0x4d4fef){const _0x280ce3=_0x477c30,_0x586c19={'\x77\x45\x61\x78\x43':_0x280ce3(0x22f,'\x71\x78\x53\x35')+_0x280ce3(0x164,'\x75\x66\x25\x4f')+'\x33','\x4c\x72\x58\x4c\x4e':function(_0x52bd82,_0x165013){return _0x52bd82!==_0x165013;},'\x47\x68\x6d\x6b\x6d':'\x73\x74\x72\x69\x6e\x67','\x6b\x74\x58\x46\x5a':function(_0x56b197,_0x5a8c37){return _0x56b197(_0x5a8c37);},'\x43\x54\x50\x49\x4a':function(_0x5dae96,_0x269f2a){return _0x5dae96!==_0x269f2a;},'\x4f\x46\x4c\x58\x6f':'\x6f\x62\x6a\x65\x63\x74','\x44\x59\x4f\x63\x52':function(_0x2dc086,_0x24ce2a){return _0x2dc086!==_0x24ce2a;},'\x70\x55\x69\x4d\x73':_0x280ce3(0x223,'\x65\x24\x5e\x4a')},_0x2dace6=_0x586c19[_0x280ce3(0x100,'\x47\x43\x40\x50')][_0x280ce3(0x1fd,'\x6d\x66\x78\x4f')]('\x7c');let _0x564614=0x37e+-0x10e8+0x65*0x22;while(!![]){switch(_0x2dace6[_0x564614++]){case'\x30':if(!_0x4d4fef[_0x280ce3(0xd7,'\x65\x67\x35\x69')]||_0x586c19[_0x280ce3(0x115,'\x2a\x47\x64\x79')](typeof _0x4d4fef[_0x280ce3(0x16d,'\x26\x6a\x49\x4b')],_0x586c19[_0x280ce3(0x1e4,'\x6d\x65\x79\x21')]))return![];continue;case'\x31':if(!_0x4d4fef[_0x280ce3(0x129,'\x47\x43\x40\x50')+'\x65\x6c']||!_0x181a5d[_0x280ce3(0xea,'\x58\x72\x6b\x6a')](_0x586c19[_0x280ce3(0x24f,'\x24\x29\x62\x70')](String,_0x4d4fef[_0x280ce3(0xd1,'\x4a\x6b\x40\x28')+'\x65\x6c'])))return![];continue;case'\x32':if(!Array['\x69\x73\x41\x72\x72\x61\x79'](_0x4d4fef['\x74\x72\x69\x67\x67\x65\x72\x5f'+_0x280ce3(0x192,'\x24\x29\x62\x70')]))return![];continue;case'\x33':return!![];case'\x34':if(!_0x4d4fef||_0x586c19[_0x280ce3(0x194,'\x34\x48\x38\x39')](typeof _0x4d4fef,_0x586c19[_0x280ce3(0x11e,'\x65\x24\x5e\x4a')]))return![];continue;case'\x35':if(!_0x4d4fef[_0x280ce3(0x22c,'\x31\x2a\x30\x44')+_0x280ce3(0x1f3,'\x36\x46\x76\x72')]||typeof _0x4d4fef['\x65\x78\x70\x65\x63\x74\x65\x64'+_0x280ce3(0x18f,'\x43\x28\x47\x4b')]!==_0x586c19[_0x280ce3(0x207,'\x75\x66\x25\x4f')])return![];continue;case'\x36':if(!_0x4d4fef['\x69\x64']||_0x586c19[_0x280ce3(0xf5,'\x52\x6f\x23\x47')](typeof _0x4d4fef['\x69\x64'],_0x586c19[_0x280ce3(0x126,'\x69\x56\x6f\x65')]))return![];continue;case'\x37':if(_0x586c19[_0x280ce3(0x148,'\x44\x42\x40\x67')](_0x4d4fef[_0x280ce3(0x1d7,'\x6d\x66\x78\x4f')],_0x586c19[_0x280ce3(0x1f7,'\x43\x52\x79\x42')]))return![];continue;case'\x38':if(!_0x4d4fef[_0x280ce3(0x1b5,'\x4f\x21\x6e\x58')]||!_0x49cb8d[_0x280ce3(0x1c0,'\x66\x2a\x62\x5a')](String(_0x4d4fef[_0x280ce3(0x299,'\x40\x72\x72\x58')])))return![];continue;}break;}}function _0x4064ec(_0x1a955b){const _0x57a1b1=_0x477c30,_0x456f6a={'\x55\x59\x6a\x4f\x5a':function(_0x4344c5,_0x119b10){return _0x4344c5===_0x119b10;},'\x6c\x4d\x69\x74\x71':_0x57a1b1(0x1ad,'\x4f\x21\x6e\x58'),'\x4c\x52\x5a\x42\x6a':_0x57a1b1(0x12f,'\x4a\x6b\x40\x28'),'\x6e\x70\x4e\x55\x72':function(_0x363efb,_0x58c352){return _0x363efb===_0x58c352;},'\x7a\x49\x51\x6c\x6c':_0x57a1b1(0xe6,'\x43\x28\x47\x4b'),'\x51\x6e\x42\x6e\x4a':function(_0xdcf2b){return _0xdcf2b();},'\x75\x70\x69\x51\x70':function(_0xa49f52,_0x37560f){return _0xa49f52(_0x37560f);},'\x75\x71\x6e\x65\x4a':_0x57a1b1(0x20e,'\x46\x52\x39\x57'),'\x43\x51\x6e\x70\x6e':_0x57a1b1(0x1a2,'\x45\x53\x6e\x6a')+_0x57a1b1(0x18a,'\x50\x52\x46\x62')+'\x6c','\x6f\x50\x4c\x49\x51':_0x57a1b1(0x133,'\x2a\x50\x5e\x75')},_0x454ff4=_0x1a955b&&_0x456f6a[_0x57a1b1(0x1f9,'\x21\x52\x25\x28')](typeof _0x1a955b,_0x456f6a[_0x57a1b1(0x172,'\x42\x50\x75\x35')])?_0x1a955b:{},_0xbf30ff={'\x74\x79\x70\x65':_0x456f6a[_0x57a1b1(0x2ae,'\x47\x43\x40\x50')],'\x69\x64':_0x456f6a['\x6e\x70\x4e\x55\x72'](typeof _0x454ff4['\x69\x64'],_0x456f6a[_0x57a1b1(0x246,'\x43\x31\x63\x47')])?_0x454ff4['\x69\x64']:_0x57a1b1(0xf8,'\x69\x56\x6f\x65')+_0x456f6a[_0x57a1b1(0x1de,'\x65\x67\x35\x69')](_0x2b6dd5),'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x49cb8d[_0x57a1b1(0x27f,'\x49\x42\x75\x57')](_0x456f6a[_0x57a1b1(0x267,'\x31\x2a\x30\x44')](String,_0x454ff4[_0x57a1b1(0x201,'\x75\x66\x25\x4f')]))?_0x456f6a[_0x57a1b1(0xd3,'\x58\x72\x6b\x6a')](String,_0x454ff4['\x63\x61\x74\x65\x67\x6f\x72\x79']):_0x456f6a[_0x57a1b1(0x102,'\x58\x72\x6b\x6a')],'\x74\x72\x69\x67\x67\x65\x72\x5f\x73\x69\x67\x6e\x61\x6c\x73':_0x456f6a[_0x57a1b1(0x243,'\x49\x42\x75\x57')](_0x274b91,_0x454ff4[_0x57a1b1(0x1f2,'\x4f\x21\x6e\x58')+_0x57a1b1(0x170,'\x5a\x30\x51\x6b')]),'\x74\x61\x72\x67\x65\x74':_0x456f6a[_0x57a1b1(0x28a,'\x49\x42\x75\x57')](typeof _0x454ff4[_0x57a1b1(0x230,'\x2a\x47\x64\x79')],_0x456f6a[_0x57a1b1(0x1f4,'\x43\x52\x79\x42')])?_0x454ff4[_0x57a1b1(0x15e,'\x61\x4f\x54\x41')]:_0x456f6a[_0x57a1b1(0x119,'\x5d\x25\x73\x6f')],'\x65\x78\x70\x65\x63\x74\x65\x64\x5f\x65\x66\x66\x65\x63\x74':typeof _0x454ff4[_0x57a1b1(0x247,'\x45\x53\x6e\x6a')+_0x57a1b1(0x198,'\x5d\x68\x64\x7a')]===_0x456f6a['\x7a\x49\x51\x6c\x6c']?_0x454ff4[_0x57a1b1(0x14b,'\x6d\x65\x79\x21')+_0x57a1b1(0x181,'\x52\x6f\x23\x47')]:_0x5c04c9(_0x454ff4[_0x57a1b1(0xfd,'\x4a\x6b\x40\x28')]),'\x72\x69\x73\x6b\x5f\x6c\x65\x76\x65\x6c':_0x181a5d[_0x57a1b1(0xfe,'\x75\x66\x25\x4f')](String(_0x454ff4[_0x57a1b1(0x151,'\x43\x31\x63\x47')+'\x65\x6c']))?_0x456f6a[_0x57a1b1(0x29f,'\x47\x43\x40\x50')](String,_0x454ff4['\x72\x69\x73\x6b\x5f\x6c\x65\x76'+'\x65\x6c']):_0x456f6a['\x6f\x50\x4c\x49\x51']};return _0xbf30ff;}function _0x31bb(){const _0x4365c2=['\x42\x4d\x6c\x64\x4d\x65\x74\x63\x52\x65\x33\x63\x4f\x43\x6b\x65','\x43\x6d\x6f\x78\x57\x35\x74\x63\x50\x6d\x6f\x56','\x41\x58\x62\x70\x57\x4f\x2f\x63\x53\x61','\x42\x4b\x37\x63\x47\x30\x78\x63\x55\x75\x4c\x6f','\x57\x37\x57\x73\x77\x38\x6b\x39\x57\x51\x47','\x41\x6d\x6f\x36\x57\x4f\x46\x63\x55\x49\x68\x64\x4e\x71','\x78\x38\x6f\x46\x63\x32\x6c\x63\x53\x67\x6a\x51\x57\x52\x75','\x76\x68\x6d\x31\x57\x37\x6c\x63\x4b\x38\x6f\x61\x57\x50\x4b\x65','\x57\x35\x66\x78\x57\x34\x4a\x63\x49\x6d\x6b\x77','\x74\x78\x4e\x63\x49\x53\x6b\x51\x6b\x71','\x57\x35\x44\x68\x57\x35\x2f\x63\x47\x47','\x57\x51\x50\x2f\x46\x62\x48\x68','\x57\x34\x39\x61\x6f\x77\x52\x63\x54\x57','\x57\x51\x56\x64\x47\x57\x76\x59\x69\x38\x6b\x34\x79\x49\x4f','\x6c\x59\x68\x63\x51\x31\x54\x36\x62\x61\x57\x64','\x7a\x33\x52\x63\x51\x43\x6b\x6b\x70\x67\x50\x4c\x67\x57','\x44\x53\x6f\x75\x41\x61','\x57\x35\x39\x7a\x6b\x4b\x52\x63\x49\x61','\x57\x50\x52\x64\x55\x65\x37\x64\x4d\x38\x6f\x2f\x62\x5a\x30','\x65\x4e\x33\x64\x53\x43\x6b\x48\x6e\x57','\x6e\x43\x6b\x76\x73\x38\x6b\x6f\x72\x4d\x43\x33\x57\x35\x71\x55\x73\x43\x6f\x77\x57\x34\x34','\x57\x36\x70\x64\x48\x48\x37\x63\x48\x43\x6f\x69','\x6d\x53\x6f\x6b\x57\x4f\x53\x35','\x74\x58\x76\x61\x7a\x57\x30','\x77\x4c\x44\x4b\x57\x37\x62\x68\x72\x63\x46\x63\x4a\x71','\x57\x51\x65\x44\x57\x36\x52\x63\x49\x38\x6f\x33','\x57\x50\x78\x64\x51\x4d\x2f\x63\x47\x31\x5a\x64\x49\x72\x50\x41','\x72\x43\x6f\x79\x64\x32\x64\x63\x50\x67\x50\x38','\x44\x38\x6f\x32\x57\x4f\x71','\x46\x38\x6f\x51\x57\x4f\x38','\x6e\x75\x54\x45\x44\x47\x65','\x57\x36\x4c\x4a\x64\x48\x71\x4f\x57\x51\x6d\x65','\x57\x4f\x74\x64\x4c\x61\x68\x64\x50\x76\x30','\x7a\x57\x31\x7a\x7a\x71\x31\x57\x79\x4d\x69','\x67\x33\x33\x63\x53\x72\x68\x63\x52\x64\x4b\x43\x6c\x61','\x43\x32\x78\x63\x47\x53\x6b\x64\x6b\x57','\x57\x50\x79\x69\x57\x34\x6e\x6c\x57\x37\x68\x64\x54\x61','\x57\x4f\x2f\x64\x4c\x53\x6b\x70\x57\x4f\x48\x41\x57\x35\x52\x64\x4a\x6d\x6b\x2f','\x43\x4c\x57\x46\x76\x61\x38\x6c\x45\x61','\x6f\x38\x6b\x34\x78\x43\x6b\x65\x57\x37\x4b','\x79\x30\x39\x57\x46\x5a\x75\x30\x57\x37\x57\x52','\x78\x49\x62\x43\x6d\x64\x53','\x6d\x43\x6b\x4b\x7a\x43\x6b\x4c\x57\x36\x79','\x78\x77\x71\x49\x57\x36\x6e\x4e\x79\x65\x2f\x64\x4b\x61','\x78\x4b\x70\x64\x47\x4d\x46\x63\x4d\x71','\x44\x43\x6f\x6a\x66\x6d\x6f\x7a\x62\x47','\x78\x77\x37\x64\x4f\x38\x6f\x76\x79\x43\x6b\x37\x6d\x6d\x6b\x32','\x76\x75\x4a\x63\x56\x43\x6b\x77\x66\x61','\x57\x35\x62\x6f\x57\x34\x70\x63\x4a\x53\x6b\x71','\x77\x43\x6f\x64\x62\x74\x71','\x57\x52\x47\x52\x71\x57','\x78\x58\x39\x31\x71\x74\x71','\x75\x66\x48\x2b\x57\x37\x50\x77\x73\x49\x68\x63\x4b\x71','\x73\x73\x6e\x78\x57\x52\x54\x55','\x75\x32\x31\x37\x57\x36\x56\x63\x47\x53\x6f\x6c\x57\x52\x4b\x63','\x57\x4f\x4f\x76\x57\x36\x7a\x74\x57\x34\x43','\x73\x53\x6f\x4b\x57\x35\x64\x64\x48\x43\x6b\x77\x57\x37\x4a\x63\x52\x43\x6b\x34','\x76\x32\x74\x63\x55\x6d\x6b\x67\x57\x4f\x5a\x64\x49\x61','\x44\x66\x66\x4e\x57\x37\x72\x43','\x73\x49\x72\x75\x6d\x68\x75\x6b\x41\x61\x30','\x6f\x32\x2f\x64\x51\x43\x6b\x30\x64\x61','\x68\x57\x58\x62\x63\x4c\x48\x43\x76\x68\x70\x64\x4f\x53\x6b\x66\x57\x51\x70\x64\x52\x57','\x67\x32\x64\x63\x54\x58\x33\x63\x50\x64\x4b\x67','\x73\x47\x50\x57\x57\x52\x52\x63\x4d\x47','\x7a\x4c\x72\x34\x41\x72\x34\x55\x57\x34\x75\x53','\x6c\x65\x39\x63\x77\x49\x66\x61\x61\x6d\x6b\x57','\x57\x4f\x65\x6f\x57\x37\x52\x63\x4b\x43\x6f\x34\x57\x37\x53','\x75\x53\x6f\x52\x70\x77\x2f\x63\x4b\x57','\x79\x71\x4c\x75','\x45\x38\x6f\x47\x41\x57\x4b\x58\x6f\x43\x6f\x56\x57\x36\x46\x63\x4d\x66\x56\x64\x4d\x48\x34','\x57\x37\x6a\x73\x57\x37\x4e\x63\x56\x53\x6b\x66','\x57\x4f\x37\x64\x4b\x6d\x6b\x68\x57\x50\x54\x75\x57\x35\x64\x64\x4b\x61','\x75\x38\x6b\x72\x67\x32\x68\x63\x53\x68\x72\x53\x57\x51\x6d','\x41\x43\x6b\x62\x67\x74\x34\x56\x64\x53\x6b\x54\x57\x52\x69','\x57\x52\x34\x5a\x69\x71\x56\x63\x51\x61\x79\x4a\x57\x37\x71','\x43\x38\x6f\x6a\x6e\x6d\x6f\x46\x61\x57','\x57\x4f\x6d\x4a\x57\x37\x37\x63\x4a\x43\x6f\x50\x57\x37\x66\x68','\x6e\x31\x62\x7a\x78\x58\x6e\x6c\x61\x38\x6b\x4c','\x57\x34\x58\x6a\x57\x34\x68\x63\x47\x6d\x6b\x77\x57\x35\x69\x68\x57\x50\x4b','\x57\x51\x6d\x72\x72\x53\x6b\x2b\x57\x51\x74\x63\x56\x59\x53\x58','\x62\x43\x6b\x4a\x6b\x66\x58\x39\x41\x6d\x6f\x68\x57\x35\x34','\x70\x43\x6b\x61\x68\x6d\x6f\x67\x61\x64\x4f\x63\x57\x34\x34','\x57\x34\x44\x76\x62\x76\x70\x63\x4b\x71','\x57\x50\x65\x6a\x57\x35\x46\x63\x53\x38\x6b\x50\x57\x36\x65\x6b\x57\x4f\x38','\x57\x37\x54\x68\x57\x34\x46\x63\x52\x6d\x6b\x50\x46\x4d\x31\x32','\x57\x51\x5a\x64\x4d\x65\x74\x64\x4a\x6d\x6f\x79','\x78\x53\x6f\x6d\x57\x37\x70\x63\x4b\x38\x6f\x6d\x6c\x72\x4a\x64\x50\x57','\x42\x30\x37\x63\x4c\x30\x64\x63\x48\x30\x4c\x79\x72\x61','\x57\x50\x43\x6a\x57\x37\x4a\x63\x4e\x6d\x6f\x2b\x57\x36\x31\x67\x57\x34\x4f','\x41\x43\x6f\x7a\x61\x77\x4e\x63\x52\x76\x4c\x39\x57\x51\x38','\x57\x52\x44\x57\x6f\x48\x37\x63\x55\x61','\x57\x36\x58\x42\x64\x75\x61','\x44\x66\x34\x6e\x43\x64\x38','\x72\x6d\x6f\x79\x57\x36\x6d','\x45\x30\x42\x63\x4a\x75\x46\x63\x56\x75\x65','\x43\x66\x48\x50\x46\x47\x4b\x50\x57\x37\x43\x48','\x57\x52\x6a\x43\x44\x72\x54\x76\x57\x34\x7a\x45','\x57\x52\x76\x45\x45\x61\x7a\x65','\x57\x35\x76\x56\x64\x53\x6f\x71\x69\x53\x6b\x55\x63\x53\x6f\x6d','\x57\x52\x6a\x70\x7a\x47\x48\x76\x57\x35\x75','\x71\x66\x7a\x4b\x57\x37\x35\x44\x74\x63\x46\x63\x4b\x71','\x57\x51\x54\x70\x42\x61','\x79\x58\x79\x73\x57\x4f\x6e\x66\x57\x52\x56\x63\x49\x53\x6f\x32','\x42\x6d\x6f\x38\x57\x50\x52\x64\x53\x6d\x6f\x70\x57\x51\x69','\x57\x37\x4c\x44\x57\x35\x5a\x63\x52\x43\x6b\x50\x7a\x77\x7a\x50','\x46\x38\x6f\x4d\x67\x6d\x6f\x76\x70\x57','\x71\x76\x52\x64\x54\x6d\x6f\x47\x7a\x61','\x57\x35\x68\x64\x47\x63\x52\x63\x49\x53\x6f\x44','\x57\x52\x42\x64\x4f\x33\x52\x63\x55\x75\x38','\x57\x36\x31\x79\x62\x4c\x46\x63\x54\x4c\x5a\x63\x51\x57\x38','\x71\x4b\x38\x79\x72\x47\x38\x33\x45\x32\x4b','\x57\x36\x48\x73\x57\x36\x68\x63\x47\x53\x6b\x76','\x57\x51\x48\x70\x45\x61\x7a\x65\x57\x35\x47\x68\x76\x71','\x57\x34\x46\x63\x48\x30\x52\x63\x4a\x4a\x2f\x63\x47\x43\x6f\x71\x57\x51\x69\x72\x57\x52\x33\x64\x49\x4e\x62\x57','\x6b\x4c\x62\x79\x65\x59\x6e\x7a\x63\x53\x6b\x36','\x57\x36\x66\x61\x64\x76\x42\x64\x4f\x4b\x4a\x63\x56\x57\x75','\x42\x65\x58\x32\x45\x64\x4b','\x6e\x38\x6b\x51\x57\x52\x64\x63\x51\x48\x68\x64\x4a\x6d\x6f\x4d\x57\x50\x71','\x57\x34\x46\x64\x4d\x49\x68\x63\x4a\x43\x6f\x7a','\x57\x35\x2f\x63\x55\x72\x4a\x63\x4e\x43\x6b\x56\x76\x68\x71\x38\x57\x4f\x5a\x64\x49\x53\x6f\x74\x70\x77\x68\x64\x4e\x47','\x57\x50\x76\x48\x75\x6d\x6f\x6c\x43\x38\x6b\x33\x71\x6d\x6f\x56','\x71\x57\x58\x4a\x6f\x77\x30','\x78\x78\x68\x63\x56\x6d\x6b\x64\x6f\x75\x66\x4f\x67\x47','\x46\x38\x6f\x42\x7a\x66\x58\x61\x73\x47\x42\x64\x4e\x57','\x57\x52\x64\x64\x4d\x48\x50\x5a\x64\x53\x6b\x4f\x43\x4a\x61','\x57\x51\x61\x6d\x43\x68\x2f\x64\x4b\x47','\x45\x31\x50\x6d\x44\x48\x69','\x6a\x53\x6f\x62\x57\x4f\x53\x4e\x57\x50\x37\x63\x4d\x71','\x44\x53\x6f\x62\x57\x37\x70\x63\x4c\x38\x6f\x6b\x6b\x48\x42\x64\x50\x71','\x73\x31\x4a\x64\x4c\x43\x6f\x74\x74\x71','\x57\x50\x4a\x64\x49\x49\x64\x64\x53\x76\x43','\x6f\x53\x6b\x2f\x6c\x31\x7a\x77\x42\x43\x6f\x6e\x57\x34\x79','\x77\x76\x65\x4d\x77\x47\x6d\x70\x7a\x66\x38','\x45\x59\x44\x43\x41\x62\x65','\x57\x50\x5a\x64\x52\x31\x2f\x64\x4a\x53\x6f\x5a\x65\x47','\x57\x52\x66\x6a\x68\x6d\x6f\x2f\x57\x37\x56\x64\x55\x77\x6e\x33','\x70\x77\x42\x63\x50\x4a\x78\x63\x51\x57','\x41\x65\x58\x6f\x57\x34\x4f\x70','\x57\x52\x42\x64\x4c\x47\x76\x38\x6f\x6d\x6b\x2b\x73\x63\x47','\x71\x4c\x2f\x63\x4f\x38\x6b\x6b\x65\x61','\x6c\x53\x6b\x62\x45\x6d\x6b\x62\x57\x37\x4a\x63\x48\x6d\x6f\x7a\x57\x36\x79','\x73\x53\x6f\x4a\x57\x37\x38','\x76\x4a\x6a\x43\x6d\x4e\x6d\x73\x6e\x47\x4b','\x75\x43\x6f\x63\x74\x4c\x52\x64\x51\x47','\x78\x62\x31\x65\x57\x52\x54\x5a','\x46\x53\x6f\x75\x74\x65\x2f\x64\x47\x53\x6f\x5a\x45\x71','\x77\x47\x39\x59\x57\x52\x65','\x78\x31\x48\x76\x57\x35\x43\x52','\x57\x37\x76\x4b\x6b\x62\x79\x4c\x57\x51\x61\x61\x72\x71','\x57\x4f\x46\x64\x4d\x58\x2f\x64\x4a\x49\x33\x64\x4c\x38\x6b\x6d\x57\x50\x53','\x45\x53\x6f\x59\x62\x4d\x56\x63\x4f\x47','\x43\x53\x6f\x32\x65\x43\x6f\x4e\x6d\x47','\x57\x51\x7a\x68\x70\x61\x4e\x63\x48\x47','\x7a\x4b\x71\x73\x57\x36\x34\x70\x71\x43\x6b\x69\x57\x50\x30','\x79\x66\x62\x57\x73\x48\x4f','\x71\x32\x48\x30\x57\x34\x57\x6d','\x57\x36\x66\x68\x57\x35\x4a\x63\x51\x38\x6b\x74\x46\x47','\x46\x77\x47\x65\x57\x36\x47\x58\x71\x6d\x6b\x64\x57\x50\x30','\x73\x4e\x42\x64\x55\x67\x70\x63\x4d\x57','\x68\x53\x6b\x63\x45\x43\x6b\x70\x57\x37\x6c\x63\x49\x6d\x6f\x71\x57\x37\x43','\x43\x43\x6f\x53\x57\x4f\x5a\x63\x52\x57\x52\x64\x4e\x6d\x6f\x51\x57\x51\x53','\x45\x71\x62\x30\x57\x4f\x54\x66\x57\x52\x42\x64\x4e\x53\x6f\x32','\x57\x50\x5a\x64\x4a\x48\x33\x64\x4d\x77\x37\x64\x4d\x6d\x6b\x63\x57\x4f\x65','\x79\x66\x58\x36\x57\x34\x4b\x51\x57\x36\x57','\x72\x61\x66\x76\x57\x51\x48\x49','\x73\x4c\x39\x34\x57\x35\x50\x69','\x46\x66\x33\x63\x4c\x65\x4e\x63\x4c\x57','\x57\x37\x50\x43\x57\x34\x42\x63\x56\x6d\x6b\x67\x46\x67\x44\x31','\x57\x51\x74\x64\x4e\x63\x64\x64\x55\x4c\x4b','\x44\x6d\x6f\x70\x68\x43\x6f\x78\x67\x64\x4f\x42\x57\x35\x34','\x41\x53\x6f\x48\x61\x53\x6f\x67\x6f\x47','\x57\x50\x79\x35\x57\x34\x70\x63\x4b\x38\x6f\x45','\x46\x76\x68\x63\x52\x53\x6b\x63\x6e\x71','\x77\x48\x54\x35\x57\x4f\x6c\x63\x48\x71','\x41\x38\x6f\x76\x61\x43\x6f\x74\x76\x63\x65\x6f\x57\x35\x6d','\x76\x64\x62\x67\x63\x47','\x69\x43\x6f\x48\x57\x51\x6d\x35\x57\x50\x38','\x6e\x43\x6b\x64\x7a\x43\x6b\x70\x57\x37\x6c\x63\x49\x6d\x6f\x72\x57\x35\x57','\x57\x35\x56\x64\x48\x63\x56\x63\x53\x6d\x6f\x43\x72\x59\x70\x63\x49\x61','\x71\x43\x6f\x79\x57\x36\x64\x63\x53\x63\x33\x63\x55\x53\x6b\x6e\x57\x34\x30','\x69\x43\x6f\x6c\x57\x52\x4b\x48\x57\x4f\x2f\x63\x4d\x66\x71\x47','\x43\x77\x46\x64\x50\x6d\x6f\x4a\x76\x71','\x6c\x59\x4e\x63\x51\x4c\x62\x56\x65\x76\x38','\x79\x48\x56\x64\x4f\x53\x6b\x75\x62\x6d\x6f\x58\x46\x72\x43','\x71\x76\x62\x35\x57\x37\x72\x55\x75\x74\x5a\x63\x48\x61','\x43\x65\x37\x63\x49\x47','\x65\x4a\x64\x63\x47\x67\x7a\x44','\x57\x34\x7a\x73\x57\x35\x42\x64\x48\x38\x6b\x78\x57\x35\x61\x63\x57\x50\x69','\x57\x37\x54\x47\x57\x35\x46\x63\x56\x43\x6b\x67','\x57\x36\x46\x64\x53\x59\x6c\x63\x4b\x38\x6f\x5a','\x73\x71\x50\x38\x71\x48\x75','\x41\x53\x6f\x62\x61\x57','\x76\x38\x6f\x68\x62\x32\x46\x63\x4f\x73\x7a\x4d\x57\x51\x47','\x42\x53\x6b\x6c\x6c\x76\x5a\x64\x4e\x53\x6f\x32\x69\x6d\x6b\x38','\x67\x73\x7a\x44\x6f\x67\x6d\x43\x45\x57','\x57\x36\x7a\x62\x57\x37\x70\x63\x4f\x6d\x6b\x79\x7a\x78\x58\x49','\x6c\x43\x6f\x72\x42\x38\x6b\x68\x57\x37\x68\x63\x49\x6d\x6f\x62\x57\x36\x69','\x75\x61\x6a\x4b','\x7a\x6d\x6f\x74\x42\x65\x2f\x64\x48\x6d\x6f\x48\x76\x38\x6b\x35','\x7a\x30\x54\x54\x57\x35\x76\x34','\x57\x50\x4a\x64\x4d\x32\x46\x63\x47\x78\x71','\x71\x38\x6f\x46\x68\x67\x46\x63\x51\x67\x6d\x56\x57\x51\x6d','\x6b\x4c\x48\x45\x68\x4a\x35\x61\x63\x43\x6b\x2b','\x44\x48\x4c\x49\x57\x51\x7a\x68','\x44\x6d\x6f\x67\x45\x76\x4a\x64\x4c\x38\x6f\x39\x43\x53\x6b\x50','\x63\x32\x4a\x63\x50\x62\x42\x63\x4f\x4a\x4f\x68\x69\x71','\x57\x34\x46\x63\x4a\x75\x64\x63\x4a\x4a\x2f\x63\x48\x38\x6b\x4b\x57\x51\x34\x71\x57\x4f\x70\x64\x54\x77\x79','\x77\x72\x4c\x4e\x57\x52\x46\x63\x50\x57','\x46\x30\x78\x64\x4e\x66\x68\x63\x53\x31\x4f','\x45\x4d\x74\x63\x56\x77\x2f\x63\x4b\x47','\x77\x33\x38\x67\x57\x34\x44\x4a','\x57\x51\x61\x32\x78\x75\x52\x64\x4a\x31\x79\x73\x6f\x47','\x57\x37\x58\x2b\x6f\x32\x46\x63\x4c\x61','\x77\x4e\x30\x6f\x57\x36\x6a\x32\x7a\x4b\x69','\x78\x38\x6f\x46\x62\x4d\x68\x63\x53\x32\x44\x37\x57\x51\x6d','\x79\x78\x57\x6a\x57\x52\x43\x43\x74\x38\x6b\x76\x57\x50\x43','\x7a\x61\x50\x54\x57\x4f\x76\x6b\x57\x51\x38','\x57\x4f\x69\x4f\x57\x36\x7a\x6d\x57\x35\x69','\x6c\x49\x4e\x63\x56\x4c\x76\x72\x63\x75\x6d\x6c','\x76\x68\x71\x59\x57\x37\x5a\x63\x47\x6d\x6f\x43\x57\x52\x47\x59','\x46\x4c\x44\x36\x77\x71\x38','\x57\x35\x66\x78\x57\x35\x5a\x63\x4a\x6d\x6b\x37\x57\x35\x38\x67\x57\x4f\x4f','\x72\x53\x6f\x5a\x57\x35\x37\x63\x49\x58\x34','\x6f\x49\x42\x63\x49\x31\x54\x68','\x71\x30\x37\x63\x4d\x43\x6b\x6a\x57\x52\x30','\x79\x4c\x30\x31\x57\x35\x72\x35','\x42\x66\x31\x41\x57\x35\x75\x37\x57\x36\x4a\x64\x4f\x47','\x78\x4d\x2f\x63\x49\x53\x6b\x64\x65\x57','\x57\x50\x56\x64\x4e\x61\x76\x54\x70\x53\x6b\x2b\x79\x5a\x65','\x64\x78\x65\x61\x79\x64\x7a\x6c\x7a\x31\x33\x64\x51\x58\x76\x2f\x57\x34\x43\x74\x57\x51\x38','\x45\x53\x6f\x78\x57\x36\x4e\x63\x4e\x43\x6f\x6f\x6a\x71\x70\x64\x52\x61','\x43\x53\x6f\x41\x43\x66\x39\x47','\x42\x43\x6f\x57\x57\x4f\x33\x64\x56\x38\x6f\x68\x57\x52\x57\x78','\x57\x51\x44\x2b\x65\x71\x2f\x63\x56\x72\x30\x50\x57\x36\x71','\x42\x6d\x6f\x32\x57\x50\x5a\x64\x54\x6d\x6f\x6c\x57\x52\x75\x6b\x73\x71','\x71\x76\x48\x2b\x57\x37\x4f\x72\x72\x64\x33\x63\x4a\x61','\x57\x4f\x56\x64\x55\x65\x37\x64\x47\x43\x6f\x35\x62\x71','\x6f\x38\x6b\x35\x6d\x76\x47','\x57\x50\x64\x64\x4e\x57\x5a\x64\x4b\x4d\x52\x64\x4d\x38\x6b\x72\x57\x4f\x38','\x57\x50\x5a\x64\x4f\x31\x5a\x64\x48\x6d\x6f\x66\x64\x63\x66\x36','\x71\x31\x61\x6e\x73\x57','\x41\x6d\x6b\x45\x70\x61\x61\x4f','\x57\x52\x72\x6c\x7a\x57\x62\x43\x57\x35\x44\x63\x6c\x47','\x42\x43\x6f\x58\x57\x4f\x46\x63\x53\x49\x70\x64\x4c\x6d\x6f\x5a\x57\x52\x34','\x41\x6d\x6f\x71\x62\x38\x6f\x46\x67\x74\x4f\x76\x57\x34\x69','\x57\x37\x50\x77\x67\x4b\x70\x63\x50\x31\x4f','\x71\x65\x57\x6e\x42\x71','\x73\x32\x68\x64\x50\x6d\x6f\x65\x7a\x38\x6b\x32\x6c\x53\x6b\x51','\x78\x78\x78\x63\x52\x43\x6b\x76\x57\x4f\x56\x64\x4d\x30\x2f\x64\x4b\x61','\x46\x6d\x6b\x45\x6a\x74\x30\x48','\x75\x38\x6b\x50\x6e\x49\x61\x72','\x57\x50\x4e\x64\x55\x32\x56\x63\x49\x75\x4e\x64\x4b\x48\x31\x6e','\x78\x38\x6f\x6b\x71\x32\x31\x66','\x75\x38\x6f\x53\x57\x52\x56\x63\x4c\x62\x79','\x6d\x6d\x6f\x6b\x57\x51\x79\x58\x57\x50\x4f','\x72\x43\x6f\x45\x62\x68\x4a\x63\x4f\x67\x69','\x69\x68\x35\x4c\x77\x5a\x30','\x70\x6d\x6f\x78\x57\x51\x57\x38\x57\x50\x70\x63\x4d\x65\x34\x49','\x68\x66\x50\x71\x76\x73\x4c\x6b\x64\x47','\x57\x50\x5a\x64\x52\x30\x56\x64\x4d\x53\x6f\x35\x62\x77\x72\x2b','\x76\x4e\x78\x63\x55\x53\x6b\x6f\x57\x4f\x56\x64\x4e\x71','\x79\x6d\x6f\x65\x57\x34\x5a\x64\x50\x53\x6b\x6e','\x57\x35\x66\x37\x57\x37\x46\x63\x49\x38\x6b\x48','\x73\x49\x62\x74\x6a\x32\x69\x42','\x44\x6d\x6b\x61\x6e\x4a\x30\x54\x64\x38\x6b\x36\x57\x4f\x69','\x57\x50\x69\x45\x57\x35\x72\x78\x57\x36\x68\x64\x48\x4c\x5a\x63\x50\x47','\x57\x4f\x4e\x64\x48\x47\x66\x38\x6a\x43\x6b\x4c\x45\x63\x4f','\x71\x57\x58\x36\x76\x63\x30','\x45\x61\x39\x63\x42\x71\x6e\x54\x43\x78\x65','\x75\x43\x6f\x34\x57\x35\x74\x63\x50\x6d\x6f\x6a','\x45\x75\x33\x63\x4e\x78\x33\x63\x54\x57','\x46\x67\x4b\x69\x57\x37\x30\x6a\x71\x38\x6b\x75\x57\x51\x6d','\x57\x50\x64\x64\x50\x53\x6b\x4b\x57\x52\x54\x65','\x69\x30\x46\x64\x49\x6d\x6b\x69\x68\x38\x6f\x34\x45\x73\x4f','\x73\x47\x35\x39\x61\x78\x75','\x57\x52\x37\x64\x47\x31\x64\x63\x4a\x33\x57','\x73\x65\x4e\x64\x4f\x4d\x52\x63\x54\x61','\x42\x65\x62\x31\x57\x34\x47\x2f\x57\x36\x4a\x64\x52\x38\x6b\x37','\x74\x53\x6f\x49\x57\x37\x6c\x64\x55\x57','\x57\x4f\x38\x50\x57\x37\x37\x63\x48\x38\x6f\x72','\x78\x43\x6f\x6c\x57\x37\x52\x63\x4d\x64\x52\x63\x52\x38\x6b\x71\x57\x36\x61','\x46\x53\x6f\x64\x46\x66\x50\x67\x74\x4b\x4e\x64\x4b\x47','\x57\x4f\x46\x64\x55\x77\x37\x64\x4e\x43\x6f\x4f\x61\x74\x30','\x57\x4f\x33\x64\x51\x31\x56\x64\x49\x53\x6f\x39\x64\x5a\x7a\x31','\x77\x4c\x44\x50\x57\x37\x6e\x65\x71\x74\x42\x63\x4d\x57','\x76\x4b\x66\x36\x57\x37\x6e\x45\x76\x5a\x79','\x77\x75\x4f\x6f\x57\x36\x35\x71','\x57\x52\x58\x59\x69\x48\x6c\x63\x51\x62\x7a\x55\x57\x51\x4b','\x41\x6d\x6b\x46\x6f\x5a\x71\x73','\x57\x37\x7a\x72\x57\x35\x4e\x63\x4f\x43\x6b\x6b','\x57\x51\x65\x44\x57\x34\x42\x63\x56\x43\x6b\x65\x42\x78\x58\x49','\x43\x4e\x6c\x63\x4d\x53\x6b\x55\x57\x51\x79','\x57\x50\x46\x64\x49\x38\x6b\x72','\x63\x30\x70\x64\x4d\x43\x6b\x41\x67\x47','\x67\x30\x4a\x63\x50\x58\x42\x63\x51\x61','\x78\x38\x6f\x63\x6c\x4d\x46\x63\x51\x32\x39\x37\x57\x51\x6d','\x44\x72\x35\x63\x57\x50\x7a\x73\x57\x4f\x64\x64\x49\x43\x6f\x51','\x44\x6d\x6f\x30\x57\x37\x64\x63\x4b\x43\x6f\x37','\x77\x32\x4f\x43\x57\x36\x69','\x62\x57\x30\x34\x57\x51\x4f\x67\x68\x77\x42\x64\x4d\x71\x4e\x64\x4d\x38\x6f\x71\x68\x6d\x6b\x74\x69\x61','\x57\x50\x38\x68\x57\x35\x35\x30\x57\x36\x53','\x65\x75\x56\x63\x4c\x5a\x5a\x63\x4a\x57','\x73\x49\x72\x75\x6d\x68\x75\x6b\x43\x47\x47','\x57\x50\x42\x64\x49\x62\x46\x64\x4d\x33\x4a\x64\x47\x6d\x6b\x6b\x57\x50\x4b','\x75\x31\x61\x45\x57\x35\x74\x63\x51\x61','\x45\x6d\x6f\x6a\x42\x66\x68\x63\x4b\x6d\x6f\x58\x42\x38\x6b\x4a','\x79\x53\x6f\x6a\x45\x4c\x35\x74\x78\x57\x46\x64\x4e\x47','\x57\x4f\x50\x43\x74\x63\x6e\x2b','\x7a\x72\x33\x63\x47\x38\x6f\x41\x43\x53\x6b\x37\x77\x57\x62\x32\x69\x6d\x6f\x6a\x71\x61','\x57\x34\x56\x63\x51\x73\x4a\x64\x4e\x48\x56\x63\x49\x76\x38\x65\x6d\x65\x46\x64\x4e\x53\x6b\x65\x6f\x53\x6f\x6a','\x46\x68\x43\x65\x57\x37\x71\x6c\x72\x43\x6b\x6e','\x57\x4f\x46\x64\x4f\x48\x54\x54\x70\x57','\x6d\x6d\x6f\x65\x79\x31\x58\x41\x62\x48\x64\x64\x4b\x57','\x46\x43\x6f\x5a\x57\x4f\x4a\x64\x48\x38\x6f\x73','\x45\x72\x31\x72\x57\x4f\x35\x45\x57\x52\x56\x64\x4a\x38\x6f\x47','\x79\x43\x6f\x43\x57\x37\x74\x63\x4e\x43\x6f\x75\x6d\x48\x6c\x64\x4d\x47','\x78\x6d\x6f\x2f\x57\x34\x56\x63\x51\x53\x6f\x78','\x73\x30\x58\x4e\x57\x51\x46\x63\x48\x38\x6b\x47\x67\x38\x6f\x69','\x57\x34\x64\x63\x49\x65\x2f\x63\x47\x5a\x78\x63\x4a\x6d\x6b\x4b\x57\x51\x65\x7a\x57\x4f\x46\x64\x4c\x65\x61','\x64\x43\x6b\x34\x57\x37\x78\x64\x4b\x6d\x6b\x69\x57\x37\x64\x63\x56\x43\x6b\x71','\x78\x43\x6f\x77\x57\x34\x64\x63\x49\x59\x2f\x63\x4f\x38\x6b\x6d\x57\x35\x47','\x57\x50\x78\x64\x4b\x43\x6b\x6c\x57\x4f\x31\x79\x57\x34\x30','\x76\x31\x58\x7a\x72\x57\x71\x6d\x41\x78\x69','\x73\x4a\x7a\x6c\x62\x77\x79','\x7a\x6d\x6f\x2f\x57\x36\x56\x64\x4a\x38\x6b\x78','\x64\x38\x6b\x52\x41\x43\x6b\x54\x57\x37\x65','\x69\x4b\x78\x64\x51\x38\x6b\x67\x6d\x53\x6f\x37\x43\x5a\x79','\x78\x67\x79\x43\x57\x37\x31\x6d\x42\x76\x37\x64\x4a\x57','\x78\x4b\x44\x55\x76\x57\x57','\x75\x43\x6f\x2b\x57\x36\x68\x64\x49\x38\x6b\x69','\x57\x34\x50\x6e\x57\x36\x4e\x63\x4a\x53\x6b\x6b\x57\x35\x4f\x78\x57\x50\x4b','\x57\x4f\x75\x71\x57\x37\x37\x63\x4d\x57','\x57\x37\x31\x64\x63\x75\x42\x63\x52\x4b\x56\x63\x47\x72\x38','\x57\x51\x70\x64\x56\x31\x56\x64\x4a\x53\x6f\x55\x63\x73\x54\x49','\x57\x36\x58\x5a\x63\x48\x47\x53','\x57\x52\x7a\x4c\x7a\x73\x58\x39','\x57\x34\x66\x63\x57\x37\x4a\x63\x4b\x43\x6b\x4c','\x41\x75\x66\x53','\x57\x35\x56\x64\x4d\x71\x4e\x63\x52\x53\x6f\x42\x71\x4a\x38','\x57\x34\x79\x61\x75\x53\x6b\x4c\x57\x52\x78\x63\x4f\x48\x43\x53','\x76\x47\x62\x35\x57\x52\x72\x73','\x75\x75\x66\x4b\x57\x34\x48\x43','\x79\x53\x6f\x73\x65\x53\x6f\x79\x66\x5a\x79','\x57\x4f\x39\x38\x74\x38\x6f\x6e\x79\x6d\x6b\x37\x78\x43\x6f\x45','\x79\x43\x6f\x71\x57\x37\x74\x63\x4d\x43\x6f\x4e\x6b\x62\x6c\x64\x56\x57','\x57\x50\x4f\x7a\x57\x34\x35\x6e\x57\x36\x4f','\x46\x67\x6e\x2b\x57\x35\x65\x49','\x57\x50\x2f\x64\x51\x78\x64\x63\x47\x66\x79','\x61\x77\x46\x63\x56\x48\x5a\x63\x53\x5a\x71\x62\x70\x71','\x63\x33\x33\x63\x54\x72\x43','\x74\x43\x6f\x34\x57\x37\x64\x64\x48\x43\x6b\x6f\x57\x37\x74\x64\x4f\x53\x6b\x44','\x57\x36\x4b\x51\x68\x72\x76\x50\x57\x51\x4f\x65\x71\x57','\x74\x67\x2f\x63\x50\x53\x6b\x69\x57\x50\x70\x64\x4d\x31\x46\x63\x4c\x71','\x57\x37\x44\x56\x64\x72\x6d\x38\x57\x51\x69','\x70\x49\x4e\x63\x4f\x31\x39\x36\x66\x65\x6d\x6a','\x45\x53\x6f\x63\x41\x76\x74\x64\x48\x43\x6f\x2f','\x6f\x53\x6b\x5a\x70\x30\x48\x37\x43\x38\x6f\x62\x57\x35\x34','\x46\x53\x6b\x70\x6a\x74\x61\x36\x61\x53\x6b\x5a\x57\x50\x47','\x57\x34\x6e\x61\x57\x36\x33\x63\x48\x43\x6b\x34','\x6b\x53\x6b\x55\x6c\x67\x4c\x74','\x57\x50\x39\x39\x72\x63\x6a\x31','\x42\x71\x76\x44\x41\x71\x6e\x54\x46\x77\x6d','\x45\x68\x66\x67\x57\x36\x50\x71','\x57\x51\x56\x64\x47\x57\x66\x30\x70\x6d\x6b\x4c\x42\x73\x65','\x7a\x30\x4c\x51\x43\x64\x75\x58\x57\x37\x43\x5a','\x43\x73\x31\x4c\x62\x68\x75','\x45\x65\x71\x7a\x57\x36\x7a\x4b','\x73\x59\x58\x62\x70\x4c\x34\x46\x6e\x58\x4f','\x45\x38\x6f\x42\x41\x78\x4c\x78','\x57\x52\x54\x39\x69\x62\x74\x63\x51\x47\x34\x36\x57\x36\x71','\x67\x73\x58\x43\x69\x77\x71\x62\x70\x61\x30','\x57\x52\x61\x45\x79\x75\x5a\x64\x56\x47','\x78\x4c\x58\x55\x57\x37\x7a\x65\x73\x61','\x6d\x38\x6f\x72\x57\x36\x37\x63\x4c\x43\x6f\x71\x41\x71\x78\x64\x4f\x61','\x57\x50\x6a\x47\x67\x43\x6f\x6e\x45\x53\x6b\x32\x65\x53\x6f\x64','\x57\x35\x62\x4b\x57\x35\x37\x63\x47\x38\x6b\x76','\x79\x53\x6f\x71\x65\x53\x6f\x46\x62\x47\x57\x64\x57\x34\x47','\x77\x53\x6f\x6e\x57\x37\x6c\x63\x4a\x73\x4e\x63\x55\x43\x6b\x31\x57\x35\x79','\x7a\x53\x6f\x35\x6c\x30\x4c\x37\x79\x6d\x6f\x43\x57\x35\x75','\x77\x32\x78\x63\x52\x43\x6b\x6c\x6b\x47\x75\x38','\x78\x43\x6f\x79\x57\x36\x68\x63\x4d\x64\x4a\x63\x56\x47','\x57\x50\x70\x64\x4b\x73\x31\x71\x62\x71','\x71\x47\x4c\x55\x41\x48\x79','\x44\x32\x4e\x64\x50\x48\x4f','\x57\x52\x42\x64\x4c\x43\x6b\x46\x57\x4f\x58\x56','\x57\x4f\x57\x45\x57\x35\x2f\x63\x4e\x43\x6f\x59','\x61\x75\x75\x36\x57\x36\x6d\x65\x77\x77\x6c\x63\x4c\x61','\x44\x43\x6f\x75\x45\x4c\x44\x44\x77\x71\x43','\x57\x50\x6e\x43\x57\x37\x37\x63\x49\x43\x6f\x30\x57\x37\x6a\x61\x57\x50\x34','\x44\x6d\x6f\x70\x68\x53\x6f\x74','\x72\x6d\x6f\x34\x6f\x30\x33\x63\x4b\x57','\x45\x6d\x6f\x66\x42\x76\x6d','\x6b\x4b\x58\x2b\x77\x49\x54\x62\x6b\x6d\x6b\x38','\x44\x53\x6f\x62\x57\x37\x46\x63\x4e\x53\x6f\x78\x6e\x48\x69','\x65\x32\x42\x64\x51\x43\x6b\x74\x65\x61','\x57\x51\x7a\x59\x70\x62\x5a\x63\x55\x72\x53','\x57\x51\x72\x42\x46\x71\x6e\x75\x57\x36\x58\x73\x63\x71','\x75\x38\x6f\x64\x63\x77\x64\x63\x50\x4d\x6d','\x73\x57\x50\x57\x57\x52\x56\x63\x49\x43\x6b\x34\x62\x57','\x46\x53\x6f\x6a\x79\x31\x6c\x64\x48\x53\x6f\x5a\x44\x6d\x6b\x31','\x46\x64\x35\x42\x57\x50\x7a\x41','\x42\x53\x6f\x6f\x68\x43\x6f\x7a\x61\x4a\x69\x42\x57\x34\x69','\x57\x52\x72\x68\x7a\x57\x72\x56\x57\x34\x31\x63\x63\x57','\x57\x50\x78\x64\x4b\x71\x52\x64\x4c\x67\x4a\x64\x51\x38\x6b\x6b\x57\x50\x47','\x57\x50\x78\x64\x50\x61\x37\x64\x52\x78\x38','\x57\x34\x42\x64\x4d\x63\x68\x63\x53\x71','\x73\x47\x58\x31\x57\x52\x74\x63\x49\x53\x6b\x39\x67\x6d\x6f\x63','\x42\x4b\x42\x63\x47\x4b\x37\x63\x52\x66\x57\x68\x75\x57','\x42\x31\x78\x63\x49\x31\x4e\x63\x51\x57\x4b\x44\x77\x57','\x46\x32\x34\x59\x57\x37\x5a\x63\x4a\x38\x6f\x4d\x57\x52\x47\x65','\x45\x76\x52\x64\x49\x53\x6f\x79\x45\x61','\x57\x34\x4c\x79\x63\x5a\x69\x71','\x41\x68\x34\x54\x57\x34\x58\x72','\x57\x36\x74\x64\x4e\x61\x76\x34\x69\x38\x6b\x54\x79\x59\x30','\x72\x78\x34\x52\x57\x37\x74\x63\x4c\x43\x6f\x6e\x57\x52\x4b','\x57\x51\x78\x64\x56\x33\x4e\x63\x49\x4b\x56\x64\x4e\x48\x53','\x57\x4f\x50\x2f\x43\x57\x48\x69','\x45\x68\x56\x64\x4a\x4b\x33\x63\x54\x30\x42\x64\x56\x53\x6f\x61','\x57\x4f\x31\x38\x74\x47','\x72\x53\x6f\x6a\x57\x37\x42\x63\x4b\x74\x37\x63\x50\x53\x6b\x64\x57\x34\x47','\x57\x37\x79\x72\x71\x6d\x6b\x34\x57\x52\x33\x63\x55\x74\x69\x37','\x57\x51\x43\x54\x75\x30\x70\x64\x49\x76\x38\x74','\x46\x43\x6b\x51\x42\x4b\x65\x34\x46\x43\x6b\x43\x57\x34\x57','\x76\x4d\x42\x63\x56\x53\x6b\x6c\x6f\x31\x4c\x4b\x62\x61','\x6d\x4d\x53\x74\x57\x37\x75\x41\x73\x43\x6b\x66\x57\x50\x6d','\x57\x4f\x56\x64\x53\x4a\x46\x64\x4e\x33\x57','\x57\x34\x64\x64\x4e\x4a\x33\x63\x53\x53\x6f\x61\x76\x59\x2f\x63\x4e\x47','\x41\x31\x56\x63\x52\x53\x6b\x55\x61\x57','\x6e\x6d\x6b\x75\x73\x53\x6b\x61\x74\x67\x75\x31\x57\x36\x75\x4c\x43\x6d\x6f\x58\x57\x36\x79','\x45\x4d\x74\x63\x52\x53\x6b\x62\x57\x4f\x64\x64\x4d\x76\x43','\x57\x50\x56\x64\x51\x75\x5a\x64\x49\x53\x6f\x50\x65\x58\x54\x38','\x46\x48\x7a\x44\x76\x64\x75','\x57\x4f\x64\x64\x4c\x58\x2f\x64\x4d\x77\x5a\x64\x4d\x6d\x6b\x71','\x44\x38\x6f\x57\x57\x4f\x74\x63\x55\x61','\x41\x31\x74\x64\x47\x6d\x6f\x4f\x73\x47','\x7a\x6d\x6f\x6d\x6c\x75\x33\x64\x4c\x43\x6f\x47\x43\x38\x6b\x2f','\x46\x53\x6f\x7a\x7a\x31\x4c\x78\x77\x71','\x79\x43\x6f\x4e\x57\x50\x4e\x63\x53\x74\x52\x64\x48\x38\x6f\x49\x57\x4f\x71','\x57\x51\x71\x69\x57\x34\x66\x65\x57\x36\x68\x64\x55\x4b\x4b','\x77\x4d\x43\x57\x57\x37\x35\x36\x7a\x4c\x70\x64\x50\x47','\x44\x53\x6b\x7a\x70\x74\x75\x63','\x45\x78\x38\x61\x78\x49\x69','\x72\x30\x54\x4a\x57\x37\x48\x77\x71\x63\x68\x63\x54\x57','\x78\x72\x39\x4b\x72\x49\x75','\x57\x4f\x37\x64\x48\x38\x6b\x66\x57\x4f\x50\x6f\x57\x34\x5a\x63\x4e\x53\x6b\x71','\x57\x34\x64\x64\x47\x5a\x56\x63\x54\x38\x6f\x32\x76\x59\x4e\x63\x4c\x57','\x57\x50\x56\x64\x54\x4e\x42\x63\x4d\x66\x43','\x57\x4f\x37\x64\x54\x77\x30','\x77\x4d\x5a\x63\x50\x6d\x6b\x68\x6c\x66\x58\x49\x64\x61','\x69\x4c\x6e\x74\x76\x57','\x74\x33\x75\x46\x57\x37\x72\x43','\x71\x67\x57\x44\x57\x37\x6e\x59\x43\x4c\x37\x63\x4d\x71','\x70\x59\x70\x63\x4d\x48\x68\x64\x53\x71\x52\x64\x54\x38\x6f\x57\x44\x59\x79\x4c\x57\x50\x42\x63\x56\x61','\x67\x4d\x5a\x63\x53\x72\x46\x63\x56\x61\x4f\x68\x70\x71','\x6f\x73\x33\x64\x4b\x68\x5a\x63\x4a\x4d\x33\x63\x52\x43\x6f\x78','\x6d\x38\x6b\x75\x46\x38\x6b\x68\x57\x37\x4e\x63\x4d\x38\x6f\x67\x57\x35\x61','\x57\x51\x64\x64\x51\x30\x52\x63\x55\x30\x38','\x57\x37\x58\x45\x67\x30\x2f\x63\x4e\x75\x6c\x63\x55\x58\x4f','\x41\x4e\x37\x64\x4a\x61','\x57\x50\x74\x64\x48\x53\x6b\x6d\x57\x4f\x50\x45\x57\x34\x53','\x57\x35\x7a\x53\x57\x37\x5a\x63\x4a\x53\x6b\x77','\x6e\x48\x4f\x49\x57\x50\x66\x58\x57\x52\x2f\x64\x47\x43\x6b\x43\x57\x36\x64\x64\x4e\x67\x6a\x6b','\x46\x57\x72\x43\x57\x4f\x76\x7a\x57\x52\x37\x64\x4a\x53\x6f\x32','\x57\x51\x6e\x34\x46\x58\x50\x74','\x6b\x66\x66\x7a\x72\x63\x62\x6d\x68\x53\x6b\x59','\x67\x4b\x64\x63\x47\x5a\x64\x63\x4b\x57','\x57\x36\x58\x73\x61\x65\x78\x63\x54\x65\x46\x63\x53\x72\x34','\x57\x50\x4a\x64\x48\x43\x6b\x73\x57\x4f\x50\x41\x57\x35\x64\x64\x4a\x6d\x6b\x7a','\x73\x4d\x37\x63\x55\x6d\x6b\x34\x57\x4f\x68\x64\x4e\x31\x46\x63\x4c\x71','\x73\x58\x44\x32\x57\x51\x46\x63\x4e\x6d\x6b\x4e\x69\x38\x6f\x63','\x78\x38\x6f\x76\x57\x35\x33\x63\x55\x38\x6f\x48','\x57\x36\x52\x63\x4e\x61\x7a\x2b\x6f\x43\x6b\x50\x45\x49\x75','\x6c\x75\x76\x4a\x78\x4a\x71','\x6a\x53\x6f\x6e\x57\x4f\x30\x37\x57\x50\x5a\x63\x4e\x75\x4b','\x57\x4f\x68\x64\x4c\x58\x2f\x64\x4d\x68\x38','\x57\x35\x39\x52\x67\x61\x34\x4c','\x57\x50\x52\x64\x55\x65\x42\x64\x49\x6d\x6f\x39\x62\x74\x7a\x74','\x57\x50\x4c\x6c\x43\x47\x4c\x76\x57\x34\x6a\x74','\x45\x43\x6f\x63\x41\x76\x44\x68\x74\x57\x46\x64\x49\x71','\x79\x53\x6f\x66\x45\x76\x62\x54\x72\x57\x46\x64\x4a\x61','\x45\x6d\x6b\x43\x6e\x64\x38\x37\x64\x47','\x57\x36\x48\x56\x63\x62\x34\x57\x57\x50\x61\x66\x72\x71','\x6d\x4c\x56\x64\x49\x43\x6b\x72\x6b\x43\x6f\x52\x41\x74\x71','\x57\x50\x6d\x65\x57\x37\x5a\x63\x48\x53\x6f\x79','\x43\x53\x6b\x79\x6e\x63\x75\x39\x6e\x6d\x6b\x4f\x57\x50\x47','\x57\x37\x50\x33\x57\x35\x42\x63\x4e\x6d\x6b\x61','\x57\x50\x74\x64\x4c\x53\x6b\x75\x57\x4f\x6a\x56','\x45\x64\x52\x64\x4e\x65\x46\x64\x4f\x31\x56\x63\x52\x43\x6f\x78','\x45\x53\x6f\x6b\x57\x34\x68\x63\x4d\x38\x6f\x77\x6c\x71\x70\x64\x52\x61','\x72\x32\x65\x62\x57\x37\x4c\x4c\x79\x65\x2f\x64\x4e\x61','\x72\x32\x39\x69\x57\x37\x65\x34'];_0x31bb=function(){return _0x4365c2;};return _0x31bb();}const _0x4096e6={};_0x4096e6[_0x477c30(0x15d,'\x45\x53\x6e\x6a')]=_0x2f70d7,_0x4096e6[_0x477c30(0x16e,'\x2a\x47\x64\x79')+_0x477c30(0x13b,'\x5d\x68\x64\x7a')]=_0x29ee64,_0x4096e6[_0x477c30(0x205,'\x69\x56\x6f\x65')+_0x477c30(0x214,'\x4f\x21\x6e\x58')]=_0x25dce4,_0x4096e6[_0x477c30(0x189,'\x45\x53\x6e\x6a')+'\x65\x4d\x75\x74\x61\x74\x69\x6f'+'\x6e']=_0x4064ec,_0x4096e6['\x69\x73\x48\x69\x67\x68\x52\x69'+_0x477c30(0x1f8,'\x47\x43\x40\x50')+_0x477c30(0x261,'\x26\x47\x4c\x69')+'\x64']=_0x4edd17,_0x4096e6[_0x477c30(0x16a,'\x46\x52\x39\x57')+_0x477c30(0x128,'\x24\x4b\x46\x42')+_0x477c30(0x1a0,'\x52\x6f\x23\x47')]=_0x145b68,_0x4096e6[_0x477c30(0x280,'\x61\x4f\x54\x41')+_0x477c30(0x1d4,'\x35\x53\x44\x59')+_0x477c30(0x1e3,'\x6d\x4a\x5d\x32')]=_0x4651f0,module[_0x477c30(0x180,'\x35\x53\x44\x59')]=_0x4096e6;
@@ -1,108 +1 @@
1
- 'use strict';
2
-
3
- const fs = require('fs');
4
- const path = require('path');
5
- const { getNarrativePath, getEvolutionDir } = require('./paths');
6
-
7
- const MAX_NARRATIVE_ENTRIES = 30;
8
- const MAX_NARRATIVE_SIZE = 12000;
9
-
10
- function ensureDir(dir) {
11
- try { if (!fs.existsSync(dir)) fs.mkdirSync(dir, { recursive: true }); } catch (_) {}
12
- }
13
-
14
- function recordNarrative({ gene, signals, mutation, outcome, blast, capsule }) {
15
- const narrativePath = getNarrativePath();
16
- ensureDir(path.dirname(narrativePath));
17
-
18
- const ts = new Date().toISOString().replace('T', ' ').slice(0, 19);
19
- const geneId = gene && gene.id ? gene.id : '(auto)';
20
- const category = (mutation && mutation.category) || (gene && gene.category) || 'unknown';
21
- const status = outcome && outcome.status ? outcome.status : 'unknown';
22
- const score = outcome && typeof outcome.score === 'number' ? outcome.score.toFixed(2) : '?';
23
- const signalsSummary = Array.isArray(signals) ? signals.slice(0, 4).join(', ') : '(none)';
24
- const filesChanged = blast ? blast.files : 0;
25
- const linesChanged = blast ? blast.lines : 0;
26
- const rationale = mutation && mutation.rationale
27
- ? String(mutation.rationale).slice(0, 200) : '';
28
- const strategy = gene && Array.isArray(gene.strategy)
29
- ? gene.strategy.slice(0, 3).map((s, i) => ` ${i + 1}. ${s}`).join('\n') : '';
30
- const capsuleSummary = capsule && capsule.summary ? String(capsule.summary).slice(0, 200) : '';
31
-
32
- const entry = [
33
- `### [${ts}] ${category.toUpperCase()} - ${status}`,
34
- `- Gene: ${geneId} | Score: ${score} | Scope: ${filesChanged} files, ${linesChanged} lines`,
35
- `- Signals: [${signalsSummary}]`,
36
- rationale ? `- Why: ${rationale}` : null,
37
- strategy ? `- Strategy:\n${strategy}` : null,
38
- capsuleSummary ? `- Result: ${capsuleSummary}` : null,
39
- '',
40
- ].filter(line => line !== null).join('\n');
41
-
42
- let existing = '';
43
- try {
44
- if (fs.existsSync(narrativePath)) {
45
- existing = fs.readFileSync(narrativePath, 'utf8');
46
- }
47
- } catch (_) {}
48
-
49
- if (!existing.trim()) {
50
- existing = '# Evolution Narrative\n\nA chronological record of evolution decisions and outcomes.\n\n';
51
- }
52
-
53
- const combined = existing + entry;
54
- const trimmed = trimNarrative(combined);
55
-
56
- const tmp = narrativePath + '.tmp';
57
- fs.writeFileSync(tmp, trimmed, 'utf8');
58
- fs.renameSync(tmp, narrativePath);
59
- }
60
-
61
- function trimNarrative(content) {
62
- if (content.length <= MAX_NARRATIVE_SIZE) return content;
63
-
64
- const headerEnd = content.indexOf('###');
65
- if (headerEnd < 0) return content.slice(-MAX_NARRATIVE_SIZE);
66
-
67
- const header = content.slice(0, headerEnd);
68
- const entries = content.slice(headerEnd).split(/(?=^### \[)/m);
69
-
70
- while (entries.length > MAX_NARRATIVE_ENTRIES) {
71
- entries.shift();
72
- }
73
-
74
- let result = header + entries.join('');
75
- if (result.length > MAX_NARRATIVE_SIZE) {
76
- const keep = Math.max(1, entries.length - 5);
77
- result = header + entries.slice(-keep).join('');
78
- }
79
-
80
- return result;
81
- }
82
-
83
- function loadNarrativeSummary(maxChars) {
84
- const limit = Number.isFinite(maxChars) ? maxChars : 4000;
85
- const narrativePath = getNarrativePath();
86
- try {
87
- if (!fs.existsSync(narrativePath)) return '';
88
- const content = fs.readFileSync(narrativePath, 'utf8');
89
- if (!content.trim()) return '';
90
-
91
- const headerEnd = content.indexOf('###');
92
- if (headerEnd < 0) return '';
93
-
94
- const entries = content.slice(headerEnd).split(/(?=^### \[)/m);
95
- const recent = entries.slice(-8);
96
- let summary = recent.join('');
97
- if (summary.length > limit) {
98
- summary = summary.slice(-limit);
99
- const firstEntry = summary.indexOf('### [');
100
- if (firstEntry > 0) summary = summary.slice(firstEntry);
101
- }
102
- return summary.trim();
103
- } catch (_) {
104
- return '';
105
- }
106
- }
107
-
108
- module.exports = { recordNarrative, loadNarrativeSummary, trimNarrative };
1
+ const _0x59d7f3=_0x12c8;function _0x1ee8(){const _0x91e80f=['\x7a\x43\x6f\x6a\x57\x37\x70\x63\x4c\x6d\x6f\x64\x61\x57\x61','\x78\x53\x6f\x32\x57\x50\x58\x78','\x57\x34\x5a\x64\x4f\x65\x38\x76\x42\x47','\x57\x4f\x39\x30\x57\x52\x65\x78\x6d\x61','\x57\x37\x30\x6a\x57\x4f\x47\x43\x6d\x47','\x6e\x4a\x6e\x72\x57\x51\x70\x63\x4a\x43\x6b\x64\x57\x50\x4b','\x42\x67\x79\x39\x64\x47','\x57\x4f\x7a\x74\x57\x4f\x58\x61\x77\x57','\x68\x43\x6f\x57\x57\x52\x43\x75\x76\x4a\x43','\x57\x34\x46\x63\x49\x53\x6b\x58\x57\x50\x35\x6f','\x6c\x53\x6b\x61\x57\x35\x53\x6e\x57\x34\x71\x64\x77\x33\x54\x62\x67\x43\x6b\x78\x41\x62\x38','\x6d\x31\x76\x74\x65\x59\x69','\x7a\x63\x35\x66\x57\x51\x70\x63\x48\x38\x6b\x41\x57\x50\x68\x63\x4f\x61','\x6d\x30\x52\x63\x52\x68\x43','\x57\x52\x44\x42\x78\x74\x78\x63\x4b\x71','\x57\x35\x6d\x39\x69\x53\x6b\x54\x57\x4f\x69','\x57\x34\x69\x49\x57\x36\x70\x63\x55\x75\x75','\x67\x64\x79\x5a\x57\x34\x44\x67\x72\x66\x43\x4c','\x6d\x43\x6b\x61\x57\x36\x54\x59\x57\x52\x64\x63\x54\x47','\x57\x4f\x42\x64\x4e\x6d\x6f\x62\x57\x35\x37\x64\x49\x47','\x78\x6d\x6b\x48\x75\x30\x6d\x6a\x57\x51\x54\x59\x73\x57','\x6c\x53\x6b\x70\x44\x43\x6b\x46\x57\x50\x61\x76\x64\x75\x79','\x57\x35\x42\x64\x4d\x66\x6c\x63\x54\x47','\x57\x35\x61\x65\x6e\x43\x6f\x6b\x70\x61','\x57\x4f\x4e\x64\x50\x6d\x6f\x44\x72\x71\x79\x34\x57\x35\x4f','\x57\x51\x48\x73\x57\x50\x31\x30\x74\x71','\x57\x52\x37\x63\x51\x6d\x6b\x68\x69\x4d\x62\x6c\x73\x43\x6b\x6b','\x6e\x38\x6b\x6b\x57\x36\x58\x37','\x57\x37\x4e\x64\x50\x57\x33\x64\x4b\x53\x6f\x70','\x6a\x6d\x6b\x79\x57\x37\x37\x64\x4f\x6d\x6b\x76','\x57\x50\x31\x53\x57\x51\x47\x44\x70\x71','\x77\x38\x6b\x56\x57\x36\x4e\x63\x50\x6d\x6b\x32','\x6f\x43\x6b\x75\x57\x34\x4b\x75\x57\x51\x43','\x70\x43\x6f\x54\x57\x52\x78\x63\x4b\x38\x6f\x71','\x57\x35\x6d\x6d\x6c\x53\x6f\x4e\x57\x4f\x6d','\x43\x61\x5a\x64\x52\x53\x6f\x49\x46\x57','\x57\x34\x54\x68\x41\x4c\x70\x63\x56\x47','\x57\x51\x4e\x63\x51\x65\x46\x63\x4b\x43\x6f\x58','\x67\x64\x79\x31\x57\x34\x6e\x65\x73\x65\x53\x62','\x66\x47\x4c\x5a\x57\x4f\x34','\x57\x35\x66\x6b\x79\x47','\x57\x4f\x7a\x42\x43\x47\x70\x63\x4f\x61','\x77\x6d\x6b\x4e\x57\x37\x7a\x30\x57\x4f\x76\x77\x73\x63\x34','\x61\x5a\x52\x64\x4b\x61','\x65\x6d\x6b\x76\x57\x37\x42\x64\x4c\x38\x6b\x30','\x57\x35\x52\x64\x48\x65\x69\x74\x75\x53\x6f\x53\x69\x53\x6f\x6a','\x75\x33\x78\x63\x4d\x4a\x70\x63\x4b\x71','\x57\x50\x58\x78\x44\x72\x78\x63\x4e\x6d\x6f\x53','\x42\x53\x6f\x79\x57\x52\x4c\x61\x57\x4f\x35\x79\x62\x32\x57','\x6b\x59\x7a\x7a\x57\x52\x74\x63\x48\x43\x6b\x7a\x57\x35\x5a\x63\x54\x57','\x41\x43\x6f\x73\x57\x4f\x54\x67\x57\x50\x39\x7a','\x43\x31\x76\x39\x62\x47','\x57\x50\x66\x63\x57\x34\x46\x63\x48\x75\x64\x63\x4c\x58\x56\x63\x4e\x57','\x65\x49\x4e\x64\x49\x4d\x6c\x64\x4a\x43\x6b\x76\x57\x35\x74\x63\x4e\x6d\x6b\x2b\x57\x51\x53\x77\x78\x38\x6f\x63','\x68\x73\x71\x31\x57\x51\x56\x63\x4c\x57','\x43\x43\x6f\x36\x57\x51\x58\x32\x57\x52\x43','\x64\x48\x47\x73\x57\x51\x6c\x63\x47\x33\x56\x63\x4c\x47','\x65\x6d\x6b\x38\x57\x35\x47\x62\x57\x4f\x54\x76\x42\x4c\x57','\x6b\x63\x72\x45\x57\x52\x64\x63\x4b\x6d\x6b\x44','\x57\x51\x78\x64\x49\x43\x6b\x2f\x57\x50\x74\x63\x48\x57','\x45\x57\x64\x64\x48\x6d\x6f\x30\x45\x43\x6f\x70\x57\x35\x74\x63\x48\x57','\x57\x50\x4e\x64\x4c\x43\x6f\x67\x57\x35\x52\x64\x4d\x38\x6b\x61','\x57\x51\x33\x64\x4f\x6d\x6b\x45\x71\x43\x6b\x78\x57\x34\x4a\x64\x4e\x38\x6f\x4a\x57\x50\x66\x70\x72\x6d\x6b\x39','\x61\x64\x4f\x4f\x57\x37\x62\x2f','\x69\x48\x38\x4b\x6c\x61','\x57\x52\x6a\x79\x71\x5a\x56\x63\x51\x71','\x57\x34\x52\x64\x50\x71\x56\x63\x4b\x71','\x73\x53\x6b\x54\x71\x65\x4b\x55\x57\x51\x39\x37','\x6f\x38\x6f\x56\x57\x52\x46\x63\x4e\x53\x6f\x41\x6e\x4b\x4f','\x42\x71\x4a\x64\x47\x43\x6f\x55\x45\x71','\x66\x61\x6d\x42\x57\x51\x52\x63\x4d\x4b\x42\x63\x49\x71','\x57\x34\x2f\x64\x52\x71\x56\x63\x4e\x6d\x6b\x55\x57\x52\x37\x64\x4b\x59\x69','\x6f\x53\x6f\x5a\x57\x52\x78\x63\x4e\x71','\x57\x52\x4a\x63\x50\x53\x6b\x47\x70\x33\x31\x6d\x72\x53\x6b\x62','\x57\x36\x48\x6c\x44\x4d\x66\x44\x57\x35\x70\x64\x53\x73\x30','\x69\x43\x6b\x6a\x57\x36\x52\x63\x4d\x57','\x78\x6d\x6b\x32\x57\x36\x6a\x7a\x66\x33\x44\x6e\x45\x33\x58\x44\x6f\x32\x47','\x57\x36\x4c\x75\x46\x77\x37\x63\x4c\x61','\x57\x4f\x4e\x64\x55\x68\x70\x63\x4b\x76\x64\x63\x4b\x61','\x45\x6d\x6f\x6d\x57\x4f\x30\x38\x57\x51\x43','\x57\x4f\x58\x42\x57\x50\x50\x58\x7a\x4b\x56\x63\x47\x38\x6b\x48','\x57\x51\x66\x39\x41\x74\x46\x63\x50\x71','\x57\x50\x6a\x41\x6f\x68\x4c\x75','\x62\x76\x48\x51\x57\x4f\x53\x30','\x6f\x6d\x6b\x68\x7a\x43\x6b\x45\x57\x37\x65','\x57\x36\x78\x63\x55\x38\x6f\x61\x57\x37\x75','\x6d\x65\x62\x4f','\x71\x6d\x6b\x58\x78\x30\x75\x51\x57\x52\x61','\x57\x35\x64\x63\x50\x6d\x6b\x35\x57\x50\x58\x74','\x57\x36\x5a\x63\x56\x53\x6f\x64\x67\x38\x6f\x67','\x57\x35\x6d\x72\x6f\x61','\x7a\x76\x61\x45\x6b\x38\x6b\x74\x57\x4f\x42\x63\x50\x5a\x61','\x57\x50\x6d\x31\x57\x52\x6d\x77\x61\x58\x70\x63\x56\x59\x57','\x57\x50\x42\x64\x4f\x6d\x6f\x72\x74\x4a\x6d','\x57\x50\x68\x64\x4e\x5a\x56\x63\x52\x49\x38\x4f\x57\x52\x4a\x64\x54\x31\x74\x64\x50\x38\x6b\x6e\x67\x76\x53','\x69\x31\x2f\x63\x50\x31\x6e\x4c','\x57\x50\x5a\x64\x4e\x38\x6f\x67\x57\x34\x37\x63\x4a\x38\x6b\x6a\x57\x4f\x48\x4e','\x6f\x6d\x6b\x6b\x57\x36\x52\x63\x4c\x53\x6f\x73','\x73\x4b\x71\x66\x6e\x6d\x6f\x6a','\x57\x4f\x64\x64\x51\x71\x52\x63\x4a\x43\x6b\x47\x57\x52\x5a\x63\x4e\x64\x57','\x57\x50\x56\x64\x51\x6d\x6b\x71\x57\x51\x2f\x63\x47\x47','\x57\x36\x69\x73\x57\x36\x42\x64\x56\x68\x35\x53\x72\x38\x6f\x6c\x57\x37\x4f\x49\x41\x71\x4b','\x57\x35\x33\x63\x56\x47\x68\x64\x48\x6d\x6b\x6c','\x57\x4f\x74\x64\x50\x38\x6b\x58\x57\x4f\x2f\x63\x52\x61','\x57\x37\x64\x63\x56\x6d\x6b\x6b\x68\x6d\x6f\x67\x57\x50\x4a\x64\x4b\x43\x6f\x4b','\x57\x34\x57\x68\x57\x34\x56\x63\x51\x4c\x75','\x76\x65\x44\x70\x57\x37\x70\x64\x47\x57\x33\x64\x49\x6d\x6f\x6a\x57\x37\x37\x64\x4f\x38\x6b\x68\x57\x50\x74\x63\x4c\x61','\x41\x30\x47\x52\x57\x34\x42\x64\x56\x57','\x57\x51\x74\x64\x4e\x6d\x6f\x2b\x46\x4a\x75','\x57\x35\x70\x64\x52\x57\x70\x63\x4a\x43\x6b\x53\x57\x52\x4f','\x57\x35\x66\x6b\x79\x75\x74\x63\x4f\x59\x72\x4c','\x57\x35\x79\x58\x6b\x38\x6f\x45\x57\x52\x7a\x73\x64\x63\x4f','\x57\x35\x47\x4a\x61\x43\x6b\x32\x57\x51\x47','\x57\x4f\x72\x44\x78\x72\x56\x63\x4b\x6d\x6f\x48\x57\x51\x4f','\x57\x50\x2f\x63\x48\x43\x6b\x6e\x70\x77\x47','\x57\x34\x65\x46\x69\x38\x6f\x43\x57\x51\x53','\x57\x34\x65\x4a\x57\x36\x42\x63\x55\x30\x30','\x76\x30\x38\x58\x57\x34\x71','\x6f\x53\x6b\x75\x57\x37\x70\x64\x51\x53\x6b\x75\x57\x52\x72\x7a\x6f\x47','\x57\x35\x34\x59\x57\x51\x4f','\x57\x35\x61\x45\x57\x34\x5a\x63\x4a\x75\x71','\x57\x34\x54\x62\x7a\x66\x70\x63\x55\x61\x6d','\x74\x53\x6b\x36\x57\x37\x35\x31\x57\x50\x6a\x6e','\x6e\x75\x64\x63\x51\x33\x35\x68\x77\x47','\x57\x52\x46\x63\x56\x6d\x6f\x66\x66\x53\x6f\x67\x57\x35\x69','\x73\x78\x46\x63\x4c\x5a\x78\x63\x4a\x6d\x6f\x55\x57\x4f\x6d','\x57\x4f\x62\x72\x57\x4f\x79','\x57\x4f\x46\x64\x52\x53\x6b\x4d\x70\x71','\x74\x68\x72\x61','\x57\x51\x72\x73\x6f\x66\x76\x6b\x57\x35\x71','\x57\x51\x33\x64\x4f\x53\x6b\x74\x73\x53\x6b\x41\x57\x34\x2f\x63\x49\x43\x6f\x75\x57\x51\x39\x52\x45\x53\x6b\x63\x57\x4f\x57','\x68\x43\x6b\x4a\x57\x52\x39\x75\x57\x50\x6a\x6b\x41\x5a\x69','\x57\x50\x31\x4f\x57\x51\x47\x79\x6c\x61','\x57\x35\x42\x64\x4a\x68\x4a\x64\x50\x57','\x57\x51\x6e\x69\x57\x52\x70\x63\x4c\x72\x38','\x77\x6d\x6b\x36\x57\x35\x69','\x66\x6d\x6f\x77\x57\x50\x75\x6d\x74\x57','\x57\x37\x64\x63\x4e\x53\x6f\x34\x6d\x53\x6f\x4e','\x72\x43\x6b\x36\x57\x35\x37\x63\x51\x71','\x57\x34\x38\x78\x57\x35\x42\x63\x50\x33\x71','\x77\x77\x4c\x75\x57\x4f\x43\x61\x67\x71\x65\x68\x7a\x6d\x6f\x47\x57\x51\x6d\x6d\x78\x61','\x57\x51\x39\x74\x57\x52\x4a\x63\x4f\x61\x6d\x37\x71\x6d\x6f\x78','\x57\x35\x4a\x64\x4d\x65\x61\x6a\x77\x6d\x6f\x44\x6a\x71','\x57\x34\x5a\x64\x48\x32\x70\x63\x4b\x76\x79','\x6c\x66\x68\x63\x4f\x59\x65','\x75\x4b\x35\x34\x57\x34\x37\x64\x4e\x53\x6f\x5a\x57\x35\x72\x50','\x41\x62\x6d\x4c\x6d\x6d\x6b\x42\x57\x4f\x42\x63\x51\x74\x61','\x67\x75\x7a\x4f\x68\x71\x43','\x7a\x43\x6f\x72\x57\x34\x70\x64\x53\x43\x6b\x75\x57\x52\x66\x4a\x70\x47','\x57\x50\x2f\x63\x56\x43\x6b\x6f\x67\x68\x43','\x6e\x4d\x58\x77\x6e\x62\x53','\x68\x43\x6f\x58\x57\x52\x53\x6e\x71\x4a\x7a\x74','\x65\x53\x6b\x44\x44\x43\x6b\x52\x57\x34\x78\x64\x4e\x6d\x6f\x58','\x41\x6d\x6f\x34\x57\x52\x50\x7a\x57\x50\x47','\x57\x50\x72\x4d\x45\x53\x6f\x33\x57\x35\x2f\x64\x49\x33\x2f\x63\x49\x53\x6f\x6d\x57\x4f\x4b\x49\x44\x6d\x6b\x31','\x44\x77\x47\x39','\x57\x34\x70\x64\x51\x58\x42\x63\x4d\x53\x6b\x4f\x57\x52\x33\x63\x47\x73\x4b','\x68\x43\x6b\x68\x77\x6d\x6b\x38\x57\x34\x71','\x78\x43\x6b\x53\x77\x30\x65\x37','\x57\x35\x56\x64\x4b\x57\x2f\x64\x4b\x6d\x6f\x70','\x57\x50\x6d\x38\x57\x51\x38\x6f\x62\x71\x2f\x64\x56\x4d\x4b','\x57\x51\x70\x63\x51\x43\x6b\x57\x6d\x32\x50\x54\x71\x71','\x67\x73\x52\x64\x48\x67\x68\x64\x48\x38\x6b\x78\x57\x50\x64\x63\x53\x43\x6b\x39\x57\x51\x30\x55\x71\x47','\x70\x6d\x6b\x72\x57\x36\x58\x4a\x57\x51\x68\x63\x4a\x43\x6f\x56\x57\x35\x34','\x57\x35\x6d\x52\x6e\x6d\x6f\x38\x57\x52\x34','\x57\x34\x5a\x63\x4d\x64\x5a\x64\x4d\x43\x6b\x2b\x71\x6d\x6b\x74','\x62\x38\x6b\x31\x57\x36\x2f\x63\x4a\x6d\x6f\x74','\x57\x36\x56\x64\x55\x49\x68\x63\x4c\x38\x6b\x65','\x63\x43\x6b\x68\x64\x68\x37\x63\x49\x47','\x6f\x53\x6b\x4f\x57\x35\x31\x79\x57\x51\x79','\x62\x43\x6b\x4b\x6d\x65\x46\x63\x55\x4a\x6c\x63\x4e\x4c\x75','\x57\x4f\x52\x64\x48\x49\x4e\x63\x4d\x62\x68\x63\x4d\x43\x6b\x76\x77\x47','\x57\x51\x50\x52\x44\x62\x78\x63\x53\x47','\x57\x37\x4a\x64\x4a\x68\x65\x50\x75\x47','\x57\x50\x42\x64\x52\x53\x6f\x52\x77\x57\x65','\x57\x35\x2f\x64\x4b\x30\x47\x73\x72\x43\x6f\x7a\x69\x53\x6f\x74','\x6d\x43\x6b\x44\x66\x43\x6f\x6c\x57\x35\x76\x76\x6b\x66\x33\x63\x4d\x6d\x6b\x73\x57\x50\x7a\x50','\x44\x4e\x66\x73\x57\x52\x5a\x63\x48\x43\x6b\x62\x57\x4f\x4e\x63\x47\x61','\x65\x61\x61\x70\x57\x34\x6c\x64\x47\x53\x6b\x51\x57\x50\x30','\x6a\x38\x6b\x6a\x57\x36\x6c\x63\x4b\x43\x6f\x35\x63\x47\x68\x64\x48\x57','\x68\x63\x76\x77\x57\x4f\x78\x63\x54\x47','\x57\x34\x2f\x64\x50\x5a\x37\x64\x56\x6d\x6f\x2b','\x57\x4f\x33\x63\x51\x49\x78\x63\x4d\x53\x6b\x48\x57\x52\x46\x64\x49\x78\x61','\x57\x51\x4c\x30\x44\x53\x6b\x66\x43\x53\x6b\x67\x57\x50\x57\x2f','\x62\x4a\x79\x6a\x57\x35\x30','\x57\x34\x43\x38\x57\x4f\x4b\x6f\x66\x61\x4e\x64\x56\x77\x53','\x77\x75\x34\x55\x57\x37\x37\x64\x4c\x47','\x57\x35\x31\x68\x41\x4c\x70\x63\x56\x30\x54\x53\x57\x34\x57','\x44\x53\x6b\x31\x75\x66\x69\x77','\x64\x43\x6b\x48\x57\x34\x37\x63\x4b\x53\x6f\x59','\x43\x4d\x53\x4d\x66\x6d\x6f\x79','\x57\x35\x6d\x48\x6a\x38\x6b\x4e\x57\x50\x6d','\x66\x66\x48\x38\x57\x34\x30','\x57\x34\x2f\x63\x4a\x33\x4f','\x57\x35\x68\x63\x4d\x4e\x64\x64\x55\x32\x6e\x30\x57\x36\x46\x64\x54\x47','\x74\x4b\x57\x58\x57\x34\x4e\x64\x4e\x47','\x57\x35\x2f\x63\x50\x38\x6b\x6b\x57\x4f\x76\x5a','\x61\x43\x6b\x57\x57\x34\x75','\x57\x4f\x33\x64\x55\x6d\x6f\x58\x57\x34\x78\x64\x4f\x47','\x74\x4c\x71\x35\x57\x35\x37\x64\x4a\x53\x6f\x4a','\x76\x77\x33\x63\x4c\x77\x47','\x57\x34\x31\x71\x79\x58\x4b','\x79\x76\x74\x63\x54\x72\x70\x63\x53\x57','\x57\x36\x57\x2f\x57\x35\x42\x63\x4c\x67\x6d','\x72\x53\x6f\x34\x72\x53\x6b\x46\x57\x51\x65','\x74\x43\x6b\x4b\x57\x50\x6d\x77\x74\x63\x48\x46\x45\x57','\x68\x43\x6b\x66\x57\x34\x42\x64\x54\x38\x6b\x70','\x57\x50\x6c\x64\x53\x38\x6b\x4f\x57\x4f\x70\x63\x55\x30\x4e\x63\x4a\x47','\x76\x30\x79\x45\x64\x53\x6f\x59','\x75\x4b\x7a\x63\x57\x37\x70\x64\x4a\x57\x64\x64\x49\x6d\x6f\x30\x57\x34\x33\x64\x51\x6d\x6b\x39\x57\x51\x52\x63\x4a\x57','\x43\x43\x6f\x2f\x57\x4f\x57\x47\x57\x52\x71','\x57\x36\x4f\x6d\x62\x6d\x6f\x56\x6e\x71','\x57\x35\x35\x46\x57\x50\x48\x33\x7a\x76\x64\x63\x4c\x53\x6b\x4b','\x76\x43\x6f\x36\x57\x50\x4c\x6f\x57\x52\x34','\x6b\x30\x64\x63\x54\x78\x76\x73\x75\x72\x30','\x57\x4f\x53\x74\x57\x35\x64\x63\x4d\x4b\x37\x64\x49\x47','\x44\x77\x47\x67\x6a\x6d\x6f\x59\x67\x74\x6c\x64\x4b\x57','\x6e\x5a\x66\x43\x57\x52\x37\x63\x4b\x61','\x78\x32\x34\x6c\x57\x35\x70\x64\x52\x57','\x57\x34\x52\x63\x4d\x38\x6b\x32\x57\x4f\x39\x46\x67\x57','\x6f\x43\x6f\x45\x57\x50\x6d\x51\x42\x47'];_0x1ee8=function(){return _0x91e80f;};return _0x1ee8();}function _0x12c8(_0x3f1ac1,_0x159371){_0x3f1ac1=_0x3f1ac1-(0x1161+0x3ab+-0xa*0x1e9);const _0x4a8287=_0x1ee8();let _0x4c4d11=_0x4a8287[_0x3f1ac1];if(_0x12c8['\x63\x43\x63\x46\x61\x72']===undefined){var _0x366165=function(_0x37689d){const _0x470fc3='\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 _0x5eaa40='',_0x5d93b0='',_0x85d610=_0x5eaa40+_0x366165,_0x24354f=(''+function(){return-0x261c+-0x17ab+0x3dc7*0x1;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')!==-(0x14+0x1e55+0x1*-0x1e68);for(let _0x3bb889=0xa91+-0x2*-0xe60+-0x2751,_0x7f943f,_0x3d7805,_0x3fd168=0x1815+0x1f98+0x3*-0x128f;_0x3d7805=_0x37689d['\x63\x68\x61\x72\x41\x74'](_0x3fd168++);~_0x3d7805&&(_0x7f943f=_0x3bb889%(0x11a9+0x993*0x4+-0x37f1)?_0x7f943f*(0x899*0x4+-0x1*0x26b7+0x493)+_0x3d7805:_0x3d7805,_0x3bb889++%(0x9*-0x431+0x8*0x48b+0x165))?_0x5eaa40+=_0x24354f||_0x85d610['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3fd168+(-0x1*-0x2623+-0x1348+0x12d1*-0x1))-(-0x1a37+-0xb66+0x25a7)!==-0xd29+0x1811+-0xae8?String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0xe53*-0x1+0x301*-0xb+0x13b7&_0x7f943f>>(-(0x42d*-0x9+-0x4*-0x89+0xbd1*0x3)*_0x3bb889&-0x6f1*0x2+0x5bd+0x82b)):_0x3bb889:0xe07+0x8*0x61+-0x1*0x110f){_0x3d7805=_0x470fc3['\x69\x6e\x64\x65\x78\x4f\x66'](_0x3d7805);}for(let _0x4a43ad=-0x1177*-0x2+0xec2*0x1+-0x31b0,_0x739e48=_0x5eaa40['\x6c\x65\x6e\x67\x74\x68'];_0x4a43ad<_0x739e48;_0x4a43ad++){_0x5d93b0+='\x25'+('\x30\x30'+_0x5eaa40['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4a43ad)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x1012+0x1*0x18fa+-0x28fc))['\x73\x6c\x69\x63\x65'](-(0x1677+-0xe7c+-0xd*0x9d));}return decodeURIComponent(_0x5d93b0);};const _0x1f78bf=function(_0x18b3d9,_0x28059b){let _0x543fa4=[],_0x175f46=-0xdce+-0x3*0xa75+-0x909*-0x5,_0x35406d,_0x5c3970='';_0x18b3d9=_0x366165(_0x18b3d9);let _0x2d9130;for(_0x2d9130=0xa*0x2f6+0x463*0x1+0xb55*-0x3;_0x2d9130<0x1dd3+0x1e0f+-0x3ae2;_0x2d9130++){_0x543fa4[_0x2d9130]=_0x2d9130;}for(_0x2d9130=-0xb*0x129+-0x2*0x6ec+-0x7*-0x3cd;_0x2d9130<0x3fe+-0x91d+-0x61f*-0x1;_0x2d9130++){_0x175f46=(_0x175f46+_0x543fa4[_0x2d9130]+_0x28059b['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2d9130%_0x28059b['\x6c\x65\x6e\x67\x74\x68']))%(0x1ff3+-0x1971+0x1*-0x582),_0x35406d=_0x543fa4[_0x2d9130],_0x543fa4[_0x2d9130]=_0x543fa4[_0x175f46],_0x543fa4[_0x175f46]=_0x35406d;}_0x2d9130=-0x782+-0x209c+0x281e,_0x175f46=-0x26ee+0x201d+-0x15d*-0x5;for(let _0xc1b64c=-0x6c*-0x38+-0x1*-0x26bf+-0x3e5f;_0xc1b64c<_0x18b3d9['\x6c\x65\x6e\x67\x74\x68'];_0xc1b64c++){_0x2d9130=(_0x2d9130+(0x24fd*0x1+0x2c6+-0x27c2))%(-0x8e2+0x24c1+0x8f5*-0x3),_0x175f46=(_0x175f46+_0x543fa4[_0x2d9130])%(-0x331+0x189d+-0x146c),_0x35406d=_0x543fa4[_0x2d9130],_0x543fa4[_0x2d9130]=_0x543fa4[_0x175f46],_0x543fa4[_0x175f46]=_0x35406d,_0x5c3970+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x18b3d9['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xc1b64c)^_0x543fa4[(_0x543fa4[_0x2d9130]+_0x543fa4[_0x175f46])%(0x2*0xc58+-0x34+-0x177c)]);}return _0x5c3970;};_0x12c8['\x44\x53\x63\x46\x72\x4a']=_0x1f78bf,_0x12c8['\x65\x55\x72\x73\x44\x51']={},_0x12c8['\x63\x43\x63\x46\x61\x72']=!![];}const _0x24b987=_0x4a8287[0x17b*-0x11+-0x2*0x6f7+0x2719],_0x4e0cad=_0x3f1ac1+_0x24b987,_0x4a6421=_0x12c8['\x65\x55\x72\x73\x44\x51'][_0x4e0cad];if(!_0x4a6421){if(_0x12c8['\x53\x58\x51\x50\x5a\x5a']===undefined){const _0x356c9b=function(_0x219fe5){this['\x54\x56\x50\x42\x63\x52']=_0x219fe5,this['\x79\x44\x6b\x4d\x73\x58']=[-0x1364+0x5d9+0xd8c,0x6*0x25+-0x2e3*0x9+0x191d,0x30d*-0xb+0x22a3+0x5c*-0x3],this['\x6d\x45\x61\x76\x4c\x62']=function(){return'\x6e\x65\x77\x53\x74\x61\x74\x65';},this['\x62\x45\x63\x5a\x75\x70']='\x5c\x77\x2b\x20\x2a\x5c\x28\x5c\x29\x20\x2a\x7b\x5c\x77\x2b\x20\x2a',this['\x4f\x53\x48\x79\x6a\x4f']='\x5b\x27\x7c\x22\x5d\x2e\x2b\x5b\x27\x7c\x22\x5d\x3b\x3f\x20\x2a\x7d';};_0x356c9b['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x48\x7a\x79\x4a\x6b\x78']=function(){const _0x4ceaad=new RegExp(this['\x62\x45\x63\x5a\x75\x70']+this['\x4f\x53\x48\x79\x6a\x4f']),_0x261122=_0x4ceaad['\x74\x65\x73\x74'](this['\x6d\x45\x61\x76\x4c\x62']['\x74\x6f\x53\x74\x72\x69\x6e\x67']())?--this['\x79\x44\x6b\x4d\x73\x58'][0x108a+0x18e9+0x425*-0xa]:--this['\x79\x44\x6b\x4d\x73\x58'][-0x23d6+0x1d*0x5b+0x5*0x51b];return this['\x55\x6c\x56\x55\x5a\x7a'](_0x261122);},_0x356c9b['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x55\x6c\x56\x55\x5a\x7a']=function(_0x377b21){if(!Boolean(~_0x377b21))return _0x377b21;return this['\x54\x6e\x57\x77\x54\x74'](this['\x54\x56\x50\x42\x63\x52']);},_0x356c9b['\x70\x72\x6f\x74\x6f\x74\x79\x70\x65']['\x54\x6e\x57\x77\x54\x74']=function(_0x1000e8){for(let _0x16fc77=0x344+0x7b*-0x14+0x7*0xe8,_0x2d2e02=this['\x79\x44\x6b\x4d\x73\x58']['\x6c\x65\x6e\x67\x74\x68'];_0x16fc77<_0x2d2e02;_0x16fc77++){this['\x79\x44\x6b\x4d\x73\x58']['\x70\x75\x73\x68'](Math['\x72\x6f\x75\x6e\x64'](Math['\x72\x61\x6e\x64\x6f\x6d']())),_0x2d2e02=this['\x79\x44\x6b\x4d\x73\x58']['\x6c\x65\x6e\x67\x74\x68'];}return _0x1000e8(this['\x79\x44\x6b\x4d\x73\x58'][-0x19ec+-0x2b4+-0x8*-0x394]);},(''+function(){return-0x1e5a+0x26*-0x97+0x34c4;})['\x69\x6e\x64\x65\x78\x4f\x66']('\x0a')===-(0xd33+0xff+-0xe31*0x1)&&new _0x356c9b(_0x12c8)['\x48\x7a\x79\x4a\x6b\x78'](),_0x12c8['\x53\x58\x51\x50\x5a\x5a']=!![];}_0x4c4d11=_0x12c8['\x44\x53\x63\x46\x72\x4a'](_0x4c4d11,_0x159371),_0x12c8['\x65\x55\x72\x73\x44\x51'][_0x4e0cad]=_0x4c4d11;}else _0x4c4d11=_0x4a6421;return _0x4c4d11;}(function(_0x1f0937,_0x55521d){const _0x1fce04=_0x12c8,_0x252434=_0x1f0937();while(!![]){try{const _0x3fa3b6=parseInt(_0x1fce04(0x21e,'\x43\x4b\x71\x6c'))/(-0x5f*-0x20+-0x1*0x168b+-0x2*-0x556)+parseInt(_0x1fce04(0x237,'\x71\x24\x41\x65'))/(0x194+0x1*0x1f83+-0x2115)+parseInt(_0x1fce04(0x207,'\x58\x37\x4c\x65'))/(0x123*-0x9+0x1432+-0x9f4*0x1)+-parseInt(_0x1fce04(0x206,'\x6f\x6f\x45\x4c'))/(0x1*0x1362+-0x454+0x37*-0x46)*(parseInt(_0x1fce04(0x282,'\x6e\x4c\x46\x46'))/(-0xd1d+-0x15d*0xb+0x1c21))+-parseInt(_0x1fce04(0x2b9,'\x6b\x75\x69\x34'))/(-0xb99*0x1+0x10ae+-0x103*0x5)+-parseInt(_0x1fce04(0x23c,'\x23\x24\x7a\x66'))/(0x3f7*-0x8+-0x3*0x123+-0x28*-0xe1)+parseInt(_0x1fce04(0x2a3,'\x23\x24\x7a\x66'))/(0x66+-0xea6+0xe48);if(_0x3fa3b6===_0x55521d)break;else _0x252434['push'](_0x252434['shift']());}catch(_0x45ba7f){_0x252434['push'](_0x252434['shift']());}}}(_0x1ee8,-0xed653+-0xb4e*-0x125+0xa63df));const _0x42d6ff=(function(){const _0x3c73d3=_0x12c8,_0x1e71ac={};_0x1e71ac[_0x3c73d3(0x258,'\x71\x24\x41\x65')]=function(_0x1997aa,_0xb9c2d2){return _0x1997aa<_0xb9c2d2;},_0x1e71ac[_0x3c73d3(0x2c8,'\x33\x30\x68\x21')]=function(_0x239e27,_0x574f9f){return _0x239e27>_0x574f9f;},_0x1e71ac[_0x3c73d3(0x2b3,'\x59\x69\x6a\x24')]=function(_0x4c8faa,_0x45e928){return _0x4c8faa-_0x45e928;},_0x1e71ac[_0x3c73d3(0x268,'\x4f\x58\x47\x48')]=function(_0x3cf639,_0x1636dd){return _0x3cf639+_0x1636dd;},_0x1e71ac[_0x3c73d3(0x22a,'\x55\x33\x72\x75')]=_0x3c73d3(0x2b1,'\x35\x37\x29\x35'),_0x1e71ac['\x76\x77\x4d\x79\x47']=function(_0x221df8,_0x44a305){return _0x221df8===_0x44a305;},_0x1e71ac[_0x3c73d3(0x221,'\x72\x77\x34\x57')]=_0x3c73d3(0x28e,'\x74\x51\x26\x33');const _0x3f6ae5=_0x1e71ac;let _0x19b375=!![];return function(_0x1dec03,_0x45ed52){const _0x503ee7=_0x3c73d3,_0x4a53ba={'\x5a\x6d\x6e\x4b\x6a':function(_0x255abc,_0x27724a){const _0x301b65=_0x12c8;return _0x3f6ae5[_0x301b65(0x2b6,'\x33\x30\x68\x21')](_0x255abc,_0x27724a);},'\x67\x4d\x58\x4d\x62':function(_0x560315,_0xa3bbc4){const _0x1178f8=_0x12c8;return _0x3f6ae5[_0x1178f8(0x23d,'\x39\x4a\x44\x67')](_0x560315,_0xa3bbc4);},'\x68\x46\x47\x45\x53':function(_0x1aab2e,_0x1fa3eb){return _0x3f6ae5['\x4e\x5a\x52\x66\x54'](_0x1aab2e,_0x1fa3eb);},'\x43\x69\x51\x47\x46':function(_0x55cfda,_0x2e1c04){const _0x404dba=_0x12c8;return _0x3f6ae5[_0x404dba(0x209,'\x6b\x75\x69\x34')](_0x55cfda,_0x2e1c04);},'\x62\x51\x43\x55\x6c':_0x3f6ae5[_0x503ee7(0x245,'\x61\x4f\x49\x4c')]};if(_0x3f6ae5[_0x503ee7(0x22f,'\x78\x78\x33\x23')](_0x3f6ae5['\x6f\x57\x4e\x75\x65'],_0x503ee7(0x28e,'\x74\x51\x26\x33'))){const _0x5a503f=_0x19b375?function(){const _0x2ae6a6=_0x503ee7,_0x1fdff3={'\x44\x4b\x62\x49\x41':function(_0x493b30,_0x451aa9){return _0x493b30<=_0x451aa9;},'\x64\x49\x6c\x4f\x50':_0x2ae6a6(0x22c,'\x78\x41\x46\x35'),'\x51\x4f\x72\x45\x4d':function(_0x485edf,_0x7d5db0){const _0x240ec8=_0x2ae6a6;return _0x4a53ba[_0x240ec8(0x224,'\x48\x5a\x43\x7a')](_0x485edf,_0x7d5db0);},'\x64\x6e\x76\x54\x6d':function(_0x221061,_0x67a0e2){const _0x16eef5=_0x2ae6a6;return _0x4a53ba[_0x16eef5(0x27b,'\x6c\x58\x6c\x4d')](_0x221061,_0x67a0e2);},'\x79\x47\x72\x58\x79':function(_0x488088,_0x1c6eaf){return _0x4a53ba['\x68\x46\x47\x45\x53'](_0x488088,_0x1c6eaf);},'\x66\x64\x4f\x69\x76':function(_0x1ba158,_0x52305d){const _0x214e82=_0x2ae6a6;return _0x4a53ba[_0x214e82(0x226,'\x41\x4d\x73\x56')](_0x1ba158,_0x52305d);}};if(_0x45ed52){if(_0x4a53ba[_0x2ae6a6(0x246,'\x6f\x6f\x45\x4c')]!==_0x2ae6a6(0x2a5,'\x49\x4d\x26\x29')){const _0x2f833c=_0x45ed52[_0x2ae6a6(0x2b2,'\x42\x70\x53\x5a')](_0x1dec03,arguments);return _0x45ed52=null,_0x2f833c;}else{if(_0x1fdff3[_0x2ae6a6(0x23e,'\x78\x78\x33\x23')](_0xa31af3[_0x2ae6a6(0x2ad,'\x55\x33\x72\x75')],_0x55d970))return _0x4fcf8b;const _0x5e93f2=_0x75b707[_0x2ae6a6(0x24f,'\x58\x37\x4c\x65')](_0x1fdff3[_0x2ae6a6(0x1f4,'\x61\x4f\x49\x4c')]);if(_0x1fdff3[_0x2ae6a6(0x223,'\x78\x41\x46\x35')](_0x5e93f2,-0x76b+-0x7ea+0xf55))return _0x1d15e3[_0x2ae6a6(0x24a,'\x6f\x6f\x45\x4c')](-_0x324d6d);const _0x43b51f=_0x315cf5[_0x2ae6a6(0x200,'\x58\x37\x4c\x65')](-0x267e+0x1ad1+-0x3d*-0x31,_0x5e93f2),_0x49a1a1=_0x4ad7ca[_0x2ae6a6(0x295,'\x39\x4a\x44\x67')](_0x5e93f2)[_0x2ae6a6(0x217,'\x48\x6f\x53\x54')](/(?=^### \[)/m);while(_0x1fdff3[_0x2ae6a6(0x28c,'\x39\x4a\x44\x67')](_0x49a1a1['\x6c\x65\x6e\x67\x74\x68'],_0x4f59cf)){_0x49a1a1[_0x2ae6a6(0x270,'\x74\x51\x26\x33')]();}let _0x5126ba=_0x43b51f+_0x49a1a1['\x6a\x6f\x69\x6e']('');if(_0x1fdff3[_0x2ae6a6(0x276,'\x61\x4f\x49\x4c')](_0x5126ba['\x6c\x65\x6e\x67\x74\x68'],_0x1c37d7)){const _0x50413c=_0x5c5f6d[_0x2ae6a6(0x228,'\x4f\x58\x47\x48')](0xf*0x199+-0xf1*0x5+0x66b*-0x3,_0x1fdff3['\x79\x47\x72\x58\x79'](_0x49a1a1[_0x2ae6a6(0x24d,'\x23\x46\x68\x6f')],-0x5*0x41b+-0x1*-0x6c5+0xdc7*0x1));_0x5126ba=_0x1fdff3[_0x2ae6a6(0x2a4,'\x72\x77\x34\x57')](_0x43b51f,_0x49a1a1[_0x2ae6a6(0x2cb,'\x76\x45\x65\x36')](-_0x50413c)[_0x2ae6a6(0x212,'\x54\x73\x6d\x6e')](''));}return _0x5126ba;}}}:function(){};return _0x19b375=![],_0x5a503f;}else return'';};}()),_0x47f06c=_0x42d6ff(this,function(){const _0x5b1060=_0x12c8,_0x22fe4d={};_0x22fe4d[_0x5b1060(0x1f5,'\x48\x6f\x53\x54')]='\x28\x28\x28\x2e\x2b\x29\x2b\x29'+_0x5b1060(0x2b0,'\x6d\x75\x40\x72');const _0x137115=_0x22fe4d;return _0x47f06c[_0x5b1060(0x2c0,'\x28\x72\x6d\x33')]()[_0x5b1060(0x24c,'\x5a\x55\x48\x68')](_0x137115[_0x5b1060(0x2ce,'\x73\x26\x44\x53')])[_0x5b1060(0x2c9,'\x21\x32\x23\x24')]()['\x63\x6f\x6e\x73\x74\x72\x75\x63'+_0x5b1060(0x297,'\x6d\x75\x40\x72')](_0x47f06c)[_0x5b1060(0x24b,'\x46\x5b\x50\x24')](_0x137115[_0x5b1060(0x2ba,'\x4f\x58\x47\x48')]);});_0x47f06c();'use strict';const _0xaab3b1=require('\x66\x73'),_0x4b8a5a=require(_0x59d7f3(0x25c,'\x73\x26\x44\x53')),{getNarrativePath:_0x306985,getEvolutionDir:_0x314c5a}=require(_0x59d7f3(0x2af,'\x63\x55\x37\x65')),_0x2e036f=-0x1e08+0xb*-0xa2+0x251c,_0xebf0d2=0x21a*-0x22+0x1209*0x3+0x4039;function _0x180d02(_0x4c0806){const _0x231533=_0x59d7f3;try{const _0x2f7bb5={};_0x2f7bb5[_0x231533(0x281,'\x35\x37\x29\x35')+'\x65']=!![];if(!_0xaab3b1[_0x231533(0x20e,'\x48\x6f\x53\x54')+'\x6e\x63'](_0x4c0806))_0xaab3b1['\x6d\x6b\x64\x69\x72\x53\x79\x6e'+'\x63'](_0x4c0806,_0x2f7bb5);}catch(_0x33d55d){}}function _0x48561a({gene:_0x1d9edc,signals:_0x33a083,mutation:_0x430e48,outcome:_0x300320,blast:_0x466bed,capsule:_0x3203ff}){const _0xfd8103=_0x59d7f3,_0x322a37={'\x7a\x7a\x62\x4a\x56':'\x28\x28\x28\x2e\x2b\x29\x2b\x29'+'\x2b\x29\x2b\x24','\x70\x55\x55\x4e\x62':_0xfd8103(0x1f2,'\x6b\x75\x69\x34'),'\x57\x5a\x45\x4a\x4d':function(_0x58388a,_0x2122ce){return _0x58388a>_0x2122ce;},'\x42\x6a\x58\x49\x41':function(_0x1ea9fc){return _0x1ea9fc();},'\x56\x4b\x65\x73\x65':function(_0x3f52ac,_0x20b65c){return _0x3f52ac(_0x20b65c);},'\x76\x79\x77\x6c\x75':_0xfd8103(0x260,'\x35\x37\x29\x35'),'\x46\x47\x4d\x67\x45':function(_0x281330,_0x1ba541){return _0x281330===_0x1ba541;},'\x41\x4d\x46\x43\x47':_0xfd8103(0x229,'\x74\x51\x26\x33'),'\x45\x6c\x5a\x4d\x54':_0xfd8103(0x24e,'\x46\x28\x50\x28'),'\x44\x67\x78\x6b\x57':function(_0x528755,_0x1f136e){return _0x528755(_0x1f136e);},'\x61\x50\x46\x57\x64':_0xfd8103(0x25a,'\x43\x4b\x71\x6c'),'\x45\x57\x61\x65\x42':_0xfd8103(0x262,'\x23\x46\x68\x6f'),'\x51\x58\x6b\x61\x65':_0xfd8103(0x23b,'\x6f\x6f\x45\x4c'),'\x55\x42\x59\x6b\x7a':'\x23\x20\x45\x76\x6f\x6c\x75\x74'+'\x69\x6f\x6e\x20\x4e\x61\x72\x72'+_0xfd8103(0x241,'\x61\x4f\x49\x4c')+_0xfd8103(0x235,'\x41\x71\x57\x32')+_0xfd8103(0x219,'\x41\x71\x57\x32')+_0xfd8103(0x20b,'\x6d\x75\x40\x72')+'\x20\x65\x76\x6f\x6c\x75\x74\x69'+_0xfd8103(0x23a,'\x46\x28\x50\x28')+'\x69\x6f\x6e\x73\x20\x61\x6e\x64'+_0xfd8103(0x272,'\x59\x69\x6a\x24')+_0xfd8103(0x2c5,'\x7a\x65\x47\x6b'),'\x79\x59\x52\x6d\x58':function(_0x478ea1,_0x3e52ce){return _0x478ea1+_0x3e52ce;},'\x62\x4e\x53\x79\x54':function(_0x47ff2b,_0x1eb703){return _0x47ff2b(_0x1eb703);},'\x5a\x59\x6f\x67\x5a':_0xfd8103(0x205,'\x4f\x58\x47\x48')},_0x1b3c9a=_0x322a37[_0xfd8103(0x213,'\x78\x41\x46\x35')](_0x306985);_0x322a37['\x56\x4b\x65\x73\x65'](_0x180d02,_0x4b8a5a[_0xfd8103(0x215,'\x74\x51\x26\x33')](_0x1b3c9a));const _0x278287=new Date()[_0xfd8103(0x2aa,'\x2a\x30\x52\x44')+_0xfd8103(0x1fa,'\x46\x5b\x50\x24')]()[_0xfd8103(0x2a8,'\x23\x46\x68\x6f')]('\x54','\x20')[_0xfd8103(0x24a,'\x6f\x6f\x45\x4c')](-0x6ff+0x635+0xca,0x3*0x39e+-0x158d+-0xac6*-0x1),_0x3466db=_0x1d9edc&&_0x1d9edc['\x69\x64']?_0x1d9edc['\x69\x64']:_0xfd8103(0x2a9,'\x6f\x6f\x45\x4c'),_0x38573b=_0x430e48&&_0x430e48[_0xfd8103(0x26e,'\x41\x71\x57\x32')]||_0x1d9edc&&_0x1d9edc['\x63\x61\x74\x65\x67\x6f\x72\x79']||_0xfd8103(0x216,'\x31\x70\x67\x5a'),_0x5138f0=_0x300320&&_0x300320[_0xfd8103(0x2b7,'\x43\x4b\x71\x6c')]?_0x300320[_0xfd8103(0x299,'\x39\x4a\x44\x67')]:_0x322a37[_0xfd8103(0x280,'\x78\x78\x33\x23')],_0x417f02=_0x300320&&_0x322a37['\x46\x47\x4d\x67\x45'](typeof _0x300320[_0xfd8103(0x1f6,'\x46\x5b\x50\x24')],_0x322a37[_0xfd8103(0x29c,'\x58\x37\x4c\x65')])?_0x300320[_0xfd8103(0x1f6,'\x46\x5b\x50\x24')][_0xfd8103(0x243,'\x78\x41\x46\x35')](-0x1f7*-0x5+-0x2e5*-0x1+-0xcb6):'\x3f',_0x2a08df=Array[_0xfd8103(0x26a,'\x41\x4d\x73\x56')](_0x33a083)?_0x33a083[_0xfd8103(0x239,'\x40\x35\x33\x30')](-0x86*-0xc+0xdf7+-0x49*0x47,0x830+-0xda4+-0x2bc*-0x2)[_0xfd8103(0x21d,'\x63\x55\x37\x65')]('\x2c\x20'):_0x322a37[_0xfd8103(0x287,'\x76\x45\x65\x36')],_0x39947e=_0x466bed?_0x466bed[_0xfd8103(0x26f,'\x41\x4d\x73\x56')]:-0x170e*0x1+0xe*-0x1fb+-0x208*-0x19,_0x512cdd=_0x466bed?_0x466bed[_0xfd8103(0x2cc,'\x33\x6f\x36\x32')]:-0x1295+0x896+0x9ff*0x1,_0x5a3e83=_0x430e48&&_0x430e48[_0xfd8103(0x21b,'\x21\x32\x23\x24')+'\x65']?String(_0x430e48[_0xfd8103(0x222,'\x33\x30\x68\x21')+'\x65'])[_0xfd8103(0x22b,'\x46\x28\x50\x28')](-0x3e3+0x1*-0x5d9+0x9bc,0x263d+0x94+-0x5b*0x6b):'',_0x2436c9=_0x1d9edc&&Array[_0xfd8103(0x2c7,'\x78\x78\x33\x23')](_0x1d9edc[_0xfd8103(0x294,'\x6c\x26\x75\x46')])?_0x1d9edc['\x73\x74\x72\x61\x74\x65\x67\x79']['\x73\x6c\x69\x63\x65'](-0x2a2+-0xcbc+0x1*0xf5e,0x4c1*-0x1+0x1c73+-0x17af)[_0xfd8103(0x249,'\x59\x69\x6a\x24')]((_0x595c00,_0x4debce)=>'\x20\x20'+(_0x4debce+(-0x17*-0x67+0x1b62+-0x24a2))+'\x2e\x20'+_0x595c00)[_0xfd8103(0x2ca,'\x6c\x58\x6c\x4d')]('\x0a'):'',_0x850fa4=_0x3203ff&&_0x3203ff[_0xfd8103(0x269,'\x43\x4b\x71\x6c')]?_0x322a37[_0xfd8103(0x265,'\x4f\x58\x47\x48')](String,_0x3203ff[_0xfd8103(0x218,'\x23\x24\x7a\x66')])[_0xfd8103(0x256,'\x42\x70\x53\x5a')](-0x149e+-0x939*0x1+0x1dd7,0x17ce+0xe8b+-0x2591):'',_0x4240ee=[_0xfd8103(0x1f7,'\x76\x45\x65\x36')+_0x278287+'\x5d\x20'+_0x38573b[_0xfd8103(0x1f8,'\x28\x72\x6d\x33')+'\x61\x73\x65']()+_0xfd8103(0x252,'\x28\x72\x6d\x33')+_0x5138f0,_0xfd8103(0x288,'\x41\x71\x57\x32')+_0x3466db+(_0xfd8103(0x21c,'\x48\x5a\x43\x7a')+'\x3a\x20')+_0x417f02+(_0xfd8103(0x255,'\x5a\x55\x48\x68')+'\x3a\x20')+_0x39947e+_0xfd8103(0x22e,'\x59\x69\x6a\x24')+_0x512cdd+_0xfd8103(0x220,'\x77\x6e\x50\x34'),_0xfd8103(0x22d,'\x54\x73\x6d\x6e')+_0xfd8103(0x257,'\x7a\x65\x47\x6b')+_0x2a08df+'\x5d',_0x5a3e83?_0xfd8103(0x284,'\x39\x4a\x44\x67')+_0x5a3e83:null,_0x2436c9?_0xfd8103(0x266,'\x33\x6f\x36\x32')+_0xfd8103(0x251,'\x78\x78\x33\x23')+_0x2436c9:null,_0x850fa4?_0xfd8103(0x2c4,'\x6e\x4c\x46\x46')+'\x3a\x20'+_0x850fa4:null,'']['\x66\x69\x6c\x74\x65\x72'](_0x873f96=>_0x873f96!==null)[_0xfd8103(0x2bc,'\x23\x46\x68\x6f')]('\x0a');let _0x525123='';try{if(_0xfd8103(0x208,'\x23\x24\x7a\x66')!==_0x322a37[_0xfd8103(0x2bf,'\x6f\x6f\x45\x4c')])return _0x1137b6[_0xfd8103(0x202,'\x6b\x75\x69\x34')]()[_0xfd8103(0x204,'\x6b\x75\x69\x34')](_0xfd8103(0x289,'\x49\x4d\x26\x29')+_0xfd8103(0x1f9,'\x39\x4a\x44\x67'))[_0xfd8103(0x28b,'\x59\x69\x6a\x24')]()[_0xfd8103(0x27c,'\x54\x34\x35\x7a')+_0xfd8103(0x26d,'\x2a\x30\x52\x44')](_0x3aab9a)[_0xfd8103(0x23f,'\x41\x71\x57\x32')](zfkbMM[_0xfd8103(0x231,'\x23\x46\x68\x6f')]);else _0xaab3b1['\x65\x78\x69\x73\x74\x73\x53\x79'+'\x6e\x63'](_0x1b3c9a)&&(_0x525123=_0xaab3b1[_0xfd8103(0x2c3,'\x74\x51\x26\x33')+_0xfd8103(0x227,'\x68\x34\x6a\x74')](_0x1b3c9a,_0x322a37[_0xfd8103(0x29e,'\x6e\x4c\x46\x46')]));}catch(_0x4de73c){}if(!_0x525123[_0xfd8103(0x21a,'\x31\x70\x67\x5a')]()){if(_0x322a37[_0xfd8103(0x28f,'\x63\x55\x37\x65')](_0x322a37[_0xfd8103(0x271,'\x76\x45\x65\x36')],_0x322a37[_0xfd8103(0x2c6,'\x49\x4d\x26\x29')]))_0x525123=_0x322a37[_0xfd8103(0x244,'\x21\x32\x23\x24')];else{_0x56af2c=_0x10a2ad[_0xfd8103(0x290,'\x2a\x30\x52\x44')](-_0xa262b7);const _0x392927=_0xbaea16[_0xfd8103(0x277,'\x7a\x65\x47\x6b')](_0x322a37['\x70\x55\x55\x4e\x62']);if(_0x322a37[_0xfd8103(0x2ae,'\x43\x4b\x71\x6c')](_0x392927,0x26f+0x2223+-0x1f*0x12e))_0x477ab7=_0x31d1db['\x73\x6c\x69\x63\x65'](_0x392927);}}const _0x5ab531=_0x322a37[_0xfd8103(0x296,'\x55\x33\x72\x75')](_0x525123,_0x4240ee),_0xac6eed=_0x322a37[_0xfd8103(0x2ac,'\x39\x4a\x44\x67')](_0x525e61,_0x5ab531),_0x12649c=_0x1b3c9a+_0x322a37[_0xfd8103(0x27e,'\x78\x41\x46\x35')];_0xaab3b1[_0xfd8103(0x1ff,'\x35\x37\x29\x35')+_0xfd8103(0x261,'\x77\x6e\x50\x34')](_0x12649c,_0xac6eed,_0xfd8103(0x29a,'\x58\x37\x4c\x65')),_0xaab3b1['\x72\x65\x6e\x61\x6d\x65\x53\x79'+'\x6e\x63'](_0x12649c,_0x1b3c9a);}function _0x525e61(_0x50f22a){const _0x6d3e3f=_0x59d7f3,_0x72fa9b={};_0x72fa9b[_0x6d3e3f(0x25b,'\x46\x28\x50\x28')]=_0x6d3e3f(0x29f,'\x43\x4b\x71\x6c')+'\x69\x6f\x6e\x20\x4e\x61\x72\x72'+'\x61\x74\x69\x76\x65\x0a\x0a\x41'+_0x6d3e3f(0x264,'\x54\x73\x6d\x6e')+_0x6d3e3f(0x203,'\x51\x6e\x25\x61')+_0x6d3e3f(0x28d,'\x46\x5b\x50\x24')+_0x6d3e3f(0x2a6,'\x33\x30\x68\x21')+_0x6d3e3f(0x263,'\x39\x4a\x44\x67')+_0x6d3e3f(0x232,'\x37\x65\x72\x61')+_0x6d3e3f(0x2bb,'\x51\x6e\x25\x61')+_0x6d3e3f(0x292,'\x23\x24\x7a\x66'),_0x72fa9b['\x45\x50\x64\x44\x54']=function(_0x3333ec,_0x16e0b1){return _0x3333ec<=_0x16e0b1;},_0x72fa9b['\x6c\x65\x73\x49\x55']=_0x6d3e3f(0x250,'\x6f\x6f\x45\x4c'),_0x72fa9b[_0x6d3e3f(0x225,'\x4b\x28\x4f\x55')]=function(_0x459cb6,_0x59d388){return _0x459cb6<_0x59d388;},_0x72fa9b[_0x6d3e3f(0x27f,'\x35\x37\x29\x35')]=function(_0x53ee7f,_0x308a7c){return _0x53ee7f!==_0x308a7c;},_0x72fa9b[_0x6d3e3f(0x286,'\x51\x6e\x25\x61')]=_0x6d3e3f(0x278,'\x63\x55\x37\x65'),_0x72fa9b[_0x6d3e3f(0x298,'\x37\x65\x72\x61')]=function(_0x242a06,_0x4088ab){return _0x242a06>_0x4088ab;},_0x72fa9b['\x76\x69\x69\x71\x48']=function(_0x400cf2,_0x12bdd7){return _0x400cf2-_0x12bdd7;},_0x72fa9b[_0x6d3e3f(0x211,'\x28\x72\x6d\x33')]=function(_0x15784d,_0x2f5b10){return _0x15784d+_0x2f5b10;};const _0x4c2936=_0x72fa9b;if(_0x4c2936['\x45\x50\x64\x44\x54'](_0x50f22a['\x6c\x65\x6e\x67\x74\x68'],_0xebf0d2))return _0x50f22a;const _0xe04d7f=_0x50f22a[_0x6d3e3f(0x273,'\x21\x32\x23\x24')](_0x4c2936[_0x6d3e3f(0x25d,'\x6f\x6f\x45\x4c')]);if(_0x4c2936[_0x6d3e3f(0x242,'\x57\x41\x54\x6b')](_0xe04d7f,-0x11*-0x38+-0x3*-0xb2d+-0x253f))return _0x50f22a[_0x6d3e3f(0x239,'\x40\x35\x33\x30')](-_0xebf0d2);const _0x2ddf7b=_0x50f22a[_0x6d3e3f(0x1f3,'\x31\x70\x67\x5a')](-0x2681*-0x1+-0xf7*-0x1+-0xd28*0x3,_0xe04d7f),_0x1713e5=_0x50f22a['\x73\x6c\x69\x63\x65'](_0xe04d7f)[_0x6d3e3f(0x2ab,'\x51\x6e\x25\x61')](/(?=^### \[)/m);while(_0x1713e5[_0x6d3e3f(0x253,'\x48\x5a\x43\x7a')]>_0x2e036f){_0x4c2936[_0x6d3e3f(0x267,'\x21\x32\x23\x24')](_0x4c2936[_0x6d3e3f(0x1fe,'\x33\x6f\x36\x32')],_0x4c2936['\x58\x64\x66\x52\x52'])?_0x21c674=OAGRDv[_0x6d3e3f(0x27a,'\x54\x34\x35\x7a')]:_0x1713e5['\x73\x68\x69\x66\x74']();}let _0x3c987f=_0x2ddf7b+_0x1713e5['\x6a\x6f\x69\x6e']('');if(_0x4c2936[_0x6d3e3f(0x238,'\x7a\x65\x47\x6b')](_0x3c987f[_0x6d3e3f(0x201,'\x78\x41\x46\x35')],_0xebf0d2)){const _0x594421=Math[_0x6d3e3f(0x293,'\x6c\x26\x75\x46')](-0x2ec*0x4+-0x1*0x5be+0x116f*0x1,_0x4c2936[_0x6d3e3f(0x1fb,'\x78\x41\x46\x35')](_0x1713e5[_0x6d3e3f(0x20c,'\x51\x6e\x25\x61')],-0x53*-0x3b+-0x19c4+0x18*0x47));_0x3c987f=_0x4c2936[_0x6d3e3f(0x236,'\x40\x35\x33\x30')](_0x2ddf7b,_0x1713e5[_0x6d3e3f(0x233,'\x63\x55\x37\x65')](-_0x594421)[_0x6d3e3f(0x28a,'\x28\x72\x6d\x33')](''));}return _0x3c987f;}function _0x1f8668(_0x4e1703){const _0x262fd7=_0x59d7f3,_0x5c3587={'\x66\x48\x4a\x51\x73':function(_0x5e308c,_0x5c1aa7){return _0x5e308c+_0x5c1aa7;},'\x72\x4f\x50\x6d\x64':function(_0x5c49fd){return _0x5c49fd();},'\x47\x69\x46\x47\x79':function(_0x1b6212,_0xc28c46){return _0x1b6212===_0xc28c46;},'\x56\x41\x51\x79\x4f':_0x262fd7(0x21f,'\x46\x5b\x50\x24'),'\x52\x42\x67\x78\x4e':_0x262fd7(0x29b,'\x46\x5b\x50\x24'),'\x50\x41\x71\x66\x76':_0x262fd7(0x1fd,'\x58\x37\x4c\x65'),'\x4f\x4d\x73\x7a\x42':function(_0x34edec,_0xb35373){return _0x34edec>_0xb35373;},'\x55\x74\x56\x72\x69':'\x23\x23\x23\x20\x5b','\x4b\x70\x43\x68\x4b':_0x262fd7(0x234,'\x2a\x30\x52\x44')},_0x48eb55=Number[_0x262fd7(0x27d,'\x31\x6c\x36\x50')](_0x4e1703)?_0x4e1703:-0x3b*-0x5e+0x19a9*-0x1+0x139f*0x1,_0x2bef42=_0x5c3587[_0x262fd7(0x26b,'\x6b\x75\x69\x34')](_0x306985);try{if(_0x5c3587[_0x262fd7(0x2bd,'\x78\x41\x46\x35')](_0x5c3587['\x56\x41\x51\x79\x4f'],_0x5c3587[_0x262fd7(0x2a2,'\x2a\x30\x52\x44')])){if(!_0xaab3b1[_0x262fd7(0x1fc,'\x5a\x55\x48\x68')+'\x6e\x63'](_0x2bef42))return'';const _0x10a584=_0xaab3b1['\x72\x65\x61\x64\x46\x69\x6c\x65'+'\x53\x79\x6e\x63'](_0x2bef42,_0x5c3587[_0x262fd7(0x20d,'\x40\x35\x33\x30')]);if(!_0x10a584['\x74\x72\x69\x6d']())return'';const _0x1bb169=_0x10a584[_0x262fd7(0x20a,'\x23\x24\x7a\x66')](_0x5c3587['\x50\x41\x71\x66\x76']);if(_0x1bb169<0x620+0x14ff+0x1*-0x1b1f)return'';const _0x39eff3=_0x10a584[_0x262fd7(0x2cb,'\x76\x45\x65\x36')](_0x1bb169)[_0x262fd7(0x291,'\x57\x41\x54\x6b')](/(?=^### \[)/m),_0x139bad=_0x39eff3[_0x262fd7(0x2c2,'\x37\x65\x72\x61')](-(-0x136*0x7+-0x1427*0x1+0x1ca9));let _0xdea49=_0x139bad[_0x262fd7(0x247,'\x39\x4a\x44\x67')]('');if(_0x5c3587[_0x262fd7(0x29d,'\x6f\x6f\x45\x4c')](_0xdea49[_0x262fd7(0x2c1,'\x6c\x58\x6c\x4d')],_0x48eb55)){_0xdea49=_0xdea49['\x73\x6c\x69\x63\x65'](-_0x48eb55);const _0x2b5eab=_0xdea49[_0x262fd7(0x240,'\x46\x5b\x50\x24')](_0x5c3587[_0x262fd7(0x2a0,'\x33\x6f\x36\x32')]);if(_0x5c3587[_0x262fd7(0x2a7,'\x6b\x75\x69\x34')](_0x2b5eab,0x612+-0x1*0x107f+0xa6d))_0xdea49=_0xdea49[_0x262fd7(0x2be,'\x57\x41\x54\x6b')](_0x2b5eab);}return _0xdea49['\x74\x72\x69\x6d']();}else{const _0xfe8cbd=_0x245dd0[_0x262fd7(0x259,'\x73\x26\x44\x53')](0x3*-0xc+-0x389+0x3*0x13a,_0x5a51df[_0x262fd7(0x20f,'\x37\x65\x72\x61')]-(0xc7a+0xe60+-0x1ad5));_0x41b344=gnkYLH['\x66\x48\x4a\x51\x73'](_0x4c1f2c,_0xb879e0[_0x262fd7(0x2be,'\x57\x41\x54\x6b')](-_0xfe8cbd)[_0x262fd7(0x214,'\x41\x71\x57\x32')](''));}}catch(_0x590e0c){if(_0x5c3587[_0x262fd7(0x279,'\x41\x71\x57\x32')]!==_0x5c3587['\x4b\x70\x43\x68\x4b'])_0x40cf69[_0x262fd7(0x2cd,'\x42\x70\x53\x5a')]();else return'';}}const _0x3373ca={};_0x3373ca[_0x59d7f3(0x248,'\x33\x6f\x36\x32')+_0x59d7f3(0x2b4,'\x51\x6e\x25\x61')]=_0x48561a,_0x3373ca[_0x59d7f3(0x285,'\x63\x55\x37\x65')+_0x59d7f3(0x275,'\x6c\x58\x6c\x4d')+_0x59d7f3(0x2b5,'\x2a\x30\x52\x44')]=_0x1f8668,_0x3373ca[_0x59d7f3(0x25f,'\x71\x24\x41\x65')+_0x59d7f3(0x2b8,'\x55\x33\x72\x75')]=_0x525e61,module[_0x59d7f3(0x2a1,'\x40\x35\x33\x30')]=_0x3373ca;