@evomap/evolver-core 2.0.0 → 2.0.2

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 (91) hide show
  1. package/dist/algo/antiDistill.js +1 -167
  2. package/dist/algo/bans.js +1 -33
  3. package/dist/algo/candidateAssembly.js +1 -273
  4. package/dist/algo/capabilityCandidates.js +1 -146
  5. package/dist/algo/confidence.js +1 -196
  6. package/dist/algo/conversationSniffer.js +1 -149
  7. package/dist/algo/cycleEngine.js +1 -625
  8. package/dist/algo/cycleFailureClassifier.js +1 -112
  9. package/dist/algo/epigenetics.js +1 -41
  10. package/dist/algo/evolutionEvent.js +1 -24
  11. package/dist/algo/exploration.js +1 -68
  12. package/dist/algo/geneHealth.js +1 -17
  13. package/dist/algo/geneIntake.js +1 -128
  14. package/dist/algo/genePromotion.js +1 -53
  15. package/dist/algo/geneSelection.js +1 -546
  16. package/dist/algo/index.js +1 -22
  17. package/dist/algo/memoryGraph.js +1 -86
  18. package/dist/algo/mutation.js +1 -22
  19. package/dist/algo/orchestrator.js +1 -87
  20. package/dist/algo/publishEligibility.js +1 -52
  21. package/dist/algo/solidify.js +1 -63
  22. package/dist/algo/strategyPresets.js +1 -61
  23. package/dist/algo/ucb1.js +1 -156
  24. package/dist/benchmark/antiGeneBenchmark.js +1 -252
  25. package/dist/benchmark/antiGeneImpact.js +1 -34
  26. package/dist/benchmark/antiGeneRollout.js +1 -269
  27. package/dist/benchmark/benchmark.js +1 -26
  28. package/dist/benchmark/evolutionThesisSolver.js +1 -41
  29. package/dist/benchmark/index.js +1 -7
  30. package/dist/benchmark/selectionFlatAbstention.js +1 -481
  31. package/dist/benchmark/thesis.js +1 -150
  32. package/dist/benchmark/triggerShift.js +1 -106
  33. package/dist/cycle/cycleTimeline.js +1 -74
  34. package/dist/cycle/index.js +1 -2
  35. package/dist/cycle/stateMachine.js +1 -25
  36. package/dist/hub/agentDirectory.js +1 -104
  37. package/dist/hub/assetCallLog.js +1 -195
  38. package/dist/hub/bindings.js +1 -121
  39. package/dist/hub/capability.js +1 -1
  40. package/dist/hub/conversationDistiller.js +1 -264
  41. package/dist/hub/fake.js +1 -70
  42. package/dist/hub/hubReview.js +1 -106
  43. package/dist/hub/index.js +1 -11
  44. package/dist/hub/ingest.js +1 -15
  45. package/dist/hub/questionGenerator.js +1 -408
  46. package/dist/hub/reuseDecision.js +1 -127
  47. package/dist/hub/sanitize.js +1 -322
  48. package/dist/material/boundary.js +1 -14
  49. package/dist/material/consumer.js +1 -55
  50. package/dist/material/emit.js +1 -52
  51. package/dist/material/factory.js +1 -25
  52. package/dist/material/index.js +1 -9
  53. package/dist/material/materialArchive.js +1 -466
  54. package/dist/material/materialStore.js +1 -69
  55. package/dist/material/sampling.js +1 -39
  56. package/dist/material/sources.js +1 -33
  57. package/dist/material/watermark.js +1 -76
  58. package/dist/personality/drift.js +1 -106
  59. package/dist/personality/events.js +1 -37
  60. package/dist/personality/evolveOps.js +1 -93
  61. package/dist/personality/index.js +1 -11
  62. package/dist/personality/mutate.js +1 -39
  63. package/dist/personality/pivot.js +1 -22
  64. package/dist/personality/prompt.js +1 -62
  65. package/dist/personality/riskGate.js +1 -80
  66. package/dist/personality/schema.js +1 -119
  67. package/dist/personality/select.js +1 -71
  68. package/dist/personality/stats.js +1 -82
  69. package/dist/personality/store.js +1 -92
  70. package/dist/schema/common.js +1 -17
  71. package/dist/schema/evolutionGraph.js +1 -187
  72. package/dist/schema/index.js +1 -6
  73. package/dist/schema/material.js +1 -50
  74. package/dist/schema/problem.js +1 -45
  75. package/dist/schema/proofOfWork.js +1 -9
  76. package/dist/schema/signal.js +1 -19
  77. package/dist/signals/curriculum.js +1 -202
  78. package/dist/signals/cycleHistoryFromEvents.js +1 -105
  79. package/dist/signals/expand.js +1 -293
  80. package/dist/signals/extractor.js +1 -82
  81. package/dist/signals/index.js +1 -8
  82. package/dist/signals/metaSignals.js +1 -200
  83. package/dist/signals/signalGate.js +1 -40
  84. package/dist/signals/taskDomain.js +1 -43
  85. package/dist/signals/traceSignals.js +1 -123
  86. package/dist/strategy/constraintAblation.js +1 -2820
  87. package/dist/strategy/constraintAblationPredicates.js +1 -339
  88. package/dist/strategy/experiment.js +1 -63
  89. package/dist/strategy/index.js +1 -3
  90. package/dist/strategy/strategyPoint.js +1 -23
  91. package/package.json +1 -1
@@ -1,546 +1 @@
1
- import { StrategyPoint } from '../strategy/strategyPoint.js';
2
- import { geneHealthScore, HEALTH_WEIGHTS_VERSION } from './geneHealth.js';
3
- import { bagCosine, buildSemanticIdfProfile, geneTags, idfBagCosine, idfTagOverlapScore, tagOverlapScore, } from '../signals/expand.js';
4
- import { driftSelect, explorationWindowSize } from './exploration.js';
5
- import { isDistilledGeneId } from './geneIntake.js';
6
- import { chooseUcb1Arm, ucb1StatsForCandidate, UCB1_REWARD_POLICY_VERSION, UCB1_SELECTION_POLICY_VERSION, } from './ucb1.js';
7
- import { resolveTaskDomainSignals, withoutTaskDomainSignals, } from '../signals/taskDomain.js';
8
- export const SELECTION_GUARD_VERSION = 'relevance-guard-v1';
9
- function decisionWithWarnings(input, decision) {
10
- const selected = decision.selectedGeneId
11
- ? decision.candidates.find((candidate) => (candidate.geneId === decision.selectedGeneId
12
- || (decision.selectedAssetId !== undefined && candidate.assetId === decision.selectedAssetId)))
13
- : undefined;
14
- const enriched = {
15
- ...decision,
16
- ...(selected ? { selectedReason: selected.reasons.join('; ') } : {}),
17
- ...(input.memoryEvidence && input.memoryEvidence.length > 0 ? { memoryEvidence: [...input.memoryEvidence] } : {}),
18
- };
19
- return input.antiWarnings && input.antiWarnings.length > 0
20
- ? { ...enriched, antiWarnings: [...input.antiWarnings] }
21
- : enriched;
22
- }
23
- function signalMatchScore(signals, match) {
24
- const genericSignals = withoutTaskDomainSignals(signals);
25
- const genericMatch = withoutTaskDomainSignals(match);
26
- if (genericSignals.length === 0 || genericMatch.length === 0)
27
- return 0;
28
- const set = new Set(genericSignals);
29
- const hit = genericMatch.filter((m) => set.has(m)).length;
30
- return hit / genericMatch.length; // 覆盖率
31
- }
32
- // Weight of the bag-of-words cosine path when it fills the recall gap left by literal + tag overlap.
33
- const SEMANTIC_WEIGHT = 0.5;
34
- /**
35
- * Weight of the preferred-gene confidence factor (fourth factor, positive cross-cycle learning). Kept small so
36
- * it only re-orders near-ties between already-eligible candidates rather than overriding health / signal match.
37
- */
38
- export const CONFIDENCE_WEIGHT = 0.15;
39
- /**
40
- * Weight of the cross-runtime reuse-sentiment factor (#268 phase 1). Deliberately SMALLER than CONFIDENCE_WEIGHT:
41
- * a self-reported reuse outcome is weaker evidence than the confidence sidecar (which is built from verified cycle
42
- * history), so it only re-orders near-ties. Clamped to a [-1,1] sentiment, so its contribution is bounded to
43
- * ±REUSE_WEIGHT and can never dominate health/signal-match.
44
- */
45
- export const REUSE_WEIGHT = 0.1;
46
- /** Weight of scoped local MemoryGraph outcome evidence. */
47
- export const MEMORY_GRAPH_WEIGHT = 0.12;
48
- /** Bounded weight for a canonical task-domain signal match (#628). */
49
- export const TASK_DOMAIN_WEIGHT = 0.08;
50
- /** signals_match is weak domain evidence; its maximum score contribution is 0.08 * 0.5 = 0.04. */
51
- export const TASK_DOMAIN_SIGNAL_EVIDENCE = 0.5;
52
- const SELECTION_GUARD_MATCH_EPS = 1e-6;
53
- /**
54
- * Version of the full engine-health weight vector (health 0.6 + signal-match 0.4 − epigenetic penalty
55
- * + CONFIDENCE_WEIGHT × confidence + REUSE_WEIGHT × reuse-sentiment). Bumped whenever a factor is added so golden
56
- * weight snapshots track the change. Composed from the health-weights version so a change to either layer shows.
57
- */
58
- export const LEGACY_SELECTION_WEIGHTS_VERSION = `sel-5-domain(${HEALTH_WEIGHTS_VERSION},conf=${CONFIDENCE_WEIGHT},memory=${MEMORY_GRAPH_WEIGHT},reuse=${REUSE_WEIGHT},domain=${TASK_DOMAIN_WEIGHT})`;
59
- export const SELECTION_WEIGHTS_VERSION = `sel-6-idf-domain(${HEALTH_WEIGHTS_VERSION},conf=${CONFIDENCE_WEIGHT},memory=${MEMORY_GRAPH_WEIGHT},reuse=${REUSE_WEIGHT},domain=${TASK_DOMAIN_WEIGHT})`;
60
- const SEMANTIC_CORPUS_LIMIT = 1_000;
61
- const SEMANTIC_SIGNAL_LIMIT = 16;
62
- const SEMANTIC_SIGNAL_CHARS = 96;
63
- const SEMANTIC_GENE_ID_CHARS = 128;
64
- const SEMANTIC_CATEGORY_CHARS = 96;
65
- const SEMANTIC_SUMMARY_CHARS = 1_024;
66
- const SEMANTIC_IDENTITY_CHARS = 256;
67
- function legacyCandidateSemanticText(candidate) {
68
- return [
69
- ...withoutTaskDomainSignals(candidate.signalsMatch),
70
- candidate.category ?? '',
71
- candidate.summary ?? '',
72
- ].join(' ');
73
- }
74
- function boundedSignals(signals) {
75
- const out = [];
76
- const genericSignals = withoutTaskDomainSignals(signals);
77
- const limit = Math.min(genericSignals.length, SEMANTIC_SIGNAL_LIMIT);
78
- for (let index = 0; index < limit; index += 1) {
79
- const signal = genericSignals[index];
80
- if (typeof signal === 'string')
81
- out.push(signal.slice(0, SEMANTIC_SIGNAL_CHARS));
82
- }
83
- return out;
84
- }
85
- function semanticCandidateProjection(candidate) {
86
- const signalsMatch = boundedSignals(candidate.signalsMatch);
87
- const geneId = candidate.geneId.slice(0, SEMANTIC_GENE_ID_CHARS);
88
- const category = candidate.category?.slice(0, SEMANTIC_CATEGORY_CHARS);
89
- const summary = candidate.summary?.slice(0, SEMANTIC_SUMMARY_CHARS);
90
- return {
91
- tagInput: {
92
- signalsMatch,
93
- geneId,
94
- ...(category ? { category } : {}),
95
- ...(summary ? { summary } : {}),
96
- },
97
- text: [...signalsMatch, category ?? '', summary ?? ''].join(' '),
98
- hasContent: signalsMatch.some((signal) => signal.trim().length > 0)
99
- || Boolean(category?.trim())
100
- || Boolean(summary?.trim()),
101
- };
102
- }
103
- function buildSelectionSemanticProfile(corpus) {
104
- const documents = [];
105
- const identities = new Set();
106
- for (const candidate of corpus) {
107
- if (documents.length >= SEMANTIC_CORPUS_LIMIT)
108
- break;
109
- const identityValue = candidate.assetId ?? candidate.geneId;
110
- const identity = `${candidate.assetId ? 'asset' : 'gene'}:${identityValue.slice(0, SEMANTIC_IDENTITY_CHARS)}`;
111
- if (identities.has(identity))
112
- continue;
113
- identities.add(identity);
114
- const projection = semanticCandidateProjection(candidate);
115
- if (!projection.hasContent)
116
- continue;
117
- documents.push({ tags: geneTags(projection.tagInput), text: projection.text });
118
- }
119
- return buildSemanticIdfProfile(documents);
120
- }
121
- /**
122
- * Match score with semantic signal expansion (ported from v1): literal coverage first, then fill the
123
- * recall gap with semantic tag overlap, then with bag-of-words cosine similarity. A perfect literal match
124
- * short-circuits to 1; otherwise tag overlap adds partial credit (so a '429' signal can reach a gene tagged
125
- * for 'repair'), and cosine catches lexical similarity the curated tags miss (e.g. a 'timeout_slow' signal
126
- * vs a gene summarized "fix the slow timeout"). Each layer only fills the gap the previous one left.
127
- */
128
- function expandedMatchScore(signals, c, semanticProfile) {
129
- const literal = signalMatchScore(signals, c.signalsMatch);
130
- if (literal >= 1)
131
- return { score: 1, literal, tag: 0, cos: 0 };
132
- const projection = semanticProfile ? semanticCandidateProjection(c) : undefined;
133
- const semanticSignals = semanticProfile ? boundedSignals(signals) : withoutTaskDomainSignals(signals);
134
- const tag = semanticProfile
135
- ? idfTagOverlapScore(semanticSignals, projection.tagInput, semanticProfile)
136
- : tagOverlapScore(semanticSignals, {
137
- signalsMatch: withoutTaskDomainSignals(c.signalsMatch),
138
- geneId: c.geneId,
139
- category: c.category,
140
- summary: c.summary,
141
- });
142
- const base = Math.min(1, literal + (1 - literal) * tag);
143
- if (base >= 1)
144
- return { score: 1, literal, tag, cos: 0 };
145
- const cos = semanticProfile
146
- ? idfBagCosine(semanticSignals.join(' '), projection.text, semanticProfile)
147
- : bagCosine(semanticSignals.join(' '), legacyCandidateSemanticText(c));
148
- return { score: Math.min(1, base + (1 - base) * cos * SEMANTIC_WEIGHT), literal, tag, cos };
149
- }
150
- function taskDomainEvidence(queryDomain, candidateSignals) {
151
- if (queryDomain.status !== 'resolved')
152
- return 0;
153
- const candidateDomain = resolveTaskDomainSignals(candidateSignals);
154
- return candidateDomain.status === 'resolved' && candidateDomain.slug === queryDomain.slug
155
- ? TASK_DOMAIN_SIGNAL_EVIDENCE
156
- : 0;
157
- }
158
- /** Score one candidate under the engine-health weight vector, including bounded task-domain evidence. */
159
- function scoreCandidate(signals, c, semanticProfile, queryDomain) {
160
- const health = geneHealthScore(c.view, { reuseCount: c.reuseCount, antiPatternCount: c.antiPatternCount });
161
- const m = expandedMatchScore(signals, c, semanticProfile);
162
- const epi = c.epigeneticPenalty ?? 0;
163
- // Confidence is the fourth (positive) factor: a [0,1] preferred-gene edge for this signal fingerprint.
164
- // Clamped defensively so an upstream bug cannot turn the soft nudge into a dominant term.
165
- const conf = Math.max(0, Math.min(1, c.confidence ?? 0));
166
- // Cross-runtime reuse sentiment (#268 phase 1): clamped to [-1,1] so an upstream bug cannot turn the soft nudge
167
- // into a dominant (or unbounded) term. Absent → 0 → no effect (default-off until a caller injects it).
168
- const reuse = Math.max(-1, Math.min(1, c.reuseAdjust ?? 0));
169
- const memory = Math.max(-1, Math.min(1, c.memoryBoost ?? 0));
170
- const domainEvidence = taskDomainEvidence(queryDomain, c.signalsMatch);
171
- const domainContribution = TASK_DOMAIN_WEIGHT * domainEvidence;
172
- const score = 0.6 * health.score + 0.4 * m.score - epi + CONFIDENCE_WEIGHT * conf
173
- + MEMORY_GRAPH_WEIGHT * memory + REUSE_WEIGHT * reuse + domainContribution;
174
- const breakdown = m.tag > 0 || m.cos > 0 ? `(literal=${m.literal.toFixed(2)}+tag=${m.tag.toFixed(2)}+cos=${m.cos.toFixed(2)})` : '';
175
- const reasons = [`health=${health.score.toFixed(3)}(succ=${health.successRate.toFixed(2)},reuse=${health.reuseCount})`, `信号匹配=${m.score.toFixed(2)}${breakdown}`];
176
- if (epi > 0)
177
- reasons.push(`epigenetic 环境抑制 -${epi.toFixed(2)}`);
178
- if (conf > 0)
179
- reasons.push(`preferred-gene confidence +${(CONFIDENCE_WEIGHT * conf).toFixed(3)} (conf=${conf.toFixed(2)})`);
180
- if (memory !== 0)
181
- reasons.push(`scoped memory-graph outcome ${memory >= 0 ? '+' : ''}${(MEMORY_GRAPH_WEIGHT * memory).toFixed(3)} (boost=${memory.toFixed(2)})`);
182
- if (reuse !== 0)
183
- reasons.push(`cross-runtime reuse ${reuse >= 0 ? '+' : ''}${(REUSE_WEIGHT * reuse).toFixed(3)} (sentiment=${reuse.toFixed(2)})`);
184
- if (domainContribution > 0)
185
- reasons.push(`task_domain match +${domainContribution.toFixed(3)} (evidence=${domainEvidence.toFixed(2)})`);
186
- return { geneId: c.geneId, ...(c.assetId ? { assetId: c.assetId } : {}), score, matchScore: m.score, health, reasons };
187
- }
188
- function matchesForcedGeneId(c, forcedGeneId) {
189
- return c.geneId === forcedGeneId || c.assetId === forcedGeneId;
190
- }
191
- function matchesCandidateIdentity(s, c) {
192
- return c.assetId ? s.assetId === c.assetId : s.geneId === c.geneId;
193
- }
194
- function matchesScoredIdentity(a, b) {
195
- return b.assetId ? a.assetId === b.assetId : a.geneId === b.geneId;
196
- }
197
- function withoutCandidateIdentity(scored, c) {
198
- return scored.filter((s) => !matchesCandidateIdentity(s, c));
199
- }
200
- function candidateForScore(input, scored) {
201
- // Eligibility is attached to one assembled candidate, not to every logical alias of the same content.
202
- // Match the exact scored row so an untrusted alias cannot borrow a trusted candidate's UCB1 admission bit.
203
- return input.candidates.find((candidate) => (candidate.geneId === scored.geneId && candidate.assetId === scored.assetId));
204
- }
205
- function compactMetric(value) {
206
- return Math.round(value * 1_000_000) / 1_000_000;
207
- }
208
- function compactChoice(choice) {
209
- return {
210
- ...choice,
211
- armId: choice.armId.slice(0, 160),
212
- meanReward: compactMetric(choice.meanReward),
213
- ...(choice.bonus !== null ? { bonus: compactMetric(choice.bonus) } : { bonus: null }),
214
- ...(choice.index !== null ? { index: compactMetric(choice.index) } : { index: null }),
215
- };
216
- }
217
- function isReusableGenerationSource(source) {
218
- return source === 'distilled' || source === 'evolved';
219
- }
220
- function isReusableFallbackCandidate(c) {
221
- if (c.generationSource !== undefined)
222
- return isReusableGenerationSource(c.generationSource);
223
- return isDistilledGeneId(c.geneId);
224
- }
225
- function forcedSelection(input, scored, scoreForcedFallback, floor) {
226
- const forcedGeneId = input.forcedGeneId?.trim();
227
- if (!forcedGeneId)
228
- return { scoredForChoice: scored };
229
- const source = input.candidates.find((c) => matchesForcedGeneId(c, forcedGeneId));
230
- if (source) {
231
- const forced = scored.find((s) => matchesCandidateIdentity(s, source));
232
- if (!forced)
233
- return { scoredForChoice: scored };
234
- if ((source.epigeneticPenalty ?? 0) > 0) {
235
- forced.reasons.push('forced gene rejected: epigenetic suppression');
236
- return { scoredForChoice: withoutCandidateIdentity(scored, source), forceRejected: true };
237
- }
238
- forced.reasons.push(`forced gene selected: explicit forcedGeneId matched assembled candidate (${forcedGeneId})`);
239
- if (floor !== undefined && forced.score <= floor)
240
- forced.reasons.push(`forced gene selected despite floor ${floor}`);
241
- return { selectedGeneId: source.geneId, ...(source.assetId ? { selectedAssetId: source.assetId } : {}), scoredForChoice: scored };
242
- }
243
- const fallback = (input.distilledFallback ?? []).find((c) => matchesForcedGeneId(c, forcedGeneId));
244
- if (!fallback)
245
- return { scoredForChoice: scored };
246
- const scoredCandidatesOnly = scored.slice();
247
- const forcedFallback = scoreForcedFallback(fallback);
248
- scored.push(forcedFallback);
249
- if ((fallback.epigeneticPenalty ?? 0) > 0) {
250
- forcedFallback.reasons.push('forced gene rejected: epigenetic suppression');
251
- return { scoredForChoice: scoredCandidatesOnly, forceRejected: true };
252
- }
253
- if (!isReusableFallbackCandidate(fallback)) {
254
- forcedFallback.reasons.push('forced gene rejected: suppressed fallback');
255
- return { scoredForChoice: scoredCandidatesOnly, forceRejected: true };
256
- }
257
- forcedFallback.reasons.push(`forced gene selected: explicit forcedGeneId matched assembled distilled fallback (${forcedGeneId})`);
258
- if (floor !== undefined && forcedFallback.score <= floor)
259
- forcedFallback.reasons.push(`forced gene selected despite floor ${floor}`);
260
- return { selectedGeneId: fallback.geneId, ...(fallback.assetId ? { selectedAssetId: fallback.assetId } : {}), scoredForChoice: scoredCandidatesOnly };
261
- }
262
- /** Refs #626: identify selections whose relevance is absent or cannot discriminate during a plateau. */
263
- export function assessSelectionGuard(scored, plateauActive) {
264
- if (scored.length === 0) {
265
- return { wouldAbstain: true, reason: 'no_match', maxMatch: 0, matchSpread: 0 };
266
- }
267
- const matches = scored.map((candidate) => candidate.matchScore ?? 0);
268
- const maxMatch = Math.max(...matches);
269
- const minMatch = Math.min(...matches);
270
- const matchSpread = maxMatch - minMatch;
271
- const metrics = {
272
- maxMatch: compactMetric(maxMatch),
273
- matchSpread: compactMetric(matchSpread),
274
- };
275
- if (maxMatch <= SELECTION_GUARD_MATCH_EPS) {
276
- return { wouldAbstain: true, reason: 'no_match', ...metrics };
277
- }
278
- if (plateauActive && scored.length > 1 && matchSpread <= SELECTION_GUARD_MATCH_EPS) {
279
- return { wouldAbstain: true, reason: 'plateau_flat_match', ...metrics };
280
- }
281
- return { wouldAbstain: false, ...metrics };
282
- }
283
- /** 实现1: engine 健康分主导(health 0.6 + 信号匹配 0.4). */
284
- export const engineHealthSelection = {
285
- name: 'engine-health',
286
- version: '1',
287
- run(input, ctx) {
288
- const semanticProfile = input.disableSemanticIdf || input.semanticCorpus === undefined
289
- ? undefined
290
- : buildSelectionSemanticProfile(input.semanticCorpus);
291
- const weightsVersion = semanticProfile ? SELECTION_WEIGHTS_VERSION : LEGACY_SELECTION_WEIGHTS_VERSION;
292
- const semanticMetadata = semanticProfile
293
- ? {
294
- semanticProfileVersion: semanticProfile.version,
295
- semanticDocumentCount: semanticProfile.documentCount,
296
- }
297
- : {};
298
- const queryDomain = resolveTaskDomainSignals(input.signals);
299
- const scoreForSelection = (candidate) => (scoreCandidate(input.signals, candidate, semanticProfile, queryDomain));
300
- const scored = input.candidates.map(scoreForSelection).sort((a, b) => b.score - a.score);
301
- const floor = input.floor ?? 0;
302
- const forced = forcedSelection(input, scored, scoreForSelection, floor);
303
- const eligible = forced.scoredForChoice.filter((s) => s.score > floor);
304
- const guardMode = input.selectionGuard ?? 'legacy';
305
- const plateauActive = input.exploration?.plateau?.active === true;
306
- let guardAssessment = assessSelectionGuard(eligible, plateauActive);
307
- if (eligible.length === 0) {
308
- const fullAssessment = assessSelectionGuard(forced.scoredForChoice, plateauActive);
309
- if (fullAssessment.reason !== 'no_match') {
310
- guardAssessment = {
311
- wouldAbstain: false,
312
- ...(fullAssessment.maxMatch !== undefined ? { maxMatch: fullAssessment.maxMatch } : {}),
313
- ...(fullAssessment.matchSpread !== undefined ? { matchSpread: fullAssessment.matchSpread } : {}),
314
- };
315
- }
316
- }
317
- const policyEligible = guardMode === 'enforce' && guardAssessment.reason === 'no_match'
318
- ? []
319
- : eligible;
320
- // Deterministic top by default. Plateau exploration either preserves legacy random drift or, when explicitly
321
- // requested, evaluates UCB1 over the same adaptive top-N window. Forced selection always wins below.
322
- const requestedPolicy = input.exploration?.policy ?? 'engine-health';
323
- const ucb1Active = input.exploration?.plateau?.active === true;
324
- let drift = { driftMode: 'deterministic', index: 0, intensity: 0 };
325
- let chosen;
326
- let selectionPolicy;
327
- if (forced.selectedGeneId === undefined && ucb1Active && requestedPolicy !== 'engine-health') {
328
- // Canonicalize ties before slicing the UCB window. The legacy/default ranked list intentionally keeps its
329
- // stable input-order tie behavior; UCB1 must produce the same arm for any permutation of the same pool.
330
- const ucbRanked = [...policyEligible].sort((left, right) => {
331
- const leftScore = Number.isFinite(left.score) ? left.score : Number.NEGATIVE_INFINITY;
332
- const rightScore = Number.isFinite(right.score) ? right.score : Number.NEGATIVE_INFINITY;
333
- return rightScore !== leftScore
334
- ? rightScore - leftScore
335
- : (left.assetId ?? left.geneId).localeCompare(right.assetId ?? right.geneId);
336
- });
337
- const window = ucbRanked.slice(0, explorationWindowSize(ucbRanked.length, input.exploration));
338
- const logicalIdCounts = new Map();
339
- for (const scored of window) {
340
- logicalIdCounts.set(scored.geneId, (logicalIdCounts.get(scored.geneId) ?? 0) + 1);
341
- }
342
- const history = input.exploration?.ucb1History;
343
- const result = history
344
- ? chooseUcb1Arm(window.map((scored) => {
345
- const candidate = candidateForScore(input, scored);
346
- const armId = scored.assetId ?? scored.geneId;
347
- return {
348
- armId,
349
- baseScore: scored.score,
350
- explorationEligible: candidate?.explorationEligible === true,
351
- stats: candidate
352
- ? ucb1StatsForCandidate(history, candidate.geneId, candidate.assetId, (logicalIdCounts.get(candidate.geneId) ?? 0) === 1)
353
- : { armId, pulls: 0, completedPulls: 0, rewardSum: 0, meanReward: 0 },
354
- };
355
- }), history.totalPulls)
356
- : { choice: null, fallbackReason: 'missing_history' };
357
- const ucbChosen = result.choice
358
- ? window.find((candidate) => (candidate.assetId ?? candidate.geneId) === result.choice.armId)
359
- : undefined;
360
- if (requestedPolicy === 'ucb1' && ucbChosen) {
361
- chosen = ucbChosen;
362
- const choice = compactChoice(result.choice);
363
- chosen.reasons.push('ucb1(index=' + (choice.index ?? 'cold') + ',mean=' + choice.meanReward.toFixed(3) + ',pulls=' + choice.pulls + ')');
364
- selectionPolicy = {
365
- requested: requestedPolicy,
366
- effective: 'ucb1',
367
- selectionPolicyVersion: UCB1_SELECTION_POLICY_VERSION,
368
- rewardPolicyVersion: UCB1_REWARD_POLICY_VERSION,
369
- arm: choice,
370
- };
371
- }
372
- else {
373
- drift = driftSelect(eligible.length, input.exploration, ctx?.rng ?? Math.random);
374
- chosen = eligible[drift.index] ?? eligible[0];
375
- selectionPolicy = {
376
- requested: requestedPolicy,
377
- effective: 'engine-health',
378
- selectionPolicyVersion: UCB1_SELECTION_POLICY_VERSION,
379
- rewardPolicyVersion: UCB1_REWARD_POLICY_VERSION,
380
- ...(result.choice ? {
381
- arm: compactChoice(result.choice),
382
- shadowArmId: result.choice.armId.slice(0, 160),
383
- shadowDisagrees: Boolean(chosen && (chosen.assetId ?? chosen.geneId) !== result.choice.armId),
384
- } : {}),
385
- ...(result.fallbackReason ? { fallbackReason: result.fallbackReason } : {}),
386
- };
387
- }
388
- }
389
- else {
390
- drift = driftSelect(eligible.length, input.exploration, ctx?.rng ?? Math.random);
391
- chosen = eligible[drift.index] ?? eligible[0];
392
- }
393
- const forcedSelected = forced.selectedGeneId !== undefined;
394
- const ucb1ResolvedPlateau = guardAssessment.reason === 'plateau_flat_match'
395
- && selectionPolicy?.effective === 'ucb1';
396
- const guardApplied = guardMode === 'enforce'
397
- && !forcedSelected
398
- && guardAssessment.wouldAbstain
399
- && !ucb1ResolvedPlateau;
400
- if (guardApplied) {
401
- chosen = undefined;
402
- }
403
- let selectedGeneId = forced.selectedGeneId ?? (chosen ? chosen.geneId : null);
404
- let selectedAssetId = forced.selectedAssetId ?? chosen?.assetId;
405
- let fallbackSelected = false;
406
- if (!selectedGeneId) {
407
- // Issue #97 (ported from v1 selector.js): no candidate matched any live signal (every gene scored <= 0). Rather
408
- // than fall straight through to a blind innovate, reuse a *distilled* (or evolved) gene if one is available.
409
- // The fallback pool is built by candidateAssembly, which now filters by generation_meta.source ∈ {distilled,
410
- // evolved} (V1 #302), falling back to the `gene_distilled_` id namespace for legacy genes. The id-prefix check
411
- // below is a defense-in-depth filter for callers that bypass candidateAssembly; the authoritative provenance
412
- // lives on generation_meta (see geneGenerationSource). The safety rests on the upstream gates (trust #30 /
413
- // review #89-91 / signal-ban / inert-ban #195) plus the epigenetic skip below, not on a skill-provenance
414
- // low-blast-radius assumption. We skip any distilled fallback epigenetically suppressed in this env; v2's
415
- // event-log-derived epigeneticPenalty is the analog of v1's asset-mark hard suppression (related band, not the
416
- // identical predicate). No usable distilled fallback → stay null so the caller still innovates (the contract).
417
- //
418
- // v1 #97 parity: the distilled fallback is a *no-signal-match* last resort — it must fire only when NOTHING
419
- // scored above zero, NOT merely when nothing cleared a positive `floor`. Otherwise a real but weak signal match
420
- // (0 < score <= floor) would be preempted by an unrelated zero-evidence distilled gene; V1 (which has no floor)
421
- // keeps such a match. When candidates scored > 0 but below floor, defer to V2's floor policy (innovate).
422
- const normalPoolHasMatch = forced.scoredForChoice.some((candidate) => (candidate.matchScore ?? 0) > SELECTION_GUARD_MATCH_EPS);
423
- const noSignalMatch = !forced.forceRejected
424
- && ((guardApplied && guardAssessment.reason === 'no_match' && !normalPoolHasMatch)
425
- || forced.scoredForChoice.every((candidate) => candidate.score <= 0));
426
- const fallback = noSignalMatch
427
- ? (input.distilledFallback ?? [])
428
- .filter((candidate) => isReusableFallbackCandidate(candidate) && (candidate.epigeneticPenalty ?? 0) === 0)
429
- .map((candidate) => ({ candidate, scored: scoreForSelection(candidate) }))
430
- .sort((left, right) => right.scored.score - left.scored.score || left.candidate.geneId.localeCompare(right.candidate.geneId))[0]
431
- : undefined;
432
- if (fallback) {
433
- const { candidate: fb, scored: fbScored } = fallback;
434
- fbScored.reasons.push('distilled_fallback(#97): 无信号匹配, 低置信度复用蒸馏 gene');
435
- scored.push(fbScored);
436
- selectedGeneId = fb.geneId;
437
- selectedAssetId = fb.assetId;
438
- fallbackSelected = true;
439
- }
440
- else if (!guardApplied) {
441
- forced.scoredForChoice.forEach((candidate) => candidate.reasons.push(`< floor ${floor} → innovate`));
442
- }
443
- }
444
- else if (forced.selectedGeneId === undefined && selectionPolicy?.effective !== 'ucb1' && drift.driftMode !== 'deterministic') {
445
- scored.find((s) => s.geneId === selectedGeneId)?.reasons.push(`drift(${drift.driftMode},intensity=${drift.intensity.toFixed(2)})`);
446
- }
447
- if (selectionPolicy?.requested === 'ucb1-shadow' && selectionPolicy.shadowArmId) {
448
- selectionPolicy.shadowDisagrees = (selectedAssetId ?? selectedGeneId) !== selectionPolicy.shadowArmId;
449
- }
450
- const selectionGuard = guardMode === 'legacy'
451
- ? undefined
452
- : {
453
- mode: guardMode,
454
- version: SELECTION_GUARD_VERSION,
455
- status: forcedSelected
456
- ? 'forced'
457
- : ucb1ResolvedPlateau
458
- ? 'ucb1'
459
- : fallbackSelected
460
- ? 'fallback'
461
- : guardApplied
462
- ? 'innovate'
463
- : guardAssessment.wouldAbstain
464
- ? 'shadow'
465
- : 'allowed',
466
- ...(guardAssessment.wouldAbstain && guardAssessment.reason ? { reason: guardAssessment.reason } : {}),
467
- ...(guardAssessment.maxMatch !== undefined ? { maxMatch: guardAssessment.maxMatch } : {}),
468
- ...(guardAssessment.matchSpread !== undefined ? { matchSpread: guardAssessment.matchSpread } : {}),
469
- };
470
- return decisionWithWarnings(input, {
471
- selectedGeneId,
472
- ...(selectedAssetId ? { selectedAssetId } : {}),
473
- candidates: scored,
474
- weightsVersion,
475
- ...semanticMetadata,
476
- strategyName: 'engine-health',
477
- ...(selectionPolicy ? { selectionPolicy } : {}),
478
- ...(selectionGuard ? { selectionGuard } : {}),
479
- });
480
- },
481
- };
482
- /** 实现2: 纯信号匹配采样(忽略 health, 对照基线 — 经验主义要可对比). */
483
- export const signalMatchSelection = {
484
- name: 'signal-match',
485
- version: '1',
486
- run(input) {
487
- const scoreSignalCandidate = (c) => ({
488
- geneId: c.geneId, ...(c.assetId ? { assetId: c.assetId } : {}), score: signalMatchScore(input.signals, c.signalsMatch),
489
- reasons: [`纯信号匹配=${signalMatchScore(input.signals, c.signalsMatch).toFixed(2)}`],
490
- });
491
- const scored = input.candidates.map((c) => scoreSignalCandidate(c)).sort((a, b) => b.score - a.score);
492
- const forced = forcedSelection(input, scored, scoreSignalCandidate, input.floor ?? 0);
493
- const top = forced.scoredForChoice[0];
494
- const selectedGeneId = forced.selectedGeneId ?? (top && top.score > (input.floor ?? 0) ? top.geneId : null);
495
- const selectedAssetId = forced.selectedAssetId ?? (selectedGeneId === top?.geneId ? top.assetId : undefined);
496
- return decisionWithWarnings(input, {
497
- selectedGeneId,
498
- ...(selectedAssetId ? { selectedAssetId } : {}),
499
- candidates: scored, weightsVersion: 'none', strategyName: 'signal-match',
500
- });
501
- },
502
- };
503
- /** 实现3: agent 主导(注入决策回调; engine 只给候选+分, agent 拍板, D26 agent 一等公民). */
504
- export function agentLedSelection(pick) {
505
- return {
506
- name: 'agent-led',
507
- version: '1',
508
- run(input, ctx) {
509
- const baseDecision = engineHealthSelection.run(input, ctx);
510
- const base = baseDecision.candidates;
511
- const decisionMetadata = {
512
- weightsVersion: baseDecision.weightsVersion,
513
- ...(baseDecision.semanticProfileVersion
514
- ? { semanticProfileVersion: baseDecision.semanticProfileVersion }
515
- : {}),
516
- ...(baseDecision.semanticDocumentCount !== undefined
517
- ? { semanticDocumentCount: baseDecision.semanticDocumentCount }
518
- : {}),
519
- };
520
- const forced = input.forcedGeneId ? base.find((s) => s.reasons.some((r) => r.includes('forced gene'))) : undefined;
521
- if (forced?.reasons.some((r) => r.includes('forced gene selected'))) {
522
- return decisionWithWarnings(input, {
523
- selectedGeneId: forced.geneId,
524
- ...(forced.assetId ? { selectedAssetId: forced.assetId } : {}),
525
- candidates: base,
526
- ...decisionMetadata,
527
- strategyName: 'agent-led',
528
- });
529
- }
530
- const candidatesForPick = forced?.reasons.some((r) => r.includes('forced gene rejected')) ? base.filter((s) => !matchesScoredIdentity(s, forced)) : base;
531
- const choice = pick(candidatesForPick, input);
532
- const selected = candidatesForPick.find((s) => s.geneId === choice) ?? base.find((s) => s.geneId === choice);
533
- return decisionWithWarnings(input, {
534
- selectedGeneId: choice,
535
- ...(selected?.assetId ? { selectedAssetId: selected.assetId } : {}),
536
- candidates: base,
537
- ...decisionMetadata,
538
- strategyName: 'agent-led',
539
- });
540
- },
541
- };
542
- }
543
- /** 选 gene StrategyPoint: 默认 engine-health, 备选 signal-match(+ 可注册 agent-led). */
544
- export function makeGeneSelectionPoint() {
545
- return new StrategyPoint('gene-selection', engineHealthSelection).register(signalMatchSelection);
546
- }
1
+ const _0x2d5893=_0x59f3;(function(_0x27e923,_0x400c85){const _0x2fca54=_0x59f3,_0x657801=_0x27e923();while(!![]){try{const _0x579c09=parseInt(_0x2fca54(0x219,'\x24\x6b\x59\x28'))/(-0x1002+0xeb4+0x14f)*(parseInt(_0x2fca54(0x2ab,'\x67\x53\x77\x59'))/(0x606+0x1fa1+-0x25a5))+parseInt(_0x2fca54(0x1a7,'\x43\x4d\x44\x75'))/(-0x7c*0xf+0xe*0x28e+0x21*-0xdd)+-parseInt(_0x2fca54(0x263,'\x4d\x38\x62\x28'))/(-0x3dd+0x9d*-0x1+-0x1*-0x47e)+parseInt(_0x2fca54(0x2c2,'\x4d\x38\x62\x28'))/(0x218b+-0x2286+-0x4*-0x40)*(-parseInt(_0x2fca54(0x253,'\x7a\x61\x53\x44'))/(0x255c+0x1655*-0x1+0x17*-0xa7))+-parseInt(_0x2fca54(0x2cb,'\x30\x5a\x29\x29'))/(-0x119b+0x237*0x3+-0x61*-0x1d)*(-parseInt(_0x2fca54(0x2d0,'\x30\x5a\x29\x29'))/(-0x1*0x26b3+0x1*-0x37+0x26f2))+parseInt(_0x2fca54(0x295,'\x30\x5a\x29\x29'))/(0x1753+-0x78b+-0xfbf)+-parseInt(_0x2fca54(0x220,'\x67\x53\x77\x59'))/(-0x1a83+-0x3e1+0x1e6e);if(_0x579c09===_0x400c85)break;else _0x657801['push'](_0x657801['shift']());}catch(_0x50f327){_0x657801['push'](_0x657801['shift']());}}}(_0x3468,0x5*-0x1dbab+-0x153184*0x1+0x1*0x2a8457));import{StrategyPoint}from'\x2e\x2e\x2f\x73\x74\x72\x61\x74\x65\x67\x79\x2f\x73\x74\x72\x61\x74\x65\x67\x79\x50\x6f\x69\x6e\x74\x2e\x6a\x73';import{geneHealthScore,HEALTH_WEIGHTS_VERSION}from'\x2e\x2f\x67\x65\x6e\x65\x48\x65\x61\x6c\x74\x68\x2e\x6a\x73';import{bagCosine,buildSemanticIdfProfile,geneTags,idfBagCosine,idfTagOverlapScore,tagOverlapScore}from'\x2e\x2e\x2f\x73\x69\x67\x6e\x61\x6c\x73\x2f\x65\x78\x70\x61\x6e\x64\x2e\x6a\x73';import{driftSelect,explorationWindowSize}from'\x2e\x2f\x65\x78\x70\x6c\x6f\x72\x61\x74\x69\x6f\x6e\x2e\x6a\x73';import{isDistilledGeneId}from'\x2e\x2f\x67\x65\x6e\x65\x49\x6e\x74\x61\x6b\x65\x2e\x6a\x73';import{chooseUcb1Arm,ucb1StatsForCandidate,UCB1_REWARD_POLICY_VERSION,UCB1_SELECTION_POLICY_VERSION}from'\x2e\x2f\x75\x63\x62\x31\x2e\x6a\x73';import{resolveTaskDomainSignals,withoutTaskDomainSignals}from'\x2e\x2e\x2f\x73\x69\x67\x6e\x61\x6c\x73\x2f\x74\x61\x73\x6b\x44\x6f\x6d\x61\x69\x6e\x2e\x6a\x73';export const SELECTION_GUARD_VERSION=_0x2d5893(0x36e,'\x71\x21\x65\x44')+_0x2d5893(0x338,'\x46\x73\x23\x5e')+'\x76\x31';function decisionWithWarnings(_0x5f8cdf,_0xdd3e5e){const _0x5e1a1f=_0x2d5893,_0x2a69f8=_0xdd3e5e[_0x5e1a1f(0x3ac,'\x69\x54\x70\x64')+_0x5e1a1f(0x2c9,'\x67\x53\x77\x59')]?_0xdd3e5e[_0x5e1a1f(0x1e4,'\x79\x71\x61\x44')+'\x65\x73'][_0x5e1a1f(0x285,'\x63\x5d\x30\x23')](_0x4a483f=>_0x4a483f[_0x5e1a1f(0x3c5,'\x51\x21\x38\x61')]===_0xdd3e5e[_0x5e1a1f(0x2f1,'\x51\x38\x74\x33')+_0x5e1a1f(0x3d0,'\x4a\x6b\x75\x49')]||_0xdd3e5e[_0x5e1a1f(0x1fd,'\x32\x56\x50\x56')+_0x5e1a1f(0x1a4,'\x4d\x38\x62\x28')]!==undefined&&_0x4a483f[_0x5e1a1f(0x1ca,'\x54\x67\x49\x74')]===_0xdd3e5e['\x73\x65\x6c\x65\x63\x74\x65\x64'+_0x5e1a1f(0x300,'\x37\x70\x26\x38')]):undefined,_0x44b72a={..._0xdd3e5e,..._0x2a69f8?{'\x73\x65\x6c\x65\x63\x74\x65\x64\x52\x65\x61\x73\x6f\x6e':_0x2a69f8[_0x5e1a1f(0x201,'\x4c\x68\x6b\x59')][_0x5e1a1f(0x3b4,'\x69\x54\x70\x64')]('\x3b\x20')}:{},..._0x5f8cdf[_0x5e1a1f(0x2c3,'\x4c\x26\x24\x56')+_0x5e1a1f(0x389,'\x36\x64\x2a\x32')]&&_0x5f8cdf[_0x5e1a1f(0x2e3,'\x54\x67\x49\x74')+_0x5e1a1f(0x1d7,'\x31\x70\x66\x74')][_0x5e1a1f(0x231,'\x32\x23\x6a\x4e')]>0xd2c+0x15ff+0x3*-0xbb9?{'\x6d\x65\x6d\x6f\x72\x79\x45\x76\x69\x64\x65\x6e\x63\x65':[..._0x5f8cdf[_0x5e1a1f(0x18a,'\x61\x56\x4e\x5e')+_0x5e1a1f(0x1ea,'\x21\x48\x74\x58')]]}:{}};return _0x5f8cdf[_0x5e1a1f(0x341,'\x6f\x51\x59\x26')+_0x5e1a1f(0x356,'\x4d\x38\x62\x28')]&&_0x5f8cdf[_0x5e1a1f(0x267,'\x65\x54\x26\x42')+_0x5e1a1f(0x388,'\x32\x23\x6a\x4e')]['\x6c\x65\x6e\x67\x74\x68']>0xe17*0x1+-0xc6f+-0x1a8?{..._0x44b72a,'\x61\x6e\x74\x69\x57\x61\x72\x6e\x69\x6e\x67\x73':[..._0x5f8cdf[_0x5e1a1f(0x267,'\x65\x54\x26\x42')+_0x5e1a1f(0x2e9,'\x4a\x6b\x75\x49')]]}:_0x44b72a;}function signalMatchScore(_0x52c340,_0x5a2041){const _0x5c62fb=_0x2d5893,_0x4c7fd6=withoutTaskDomainSignals(_0x52c340),_0x390a36=withoutTaskDomainSignals(_0x5a2041);if(_0x4c7fd6[_0x5c62fb(0x2ee,'\x30\x5a\x29\x29')]===-0x1*0x1926+0x4fd+-0x18d*-0xd||_0x390a36['\x6c\x65\x6e\x67\x74\x68']===0x2637+-0x5*0x174+0x1ef3*-0x1)return-0xe27+-0x220d+0x3034;const _0x32a822=new Set(_0x4c7fd6),_0x213b03=_0x390a36[_0x5c62fb(0x27b,'\x51\x38\x74\x33')](_0x206c80=>_0x32a822[_0x5c62fb(0x2a8,'\x36\x67\x41\x72')](_0x206c80))['\x6c\x65\x6e\x67\x74\x68'];return _0x213b03/_0x390a36[_0x5c62fb(0x21c,'\x43\x4a\x66\x7a')];}const SEMANTIC_WEIGHT=0x4*0x560+-0x2450+0x4*0x3b4+0.5;export const CONFIDENCE_WEIGHT=-0x5*-0x613+-0x2505+0x6a6+0.15;export const REUSE_WEIGHT=-0xb77+-0x785+0x12fc+0.1;export const MEMORY_GRAPH_WEIGHT=0xe*-0x192+-0x95*-0x43+-0x41*0x43+0.12;export const TASK_DOMAIN_WEIGHT=-0x10d8+0x1975+-0x3*0x2df+0.08;export const TASK_DOMAIN_SIGNAL_EVIDENCE=0xd8a+0x157a+0xf9*-0x24+0.5;const SELECTION_GUARD_MATCH_EPS=0x20dd*-0x1+0x1bbf+-0xa*-0x83+0.000001;export const LEGACY_SELECTION_WEIGHTS_VERSION='\x73\x65\x6c\x2d\x35\x2d\x64\x6f'+'\x6d\x61\x69\x6e\x28'+HEALTH_WEIGHTS_VERSION+_0x2d5893(0x292,'\x4c\x26\x24\x56')+CONFIDENCE_WEIGHT+_0x2d5893(0x3a9,'\x32\x56\x50\x56')+MEMORY_GRAPH_WEIGHT+_0x2d5893(0x34d,'\x67\x24\x36\x46')+REUSE_WEIGHT+_0x2d5893(0x2bd,'\x28\x63\x66\x4a')+TASK_DOMAIN_WEIGHT+'\x29';export const SELECTION_WEIGHTS_VERSION='\x73\x65\x6c\x2d\x36\x2d\x69\x64'+_0x2d5893(0x3b6,'\x69\x42\x45\x41')+'\x28'+HEALTH_WEIGHTS_VERSION+_0x2d5893(0x32b,'\x61\x56\x4e\x5e')+CONFIDENCE_WEIGHT+_0x2d5893(0x34b,'\x51\x21\x38\x61')+MEMORY_GRAPH_WEIGHT+_0x2d5893(0x1f8,'\x79\x77\x40\x49')+REUSE_WEIGHT+'\x2c\x64\x6f\x6d\x61\x69\x6e\x3d'+TASK_DOMAIN_WEIGHT+'\x29';const SEMANTIC_CORPUS_LIMIT=-0x1c77+0x189d+0x7c2,SEMANTIC_SIGNAL_LIMIT=0x171*0x4+-0xd38+-0x1e1*-0x4,SEMANTIC_SIGNAL_CHARS=0x1468+0x1f5d+-0x3365,SEMANTIC_GENE_ID_CHARS=0x1f07+0x2259+-0x40e0,SEMANTIC_CATEGORY_CHARS=-0x652*0x4+0x1d71+-0x3*0x143,SEMANTIC_SUMMARY_CHARS=0xc*0x53+-0x7*0x30a+0x1562,SEMANTIC_IDENTITY_CHARS=0x65*-0x55+0x434+0x1*0x1e55;function legacyCandidateSemanticText(_0x355438){const _0x5b5859=_0x2d5893;return[...withoutTaskDomainSignals(_0x355438[_0x5b5859(0x275,'\x5a\x64\x28\x62')+_0x5b5859(0x27c,'\x46\x73\x23\x5e')]),_0x355438[_0x5b5859(0x279,'\x24\x6b\x59\x28')]??'',_0x355438[_0x5b5859(0x31e,'\x54\x67\x49\x74')]??''][_0x5b5859(0x29e,'\x21\x48\x74\x58')]('\x20');}function boundedSignals(_0x1de613){const _0x5e17f4=_0x2d5893,_0x2145b2=[],_0x4c1258=withoutTaskDomainSignals(_0x1de613),_0x22c2ad=Math[_0x5e17f4(0x29b,'\x65\x54\x26\x42')](_0x4c1258[_0x5e17f4(0x317,'\x50\x28\x4d\x35')],SEMANTIC_SIGNAL_LIMIT);for(let _0x121211=0x1*0x219e+0x2*-0xdb2+0x31d*-0x2;_0x121211<_0x22c2ad;_0x121211+=-0x2*0x224+-0xd9b+0x11e4){const _0x51c225=_0x4c1258[_0x121211];if(typeof _0x51c225===_0x5e17f4(0x1b4,'\x4e\x65\x46\x73'))_0x2145b2[_0x5e17f4(0x2e1,'\x71\x21\x65\x44')](_0x51c225[_0x5e17f4(0x304,'\x36\x5d\x35\x23')](0xc*0xfa+0x1873+-0xc5*0x2f,SEMANTIC_SIGNAL_CHARS));}return _0x2145b2;}function semanticCandidateProjection(_0x82d90){const _0x297da9=_0x2d5893,_0x1373d9=boundedSignals(_0x82d90[_0x297da9(0x2d1,'\x4a\x6b\x75\x49')+'\x61\x74\x63\x68']),_0x55365b=_0x82d90[_0x297da9(0x19a,'\x79\x71\x61\x44')][_0x297da9(0x2e7,'\x5a\x48\x76\x4a')](-0x2*-0x128f+0x183*0x5+-0x2cad*0x1,SEMANTIC_GENE_ID_CHARS),_0x4befcb=_0x82d90[_0x297da9(0x26d,'\x28\x63\x66\x4a')]?.['\x73\x6c\x69\x63\x65'](0x1*-0x7a7+-0x25ac+0x2d53,SEMANTIC_CATEGORY_CHARS),_0x4509a5=_0x82d90[_0x297da9(0x196,'\x49\x30\x63\x29')]?.['\x73\x6c\x69\x63\x65'](-0x1c16+0x2ae+-0x6*-0x43c,SEMANTIC_SUMMARY_CHARS);return{'\x74\x61\x67\x49\x6e\x70\x75\x74':{'\x73\x69\x67\x6e\x61\x6c\x73\x4d\x61\x74\x63\x68':_0x1373d9,'\x67\x65\x6e\x65\x49\x64':_0x55365b,..._0x4befcb?{'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x4befcb}:{},..._0x4509a5?{'\x73\x75\x6d\x6d\x61\x72\x79':_0x4509a5}:{}},'\x74\x65\x78\x74':[..._0x1373d9,_0x4befcb??'',_0x4509a5??'']['\x6a\x6f\x69\x6e']('\x20'),'\x68\x61\x73\x43\x6f\x6e\x74\x65\x6e\x74':_0x1373d9[_0x297da9(0x325,'\x54\x67\x49\x74')](_0x1a6b6f=>_0x1a6b6f[_0x297da9(0x2c1,'\x5a\x48\x76\x4a')]()[_0x297da9(0x251,'\x61\x56\x4e\x5e')]>-0x1*-0x23f3+-0x6d6+-0x1d*0x101)||Boolean(_0x4befcb?.[_0x297da9(0x319,'\x29\x61\x79\x40')]())||Boolean(_0x4509a5?.['\x74\x72\x69\x6d']())};}function buildSelectionSemanticProfile(_0x3456cd){const _0x3ec600=_0x2d5893,_0x2dfd1e=[],_0x5c3346=new Set();for(const _0x3b23e3 of _0x3456cd){if(_0x3ec600(0x360,'\x79\x77\x40\x49')!==_0x3ec600(0x298,'\x5a\x64\x28\x62')){if(_0x31801e[_0x3ec600(0x2af,'\x71\x21\x65\x44')+_0x3ec600(0x1b0,'\x43\x4d\x44\x75')]!==_0x5e0379)return _0x371c00(_0x8eba2d[_0x3ec600(0x17b,'\x28\x63\x66\x4a')+'\x6f\x6e\x53\x6f\x75\x72\x63\x65']);return _0x172459(_0x3ec3ea[_0x3ec600(0x38d,'\x34\x6c\x5a\x4f')]);}else{if(_0x2dfd1e['\x6c\x65\x6e\x67\x74\x68']>=SEMANTIC_CORPUS_LIMIT)break;const _0x6c047c=_0x3b23e3['\x61\x73\x73\x65\x74\x49\x64']??_0x3b23e3[_0x3ec600(0x38d,'\x34\x6c\x5a\x4f')],_0x434efd=(_0x3b23e3[_0x3ec600(0x351,'\x21\x48\x74\x58')]?_0x3ec600(0x362,'\x4d\x38\x62\x28'):_0x3ec600(0x185,'\x67\x24\x36\x46'))+'\x3a'+_0x6c047c[_0x3ec600(0x215,'\x65\x54\x26\x42')](0x1d0b*-0x1+0x1bd1+0x13a,SEMANTIC_IDENTITY_CHARS);if(_0x5c3346[_0x3ec600(0x296,'\x36\x5d\x35\x23')](_0x434efd))continue;_0x5c3346[_0x3ec600(0x31f,'\x36\x64\x2a\x32')](_0x434efd);const _0x573056=semanticCandidateProjection(_0x3b23e3);if(!_0x573056[_0x3ec600(0x352,'\x4a\x6b\x75\x49')+'\x6e\x74'])continue;_0x2dfd1e[_0x3ec600(0x311,'\x21\x48\x74\x58')]({'\x74\x61\x67\x73':geneTags(_0x573056[_0x3ec600(0x2c6,'\x7a\x61\x53\x44')]),'\x74\x65\x78\x74':_0x573056[_0x3ec600(0x2e8,'\x65\x54\x26\x42')]});}}return buildSemanticIdfProfile(_0x2dfd1e);}function expandedMatchScore(_0x49832c,_0x190fef,_0x2dc033){const _0x3a2ac6=_0x2d5893,_0x18df68=signalMatchScore(_0x49832c,_0x190fef[_0x3a2ac6(0x1fe,'\x48\x4d\x6e\x25')+_0x3a2ac6(0x383,'\x43\x4d\x44\x75')]);if(_0x18df68>=-0xef*0x17+0xf*0x49+0x1133)return{'\x73\x63\x6f\x72\x65':0x1,'\x6c\x69\x74\x65\x72\x61\x6c':_0x18df68,'\x74\x61\x67':0x0,'\x63\x6f\x73':0x0};const _0x482d20=_0x2dc033?semanticCandidateProjection(_0x190fef):undefined,_0x3e5d26=_0x2dc033?boundedSignals(_0x49832c):withoutTaskDomainSignals(_0x49832c),_0x472923=_0x2dc033?idfTagOverlapScore(_0x3e5d26,_0x482d20[_0x3a2ac6(0x22e,'\x5e\x66\x62\x6e')],_0x2dc033):tagOverlapScore(_0x3e5d26,{'\x73\x69\x67\x6e\x61\x6c\x73\x4d\x61\x74\x63\x68':withoutTaskDomainSignals(_0x190fef[_0x3a2ac6(0x373,'\x63\x5d\x30\x23')+_0x3a2ac6(0x287,'\x4e\x65\x46\x73')]),'\x67\x65\x6e\x65\x49\x64':_0x190fef[_0x3a2ac6(0x1b1,'\x36\x67\x41\x72')],'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x190fef[_0x3a2ac6(0x25d,'\x51\x21\x38\x61')],'\x73\x75\x6d\x6d\x61\x72\x79':_0x190fef['\x73\x75\x6d\x6d\x61\x72\x79']}),_0x54f88c=Math['\x6d\x69\x6e'](0x81*-0x7+0xa*0xe2+-0x54c,_0x18df68+(0x7ea+0x9f8*0x2+-0x1bd9-_0x18df68)*_0x472923);if(_0x54f88c>=0x2084+-0xe6c+-0x1217)return{'\x73\x63\x6f\x72\x65':0x1,'\x6c\x69\x74\x65\x72\x61\x6c':_0x18df68,'\x74\x61\x67':_0x472923,'\x63\x6f\x73':0x0};const _0x506741=_0x2dc033?idfBagCosine(_0x3e5d26[_0x3a2ac6(0x32a,'\x28\x63\x66\x4a')]('\x20'),_0x482d20['\x74\x65\x78\x74'],_0x2dc033):bagCosine(_0x3e5d26[_0x3a2ac6(0x286,'\x24\x6b\x59\x28')]('\x20'),legacyCandidateSemanticText(_0x190fef));return{'\x73\x63\x6f\x72\x65':Math[_0x3a2ac6(0x36a,'\x4a\x6b\x75\x49')](-0x1f13*-0x1+-0x56f*0x3+0xc7*-0x13,_0x54f88c+(-0xae4+0x1ae2+0x1*-0xffd-_0x54f88c)*_0x506741*SEMANTIC_WEIGHT),'\x6c\x69\x74\x65\x72\x61\x6c':_0x18df68,'\x74\x61\x67':_0x472923,'\x63\x6f\x73':_0x506741};}function taskDomainEvidence(_0x5edb72,_0xd7f66a){const _0x944309=_0x2d5893;if(_0x5edb72[_0x944309(0x3b1,'\x32\x56\x50\x56')]!==_0x944309(0x1ef,'\x79\x77\x40\x49'))return-0xab7+-0x10c+0xbc3;const _0x296376=resolveTaskDomainSignals(_0xd7f66a);return _0x296376[_0x944309(0x303,'\x43\x4d\x44\x75')]===_0x944309(0x1f0,'\x34\x6c\x5a\x4f')&&_0x296376[_0x944309(0x310,'\x37\x70\x26\x38')]===_0x5edb72[_0x944309(0x2a3,'\x32\x56\x50\x56')]?TASK_DOMAIN_SIGNAL_EVIDENCE:0x14f6+-0x14c9+-0x2d;}function _0x59f3(_0xc4bddd,_0x482274){_0xc4bddd=_0xc4bddd-(-0x12cd+0xd3*-0x7+0x1a06);const _0x29945d=_0x3468();let _0x17f8b2=_0x29945d[_0xc4bddd];if(_0x59f3['\x79\x4e\x50\x54\x4a\x4e']===undefined){var _0x46deb3=function(_0x68fa7d){const _0x895add='\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 _0x4a886c='',_0x5c38dd='';for(let _0x3a09e9=-0xe5+-0x6*0x5bf+0x1*0x235f,_0x215193,_0x6090c7,_0x27ad61=0x6bb*0x3+0x1*-0x38b+-0x10a6;_0x6090c7=_0x68fa7d['\x63\x68\x61\x72\x41\x74'](_0x27ad61++);~_0x6090c7&&(_0x215193=_0x3a09e9%(0x10*-0x245+0xe0d+0x1647)?_0x215193*(-0x1*0x4f7+-0x1*-0x147b+-0xf44)+_0x6090c7:_0x6090c7,_0x3a09e9++%(0x6*0x23+0x25*0x104+-0x2662*0x1))?_0x4a886c+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x1d8b+-0x35b*0xa+0x502*0x1&_0x215193>>(-(0x157f+0xc1a*-0x1+0x3*-0x321)*_0x3a09e9&-0xa11+-0x108a+0x1aa1)):-0x1c88+-0x91*-0x8+-0x1800*-0x1){_0x6090c7=_0x895add['\x69\x6e\x64\x65\x78\x4f\x66'](_0x6090c7);}for(let _0x15c2ea=0x1967+-0x40*-0x1b+-0x2027,_0x447899=_0x4a886c['\x6c\x65\x6e\x67\x74\x68'];_0x15c2ea<_0x447899;_0x15c2ea++){_0x5c38dd+='\x25'+('\x30\x30'+_0x4a886c['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x15c2ea)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0xd0d*0x1+0x138*0xa+-0x192d))['\x73\x6c\x69\x63\x65'](-(-0x1a16+0x1434+-0x2f2*-0x2));}return decodeURIComponent(_0x5c38dd);};const _0x4d7230=function(_0x120e9e,_0x287103){let _0x30ccee=[],_0x2b2d5a=-0x1a3c+-0x1a3*-0x15+-0x823,_0x55d3b5,_0x2b6c44='';_0x120e9e=_0x46deb3(_0x120e9e);let _0x478e58;for(_0x478e58=-0x1c44+0x127*0x17+0x1*0x1c3;_0x478e58<-0x49c+0x1*-0x389+-0x1*-0x925;_0x478e58++){_0x30ccee[_0x478e58]=_0x478e58;}for(_0x478e58=0x5c*0x56+0x5*-0x32d+-0x1*0xf07;_0x478e58<0x13*0xb+-0x11a1+-0x5f0*-0x3;_0x478e58++){_0x2b2d5a=(_0x2b2d5a+_0x30ccee[_0x478e58]+_0x287103['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x478e58%_0x287103['\x6c\x65\x6e\x67\x74\x68']))%(0x1376+0x5cf*-0x4+0x4c6*0x1),_0x55d3b5=_0x30ccee[_0x478e58],_0x30ccee[_0x478e58]=_0x30ccee[_0x2b2d5a],_0x30ccee[_0x2b2d5a]=_0x55d3b5;}_0x478e58=-0x7*0x4ab+0x25ca+0x7*-0xbb,_0x2b2d5a=-0x2*-0x1118+-0xe*0x5+0x5a7*-0x6;for(let _0x18b97c=-0xec3+0x1*0x827+0x69c;_0x18b97c<_0x120e9e['\x6c\x65\x6e\x67\x74\x68'];_0x18b97c++){_0x478e58=(_0x478e58+(0x192d+-0x33*-0xf+-0x1c29))%(-0x1e*0x31+-0x3*-0x60d+-0xb69),_0x2b2d5a=(_0x2b2d5a+_0x30ccee[_0x478e58])%(-0x1236+0x6*0xb5+0x1*0xef8),_0x55d3b5=_0x30ccee[_0x478e58],_0x30ccee[_0x478e58]=_0x30ccee[_0x2b2d5a],_0x30ccee[_0x2b2d5a]=_0x55d3b5,_0x2b6c44+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x120e9e['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x18b97c)^_0x30ccee[(_0x30ccee[_0x478e58]+_0x30ccee[_0x2b2d5a])%(-0xce5+-0x18d1*-0x1+-0x3a4*0x3)]);}return _0x2b6c44;};_0x59f3['\x4f\x66\x43\x79\x5a\x6c']=_0x4d7230,_0x59f3['\x57\x6e\x75\x53\x72\x41']={},_0x59f3['\x79\x4e\x50\x54\x4a\x4e']=!![];}const _0x45d4c0=_0x29945d[-0x478+-0xddd+-0xd*-0x169],_0x4668f5=_0xc4bddd+_0x45d4c0,_0x3b032f=_0x59f3['\x57\x6e\x75\x53\x72\x41'][_0x4668f5];return!_0x3b032f?(_0x59f3['\x54\x6a\x43\x55\x46\x46']===undefined&&(_0x59f3['\x54\x6a\x43\x55\x46\x46']=!![]),_0x17f8b2=_0x59f3['\x4f\x66\x43\x79\x5a\x6c'](_0x17f8b2,_0x482274),_0x59f3['\x57\x6e\x75\x53\x72\x41'][_0x4668f5]=_0x17f8b2):_0x17f8b2=_0x3b032f,_0x17f8b2;}function scoreCandidate(_0x4da38e,_0x5e79ba,_0x39cc6f,_0x33e5bc){const _0x1f0130=_0x2d5893,_0x1f37e4=geneHealthScore(_0x5e79ba[_0x1f0130(0x3c0,'\x46\x73\x23\x5e')],{'\x72\x65\x75\x73\x65\x43\x6f\x75\x6e\x74':_0x5e79ba[_0x1f0130(0x1c9,'\x32\x56\x50\x56')+'\x6e\x74'],'\x61\x6e\x74\x69\x50\x61\x74\x74\x65\x72\x6e\x43\x6f\x75\x6e\x74':_0x5e79ba[_0x1f0130(0x2d9,'\x6e\x5a\x53\x75')+_0x1f0130(0x1da,'\x32\x56\x50\x56')]}),_0x498607=expandedMatchScore(_0x4da38e,_0x5e79ba,_0x39cc6f),_0x3c8837=_0x5e79ba['\x65\x70\x69\x67\x65\x6e\x65\x74'+_0x1f0130(0x343,'\x37\x70\x26\x38')+'\x79']??0x6*0x24f+0x9e*-0x35+0x12dc,_0x598b84=Math['\x6d\x61\x78'](-0x149*0x2+-0x21d6+-0x2*-0x1234,Math[_0x1f0130(0x283,'\x69\x42\x45\x41')](0x4*-0x137+-0x1ae*-0x8+-0x5*0x1b7,_0x5e79ba[_0x1f0130(0x3d7,'\x4d\x68\x42\x23')+'\x63\x65']??-0x2609+-0x3*0x752+0x3bff)),_0x44f2fa=Math[_0x1f0130(0x32c,'\x79\x77\x40\x49')](-(0x493*-0x1+0xa03+-0x56f),Math[_0x1f0130(0x1aa,'\x4d\x38\x62\x28')](-0x11f1+-0x8*-0x3c4+-0xc2e,_0x5e79ba['\x72\x65\x75\x73\x65\x41\x64\x6a'+_0x1f0130(0x2ac,'\x5a\x64\x28\x62')]??0x1343*-0x1+0x1*-0x1021+0x2364)),_0x17418f=Math[_0x1f0130(0x1b9,'\x61\x56\x4e\x5e')](-(-0xb8*0x2a+-0x1*-0x1277+0xbba),Math[_0x1f0130(0x331,'\x67\x53\x77\x59')](0x1685+-0x17*0x12e+-0x18a*-0x3,_0x5e79ba[_0x1f0130(0x1cc,'\x32\x56\x50\x56')+'\x6f\x73\x74']??-0xfef+-0x2229+0x3218)),_0x2af694=taskDomainEvidence(_0x33e5bc,_0x5e79ba[_0x1f0130(0x235,'\x51\x38\x74\x33')+_0x1f0130(0x232,'\x5a\x64\x28\x62')]),_0x18daca=TASK_DOMAIN_WEIGHT*_0x2af694,_0x579a85=(-0x8*0x9d+-0x4*-0x2ab+-0x5c4+0.6)*_0x1f37e4[_0x1f0130(0x3bd,'\x36\x67\x41\x72')]+(0x23dc+-0x482*-0x4+-0x35e4+0.4)*_0x498607[_0x1f0130(0x194,'\x4c\x26\x24\x56')]-_0x3c8837+CONFIDENCE_WEIGHT*_0x598b84+MEMORY_GRAPH_WEIGHT*_0x17418f+REUSE_WEIGHT*_0x44f2fa+_0x18daca,_0x3415c0=_0x498607['\x74\x61\x67']>-0xa*-0x34c+0x4*-0x705+-0x139*0x4||_0x498607[_0x1f0130(0x2c8,'\x65\x54\x26\x42')]>-0xb*0x10+-0x1*-0x139d+0x33*-0x5f?_0x1f0130(0x2b7,'\x5a\x48\x76\x4a')+'\x3d'+_0x498607['\x6c\x69\x74\x65\x72\x61\x6c'][_0x1f0130(0x293,'\x36\x5d\x35\x23')](-0x245e+0x10d2+0x2*0x9c7)+_0x1f0130(0x1db,'\x79\x71\x61\x44')+_0x498607[_0x1f0130(0x284,'\x32\x56\x50\x56')][_0x1f0130(0x382,'\x71\x21\x65\x44')](0x267*0x1+0xa2*0x38+0x41*-0x95)+_0x1f0130(0x36f,'\x54\x67\x49\x74')+_0x498607[_0x1f0130(0x216,'\x4c\x26\x24\x56')]['\x74\x6f\x46\x69\x78\x65\x64'](-0x25*0x12+-0x236+0x4d2)+'\x29':'',_0x482a87=['\x68\x65\x61\x6c\x74\x68\x3d'+_0x1f37e4[_0x1f0130(0x3bd,'\x36\x67\x41\x72')]['\x74\x6f\x46\x69\x78\x65\x64'](-0x3e*-0x1+0x19*0x4f+-0x3*0x2a6)+_0x1f0130(0x261,'\x28\x63\x66\x4a')+_0x1f37e4[_0x1f0130(0x1ed,'\x24\x6b\x59\x28')+'\x61\x74\x65'][_0x1f0130(0x366,'\x4c\x26\x24\x56')](-0x5f5+0x274+0x1f*0x1d)+'\x2c\x72\x65\x75\x73\x65\x3d'+_0x1f37e4[_0x1f0130(0x2b4,'\x63\x5d\x30\x23')+'\x6e\x74']+'\x29',_0x1f0130(0x214,'\x24\x23\x6e\x71')+_0x498607[_0x1f0130(0x337,'\x28\x63\x66\x4a')][_0x1f0130(0x22f,'\x50\x28\x4d\x35')](0x49+-0x893+-0x9*-0xec)+_0x3415c0];if(_0x3c8837>-0x1ded+0x208f+-0x1*0x2a2)_0x482a87[_0x1f0130(0x27a,'\x4d\x4c\x79\x5a')](_0x1f0130(0x2d2,'\x43\x4a\x66\x7a')+_0x1f0130(0x1c4,'\x5e\x66\x62\x6e')+'\x2d'+_0x3c8837[_0x1f0130(0x28f,'\x5a\x64\x28\x62')](0x5*0xc7+-0x1fab+0x1bca));if(_0x598b84>-0x636+0x2f*-0x70+-0x1*-0x1ac6)_0x482a87[_0x1f0130(0x38f,'\x6e\x5a\x53\x75')](_0x1f0130(0x1d8,'\x79\x77\x40\x49')+_0x1f0130(0x273,'\x79\x71\x61\x44')+_0x1f0130(0x2ce,'\x21\x48\x74\x58')+'\x65\x20\x2b'+(CONFIDENCE_WEIGHT*_0x598b84)[_0x1f0130(0x39a,'\x4d\x38\x62\x28')](-0x1*-0x1f7a+0xb92+-0x2b09)+_0x1f0130(0x1a8,'\x67\x53\x77\x59')+_0x598b84[_0x1f0130(0x26a,'\x4e\x65\x46\x73')](0x11ba+0xb89+-0x1d41)+'\x29');if(_0x17418f!==0x4*-0x8a4+0x16a9+0xbe7)_0x482a87['\x70\x75\x73\x68'](_0x1f0130(0x290,'\x54\x67\x49\x74')+_0x1f0130(0x266,'\x65\x54\x26\x42')+_0x1f0130(0x272,'\x67\x24\x36\x46')+_0x1f0130(0x1ec,'\x4d\x4c\x79\x5a')+(_0x17418f>=0x1553+-0x23e4+0xb*0x153?'\x2b':'')+(MEMORY_GRAPH_WEIGHT*_0x17418f)[_0x1f0130(0x316,'\x6f\x51\x59\x26')](-0x1*-0x268d+0x1dff+-0x4489)+_0x1f0130(0x192,'\x29\x61\x79\x40')+_0x17418f[_0x1f0130(0x1cb,'\x43\x4d\x44\x75')](0xb2*-0x2d+0x25e*0x3+0x1832)+'\x29');if(_0x44f2fa!==-0x15a3*0x1+-0x35*-0xa1+-0x5d9*0x2)_0x482a87[_0x1f0130(0x3c7,'\x5e\x66\x62\x6e')]('\x63\x72\x6f\x73\x73\x2d\x72\x75'+_0x1f0130(0x2b3,'\x63\x5d\x30\x23')+_0x1f0130(0x33f,'\x5a\x48\x76\x4a')+(_0x44f2fa>=-0xc84+-0x1473+0x61*0x57?'\x2b':'')+(REUSE_WEIGHT*_0x44f2fa)['\x74\x6f\x46\x69\x78\x65\x64'](0x5*-0x564+0x37f*0xb+-0xb7e)+(_0x1f0130(0x193,'\x30\x5a\x29\x29')+_0x1f0130(0x18b,'\x49\x30\x63\x29'))+_0x44f2fa[_0x1f0130(0x359,'\x28\x63\x66\x4a')](-0x1da2+-0x1*-0x129a+0xb0a)+'\x29');if(_0x18daca>-0x1fdb+-0x1c31+0x3c0c)_0x482a87[_0x1f0130(0x1c8,'\x5a\x48\x76\x4a')]('\x74\x61\x73\x6b\x5f\x64\x6f\x6d'+_0x1f0130(0x3a1,'\x71\x21\x65\x44')+_0x1f0130(0x394,'\x24\x6b\x59\x28')+_0x18daca[_0x1f0130(0x382,'\x71\x21\x65\x44')](0x2*-0x78b+-0x1a65*0x1+0x71*0x5e)+(_0x1f0130(0x1b2,'\x5a\x48\x76\x4a')+_0x1f0130(0x2ba,'\x4a\x6b\x75\x49'))+_0x2af694[_0x1f0130(0x2a2,'\x79\x71\x61\x44')](0x1*0x2543+-0xec3*0x1+0xb3f*-0x2)+'\x29');return{'\x67\x65\x6e\x65\x49\x64':_0x5e79ba[_0x1f0130(0x3c5,'\x51\x21\x38\x61')],..._0x5e79ba['\x61\x73\x73\x65\x74\x49\x64']?{'\x61\x73\x73\x65\x74\x49\x64':_0x5e79ba[_0x1f0130(0x36c,'\x45\x70\x4a\x33')]}:{},'\x73\x63\x6f\x72\x65':_0x579a85,'\x6d\x61\x74\x63\x68\x53\x63\x6f\x72\x65':_0x498607['\x73\x63\x6f\x72\x65'],'\x68\x65\x61\x6c\x74\x68':_0x1f37e4,'\x72\x65\x61\x73\x6f\x6e\x73':_0x482a87};}function _0x3468(){const _0x30b945=['\x57\x52\x75\x38\x57\x51\x7a\x62\x68\x71','\x41\x57\x50\x4f\x57\x52\x34\x41\x57\x37\x61','\x57\x51\x46\x64\x56\x6d\x6f\x79\x57\x36\x72\x64','\x57\x37\x46\x63\x52\x53\x6b\x4a\x57\x36\x38\x51\x57\x35\x75\x75','\x6a\x68\x2f\x64\x55\x38\x6b\x78\x57\x36\x53','\x57\x36\x71\x52\x57\x36\x34\x52\x57\x37\x76\x69','\x6f\x64\x75\x2f\x67\x6d\x6b\x65','\x7a\x72\x62\x4b\x6b\x6d\x6f\x36\x75\x59\x79','\x57\x4f\x57\x77\x42\x61\x79\x59\x64\x57','\x68\x68\x5a\x64\x50\x53\x6b\x45\x61\x53\x6b\x31','\x43\x57\x62\x61\x57\x52\x61\x77\x57\x37\x33\x63\x4b\x57','\x57\x50\x35\x42\x71\x57','\x57\x51\x74\x64\x50\x43\x6f\x63\x57\x36\x38','\x57\x36\x78\x63\x54\x6d\x6b\x2f\x57\x36\x71','\x57\x34\x37\x63\x4a\x61\x57','\x57\x37\x6c\x63\x4c\x6d\x6b\x54\x6b\x5a\x6c\x63\x51\x38\x6b\x4c\x57\x37\x53','\x6d\x38\x6b\x5a\x57\x36\x53\x79\x57\x37\x74\x63\x4b\x73\x57','\x57\x52\x69\x33\x57\x4f\x58\x39\x68\x38\x6b\x47','\x6e\x47\x62\x4c\x57\x36\x62\x36\x6e\x6d\x6f\x43\x57\x4f\x43','\x74\x53\x6f\x63\x57\x34\x37\x64\x49\x38\x6b\x6a','\x57\x51\x42\x64\x4b\x38\x6f\x7a\x57\x36\x48\x70\x57\x36\x72\x4d','\x57\x37\x79\x56\x6b\x4c\x31\x47\x42\x63\x61\x7a','\x68\x4c\x64\x64\x52\x6d\x6f\x42\x6a\x53\x6b\x57\x65\x53\x6f\x79','\x57\x36\x78\x63\x54\x6d\x6b\x33\x57\x36\x71\x2f\x57\x37\x61\x64\x57\x4f\x69','\x67\x68\x70\x64\x47\x38\x6b\x64\x63\x61','\x57\x51\x34\x50\x57\x37\x4b\x50\x57\x37\x34\x72\x69\x30\x79','\x57\x52\x4c\x4f\x57\x51\x52\x63\x50\x53\x6b\x30\x57\x37\x4f','\x57\x50\x64\x64\x55\x38\x6b\x76\x77\x38\x6b\x6e\x75\x47','\x6c\x71\x6a\x53\x57\x36\x54\x50\x69\x43\x6f\x42\x57\x4f\x43','\x57\x52\x72\x52\x76\x47','\x61\x62\x2f\x64\x49\x66\x53\x62\x46\x43\x6f\x7a','\x57\x36\x56\x63\x4c\x66\x38\x6a\x57\x37\x75\x71','\x6c\x6d\x6b\x48\x66\x74\x2f\x64\x51\x71','\x57\x4f\x58\x4f\x57\x4f\x37\x63\x50\x53\x6f\x6d\x57\x52\x34\x35\x57\x52\x47','\x6b\x38\x6b\x61\x6c\x77\x56\x63\x50\x57','\x67\x53\x6b\x76\x78\x4a\x76\x77\x6f\x30\x71','\x7a\x53\x6b\x51\x57\x35\x4e\x64\x52\x43\x6f\x39\x57\x37\x37\x64\x49\x38\x6b\x36','\x61\x6d\x6f\x7a\x57\x35\x68\x64\x4c\x6d\x6f\x42\x57\x35\x65\x6c\x6f\x71','\x6d\x61\x50\x70\x57\x36\x58\x30\x6d\x6d\x6f\x77','\x57\x52\x61\x52\x57\x4f\x62\x38','\x57\x37\x78\x64\x54\x33\x2f\x63\x4e\x57\x69\x45\x57\x37\x37\x63\x4a\x61','\x57\x4f\x30\x43\x43\x61\x61\x45\x64\x57','\x68\x47\x56\x64\x51\x6d\x6b\x56\x57\x50\x4c\x51\x57\x50\x58\x32','\x57\x34\x46\x63\x55\x47\x74\x63\x55\x43\x6b\x38\x6b\x65\x6a\x4f','\x57\x34\x6d\x4e\x74\x77\x43','\x57\x36\x4b\x45\x57\x50\x56\x63\x56\x38\x6b\x64\x57\x37\x34','\x46\x53\x6b\x79\x63\x53\x6b\x30\x57\x34\x5a\x64\x48\x43\x6b\x32\x57\x35\x4b','\x57\x37\x5a\x64\x51\x76\x70\x64\x56\x72\x68\x63\x52\x73\x30\x45\x66\x72\x33\x63\x48\x53\x6b\x63','\x57\x37\x65\x51\x63\x76\x4f','\x57\x51\x70\x63\x54\x61\x5a\x63\x52\x32\x64\x64\x56\x61','\x57\x35\x5a\x64\x56\x43\x6f\x43\x57\x50\x37\x64\x54\x66\x4f\x35\x57\x52\x4f','\x57\x34\x68\x64\x52\x77\x2f\x63\x47\x47','\x57\x4f\x50\x68\x73\x53\x6b\x74\x69\x61\x33\x63\x4c\x66\x65','\x42\x38\x6b\x73\x67\x38\x6f\x58','\x57\x37\x75\x7a\x57\x50\x5a\x64\x4f\x61','\x67\x48\x70\x64\x4d\x4c\x57\x62\x79\x43\x6f\x74','\x57\x4f\x6a\x7a\x6e\x71','\x61\x33\x6d\x45\x7a\x31\x68\x63\x4c\x38\x6b\x34\x57\x35\x4f','\x57\x34\x78\x63\x4c\x4c\x71\x63\x57\x35\x4b\x61\x57\x35\x4c\x7a','\x57\x36\x30\x4b\x6b\x65\x6a\x36\x7a\x4a\x79','\x74\x78\x61\x32\x42\x57','\x57\x52\x48\x4c\x76\x68\x70\x63\x4a\x61','\x6c\x73\x4b\x6b\x66\x6d\x6b\x69\x57\x34\x2f\x64\x4b\x57','\x57\x50\x34\x61\x69\x57','\x57\x37\x56\x63\x56\x6d\x6b\x47','\x57\x52\x4e\x64\x53\x43\x6f\x62','\x66\x43\x6b\x59\x61\x75\x34','\x6a\x66\x68\x64\x52\x43\x6b\x6e\x57\x35\x5a\x64\x51\x78\x57','\x57\x36\x2f\x64\x48\x6d\x6f\x36\x46\x43\x6f\x4e\x62\x47','\x6a\x71\x58\x4e\x57\x51\x76\x48\x6e\x6d\x6f\x67\x57\x4f\x43','\x57\x36\x64\x63\x56\x53\x6b\x48\x74\x38\x6b\x6a\x63\x53\x6b\x74\x74\x61','\x41\x6d\x6b\x76\x66\x43\x6b\x4c\x6f\x38\x6f\x50\x6c\x61','\x57\x36\x54\x2f\x57\x50\x4a\x64\x48\x6d\x6b\x44\x57\x4f\x4b\x57\x57\x34\x4f','\x46\x43\x6b\x38\x57\x37\x37\x64\x54\x38\x6f\x38\x57\x37\x4e\x64\x4a\x61','\x64\x6d\x6f\x73\x57\x36\x46\x64\x4b\x43\x6f\x41\x57\x34\x4f\x45\x6b\x61','\x57\x52\x79\x36\x57\x4f\x31\x58\x64\x53\x6b\x4b\x57\x50\x30\x63','\x6b\x6d\x6b\x33\x67\x57\x64\x63\x54\x6d\x6b\x42\x6a\x53\x6b\x6e','\x57\x51\x35\x38\x57\x50\x70\x64\x48\x53\x6b\x65\x57\x50\x4f\x39\x57\x50\x69','\x57\x37\x56\x64\x4c\x38\x6f\x31','\x70\x53\x6b\x36\x42\x71','\x57\x50\x4b\x45\x57\x51\x33\x63\x4d\x66\x68\x64\x48\x57\x70\x63\x51\x71','\x57\x35\x68\x63\x47\x61\x70\x63\x51\x38\x6b\x2f\x6b\x47','\x57\x51\x68\x63\x53\x61\x37\x63\x56\x4b\x65','\x57\x52\x4f\x50\x57\x37\x34\x4b\x57\x37\x38','\x57\x4f\x44\x4c\x57\x50\x46\x63\x4e\x38\x6f\x59\x57\x51\x43\x37\x57\x51\x71','\x57\x37\x66\x4c\x57\x50\x46\x64\x4e\x38\x6b\x45\x57\x50\x53','\x57\x50\x7a\x6d\x76\x67\x64\x63\x56\x57\x4b','\x68\x74\x4e\x64\x56\x38\x6f\x70','\x57\x4f\x61\x75\x57\x51\x4a\x63\x4b\x57','\x79\x47\x66\x48\x57\x52\x61\x61\x57\x37\x33\x64\x4d\x4e\x57','\x57\x52\x53\x50\x78\x67\x4a\x63\x49\x43\x6f\x42\x6d\x38\x6f\x6d','\x7a\x48\x31\x52\x57\x50\x61\x6b','\x57\x50\x38\x7a\x57\x35\x58\x4b\x62\x71\x34\x68\x45\x71','\x6e\x63\x43\x34\x68\x53\x6b\x79\x57\x37\x4e\x64\x48\x38\x6b\x6b','\x63\x76\x52\x64\x4f\x6d\x6b\x75\x69\x53\x6b\x59\x61\x57','\x79\x43\x6b\x79\x57\x36\x78\x64\x4c\x38\x6f\x64','\x6c\x63\x75\x55\x74\x61','\x57\x52\x46\x64\x52\x74\x66\x61\x43\x47','\x57\x37\x5a\x64\x4c\x38\x6f\x65\x57\x52\x6c\x64\x47\x77\x43\x6d\x57\x50\x43','\x45\x38\x6b\x63\x63\x53\x6b\x4c\x57\x35\x68\x64\x4f\x6d\x6b\x2b','\x57\x4f\x44\x61\x78\x33\x69','\x6f\x6d\x6b\x64\x57\x36\x4b\x50\x57\x37\x65','\x57\x51\x42\x64\x54\x43\x6f\x71\x57\x37\x72\x6a\x57\x36\x4c\x57','\x64\x33\x46\x64\x50\x43\x6b\x49\x57\x36\x33\x64\x47\x4c\x65\x72','\x57\x37\x50\x59\x57\x36\x4b\x4d\x57\x35\x79\x36\x44\x78\x71','\x6f\x6d\x6b\x4e\x66\x63\x4a\x64\x48\x75\x75','\x57\x52\x4e\x64\x53\x43\x6f\x6a','\x45\x43\x6b\x74\x66\x43\x6b\x4f','\x69\x6d\x6b\x64\x57\x37\x61\x73\x57\x36\x4e\x63\x55\x59\x30','\x57\x50\x64\x64\x4b\x76\x43\x61\x57\x35\x6d\x42\x57\x34\x69\x41','\x7a\x48\x58\x31\x57\x52\x57\x41\x57\x35\x68\x63\x4b\x57','\x63\x43\x6b\x74\x78\x76\x4a\x63\x4c\x61','\x63\x78\x5a\x64\x51\x43\x6b\x69\x6a\x6d\x6b\x2f\x66\x71','\x63\x38\x6f\x6f\x57\x37\x37\x64\x4c\x43\x6f\x76\x57\x35\x43\x6a\x6a\x71','\x70\x38\x6b\x50\x57\x36\x53\x6f\x57\x36\x4e\x63\x54\x49\x38\x75','\x57\x51\x74\x64\x56\x6d\x6f\x71\x57\x37\x6e\x64\x57\x36\x7a\x32\x77\x71','\x57\x36\x74\x63\x47\x61\x5a\x63\x56\x43\x6b\x7a\x69\x61','\x57\x34\x68\x63\x4e\x33\x61\x2b\x57\x36\x30','\x57\x37\x42\x63\x55\x38\x6b\x4f\x77\x6d\x6b\x70\x67\x47','\x57\x52\x50\x61\x57\x51\x5a\x64\x4e\x6d\x6b\x70\x57\x4f\x69\x73','\x44\x38\x6b\x36\x57\x35\x72\x70\x57\x37\x6d','\x6e\x76\x4a\x64\x4a\x43\x6b\x62\x57\x34\x46\x64\x55\x68\x65\x5a','\x57\x4f\x43\x41\x57\x52\x78\x63\x4e\x4c\x52\x64\x4f\x61\x78\x63\x4f\x47','\x57\x34\x2f\x63\x4e\x4c\x38\x6b\x57\x35\x75\x71\x57\x35\x76\x75','\x57\x51\x39\x2f\x57\x51\x6c\x63\x53\x38\x6b\x56\x57\x35\x4c\x50\x66\x47','\x45\x38\x6b\x66\x68\x61','\x42\x53\x6b\x64\x63\x6d\x6b\x4c\x62\x53\x6f\x65','\x57\x36\x68\x64\x4e\x43\x6f\x32\x57\x52\x37\x64\x4a\x4d\x43\x67\x57\x50\x57','\x57\x34\x6c\x64\x54\x32\x37\x63\x4e\x47','\x70\x66\x56\x64\x48\x43\x6b\x64\x57\x35\x64\x64\x50\x61','\x72\x43\x6b\x2b\x57\x36\x58\x65\x57\x36\x62\x44\x57\x34\x66\x4c','\x57\x4f\x47\x76\x57\x35\x61\x47\x78\x47','\x57\x51\x52\x64\x4f\x71\x66\x46\x44\x53\x6b\x30\x78\x6d\x6f\x6b','\x69\x53\x6b\x2b\x67\x47','\x57\x51\x35\x50\x57\x36\x4a\x63\x51\x57','\x57\x50\x7a\x6d\x76\x67\x64\x63\x48\x61\x58\x72\x57\x50\x65','\x57\x50\x4b\x42\x57\x35\x4b\x4e\x73\x61\x69\x41','\x71\x32\x78\x63\x51\x43\x6b\x41\x57\x34\x4b\x2b\x6a\x43\x6b\x70\x69\x53\x6b\x4f\x43\x38\x6f\x68\x75\x47','\x57\x52\x64\x64\x56\x64\x44\x46','\x75\x68\x4b\x6b\x42\x61','\x42\x4d\x5a\x63\x4b\x58\x57\x41\x46\x38\x6f\x54\x63\x61','\x73\x53\x6b\x49\x69\x53\x6b\x6b\x67\x71','\x71\x57\x7a\x35\x6b\x6d\x6f\x38\x45\x5a\x79\x59','\x57\x34\x56\x63\x4c\x66\x38\x6a\x57\x37\x75\x71','\x57\x4f\x38\x62\x42\x47\x4b\x34\x67\x43\x6f\x4a\x6c\x71','\x79\x71\x7a\x51\x57\x51\x30\x6c\x57\x36\x4f','\x42\x4d\x68\x63\x4e\x48\x30\x77\x46\x6d\x6f\x6a\x68\x47','\x57\x52\x50\x35\x57\x36\x2f\x63\x50\x4e\x2f\x63\x49\x4b\x42\x63\x4a\x71','\x57\x51\x4e\x63\x53\x62\x69','\x79\x6d\x6b\x33\x57\x34\x5a\x64\x51\x38\x6f\x4d\x57\x36\x78\x64\x4e\x6d\x6b\x36','\x74\x32\x5a\x63\x4e\x47\x4f\x77\x7a\x71','\x57\x4f\x31\x48\x57\x4f\x68\x63\x54\x38\x6f\x41\x57\x52\x43','\x57\x51\x38\x4a\x57\x36\x75\x56','\x57\x4f\x4c\x57\x57\x4f\x52\x63\x54\x53\x6b\x50\x57\x37\x6d\x39\x57\x52\x57','\x7a\x53\x6b\x33\x57\x36\x56\x64\x4f\x43\x6f\x39\x57\x36\x74\x64\x4c\x53\x6b\x52','\x57\x36\x72\x57\x57\x50\x52\x64\x48\x38\x6b\x6a\x57\x4f\x4b\x4e\x57\x34\x71','\x72\x68\x61\x72\x42\x4e\x74\x63\x4b\x71','\x6c\x43\x6b\x33\x65\x4b\x2f\x63\x50\x38\x6b\x72\x65\x6d\x6b\x45','\x68\x58\x46\x64\x54\x43\x6f\x30','\x57\x50\x6c\x64\x56\x38\x6b\x46','\x57\x4f\x43\x42\x57\x34\x79\x79\x74\x62\x6d\x6b\x44\x71','\x46\x6d\x6b\x57\x57\x37\x4a\x64\x51\x53\x6f\x59\x57\x37\x56\x64\x4a\x6d\x6b\x73','\x44\x61\x50\x51\x57\x52\x57\x6e\x57\x36\x5a\x63\x4b\x4e\x61','\x61\x62\x74\x64\x4a\x47','\x57\x37\x42\x63\x4d\x53\x6b\x37\x69\x5a\x2f\x63\x54\x53\x6b\x48\x57\x37\x4f','\x77\x33\x4a\x64\x53\x38\x6f\x65\x57\x50\x44\x34\x41\x43\x6f\x67','\x45\x38\x6f\x5a\x45\x4b\x33\x63\x54\x76\x4e\x63\x55\x32\x34','\x44\x61\x58\x50\x57\x51\x53\x6c','\x72\x4d\x30\x70\x7a\x31\x6c\x63\x48\x38\x6b\x34\x57\x34\x30','\x63\x71\x5a\x64\x52\x6d\x6b\x4b\x57\x4f\x58\x76\x57\x4f\x4f','\x67\x38\x6b\x49\x76\x59\x35\x6b\x6b\x57','\x57\x34\x38\x41\x70\x78\x6e\x39\x57\x34\x75\x42\x6b\x57','\x70\x38\x6b\x50\x79\x65\x37\x63\x52\x57\x75','\x57\x36\x6c\x63\x56\x43\x6b\x50\x74\x38\x6b\x4a\x67\x47','\x57\x34\x4e\x63\x4b\x66\x75','\x6a\x53\x6b\x39\x64\x75\x70\x63\x53\x6d\x6b\x36\x6d\x6d\x6b\x63','\x75\x68\x79\x71\x45\x76\x47','\x63\x72\x5a\x64\x52\x6d\x6b\x4f\x57\x4f\x6e\x74\x57\x50\x50\x58','\x6a\x53\x6b\x37\x65\x75\x71','\x57\x35\x4a\x64\x54\x33\x69','\x6e\x4c\x46\x64\x48\x43\x6b\x61','\x61\x72\x4e\x64\x48\x4c\x4f\x6c','\x6e\x43\x6b\x30\x7a\x30\x30','\x67\x64\x75\x2f\x67\x6d\x6b\x65\x57\x36\x70\x64\x4b\x57','\x61\x6d\x6f\x70\x57\x34\x46\x64\x4c\x38\x6f\x67\x57\x34\x61\x70','\x57\x50\x69\x42\x57\x51\x44\x45\x6b\x47','\x57\x36\x6e\x4e\x57\x35\x71\x4b\x74\x38\x6f\x57\x57\x35\x57\x47\x6a\x4b\x46\x63\x4d\x61\x47\x45','\x6f\x53\x6f\x7a\x67\x53\x6b\x56\x57\x34\x56\x64\x4a\x38\x6f\x4e','\x57\x35\x46\x63\x49\x49\x74\x63\x53\x43\x6b\x4f\x69\x75\x71','\x6e\x63\x38\x49','\x57\x36\x64\x63\x54\x53\x6b\x49\x63\x53\x6b\x79\x67\x38\x6b\x71\x78\x57','\x57\x34\x53\x36\x77\x78\x65\x2f\x57\x51\x30\x77','\x63\x38\x6b\x2b\x77\x74\x6e\x43\x70\x71','\x57\x34\x4a\x64\x4f\x65\x4e\x63\x50\x59\x6d','\x57\x36\x68\x63\x54\x38\x6b\x4b\x78\x38\x6b\x68\x67\x38\x6b\x75\x74\x47','\x57\x52\x34\x58\x57\x52\x62\x37\x63\x43\x6b\x33\x57\x4f\x4f\x6f','\x57\x51\x70\x64\x51\x5a\x62\x78\x78\x53\x6b\x4b','\x57\x52\x2f\x64\x4e\x43\x6b\x57\x65\x64\x52\x63\x55\x38\x6b\x4a\x57\x37\x30','\x57\x36\x74\x63\x51\x38\x6b\x30\x74\x38\x6b\x45\x6e\x38\x6b\x45','\x63\x67\x33\x64\x55\x53\x6b\x73\x6a\x43\x6b\x32','\x71\x4e\x69\x41\x7a\x75\x4e\x64\x4d\x6d\x6b\x31\x57\x35\x57','\x41\x6d\x6b\x38\x57\x37\x68\x64\x4f\x43\x6f\x41\x57\x37\x6d','\x64\x38\x6f\x47\x57\x34\x4e\x64\x51\x43\x6f\x68','\x57\x37\x6c\x63\x54\x6d\x6b\x4a\x57\x37\x34\x33\x57\x37\x61\x43\x57\x51\x4f','\x6c\x43\x6b\x5a\x62\x57','\x6e\x6d\x6b\x50\x57\x37\x79\x7a','\x79\x61\x50\x59','\x46\x6d\x6b\x77\x57\x34\x35\x55\x57\x34\x54\x59\x57\x36\x54\x41','\x57\x51\x30\x4f\x57\x36\x57\x4a\x57\x37\x75\x71\x6c\x4b\x4b','\x73\x6d\x6b\x75\x67\x6d\x6b\x5a\x57\x34\x52\x64\x48\x57','\x6b\x6d\x6b\x2b\x46\x71','\x6f\x64\x75\x2f\x67\x6d\x6b\x65\x57\x36\x70\x64\x4b\x57','\x57\x51\x39\x48\x77\x78\x74\x63\x49\x38\x6f\x75','\x57\x34\x78\x63\x4b\x4d\x65\x6a\x57\x35\x69\x76\x57\x35\x58\x6f','\x57\x52\x35\x57\x78\x77\x70\x64\x4e\x53\x6b\x41\x70\x38\x6f\x73','\x79\x6d\x6b\x66\x72\x55\x45\x6e\x52\x2b\x77\x4a\x4a\x6f\x41\x69\x53\x45\x77\x6a\x56\x47\x65','\x57\x36\x58\x2b\x57\x51\x4e\x64\x48\x53\x6b\x6b\x57\x50\x57\x4e\x57\x34\x43','\x57\x52\x4f\x6a\x57\x51\x37\x63\x4d\x31\x56\x64\x4e\x57\x70\x63\x4d\x57','\x6b\x43\x6b\x38\x63\x30\x78\x63\x55\x38\x6b\x42\x70\x6d\x6b\x43','\x57\x36\x2f\x63\x47\x6d\x6b\x4d\x64\x47','\x57\x37\x62\x30\x57\x4f\x70\x64\x4d\x6d\x6b\x6f\x57\x51\x53\x52\x57\x35\x4f','\x62\x6d\x6f\x73\x57\x35\x6c\x64\x4e\x43\x6f\x61\x57\x36\x4f\x6f','\x57\x51\x75\x57\x57\x51\x76\x39\x62\x6d\x6b\x47\x57\x4f\x30','\x57\x36\x39\x30\x57\x50\x56\x64\x48\x6d\x6b\x7a\x57\x50\x65\x67\x57\x34\x61','\x57\x35\x6c\x64\x55\x78\x6c\x63\x4a\x47\x79\x46\x57\x37\x68\x63\x4a\x61','\x57\x51\x43\x30\x57\x51\x53','\x57\x37\x69\x46\x57\x4f\x33\x63\x56\x53\x6b\x6d\x57\x36\x33\x63\x56\x43\x6f\x72','\x57\x37\x78\x64\x51\x74\x46\x63\x47\x67\x37\x64\x4a\x64\x69\x49','\x6e\x78\x46\x64\x4a\x38\x6f\x65\x57\x34\x4e\x64\x52\x77\x57\x4d','\x57\x37\x4b\x55\x6f\x31\x6a\x57\x42\x67\x75\x6e','\x57\x35\x78\x64\x53\x77\x2f\x63\x4e\x47\x79\x78\x57\x37\x5a\x63\x4e\x71','\x61\x6d\x6f\x72\x57\x34\x4a\x64\x4e\x38\x6f\x72\x57\x34\x30\x70\x6f\x71','\x57\x51\x57\x30\x57\x36\x69\x53\x57\x36\x39\x44','\x57\x51\x53\x4e\x57\x36\x75\x55\x57\x37\x69\x72\x79\x4c\x75','\x57\x37\x79\x4c\x6c\x66\x39\x32\x42\x71','\x69\x65\x5a\x64\x4a\x53\x6b\x63\x57\x34\x68\x64\x56\x4d\x4f\x47','\x57\x51\x35\x31\x57\x36\x2f\x63\x50\x49\x33\x63\x47\x75\x70\x63\x4a\x61','\x57\x36\x44\x4a\x57\x50\x4a\x64\x51\x6d\x6b\x65\x57\x50\x30\x51\x57\x35\x53','\x57\x51\x37\x63\x52\x6d\x6b\x4d\x74\x43\x6f\x78','\x57\x34\x43\x61\x74\x47','\x57\x34\x4e\x63\x49\x75\x65\x61\x57\x35\x6d\x67\x57\x35\x66\x6f','\x63\x5a\x2f\x64\x56\x43\x6f\x63\x57\x50\x54\x59','\x57\x34\x4f\x45\x45\x57\x53\x59','\x57\x52\x71\x38\x57\x50\x44\x58\x67\x61','\x57\x50\x68\x64\x4e\x76\x78\x64\x51\x6d\x6f\x4a\x43\x72\x76\x63\x6c\x75\x4b\x31\x61\x74\x30','\x57\x51\x6c\x64\x4f\x73\x58\x72\x43\x53\x6b\x4b\x68\x38\x6f\x66','\x57\x34\x64\x63\x4c\x66\x79\x6e\x57\x35\x38\x6e','\x57\x36\x42\x63\x55\x43\x6b\x50\x74\x53\x6b\x64\x67\x53\x6b\x42\x74\x47','\x57\x52\x54\x54\x76\x4d\x6d','\x73\x71\x7a\x32\x69\x38\x6f\x43\x46\x5a\x75\x36','\x57\x51\x78\x64\x55\x4a\x31\x41','\x57\x4f\x30\x45\x57\x51\x2f\x63\x4d\x68\x56\x64\x4c\x57','\x6e\x58\x66\x47\x57\x36\x4c\x47\x6d\x6d\x6f\x77\x57\x34\x71','\x43\x38\x6b\x74\x57\x34\x44\x53\x57\x34\x50\x32','\x66\x49\x64\x64\x53\x6d\x6f\x7a\x57\x50\x30','\x43\x4d\x74\x63\x4d\x4c\x4b','\x57\x50\x4b\x6d\x46\x71\x79\x59\x67\x6d\x6f\x58\x63\x57','\x62\x6d\x6f\x74\x57\x34\x5a\x64\x53\x43\x6f\x71','\x69\x4c\x56\x64\x4d\x6d\x6b\x6c\x57\x34\x4a\x64\x55\x4e\x30\x48','\x57\x52\x42\x63\x54\x62\x68\x63\x50\x75\x78\x64\x52\x47\x75\x74','\x43\x67\x56\x63\x4b\x58\x57\x44\x6b\x38\x6f\x52\x64\x71','\x75\x68\x79\x71\x45\x76\x4a\x63\x4b\x43\x6b\x46\x57\x35\x79','\x6a\x72\x7a\x36\x57\x36\x62\x34\x68\x6d\x6f\x77','\x62\x38\x6b\x56\x62\x75\x47\x77\x43\x53\x6b\x30','\x76\x6d\x6b\x74\x57\x50\x4a\x63\x49\x38\x6b\x61\x57\x50\x6d\x53\x61\x53\x6b\x43\x57\x35\x62\x43\x57\x35\x34','\x57\x34\x30\x56\x57\x50\x4e\x63\x4b\x38\x6b\x7a','\x57\x52\x74\x63\x50\x62\x68\x63\x4f\x47','\x46\x65\x5a\x64\x4a\x53\x6b\x72\x57\x35\x46\x64\x51\x73\x75','\x6f\x68\x42\x64\x56\x43\x6b\x76\x70\x57','\x57\x35\x37\x63\x48\x53\x6b\x4d\x61\x59\x46\x63\x4c\x53\x6b\x49','\x70\x49\x6d\x49\x67\x6d\x6b\x35\x57\x34\x34','\x57\x37\x4f\x35\x6f\x76\x31\x36\x45\x49\x71\x45','\x57\x37\x66\x30\x57\x50\x52\x64\x4a\x53\x6b\x69\x57\x50\x57\x48\x57\x34\x53','\x61\x72\x70\x64\x4a\x4b\x79\x70\x46\x38\x6f\x7a\x76\x47','\x57\x35\x46\x64\x53\x78\x64\x63\x4e\x47\x4f\x6a','\x57\x50\x4b\x78\x57\x51\x4a\x63\x4e\x4c\x43','\x57\x37\x5a\x64\x47\x53\x6f\x56\x7a\x38\x6f\x2b\x64\x43\x6f\x35','\x57\x51\x68\x64\x53\x38\x6f\x74\x57\x52\x7a\x55\x57\x36\x35\x57\x43\x47','\x57\x37\x70\x63\x53\x38\x6b\x31\x57\x51\x4f\x53\x57\x37\x4b\x41\x57\x51\x4f','\x61\x6d\x6b\x4e\x63\x30\x47','\x57\x51\x75\x4e\x57\x37\x38\x50\x57\x37\x6d\x4d\x43\x31\x6d','\x57\x4f\x70\x64\x51\x5a\x62\x78\x78\x53\x6b\x4b','\x57\x37\x42\x63\x56\x43\x6b\x52\x74\x38\x6b\x6a\x63\x53\x6b\x46\x78\x47','\x68\x58\x2f\x64\x49\x65\x79\x38\x44\x53\x6f\x44\x45\x47','\x45\x32\x64\x63\x4b\x72\x30','\x57\x4f\x44\x4d\x57\x4f\x70\x63\x54\x38\x6f\x33\x57\x37\x6d\x38\x57\x51\x75','\x57\x51\x78\x64\x56\x73\x31\x78\x79\x38\x6b\x6a\x77\x57','\x63\x38\x6b\x33\x77\x64\x35\x77\x70\x65\x61\x4e','\x57\x34\x33\x63\x49\x4a\x33\x63\x54\x43\x6b\x58\x6d\x65\x6e\x48','\x71\x57\x7a\x35\x6b\x6d\x6f\x68\x46\x47','\x57\x37\x61\x6b\x57\x4f\x5a\x63\x54\x6d\x6b\x74\x57\x36\x4a\x63\x56\x43\x6f\x72','\x62\x38\x6b\x50\x64\x30\x6d','\x57\x37\x6c\x63\x55\x6d\x6b\x4b\x57\x36\x38\x53\x57\x37\x65\x7a\x57\x51\x65','\x46\x43\x6b\x75\x66\x38\x6b\x4c\x57\x36\x5a\x64\x4a\x71','\x63\x68\x64\x64\x52\x38\x6b\x76\x6b\x53\x6b\x39\x66\x71','\x35\x6c\x36\x6a\x35\x79\x59\x48\x35\x79\x59\x70\x36\x79\x73\x78\x61\x47','\x57\x37\x69\x5a\x65\x31\x66\x6d','\x7a\x61\x62\x31','\x57\x52\x50\x48\x76\x4d\x6c\x63\x52\x43\x6f\x45','\x6b\x49\x75\x4a\x64\x38\x6b\x76','\x57\x35\x48\x61\x6b\x76\x62\x55\x64\x43\x6f\x4e\x66\x43\x6f\x57\x57\x34\x35\x58','\x57\x50\x4b\x79\x57\x51\x37\x63\x4a\x31\x43','\x57\x36\x44\x2f\x57\x50\x70\x63\x49\x38\x6b\x79\x57\x4f\x30\x4f\x57\x34\x4f','\x57\x52\x6a\x35\x57\x37\x78\x63\x50\x68\x4e\x63\x4a\x57','\x71\x47\x58\x4c\x6c\x53\x6f\x52\x46\x4d\x69\x38','\x57\x4f\x6a\x62\x77\x32\x68\x63\x4d\x72\x4f','\x57\x52\x79\x36\x57\x4f\x31\x58\x6e\x43\x6b\x48','\x6b\x38\x6f\x64\x71\x6d\x6f\x5a\x57\x50\x68\x63\x4d\x43\x6b\x43\x57\x37\x6e\x30\x78\x33\x57\x43','\x68\x49\x4a\x64\x4f\x43\x6f\x68\x57\x50\x44\x35\x46\x6d\x6b\x70','\x64\x53\x6b\x35\x72\x64\x4c\x41\x70\x67\x79\x32','\x57\x34\x2f\x63\x48\x76\x71\x69\x57\x4f\x7a\x75\x57\x35\x76\x63','\x57\x52\x70\x64\x54\x43\x6f\x46\x57\x36\x6a\x56\x57\x36\x6d','\x57\x36\x56\x64\x48\x6d\x6f\x36\x46\x43\x6f\x2b\x64\x71','\x57\x52\x46\x64\x4f\x73\x58\x67','\x70\x43\x6f\x72\x78\x53\x6f\x32\x45\x6d\x6b\x71\x46\x75\x4f\x71\x77\x4b\x4c\x64\x6f\x47','\x41\x6d\x6b\x77\x57\x34\x58\x4d\x57\x34\x7a\x2b','\x57\x34\x2f\x63\x4d\x33\x4f\x75\x57\x37\x38','\x57\x52\x46\x64\x4f\x49\x54\x76','\x57\x4f\x7a\x48\x57\x4f\x68\x63\x54\x43\x6f\x4e\x57\x52\x53','\x57\x50\x4f\x70\x57\x34\x30\x39','\x62\x38\x6b\x33\x65\x75\x78\x63\x4e\x6d\x6b\x6d','\x46\x43\x6b\x68\x61\x43\x6b\x6a\x69\x43\x6f\x71\x70\x76\x75','\x57\x52\x39\x49\x57\x4f\x33\x63\x56\x6d\x6b\x4a\x57\x37\x66\x49','\x68\x64\x78\x64\x56\x38\x6f\x6f\x57\x52\x66\x56','\x57\x34\x79\x53\x72\x68\x6d\x2f\x57\x4f\x57','\x57\x50\x42\x64\x51\x53\x6b\x79\x76\x47','\x57\x51\x50\x48\x75\x77\x64\x63\x4a\x6d\x6f\x6f\x6b\x43\x6f\x30','\x57\x4f\x74\x64\x56\x43\x6b\x75\x74\x6d\x6b\x48','\x57\x50\x4c\x54\x57\x4f\x4a\x63\x56\x6d\x6f\x59\x57\x52\x38\x52\x57\x4f\x65','\x57\x51\x35\x57\x57\x37\x52\x63\x54\x32\x4a\x63\x48\x4c\x4f','\x57\x34\x42\x63\x4e\x76\x38','\x71\x63\x76\x32\x69\x43\x6f\x49\x45\x63\x6d\x34','\x57\x51\x46\x64\x53\x38\x6f\x45\x57\x37\x76\x64\x57\x36\x6e\x66\x41\x71','\x67\x49\x70\x64\x4f\x53\x6f\x6f\x57\x4f\x58\x63\x45\x71','\x57\x51\x42\x64\x54\x43\x6f\x71\x57\x37\x72\x6a\x57\x36\x4b','\x6f\x53\x6b\x30\x68\x5a\x2f\x64\x54\x71','\x57\x34\x74\x63\x47\x61\x5a\x63\x56\x43\x6b\x7a\x69\x61','\x57\x4f\x38\x6c\x57\x51\x4a\x63\x4d\x4c\x46\x64\x4e\x71\x70\x63\x55\x71','\x6b\x59\x6d\x54\x64\x53\x6b\x46\x57\x34\x74\x64\x48\x61','\x42\x4d\x52\x63\x4b\x61\x53\x43','\x62\x53\x6f\x6a\x57\x34\x37\x64\x4b\x43\x6f\x78\x57\x34\x79','\x57\x52\x6e\x52\x7a\x32\x52\x63\x48\x43\x6f\x6f\x6f\x43\x6f\x6b','\x45\x77\x64\x63\x4a\x61\x30\x71\x7a\x38\x6f\x4b\x63\x71','\x57\x4f\x50\x69\x71\x43\x6b\x6f\x6a\x47','\x7a\x53\x6b\x33\x57\x37\x56\x64\x4f\x43\x6f\x52','\x57\x51\x4b\x48\x57\x36\x34\x4b\x57\x36\x39\x79\x42\x30\x71','\x68\x72\x5a\x64\x52\x38\x6b\x53\x57\x51\x72\x64','\x45\x68\x56\x63\x4a\x62\x61\x77\x7a\x71','\x57\x51\x39\x34\x57\x51\x74\x63\x4a\x43\x6b\x41','\x72\x78\x71\x74\x7a\x31\x2f\x63\x4c\x6d\x6b\x36\x57\x35\x69','\x57\x36\x69\x33\x66\x76\x54\x6b\x57\x36\x4b','\x57\x52\x54\x52\x73\x4d\x74\x63\x47\x43\x6f\x45\x45\x53\x6f\x66','\x69\x31\x68\x64\x4d\x43\x6b\x71','\x63\x43\x6f\x6f\x57\x34\x6c\x64\x4d\x43\x6f\x79\x57\x34\x79\x50\x69\x47','\x57\x36\x34\x76\x57\x51\x68\x63\x56\x6d\x6b\x62\x57\x36\x2f\x63\x55\x38\x6f\x44','\x57\x36\x33\x63\x54\x53\x6b\x39\x63\x74\x52\x63\x56\x6d\x6b\x4a','\x6c\x6d\x6b\x33\x65\x75\x46\x63\x4f\x43\x6b\x61','\x57\x52\x71\x58\x57\x4f\x79','\x65\x73\x65\x44\x7a\x33\x64\x63\x55\x53\x6b\x56\x57\x36\x57','\x41\x53\x6b\x33\x57\x37\x4a\x64\x52\x43\x6f\x39\x57\x37\x6c\x63\x4b\x53\x6b\x33','\x57\x35\x2f\x63\x4b\x4c\x34\x45\x57\x35\x4b\x71\x57\x37\x7a\x76','\x57\x4f\x43\x79\x41\x47\x79\x2f\x6f\x6d\x6f\x59\x6b\x57','\x57\x52\x61\x38\x57\x50\x44\x39\x63\x53\x6b\x47','\x76\x57\x39\x2b\x6c\x53\x6f\x52','\x57\x34\x47\x4d\x72\x67\x65\x34','\x41\x43\x6b\x42\x57\x34\x54\x48\x57\x34\x57','\x57\x52\x70\x63\x56\x48\x46\x63\x50\x4b\x33\x64\x4d\x71\x69\x65','\x57\x36\x68\x64\x4b\x43\x6f\x38\x57\x52\x68\x64\x47\x78\x38\x43\x57\x52\x69','\x70\x6d\x6b\x4a\x64\x49\x4a\x64\x51\x30\x34\x48\x57\x52\x6d','\x43\x38\x6b\x46\x68\x43\x6b\x4c\x57\x35\x30','\x6e\x53\x6b\x36\x45\x71','\x75\x78\x61\x45\x45\x66\x6c\x63\x4d\x57','\x64\x62\x62\x49\x6c\x53\x6f\x54\x6a\x57','\x57\x37\x56\x63\x56\x6d\x6b\x4b\x57\x36\x4b\x32\x57\x34\x38\x61\x57\x52\x30','\x42\x68\x6a\x39\x72\x6d\x6f\x68\x57\x50\x52\x63\x4a\x38\x6b\x56\x57\x4f\x6e\x33\x6d\x4d\x57\x59','\x45\x53\x6b\x66\x63\x43\x6b\x59\x6b\x53\x6f\x65\x64\x4b\x34','\x57\x37\x42\x63\x54\x38\x6b\x51\x74\x57','\x57\x36\x71\x59\x66\x75\x62\x71\x57\x51\x65\x51\x68\x61','\x57\x36\x61\x58\x64\x4c\x54\x2b\x57\x36\x30\x2f\x61\x61','\x57\x52\x6c\x64\x53\x43\x6f\x44\x57\x36\x54\x65\x57\x36\x7a\x47\x42\x71','\x77\x6d\x6b\x56\x64\x66\x69\x73\x43\x6d\x6b\x30\x57\x35\x4b','\x64\x33\x42\x64\x4a\x53\x6b\x73\x6d\x38\x6b\x30\x61\x47','\x79\x61\x50\x4f\x57\x52\x57\x4e\x57\x37\x57','\x57\x51\x4e\x63\x54\x61\x70\x63\x50\x68\x56\x64\x56\x72\x43\x77','\x72\x57\x6a\x4a\x6b\x6d\x6f\x50\x44\x74\x61\x49','\x46\x2b\x41\x75\x4f\x55\x73\x2b\x4d\x2b\x77\x6f\x55\x55\x77\x6f\x54\x45\x4d\x66\x52\x68\x2f\x64\x51\x47','\x57\x34\x4b\x48\x72\x78\x30\x4f\x57\x4f\x65','\x57\x34\x66\x2b\x57\x4f\x70\x64\x48\x43\x6b\x46','\x57\x37\x34\x31\x6b\x4c\x4b','\x57\x51\x4b\x32\x57\x36\x6e\x51\x57\x37\x71\x61\x44\x30\x69','\x57\x36\x68\x64\x54\x43\x6b\x47\x74\x38\x6b\x65\x67\x38\x6f\x41\x77\x71','\x44\x38\x6b\x77\x57\x35\x69','\x57\x4f\x74\x64\x54\x38\x6b\x43\x75\x6d\x6b\x4c\x77\x4d\x69\x2f','\x57\x35\x42\x64\x56\x77\x47','\x57\x4f\x31\x66\x73\x61','\x57\x51\x33\x64\x4f\x64\x50\x78\x42\x57','\x57\x4f\x4b\x79\x41\x47\x61\x57\x62\x6d\x6f\x57\x69\x61','\x42\x78\x5a\x63\x4a\x62\x65','\x57\x4f\x58\x54\x57\x4f\x70\x63\x50\x53\x6f\x32\x57\x51\x65','\x57\x50\x62\x44\x77\x77\x30','\x57\x51\x53\x59\x57\x36\x34\x55','\x45\x68\x4e\x63\x4c\x48\x34\x43\x7a\x43\x6f\x54\x67\x61','\x57\x36\x44\x2f\x57\x50\x64\x64\x48\x6d\x6b\x7a\x57\x4f\x53\x48','\x6d\x38\x6b\x58\x65\x66\x6c\x63\x53\x61','\x57\x35\x70\x63\x49\x71\x56\x63\x55\x38\x6b\x35\x6d\x61\x62\x56','\x64\x43\x6b\x34\x75\x33\x50\x6d\x70\x75\x30\x32','\x57\x52\x62\x54\x76\x47','\x57\x37\x7a\x57\x57\x50\x65','\x57\x37\x64\x63\x54\x6d\x6b\x2b\x57\x36\x34','\x57\x4f\x61\x77\x44\x57\x53','\x67\x4d\x33\x64\x51\x38\x6b\x74','\x57\x50\x4c\x53\x57\x4f\x37\x63\x54\x53\x6f\x38\x57\x51\x71\x43\x57\x51\x75','\x57\x51\x78\x64\x56\x64\x6e\x37\x43\x57','\x57\x51\x30\x4e\x57\x36\x38','\x63\x59\x78\x64\x4f\x53\x6f\x64','\x68\x58\x42\x64\x53\x6d\x6f\x68\x57\x50\x72\x50\x46\x6d\x6b\x79','\x57\x34\x66\x2b\x57\x4f\x74\x64\x4d\x38\x6b\x45\x57\x50\x53','\x57\x52\x33\x64\x53\x38\x6f\x48\x57\x36\x6a\x69\x57\x36\x7a\x56\x43\x47','\x57\x4f\x70\x64\x53\x43\x6b\x39\x76\x38\x6b\x38\x75\x33\x75','\x66\x53\x6f\x63\x57\x34\x37\x64\x49\x6d\x6f\x72\x57\x34\x44\x6b\x69\x61','\x45\x43\x6b\x6b\x62\x38\x6b\x30\x6b\x53\x6f\x62\x70\x78\x34','\x6b\x57\x58\x50\x57\x52\x43\x69\x57\x51\x75','\x57\x50\x54\x67\x41\x38\x6b\x74\x6e\x47\x33\x64\x4e\x71','\x57\x35\x4f\x47\x78\x4e\x66\x52\x57\x4f\x69\x45\x57\x35\x43','\x79\x38\x6f\x55\x6d\x72\x4e\x64\x51\x48\x4a\x64\x51\x4e\x46\x63\x4b\x53\x6f\x52\x72\x53\x6f\x54\x7a\x61','\x57\x4f\x44\x69\x78\x47','\x57\x36\x31\x4a\x57\x50\x78\x64\x4a\x53\x6b\x70\x57\x51\x38\x48\x57\x34\x65','\x57\x4f\x70\x64\x4e\x38\x6b\x52\x74\x43\x6b\x6c','\x6d\x63\x4b\x49','\x57\x50\x47\x41\x57\x51\x2f\x63\x4d\x76\x33\x64\x4e\x47','\x57\x36\x57\x32\x66\x61','\x57\x34\x52\x63\x4e\x4b\x6d\x70\x57\x35\x4b\x71\x57\x50\x62\x44','\x69\x4c\x56\x64\x49\x53\x6b\x78\x57\x34\x56\x64\x4f\x47','\x43\x6d\x6b\x79\x57\x34\x54\x53','\x44\x61\x7a\x48\x57\x52\x43\x70\x57\x37\x74\x64\x4d\x4e\x4b','\x57\x36\x71\x58\x68\x58\x6a\x41\x57\x36\x4b\x48\x63\x57','\x6e\x47\x62\x4f\x57\x37\x7a\x4a\x6f\x38\x6f\x62','\x57\x37\x68\x63\x54\x38\x6b\x62\x71\x38\x6b\x73\x67\x38\x6b\x45','\x57\x37\x66\x39\x57\x4f\x70\x64\x4a\x61','\x57\x50\x4c\x6d\x78\x49\x78\x63\x4c\x58\x35\x77\x57\x50\x30','\x63\x68\x52\x64\x50\x38\x6b\x6a\x6c\x47','\x57\x51\x38\x4a\x57\x36\x75\x56\x57\x35\x69\x72','\x57\x34\x78\x63\x4e\x4c\x38','\x57\x51\x5a\x64\x52\x59\x30','\x57\x4f\x4e\x63\x48\x61\x78\x63\x49\x66\x61','\x57\x37\x4e\x63\x4d\x53\x6b\x4e\x62\x74\x42\x63\x55\x38\x6f\x4d\x57\x37\x71','\x6b\x38\x6f\x6a\x6c\x6d\x6b\x6b\x57\x36\x6c\x64\x56\x43\x6b\x69\x57\x36\x4b','\x57\x4f\x6c\x64\x52\x43\x6b\x70','\x57\x36\x79\x73\x61\x4d\x7a\x4a','\x57\x50\x34\x75\x57\x52\x78\x63\x4e\x66\x37\x64\x4f\x58\x70\x63\x4f\x71','\x69\x57\x62\x4e\x57\x36\x62\x2b\x6e\x6d\x6f\x67\x57\x4f\x30','\x57\x34\x37\x63\x55\x53\x6b\x4b\x69\x63\x69','\x67\x6d\x6b\x30\x45\x31\x4a\x63\x52\x4c\x34','\x57\x35\x5a\x64\x55\x77\x74\x63\x50\x57\x34\x70\x57\x37\x70\x63\x4b\x61','\x57\x37\x4a\x63\x51\x43\x6b\x35\x57\x36\x43\x37\x57\x52\x57\x63\x57\x51\x4f','\x57\x36\x74\x63\x55\x6d\x6b\x4c\x57\x37\x4b\x37\x57\x35\x38\x46\x57\x52\x4f','\x68\x72\x5a\x64\x54\x71','\x57\x37\x4e\x63\x4d\x53\x6b\x4e\x62\x74\x42\x63\x55\x38\x6b\x62\x57\x37\x79','\x57\x52\x46\x63\x4d\x43\x6b\x38\x65\x4a\x42\x63\x52\x43\x6b\x4e\x57\x37\x38','\x57\x51\x46\x64\x56\x38\x6f\x43\x57\x36\x69','\x69\x62\x44\x47\x57\x36\x6e\x34\x67\x6d\x6f\x44\x57\x4f\x61','\x57\x34\x64\x63\x47\x66\x38','\x57\x35\x42\x64\x56\x78\x6c\x63\x4a\x59\x79\x46','\x57\x36\x30\x36\x68\x76\x6e\x6b\x57\x37\x75','\x63\x61\x44\x34\x69\x6d\x6f\x56\x43\x59\x58\x4d','\x61\x72\x70\x64\x4a\x4b\x79\x70\x46\x38\x6f\x7a','\x6b\x49\x6d\x47\x67\x6d\x6b\x74\x57\x35\x37\x64\x4b\x53\x6b\x43','\x69\x71\x54\x53\x57\x51\x76\x2f\x6d\x6d\x6f\x45\x57\x4f\x65','\x57\x36\x56\x63\x48\x38\x6b\x38\x63\x57','\x79\x78\x35\x39\x73\x53\x6f\x69\x57\x50\x2f\x64\x55\x53\x6b\x72\x57\x51\x35\x53\x65\x4e\x61','\x41\x47\x50\x52\x57\x52\x79\x43\x57\x36\x68\x63\x53\x4d\x69','\x57\x36\x6c\x64\x4a\x43\x6f\x4f\x57\x52\x43','\x65\x72\x56\x64\x48\x30\x57\x68\x44\x38\x6f\x6c\x42\x57','\x76\x33\x71\x79\x71\x4c\x70\x63\x48\x43\x6b\x53\x57\x34\x30','\x57\x36\x6e\x49\x57\x4f\x78\x64\x4a\x53\x6b\x46\x57\x51\x65\x47','\x57\x36\x69\x57\x63\x71','\x78\x43\x6b\x75\x66\x38\x6b\x4c\x57\x36\x5a\x64\x4a\x71','\x57\x51\x66\x42\x76\x77\x70\x63\x4e\x57\x66\x61\x57\x51\x34','\x42\x38\x6f\x53\x6d\x72\x37\x64\x52\x62\x33\x64\x50\x32\x4a\x63\x50\x38\x6f\x56\x71\x43\x6f\x6f\x46\x47','\x57\x36\x52\x64\x53\x38\x6f\x48\x57\x52\x68\x64\x50\x57','\x57\x52\x46\x64\x53\x43\x6f\x46\x57\x36\x6e\x70\x57\x36\x6e\x49\x43\x47','\x44\x43\x6b\x7a\x57\x34\x72\x52\x57\x34\x31\x32\x57\x36\x7a\x73','\x57\x4f\x58\x52\x57\x50\x33\x63\x53\x43\x6f\x32\x57\x52\x44\x34\x57\x51\x53','\x79\x38\x6b\x6b\x75\x31\x2f\x63\x56\x30\x46\x63\x48\x61','\x57\x35\x64\x63\x4a\x61\x78\x63\x54\x53\x6b\x58\x6b\x66\x6e\x65','\x57\x52\x54\x53\x57\x37\x6c\x63\x50\x67\x4a\x63\x49\x75\x52\x63\x4c\x57','\x57\x37\x47\x4b\x6a\x31\x72\x43\x42\x61','\x6e\x43\x6b\x4c\x57\x37\x79\x79\x57\x34\x4e\x63\x56\x61','\x57\x52\x71\x2b\x57\x4f\x39\x47\x66\x61','\x57\x36\x64\x64\x4e\x43\x6f\x36\x57\x51\x5a\x64\x4a\x33\x30','\x41\x53\x6b\x65\x63\x53\x6b\x4f','\x6f\x6d\x6b\x4e\x66\x63\x4a\x63\x4f\x76\x69\x32\x57\x51\x79','\x57\x35\x64\x64\x54\x4d\x4a\x63\x47\x5a\x38\x41\x57\x36\x74\x63\x4a\x61','\x67\x6d\x6b\x50\x61\x75\x43\x42\x45\x38\x6b\x65\x57\x35\x38','\x57\x52\x46\x63\x53\x47\x33\x63\x55\x65\x57','\x57\x51\x46\x64\x53\x38\x6f\x45\x57\x37\x76\x64','\x63\x62\x5a\x64\x4f\x6d\x6b\x36\x57\x4f\x6a\x6a\x57\x4f\x61','\x57\x51\x6a\x55\x57\x50\x56\x63\x53\x6d\x6b\x31\x57\x37\x76\x51\x62\x47','\x57\x4f\x71\x77\x71\x71\x47\x32\x68\x38\x6f\x48\x6d\x71','\x57\x36\x57\x46\x57\x50\x64\x63\x54\x53\x6b\x75\x57\x37\x6d','\x6e\x62\x62\x36\x57\x36\x30','\x57\x36\x68\x64\x4c\x43\x6b\x55','\x63\x6d\x6f\x65\x57\x34\x5a\x64\x4c\x38\x6f\x67\x57\x35\x4f\x56\x6f\x57','\x6b\x53\x6b\x67\x65\x78\x68\x63\x4c\x47','\x43\x38\x6b\x65\x57\x35\x7a\x52\x57\x34\x4f','\x65\x4e\x46\x64\x51\x38\x6b\x78\x70\x53\x6b\x31\x61\x38\x6f\x69','\x57\x36\x5a\x63\x4d\x43\x6b\x38\x62\x74\x79','\x57\x37\x75\x36\x61\x4b\x79','\x57\x34\x52\x63\x49\x57\x78\x63\x51\x57','\x57\x50\x58\x6d\x77\x71','\x65\x58\x33\x64\x4a\x65\x79\x41\x70\x53\x6f\x67\x46\x47','\x57\x50\x39\x4e\x57\x4f\x33\x64\x4f\x57','\x57\x36\x47\x53\x70\x66\x54\x68\x57\x36\x75\x35\x63\x57','\x6e\x38\x6b\x2b\x7a\x30\x2f\x63\x52\x30\x75','\x45\x74\x75\x35\x64\x43\x6b\x61\x57\x35\x4a\x64\x4b\x53\x6b\x6c','\x57\x35\x78\x64\x53\x77\x2f\x63\x49\x57\x30\x78\x57\x37\x78\x63\x51\x57','\x57\x50\x4c\x48\x57\x4f\x70\x63\x54\x38\x6f\x57\x57\x51\x43\x39\x57\x51\x47','\x64\x43\x6b\x4b\x72\x74\x6e\x71\x6e\x47','\x57\x51\x6c\x64\x50\x5a\x62\x77','\x68\x48\x2f\x64\x48\x30\x38\x41\x45\x57','\x62\x53\x6f\x6f\x57\x34\x33\x64\x4e\x61','\x75\x78\x61\x45\x45\x66\x6c\x63\x4d\x38\x6b\x51','\x42\x30\x52\x63\x4c\x58\x79\x71\x41\x6d\x6f\x54','\x57\x51\x34\x76\x57\x35\x30\x47\x71\x61\x69\x68\x41\x71','\x44\x53\x6b\x48\x57\x34\x52\x64\x49\x43\x6f\x46','\x57\x35\x2f\x63\x4b\x4c\x34\x45\x57\x35\x4b','\x57\x52\x78\x64\x4f\x38\x6f\x63\x57\x36\x6a\x73\x57\x34\x35\x4e','\x57\x36\x47\x55\x70\x66\x31\x58\x73\x73\x43\x7a','\x57\x4f\x53\x6b\x42\x71\x61\x4a\x69\x53\x6f\x4d','\x57\x36\x39\x48\x57\x50\x46\x64\x4d\x43\x6b\x6f','\x69\x43\x6b\x4a\x57\x37\x43\x70\x57\x36\x75','\x57\x51\x53\x6a\x57\x34\x30\x57\x77\x73\x34\x6e','\x57\x36\x69\x76\x57\x50\x64\x63\x50\x6d\x6b\x74','\x57\x50\x6a\x44\x78\x32\x65','\x57\x51\x69\x52\x57\x4f\x6a\x47\x63\x43\x6b\x32','\x57\x50\x58\x66\x72\x6d\x6b\x7a\x6b\x57','\x57\x36\x70\x64\x4c\x38\x6f\x56\x7a\x53\x6f\x30','\x57\x52\x58\x33\x73\x32\x6c\x63\x4b\x6d\x6f\x5a\x70\x47','\x41\x43\x6b\x32\x57\x36\x33\x64\x50\x38\x6f\x32\x57\x37\x70\x63\x4e\x38\x6b\x34','\x65\x57\x4e\x64\x4d\x4b\x30\x41\x77\x53\x6f\x6f','\x62\x43\x6b\x33\x74\x48\x44\x45\x6c\x65\x69\x37','\x43\x67\x4a\x63\x49\x58\x4f\x72\x77\x6d\x6f\x52\x61\x57','\x6d\x6d\x6b\x4e\x64\x65\x47','\x57\x52\x46\x64\x52\x74\x66\x61\x43\x53\x6b\x4b\x45\x43\x6f\x6e','\x57\x4f\x79\x64\x57\x34\x57\x6c\x57\x34\x38\x38\x76\x77\x71','\x57\x36\x76\x30\x57\x50\x4a\x64\x4a\x53\x6b\x49\x57\x4f\x57','\x57\x34\x37\x63\x48\x62\x52\x63\x4c\x43\x6b\x58\x6d\x65\x6e\x48','\x57\x50\x4b\x77\x57\x34\x53\x59','\x41\x53\x6b\x63\x57\x35\x66\x51','\x57\x50\x4c\x57\x57\x4f\x37\x63\x50\x53\x6f\x4d\x57\x51\x61','\x57\x52\x5a\x64\x48\x73\x72\x43\x75\x61','\x57\x35\x37\x63\x4c\x66\x61\x46\x57\x35\x6d\x41\x57\x34\x6d','\x57\x37\x33\x64\x48\x6d\x6f\x48\x7a\x53\x6f\x30\x62\x57','\x57\x36\x42\x64\x4c\x38\x6f\x44\x57\x52\x42\x64\x4d\x68\x79\x6c','\x57\x51\x44\x4f\x57\x51\x78\x63\x53\x53\x6b\x56\x57\x37\x57','\x57\x34\x6c\x64\x56\x78\x64\x63\x4a\x57\x57\x70\x57\x37\x4e\x63\x4c\x57','\x64\x59\x6c\x64\x55\x6d\x6f\x67','\x57\x36\x65\x6a\x57\x4f\x33\x63\x54\x6d\x6b\x75\x57\x35\x6c\x63\x56\x61','\x57\x37\x66\x59\x57\x50\x4e\x64\x4d\x43\x6b\x6f','\x72\x4e\x71\x74\x46\x31\x75','\x57\x34\x33\x63\x4f\x48\x46\x63\x55\x43\x6b\x49\x69\x61','\x66\x53\x6f\x75\x57\x34\x5a\x64\x4c\x43\x6f\x76\x57\x35\x65\x74','\x57\x36\x65\x45\x57\x50\x4f','\x57\x36\x64\x63\x4f\x6d\x6b\x33\x72\x53\x6b\x66\x64\x6d\x6b\x42\x74\x47','\x57\x4f\x50\x68\x73\x6d\x6f\x41\x70\x61\x33\x64\x4b\x31\x57','\x7a\x43\x6b\x6a\x62\x43\x6b\x48\x69\x38\x6f\x66\x63\x30\x34','\x57\x34\x33\x63\x47\x31\x57\x4c\x57\x35\x47','\x71\x47\x39\x32\x6f\x43\x6f\x72\x44\x59\x6d\x56','\x66\x53\x6f\x6f\x57\x34\x5a\x64\x4e\x71','\x57\x4f\x57\x75\x57\x52\x70\x63\x55\x66\x70\x64\x4b\x61\x34','\x57\x4f\x38\x4a\x57\x36\x75\x56\x57\x35\x69\x72','\x57\x37\x6d\x51\x66\x61','\x62\x43\x6b\x46\x75\x47','\x74\x47\x58\x2b\x69\x57','\x42\x6d\x6b\x58\x65\x65\x37\x63\x53\x38\x6f\x76','\x70\x76\x2f\x64\x4b\x57','\x57\x51\x30\x56\x64\x31\x35\x66\x57\x37\x39\x57','\x7a\x38\x6b\x64\x6c\x38\x6b\x4b','\x46\x4e\x33\x63\x4d\x48\x31\x7a\x42\x38\x6f\x54\x68\x57','\x57\x4f\x57\x77\x42\x61\x79\x59\x64\x38\x6b\x49\x70\x47','\x44\x38\x6b\x79\x66\x57','\x57\x4f\x4b\x72\x57\x50\x7a\x32\x66\x66\x62\x61\x6a\x57','\x6d\x53\x6b\x33\x64\x65\x2f\x63\x55\x43\x6b\x45\x6d\x6d\x6b\x6d','\x57\x4f\x30\x46\x57\x35\x61\x57\x7a\x61\x6d','\x57\x34\x4e\x63\x4c\x6d\x6b\x45\x57\x34\x57\x78\x57\x35\x69\x35\x57\x50\x53','\x57\x52\x46\x64\x51\x5a\x6e\x74\x45\x43\x6b\x30\x76\x53\x6f\x62','\x76\x57\x62\x34\x70\x38\x6f\x52','\x57\x50\x71\x65\x78\x78\x64\x63\x4c\x58\x39\x62\x57\x35\x75','\x57\x35\x64\x63\x48\x47\x33\x63\x51\x53\x6b\x31','\x57\x34\x33\x63\x47\x4b\x69\x6a\x57\x34\x47\x39\x57\x35\x71','\x57\x35\x46\x49\x48\x69\x5a\x64\x4d\x31\x46\x63\x51\x4c\x48\x2b\x62\x61','\x57\x37\x61\x5a\x6b\x4c\x72\x58\x74\x59\x61\x65','\x57\x50\x34\x76\x57\x37\x47\x38\x76\x71\x69\x6e','\x75\x68\x57\x71\x7a\x71','\x57\x36\x52\x63\x48\x53\x6b\x57\x72\x47','\x57\x51\x46\x63\x53\x61\x5a\x63\x52\x4b\x64\x64\x56\x61\x65\x64','\x57\x37\x70\x64\x4c\x53\x6f\x56\x57\x52\x42\x64\x54\x33\x69\x44\x57\x50\x65','\x57\x52\x4c\x4f\x57\x51\x52\x63\x50\x53\x6b\x30\x57\x37\x50\x31','\x57\x4f\x6d\x7a\x57\x36\x34\x57\x71\x57\x79\x66\x41\x71','\x57\x51\x68\x63\x51\x72\x6c\x63\x50\x4b\x42\x64\x51\x47\x65\x64','\x57\x37\x79\x59\x70\x76\x48\x32','\x6e\x53\x6b\x54\x66\x61\x4a\x64\x4f\x65\x47\x30\x57\x51\x6d','\x57\x4f\x6a\x6b\x76\x78\x46\x63\x4b\x57\x4c\x4a\x57\x50\x43','\x45\x68\x68\x63\x4a\x58\x75\x77\x45\x43\x6f\x50\x67\x61','\x76\x61\x39\x32\x6f\x43\x6f\x52\x45\x5a\x43','\x57\x36\x30\x36\x66\x66\x76\x44\x57\x36\x71','\x43\x38\x6b\x56\x68\x59\x64\x64\x4f\x31\x6d\x51\x57\x37\x43','\x57\x51\x65\x4f\x57\x36\x38\x56\x57\x36\x6d','\x57\x36\x71\x30\x57\x36\x34\x2f\x57\x36\x47\x71\x70\x47','\x35\x37\x49\x54\x35\x6c\x2b\x57\x35\x79\x59\x62\x35\x79\x36\x73\x36\x79\x41\x4d\x57\x35\x75','\x57\x34\x33\x64\x49\x6d\x6f\x37\x45\x53\x6f\x4c','\x6e\x4c\x6c\x64\x48\x6d\x6b\x6c\x57\x35\x79','\x45\x38\x6b\x65\x57\x35\x66\x4e\x57\x35\x31\x41\x57\x36\x57','\x57\x34\x56\x63\x48\x62\x68\x63\x4d\x38\x6b\x2f\x6b\x4c\x72\x53','\x6f\x76\x68\x64\x48\x71','\x6e\x38\x6b\x39\x63\x4b\x5a\x63\x53\x43\x6b\x50\x6e\x38\x6b\x42','\x57\x50\x39\x43\x78\x53\x6b\x73','\x6d\x63\x47\x52\x64\x47','\x68\x74\x4e\x64\x56\x43\x6f\x46\x57\x50\x31\x35','\x57\x51\x39\x48\x73\x78\x6c\x63\x47\x43\x6f\x6a\x6c\x53\x6f\x68','\x75\x61\x58\x72\x6a\x6d\x6f\x32\x46\x59\x79','\x57\x52\x48\x49\x57\x51\x42\x63\x53\x61','\x75\x68\x57\x79\x7a\x76\x5a\x63\x4d\x43\x6f\x30\x57\x35\x71'];_0x3468=function(){return _0x30b945;};return _0x3468();}function matchesForcedGeneId(_0x4df983,_0x1d3555){const _0x83d41f=_0x2d5893;return _0x4df983['\x67\x65\x6e\x65\x49\x64']===_0x1d3555||_0x4df983[_0x83d41f(0x35f,'\x63\x5d\x30\x23')]===_0x1d3555;}function matchesCandidateIdentity(_0x2889f3,_0x154b7){const _0x5c766a=_0x2d5893;return _0x154b7[_0x5c766a(0x1ac,'\x32\x23\x6a\x4e')]?_0x2889f3[_0x5c766a(0x2fb,'\x30\x4e\x63\x24')]===_0x154b7[_0x5c766a(0x20b,'\x36\x67\x41\x72')]:_0x2889f3['\x67\x65\x6e\x65\x49\x64']===_0x154b7[_0x5c766a(0x23d,'\x4a\x6b\x75\x49')];}function matchesScoredIdentity(_0x19d7f6,_0x5cd52b){const _0x5f193f=_0x2d5893;return _0x5cd52b[_0x5f193f(0x3ca,'\x4c\x26\x24\x56')]?_0x19d7f6[_0x5f193f(0x2fd,'\x24\x6b\x59\x28')]===_0x5cd52b[_0x5f193f(0x306,'\x69\x42\x45\x41')]:_0x19d7f6[_0x5f193f(0x1fb,'\x4d\x38\x62\x28')]===_0x5cd52b[_0x5f193f(0x334,'\x37\x70\x26\x38')];}function withoutCandidateIdentity(_0x2cd6b8,_0x31f931){return _0x2cd6b8['\x66\x69\x6c\x74\x65\x72'](_0x1c7488=>!matchesCandidateIdentity(_0x1c7488,_0x31f931));}function candidateForScore(_0x55e629,_0xdb9a99){const _0x4479c6=_0x2d5893;return _0x55e629[_0x4479c6(0x340,'\x34\x6c\x5a\x4f')+'\x65\x73'][_0x4479c6(0x19f,'\x61\x56\x4e\x5e')](_0x5cee5f=>_0x5cee5f['\x67\x65\x6e\x65\x49\x64']===_0xdb9a99[_0x4479c6(0x3b2,'\x46\x73\x23\x5e')]&&_0x5cee5f[_0x4479c6(0x3ca,'\x4c\x26\x24\x56')]===_0xdb9a99[_0x4479c6(0x1f3,'\x71\x21\x65\x44')]);}function compactMetric(_0x2e43af){const _0x5e9e26=_0x2d5893;return Math[_0x5e9e26(0x3af,'\x67\x24\x36\x46')](_0x2e43af*(-0x4*0x2aeed+-0x54a40+0x1f4834))/(-0x4*0x38ef3+0xd2293+0x105b79);}function compactChoice(_0x23fad3){const _0x5b6eec=_0x2d5893;return{..._0x23fad3,'\x61\x72\x6d\x49\x64':_0x23fad3[_0x5b6eec(0x3b7,'\x4c\x26\x24\x56')][_0x5b6eec(0x258,'\x28\x63\x66\x4a')](0x2*-0x3fd+0x18b0*0x1+0x3e*-0x45,-0x116f+-0x7bd+-0x1*-0x19cc),'\x6d\x65\x61\x6e\x52\x65\x77\x61\x72\x64':compactMetric(_0x23fad3[_0x5b6eec(0x208,'\x48\x4d\x6e\x25')+'\x72\x64']),..._0x23fad3['\x62\x6f\x6e\x75\x73']!==null?{'\x62\x6f\x6e\x75\x73':compactMetric(_0x23fad3[_0x5b6eec(0x259,'\x32\x23\x6a\x4e')])}:{'\x62\x6f\x6e\x75\x73':null},..._0x23fad3[_0x5b6eec(0x25e,'\x67\x53\x77\x59')]!==null?{'\x69\x6e\x64\x65\x78':compactMetric(_0x23fad3[_0x5b6eec(0x245,'\x73\x58\x65\x6a')])}:{'\x69\x6e\x64\x65\x78':null}};}function isReusableGenerationSource(_0x28bd2e){const _0x2b4b8f=_0x2d5893;return _0x28bd2e===_0x2b4b8f(0x1b8,'\x63\x5d\x30\x23')+'\x64'||_0x28bd2e==='\x65\x76\x6f\x6c\x76\x65\x64';}function isReusableFallbackCandidate(_0x4e5cc9){const _0x1ff449=_0x2d5893;if(_0x4e5cc9[_0x1ff449(0x174,'\x46\x73\x23\x5e')+_0x1ff449(0x182,'\x73\x58\x65\x6a')]!==undefined)return isReusableGenerationSource(_0x4e5cc9[_0x1ff449(0x3a7,'\x43\x4d\x44\x75')+'\x6f\x6e\x53\x6f\x75\x72\x63\x65']);return isDistilledGeneId(_0x4e5cc9[_0x1ff449(0x1fb,'\x4d\x38\x62\x28')]);}function forcedSelection(_0x13c2f5,_0x2840d6,_0x28122f,_0x1f5d67){const _0x1df678=_0x2d5893,_0x4e7205=_0x13c2f5[_0x1df678(0x2b6,'\x5a\x48\x76\x4a')+_0x1df678(0x398,'\x7a\x61\x53\x44')]?.[_0x1df678(0x177,'\x36\x67\x41\x72')]();if(!_0x4e7205)return{'\x73\x63\x6f\x72\x65\x64\x46\x6f\x72\x43\x68\x6f\x69\x63\x65':_0x2840d6};const _0x49b262=_0x13c2f5[_0x1df678(0x2cd,'\x30\x4e\x63\x24')+'\x65\x73'][_0x1df678(0x1e5,'\x69\x42\x45\x41')](_0x561ecf=>matchesForcedGeneId(_0x561ecf,_0x4e7205));if(_0x49b262){const _0x78669a=_0x2840d6[_0x1df678(0x285,'\x63\x5d\x30\x23')](_0x1c0e6f=>matchesCandidateIdentity(_0x1c0e6f,_0x49b262));if(!_0x78669a)return{'\x73\x63\x6f\x72\x65\x64\x46\x6f\x72\x43\x68\x6f\x69\x63\x65':_0x2840d6};if((_0x49b262[_0x1df678(0x1d4,'\x54\x67\x49\x74')+_0x1df678(0x28e,'\x30\x4e\x63\x24')+'\x79']??-0xb54+0x7*-0x529+0x2f73*0x1)>0x1092+-0x4*-0x3e+0x2*-0x8c5)return _0x78669a[_0x1df678(0x3cc,'\x4e\x65\x46\x73')][_0x1df678(0x3c7,'\x5e\x66\x62\x6e')](_0x1df678(0x29c,'\x4d\x68\x42\x23')+_0x1df678(0x321,'\x36\x5d\x35\x23')+_0x1df678(0x186,'\x51\x38\x74\x33')+_0x1df678(0x396,'\x4d\x68\x42\x23')+'\x20\x73\x75\x70\x70\x72\x65\x73'+_0x1df678(0x369,'\x63\x5d\x30\x23')),{'\x73\x63\x6f\x72\x65\x64\x46\x6f\x72\x43\x68\x6f\x69\x63\x65':withoutCandidateIdentity(_0x2840d6,_0x49b262),'\x66\x6f\x72\x63\x65\x52\x65\x6a\x65\x63\x74\x65\x64':!![]};_0x78669a[_0x1df678(0x3c2,'\x30\x4e\x63\x24')][_0x1df678(0x38f,'\x6e\x5a\x53\x75')](_0x1df678(0x375,'\x67\x24\x36\x46')+_0x1df678(0x282,'\x24\x23\x6e\x71')+'\x63\x74\x65\x64\x3a\x20\x65\x78'+'\x70\x6c\x69\x63\x69\x74\x20\x66'+_0x1df678(0x297,'\x32\x56\x50\x56')+_0x1df678(0x1d1,'\x79\x77\x40\x49')+_0x1df678(0x3a8,'\x61\x56\x4e\x5e')+_0x1df678(0x1f1,'\x4d\x4c\x79\x5a')+'\x6e\x64\x69\x64\x61\x74\x65\x20'+'\x28'+_0x4e7205+'\x29');if(_0x1f5d67!==undefined&&_0x78669a[_0x1df678(0x2a5,'\x4e\x65\x46\x73')]<=_0x1f5d67)_0x78669a[_0x1df678(0x2a1,'\x71\x21\x65\x44')][_0x1df678(0x30b,'\x61\x56\x4e\x5e')](_0x1df678(0x1d2,'\x31\x70\x66\x74')+_0x1df678(0x2a0,'\x65\x54\x26\x42')+_0x1df678(0x32f,'\x4d\x4c\x79\x5a')+_0x1df678(0x1d9,'\x43\x4a\x66\x7a')+_0x1df678(0x1ce,'\x67\x24\x36\x46')+_0x1f5d67);return{'\x73\x65\x6c\x65\x63\x74\x65\x64\x47\x65\x6e\x65\x49\x64':_0x49b262[_0x1df678(0x21f,'\x43\x4d\x44\x75')],..._0x49b262[_0x1df678(0x1b3,'\x79\x71\x61\x44')]?{'\x73\x65\x6c\x65\x63\x74\x65\x64\x41\x73\x73\x65\x74\x49\x64':_0x49b262[_0x1df678(0x36c,'\x45\x70\x4a\x33')]}:{},'\x73\x63\x6f\x72\x65\x64\x46\x6f\x72\x43\x68\x6f\x69\x63\x65':_0x2840d6};}const _0x347c38=(_0x13c2f5[_0x1df678(0x38a,'\x67\x53\x77\x59')+_0x1df678(0x238,'\x28\x63\x66\x4a')+'\x6b']??[])[_0x1df678(0x2f3,'\x36\x67\x41\x72')](_0x418f74=>matchesForcedGeneId(_0x418f74,_0x4e7205));if(!_0x347c38)return{'\x73\x63\x6f\x72\x65\x64\x46\x6f\x72\x43\x68\x6f\x69\x63\x65':_0x2840d6};const _0x4b9640=_0x2840d6[_0x1df678(0x304,'\x36\x5d\x35\x23')](),_0x3e2ff3=_0x28122f(_0x347c38);_0x2840d6[_0x1df678(0x2c4,'\x6f\x51\x59\x26')](_0x3e2ff3);if((_0x347c38[_0x1df678(0x23e,'\x69\x54\x70\x64')+_0x1df678(0x1c2,'\x4d\x68\x42\x23')+'\x79']??-0x2046+-0x22*0xbc+-0x1*-0x393e)>0x12f+-0x156e+-0x47*-0x49){if(_0x1df678(0x17a,'\x5e\x66\x62\x6e')!==_0x1df678(0x1a6,'\x43\x4d\x44\x75')){const _0x28aac5=_0x5a16da[_0x131a21];if(typeof _0x28aac5==='\x73\x74\x72\x69\x6e\x67')_0x211ea8['\x70\x75\x73\x68'](_0x28aac5[_0x1df678(0x35e,'\x30\x4e\x63\x24')](0x1c42+0xc2d+-0x286f,_0xd30e11));}else return _0x3e2ff3['\x72\x65\x61\x73\x6f\x6e\x73']['\x70\x75\x73\x68'](_0x1df678(0x330,'\x24\x6b\x59\x28')+'\x65\x6e\x65\x20\x72\x65\x6a\x65'+_0x1df678(0x1c3,'\x69\x42\x45\x41')+_0x1df678(0x378,'\x71\x21\x65\x44')+_0x1df678(0x2ef,'\x4d\x38\x62\x28')+_0x1df678(0x33e,'\x7a\x61\x53\x44')),{'\x73\x63\x6f\x72\x65\x64\x46\x6f\x72\x43\x68\x6f\x69\x63\x65':_0x4b9640,'\x66\x6f\x72\x63\x65\x52\x65\x6a\x65\x63\x74\x65\x64':!![]};}if(!isReusableFallbackCandidate(_0x347c38)){if(_0x1df678(0x3cb,'\x30\x5a\x29\x29')===_0x1df678(0x2e4,'\x61\x56\x4e\x5e')){if(_0x4d7230[_0x1df678(0x197,'\x24\x23\x6e\x71')]!==_0x1df678(0x1cf,'\x36\x64\x2a\x32'))return-0x20e8+-0x19d0+0x1d5c*0x2;const _0x517949=_0x68fa7d(_0x895add);return _0x517949[_0x1df678(0x312,'\x51\x38\x74\x33')]===_0x1df678(0x333,'\x61\x56\x4e\x5e')&&_0x517949[_0x1df678(0x22a,'\x36\x67\x41\x72')]===_0x4a886c[_0x1df678(0x178,'\x7a\x61\x53\x44')]?_0x5c38dd:0x89*-0x1f+-0x714+0x17ab;}else return _0x3e2ff3[_0x1df678(0x342,'\x50\x28\x4d\x35')][_0x1df678(0x28b,'\x29\x61\x79\x40')](_0x1df678(0x1e2,'\x36\x67\x41\x72')+_0x1df678(0x1ab,'\x79\x71\x61\x44')+'\x63\x74\x65\x64\x3a\x20\x73\x75'+_0x1df678(0x20f,'\x36\x64\x2a\x32')+_0x1df678(0x395,'\x7a\x61\x53\x44')+'\x6b'),{'\x73\x63\x6f\x72\x65\x64\x46\x6f\x72\x43\x68\x6f\x69\x63\x65':_0x4b9640,'\x66\x6f\x72\x63\x65\x52\x65\x6a\x65\x63\x74\x65\x64':!![]};}_0x3e2ff3[_0x1df678(0x397,'\x31\x70\x66\x74')][_0x1df678(0x3e2,'\x43\x4a\x66\x7a')](_0x1df678(0x24c,'\x69\x42\x45\x41')+_0x1df678(0x2c0,'\x71\x21\x65\x44')+_0x1df678(0x223,'\x4d\x68\x42\x23')+_0x1df678(0x281,'\x4a\x6b\x75\x49')+_0x1df678(0x33c,'\x31\x70\x66\x74')+_0x1df678(0x372,'\x4e\x65\x46\x73')+_0x1df678(0x2a4,'\x46\x73\x23\x5e')+_0x1df678(0x20a,'\x51\x38\x74\x33')+_0x1df678(0x1e9,'\x71\x21\x65\x44')+_0x1df678(0x188,'\x32\x56\x50\x56')+'\x20\x28'+_0x4e7205+'\x29');if(_0x1f5d67!==undefined&&_0x3e2ff3[_0x1df678(0x37c,'\x51\x21\x38\x61')]<=_0x1f5d67)_0x3e2ff3[_0x1df678(0x2f6,'\x7a\x61\x53\x44')][_0x1df678(0x1f7,'\x34\x6c\x5a\x4f')](_0x1df678(0x21d,'\x28\x63\x66\x4a')+_0x1df678(0x21b,'\x32\x56\x50\x56')+'\x63\x74\x65\x64\x20\x64\x65\x73'+_0x1df678(0x294,'\x32\x23\x6a\x4e')+_0x1df678(0x2e2,'\x4c\x68\x6b\x59')+_0x1f5d67);return{'\x73\x65\x6c\x65\x63\x74\x65\x64\x47\x65\x6e\x65\x49\x64':_0x347c38[_0x1df678(0x334,'\x37\x70\x26\x38')],..._0x347c38[_0x1df678(0x35f,'\x63\x5d\x30\x23')]?{'\x73\x65\x6c\x65\x63\x74\x65\x64\x41\x73\x73\x65\x74\x49\x64':_0x347c38[_0x1df678(0x351,'\x21\x48\x74\x58')]}:{},'\x73\x63\x6f\x72\x65\x64\x46\x6f\x72\x43\x68\x6f\x69\x63\x65':_0x4b9640};}export function assessSelectionGuard(_0x20214f,_0x925774){const _0x5cda68=_0x2d5893;if(_0x20214f[_0x5cda68(0x2e0,'\x36\x64\x2a\x32')]===0x1*0x16de+0x2*0x247+0x1e*-0xea)return{'\x77\x6f\x75\x6c\x64\x41\x62\x73\x74\x61\x69\x6e':!![],'\x72\x65\x61\x73\x6f\x6e':_0x5cda68(0x3be,'\x6f\x51\x59\x26'),'\x6d\x61\x78\x4d\x61\x74\x63\x68':0x0,'\x6d\x61\x74\x63\x68\x53\x70\x72\x65\x61\x64':0x0};const _0x16cc04=_0x20214f[_0x5cda68(0x181,'\x34\x6c\x5a\x4f')](_0x27cd8b=>_0x27cd8b[_0x5cda68(0x30a,'\x4d\x4c\x79\x5a')+'\x72\x65']??-0x1dad*-0x1+0x1*0xe27+-0xa*0x462),_0x9a8fec=Math[_0x5cda68(0x3c6,'\x30\x4e\x63\x24')](..._0x16cc04),_0x415320=Math['\x6d\x69\x6e'](..._0x16cc04),_0x17352c=_0x9a8fec-_0x415320,_0x15d8c9={'\x6d\x61\x78\x4d\x61\x74\x63\x68':compactMetric(_0x9a8fec),'\x6d\x61\x74\x63\x68\x53\x70\x72\x65\x61\x64':compactMetric(_0x17352c)};if(_0x9a8fec<=SELECTION_GUARD_MATCH_EPS){if(_0x5cda68(0x35c,'\x43\x4d\x44\x75')!==_0x5cda68(0x3d4,'\x21\x48\x74\x58'))return{'\x77\x6f\x75\x6c\x64\x41\x62\x73\x74\x61\x69\x6e':!![],'\x72\x65\x61\x73\x6f\x6e':_0x5cda68(0x20d,'\x4a\x6b\x75\x49'),..._0x15d8c9};else _0x110a6c[_0x5cda68(0x3b3,'\x29\x61\x79\x40')](_0x3dc50a=>_0x3dc50a[_0x5cda68(0x26b,'\x4c\x26\x24\x56')]===_0x3f877d)?.['\x72\x65\x61\x73\x6f\x6e\x73'][_0x5cda68(0x368,'\x30\x4e\x63\x24')](_0x5cda68(0x1d5,'\x67\x24\x36\x46')+_0x22f0d2[_0x5cda68(0x3d8,'\x50\x28\x4d\x35')+'\x65']+(_0x5cda68(0x269,'\x47\x50\x55\x76')+'\x74\x79\x3d')+_0x2a4389[_0x5cda68(0x187,'\x73\x58\x65\x6a')+'\x79']['\x74\x6f\x46\x69\x78\x65\x64'](-0x141f+0x1*-0x521+0x1942)+'\x29');}if(_0x925774&&_0x20214f[_0x5cda68(0x34a,'\x65\x54\x26\x42')]>-0x21c2+-0xa*-0x295+0x7f1&&_0x17352c<=SELECTION_GUARD_MATCH_EPS)return{'\x77\x6f\x75\x6c\x64\x41\x62\x73\x74\x61\x69\x6e':!![],'\x72\x65\x61\x73\x6f\x6e':_0x5cda68(0x3cf,'\x30\x4e\x63\x24')+_0x5cda68(0x324,'\x28\x63\x66\x4a')+'\x63\x68',..._0x15d8c9};return{'\x77\x6f\x75\x6c\x64\x41\x62\x73\x74\x61\x69\x6e':![],..._0x15d8c9};}export const engineHealthSelection={'\x6e\x61\x6d\x65':_0x2d5893(0x1bd,'\x67\x24\x36\x46')+_0x2d5893(0x2d5,'\x43\x4d\x44\x75'),'\x76\x65\x72\x73\x69\x6f\x6e':'\x31','\x72\x75\x6e'(_0x2e6eb1,_0x1e13f8){const _0x2678c8=_0x2d5893,_0x1e7f8e=_0x2e6eb1[_0x2678c8(0x2f0,'\x6e\x5a\x53\x75')+'\x65\x6d\x61\x6e\x74\x69\x63\x49'+'\x64\x66']||_0x2e6eb1['\x73\x65\x6d\x61\x6e\x74\x69\x63'+_0x2678c8(0x2b1,'\x30\x5a\x29\x29')]===undefined?undefined:buildSelectionSemanticProfile(_0x2e6eb1[_0x2678c8(0x19e,'\x49\x30\x63\x29')+_0x2678c8(0x28d,'\x32\x56\x50\x56')]),_0x5d4c7e=_0x1e7f8e?SELECTION_WEIGHTS_VERSION:LEGACY_SELECTION_WEIGHTS_VERSION,_0x25a427=_0x1e7f8e?{'\x73\x65\x6d\x61\x6e\x74\x69\x63\x50\x72\x6f\x66\x69\x6c\x65\x56\x65\x72\x73\x69\x6f\x6e':_0x1e7f8e['\x76\x65\x72\x73\x69\x6f\x6e'],'\x73\x65\x6d\x61\x6e\x74\x69\x63\x44\x6f\x63\x75\x6d\x65\x6e\x74\x43\x6f\x75\x6e\x74':_0x1e7f8e[_0x2678c8(0x1af,'\x79\x71\x61\x44')+_0x2678c8(0x34f,'\x4c\x68\x6b\x59')]}:{},_0x452904=resolveTaskDomainSignals(_0x2e6eb1[_0x2678c8(0x1f4,'\x47\x50\x55\x76')]),_0x4c3bdf=_0x1405dd=>scoreCandidate(_0x2e6eb1[_0x2678c8(0x213,'\x4e\x65\x46\x73')],_0x1405dd,_0x1e7f8e,_0x452904),_0x300018=_0x2e6eb1['\x63\x61\x6e\x64\x69\x64\x61\x74'+'\x65\x73'][_0x2678c8(0x274,'\x21\x48\x74\x58')](_0x4c3bdf)[_0x2678c8(0x3dc,'\x6e\x5a\x53\x75')]((_0x55eacd,_0x5bda)=>_0x5bda[_0x2678c8(0x240,'\x4d\x4c\x79\x5a')]-_0x55eacd[_0x2678c8(0x339,'\x4a\x6b\x75\x49')]),_0x508744=_0x2e6eb1['\x66\x6c\x6f\x6f\x72']??0x5*-0x54d+0x1bd8+-0x157*0x1,_0x260ac2=forcedSelection(_0x2e6eb1,_0x300018,_0x4c3bdf,_0x508744),_0x77fd3c=_0x260ac2[_0x2678c8(0x264,'\x5e\x66\x62\x6e')+_0x2678c8(0x370,'\x30\x4e\x63\x24')][_0x2678c8(0x17e,'\x4c\x26\x24\x56')](_0x9f164b=>_0x9f164b[_0x2678c8(0x2dc,'\x30\x4e\x63\x24')]>_0x508744),_0x9fd780=_0x2e6eb1[_0x2678c8(0x318,'\x6e\x5a\x53\x75')+_0x2678c8(0x31d,'\x4a\x6b\x75\x49')]??_0x2678c8(0x2bc,'\x65\x54\x26\x42'),_0x1fa020=_0x2e6eb1[_0x2678c8(0x221,'\x29\x61\x79\x40')+_0x2678c8(0x379,'\x69\x42\x45\x41')]?.[_0x2678c8(0x349,'\x28\x63\x66\x4a')]?.[_0x2678c8(0x3a0,'\x4c\x68\x6b\x59')]===!![];let _0x31b29a=assessSelectionGuard(_0x77fd3c,_0x1fa020);if(_0x77fd3c[_0x2678c8(0x22b,'\x51\x38\x74\x33')]===-0x2256+0xa67*0x1+0x17ef){if(_0x2678c8(0x2f9,'\x73\x58\x65\x6a')!==_0x2678c8(0x1ae,'\x6e\x5a\x53\x75'))return{..._0x4c5de0,'\x61\x72\x6d\x49\x64':_0x327392[_0x2678c8(0x323,'\x4d\x68\x42\x23')]['\x73\x6c\x69\x63\x65'](-0x4*-0x5c7+0x3*0xc44+-0x3be8,-0x1774+0x2*0xf8d+-0x706),'\x6d\x65\x61\x6e\x52\x65\x77\x61\x72\x64':_0x2475c9(_0x4225da[_0x2678c8(0x1e6,'\x28\x63\x66\x4a')+'\x72\x64']),..._0x1a760b[_0x2678c8(0x301,'\x36\x64\x2a\x32')]!==null?{'\x62\x6f\x6e\x75\x73':_0x5c5ff6(_0x4830cd[_0x2678c8(0x3df,'\x37\x70\x26\x38')])}:{'\x62\x6f\x6e\x75\x73':null},..._0x34112e[_0x2678c8(0x278,'\x36\x67\x41\x72')]!==null?{'\x69\x6e\x64\x65\x78':_0x2dab03(_0x28042b[_0x2678c8(0x34c,'\x67\x24\x36\x46')])}:{'\x69\x6e\x64\x65\x78':null}};else{const _0x5821e7=assessSelectionGuard(_0x260ac2['\x73\x63\x6f\x72\x65\x64\x46\x6f'+_0x2678c8(0x250,'\x5a\x48\x76\x4a')],_0x1fa020);_0x5821e7[_0x2678c8(0x3ad,'\x4a\x6b\x75\x49')]!==_0x2678c8(0x1c5,'\x32\x56\x50\x56')&&(_0x2678c8(0x249,'\x50\x28\x4d\x35')===_0x2678c8(0x2b0,'\x5a\x48\x76\x4a')?_0x1dc15b=_0x27674c:_0x31b29a={'\x77\x6f\x75\x6c\x64\x41\x62\x73\x74\x61\x69\x6e':![],..._0x5821e7[_0x2678c8(0x309,'\x24\x23\x6e\x71')]!==undefined?{'\x6d\x61\x78\x4d\x61\x74\x63\x68':_0x5821e7[_0x2678c8(0x36b,'\x5a\x48\x76\x4a')]}:{},..._0x5821e7[_0x2678c8(0x256,'\x24\x6b\x59\x28')+'\x65\x61\x64']!==undefined?{'\x6d\x61\x74\x63\x68\x53\x70\x72\x65\x61\x64':_0x5821e7['\x6d\x61\x74\x63\x68\x53\x70\x72'+_0x2678c8(0x19b,'\x4d\x68\x42\x23')]}:{}});}}const _0x36201b=_0x9fd780===_0x2678c8(0x1a5,'\x54\x67\x49\x74')&&_0x31b29a[_0x2678c8(0x23b,'\x30\x4e\x63\x24')]===_0x2678c8(0x242,'\x69\x42\x45\x41')?[]:_0x77fd3c,_0x4d6d12=_0x2e6eb1[_0x2678c8(0x344,'\x34\x6c\x5a\x4f')+_0x2678c8(0x299,'\x4d\x38\x62\x28')]?.[_0x2678c8(0x1de,'\x29\x61\x79\x40')]??_0x2678c8(0x254,'\x73\x58\x65\x6a')+_0x2678c8(0x3ae,'\x34\x6c\x5a\x4f'),_0x2fb1ff=_0x2e6eb1[_0x2678c8(0x17d,'\x24\x6b\x59\x28')+_0x2678c8(0x3aa,'\x6f\x51\x59\x26')]?.[_0x2678c8(0x236,'\x43\x4a\x66\x7a')]?.[_0x2678c8(0x257,'\x43\x4d\x44\x75')]===!![];let _0x38a250={'\x64\x72\x69\x66\x74\x4d\x6f\x64\x65':_0x2678c8(0x211,'\x63\x5d\x30\x23')+_0x2678c8(0x345,'\x31\x70\x66\x74'),'\x69\x6e\x64\x65\x78':0x0,'\x69\x6e\x74\x65\x6e\x73\x69\x74\x79':0x0},_0x1841d0,_0x21b9d4;if(_0x260ac2[_0x2678c8(0x1fd,'\x32\x56\x50\x56')+_0x2678c8(0x206,'\x36\x67\x41\x72')]===undefined&&_0x2fb1ff&&_0x4d6d12!==_0x2678c8(0x3b5,'\x4c\x26\x24\x56')+_0x2678c8(0x399,'\x69\x42\x45\x41')){const _0x39adc5=[..._0x36201b][_0x2678c8(0x226,'\x36\x67\x41\x72')]((_0x1eb4c5,_0x3860cb)=>{const _0x2cf84b=_0x2678c8,_0x4a32f7=Number[_0x2cf84b(0x3a6,'\x54\x67\x49\x74')](_0x1eb4c5[_0x2cf84b(0x280,'\x61\x56\x4e\x5e')])?_0x1eb4c5[_0x2cf84b(0x21a,'\x69\x54\x70\x64')]:Number[_0x2cf84b(0x38e,'\x6f\x51\x59\x26')+_0x2cf84b(0x3c3,'\x79\x77\x40\x49')+'\x59'],_0x418384=Number[_0x2cf84b(0x380,'\x73\x58\x65\x6a')](_0x3860cb[_0x2cf84b(0x2ff,'\x45\x70\x4a\x33')])?_0x3860cb[_0x2cf84b(0x31b,'\x32\x56\x50\x56')]:Number['\x4e\x45\x47\x41\x54\x49\x56\x45'+'\x5f\x49\x4e\x46\x49\x4e\x49\x54'+'\x59'];return _0x418384!==_0x4a32f7?_0x418384-_0x4a32f7:(_0x1eb4c5[_0x2cf84b(0x308,'\x48\x4d\x6e\x25')]??_0x1eb4c5[_0x2cf84b(0x3b2,'\x46\x73\x23\x5e')])[_0x2cf84b(0x322,'\x5e\x66\x62\x6e')+_0x2cf84b(0x2fe,'\x32\x56\x50\x56')](_0x3860cb['\x61\x73\x73\x65\x74\x49\x64']??_0x3860cb['\x67\x65\x6e\x65\x49\x64']);}),_0x3006ea=_0x39adc5[_0x2678c8(0x200,'\x69\x54\x70\x64')](-0x189f+0x100*0x15+0x39f,explorationWindowSize(_0x39adc5[_0x2678c8(0x3dd,'\x79\x77\x40\x49')],_0x2e6eb1[_0x2678c8(0x195,'\x7a\x61\x53\x44')+_0x2678c8(0x353,'\x79\x77\x40\x49')])),_0x15297f=new Map();for(const _0x3e54c5 of _0x3006ea){if(_0x2678c8(0x374,'\x4e\x65\x46\x73')===_0x2678c8(0x229,'\x4d\x68\x42\x23'))_0x15297f[_0x2678c8(0x2ea,'\x36\x5d\x35\x23')](_0x3e54c5[_0x2678c8(0x2bb,'\x6e\x5a\x53\x75')],(_0x15297f['\x67\x65\x74'](_0x3e54c5[_0x2678c8(0x230,'\x29\x61\x79\x40')])??-0x1*0x23b5+0x125*-0x1f+0x473*0x10)+(0x14f*0x17+-0xbbf+-0x1259));else return{'\x77\x6f\x75\x6c\x64\x41\x62\x73\x74\x61\x69\x6e':!![],'\x72\x65\x61\x73\x6f\x6e':_0x2678c8(0x3e0,'\x36\x67\x41\x72'),..._0x4dc5b3};}const _0x22888e=_0x2e6eb1[_0x2678c8(0x348,'\x4d\x4c\x79\x5a')+_0x2678c8(0x2a7,'\x4d\x68\x42\x23')]?.[_0x2678c8(0x202,'\x30\x4e\x63\x24')+_0x2678c8(0x367,'\x46\x73\x23\x5e')],_0x564d8b=_0x22888e?chooseUcb1Arm(_0x3006ea[_0x2678c8(0x25f,'\x30\x5a\x29\x29')](_0x4c8094=>{const _0x5948cb=_0x2678c8,_0x35ef99=candidateForScore(_0x2e6eb1,_0x4c8094),_0x196bc4=_0x4c8094[_0x5948cb(0x31a,'\x36\x64\x2a\x32')]??_0x4c8094[_0x5948cb(0x2a6,'\x67\x24\x36\x46')];return{'\x61\x72\x6d\x49\x64':_0x196bc4,'\x62\x61\x73\x65\x53\x63\x6f\x72\x65':_0x4c8094[_0x5948cb(0x234,'\x5a\x64\x28\x62')],'\x65\x78\x70\x6c\x6f\x72\x61\x74\x69\x6f\x6e\x45\x6c\x69\x67\x69\x62\x6c\x65':_0x35ef99?.[_0x5948cb(0x1fc,'\x31\x70\x66\x74')+_0x5948cb(0x191,'\x5a\x48\x76\x4a')+_0x5948cb(0x277,'\x36\x5d\x35\x23')]===!![],'\x73\x74\x61\x74\x73':_0x35ef99?ucb1StatsForCandidate(_0x22888e,_0x35ef99[_0x5948cb(0x2a6,'\x67\x24\x36\x46')],_0x35ef99[_0x5948cb(0x2fb,'\x30\x4e\x63\x24')],(_0x15297f[_0x5948cb(0x1bb,'\x4c\x26\x24\x56')](_0x35ef99[_0x5948cb(0x3b2,'\x46\x73\x23\x5e')])??-0x2*-0xc0a+-0x1334*-0x2+0x535*-0xc)===-0xe1e+-0x463*0x2+0x1*0x16e5):{'\x61\x72\x6d\x49\x64':_0x196bc4,'\x70\x75\x6c\x6c\x73':0x0,'\x63\x6f\x6d\x70\x6c\x65\x74\x65\x64\x50\x75\x6c\x6c\x73':0x0,'\x72\x65\x77\x61\x72\x64\x53\x75\x6d':0x0,'\x6d\x65\x61\x6e\x52\x65\x77\x61\x72\x64':0x0}};}),_0x22888e[_0x2678c8(0x2ae,'\x69\x54\x70\x64')+'\x6c\x73']):{'\x63\x68\x6f\x69\x63\x65':null,'\x66\x61\x6c\x6c\x62\x61\x63\x6b\x52\x65\x61\x73\x6f\x6e':_0x2678c8(0x3ce,'\x45\x70\x4a\x33')+_0x2678c8(0x393,'\x48\x4d\x6e\x25')},_0x15261f=_0x564d8b['\x63\x68\x6f\x69\x63\x65']?_0x3006ea[_0x2678c8(0x1a1,'\x79\x77\x40\x49')](_0x54c84e=>(_0x54c84e[_0x2678c8(0x35f,'\x63\x5d\x30\x23')]??_0x54c84e[_0x2678c8(0x2d3,'\x31\x70\x66\x74')])===_0x564d8b[_0x2678c8(0x241,'\x54\x67\x49\x74')][_0x2678c8(0x289,'\x36\x67\x41\x72')]):undefined;if(_0x4d6d12==='\x75\x63\x62\x31'&&_0x15261f){_0x1841d0=_0x15261f;const _0x3c0340=compactChoice(_0x564d8b[_0x2678c8(0x26f,'\x32\x23\x6a\x4e')]);_0x1841d0[_0x2678c8(0x37a,'\x48\x4d\x6e\x25')][_0x2678c8(0x38f,'\x6e\x5a\x53\x75')](_0x2678c8(0x3b8,'\x37\x70\x26\x38')+_0x2678c8(0x237,'\x4a\x6b\x75\x49')+(_0x3c0340[_0x2678c8(0x278,'\x36\x67\x41\x72')]??_0x2678c8(0x2f5,'\x54\x67\x49\x74'))+_0x2678c8(0x361,'\x67\x24\x36\x46')+_0x3c0340[_0x2678c8(0x26c,'\x34\x6c\x5a\x4f')+'\x72\x64'][_0x2678c8(0x33d,'\x37\x70\x26\x38')](-0x225+-0x1a66+0x1ae*0x11)+_0x2678c8(0x32d,'\x65\x54\x26\x42')+_0x3c0340['\x70\x75\x6c\x6c\x73']+'\x29'),_0x21b9d4={'\x72\x65\x71\x75\x65\x73\x74\x65\x64':_0x4d6d12,'\x65\x66\x66\x65\x63\x74\x69\x76\x65':_0x2678c8(0x2ec,'\x51\x38\x74\x33'),'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x6f\x6c\x69\x63\x79\x56\x65\x72\x73\x69\x6f\x6e':UCB1_SELECTION_POLICY_VERSION,'\x72\x65\x77\x61\x72\x64\x50\x6f\x6c\x69\x63\x79\x56\x65\x72\x73\x69\x6f\x6e':UCB1_REWARD_POLICY_VERSION,'\x61\x72\x6d':_0x3c0340};}else _0x38a250=driftSelect(_0x77fd3c[_0x2678c8(0x2f4,'\x48\x4d\x6e\x25')],_0x2e6eb1[_0x2678c8(0x1dd,'\x4d\x68\x42\x23')+'\x69\x6f\x6e'],_0x1e13f8?.['\x72\x6e\x67']??Math[_0x2678c8(0x29a,'\x69\x54\x70\x64')]),_0x1841d0=_0x77fd3c[_0x38a250['\x69\x6e\x64\x65\x78']]??_0x77fd3c[-0x2585*-0x1+-0x1*0x8b6+-0x1ccf],_0x21b9d4={'\x72\x65\x71\x75\x65\x73\x74\x65\x64':_0x4d6d12,'\x65\x66\x66\x65\x63\x74\x69\x76\x65':_0x2678c8(0x390,'\x36\x5d\x35\x23')+_0x2678c8(0x244,'\x36\x5d\x35\x23'),'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x6f\x6c\x69\x63\x79\x56\x65\x72\x73\x69\x6f\x6e':UCB1_SELECTION_POLICY_VERSION,'\x72\x65\x77\x61\x72\x64\x50\x6f\x6c\x69\x63\x79\x56\x65\x72\x73\x69\x6f\x6e':UCB1_REWARD_POLICY_VERSION,..._0x564d8b[_0x2678c8(0x1ad,'\x24\x23\x6e\x71')]?{'\x61\x72\x6d':compactChoice(_0x564d8b['\x63\x68\x6f\x69\x63\x65']),'\x73\x68\x61\x64\x6f\x77\x41\x72\x6d\x49\x64':_0x564d8b[_0x2678c8(0x36d,'\x43\x4d\x44\x75')]['\x61\x72\x6d\x49\x64'][_0x2678c8(0x25a,'\x21\x48\x74\x58')](0x1c5a+0x1*-0x21a2+0x548,0x11*0x4+-0x38b+0x3e7),'\x73\x68\x61\x64\x6f\x77\x44\x69\x73\x61\x67\x72\x65\x65\x73':Boolean(_0x1841d0&&(_0x1841d0[_0x2678c8(0x23a,'\x29\x61\x79\x40')]??_0x1841d0[_0x2678c8(0x217,'\x69\x42\x45\x41')])!==_0x564d8b[_0x2678c8(0x24b,'\x65\x54\x26\x42')][_0x2678c8(0x1ee,'\x54\x67\x49\x74')])}:{},..._0x564d8b[_0x2678c8(0x268,'\x30\x4e\x63\x24')+_0x2678c8(0x183,'\x4d\x4c\x79\x5a')]?{'\x66\x61\x6c\x6c\x62\x61\x63\x6b\x52\x65\x61\x73\x6f\x6e':_0x564d8b[_0x2678c8(0x24a,'\x7a\x61\x53\x44')+_0x2678c8(0x1be,'\x67\x53\x77\x59')]}:{}};}else{if('\x6b\x4c\x52\x7a\x62'!==_0x2678c8(0x1b7,'\x54\x67\x49\x74'))_0x38a250=driftSelect(_0x77fd3c[_0x2678c8(0x35d,'\x4c\x26\x24\x56')],_0x2e6eb1[_0x2678c8(0x381,'\x54\x67\x49\x74')+_0x2678c8(0x1a0,'\x6e\x5a\x53\x75')],_0x1e13f8?.[_0x2678c8(0x190,'\x48\x4d\x6e\x25')]??Math[_0x2678c8(0x228,'\x21\x48\x74\x58')]),_0x1841d0=_0x77fd3c[_0x38a250[_0x2678c8(0x34c,'\x67\x24\x36\x46')]]??_0x77fd3c[-0x7a4+-0x191*0x18+0x2d3c];else return{'\x77\x6f\x75\x6c\x64\x41\x62\x73\x74\x61\x69\x6e':!![],'\x72\x65\x61\x73\x6f\x6e':_0x2678c8(0x2df,'\x24\x6b\x59\x28'),'\x6d\x61\x78\x4d\x61\x74\x63\x68':0x0,'\x6d\x61\x74\x63\x68\x53\x70\x72\x65\x61\x64':0x0};}const _0x59d113=_0x260ac2[_0x2678c8(0x179,'\x4d\x4c\x79\x5a')+'\x47\x65\x6e\x65\x49\x64']!==undefined,_0x3e58df=_0x31b29a[_0x2678c8(0x2d6,'\x6f\x51\x59\x26')]===_0x2678c8(0x291,'\x5e\x66\x62\x6e')+_0x2678c8(0x37d,'\x51\x38\x74\x33')+'\x63\x68'&&_0x21b9d4?.[_0x2678c8(0x3a2,'\x79\x71\x61\x44')+'\x65']===_0x2678c8(0x3bc,'\x4d\x38\x62\x28'),_0x10df4b=_0x9fd780===_0x2678c8(0x27f,'\x32\x56\x50\x56')&&!_0x59d113&&_0x31b29a[_0x2678c8(0x2fc,'\x31\x70\x66\x74')+_0x2678c8(0x204,'\x47\x50\x55\x76')]&&!_0x3e58df;_0x10df4b&&(_0x2678c8(0x313,'\x36\x67\x41\x72')!==_0x2678c8(0x2cc,'\x6f\x51\x59\x26')?_0x357a37[_0x2678c8(0x1bf,'\x30\x5a\x29\x29')](_0x1fa46c[_0x2678c8(0x17c,'\x4d\x68\x42\x23')],(_0x2cc06d[_0x2678c8(0x276,'\x6e\x5a\x53\x75')](_0x3a032c[_0x2678c8(0x217,'\x69\x42\x45\x41')])??0x252+0x2bf*0xa+-0x3b9*0x8)+(0x409+0x1*0x44d+-0x855)):_0x1841d0=undefined);let _0xded817=_0x260ac2[_0x2678c8(0x18f,'\x4c\x26\x24\x56')+_0x2678c8(0x37b,'\x4d\x68\x42\x23')]??(_0x1841d0?_0x1841d0[_0x2678c8(0x224,'\x30\x4e\x63\x24')]:null),_0x1227de=_0x260ac2['\x73\x65\x6c\x65\x63\x74\x65\x64'+_0x2678c8(0x363,'\x28\x63\x66\x4a')]??_0x1841d0?.['\x61\x73\x73\x65\x74\x49\x64'],_0x5d907e=![];if(!_0xded817){const _0xe4d93=_0x260ac2[_0x2678c8(0x239,'\x30\x4e\x63\x24')+_0x2678c8(0x3ba,'\x4e\x65\x46\x73')][_0x2678c8(0x210,'\x47\x50\x55\x76')](_0xe8da7e=>(_0xe8da7e[_0x2678c8(0x3d6,'\x69\x54\x70\x64')+'\x72\x65']??0x1598+0x1*0x1dcc+-0x3364)>SELECTION_GUARD_MATCH_EPS),_0x4cba46=!_0x260ac2[_0x2678c8(0x19c,'\x61\x56\x4e\x5e')+_0x2678c8(0x1e0,'\x43\x4d\x44\x75')]&&(_0x10df4b&&_0x31b29a[_0x2678c8(0x260,'\x7a\x61\x53\x44')]===_0x2678c8(0x3cd,'\x54\x67\x49\x74')&&!_0xe4d93||_0x260ac2[_0x2678c8(0x347,'\x46\x73\x23\x5e')+_0x2678c8(0x3c8,'\x45\x70\x4a\x33')][_0x2678c8(0x23c,'\x51\x21\x38\x61')](_0x201fe8=>_0x201fe8[_0x2678c8(0x2db,'\x34\x6c\x5a\x4f')]<=0x154b+-0x6*0x561+0xafb)),_0x47573a=_0x4cba46?(_0x2e6eb1[_0x2678c8(0x243,'\x4d\x4c\x79\x5a')+_0x2678c8(0x28c,'\x29\x61\x79\x40')+'\x6b']??[])[_0x2678c8(0x1ff,'\x6e\x5a\x53\x75')](_0x25600b=>isReusableFallbackCandidate(_0x25600b)&&(_0x25600b[_0x2678c8(0x27e,'\x4d\x4c\x79\x5a')+_0x2678c8(0x2de,'\x50\x28\x4d\x35')+'\x79']??-0x21c2+-0xb*0x2d7+0x40ff)===-0xc7*0x24+-0x613*-0x1+-0x15e9*-0x1)[_0x2678c8(0x39c,'\x63\x5d\x30\x23')](_0x1c72ee=>({'\x63\x61\x6e\x64\x69\x64\x61\x74\x65':_0x1c72ee,'\x73\x63\x6f\x72\x65\x64':_0x4c3bdf(_0x1c72ee)}))[_0x2678c8(0x24d,'\x79\x77\x40\x49')]((_0x136835,_0x56fd23)=>_0x56fd23[_0x2678c8(0x3d2,'\x79\x71\x61\x44')][_0x2678c8(0x19d,'\x7a\x61\x53\x44')]-_0x136835[_0x2678c8(0x315,'\x4c\x68\x6b\x59')][_0x2678c8(0x3bd,'\x36\x67\x41\x72')]||_0x136835[_0x2678c8(0x20c,'\x24\x23\x6e\x71')+'\x65'][_0x2678c8(0x247,'\x49\x30\x63\x29')][_0x2678c8(0x24e,'\x54\x67\x49\x74')+_0x2678c8(0x1eb,'\x29\x61\x79\x40')](_0x56fd23[_0x2678c8(0x1d6,'\x67\x24\x36\x46')+'\x65'][_0x2678c8(0x212,'\x67\x53\x77\x59')]))[0x622*-0x6+0x7*0x22d+0x1591]:undefined;if(_0x47573a){if(_0x2678c8(0x1f6,'\x36\x64\x2a\x32')!==_0x2678c8(0x2a9,'\x34\x6c\x5a\x4f')){const _0xa35f6e=_0x47bd8d(_0x3939f8,_0x5ee3bf),_0x5b3113=_0x2d5c71[_0x2678c8(0x3a3,'\x5e\x66\x62\x6e')]??_0x2247b4[_0x2678c8(0x1e8,'\x69\x54\x70\x64')];return{'\x61\x72\x6d\x49\x64':_0x5b3113,'\x62\x61\x73\x65\x53\x63\x6f\x72\x65':_0x1e1065[_0x2678c8(0x1a2,'\x48\x4d\x6e\x25')],'\x65\x78\x70\x6c\x6f\x72\x61\x74\x69\x6f\x6e\x45\x6c\x69\x67\x69\x62\x6c\x65':_0xa35f6e?.[_0x2678c8(0x320,'\x79\x71\x61\x44')+_0x2678c8(0x346,'\x51\x21\x38\x61')+_0x2678c8(0x3e1,'\x61\x56\x4e\x5e')]===!![],'\x73\x74\x61\x74\x73':_0xa35f6e?_0x442e1e(_0x2522df,_0xa35f6e[_0x2678c8(0x377,'\x5a\x64\x28\x62')],_0xa35f6e[_0x2678c8(0x3bf,'\x67\x53\x77\x59')],(_0x156a7d[_0x2678c8(0x2b5,'\x49\x30\x63\x29')](_0xa35f6e[_0x2678c8(0x38d,'\x34\x6c\x5a\x4f')])??-0x1*0x144d+-0xf4f*0x1+0x56*0x6a)===0xe*0x1aa+0x3af*-0x2+-0xfed*0x1):{'\x61\x72\x6d\x49\x64':_0x5b3113,'\x70\x75\x6c\x6c\x73':0x0,'\x63\x6f\x6d\x70\x6c\x65\x74\x65\x64\x50\x75\x6c\x6c\x73':0x0,'\x72\x65\x77\x61\x72\x64\x53\x75\x6d':0x0,'\x6d\x65\x61\x6e\x52\x65\x77\x61\x72\x64':0x0}};}else{const {candidate:_0x3d4931,scored:_0x1181d0}=_0x47573a;_0x1181d0[_0x2678c8(0x23f,'\x4d\x38\x62\x28')][_0x2678c8(0x38c,'\x65\x54\x26\x42')](_0x2678c8(0x1d3,'\x6e\x5a\x53\x75')+_0x2678c8(0x387,'\x4a\x6b\x75\x49')+_0x2678c8(0x332,'\x37\x70\x26\x38')+_0x2678c8(0x26e,'\x51\x21\x38\x61')+'\u4f4e\u7f6e\u4fe1\u5ea6\u590d\u7528\u84b8\u998f'+_0x2678c8(0x1df,'\x24\x6b\x59\x28')),_0x300018[_0x2678c8(0x355,'\x36\x5d\x35\x23')](_0x1181d0),_0xded817=_0x3d4931[_0x2678c8(0x1b6,'\x73\x58\x65\x6a')],_0x1227de=_0x3d4931[_0x2678c8(0x35f,'\x63\x5d\x30\x23')],_0x5d907e=!![];}}else{if(!_0x10df4b){if(_0x2678c8(0x3bb,'\x73\x58\x65\x6a')!==_0x2678c8(0x3c1,'\x45\x70\x4a\x33'))_0x260ac2[_0x2678c8(0x30c,'\x36\x67\x41\x72')+_0x2678c8(0x37f,'\x24\x23\x6e\x71')][_0x2678c8(0x326,'\x69\x54\x70\x64')](_0xede107=>_0xede107[_0x2678c8(0x314,'\x4d\x68\x42\x23')][_0x2678c8(0x22c,'\x37\x70\x26\x38')](_0x2678c8(0x3c9,'\x4d\x68\x42\x23')+_0x508744+(_0x2678c8(0x33b,'\x5a\x64\x28\x62')+_0x2678c8(0x3d9,'\x67\x53\x77\x59'))));else return _0x32e851[_0x2678c8(0x20b,'\x36\x67\x41\x72')]?_0x482d29[_0x2678c8(0x2c7,'\x32\x56\x50\x56')]===_0x47cf41[_0x2678c8(0x31a,'\x36\x64\x2a\x32')]:_0x49ef1d[_0x2678c8(0x189,'\x7a\x61\x53\x44')]===_0x576848[_0x2678c8(0x184,'\x51\x38\x74\x33')];}}}else _0x260ac2[_0x2678c8(0x2bf,'\x4d\x38\x62\x28')+_0x2678c8(0x22d,'\x61\x56\x4e\x5e')]===undefined&&_0x21b9d4?.[_0x2678c8(0x3d5,'\x79\x77\x40\x49')+'\x65']!==_0x2678c8(0x391,'\x67\x53\x77\x59')&&_0x38a250[_0x2678c8(0x386,'\x49\x30\x63\x29')+'\x65']!==_0x2678c8(0x180,'\x43\x4a\x66\x7a')+_0x2678c8(0x2e5,'\x21\x48\x74\x58')&&_0x300018[_0x2678c8(0x1a1,'\x79\x77\x40\x49')](_0x50886a=>_0x50886a[_0x2678c8(0x217,'\x69\x42\x45\x41')]===_0xded817)?.[_0x2678c8(0x3a5,'\x73\x58\x65\x6a')][_0x2678c8(0x2d7,'\x67\x53\x77\x59')](_0x2678c8(0x199,'\x30\x5a\x29\x29')+_0x38a250[_0x2678c8(0x2b9,'\x71\x21\x65\x44')+'\x65']+('\x2c\x69\x6e\x74\x65\x6e\x73\x69'+_0x2678c8(0x39b,'\x24\x6b\x59\x28'))+_0x38a250[_0x2678c8(0x1c7,'\x61\x56\x4e\x5e')+'\x79'][_0x2678c8(0x39f,'\x79\x77\x40\x49')](0x5ac+-0x5*-0x145+-0xc03)+'\x29');_0x21b9d4?.[_0x2678c8(0x358,'\x69\x42\x45\x41')+'\x64']==='\x75\x63\x62\x31\x2d\x73\x68\x61'+'\x64\x6f\x77'&&_0x21b9d4[_0x2678c8(0x17f,'\x4d\x4c\x79\x5a')+_0x2678c8(0x1dc,'\x32\x23\x6a\x4e')]&&(_0x21b9d4[_0x2678c8(0x288,'\x51\x38\x74\x33')+_0x2678c8(0x175,'\x37\x70\x26\x38')]=(_0x1227de??_0xded817)!==_0x21b9d4['\x73\x68\x61\x64\x6f\x77\x41\x72'+_0x2678c8(0x329,'\x24\x23\x6e\x71')]);const _0x3373a2=_0x9fd780===_0x2678c8(0x1e3,'\x4d\x68\x42\x23')?undefined:{'\x6d\x6f\x64\x65':_0x9fd780,'\x76\x65\x72\x73\x69\x6f\x6e':SELECTION_GUARD_VERSION,'\x73\x74\x61\x74\x75\x73':_0x59d113?_0x2678c8(0x364,'\x24\x6b\x59\x28'):_0x3e58df?_0x2678c8(0x392,'\x36\x64\x2a\x32'):_0x5d907e?_0x2678c8(0x1bc,'\x21\x48\x74\x58'):_0x10df4b?_0x2678c8(0x3a4,'\x32\x56\x50\x56'):_0x31b29a[_0x2678c8(0x25b,'\x34\x6c\x5a\x4f')+'\x74\x61\x69\x6e']?_0x2678c8(0x21e,'\x46\x73\x23\x5e'):'\x61\x6c\x6c\x6f\x77\x65\x64',..._0x31b29a[_0x2678c8(0x354,'\x61\x56\x4e\x5e')+'\x74\x61\x69\x6e']&&_0x31b29a[_0x2678c8(0x376,'\x50\x28\x4d\x35')]?{'\x72\x65\x61\x73\x6f\x6e':_0x31b29a[_0x2678c8(0x29d,'\x79\x77\x40\x49')]}:{},..._0x31b29a[_0x2678c8(0x18d,'\x37\x70\x26\x38')]!==undefined?{'\x6d\x61\x78\x4d\x61\x74\x63\x68':_0x31b29a[_0x2678c8(0x2b2,'\x6e\x5a\x53\x75')]}:{},..._0x31b29a[_0x2678c8(0x262,'\x63\x5d\x30\x23')+'\x65\x61\x64']!==undefined?{'\x6d\x61\x74\x63\x68\x53\x70\x72\x65\x61\x64':_0x31b29a[_0x2678c8(0x3b9,'\x4d\x38\x62\x28')+_0x2678c8(0x3ab,'\x30\x5a\x29\x29')]}:{}};return decisionWithWarnings(_0x2e6eb1,{'\x73\x65\x6c\x65\x63\x74\x65\x64\x47\x65\x6e\x65\x49\x64':_0xded817,..._0x1227de?{'\x73\x65\x6c\x65\x63\x74\x65\x64\x41\x73\x73\x65\x74\x49\x64':_0x1227de}:{},'\x63\x61\x6e\x64\x69\x64\x61\x74\x65\x73':_0x300018,'\x77\x65\x69\x67\x68\x74\x73\x56\x65\x72\x73\x69\x6f\x6e':_0x5d4c7e,..._0x25a427,'\x73\x74\x72\x61\x74\x65\x67\x79\x4e\x61\x6d\x65':'\x65\x6e\x67\x69\x6e\x65\x2d\x68'+_0x2678c8(0x31c,'\x7a\x61\x53\x44'),..._0x21b9d4?{'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x50\x6f\x6c\x69\x63\x79':_0x21b9d4}:{},..._0x3373a2?{'\x73\x65\x6c\x65\x63\x74\x69\x6f\x6e\x47\x75\x61\x72\x64':_0x3373a2}:{}});}};export const signalMatchSelection={'\x6e\x61\x6d\x65':_0x2d5893(0x35b,'\x7a\x61\x53\x44')+_0x2d5893(0x271,'\x31\x70\x66\x74'),'\x76\x65\x72\x73\x69\x6f\x6e':'\x31','\x72\x75\x6e'(_0x3cd927){const _0x3f8f17=_0x2d5893,_0x502e9e=_0x4f70fd=>({'\x67\x65\x6e\x65\x49\x64':_0x4f70fd[_0x3f8f17(0x385,'\x24\x6b\x59\x28')],..._0x4f70fd['\x61\x73\x73\x65\x74\x49\x64']?{'\x61\x73\x73\x65\x74\x49\x64':_0x4f70fd['\x61\x73\x73\x65\x74\x49\x64']}:{},'\x73\x63\x6f\x72\x65':signalMatchScore(_0x3cd927[_0x3f8f17(0x2be,'\x48\x4d\x6e\x25')],_0x4f70fd[_0x3f8f17(0x25c,'\x6f\x51\x59\x26')+_0x3f8f17(0x39e,'\x47\x50\x55\x76')]),'\x72\x65\x61\x73\x6f\x6e\x73':[_0x3f8f17(0x34e,'\x32\x56\x50\x56')+signalMatchScore(_0x3cd927['\x73\x69\x67\x6e\x61\x6c\x73'],_0x4f70fd[_0x3f8f17(0x18e,'\x73\x58\x65\x6a')+_0x3f8f17(0x1e7,'\x36\x67\x41\x72')])[_0x3f8f17(0x1a9,'\x4a\x6b\x75\x49')](-0x1*0x16a5+-0xadd+0x2184)]}),_0x123b62=_0x3cd927[_0x3f8f17(0x1cd,'\x6e\x5a\x53\x75')+'\x65\x73'][_0x3f8f17(0x39d,'\x30\x4e\x63\x24')](_0x187799=>_0x502e9e(_0x187799))['\x73\x6f\x72\x74']((_0x2d71d6,_0x477fe1)=>_0x477fe1[_0x3f8f17(0x218,'\x4d\x38\x62\x28')]-_0x2d71d6['\x73\x63\x6f\x72\x65']),_0x593114=forcedSelection(_0x3cd927,_0x123b62,_0x502e9e,_0x3cd927[_0x3f8f17(0x350,'\x79\x77\x40\x49')]??0x2*0x685+0x19*-0x4+-0xca6),_0xf99999=_0x593114[_0x3f8f17(0x255,'\x4d\x68\x42\x23')+'\x72\x43\x68\x6f\x69\x63\x65'][0xaea+-0x2*0xcaa+0xa*0x171],_0x29fe24=_0x593114[_0x3f8f17(0x207,'\x79\x71\x61\x44')+_0x3f8f17(0x327,'\x67\x24\x36\x46')]??(_0xf99999&&_0xf99999[_0x3f8f17(0x218,'\x4d\x38\x62\x28')]>(_0x3cd927['\x66\x6c\x6f\x6f\x72']??0x3*0x1ed+0x12f*-0x4+-0x10b)?_0xf99999[_0x3f8f17(0x3da,'\x5e\x66\x62\x6e')]:null),_0x752007=_0x593114['\x73\x65\x6c\x65\x63\x74\x65\x64'+_0x3f8f17(0x1fa,'\x5a\x48\x76\x4a')]??(_0x29fe24===_0xf99999?.[_0x3f8f17(0x1e8,'\x69\x54\x70\x64')]?_0xf99999[_0x3f8f17(0x1b3,'\x79\x71\x61\x44')]:undefined);return decisionWithWarnings(_0x3cd927,{'\x73\x65\x6c\x65\x63\x74\x65\x64\x47\x65\x6e\x65\x49\x64':_0x29fe24,..._0x752007?{'\x73\x65\x6c\x65\x63\x74\x65\x64\x41\x73\x73\x65\x74\x49\x64':_0x752007}:{},'\x63\x61\x6e\x64\x69\x64\x61\x74\x65\x73':_0x123b62,'\x77\x65\x69\x67\x68\x74\x73\x56\x65\x72\x73\x69\x6f\x6e':_0x3f8f17(0x1a3,'\x30\x5a\x29\x29'),'\x73\x74\x72\x61\x74\x65\x67\x79\x4e\x61\x6d\x65':_0x3f8f17(0x29f,'\x4c\x26\x24\x56')+'\x61\x74\x63\x68'});}};export function agentLedSelection(_0x48f41a){const _0x4d1690=_0x2d5893;return{'\x6e\x61\x6d\x65':_0x4d1690(0x246,'\x67\x24\x36\x46')+'\x64','\x76\x65\x72\x73\x69\x6f\x6e':'\x31','\x72\x75\x6e'(_0x55405c,_0x40a360){const _0xad2000=_0x4d1690;if(_0xad2000(0x37e,'\x61\x56\x4e\x5e')===_0xad2000(0x2ad,'\x31\x70\x66\x74')){const _0x3423b9=_0xee30d9(_0xeb5f61[_0xad2000(0x1f2,'\x7a\x61\x53\x44')+_0xad2000(0x2f7,'\x4d\x4c\x79\x5a')],_0x3f2c1f);_0x3423b9[_0xad2000(0x1c1,'\x69\x42\x45\x41')]!==_0xad2000(0x24f,'\x36\x64\x2a\x32')&&(_0x495115={'\x77\x6f\x75\x6c\x64\x41\x62\x73\x74\x61\x69\x6e':![],..._0x3423b9[_0xad2000(0x30f,'\x4a\x6b\x75\x49')]!==_0x2a3cb8?{'\x6d\x61\x78\x4d\x61\x74\x63\x68':_0x3423b9[_0xad2000(0x3b0,'\x51\x38\x74\x33')]}:{},..._0x3423b9[_0xad2000(0x205,'\x67\x24\x36\x46')+_0xad2000(0x28a,'\x67\x24\x36\x46')]!==_0x11f485?{'\x6d\x61\x74\x63\x68\x53\x70\x72\x65\x61\x64':_0x3423b9['\x6d\x61\x74\x63\x68\x53\x70\x72'+_0xad2000(0x18c,'\x5a\x64\x28\x62')]}:{}});}else{const _0x985d09=engineHealthSelection[_0xad2000(0x328,'\x65\x54\x26\x42')](_0x55405c,_0x40a360),_0x50f2cb=_0x985d09[_0xad2000(0x2c5,'\x48\x4d\x6e\x25')+'\x65\x73'],_0x3c1c65={'\x77\x65\x69\x67\x68\x74\x73\x56\x65\x72\x73\x69\x6f\x6e':_0x985d09[_0xad2000(0x233,'\x69\x42\x45\x41')+_0xad2000(0x248,'\x4d\x4c\x79\x5a')],..._0x985d09[_0xad2000(0x336,'\x36\x67\x41\x72')+_0xad2000(0x2ca,'\x46\x73\x23\x5e')+'\x65\x72\x73\x69\x6f\x6e']?{'\x73\x65\x6d\x61\x6e\x74\x69\x63\x50\x72\x6f\x66\x69\x6c\x65\x56\x65\x72\x73\x69\x6f\x6e':_0x985d09['\x73\x65\x6d\x61\x6e\x74\x69\x63'+_0xad2000(0x1c6,'\x69\x54\x70\x64')+_0xad2000(0x2f2,'\x24\x23\x6e\x71')]}:{},..._0x985d09['\x73\x65\x6d\x61\x6e\x74\x69\x63'+_0xad2000(0x384,'\x6e\x5a\x53\x75')+_0xad2000(0x270,'\x32\x56\x50\x56')]!==undefined?{'\x73\x65\x6d\x61\x6e\x74\x69\x63\x44\x6f\x63\x75\x6d\x65\x6e\x74\x43\x6f\x75\x6e\x74':_0x985d09[_0xad2000(0x3db,'\x6f\x51\x59\x26')+_0xad2000(0x2f8,'\x37\x70\x26\x38')+_0xad2000(0x1f9,'\x4e\x65\x46\x73')]}:{}},_0x2b2ed8=_0x55405c[_0xad2000(0x222,'\x24\x23\x6e\x71')+_0xad2000(0x32e,'\x5e\x66\x62\x6e')]?_0x50f2cb[_0xad2000(0x19f,'\x61\x56\x4e\x5e')](_0x16a81c=>_0x16a81c['\x72\x65\x61\x73\x6f\x6e\x73'][_0xad2000(0x2b8,'\x30\x4e\x63\x24')](_0x450a12=>_0x450a12[_0xad2000(0x2e6,'\x4e\x65\x46\x73')](_0xad2000(0x2aa,'\x5a\x48\x76\x4a')+_0xad2000(0x252,'\x43\x4d\x44\x75')))):undefined;if(_0x2b2ed8?.[_0xad2000(0x397,'\x31\x70\x66\x74')][_0xad2000(0x35a,'\x50\x28\x4d\x35')](_0x138f4b=>_0x138f4b[_0xad2000(0x371,'\x31\x70\x66\x74')](_0xad2000(0x2cf,'\x51\x38\x74\x33')+'\x65\x6e\x65\x20\x73\x65\x6c\x65'+_0xad2000(0x302,'\x46\x73\x23\x5e')))){if('\x50\x56\x63\x4e\x63'!==_0xad2000(0x3d1,'\x4d\x68\x42\x23'))return decisionWithWarnings(_0x55405c,{'\x73\x65\x6c\x65\x63\x74\x65\x64\x47\x65\x6e\x65\x49\x64':_0x2b2ed8[_0xad2000(0x30e,'\x32\x56\x50\x56')],..._0x2b2ed8['\x61\x73\x73\x65\x74\x49\x64']?{'\x73\x65\x6c\x65\x63\x74\x65\x64\x41\x73\x73\x65\x74\x49\x64':_0x2b2ed8[_0xad2000(0x33a,'\x4d\x68\x42\x23')]}:{},'\x63\x61\x6e\x64\x69\x64\x61\x74\x65\x73':_0x50f2cb,..._0x3c1c65,'\x73\x74\x72\x61\x74\x65\x67\x79\x4e\x61\x6d\x65':_0xad2000(0x2eb,'\x48\x4d\x6e\x25')+'\x64'});else{const _0x4a2c6d=_0x3c4fa2['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x4a49d0[_0xad2000(0x2fa,'\x4d\x68\x42\x23')])?_0x52af53[_0xad2000(0x218,'\x4d\x38\x62\x28')]:_0x50d14f[_0xad2000(0x198,'\x65\x54\x26\x42')+_0xad2000(0x335,'\x63\x5d\x30\x23')+'\x59'],_0x3fb68f=_0x325095[_0xad2000(0x2ed,'\x65\x54\x26\x42')](_0x14db9d['\x73\x63\x6f\x72\x65'])?_0xaf6ff9[_0xad2000(0x19d,'\x7a\x61\x53\x44')]:_0x598fae[_0xad2000(0x30d,'\x67\x24\x36\x46')+_0xad2000(0x3de,'\x21\x48\x74\x58')+'\x59'];return _0x3fb68f!==_0x4a2c6d?_0x3fb68f-_0x4a2c6d:(_0x1b8858[_0xad2000(0x1c0,'\x4d\x38\x62\x28')]??_0x4ceed2[_0xad2000(0x2d4,'\x45\x70\x4a\x33')])[_0xad2000(0x2da,'\x47\x50\x55\x76')+_0xad2000(0x305,'\x4c\x68\x6b\x59')](_0x27ac51['\x61\x73\x73\x65\x74\x49\x64']??_0x27ee95[_0xad2000(0x365,'\x4e\x65\x46\x73')]);}}const _0x30fc11=_0x2b2ed8?.[_0xad2000(0x2dd,'\x49\x30\x63\x29')][_0xad2000(0x265,'\x79\x71\x61\x44')](_0x5574dc=>_0x5574dc['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0xad2000(0x307,'\x73\x58\x65\x6a')+_0xad2000(0x203,'\x63\x5d\x30\x23')+_0xad2000(0x27d,'\x67\x24\x36\x46')))?_0x50f2cb[_0xad2000(0x357,'\x29\x61\x79\x40')](_0x36b98e=>!matchesScoredIdentity(_0x36b98e,_0x2b2ed8)):_0x50f2cb,_0x61a05=_0x48f41a(_0x30fc11,_0x55405c),_0x4fe784=_0x30fc11[_0xad2000(0x1ba,'\x45\x70\x4a\x33')](_0x30028d=>_0x30028d[_0xad2000(0x20e,'\x28\x63\x66\x4a')]===_0x61a05)??_0x50f2cb[_0xad2000(0x209,'\x4d\x4c\x79\x5a')](_0x298dc3=>_0x298dc3[_0xad2000(0x1e8,'\x69\x54\x70\x64')]===_0x61a05);return decisionWithWarnings(_0x55405c,{'\x73\x65\x6c\x65\x63\x74\x65\x64\x47\x65\x6e\x65\x49\x64':_0x61a05,..._0x4fe784?.[_0xad2000(0x31a,'\x36\x64\x2a\x32')]?{'\x73\x65\x6c\x65\x63\x74\x65\x64\x41\x73\x73\x65\x74\x49\x64':_0x4fe784['\x61\x73\x73\x65\x74\x49\x64']}:{},'\x63\x61\x6e\x64\x69\x64\x61\x74\x65\x73':_0x50f2cb,..._0x3c1c65,'\x73\x74\x72\x61\x74\x65\x67\x79\x4e\x61\x6d\x65':_0xad2000(0x1b5,'\x7a\x61\x53\x44')+'\x64'});}}};}export function makeGeneSelectionPoint(){const _0x181b2c=_0x2d5893;return new StrategyPoint(_0x181b2c(0x2d8,'\x51\x21\x38\x61')+_0x181b2c(0x225,'\x4c\x68\x6b\x59'),engineHealthSelection)['\x72\x65\x67\x69\x73\x74\x65\x72'](signalMatchSelection);}