@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,273 +1 @@
1
- import { aggregateLearningHistory } from '../assetstore/learningHistory.js';
2
- import { reuseSentiment } from '../ops/reuseOutcomes.js';
3
- import { expandSignals, geneTags, tagOverlapScore, } from '../signals/expand.js';
4
- import { withoutTaskDomainSignals } from '../signals/taskDomain.js';
5
- import { bannedGenesFromFailures } from './bans.js';
6
- import { geneGenerationSource } from './geneIntake.js';
7
- const SEMANTIC_CORPUS_LIMIT = 1_000;
8
- function asStrings(v) {
9
- return Array.isArray(v) ? v.filter((x) => typeof x === 'string') : [];
10
- }
11
- function stringField(v) {
12
- return typeof v === 'string' && v.trim().length > 0 ? v.trim() : undefined;
13
- }
14
- function severityOf(v) {
15
- return v === 'low' || v === 'medium' || v === 'high' ? v : undefined;
16
- }
17
- function candidateIds(geneId, assetId) {
18
- return [...new Set([geneId, assetId].filter((id) => typeof id === 'string' && id.length > 0))];
19
- }
20
- function isBannedCandidate(banned, geneId, assetId) {
21
- return candidateIds(geneId, assetId).some((id) => banned.has(id));
22
- }
23
- function passesInjectedCandidateGates(candidate, opts, provenance, review) {
24
- const assetId = candidate.assetId;
25
- if (opts.provenance && !opts.includeUntrusted) {
26
- if (!assetId || provenance?.get(assetId)?.trusted !== true)
27
- return false;
28
- }
29
- if (opts.review) {
30
- const reviewRecord = assetId ? review?.get(assetId) : undefined;
31
- if (!assetId || (reviewRecord !== undefined && reviewRecord.state !== 'approved'))
32
- return false;
33
- }
34
- return true;
35
- }
36
- /** A zero learning view for a gene with no capsules yet (used for lightweight distilled-fallback candidates). */
37
- function emptyLearningView(geneId) {
38
- return { geneId, total: 0, success: 0, failed: 0, successRate: 0, avgScore: 0, recentCapsuleIds: [] };
39
- }
40
- /** Combined reuse sentiment across ALL of a candidate's ids (#268 Bugbot). Reuse events key by assetId — which
41
- * may be the content asset_id OR the logical id — while candidates key by geneId, AND one gene's events can SPLIT
42
- * across both forms. So we SUM the counts of every distinct id the candidate has, then compute sentiment once:
43
- * averaging two per-id sentiments (or taking the first) would let negatives stored under one id be ignored. */
44
- function combinedReuseSentiment(map, ...ids) {
45
- if (!map)
46
- return undefined;
47
- let success = 0, negative = 0, found = false;
48
- const seen = new Set();
49
- for (const id of ids) {
50
- if (id === undefined || seen.has(id))
51
- continue;
52
- seen.add(id);
53
- const c = map.get(id);
54
- if (c) {
55
- success += c.success;
56
- negative += c.negative;
57
- found = true;
58
- }
59
- }
60
- return found ? reuseSentiment({ success, negative }) : undefined;
61
- }
62
- /** Genes banned by repeated signal-matched failures (>=2 failed capsules covering the signals). */
63
- async function computeBans(store, signals, limit) {
64
- if (signals.length === 0)
65
- return new Set();
66
- const caps = await store.search({ kind: 'Capsule', signalsAny: [...signals], limit });
67
- const failures = caps
68
- .filter((c) => c['outcome']?.status === 'failed')
69
- .map((c) => ({
70
- gene: typeof c['gene'] === 'string' ? String(c['gene']) : undefined,
71
- trigger: asStrings(c['trigger']),
72
- }));
73
- return bannedGenesFromFailures(failures, signals);
74
- }
75
- const GENERIC_NAMESPACE_TAGS = new Set(['action', 'area', 'problem', 'risk', 'signal']);
76
- // Generic namespace tags and inferred action/signal subtypes are too broad to admit a candidate by themselves.
77
- function hasSelectionAdmissionEvidence(liveSignals, gene) {
78
- const tags = new Set(geneTags(gene));
79
- const triggerTags = new Set(expandSignals(gene.signalsMatch ?? []));
80
- const categoryActionTag = gene.category ? `action:${gene.category.toLowerCase()}` : undefined;
81
- if (liveSignals.some((signal) => ((triggerTags.has(signal) || signal === categoryActionTag)
82
- && !GENERIC_NAMESPACE_TAGS.has(signal)))) {
83
- return true;
84
- }
85
- const liveTags = expandSignals(liveSignals);
86
- if (liveTags.some((tag) => (tags.has(tag)
87
- && (tag.startsWith('problem:')
88
- || tag.startsWith('area:')
89
- || tag.startsWith('risk:')))))
90
- return true;
91
- return liveTags.some((tag) => tag.startsWith('signal:') && triggerTags.has(tag));
92
- }
93
- /**
94
- * Assemble the full selection pool from the store for the given signals: the relevant scored candidates AND the
95
- * distilled-gene fallback pool, in a single pass over the gene list (one store.list + one ban computation). A gene
96
- * is a normal candidate if its signals_match literally intersects the signals OR semantically overlaps them (so a
97
- * '429' signal can still reach a gene tagged for 'repair'); a trusted/approved/non-banned *distilled* gene that
98
- * does NOT match goes to `distilledFallback` (v1 #97).
99
- */
100
- export async function assembleSelectionPool(store, signals, opts = {}) {
101
- const limit = opts.limit ?? 500;
102
- const includeSemanticCorpus = opts.includeSemanticCorpus !== false;
103
- const scanLimit = includeSemanticCorpus ? Math.max(limit, SEMANTIC_CORPUS_LIMIT) : limit;
104
- const genes = await store.list('Gene', scanLimit);
105
- const matchingSignals = withoutTaskDomainSignals(signals);
106
- const banned = await computeBans(store, matchingSignals, limit);
107
- const sigSet = new Set(matchingSignals);
108
- const provenance = opts.provenance?.snapshot();
109
- const review = opts.review?.snapshot();
110
- const out = [];
111
- const distilledFallback = [];
112
- const semanticCorpus = [];
113
- const semanticIdentities = new Set();
114
- const addSemanticCandidate = (candidate) => {
115
- if (!includeSemanticCorpus || semanticCorpus.length >= SEMANTIC_CORPUS_LIMIT)
116
- return;
117
- const identity = candidate.assetId ?? candidate.geneId;
118
- if (semanticIdentities.has(identity))
119
- return;
120
- semanticIdentities.add(identity);
121
- semanticCorpus.push(candidate);
122
- };
123
- const antiWarnings = [];
124
- for (const [geneIndex, g] of genes.entries()) {
125
- const provenanceRecord = provenance?.get(String(g.asset_id));
126
- // Trust-first (#30): untrusted (e.g. hub-ingested) genes are excluded from the candidate pool by default;
127
- // they enter only with includeUntrusted or after an explicit promotion. Provenance is keyed by asset_id.
128
- if (opts.provenance && !opts.includeUntrusted && provenanceRecord?.trusted === false)
129
- continue;
130
- // Review-first (#89/#91): auto-distilled drafts land quarantined until a human approves; rejected drafts stay
131
- // out too. No record → eligible (cycle/migrate genes). Symmetric to the provenance trust-first filter above.
132
- // Probation (#306): includeProbation lets a quarantined draft be TRIED so it can earn evidence; a rejected
133
- // draft is never tried. Off (default) keeps quarantined drafts out until approval.
134
- const reviewRecord = review?.get(String(g.asset_id));
135
- if (opts.review && reviewRecord !== undefined && reviewRecord.state !== 'approved'
136
- && (!opts.includeProbation || reviewRecord.state === 'rejected'))
137
- continue;
138
- const geneId = typeof g['id'] === 'string' ? String(g['id']) : String(g.asset_id);
139
- const assetId = String(g.asset_id);
140
- if (isBannedCandidate(banned, geneId, assetId))
141
- continue; // repeated signal-matched failures → not a candidate (nor a fallback)
142
- const signalsMatch = asStrings(g['signals_match']);
143
- const matchingSignalsForGene = withoutTaskDomainSignals(signalsMatch);
144
- const category = typeof g['category'] === 'string' ? String(g['category']) : undefined;
145
- const summary = typeof g['summary'] === 'string' ? String(g['summary']) : undefined;
146
- const literal = matchingSignalsForGene.some((m) => sigSet.has(m));
147
- const tagInput = { signalsMatch: matchingSignalsForGene, geneId, category, summary };
148
- // Experimental probation and explicitly untrusted records may be selectable by opt-in, but never shape global
149
- // document frequency. Only trusted, approved/legacy-local records enter the pre-admission semantic corpus.
150
- if (provenanceRecord?.trusted !== false && (reviewRecord === undefined || reviewRecord.state === 'approved')) {
151
- addSemanticCandidate({
152
- geneId,
153
- assetId,
154
- signalsMatch,
155
- view: emptyLearningView(geneId),
156
- ...(category ? { category } : {}),
157
- ...(summary ? { summary } : {}),
158
- });
159
- }
160
- if (geneIndex >= limit)
161
- continue;
162
- const relevant = literal || hasSelectionAdmissionEvidence(matchingSignals, tagInput);
163
- if (!relevant) {
164
- // #97: a trusted, approved, non-banned distilled (or evolved) gene that doesn't match the live signals is not
165
- // a normal candidate, but it IS eligible as a last-resort fallback (selection uses it only when nothing clears
166
- // the floor). Eligibility here is gated by trust/review/ban, not by skill provenance. Provenance is read from
167
- // generation_meta (V1 #302); a legacy gene without it falls back to the `gene_distilled_` id namespace.
168
- // Lightweight: no learning-history aggregation — it is picked first-match, not ranked by health.
169
- const gsrc = geneGenerationSource(g, geneId);
170
- if (gsrc === 'distilled' || gsrc === 'evolved') {
171
- distilledFallback.push({
172
- geneId,
173
- assetId,
174
- signalsMatch,
175
- view: emptyLearningView(geneId),
176
- reuseCount: 0,
177
- generationSource: gsrc,
178
- ...(category ? { category } : {}),
179
- ...(summary ? { summary } : {}),
180
- });
181
- }
182
- continue;
183
- }
184
- const view = await aggregateLearningHistory(store, geneId);
185
- const explorationEligible = provenanceRecord?.trusted !== false
186
- && (reviewRecord === undefined || reviewRecord.state === 'approved');
187
- // #268 Bugbot: reuse events key by assetId, which may be the content asset_id (sha256:…) OR the logical id —
188
- // candidates key by the logical geneId. Look the sentiment up by BOTH so the soft re-order actually matches
189
- // regardless of which form the reuse-result carried (recall's resolveGene accepts both for the same reason).
190
- const reuseAdjustVal = combinedReuseSentiment(opts.reuseCounts, geneId, String(g.asset_id));
191
- out.push({
192
- geneId,
193
- assetId: String(g.asset_id),
194
- signalsMatch,
195
- view,
196
- // #195: inert (zero-work) cycles are not productive reuse — exclude them so a do-nothing gene can't earn
197
- // the reuse bonus. success + failed === total when there are no inert cycles (back-compat).
198
- reuseCount: view.success + view.failed,
199
- ...(category ? { category } : {}),
200
- ...(summary ? { summary } : {}),
201
- ...(reuseAdjustVal !== undefined ? { reuseAdjust: reuseAdjustVal } : {}),
202
- explorationEligible,
203
- });
204
- }
205
- // #110: merge hub reuse candidates into the same pool, trust-first — local (trusted) genes win on a
206
- // geneId collision, and a hub candidate banned by repeated signal-matched failures stays out too.
207
- if (opts.hubCandidates && opts.hubCandidates.length > 0) {
208
- const localIds = new Set(out.map((c) => c.geneId));
209
- const localAssetIds = new Set(out.map((c) => c.assetId).filter((id) => id !== undefined));
210
- for (const h of opts.hubCandidates) {
211
- if (!passesInjectedCandidateGates(h, opts, provenance, review))
212
- continue;
213
- if (localIds.has(h.geneId))
214
- continue; // a trusted local gene already covers this id
215
- if (h.assetId && localAssetIds.has(h.assetId))
216
- continue; // the same content identity is already local/trusted
217
- if (isBannedCandidate(banned, h.geneId, h.assetId))
218
- continue;
219
- // Stamp the reuse sentiment onto a hub candidate too (only when it didn't carry one), matched by its geneId
220
- // OR its asset_id — symmetric with local genes, so a map keyed like reuse events (often sha256:…) still hits
221
- // (#268 Bugbot). A hub candidate that exposes neither matching id is simply left unstamped.
222
- const hubAdj = h.reuseAdjust === undefined ? combinedReuseSentiment(opts.reuseCounts, h.geneId, h.assetId) : undefined;
223
- // A transient Hub candidate must never self-assert active-bandit cold-start eligibility. It still competes
224
- // under the existing base score and legacy drift; UCB1 fails safe for a mixed window.
225
- const guarded = { ...h, explorationEligible: false };
226
- out.push(hubAdj !== undefined ? { ...guarded, reuseAdjust: hubAdj } : guarded);
227
- localIds.add(h.geneId);
228
- if (h.assetId)
229
- localAssetIds.add(h.assetId);
230
- }
231
- }
232
- for (const a of await store.list('AntiGene', limit)) {
233
- // AntiGene is negative memory that changes an autonomous prompt. Unlike legacy/cycle-authored Genes, it must
234
- // never inherit ReviewLedger's backward-compatible "no record = approved" default: no ledger, no record,
235
- // quarantined, and rejected all fail closed. Only an explicit human approval can enable warning injection.
236
- if (review?.get(String(a.asset_id))?.state !== 'approved')
237
- continue;
238
- const trigger = asStrings(a['trigger']);
239
- const avoid = asStrings(a['avoid']);
240
- if (trigger.length === 0 || avoid.length === 0)
241
- continue;
242
- const antiGeneId = stringField(a['id']) ?? String(a.asset_id);
243
- const summary = stringField(a['summary']);
244
- const matchingTrigger = withoutTaskDomainSignals(trigger);
245
- // This is a safety inclusion gate: ubiquitous evidence must still emit warnings.
246
- const relevant = matchingTrigger.some((m) => sigSet.has(m))
247
- || tagOverlapScore(matchingSignals, { signalsMatch: matchingTrigger, geneId: antiGeneId, summary }) > 0;
248
- if (!relevant)
249
- continue;
250
- const severity = severityOf(a['severity']);
251
- const rationale = stringField(a['rationale']);
252
- antiWarnings.push({
253
- antiGeneId,
254
- assetId: String(a.asset_id),
255
- trigger,
256
- avoid,
257
- ...(summary ? { summary } : {}),
258
- ...(severity ? { severity } : {}),
259
- ...(rationale ? { rationale } : {}),
260
- });
261
- }
262
- return { candidates: out, distilledFallback, semanticCorpus, antiWarnings };
263
- }
264
- /**
265
- * Assemble selection candidates from the store for the given signals (the relevant scored set only).
266
- * Thin wrapper over {@link assembleSelectionPool} kept for back-compat with callers that don't use the
267
- * distilled-gene fallback pool.
268
- */
269
- export async function assembleCandidates(store, signals, opts = {}) {
270
- // This compatibility wrapper discards semanticCorpus, so preserve its legacy I/O bound instead of scanning
271
- // 1,000 records for data the caller cannot consume.
272
- return (await assembleSelectionPool(store, signals, { ...opts, includeSemanticCorpus: false })).candidates;
273
- }
1
+ const _0x5da5f6=_0x1adb;(function(_0x35680a,_0x508acb){const _0x27e3ed=_0x1adb,_0x56ded0=_0x35680a();while(!![]){try{const _0x35adc6=parseInt(_0x27e3ed(0x178,'\x42\x77\x26\x72'))/(-0x6e3+0x1dac+-0x9*0x288)+-parseInt(_0x27e3ed(0x18c,'\x79\x49\x32\x74'))/(0x1*0x6bd+-0x389+-0x1*0x332)+parseInt(_0x27e3ed(0x1c3,'\x4a\x6b\x6c\x48'))/(0x6*0x633+0x19a*-0x3+0x2061*-0x1)+-parseInt(_0x27e3ed(0x1e8,'\x4d\x6f\x49\x71'))/(0x966+0x1ed+-0xb4f)+-parseInt(_0x27e3ed(0x1b9,'\x26\x28\x41\x64'))/(-0xa61*-0x1+-0x1337+0x8db)*(-parseInt(_0x27e3ed(0x16d,'\x6e\x56\x52\x78'))/(-0x80f*-0x1+0x1ef1+-0x26fa))+-parseInt(_0x27e3ed(0x1cb,'\x4b\x7a\x47\x75'))/(-0x1*-0x445+0x1*0x1e8b+-0x2ad*0xd)*(-parseInt(_0x27e3ed(0x184,'\x29\x76\x52\x54'))/(-0x49*0xb+-0x24f7*0x1+0x2822))+-parseInt(_0x27e3ed(0x199,'\x29\x76\x52\x54'))/(-0x1ce7+0x859*-0x4+-0x4*-0xf95)*(parseInt(_0x27e3ed(0x1be,'\x42\x77\x26\x72'))/(-0x11a2*0x1+0x2ca*-0x4+-0x4ce*-0x6));if(_0x35adc6===_0x508acb)break;else _0x56ded0['push'](_0x56ded0['shift']());}catch(_0x411834){_0x56ded0['push'](_0x56ded0['shift']());}}}(_0x3e16,-0xf2a5f+-0x22391*0x4+-0xe4*-0x25ed));import{aggregateLearningHistory}from'\x2e\x2e\x2f\x61\x73\x73\x65\x74\x73\x74\x6f\x72\x65\x2f\x6c\x65\x61\x72\x6e\x69\x6e\x67\x48\x69\x73\x74\x6f\x72\x79\x2e\x6a\x73';import{reuseSentiment}from'\x2e\x2e\x2f\x6f\x70\x73\x2f\x72\x65\x75\x73\x65\x4f\x75\x74\x63\x6f\x6d\x65\x73\x2e\x6a\x73';function _0x3e16(){const _0x4a6832=['\x57\x4f\x6e\x65\x46\x47\x6c\x64\x52\x6d\x6f\x51\x66\x72\x69','\x57\x37\x4e\x64\x51\x32\x47','\x57\x37\x33\x63\x54\x43\x6f\x2f\x57\x34\x4f','\x6b\x48\x53\x77\x57\x35\x52\x63\x4c\x49\x69','\x57\x37\x5a\x64\x53\x38\x6b\x36\x57\x37\x2f\x64\x4f\x33\x4b\x4e\x42\x61','\x57\x37\x62\x72\x57\x36\x54\x31\x7a\x62\x65\x61\x65\x71','\x57\x37\x39\x6b\x57\x51\x6e\x43','\x6b\x61\x52\x63\x51\x66\x61','\x76\x53\x6f\x54\x43\x57','\x76\x71\x39\x61\x57\x50\x64\x63\x4d\x43\x6f\x4b','\x57\x51\x68\x64\x48\x5a\x5a\x64\x4d\x4b\x6d\x63','\x57\x35\x64\x64\x49\x4c\x78\x64\x4a\x61','\x69\x6d\x6f\x74\x61\x43\x6b\x42\x57\x34\x69','\x57\x34\x52\x63\x55\x43\x6f\x64\x61\x4a\x79\x76\x76\x47','\x57\x35\x4b\x34\x71\x53\x6b\x2b\x69\x38\x6b\x70\x57\x37\x42\x64\x4e\x57','\x57\x36\x42\x64\x53\x78\x69\x57\x6d\x78\x74\x64\x54\x47','\x57\x34\x74\x63\x54\x38\x6f\x36\x57\x35\x4a\x64\x52\x72\x38','\x57\x34\x79\x45\x71\x61\x79','\x6e\x64\x69\x77\x57\x4f\x34\x2b\x6d\x61','\x57\x37\x57\x37\x67\x6d\x6b\x6b\x6c\x58\x42\x63\x52\x59\x79','\x57\x35\x61\x36\x72\x38\x6b\x76\x6f\x57','\x57\x35\x6a\x63\x57\x37\x50\x70\x45\x47','\x57\x35\x64\x63\x56\x47\x44\x71','\x71\x62\x35\x44\x57\x50\x71','\x57\x35\x61\x57\x74\x43\x6b\x33\x69\x38\x6b\x6f','\x57\x51\x2f\x63\x54\x67\x44\x32\x57\x51\x46\x63\x49\x38\x6f\x4f\x57\x51\x4b','\x57\x35\x74\x64\x4f\x38\x6b\x38','\x57\x35\x42\x63\x53\x6d\x6f\x54','\x57\x37\x57\x63\x42\x75\x71','\x57\x37\x35\x78\x57\x51\x6a\x45\x57\x35\x31\x44','\x78\x53\x6f\x64\x73\x68\x2f\x64\x56\x53\x6f\x36\x66\x65\x70\x64\x48\x6d\x6f\x31\x61\x61','\x57\x52\x6d\x63\x57\x50\x66\x42\x76\x71','\x6d\x71\x34\x78','\x79\x32\x53\x51\x78\x73\x7a\x6c\x63\x71','\x69\x43\x6b\x6c\x57\x35\x4f\x31\x57\x4f\x42\x64\x4c\x53\x6f\x5a\x43\x47','\x76\x72\x39\x68\x57\x50\x5a\x63\x47\x53\x6f\x76\x57\x35\x57\x79','\x57\x35\x42\x64\x54\x43\x6b\x76\x57\x37\x33\x64\x47\x38\x6f\x2b','\x57\x51\x68\x63\x56\x33\x61','\x68\x6d\x6b\x6a\x65\x64\x33\x63\x51\x43\x6f\x38\x67\x4d\x71','\x6d\x53\x6f\x55\x41\x59\x6c\x64\x55\x4b\x30','\x57\x35\x57\x31\x57\x35\x30\x66','\x57\x36\x68\x63\x51\x6d\x6f\x49\x57\x35\x52\x63\x4e\x61','\x57\x4f\x72\x75\x65\x66\x2f\x63\x4f\x6d\x6b\x30\x6b\x73\x72\x43\x6f\x53\x6b\x71\x57\x52\x30','\x57\x51\x5a\x64\x51\x75\x61','\x57\x35\x2f\x63\x4f\x6d\x6f\x68\x57\x4f\x69\x59\x57\x35\x57\x56\x71\x71','\x57\x52\x31\x31\x57\x51\x33\x64\x4f\x71','\x63\x43\x6b\x52\x57\x36\x4a\x63\x4e\x31\x47','\x57\x35\x78\x63\x55\x61\x61','\x41\x6d\x6f\x50\x57\x37\x31\x75\x6e\x38\x6f\x4a\x57\x36\x4b','\x66\x43\x6f\x67\x62\x53\x6b\x48\x57\x35\x75','\x76\x53\x6f\x36\x7a\x6d\x6b\x4f\x44\x6d\x6f\x69\x66\x31\x57','\x68\x6d\x6f\x73\x77\x61','\x6a\x63\x43\x71\x57\x4f\x69\x33\x6f\x6d\x6b\x70\x57\x52\x30','\x66\x71\x33\x63\x54\x38\x6f\x6a\x61\x43\x6b\x4e\x65\x33\x54\x63\x57\x4f\x44\x6c\x72\x57','\x6a\x58\x6c\x63\x48\x4e\x69\x45\x6c\x38\x6b\x74\x57\x51\x4f','\x57\x34\x65\x66\x74\x47\x78\x64\x53\x43\x6f\x55\x68\x63\x69','\x57\x34\x68\x63\x55\x61\x44\x44\x57\x4f\x4b\x57\x42\x57','\x57\x4f\x42\x63\x51\x6d\x6f\x6b\x57\x51\x68\x63\x55\x38\x6b\x52\x6b\x4a\x5a\x63\x48\x43\x6f\x4d\x61\x4c\x4f','\x45\x53\x6f\x56\x57\x36\x6e\x43\x69\x53\x6f\x6f\x57\x37\x4c\x51','\x72\x43\x6f\x53\x79\x53\x6b\x2b\x7a\x43\x6f\x75\x65\x75\x30','\x57\x34\x70\x63\x51\x48\x50\x43\x57\x50\x71\x44\x41\x53\x6b\x47','\x57\x37\x52\x63\x4e\x76\x6d\x78\x6b\x4e\x66\x52','\x57\x37\x4e\x63\x4e\x6d\x6b\x6e','\x67\x6d\x6f\x77\x72\x75\x64\x63\x55\x61\x43','\x57\x36\x54\x6b\x57\x52\x58\x64\x57\x35\x7a\x69','\x57\x52\x31\x36\x71\x43\x6b\x75\x69\x57\x52\x63\x4a\x71\x64\x63\x53\x47','\x71\x30\x78\x64\x54\x53\x6b\x63\x78\x38\x6f\x47\x66\x67\x4f','\x57\x35\x52\x64\x47\x72\x47\x7a\x57\x51\x53','\x57\x4f\x48\x33\x57\x37\x30\x53\x57\x4f\x64\x64\x4b\x6d\x6f\x6c\x77\x71','\x57\x34\x33\x63\x51\x47\x57','\x57\x36\x78\x64\x55\x61\x30\x6d\x57\x4f\x4e\x64\x54\x71\x64\x64\x47\x71','\x57\x36\x71\x63\x46\x67\x2f\x64\x4c\x4b\x34\x6c\x57\x35\x57','\x61\x43\x6f\x2f\x6a\x58\x6e\x4b\x6a\x47','\x57\x36\x71\x4a\x57\x34\x4c\x37\x69\x53\x6b\x36\x6f\x66\x56\x64\x4d\x43\x6f\x46\x7a\x53\x6f\x6c','\x57\x36\x35\x63\x57\x51\x72\x73\x57\x35\x72\x76\x57\x4f\x6a\x34','\x57\x51\x78\x64\x55\x65\x43','\x57\x50\x6c\x64\x52\x61\x68\x63\x52\x72\x48\x2f\x75\x47\x4b','\x41\x4e\x4b\x51','\x57\x52\x62\x50\x57\x4f\x38\x52\x79\x6d\x6f\x62\x6f\x61','\x57\x36\x31\x72\x57\x37\x48\x30\x43\x47','\x57\x51\x43\x6b\x57\x4f\x54\x43\x63\x4b\x4f','\x57\x51\x42\x64\x52\x75\x71','\x57\x34\x65\x64\x72\x61\x34','\x57\x34\x4a\x63\x56\x43\x6f\x67\x57\x50\x38\x31\x57\x35\x43','\x41\x6d\x6f\x31\x57\x37\x44\x78\x6e\x38\x6f\x39\x57\x36\x6e\x72','\x57\x51\x6e\x30\x57\x51\x30','\x57\x52\x31\x35\x72\x43\x6f\x6b\x45\x4b\x68\x63\x4a\x72\x4e\x63\x47\x4b\x39\x65\x57\x4f\x65','\x57\x34\x4a\x63\x56\x6d\x6f\x78\x57\x50\x75\x2b\x57\x34\x6d\x57','\x6e\x48\x6c\x63\x48\x4e\x34\x77\x6c\x53\x6b\x61\x57\x52\x38','\x6d\x53\x6b\x45\x57\x35\x38\x30\x57\x4f\x5a\x64\x4f\x43\x6f\x59\x46\x61','\x57\x37\x39\x67\x57\x51\x7a\x45\x57\x35\x7a\x6e','\x57\x36\x74\x64\x4d\x31\x52\x64\x4d\x57\x34\x66\x57\x35\x69\x77','\x6b\x59\x38\x6a\x57\x4f\x34\x4b','\x57\x52\x6a\x59\x45\x49\x74\x64\x55\x57','\x77\x64\x46\x63\x4d\x53\x6b\x50\x74\x38\x6f\x75\x57\x36\x30','\x57\x36\x35\x71\x57\x36\x50\x4f','\x57\x37\x52\x64\x4a\x4b\x2f\x64\x49\x48\x69','\x62\x38\x6f\x68\x73\x4c\x70\x63\x51\x71','\x57\x52\x79\x6c\x46\x57','\x71\x49\x52\x63\x55\x53\x6b\x52\x74\x53\x6f\x44\x57\x37\x54\x55','\x57\x36\x78\x64\x54\x4e\x61\x52\x6e\x77\x4a\x64\x52\x53\x6b\x44','\x6a\x38\x6b\x43\x57\x35\x4f\x31\x57\x50\x46\x64\x53\x53\x6f\x5a','\x57\x52\x6d\x6f\x57\x50\x44\x64\x63\x4d\x31\x63\x57\x37\x79','\x43\x68\x30\x56\x75\x74\x44\x31','\x57\x37\x6c\x64\x4f\x78\x65\x34\x67\x77\x69','\x62\x38\x6f\x67\x72\x4b\x52\x63\x52\x72\x33\x64\x4e\x71','\x57\x50\x68\x64\x4b\x57\x79','\x57\x36\x71\x77\x42\x71','\x57\x52\x4b\x64\x57\x51\x31\x44\x67\x71','\x57\x37\x38\x39\x62\x43\x6b\x76\x6a\x62\x38','\x57\x36\x74\x64\x4d\x30\x4e\x64\x47\x62\x71\x72','\x57\x35\x6c\x64\x47\x67\x70\x63\x52\x6d\x6b\x52\x57\x35\x79','\x57\x52\x33\x64\x4c\x4a\x4a\x64\x48\x4c\x75\x62\x61\x77\x75','\x57\x36\x6c\x63\x49\x43\x6b\x46\x79\x43\x6b\x4a\x57\x34\x30','\x57\x4f\x33\x64\x53\x43\x6b\x6e\x57\x34\x6a\x52\x57\x4f\x79\x66\x42\x38\x6f\x6a\x46\x63\x70\x64\x51\x61','\x57\x52\x30\x6c\x7a\x43\x6f\x2b\x74\x62\x34','\x70\x47\x4f\x6b\x57\x35\x42\x63\x53\x73\x65','\x7a\x78\x30\x33\x78\x72\x54\x4d','\x57\x4f\x37\x64\x55\x43\x6f\x58\x57\x52\x34\x44\x57\x35\x34\x56\x79\x47','\x42\x33\x30\x39\x75\x73\x44\x56','\x57\x37\x64\x63\x4a\x43\x6b\x6f\x7a\x38\x6b\x35\x57\x34\x4a\x63\x56\x58\x34','\x61\x53\x6f\x4b\x6c\x58\x39\x50\x6c\x38\x6b\x34\x42\x71','\x6e\x38\x6f\x67\x66\x6d\x6b\x6b\x57\x35\x71','\x66\x47\x68\x63\x54\x53\x6b\x4e\x73\x53\x6f\x2f\x6f\x4d\x62\x43','\x6e\x48\x42\x63\x4d\x68\x69\x41\x6e\x6d\x6b\x65\x57\x52\x43','\x57\x50\x6c\x64\x56\x57\x78\x63\x54\x48\x48\x4e\x64\x71','\x57\x36\x74\x63\x4e\x48\x31\x59\x57\x50\x34','\x68\x38\x6f\x33\x6d\x61','\x57\x4f\x68\x63\x56\x53\x6f\x55\x57\x51\x74\x64\x52\x78\x56\x64\x4d\x53\x6f\x4a\x6f\x76\x76\x62\x57\x51\x65','\x57\x51\x58\x5a\x57\x51\x33\x64\x52\x62\x35\x74\x67\x47','\x57\x37\x46\x64\x56\x58\x38\x42\x57\x4f\x4e\x64\x4a\x5a\x6d','\x57\x35\x70\x64\x4a\x68\x53','\x57\x36\x30\x65\x42\x75\x4e\x64\x47\x33\x38\x67\x57\x35\x65','\x57\x36\x4e\x63\x56\x38\x6f\x38\x57\x34\x4f','\x57\x36\x30\x39\x66\x6d\x6b\x75','\x65\x53\x6f\x73\x71\x4b\x56\x63\x51\x71\x53','\x57\x50\x68\x64\x53\x53\x6b\x31\x72\x68\x79\x43\x71\x61\x33\x63\x4c\x38\x6b\x63\x57\x51\x53','\x6b\x48\x53\x66\x57\x34\x46\x63\x4e\x71','\x77\x53\x6b\x64\x57\x4f\x4b\x54\x65\x5a\x61\x47','\x6e\x6d\x6f\x35\x79\x63\x42\x63\x49\x71','\x57\x37\x6a\x61\x57\x37\x44\x4e\x79\x57\x30','\x57\x36\x53\x52\x74\x61\x64\x64\x49\x71','\x6a\x71\x46\x63\x56\x57','\x73\x4c\x74\x64\x54\x71','\x57\x52\x69\x65\x57\x4f\x39\x76','\x57\x50\x78\x64\x54\x72\x33\x63\x51\x58\x6a\x37','\x6a\x71\x64\x63\x47\x78\x69\x6e\x63\x43\x6b\x66','\x57\x37\x38\x4e\x66\x53\x6b\x6d\x6f\x72\x64\x63\x4f\x74\x57','\x76\x53\x6f\x36\x7a\x6d\x6b\x4f\x44\x6d\x6f\x45\x67\x47','\x57\x36\x53\x73\x43\x65\x4b','\x57\x37\x4c\x61\x57\x36\x30','\x69\x6d\x6b\x41\x57\x34\x34\x59\x57\x4f\x79','\x69\x38\x6b\x42\x57\x35\x57\x55','\x57\x52\x62\x38\x43\x64\x4a\x64\x4a\x61','\x57\x50\x4c\x70\x46\x62\x5a\x64\x55\x53\x6f\x4d','\x57\x4f\x6a\x6c\x42\x47','\x57\x52\x69\x63\x57\x4f\x76\x45\x64\x4b\x69\x78','\x57\x35\x70\x64\x52\x53\x6b\x30\x57\x36\x4a\x63\x56\x4a\x4b','\x57\x34\x30\x4e\x61\x38\x6b\x76\x64\x72\x33\x63\x4f\x63\x30','\x6b\x48\x4f\x68\x57\x35\x64\x63\x4e\x74\x79\x70','\x57\x37\x5a\x64\x51\x4e\x57\x58\x6a\x77\x6c\x64\x51\x53\x6b\x4d','\x57\x4f\x62\x75\x67\x4c\x52\x63\x50\x6d\x6b\x32\x77\x5a\x44\x71\x61\x6d\x6b\x34\x57\x50\x47\x6d','\x57\x37\x70\x64\x52\x78\x6d\x50\x6e\x78\x71','\x6c\x62\x42\x63\x55\x77\x43\x47\x57\x37\x34\x34\x71\x47','\x57\x36\x6c\x63\x49\x43\x6b\x46\x79\x43\x6b\x5a','\x57\x52\x35\x70\x6c\x72\x33\x63\x47\x58\x72\x42\x57\x36\x31\x5a\x57\x52\x5a\x63\x4c\x43\x6f\x43\x57\x50\x71','\x57\x52\x31\x2f\x57\x50\x69\x50\x79\x6d\x6f\x47','\x57\x50\x42\x64\x53\x47\x78\x63\x52\x72\x35\x53\x72\x61','\x70\x43\x6f\x49\x79\x49\x38','\x57\x34\x37\x64\x4d\x64\x74\x63\x4a\x53\x6b\x67\x79\x4a\x53\x6c','\x62\x63\x43\x75\x57\x50\x71\x4c\x6f\x38\x6b\x79','\x6b\x47\x61\x6a\x57\x35\x79','\x57\x36\x58\x74\x57\x51\x62\x66\x57\x35\x58\x6d\x57\x50\x76\x4c','\x57\x51\x56\x63\x55\x33\x71','\x57\x35\x2f\x64\x4d\x73\x4a\x63\x49\x43\x6b\x45\x77\x64\x38','\x57\x36\x30\x65\x42\x75\x4e\x64\x47\x32\x4b\x6c','\x57\x35\x4e\x64\x50\x43\x6b\x7a\x57\x35\x56\x64\x51\x38\x6f\x30\x6c\x63\x61','\x70\x6d\x6f\x4c\x7a\x49\x56\x64\x48\x4b\x31\x47\x57\x34\x6d','\x78\x38\x6f\x4f\x7a\x61','\x57\x37\x62\x42\x57\x35\x61\x67\x78\x58\x44\x55\x57\x35\x6c\x63\x54\x59\x78\x63\x47\x4d\x57','\x57\x34\x33\x63\x49\x30\x70\x64\x4a\x78\x33\x63\x54\x38\x6b\x46\x46\x6d\x6b\x7a\x41\x30\x76\x54','\x6a\x43\x6b\x46\x57\x37\x69','\x57\x34\x79\x45\x78\x62\x4a\x64\x50\x6d\x6f\x4e\x63\x57','\x57\x50\x68\x64\x55\x65\x6a\x71\x57\x50\x71\x6c\x73\x6d\x6b\x43\x57\x37\x6d','\x57\x4f\x52\x63\x56\x77\x44\x76\x57\x52\x38','\x57\x35\x74\x64\x54\x6d\x6b\x52\x57\x37\x4e\x63\x52\x58\x74\x64\x4d\x6d\x6f\x78','\x57\x52\x6c\x64\x48\x49\x34','\x43\x68\x43\x37\x77\x73\x7a\x52\x61\x4a\x30','\x57\x34\x70\x63\x53\x43\x6f\x48\x57\x35\x42\x64\x50\x62\x30\x33','\x57\x37\x4c\x6d\x57\x50\x58\x79\x57\x34\x72\x46\x57\x4f\x6a\x63','\x57\x36\x78\x64\x55\x61\x30\x6b\x57\x50\x47','\x57\x37\x33\x63\x49\x76\x71','\x57\x4f\x7a\x79\x67\x74\x5a\x64\x51\x53\x6f\x52\x6a\x61\x66\x65','\x6d\x53\x6f\x64\x62\x61','\x72\x57\x6e\x7a\x57\x50\x57','\x57\x51\x37\x64\x55\x4c\x56\x63\x4c\x6d\x6b\x34\x57\x50\x30\x4f','\x57\x51\x46\x64\x51\x76\x52\x63\x4e\x38\x6b\x36\x57\x50\x61'];_0x3e16=function(){return _0x4a6832;};return _0x3e16();}import{expandSignals,geneTags,tagOverlapScore}from'\x2e\x2e\x2f\x73\x69\x67\x6e\x61\x6c\x73\x2f\x65\x78\x70\x61\x6e\x64\x2e\x6a\x73';import{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';import{bannedGenesFromFailures}from'\x2e\x2f\x62\x61\x6e\x73\x2e\x6a\x73';import{geneGenerationSource}from'\x2e\x2f\x67\x65\x6e\x65\x49\x6e\x74\x61\x6b\x65\x2e\x6a\x73';const SEMANTIC_CORPUS_LIMIT=0x22b2+-0x2e4+-0xdf3*0x2;function asStrings(_0x282c29){const _0x3c4c59=_0x1adb;return Array[_0x3c4c59(0x1a1,'\x43\x70\x28\x4b')](_0x282c29)?_0x282c29[_0x3c4c59(0x183,'\x6b\x37\x68\x6b')](_0x592b60=>typeof _0x592b60===_0x3c4c59(0x1b1,'\x31\x32\x23\x41')):[];}function stringField(_0x299ff2){const _0x3fbef2=_0x1adb;return typeof _0x299ff2===_0x3fbef2(0x146,'\x29\x58\x4d\x39')&&_0x299ff2[_0x3fbef2(0x15a,'\x25\x52\x78\x57')]()[_0x3fbef2(0x207,'\x57\x79\x54\x29')]>0x12d*-0x1a+0x914+-0xe*-0x189?_0x299ff2[_0x3fbef2(0x154,'\x6e\x56\x52\x78')]():undefined;}function severityOf(_0x21154a){return _0x21154a==='\x6c\x6f\x77'||_0x21154a==='\x6d\x65\x64\x69\x75\x6d'||_0x21154a==='\x68\x69\x67\x68'?_0x21154a:undefined;}function candidateIds(_0x47d3e1,_0x780cbb){const _0x26feaa=_0x1adb;return[...new Set([_0x47d3e1,_0x780cbb][_0x26feaa(0x1e5,'\x4a\x4a\x30\x5d')](_0x1de0fc=>typeof _0x1de0fc===_0x26feaa(0x1b0,'\x29\x76\x52\x54')&&_0x1de0fc[_0x26feaa(0x1e9,'\x79\x49\x32\x74')]>0x168f+-0x266d+0xfde))];}function isBannedCandidate(_0x4ae223,_0x3d71b4,_0x1242ae){const _0xfcc59a=_0x1adb;return candidateIds(_0x3d71b4,_0x1242ae)[_0xfcc59a(0x1d3,'\x6d\x76\x65\x24')](_0x43038a=>_0x4ae223[_0xfcc59a(0x1d2,'\x42\x77\x26\x72')](_0x43038a));}function passesInjectedCandidateGates(_0x86d514,_0x3c16ba,_0x53c5e2,_0x3d889b){const _0x525704=_0x1adb,_0x2cb684=_0x86d514[_0x525704(0x1f2,'\x4d\x6f\x49\x71')];if(_0x3c16ba[_0x525704(0x1a7,'\x4a\x4a\x30\x5d')+'\x63\x65']&&!_0x3c16ba[_0x525704(0x208,'\x68\x74\x6a\x44')+_0x525704(0x148,'\x30\x42\x30\x23')]){if(!_0x2cb684||_0x53c5e2?.['\x67\x65\x74'](_0x2cb684)?.['\x74\x72\x75\x73\x74\x65\x64']!==!![])return![];}if(_0x3c16ba[_0x525704(0x14d,'\x36\x29\x49\x52')]){const _0x1dc1f9=_0x2cb684?_0x3d889b?.[_0x525704(0x168,'\x54\x56\x78\x5b')](_0x2cb684):undefined;if(!_0x2cb684||_0x1dc1f9!==undefined&&_0x1dc1f9[_0x525704(0x1cc,'\x29\x58\x4d\x39')]!==_0x525704(0x18f,'\x57\x64\x29\x29'))return![];}return!![];}function emptyLearningView(_0x46e632){return{'\x67\x65\x6e\x65\x49\x64':_0x46e632,'\x74\x6f\x74\x61\x6c':0x0,'\x73\x75\x63\x63\x65\x73\x73':0x0,'\x66\x61\x69\x6c\x65\x64':0x0,'\x73\x75\x63\x63\x65\x73\x73\x52\x61\x74\x65':0x0,'\x61\x76\x67\x53\x63\x6f\x72\x65':0x0,'\x72\x65\x63\x65\x6e\x74\x43\x61\x70\x73\x75\x6c\x65\x49\x64\x73':[]};}function combinedReuseSentiment(_0x5e368a,..._0x4910ad){const _0x48456c=_0x1adb;if(!_0x5e368a)return undefined;let _0x320264=0xbf*-0x21+0x156*0x16+-0x4c5,_0x156792=-0x1bc5*0x1+-0xa6*-0x7+0x173b,_0x5696aa=![];const _0x11a67b=new Set();for(const _0x4eb014 of _0x4910ad){if(_0x4eb014===undefined||_0x11a67b[_0x48456c(0x176,'\x69\x33\x62\x79')](_0x4eb014))continue;_0x11a67b[_0x48456c(0x204,'\x6f\x55\x69\x78')](_0x4eb014);const _0x313643=_0x5e368a[_0x48456c(0x1a5,'\x66\x6e\x46\x43')](_0x4eb014);if(_0x313643){if(_0x48456c(0x1c1,'\x6e\x6c\x4a\x78')!==_0x48456c(0x171,'\x25\x79\x35\x6e'))return _0x11d803(_0x94150c,_0x254814)['\x73\x6f\x6d\x65'](_0x2d7dc0=>_0x4b0ba3[_0x48456c(0x1f8,'\x25\x79\x35\x6e')](_0x2d7dc0));else _0x320264+=_0x313643[_0x48456c(0x1e2,'\x29\x58\x4d\x39')],_0x156792+=_0x313643['\x6e\x65\x67\x61\x74\x69\x76\x65'],_0x5696aa=!![];}}return _0x5696aa?reuseSentiment({'\x73\x75\x63\x63\x65\x73\x73':_0x320264,'\x6e\x65\x67\x61\x74\x69\x76\x65':_0x156792}):undefined;}async function computeBans(_0x3db209,_0x22ac91,_0x50ba47){const _0x711ef5=_0x1adb;if(_0x22ac91['\x6c\x65\x6e\x67\x74\x68']===0x1156+0x6a1*0x4+-0x2bda)return new Set();const _0x292ebd=await _0x3db209[_0x711ef5(0x1dd,'\x68\x74\x6a\x44')]({'\x6b\x69\x6e\x64':_0x711ef5(0x1ed,'\x43\x33\x41\x30'),'\x73\x69\x67\x6e\x61\x6c\x73\x41\x6e\x79':[..._0x22ac91],'\x6c\x69\x6d\x69\x74':_0x50ba47}),_0x553bc9=_0x292ebd[_0x711ef5(0x1d4,'\x57\x64\x29\x29')](_0x3260b8=>_0x3260b8[_0x711ef5(0x180,'\x71\x70\x48\x4c')]?.[_0x711ef5(0x1b4,'\x5a\x52\x62\x39')]===_0x711ef5(0x193,'\x6d\x76\x65\x24'))[_0x711ef5(0x194,'\x57\x79\x54\x29')](_0x5ca264=>({'\x67\x65\x6e\x65':typeof _0x5ca264[_0x711ef5(0x1c8,'\x35\x46\x45\x62')]==='\x73\x74\x72\x69\x6e\x67'?String(_0x5ca264[_0x711ef5(0x1d8,'\x4d\x6f\x49\x71')]):undefined,'\x74\x72\x69\x67\x67\x65\x72':asStrings(_0x5ca264['\x74\x72\x69\x67\x67\x65\x72'])}));return bannedGenesFromFailures(_0x553bc9,_0x22ac91);}const GENERIC_NAMESPACE_TAGS=new Set([_0x5da5f6(0x14c,'\x25\x52\x78\x57'),_0x5da5f6(0x16b,'\x5d\x74\x64\x40'),_0x5da5f6(0x1f1,'\x7a\x67\x40\x36'),_0x5da5f6(0x149,'\x6b\x37\x68\x6b'),_0x5da5f6(0x18b,'\x5a\x5d\x71\x23')]);function hasSelectionAdmissionEvidence(_0xcb2761,_0x4223d3){const _0x3ba23e=_0x5da5f6,_0x2bd8bb=new Set(geneTags(_0x4223d3)),_0x36f267=new Set(expandSignals(_0x4223d3[_0x3ba23e(0x17a,'\x6e\x56\x52\x78')+_0x3ba23e(0x1c9,'\x29\x76\x52\x54')]??[])),_0x232f06=_0x4223d3[_0x3ba23e(0x177,'\x43\x33\x41\x30')]?_0x3ba23e(0x1c0,'\x57\x64\x29\x29')+_0x4223d3['\x63\x61\x74\x65\x67\x6f\x72\x79'][_0x3ba23e(0x200,'\x6b\x37\x68\x6b')+_0x3ba23e(0x15e,'\x4e\x61\x69\x4d')]():undefined;if(_0xcb2761['\x73\x6f\x6d\x65'](_0x3a882c=>(_0x36f267[_0x3ba23e(0x181,'\x5a\x52\x62\x39')](_0x3a882c)||_0x3a882c===_0x232f06)&&!GENERIC_NAMESPACE_TAGS[_0x3ba23e(0x163,'\x29\x58\x4d\x39')](_0x3a882c)))return _0x3ba23e(0x1a0,'\x68\x74\x6a\x44')===_0x3ba23e(0x174,'\x6f\x55\x69\x78')?_0x2279aa[_0x3ba23e(0x150,'\x4b\x7a\x47\x75')](_0x38e90a)?_0x1b773c[_0x3ba23e(0x1b2,'\x26\x64\x40\x64')](_0x32e237=>typeof _0x32e237===_0x3ba23e(0x196,'\x26\x28\x41\x64')):[]:!![];const _0x19fa3a=expandSignals(_0xcb2761);if(_0x19fa3a[_0x3ba23e(0x205,'\x25\x52\x78\x57')](_0x1090c4=>_0x2bd8bb[_0x3ba23e(0x190,'\x68\x26\x6e\x5e')](_0x1090c4)&&(_0x1090c4['\x73\x74\x61\x72\x74\x73\x57\x69'+'\x74\x68'](_0x3ba23e(0x1bc,'\x5a\x5d\x71\x23'))||_0x1090c4[_0x3ba23e(0x19e,'\x31\x32\x23\x41')+'\x74\x68'](_0x3ba23e(0x1ce,'\x74\x41\x32\x35'))||_0x1090c4[_0x3ba23e(0x189,'\x52\x42\x31\x68')+'\x74\x68'](_0x3ba23e(0x162,'\x6d\x76\x65\x24')))))return!![];return _0x19fa3a[_0x3ba23e(0x1ee,'\x29\x58\x4d\x39')](_0xb6afbe=>_0xb6afbe[_0x3ba23e(0x19e,'\x31\x32\x23\x41')+'\x74\x68'](_0x3ba23e(0x1df,'\x6d\x76\x65\x24'))&&_0x36f267[_0x3ba23e(0x1f8,'\x25\x79\x35\x6e')](_0xb6afbe));}export async function assembleSelectionPool(_0x90cf10,_0x54172b,_0x4e895c={}){const _0x5c0917=_0x5da5f6,_0xcdc23a=_0x4e895c[_0x5c0917(0x19f,'\x43\x33\x41\x30')]??0x26ca+-0x9df+0x1af7*-0x1,_0x25a25b=_0x4e895c[_0x5c0917(0x1f4,'\x74\x41\x32\x35')+_0x5c0917(0x151,'\x63\x38\x4a\x43')+_0x5c0917(0x16c,'\x35\x46\x45\x62')]!==![],_0x6f281c=_0x25a25b?Math[_0x5c0917(0x188,'\x6e\x6c\x4a\x78')](_0xcdc23a,SEMANTIC_CORPUS_LIMIT):_0xcdc23a,_0x5f5685=await _0x90cf10[_0x5c0917(0x14a,'\x32\x75\x4a\x28')](_0x5c0917(0x14e,'\x31\x32\x23\x41'),_0x6f281c),_0x8afe45=withoutTaskDomainSignals(_0x54172b),_0x4d53fc=await computeBans(_0x90cf10,_0x8afe45,_0xcdc23a),_0x4c1560=new Set(_0x8afe45),_0x385d60=_0x4e895c[_0x5c0917(0x156,'\x29\x76\x52\x54')+'\x63\x65']?.[_0x5c0917(0x1a6,'\x43\x70\x28\x4b')](),_0x56ab9c=_0x4e895c[_0x5c0917(0x1aa,'\x68\x26\x6e\x5e')]?.[_0x5c0917(0x1d6,'\x29\x76\x52\x54')](),_0x5bfca8=[],_0x158d88=[],_0x305f68=[],_0x28c978=new Set(),_0x3a233f=_0x5d24f3=>{const _0x4f170b=_0x5c0917;if(_0x4f170b(0x1af,'\x6d\x76\x65\x24')===_0x4f170b(0x186,'\x52\x42\x31\x68')){if(!_0x1acf4e||_0x1afed7[_0x4f170b(0x1b6,'\x66\x6e\x46\x43')]>=_0x24478c)return;const _0x59d8c0=_0x496260[_0x4f170b(0x1c5,'\x52\x42\x31\x68')]??_0x3f39e2['\x67\x65\x6e\x65\x49\x64'];if(_0x2dd82d[_0x4f170b(0x163,'\x29\x58\x4d\x39')](_0x59d8c0))return;_0x1cc342[_0x4f170b(0x1d1,'\x32\x75\x4a\x28')](_0x59d8c0),_0x4cc3fa[_0x4f170b(0x1db,'\x7a\x23\x76\x77')](_0x222d3f);}else{if(!_0x25a25b||_0x305f68[_0x4f170b(0x1cf,'\x30\x42\x30\x23')]>=SEMANTIC_CORPUS_LIMIT)return;const _0x3ae166=_0x5d24f3[_0x4f170b(0x17b,'\x6e\x6c\x4a\x78')]??_0x5d24f3[_0x4f170b(0x16a,'\x74\x41\x32\x35')];if(_0x28c978[_0x4f170b(0x1ad,'\x29\x68\x33\x5e')](_0x3ae166))return;_0x28c978[_0x4f170b(0x14b,'\x28\x4b\x54\x41')](_0x3ae166),_0x305f68[_0x4f170b(0x1a2,'\x30\x42\x30\x23')](_0x5d24f3);}},_0x48885e=[];for(const [_0x17d2f7,_0x5146b0]of _0x5f5685[_0x5c0917(0x1ea,'\x57\x64\x29\x29')]()){if(_0x5c0917(0x158,'\x30\x42\x30\x23')!==_0x5c0917(0x1fb,'\x54\x56\x78\x5b'))return!![];else{const _0x4a005c=_0x385d60?.[_0x5c0917(0x1c6,'\x26\x64\x40\x64')](String(_0x5146b0[_0x5c0917(0x147,'\x71\x65\x67\x24')]));if(_0x4e895c[_0x5c0917(0x169,'\x61\x67\x57\x4b')+'\x63\x65']&&!_0x4e895c[_0x5c0917(0x1e3,'\x4a\x4a\x30\x5d')+_0x5c0917(0x1b3,'\x36\x29\x49\x52')]&&_0x4a005c?.['\x74\x72\x75\x73\x74\x65\x64']===![])continue;const _0x151392=_0x56ab9c?.[_0x5c0917(0x16e,'\x57\x79\x54\x29')](String(_0x5146b0[_0x5c0917(0x17d,'\x48\x25\x53\x49')]));if(_0x4e895c[_0x5c0917(0x19d,'\x6b\x37\x68\x6b')]&&_0x151392!==undefined&&_0x151392[_0x5c0917(0x1a4,'\x69\x33\x62\x79')]!==_0x5c0917(0x19c,'\x7a\x23\x76\x77')&&(!_0x4e895c[_0x5c0917(0x15c,'\x54\x56\x78\x5b')+_0x5c0917(0x1fe,'\x68\x26\x6e\x5e')]||_0x151392[_0x5c0917(0x201,'\x52\x42\x31\x68')]===_0x5c0917(0x1bf,'\x61\x72\x79\x53')))continue;const _0x31ab7a=typeof _0x5146b0['\x69\x64']===_0x5c0917(0x160,'\x6b\x37\x68\x6b')?String(_0x5146b0['\x69\x64']):String(_0x5146b0[_0x5c0917(0x147,'\x71\x65\x67\x24')]),_0x14f396=String(_0x5146b0[_0x5c0917(0x1c7,'\x4d\x6f\x49\x71')]);if(isBannedCandidate(_0x4d53fc,_0x31ab7a,_0x14f396))continue;const _0x42073e=asStrings(_0x5146b0[_0x5c0917(0x197,'\x48\x25\x53\x49')+_0x5c0917(0x1a3,'\x31\x32\x23\x41')]),_0x362bb4=withoutTaskDomainSignals(_0x42073e),_0x2feba2=typeof _0x5146b0[_0x5c0917(0x179,'\x61\x72\x79\x53')]===_0x5c0917(0x155,'\x43\x33\x41\x30')?String(_0x5146b0[_0x5c0917(0x18d,'\x6b\x37\x68\x6b')]):undefined,_0x332d1a=typeof _0x5146b0[_0x5c0917(0x152,'\x4a\x4a\x30\x5d')]===_0x5c0917(0x153,'\x4e\x61\x69\x4d')?String(_0x5146b0[_0x5c0917(0x1ac,'\x69\x33\x62\x79')]):undefined,_0xd94cbc=_0x362bb4[_0x5c0917(0x145,'\x35\x46\x45\x62')](_0x4d100c=>_0x4c1560[_0x5c0917(0x202,'\x71\x70\x48\x4c')](_0x4d100c)),_0x4dd4c5={'\x73\x69\x67\x6e\x61\x6c\x73\x4d\x61\x74\x63\x68':_0x362bb4,'\x67\x65\x6e\x65\x49\x64':_0x31ab7a,'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x2feba2,'\x73\x75\x6d\x6d\x61\x72\x79':_0x332d1a};if(_0x4a005c?.[_0x5c0917(0x1f9,'\x6e\x56\x52\x78')]!==![]&&(_0x151392===undefined||_0x151392[_0x5c0917(0x1da,'\x7a\x23\x76\x77')]==='\x61\x70\x70\x72\x6f\x76\x65\x64')){if(_0x5c0917(0x1dc,'\x68\x74\x6a\x44')!=='\x5a\x56\x6d\x56\x55'){const _0x4dae0d=_0x1d2ce6?_0x368a16?.[_0x5c0917(0x1d9,'\x30\x42\x30\x23')](_0x197b9b):_0xf48453;if(!_0x4e4644||_0x4dae0d!==_0x51a1b7&&_0x4dae0d[_0x5c0917(0x1e7,'\x5a\x52\x62\x39')]!==_0x5c0917(0x185,'\x42\x77\x26\x72'))return![];}else _0x3a233f({'\x67\x65\x6e\x65\x49\x64':_0x31ab7a,'\x61\x73\x73\x65\x74\x49\x64':_0x14f396,'\x73\x69\x67\x6e\x61\x6c\x73\x4d\x61\x74\x63\x68':_0x42073e,'\x76\x69\x65\x77':emptyLearningView(_0x31ab7a),..._0x2feba2?{'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x2feba2}:{},..._0x332d1a?{'\x73\x75\x6d\x6d\x61\x72\x79':_0x332d1a}:{}});}if(_0x17d2f7>=_0xcdc23a)continue;const _0x529c1c=_0xd94cbc||hasSelectionAdmissionEvidence(_0x8afe45,_0x4dd4c5);if(!_0x529c1c){const _0x58abe2=geneGenerationSource(_0x5146b0,_0x31ab7a);if(_0x58abe2===_0x5c0917(0x16f,'\x26\x28\x41\x64')+'\x64'||_0x58abe2===_0x5c0917(0x206,'\x57\x79\x54\x29')){if(_0x5c0917(0x157,'\x63\x38\x4a\x43')!==_0x5c0917(0x1d0,'\x6e\x56\x52\x78'))_0x158d88[_0x5c0917(0x15f,'\x4d\x6f\x49\x71')]({'\x67\x65\x6e\x65\x49\x64':_0x31ab7a,'\x61\x73\x73\x65\x74\x49\x64':_0x14f396,'\x73\x69\x67\x6e\x61\x6c\x73\x4d\x61\x74\x63\x68':_0x42073e,'\x76\x69\x65\x77':emptyLearningView(_0x31ab7a),'\x72\x65\x75\x73\x65\x43\x6f\x75\x6e\x74':0x0,'\x67\x65\x6e\x65\x72\x61\x74\x69\x6f\x6e\x53\x6f\x75\x72\x63\x65':_0x58abe2,..._0x2feba2?{'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x2feba2}:{},..._0x332d1a?{'\x73\x75\x6d\x6d\x61\x72\x79':_0x332d1a}:{}});else return _0x3646c8===_0x5c0917(0x209,'\x4a\x4a\x30\x5d')||_0x38774d===_0x5c0917(0x1ba,'\x68\x26\x6e\x5e')||_0x5c6033===_0x5c0917(0x1eb,'\x74\x41\x32\x35')?_0x13b7c4:_0x2928d6;}continue;}const _0x311b63=await aggregateLearningHistory(_0x90cf10,_0x31ab7a),_0x507818=_0x4a005c?.[_0x5c0917(0x1a8,'\x7a\x23\x76\x77')]!==![]&&(_0x151392===undefined||_0x151392[_0x5c0917(0x192,'\x30\x42\x30\x23')]===_0x5c0917(0x1ef,'\x6b\x37\x68\x6b')),_0x7772f2=combinedReuseSentiment(_0x4e895c[_0x5c0917(0x17e,'\x28\x4b\x54\x41')+_0x5c0917(0x18e,'\x57\x79\x54\x29')],_0x31ab7a,String(_0x5146b0['\x61\x73\x73\x65\x74\x5f\x69\x64']));_0x5bfca8['\x70\x75\x73\x68']({'\x67\x65\x6e\x65\x49\x64':_0x31ab7a,'\x61\x73\x73\x65\x74\x49\x64':String(_0x5146b0[_0x5c0917(0x1ec,'\x7a\x67\x40\x36')]),'\x73\x69\x67\x6e\x61\x6c\x73\x4d\x61\x74\x63\x68':_0x42073e,'\x76\x69\x65\x77':_0x311b63,'\x72\x65\x75\x73\x65\x43\x6f\x75\x6e\x74':_0x311b63[_0x5c0917(0x19a,'\x26\x28\x41\x64')]+_0x311b63[_0x5c0917(0x1ca,'\x69\x33\x62\x79')],..._0x2feba2?{'\x63\x61\x74\x65\x67\x6f\x72\x79':_0x2feba2}:{},..._0x332d1a?{'\x73\x75\x6d\x6d\x61\x72\x79':_0x332d1a}:{},..._0x7772f2!==undefined?{'\x72\x65\x75\x73\x65\x41\x64\x6a\x75\x73\x74':_0x7772f2}:{},'\x65\x78\x70\x6c\x6f\x72\x61\x74\x69\x6f\x6e\x45\x6c\x69\x67\x69\x62\x6c\x65':_0x507818});}}if(_0x4e895c[_0x5c0917(0x1e6,'\x32\x75\x4a\x28')+'\x64\x61\x74\x65\x73']&&_0x4e895c[_0x5c0917(0x1f3,'\x59\x75\x67\x4a')+'\x64\x61\x74\x65\x73']['\x6c\x65\x6e\x67\x74\x68']>0x11d6+-0xdd6+-0x400){const _0x2b253a=new Set(_0x5bfca8[_0x5c0917(0x1f0,'\x54\x56\x78\x5b')](_0x1f200c=>_0x1f200c[_0x5c0917(0x1b7,'\x29\x58\x4d\x39')])),_0x19d793=new Set(_0x5bfca8[_0x5c0917(0x1c2,'\x5a\x5d\x71\x23')](_0x1c157c=>_0x1c157c[_0x5c0917(0x1c4,'\x76\x30\x79\x24')])[_0x5c0917(0x1e0,'\x4a\x6b\x6c\x48')](_0x159a4b=>_0x159a4b!==undefined));for(const _0x4e1cec of _0x4e895c[_0x5c0917(0x18a,'\x4d\x6f\x49\x71')+_0x5c0917(0x1bd,'\x6f\x55\x69\x78')]){if(!passesInjectedCandidateGates(_0x4e1cec,_0x4e895c,_0x385d60,_0x56ab9c))continue;if(_0x2b253a[_0x5c0917(0x1de,'\x68\x74\x6a\x44')](_0x4e1cec[_0x5c0917(0x167,'\x59\x75\x67\x4a')]))continue;if(_0x4e1cec[_0x5c0917(0x1d5,'\x61\x72\x79\x53')]&&_0x19d793[_0x5c0917(0x1f5,'\x28\x4b\x54\x41')](_0x4e1cec[_0x5c0917(0x1d7,'\x28\x4b\x54\x41')]))continue;if(isBannedCandidate(_0x4d53fc,_0x4e1cec[_0x5c0917(0x1ab,'\x4a\x4a\x30\x5d')],_0x4e1cec[_0x5c0917(0x164,'\x68\x26\x6e\x5e')]))continue;const _0x38c7ae=_0x4e1cec[_0x5c0917(0x165,'\x7a\x23\x76\x77')+_0x5c0917(0x172,'\x6e\x6c\x4a\x78')]===undefined?combinedReuseSentiment(_0x4e895c[_0x5c0917(0x1a9,'\x6d\x76\x65\x24')+_0x5c0917(0x198,'\x76\x30\x79\x24')],_0x4e1cec[_0x5c0917(0x1b8,'\x68\x26\x6e\x5e')],_0x4e1cec[_0x5c0917(0x17b,'\x6e\x6c\x4a\x78')]):undefined,_0x2f5a00={..._0x4e1cec,'\x65\x78\x70\x6c\x6f\x72\x61\x74\x69\x6f\x6e\x45\x6c\x69\x67\x69\x62\x6c\x65':![]};_0x5bfca8[_0x5c0917(0x159,'\x6e\x6c\x4a\x78')](_0x38c7ae!==undefined?{..._0x2f5a00,'\x72\x65\x75\x73\x65\x41\x64\x6a\x75\x73\x74':_0x38c7ae}:_0x2f5a00),_0x2b253a[_0x5c0917(0x15d,'\x4a\x6b\x6c\x48')](_0x4e1cec['\x67\x65\x6e\x65\x49\x64']);if(_0x4e1cec[_0x5c0917(0x191,'\x79\x49\x32\x74')])_0x19d793[_0x5c0917(0x1fd,'\x36\x29\x49\x52')](_0x4e1cec[_0x5c0917(0x1cd,'\x4d\x67\x5a\x79')]);}}for(const _0x4cd429 of await _0x90cf10[_0x5c0917(0x14a,'\x32\x75\x4a\x28')](_0x5c0917(0x1e1,'\x29\x76\x52\x54'),_0xcdc23a)){if(_0x56ab9c?.[_0x5c0917(0x168,'\x54\x56\x78\x5b')](String(_0x4cd429[_0x5c0917(0x1fc,'\x4a\x6b\x6c\x48')]))?.[_0x5c0917(0x14f,'\x6f\x55\x69\x78')]!==_0x5c0917(0x1bb,'\x5a\x52\x62\x39'))continue;const _0x741012=asStrings(_0x4cd429[_0x5c0917(0x1ff,'\x4e\x61\x69\x4d')]),_0x3ffda5=asStrings(_0x4cd429['\x61\x76\x6f\x69\x64']);if(_0x741012[_0x5c0917(0x15b,'\x63\x38\x4a\x43')]===0x1498+-0x5e5*-0x4+-0x1*0x2c2c||_0x3ffda5[_0x5c0917(0x182,'\x69\x33\x62\x79')]===0x30c+-0x3cb*-0x2+-0xaa2)continue;const _0x4c6dde=stringField(_0x4cd429['\x69\x64'])??String(_0x4cd429[_0x5c0917(0x175,'\x28\x4b\x54\x41')]),_0x53100e=stringField(_0x4cd429[_0x5c0917(0x173,'\x48\x25\x53\x49')]),_0xc5650=withoutTaskDomainSignals(_0x741012),_0x4725df=_0xc5650[_0x5c0917(0x195,'\x6e\x56\x52\x78')](_0x14a421=>_0x4c1560[_0x5c0917(0x1ae,'\x4d\x6f\x49\x71')](_0x14a421))||tagOverlapScore(_0x8afe45,{'\x73\x69\x67\x6e\x61\x6c\x73\x4d\x61\x74\x63\x68':_0xc5650,'\x67\x65\x6e\x65\x49\x64':_0x4c6dde,'\x73\x75\x6d\x6d\x61\x72\x79':_0x53100e})>0x104e*-0x1+0x1*-0x109d+0xaf9*0x3;if(!_0x4725df)continue;const _0x3b36d1=severityOf(_0x4cd429['\x73\x65\x76\x65\x72\x69\x74\x79']),_0x5630ac=stringField(_0x4cd429[_0x5c0917(0x19b,'\x61\x72\x79\x53')+'\x65']);_0x48885e[_0x5c0917(0x170,'\x76\x30\x79\x24')]({'\x61\x6e\x74\x69\x47\x65\x6e\x65\x49\x64':_0x4c6dde,'\x61\x73\x73\x65\x74\x49\x64':String(_0x4cd429[_0x5c0917(0x166,'\x25\x52\x78\x57')]),'\x74\x72\x69\x67\x67\x65\x72':_0x741012,'\x61\x76\x6f\x69\x64':_0x3ffda5,..._0x53100e?{'\x73\x75\x6d\x6d\x61\x72\x79':_0x53100e}:{},..._0x3b36d1?{'\x73\x65\x76\x65\x72\x69\x74\x79':_0x3b36d1}:{},..._0x5630ac?{'\x72\x61\x74\x69\x6f\x6e\x61\x6c\x65':_0x5630ac}:{}});}return{'\x63\x61\x6e\x64\x69\x64\x61\x74\x65\x73':_0x5bfca8,'\x64\x69\x73\x74\x69\x6c\x6c\x65\x64\x46\x61\x6c\x6c\x62\x61\x63\x6b':_0x158d88,'\x73\x65\x6d\x61\x6e\x74\x69\x63\x43\x6f\x72\x70\x75\x73':_0x305f68,'\x61\x6e\x74\x69\x57\x61\x72\x6e\x69\x6e\x67\x73':_0x48885e};}function _0x1adb(_0x4a33b7,_0x1d2326){_0x4a33b7=_0x4a33b7-(-0x4f*0x6a+-0x7d5+0x29d0);const _0x1e4eef=_0x3e16();let _0x1c479f=_0x1e4eef[_0x4a33b7];if(_0x1adb['\x76\x72\x43\x47\x70\x75']===undefined){var _0x227120=function(_0x306114){const _0x186db5='\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 _0x44afa4='',_0x6346f='';for(let _0x4cb243=0x6*0xb+-0x8*0x3c6+-0x3*-0x9fa,_0x3c3fdb,_0x3209e7,_0x26bed2=-0x2*-0x3c7+-0x25e*0x7+-0x904*-0x1;_0x3209e7=_0x306114['\x63\x68\x61\x72\x41\x74'](_0x26bed2++);~_0x3209e7&&(_0x3c3fdb=_0x4cb243%(0x9*-0x1ff+-0x108c+0x2287)?_0x3c3fdb*(0x1*0x4c7+-0x425*0x3+0x7e8)+_0x3209e7:_0x3209e7,_0x4cb243++%(0x23cb+-0x26ec+0x325))?_0x44afa4+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x229*-0x8+-0x77+-0xfd2*0x1&_0x3c3fdb>>(-(-0x1f7d+0x25*-0x3b+0x2806)*_0x4cb243&-0x1bb*0x1+0x25d9*0x1+0x2c*-0xd2)):-0x7*-0x15a+-0x3*-0x1df+-0x11*0xe3){_0x3209e7=_0x186db5['\x69\x6e\x64\x65\x78\x4f\x66'](_0x3209e7);}for(let _0x79df88=-0x1*0xe88+0x1*-0x210a+-0x1*-0x2f92,_0x2b0e78=_0x44afa4['\x6c\x65\x6e\x67\x74\x68'];_0x79df88<_0x2b0e78;_0x79df88++){_0x6346f+='\x25'+('\x30\x30'+_0x44afa4['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x79df88)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x93f+-0xaba+0x18b))['\x73\x6c\x69\x63\x65'](-(0x14f+-0x3a*0xa4+-0x43*-0x89));}return decodeURIComponent(_0x6346f);};const _0xa3d9be=function(_0x1531c6,_0x441f00){let _0x1b25c8=[],_0x1a735e=-0x1*0x1a8d+0x190f+0x17e,_0x34ea77,_0x5a8c99='';_0x1531c6=_0x227120(_0x1531c6);let _0x2eb7f4;for(_0x2eb7f4=0x2068+0x10d8+-0x3140;_0x2eb7f4<0x26f3*-0x1+-0xfec+0x37df;_0x2eb7f4++){_0x1b25c8[_0x2eb7f4]=_0x2eb7f4;}for(_0x2eb7f4=-0x812+0x1*0x8c9+-0xb7*0x1;_0x2eb7f4<-0x1*-0x13eb+-0x2007+0x1*0xd1c;_0x2eb7f4++){_0x1a735e=(_0x1a735e+_0x1b25c8[_0x2eb7f4]+_0x441f00['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2eb7f4%_0x441f00['\x6c\x65\x6e\x67\x74\x68']))%(-0x5e*0x40+0x21dc+-0x257*0x4),_0x34ea77=_0x1b25c8[_0x2eb7f4],_0x1b25c8[_0x2eb7f4]=_0x1b25c8[_0x1a735e],_0x1b25c8[_0x1a735e]=_0x34ea77;}_0x2eb7f4=-0x1d70*0x1+-0x126e+0x2fde,_0x1a735e=0x10db+0x1*-0x394+0x1*-0xd47;for(let _0x3c003a=-0xca7+-0x1938+0x25df;_0x3c003a<_0x1531c6['\x6c\x65\x6e\x67\x74\x68'];_0x3c003a++){_0x2eb7f4=(_0x2eb7f4+(-0x1bc8+0x1eb3+-0x2ea))%(-0x1*0x2537+0x150e+-0x17*-0xbf),_0x1a735e=(_0x1a735e+_0x1b25c8[_0x2eb7f4])%(0x1c3d*-0x1+-0x1c32*-0x1+0x10b*0x1),_0x34ea77=_0x1b25c8[_0x2eb7f4],_0x1b25c8[_0x2eb7f4]=_0x1b25c8[_0x1a735e],_0x1b25c8[_0x1a735e]=_0x34ea77,_0x5a8c99+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x1531c6['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3c003a)^_0x1b25c8[(_0x1b25c8[_0x2eb7f4]+_0x1b25c8[_0x1a735e])%(0x57e*-0x3+-0x5a7*0x2+0x18*0x133)]);}return _0x5a8c99;};_0x1adb['\x67\x70\x62\x4b\x53\x49']=_0xa3d9be,_0x1adb['\x6e\x62\x55\x4a\x53\x4d']={},_0x1adb['\x76\x72\x43\x47\x70\x75']=!![];}const _0x354662=_0x1e4eef[0x2463+-0x395+-0x20ce],_0x4b924b=_0x4a33b7+_0x354662,_0x3bdb05=_0x1adb['\x6e\x62\x55\x4a\x53\x4d'][_0x4b924b];return!_0x3bdb05?(_0x1adb['\x4f\x58\x67\x46\x67\x57']===undefined&&(_0x1adb['\x4f\x58\x67\x46\x67\x57']=!![]),_0x1c479f=_0x1adb['\x67\x70\x62\x4b\x53\x49'](_0x1c479f,_0x1d2326),_0x1adb['\x6e\x62\x55\x4a\x53\x4d'][_0x4b924b]=_0x1c479f):_0x1c479f=_0x3bdb05,_0x1c479f;}export async function assembleCandidates(_0x5a480a,_0x58ffb2,_0x4738bb={}){const _0x40ddbc=_0x5da5f6;return(await assembleSelectionPool(_0x5a480a,_0x58ffb2,{..._0x4738bb,'\x69\x6e\x63\x6c\x75\x64\x65\x53\x65\x6d\x61\x6e\x74\x69\x63\x43\x6f\x72\x70\x75\x73':![]}))[_0x40ddbc(0x17f,'\x6e\x6c\x4a\x78')+'\x65\x73'];}
@@ -1,146 +1 @@
1
- // Capability candidate extraction (ported from v1 src/gep/candidates.js). Mines NEW capability proposals
2
- // from agent behavior — repeated tool calls, active opportunity signals, and clusters of failed evolutions —
3
- // to feed the innovation step. Candidates are ADVISORY (the agent runtime decides whether to act, exactly
4
- // as in v1); this is the self-growth path v2 otherwise lacks (v2 only scores EXISTING genes). Pure +
5
- // deterministic: callers pass already-extracted tool-call names / signals / failed capsules; no time/io here.
6
- import { expandSignals } from '../signals/expand.js';
7
- const TOOL_CALL_MIN = 3;
8
- const FAILURE_CLUSTER_MIN = 2;
9
- const TITLE_MAX = 120;
10
- const EVIDENCE_MAX = 240;
11
- /** Predefined signal → candidate-title map (ported v1): defensive + opportunity signals. */
12
- const SIGNAL_CANDIDATES = [
13
- { signal: 'log_error', title: 'Repair recurring runtime errors' },
14
- { signal: 'protocol_drift', title: 'Prevent protocol drift and enforce auditable outputs' },
15
- { signal: 'windows_shell_incompatible', title: 'Avoid platform-specific shell assumptions (Windows compatibility)' },
16
- { signal: 'session_logs_missing', title: 'Harden session log detection and fallback behavior' },
17
- { signal: 'user_feature_request', title: 'Implement user-requested feature' },
18
- { signal: 'user_improvement_suggestion', title: 'Apply user improvement suggestion' },
19
- { signal: 'perf_bottleneck', title: 'Resolve performance bottleneck' },
20
- { signal: 'capability_gap', title: 'Fill capability gap' },
21
- { signal: 'stable_success_plateau', title: 'Explore new strategies during stability plateau' },
22
- { signal: 'external_opportunity', title: 'Evaluate external A2A asset for local adoption' },
23
- // Harness context-budget family (v1 context-compression gene family port). v2 ships no seed-gene catalog, so
24
- // the reusable strategies arrive as ADVISORY candidates the runtime may distill into genes — one per bloat
25
- // source, because a single "shorten the prompt" proposal loses the distinction that decides what is safe to
26
- // drop (an always-on tool schema is lazy-loadable; an approval gate is not).
27
- { signal: 'prompt_budget_measurement', title: 'Measure the prompt budget per source before compressing context' },
28
- { signal: 'context_explosion', title: 'Attribute a context-window overflow to its largest prompt source' },
29
- { signal: 'tool_schema_bloat', title: 'Load exact tool/MCP schemas from the runtime loader instead of always-on prompt text' },
30
- { signal: 'skill_list_bloat', title: 'Compress skill and agent-type descriptions into selectable route cards' },
31
- { signal: 'transcript_context_bloat', title: 'Compress a pasted transcript into a session handoff packet' },
32
- { signal: 'memory_index_budget', title: 'Keep the memory index lean and rely on relevance recall for detail' },
33
- ];
34
- /** Highest → lowest priority problem class used to pick a failure cluster's grouping key (ported v1). */
35
- const PROBLEM_PRIORITY = ['problem:performance', 'problem:protocol', 'problem:reliability', 'problem:stagnation', 'problem:capability'];
36
- /** FNV-1a 32-bit stable hash (ported v1 hash.js) — deterministic candidate ids. */
37
- function stableHash(input) {
38
- let h = 2166136261;
39
- for (let i = 0; i < input.length; i++) {
40
- h ^= input.charCodeAt(i);
41
- h = Math.imul(h, 16777619);
42
- }
43
- return (h >>> 0).toString(16).padStart(8, '0');
44
- }
45
- const clip = (s, n) => (s.length > n ? s.slice(0, n) : s);
46
- /** Build the fixed five-question shape (ported v1): only title/params/evidence vary per candidate. */
47
- function buildShape(title, signals, evidence) {
48
- const params = `Signals: ${signals.join(', ')}`.trim();
49
- return {
50
- title: clip(title, TITLE_MAX),
51
- input: 'Recent session transcript + memory snippets + user instructions',
52
- output: 'A safe, auditable evolution patch guided by GEP assets',
53
- invariants: 'Protocol order, small reversible patches, validation, append-only events',
54
- params: params || 'Signals: (none)',
55
- failure_points: 'Missing signals, over-broad changes, skipped validation, missing knowledge solidification',
56
- evidence: clip(evidence, EVIDENCE_MAX),
57
- };
58
- }
59
- function candidate(source, id, title, signals, evidence, tags) {
60
- return { type: 'CapabilityCandidate', id: `cand_${id}`, title, source, signals, tags, shape: buildShape(title, signals, evidence) };
61
- }
62
- function failureTitle(tags) {
63
- if (tags.includes('problem:performance'))
64
- return 'Resolve recurring performance regressions';
65
- if (tags.includes('problem:protocol'))
66
- return 'Prevent recurring protocol and validation regressions';
67
- if (tags.includes('problem:reliability'))
68
- return 'Repair recurring reliability failures';
69
- if (tags.includes('problem:stagnation'))
70
- return 'Break repeated stagnation loops with a new strategy';
71
- if (tags.includes('area:orchestration'))
72
- return 'Stabilize task and orchestration behavior';
73
- return 'Learn from recurring failed evolution paths';
74
- }
75
- /**
76
- * Mine capability candidates from three sources (ported v1): repeated tool calls (>=3), active opportunity
77
- * signals, and clusters of failed capsules (>=2 in the same dominant-problem group). Deduped by stable id.
78
- */
79
- export function extractCapabilityCandidates(inp) {
80
- const signals = (inp.signals ?? []).map((s) => String(s));
81
- const signalTags = expandSignals(signals);
82
- const out = [];
83
- // A. Tool-call mining: a tool used >= TOOL_CALL_MIN times suggests a reusable capability.
84
- const freq = new Map();
85
- for (const t of inp.toolCalls ?? [])
86
- freq.set(t, (freq.get(t) ?? 0) + 1);
87
- for (const [tool, count] of freq) {
88
- if (count < TOOL_CALL_MIN)
89
- continue;
90
- const title = `Repeated tool usage: ${tool}`;
91
- out.push(candidate('transcript', stableHash(title), title, signals, `Observed ${count} occurrences of tool call ${tool}.`, signalTags));
92
- }
93
- // A2. Conversation sniffer hits: a transcript explicitly proved a reusable capability.
94
- for (const hit of inp.conversationHits ?? []) {
95
- const hitSignals = [...new Set([...(hit.signals ?? []), ...signals].map((s) => String(s)).filter(Boolean))];
96
- out.push(candidate('transcript', stableHash('conversation:' + hit.id), hit.title || 'Verified reusable conversation capability', hitSignals, hit.evidence.length > 0 ? hit.evidence.slice(0, 2).join('; ') : hit.summary, [...new Set([...signalTags, ...expandSignals(hitSignals)])]));
97
- }
98
- // B. Signal-mapped candidates: predefined defensive/opportunity signals.
99
- for (const sc of SIGNAL_CANDIDATES) {
100
- if (!signals.some((s) => s === sc.signal || s.startsWith(sc.signal + ':')))
101
- continue;
102
- out.push(candidate('signals', stableHash(sc.signal), sc.title, signals, `Signal ${sc.signal} active.`, signalTags));
103
- }
104
- // C. Failure clustering: group failed capsules by dominant problem class.
105
- const groups = new Map();
106
- for (const fc of inp.failedCapsules ?? []) {
107
- if (fc.outcome?.status === 'success')
108
- continue;
109
- const reason = String(fc.failure_reason ?? '').trim();
110
- const failureTags = expandSignals([...(fc.trigger ?? []), ...signals], reason).filter((t) => /^(problem|risk|area|action):/.test(t));
111
- if (failureTags.length === 0)
112
- continue;
113
- let dominant = null;
114
- for (const p of PROBLEM_PRIORITY)
115
- if (failureTags.includes(p)) {
116
- dominant = p;
117
- break;
118
- }
119
- const grouping = dominant ? [dominant] : failureTags.filter((t) => t.startsWith('area:') || t.startsWith('risk:')).slice(0, 1);
120
- const key = grouping.join('|');
121
- if (!key)
122
- continue;
123
- const g = groups.get(key) ?? { count: 0, tags: failureTags, reasons: [] };
124
- g.count += 1;
125
- if (reason)
126
- g.reasons.push(reason);
127
- groups.set(key, g);
128
- }
129
- for (const [key, g] of groups) {
130
- if (g.count < FAILURE_CLUSTER_MIN)
131
- continue;
132
- const title = failureTitle(g.tags);
133
- const evidence = `${g.count} recurring failures${g.reasons.length ? ` (${g.reasons.slice(0, 2).join('; ')})` : ''}`;
134
- out.push(candidate('failed_capsules', stableHash('failed:' + key), title, signals, evidence, g.tags));
135
- }
136
- // Dedup by stable id (first occurrence wins).
137
- const seen = new Set();
138
- const deduped = [];
139
- for (const c of out) {
140
- if (seen.has(c.id))
141
- continue;
142
- seen.add(c.id);
143
- deduped.push(c);
144
- }
145
- return deduped;
146
- }
1
+ const _0x24fd3e=_0x3e9b;(function(_0x608508,_0x3b3c9e){const _0xcf0a40=_0x3e9b,_0x1a842b=_0x608508();while(!![]){try{const _0x3522ef=parseInt(_0xcf0a40(0x19b,'\x29\x5b\x72\x6e'))/(0x13c+-0x26bb*0x1+0x78*0x50)*(parseInt(_0xcf0a40(0xdc,'\x38\x28\x5b\x64'))/(0xa*-0xa8+-0x701*0x4+0x2296))+-parseInt(_0xcf0a40(0x193,'\x5e\x72\x56\x42'))/(0x35*-0xaa+0x2*0x297+0x1e07*0x1)+-parseInt(_0xcf0a40(0x123,'\x62\x67\x58\x37'))/(-0x6d4+-0x1*0xd13+0x13eb*0x1)*(-parseInt(_0xcf0a40(0x18f,'\x64\x35\x23\x51'))/(-0x18f2+0xa19+0xede))+-parseInt(_0xcf0a40(0x133,'\x56\x57\x76\x59'))/(0x8*0x202+-0x1a4a+0x148*0x8)+-parseInt(_0xcf0a40(0xd3,'\x29\x5b\x72\x6e'))/(-0x58d+-0x59*0x2e+0xfb*0x16)*(-parseInt(_0xcf0a40(0xef,'\x6c\x41\x56\x42'))/(0x137e+0x37e+-0xd*0x1c4))+parseInt(_0xcf0a40(0x192,'\x71\x23\x77\x28'))/(-0x7*0x406+-0x188e+0x34c1)+-parseInt(_0xcf0a40(0x1f2,'\x77\x44\x77\x38'))/(-0x1be0+0x1*-0x25f+0x1e49*0x1)*(parseInt(_0xcf0a40(0x17f,'\x4e\x54\x31\x42'))/(-0x2269+0x546+0x2d*0xa6));if(_0x3522ef===_0x3b3c9e)break;else _0x1a842b['push'](_0x1a842b['shift']());}catch(_0x149ffa){_0x1a842b['push'](_0x1a842b['shift']());}}}(_0x2af1,-0x1*0xeb2fa+-0xc1cb+0x1701b6));import{expandSignals}from'\x2e\x2e\x2f\x73\x69\x67\x6e\x61\x6c\x73\x2f\x65\x78\x70\x61\x6e\x64\x2e\x6a\x73';const TOOL_CALL_MIN=0x3de+-0xcac+-0x1*-0x8d1,FAILURE_CLUSTER_MIN=-0x2001+-0x2*-0xb21+-0x1*-0x9c1,TITLE_MAX=-0x15b2*-0x1+0xd66+0x10*-0x22a,EVIDENCE_MAX=0x1f56+0xbc0+-0x2a26,SIGNAL_CANDIDATES=[{'\x73\x69\x67\x6e\x61\x6c':_0x24fd3e(0x15b,'\x36\x58\x25\x56')+'\x72','\x74\x69\x74\x6c\x65':_0x24fd3e(0x14d,'\x67\x63\x35\x31')+_0x24fd3e(0x184,'\x71\x23\x77\x28')+_0x24fd3e(0x15d,'\x36\x4a\x31\x5a')+_0x24fd3e(0x1fc,'\x64\x76\x51\x59')},{'\x73\x69\x67\x6e\x61\x6c':'\x70\x72\x6f\x74\x6f\x63\x6f\x6c'+_0x24fd3e(0x145,'\x48\x70\x59\x47'),'\x74\x69\x74\x6c\x65':_0x24fd3e(0x1d9,'\x77\x49\x4a\x34')+_0x24fd3e(0xfc,'\x54\x5e\x4f\x4d')+'\x20\x64\x72\x69\x66\x74\x20\x61'+_0x24fd3e(0x1a8,'\x69\x47\x65\x32')+_0x24fd3e(0x13c,'\x64\x35\x23\x51')+'\x61\x62\x6c\x65\x20\x6f\x75\x74'+'\x70\x75\x74\x73'},{'\x73\x69\x67\x6e\x61\x6c':_0x24fd3e(0x135,'\x5e\x72\x56\x42')+_0x24fd3e(0xf7,'\x5e\x72\x56\x42')+_0x24fd3e(0x1e0,'\x37\x38\x6b\x73')+'\x6c\x65','\x74\x69\x74\x6c\x65':_0x24fd3e(0x1d5,'\x30\x6e\x28\x58')+'\x61\x74\x66\x6f\x72\x6d\x2d\x73'+_0x24fd3e(0x19f,'\x4e\x61\x52\x4b')+_0x24fd3e(0x153,'\x5e\x79\x74\x46')+_0x24fd3e(0x20f,'\x5e\x72\x56\x42')+_0x24fd3e(0x101,'\x62\x67\x58\x37')+_0x24fd3e(0x1a3,'\x4e\x61\x52\x4b')+_0x24fd3e(0xf9,'\x5e\x79\x74\x46')+'\x29'},{'\x73\x69\x67\x6e\x61\x6c':_0x24fd3e(0x131,'\x4e\x54\x31\x42')+'\x6c\x6f\x67\x73\x5f\x6d\x69\x73'+_0x24fd3e(0x1cf,'\x67\x63\x35\x31'),'\x74\x69\x74\x6c\x65':_0x24fd3e(0xe7,'\x4b\x67\x79\x72')+_0x24fd3e(0x216,'\x64\x42\x37\x25')+_0x24fd3e(0x159,'\x25\x59\x6d\x71')+_0x24fd3e(0x12e,'\x69\x31\x4f\x69')+_0x24fd3e(0x170,'\x64\x42\x37\x25')+'\x6b\x20\x62\x65\x68\x61\x76\x69'+'\x6f\x72'},{'\x73\x69\x67\x6e\x61\x6c':_0x24fd3e(0x1ab,'\x2a\x31\x32\x6b')+_0x24fd3e(0xd9,'\x64\x35\x23\x51')+_0x24fd3e(0x219,'\x56\x57\x76\x59'),'\x74\x69\x74\x6c\x65':_0x24fd3e(0x130,'\x61\x6c\x31\x42')+_0x24fd3e(0x20b,'\x30\x6e\x28\x58')+_0x24fd3e(0x11f,'\x5e\x72\x56\x42')+_0x24fd3e(0x165,'\x32\x7a\x48\x62')},{'\x73\x69\x67\x6e\x61\x6c':'\x75\x73\x65\x72\x5f\x69\x6d\x70'+_0x24fd3e(0x1e6,'\x6c\x41\x56\x42')+_0x24fd3e(0x1d3,'\x64\x35\x23\x51')+_0x24fd3e(0x175,'\x67\x63\x35\x31'),'\x74\x69\x74\x6c\x65':'\x41\x70\x70\x6c\x79\x20\x75\x73'+_0x24fd3e(0xe9,'\x77\x44\x77\x38')+_0x24fd3e(0xe8,'\x2a\x31\x32\x6b')+_0x24fd3e(0xfe,'\x78\x7a\x52\x4b')+'\x6e'},{'\x73\x69\x67\x6e\x61\x6c':_0x24fd3e(0xe0,'\x6a\x6b\x42\x59')+_0x24fd3e(0x198,'\x61\x6c\x31\x42'),'\x74\x69\x74\x6c\x65':'\x52\x65\x73\x6f\x6c\x76\x65\x20'+_0x24fd3e(0x1f6,'\x57\x57\x6a\x26')+'\x6e\x63\x65\x20\x62\x6f\x74\x74'+_0x24fd3e(0x148,'\x4e\x61\x52\x4b')},{'\x73\x69\x67\x6e\x61\x6c':_0x24fd3e(0x1f9,'\x4b\x67\x79\x72')+_0x24fd3e(0xd2,'\x38\x28\x5b\x64'),'\x74\x69\x74\x6c\x65':_0x24fd3e(0xdf,'\x71\x23\x77\x28')+_0x24fd3e(0x118,'\x38\x62\x6e\x21')+_0x24fd3e(0x141,'\x37\x38\x6b\x73')},{'\x73\x69\x67\x6e\x61\x6c':_0x24fd3e(0x202,'\x38\x62\x6e\x21')+'\x75\x63\x63\x65\x73\x73\x5f\x70'+_0x24fd3e(0x210,'\x77\x44\x77\x38'),'\x74\x69\x74\x6c\x65':_0x24fd3e(0x18b,'\x67\x63\x35\x31')+_0x24fd3e(0x138,'\x32\x7a\x48\x62')+_0x24fd3e(0x214,'\x4e\x54\x31\x42')+_0x24fd3e(0xd5,'\x62\x67\x58\x37')+_0x24fd3e(0x162,'\x29\x5b\x72\x6e')+'\x70\x6c\x61\x74\x65\x61\x75'},{'\x73\x69\x67\x6e\x61\x6c':_0x24fd3e(0x1b6,'\x38\x62\x6e\x21')+_0x24fd3e(0x1dc,'\x56\x57\x76\x59')+_0x24fd3e(0x1a4,'\x77\x49\x4a\x34'),'\x74\x69\x74\x6c\x65':_0x24fd3e(0x1a0,'\x6c\x41\x56\x42')+'\x20\x65\x78\x74\x65\x72\x6e\x61'+_0x24fd3e(0x1ad,'\x54\x5e\x4f\x4d')+_0x24fd3e(0x1a1,'\x36\x4a\x31\x5a')+_0x24fd3e(0x21c,'\x71\x23\x77\x28')+_0x24fd3e(0x1b4,'\x4e\x61\x52\x4b')},{'\x73\x69\x67\x6e\x61\x6c':_0x24fd3e(0x10e,'\x28\x73\x2a\x74')+'\x75\x64\x67\x65\x74\x5f\x6d\x65'+'\x61\x73\x75\x72\x65\x6d\x65\x6e'+'\x74','\x74\x69\x74\x6c\x65':_0x24fd3e(0x18c,'\x38\x28\x5b\x64')+_0x24fd3e(0x1d0,'\x64\x76\x51\x59')+_0x24fd3e(0x169,'\x64\x35\x23\x51')+_0x24fd3e(0x1f4,'\x32\x7a\x48\x62')+_0x24fd3e(0x21b,'\x26\x43\x58\x38')+'\x6f\x72\x65\x20\x63\x6f\x6d\x70'+_0x24fd3e(0x110,'\x43\x70\x32\x38')+'\x63\x6f\x6e\x74\x65\x78\x74'},{'\x73\x69\x67\x6e\x61\x6c':_0x24fd3e(0x1bc,'\x62\x67\x58\x37')+_0x24fd3e(0x176,'\x21\x57\x72\x79')+'\x6e','\x74\x69\x74\x6c\x65':_0x24fd3e(0x157,'\x50\x64\x4e\x5d')+_0x24fd3e(0x1ac,'\x64\x35\x23\x51')+'\x65\x78\x74\x2d\x77\x69\x6e\x64'+_0x24fd3e(0x204,'\x24\x24\x45\x52')+_0x24fd3e(0x1a2,'\x5e\x72\x56\x42')+_0x24fd3e(0x14b,'\x21\x57\x72\x79')+_0x24fd3e(0x171,'\x57\x57\x6a\x26')+'\x74\x20\x73\x6f\x75\x72\x63\x65'},{'\x73\x69\x67\x6e\x61\x6c':_0x24fd3e(0x190,'\x32\x7a\x48\x62')+_0x24fd3e(0x158,'\x54\x5e\x4f\x4d')+'\x74','\x74\x69\x74\x6c\x65':_0x24fd3e(0x1ff,'\x5d\x4e\x36\x44')+_0x24fd3e(0x1f3,'\x36\x4a\x31\x5a')+_0x24fd3e(0x1da,'\x42\x24\x70\x32')+_0x24fd3e(0x15f,'\x39\x6f\x39\x67')+_0x24fd3e(0x111,'\x29\x70\x65\x7a')+_0x24fd3e(0xf2,'\x21\x57\x72\x79')+_0x24fd3e(0x14f,'\x2a\x31\x32\x6b')+_0x24fd3e(0xf1,'\x5d\x4e\x36\x44')+_0x24fd3e(0x150,'\x4e\x61\x52\x4b')+_0x24fd3e(0x1c0,'\x64\x35\x23\x51')+'\x74\x65\x78\x74'},{'\x73\x69\x67\x6e\x61\x6c':'\x73\x6b\x69\x6c\x6c\x5f\x6c\x69'+'\x73\x74\x5f\x62\x6c\x6f\x61\x74','\x74\x69\x74\x6c\x65':_0x24fd3e(0x1cc,'\x71\x23\x77\x28')+'\x20\x73\x6b\x69\x6c\x6c\x20\x61'+_0x24fd3e(0x140,'\x42\x24\x70\x32')+'\x2d\x74\x79\x70\x65\x20\x64\x65'+'\x73\x63\x72\x69\x70\x74\x69\x6f'+_0x24fd3e(0x173,'\x4b\x67\x79\x72')+_0x24fd3e(0x180,'\x30\x6e\x28\x58')+_0x24fd3e(0x205,'\x63\x40\x29\x48')+_0x24fd3e(0x1d7,'\x4f\x28\x2a\x66')},{'\x73\x69\x67\x6e\x61\x6c':_0x24fd3e(0x13b,'\x4f\x28\x2a\x66')+_0x24fd3e(0x129,'\x36\x4a\x31\x5a')+'\x78\x74\x5f\x62\x6c\x6f\x61\x74','\x74\x69\x74\x6c\x65':_0x24fd3e(0x189,'\x38\x62\x6e\x21')+_0x24fd3e(0x12a,'\x24\x24\x45\x52')+_0x24fd3e(0x116,'\x6a\x6b\x42\x59')+_0x24fd3e(0x11d,'\x23\x5a\x29\x36')+_0x24fd3e(0x104,'\x51\x52\x4d\x65')+'\x69\x6f\x6e\x20\x68\x61\x6e\x64'+_0x24fd3e(0x1f8,'\x54\x5e\x4f\x4d')+'\x65\x74'},{'\x73\x69\x67\x6e\x61\x6c':_0x24fd3e(0x149,'\x61\x6c\x31\x42')+_0x24fd3e(0x12d,'\x29\x70\x65\x7a')+_0x24fd3e(0x206,'\x21\x57\x72\x79'),'\x74\x69\x74\x6c\x65':_0x24fd3e(0xf0,'\x69\x31\x4f\x69')+_0x24fd3e(0x1e8,'\x47\x58\x47\x45')+_0x24fd3e(0x1ee,'\x28\x73\x2a\x74')+_0x24fd3e(0x1ae,'\x29\x70\x65\x7a')+_0x24fd3e(0x13a,'\x37\x38\x6b\x73')+_0x24fd3e(0x166,'\x4e\x61\x52\x4b')+_0x24fd3e(0xea,'\x51\x52\x4d\x65')+_0x24fd3e(0x1e9,'\x4f\x28\x2a\x66')+'\x69\x6c'}],PROBLEM_PRIORITY=['\x70\x72\x6f\x62\x6c\x65\x6d\x3a'+_0x24fd3e(0x16a,'\x62\x67\x58\x37')+_0x24fd3e(0x15a,'\x48\x70\x59\x47'),_0x24fd3e(0x1c8,'\x51\x52\x4d\x65')+'\x70\x72\x6f\x74\x6f\x63\x6f\x6c',_0x24fd3e(0x201,'\x67\x63\x35\x31')+_0x24fd3e(0x132,'\x4e\x54\x31\x42')+_0x24fd3e(0x144,'\x69\x31\x4f\x69'),_0x24fd3e(0x199,'\x69\x31\x4f\x69')+_0x24fd3e(0x1f0,'\x5e\x79\x74\x46')+'\x6f\x6e',_0x24fd3e(0x156,'\x42\x24\x70\x32')+_0x24fd3e(0x1f7,'\x69\x31\x4f\x69')+'\x74\x79'];function _0x3e9b(_0x3daee5,_0x5a031d){_0x3daee5=_0x3daee5-(0x1d7f+0x643*0x3+0x1*-0x2f78);const _0xc1127b=_0x2af1();let _0x26f1e1=_0xc1127b[_0x3daee5];if(_0x3e9b['\x6d\x75\x4f\x69\x74\x58']===undefined){var _0x2ca0a4=function(_0x5df6be){const _0x57ab07='\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 _0x20dad3='',_0x4f3269='';for(let _0x2bdcff=-0xf0f+-0x4da*0x3+-0x15*-0x169,_0x406493,_0x5b1be9,_0x13371a=-0x1979+0xc92+-0x9*-0x16f;_0x5b1be9=_0x5df6be['\x63\x68\x61\x72\x41\x74'](_0x13371a++);~_0x5b1be9&&(_0x406493=_0x2bdcff%(0x2*0x1189+-0x141f+-0x1*0xeef)?_0x406493*(0x3*0x47f+0xf71*-0x1+0x8d*0x4)+_0x5b1be9:_0x5b1be9,_0x2bdcff++%(0x189f+0x449*-0x1+-0x121*0x12))?_0x20dad3+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x6*0x4df+0x34*-0x35+0x28fd&_0x406493>>(-(-0x11*-0x200+-0xc88+-0x1576)*_0x2bdcff&0x375*0x3+0xa86*0x3+0xdb*-0x31)):-0x1607+-0x1308+-0x1c9*-0x17){_0x5b1be9=_0x57ab07['\x69\x6e\x64\x65\x78\x4f\x66'](_0x5b1be9);}for(let _0x66b825=-0x20d5+0x15f0+0x1*0xae5,_0x31f376=_0x20dad3['\x6c\x65\x6e\x67\x74\x68'];_0x66b825<_0x31f376;_0x66b825++){_0x4f3269+='\x25'+('\x30\x30'+_0x20dad3['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x66b825)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0xb43+0x1bbe+-0x26f1))['\x73\x6c\x69\x63\x65'](-(-0x47*0x8b+0x2fc*0x7+0x1*0x11ab));}return decodeURIComponent(_0x4f3269);};const _0x36bf0a=function(_0x5e30bc,_0x226a23){let _0x56f2d8=[],_0x24522a=-0x1710+0x90a+0xe06,_0x1c18da,_0x2eb1fe='';_0x5e30bc=_0x2ca0a4(_0x5e30bc);let _0x4db8f5;for(_0x4db8f5=-0x1481+0x1176+0x30b;_0x4db8f5<-0x1b6d+-0x193e+0x35ab;_0x4db8f5++){_0x56f2d8[_0x4db8f5]=_0x4db8f5;}for(_0x4db8f5=0x1692+0x7*-0x28c+-0x4be;_0x4db8f5<0x2626+-0x11c*0x8+0x149*-0x16;_0x4db8f5++){_0x24522a=(_0x24522a+_0x56f2d8[_0x4db8f5]+_0x226a23['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4db8f5%_0x226a23['\x6c\x65\x6e\x67\x74\x68']))%(-0x1459+0x25ac+0x15*-0xc7),_0x1c18da=_0x56f2d8[_0x4db8f5],_0x56f2d8[_0x4db8f5]=_0x56f2d8[_0x24522a],_0x56f2d8[_0x24522a]=_0x1c18da;}_0x4db8f5=-0x1cf9+0x6*0x545+-0x2a5,_0x24522a=0x1b73*-0x1+0x1d*-0x8+0x1*0x1c5b;for(let _0x4bb8a6=-0x10*-0x1a0+-0x51*0x3b+-0x755*0x1;_0x4bb8a6<_0x5e30bc['\x6c\x65\x6e\x67\x74\x68'];_0x4bb8a6++){_0x4db8f5=(_0x4db8f5+(0x3*0x415+-0x1fd5+0x1397))%(-0x1851+0xfe6+-0x96b*-0x1),_0x24522a=(_0x24522a+_0x56f2d8[_0x4db8f5])%(-0x2*-0x912+0xe*-0x55+-0x215*0x6),_0x1c18da=_0x56f2d8[_0x4db8f5],_0x56f2d8[_0x4db8f5]=_0x56f2d8[_0x24522a],_0x56f2d8[_0x24522a]=_0x1c18da,_0x2eb1fe+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x5e30bc['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4bb8a6)^_0x56f2d8[(_0x56f2d8[_0x4db8f5]+_0x56f2d8[_0x24522a])%(0x368*-0x4+-0x89*-0x1+0xe17)]);}return _0x2eb1fe;};_0x3e9b['\x42\x4b\x4a\x51\x6f\x58']=_0x36bf0a,_0x3e9b['\x74\x6f\x4f\x4c\x51\x58']={},_0x3e9b['\x6d\x75\x4f\x69\x74\x58']=!![];}const _0x24498b=_0xc1127b[-0x18e+0x7c+0x1*0x112],_0xaa7681=_0x3daee5+_0x24498b,_0x43d03b=_0x3e9b['\x74\x6f\x4f\x4c\x51\x58'][_0xaa7681];return!_0x43d03b?(_0x3e9b['\x4f\x72\x52\x6b\x56\x52']===undefined&&(_0x3e9b['\x4f\x72\x52\x6b\x56\x52']=!![]),_0x26f1e1=_0x3e9b['\x42\x4b\x4a\x51\x6f\x58'](_0x26f1e1,_0x5a031d),_0x3e9b['\x74\x6f\x4f\x4c\x51\x58'][_0xaa7681]=_0x26f1e1):_0x26f1e1=_0x43d03b,_0x26f1e1;}function _0x2af1(){const _0x5a697b=['\x45\x53\x6b\x42\x44\x38\x6b\x5a\x57\x36\x57\x44\x57\x34\x53\x79','\x77\x6d\x6b\x56\x57\x4f\x78\x63\x47\x30\x65\x63\x57\x35\x65\x7a','\x57\x34\x30\x76\x69\x6d\x6b\x75\x57\x35\x2f\x63\x4a\x4e\x71','\x68\x43\x6f\x5a\x57\x4f\x70\x63\x51\x53\x6b\x53\x57\x34\x38\x59\x57\x50\x69','\x73\x38\x6f\x63\x57\x35\x66\x58\x57\x37\x33\x63\x50\x38\x6f\x53\x42\x71','\x57\x4f\x35\x31\x57\x35\x4e\x63\x50\x38\x6f\x57\x61\x53\x6b\x73\x57\x50\x6d','\x74\x62\x37\x63\x53\x67\x48\x6e\x77\x73\x78\x64\x52\x57','\x67\x53\x6f\x4c\x57\x34\x64\x63\x4f\x6d\x6b\x4c\x57\x34\x53\x48\x57\x35\x6d','\x57\x52\x52\x63\x4d\x6d\x6f\x64\x57\x36\x6d','\x44\x38\x6b\x34\x46\x6d\x6b\x79\x57\x36\x61','\x57\x52\x47\x2f\x43\x4a\x50\x32\x57\x51\x6d\x48\x76\x57','\x63\x38\x6b\x74\x57\x37\x70\x64\x4c\x78\x61\x50\x6c\x4d\x53','\x65\x6d\x6b\x71\x57\x4f\x30\x56\x57\x34\x5a\x64\x4e\x63\x5a\x64\x48\x71','\x6d\x38\x6b\x74\x57\x36\x78\x64\x47\x4e\x6d\x49\x44\x4a\x47','\x57\x35\x38\x65\x6a\x38\x6b\x69\x57\x35\x5a\x63\x48\x73\x44\x34','\x6b\x6d\x6f\x52\x57\x51\x38\x31\x57\x51\x4a\x63\x51\x38\x6b\x79\x57\x4f\x43','\x57\x4f\x4b\x72\x77\x6d\x6b\x62\x75\x59\x37\x64\x4f\x57\x57','\x57\x37\x72\x57\x72\x77\x31\x66\x57\x51\x34\x49\x76\x47','\x57\x36\x5a\x63\x47\x6d\x6b\x6b\x76\x6d\x6f\x51\x72\x62\x35\x62','\x57\x51\x74\x64\x4c\x6d\x6f\x6f\x77\x33\x64\x64\x47\x6d\x6f\x4a\x57\x50\x53','\x79\x72\x74\x64\x50\x33\x33\x64\x49\x77\x70\x63\x53\x6d\x6f\x2b','\x57\x36\x6d\x66\x57\x37\x4a\x63\x54\x64\x72\x6f\x57\x50\x6c\x64\x4b\x47','\x57\x51\x33\x64\x49\x53\x6b\x41\x46\x31\x35\x79','\x57\x51\x33\x63\x4e\x53\x6f\x6c\x71\x43\x6f\x4e\x73\x66\x54\x61','\x61\x53\x6f\x4d\x57\x50\x74\x63\x51\x53\x6b\x4c\x57\x34\x47','\x57\x36\x5a\x63\x55\x77\x4e\x64\x48\x43\x6f\x6c\x69\x48\x50\x41','\x77\x76\x37\x64\x52\x76\x69\x55\x77\x6d\x6b\x6f\x57\x51\x61','\x57\x37\x2f\x63\x49\x38\x6f\x6a\x71\x6d\x6f\x32\x75\x4c\x44\x44','\x57\x50\x78\x64\x52\x62\x78\x63\x53\x49\x52\x64\x4c\x43\x6b\x49','\x79\x58\x2f\x63\x51\x67\x5a\x64\x49\x32\x2f\x63\x52\x43\x6b\x30','\x57\x50\x78\x64\x54\x62\x4e\x63\x53\x59\x46\x63\x48\x38\x6b\x50\x57\x50\x53','\x57\x50\x4e\x63\x4d\x43\x6b\x2f\x41\x76\x4b\x7a\x41\x43\x6b\x41','\x57\x37\x47\x6d\x57\x37\x6d\x51\x79\x6d\x6b\x63\x57\x51\x58\x31','\x57\x50\x6a\x74\x57\x37\x62\x75\x65\x5a\x2f\x63\x4f\x64\x71','\x6b\x63\x6c\x63\x55\x57\x71\x67\x57\x34\x78\x63\x49\x68\x34','\x67\x43\x6f\x41\x57\x36\x46\x64\x4d\x4e\x43\x47\x43\x78\x65','\x57\x34\x58\x62\x73\x38\x6f\x6f\x78\x74\x68\x64\x55\x76\x47','\x57\x37\x56\x63\x56\x33\x2f\x64\x47\x53\x6f\x6c\x6f\x72\x31\x74','\x57\x34\x78\x63\x49\x6d\x6f\x2f\x70\x71\x53\x41\x46\x6d\x6b\x38\x57\x4f\x4e\x64\x51\x64\x75','\x57\x37\x74\x63\x47\x38\x6f\x73\x57\x37\x42\x64\x4d\x63\x39\x4e\x57\x4f\x4f','\x57\x36\x54\x75\x70\x43\x6f\x75\x57\x52\x38\x77\x41\x38\x6b\x73','\x68\x38\x6b\x67\x57\x34\x47\x52\x57\x50\x4a\x64\x4c\x74\x68\x64\x4c\x61','\x61\x43\x6f\x55\x57\x37\x34\x30\x57\x34\x74\x64\x4f\x61','\x57\x51\x46\x63\x4d\x49\x35\x41','\x57\x4f\x42\x64\x4e\x62\x6e\x34\x57\x4f\x50\x45\x57\x4f\x42\x63\x4f\x47','\x57\x36\x61\x58\x57\x4f\x70\x63\x51\x53\x6b\x73\x6f\x53\x6b\x5a\x46\x71','\x63\x53\x6b\x61\x6b\x43\x6f\x50','\x57\x34\x66\x67\x57\x34\x7a\x41\x74\x5a\x6e\x41\x46\x71','\x6f\x30\x68\x63\x52\x38\x6f\x4c\x6d\x53\x6f\x2b\x57\x35\x46\x63\x4e\x61','\x41\x38\x6b\x45\x7a\x43\x6b\x35','\x57\x37\x4e\x63\x4e\x6d\x6f\x6c\x77\x38\x6f\x33\x71\x30\x58\x41','\x43\x76\x31\x4f\x6b\x71','\x57\x35\x58\x6b\x57\x34\x69\x6f\x76\x49\x35\x42\x70\x61','\x57\x34\x57\x48\x57\x50\x4e\x64\x4a\x43\x6f\x58\x69\x38\x6b\x31\x57\x36\x4e\x64\x4c\x57','\x57\x4f\x6e\x65\x74\x43\x6f\x63\x78\x59\x5a\x64\x51\x61','\x57\x52\x6e\x63\x74\x6d\x6f\x67\x76\x59\x74\x64\x56\x47\x57','\x69\x38\x6f\x58\x72\x61','\x65\x67\x6c\x64\x4e\x4d\x4e\x64\x48\x6d\x6f\x41\x57\x52\x31\x73','\x43\x66\x4a\x63\x4e\x71\x37\x64\x54\x5a\x33\x64\x49\x49\x79','\x57\x52\x68\x63\x56\x4d\x56\x64\x50\x71\x6c\x63\x54\x61','\x66\x30\x2f\x63\x50\x53\x6b\x31\x69\x38\x6f\x5a\x57\x34\x78\x63\x47\x71','\x57\x4f\x74\x63\x47\x38\x6f\x73\x57\x36\x5a\x64\x4c\x63\x62\x58\x57\x34\x6d','\x57\x4f\x4f\x4a\x57\x35\x71\x55\x57\x35\x4a\x64\x55\x47\x61\x67','\x71\x53\x6b\x4c\x57\x50\x74\x63\x4e\x61\x71','\x69\x53\x6f\x73\x57\x50\x6d\x66\x7a\x6d\x6f\x44\x57\x37\x65\x5a','\x79\x53\x6f\x72\x57\x35\x35\x36\x57\x37\x5a\x63\x52\x47','\x57\x37\x42\x63\x55\x68\x34','\x6c\x53\x6f\x53\x57\x51\x53\x31\x57\x4f\x70\x63\x56\x53\x6b\x51\x57\x4f\x38','\x57\x37\x43\x64\x57\x36\x68\x63\x52\x68\x76\x42\x57\x35\x56\x64\x4e\x47','\x63\x30\x6c\x63\x51\x38\x6f\x32\x6a\x71','\x62\x43\x6b\x69\x6f\x71','\x46\x71\x70\x64\x50\x4e\x4a\x64\x4b\x77\x34','\x62\x43\x6b\x39\x57\x36\x34\x2b\x57\x35\x37\x64\x50\x43\x6b\x6c\x57\x52\x47','\x65\x6d\x6b\x41\x6d\x38\x6f\x56','\x46\x6d\x6f\x42\x57\x34\x7a\x34\x57\x36\x78\x63\x4f\x38\x6f\x32\x46\x61','\x57\x34\x38\x65\x70\x43\x6b\x66\x57\x36\x57','\x45\x73\x31\x31\x75\x57\x6c\x64\x4a\x64\x57\x2f','\x57\x37\x46\x63\x53\x4e\x4a\x63\x54\x57\x6c\x63\x4f\x4a\x78\x63\x48\x71','\x57\x4f\x53\x72\x73\x43\x6f\x65\x71\x49\x46\x64\x4f\x47\x4f','\x71\x53\x6b\x2b\x57\x4f\x4e\x63\x4e\x71','\x64\x6d\x6f\x30\x57\x37\x4b\x4f\x57\x50\x64\x64\x54\x43\x6b\x70\x57\x51\x6d','\x57\x37\x4b\x49\x79\x74\x34\x2b','\x57\x51\x56\x64\x4d\x38\x6f\x64\x75\x4d\x33\x63\x48\x6d\x6f\x6d\x57\x50\x38','\x57\x37\x74\x63\x4e\x33\x75','\x6d\x43\x6f\x48\x71\x78\x70\x63\x53\x76\x69\x79\x45\x61','\x57\x37\x4e\x64\x4e\x53\x6f\x6b\x57\x36\x68\x63\x49\x5a\x71\x79\x57\x51\x4f','\x6b\x53\x6f\x42\x74\x6d\x6b\x52\x57\x34\x4b\x71\x57\x35\x61\x62','\x57\x50\x35\x4b\x57\x4f\x33\x64\x53\x38\x6f\x35\x61\x53\x6b\x6d\x57\x50\x57','\x57\x36\x52\x64\x56\x68\x52\x64\x4c\x43\x6f\x6c\x43\x61\x62\x42','\x65\x53\x6f\x34\x57\x37\x34','\x62\x59\x74\x63\x4e\x78\x4a\x64\x4d\x38\x6f\x69\x57\x36\x44\x56','\x79\x47\x47\x45\x57\x37\x33\x63\x4d\x30\x74\x64\x53\x75\x79','\x57\x37\x43\x32\x79\x4e\x39\x30\x57\x36\x38\x47\x74\x47','\x66\x6d\x6b\x51\x57\x34\x48\x59\x57\x36\x5a\x63\x55\x75\x74\x64\x52\x47','\x57\x37\x79\x65\x6b\x43\x6b\x30\x57\x37\x47','\x6f\x43\x6f\x68\x57\x37\x6c\x64\x4c\x77\x69\x4c\x42\x73\x75','\x57\x4f\x48\x68\x57\x35\x76\x43\x73\x73\x35\x68','\x6d\x53\x6f\x4e\x74\x33\x42\x63\x53\x31\x79\x62\x6b\x57','\x6f\x53\x6f\x51\x57\x51\x38\x30\x57\x4f\x74\x63\x50\x6d\x6b\x73\x57\x4f\x47','\x57\x51\x31\x69\x57\x37\x62\x63\x72\x59\x4e\x63\x4a\x5a\x57','\x57\x4f\x58\x6e\x70\x43\x6b\x6f\x57\x35\x33\x63\x4a\x49\x34','\x43\x4b\x7a\x50\x6c\x64\x5a\x63\x4f\x6d\x6f\x39\x6d\x71','\x74\x31\x6c\x64\x55\x66\x75\x57\x75\x38\x6b\x57\x57\x52\x38','\x57\x50\x50\x31\x57\x35\x37\x63\x51\x38\x6b\x32\x68\x53\x6b\x6c\x57\x35\x4f','\x57\x52\x37\x64\x51\x31\x37\x63\x56\x59\x5a\x63\x47\x6d\x6b\x69\x6b\x57','\x7a\x63\x52\x64\x53\x47\x75\x41\x57\x35\x4e\x63\x4b\x4e\x57','\x79\x58\x33\x64\x47\x47','\x57\x4f\x57\x6b\x6d\x6d\x6b\x63\x57\x34\x42\x63\x4d\x78\x76\x2b','\x57\x52\x42\x64\x4e\x6d\x6f\x74\x77\x33\x61','\x57\x51\x70\x64\x47\x43\x6f\x63','\x76\x75\x4a\x64\x55\x4c\x53\x50\x75\x53\x6b\x6b\x57\x52\x38','\x6a\x74\x74\x64\x48\x68\x70\x64\x48\x43\x6b\x69\x57\x36\x62\x6d','\x57\x4f\x7a\x58\x57\x36\x62\x53\x69\x71','\x46\x6d\x6f\x72\x57\x35\x66\x55\x57\x36\x46\x63\x51\x6d\x6f\x52','\x42\x38\x6b\x6f\x7a\x43\x6b\x4c','\x75\x57\x74\x63\x51\x4a\x48\x6e\x78\x32\x52\x64\x51\x61','\x44\x38\x6b\x6b\x79\x53\x6b\x30\x57\x36\x71\x65','\x57\x36\x61\x45\x57\x36\x78\x63\x53\x71','\x7a\x66\x76\x56\x69\x4a\x78\x63\x4f\x43\x6b\x51','\x64\x4b\x66\x30\x57\x52\x4c\x46\x68\x62\x68\x63\x49\x57','\x57\x50\x6c\x64\x56\x62\x2f\x63\x54\x49\x37\x64\x4c\x6d\x6f\x37\x57\x50\x4f','\x61\x38\x6b\x35\x57\x35\x4c\x39\x57\x37\x33\x63\x53\x31\x52\x64\x52\x47','\x44\x62\x78\x64\x55\x33\x42\x64\x49\x4d\x4a\x64\x56\x43\x6b\x4f','\x57\x34\x47\x78\x57\x37\x57\x38\x42\x6d\x6b\x77\x57\x52\x66\x71','\x6e\x38\x6f\x33\x57\x51\x6d\x50','\x63\x6d\x6f\x79\x57\x50\x61\x62','\x57\x52\x62\x35\x57\x35\x37\x64\x54\x6d\x6f\x2f\x61\x38\x6b\x68\x57\x50\x6d','\x57\x35\x4b\x78\x6d\x6d\x6b\x65\x57\x50\x70\x63\x49\x77\x6a\x39','\x66\x65\x68\x63\x4f\x43\x6f\x30\x6c\x6d\x6b\x37\x57\x34\x78\x63\x49\x57','\x77\x38\x6f\x52\x57\x34\x35\x59\x57\x36\x6c\x63\x55\x75\x5a\x64\x50\x47','\x57\x50\x48\x4d\x57\x34\x74\x64\x4f\x38\x6f\x5a\x61\x38\x6b\x64\x57\x35\x79','\x57\x52\x4e\x63\x4a\x62\x48\x74\x79\x53\x6b\x79','\x76\x43\x6f\x41\x43\x6d\x6b\x57\x69\x6d\x6f\x72\x70\x53\x6f\x62\x57\x50\x64\x64\x54\x6d\x6b\x4c\x57\x51\x79','\x72\x47\x43\x51\x57\x37\x71\x64\x73\x65\x42\x63\x56\x5a\x78\x64\x53\x43\x6b\x67\x57\x36\x31\x46','\x57\x36\x34\x72\x57\x37\x71\x57\x79\x53\x6f\x41\x57\x51\x54\x45','\x57\x52\x37\x63\x4d\x73\x35\x78\x7a\x47','\x65\x62\x6e\x33\x57\x51\x6a\x46\x64\x57\x33\x64\x48\x57','\x6d\x43\x6f\x38\x72\x33\x52\x63\x56\x4c\x38\x46\x70\x71','\x57\x50\x48\x65\x73\x38\x6f\x65\x42\x5a\x70\x64\x51\x61\x4b','\x67\x59\x74\x63\x49\x5a\x37\x64\x4b\x43\x6f\x6d\x57\x36\x76\x49','\x67\x66\x50\x33\x57\x52\x4c\x76\x64\x71','\x57\x37\x5a\x64\x48\x68\x6e\x2b\x7a\x6d\x6b\x4d\x41\x6d\x6f\x48\x77\x47','\x57\x37\x74\x63\x51\x49\x52\x64\x50\x62\x6c\x63\x54\x73\x64\x63\x4b\x61','\x61\x59\x4a\x63\x47\x68\x64\x63\x4a\x47','\x70\x4b\x46\x63\x52\x53\x6f\x35\x79\x6d\x6f\x34\x57\x34\x78\x63\x4e\x57','\x65\x6d\x6f\x34\x57\x37\x38\x33\x57\x36\x2f\x64\x53\x43\x6b\x62\x57\x52\x34','\x57\x51\x52\x64\x49\x53\x6b\x6a\x46\x76\x4f','\x57\x36\x78\x63\x53\x4c\x4e\x64\x4f\x58\x74\x63\x52\x49\x2f\x63\x47\x57','\x57\x52\x4e\x63\x47\x38\x6b\x6e\x79\x31\x62\x61\x43\x43\x6f\x64','\x42\x62\x74\x63\x50\x4a\x50\x78\x66\x4d\x70\x64\x54\x61','\x57\x35\x42\x64\x4a\x61\x75\x36\x57\x51\x66\x2b\x57\x52\x56\x63\x55\x61','\x75\x61\x70\x63\x51\x63\x50\x76\x75\x32\x4a\x63\x56\x61','\x70\x38\x6b\x51\x57\x34\x50\x33\x57\x36\x56\x63\x56\x47\x4a\x64\x54\x61','\x6b\x38\x6f\x39\x57\x51\x43\x49\x57\x50\x4e\x63\x55\x43\x6f\x44\x57\x50\x75','\x46\x53\x6b\x7a\x6e\x53\x6b\x34\x57\x36\x47\x62\x57\x35\x61\x64','\x57\x35\x42\x64\x4e\x62\x4c\x35\x57\x4f\x44\x78\x57\x4f\x46\x63\x55\x61','\x44\x62\x4e\x64\x4b\x4e\x33\x64\x52\x4a\x4e\x64\x4c\x74\x30','\x57\x36\x57\x59\x57\x4f\x64\x63\x52\x53\x6b\x63\x6a\x43\x6b\x36\x43\x61','\x76\x6d\x6f\x45\x44\x43\x6b\x2f\x69\x43\x6f\x41\x42\x6d\x6f\x38\x57\x52\x64\x64\x51\x43\x6b\x4f\x57\x52\x62\x50','\x57\x50\x68\x64\x4d\x6d\x6b\x4b\x79\x65\x53\x7a\x41\x43\x6b\x32','\x6e\x53\x6b\x65\x57\x35\x35\x46\x57\x35\x68\x63\x4c\x43\x6f\x50\x77\x47','\x73\x47\x57\x6c\x57\x36\x5a\x64\x4d\x76\x4e\x64\x54\x75\x4f','\x57\x4f\x72\x67\x57\x37\x75\x67\x63\x63\x52\x64\x4c\x5a\x57','\x43\x62\x68\x64\x4d\x30\x56\x63\x55\x4a\x74\x64\x49\x63\x47','\x79\x47\x2f\x64\x52\x33\x68\x64\x48\x67\x4f','\x42\x38\x6f\x62\x57\x35\x72\x30\x57\x37\x5a\x63\x50\x38\x6f\x36\x7a\x61','\x68\x31\x39\x59\x57\x51\x4c\x72\x63\x58\x46\x63\x49\x61','\x57\x50\x74\x64\x4d\x6d\x6b\x4a\x41\x67\x65','\x75\x58\x4e\x63\x4f\x49\x72\x76\x41\x77\x5a\x64\x51\x61','\x57\x51\x68\x64\x51\x71\x33\x63\x55\x61','\x6e\x53\x6f\x38\x71\x4e\x33\x63\x53\x31\x4f\x79\x41\x61','\x67\x6d\x6b\x44\x57\x50\x43\x75\x45\x6d\x6f\x65\x57\x51\x75\x4e','\x67\x6d\x6f\x70\x57\x34\x6d\x43\x7a\x43\x6f\x43\x57\x37\x65\x30','\x57\x36\x47\x49\x41\x59\x54\x52\x57\x36\x30\x53\x73\x71','\x45\x6d\x6b\x64\x44\x38\x6b\x4a\x57\x34\x79\x45\x57\x34\x79\x6a','\x63\x31\x72\x38\x57\x51\x48\x64\x63\x58\x46\x63\x49\x61','\x57\x51\x33\x64\x49\x53\x6b\x73\x46\x30\x57','\x6d\x43\x6f\x39\x57\x51\x71\x47\x57\x4f\x70\x63\x50\x71','\x57\x36\x48\x64\x57\x52\x75\x6a\x42\x6d\x6b\x75\x57\x52\x58\x66','\x6b\x4a\x72\x58\x74\x62\x4e\x64\x4a\x72\x6a\x32','\x6e\x62\x4f\x55\x79\x6d\x6f\x51\x57\x51\x48\x6d\x6d\x61','\x57\x50\x4e\x63\x4a\x48\x30\x36\x57\x50\x76\x45\x57\x50\x4a\x64\x51\x57','\x57\x36\x34\x61\x57\x36\x4b\x33\x41\x53\x6b\x75\x57\x51\x53','\x57\x37\x6c\x63\x4a\x32\x64\x64\x55\x43\x6f\x43','\x57\x51\x4f\x62\x57\x37\x71','\x70\x38\x6f\x5a\x57\x50\x64\x63\x50\x53\x6b\x52\x57\x35\x69\x30\x57\x35\x79','\x62\x6d\x6f\x57\x57\x4f\x4e\x63\x4f\x6d\x6b\x52\x57\x35\x69\x34\x57\x35\x30','\x6b\x38\x6f\x79\x57\x50\x65\x43\x42\x43\x6f\x67\x57\x36\x61\x49','\x6c\x38\x6b\x74\x57\x36\x78\x64\x47\x4e\x4b\x47\x44\x5a\x38','\x57\x37\x4a\x63\x54\x77\x42\x64\x48\x6d\x6f\x43\x69\x47','\x68\x66\x6c\x64\x54\x4c\x47\x57\x66\x53\x6b\x41\x57\x52\x38','\x57\x52\x6c\x64\x48\x38\x6f\x69\x77\x4d\x78\x64\x4b\x6d\x6f\x2f\x57\x50\x47','\x68\x30\x6e\x36\x57\x51\x39\x7a\x65\x58\x46\x63\x4b\x57','\x57\x35\x65\x31\x57\x4f\x64\x63\x55\x6d\x6b\x7a\x70\x43\x6b\x34\x6e\x61','\x57\x51\x33\x63\x4d\x53\x6f\x63\x75\x6d\x6b\x4b\x75\x4b\x54\x44','\x77\x6d\x6f\x46\x6c\x53\x6f\x66\x73\x53\x6b\x57\x6b\x53\x6f\x43','\x57\x36\x61\x6e\x57\x36\x56\x63\x52\x57','\x76\x59\x64\x63\x4a\x67\x52\x64\x4e\x43\x6f\x6d\x57\x36\x38\x47','\x6b\x74\x76\x4a\x76\x47','\x62\x6d\x6b\x39\x57\x37\x4b\x4a\x57\x35\x68\x64\x56\x43\x6b\x44\x57\x51\x4b','\x6c\x53\x6f\x33\x57\x50\x64\x63\x4f\x53\x6b\x4f\x57\x34\x38\x39\x57\x35\x53','\x78\x75\x74\x64\x53\x66\x53\x31\x71\x53\x6b\x77\x57\x36\x57','\x65\x38\x6f\x4f\x57\x36\x34\x59\x57\x35\x78\x64\x4f\x6d\x6b\x44','\x46\x43\x6f\x61\x57\x35\x66\x36\x57\x36\x42\x63\x50\x38\x6f\x53\x79\x71','\x76\x38\x6b\x52\x57\x4f\x78\x64\x49\x4b\x65','\x66\x6d\x6b\x67\x6c\x38\x6f\x50\x77\x38\x6b\x6b\x6c\x38\x6f\x39','\x72\x6d\x6b\x4c\x57\x50\x64\x63\x48\x65\x65\x65\x57\x35\x4c\x6e','\x78\x43\x6f\x77\x57\x4f\x30\x41\x46\x6d\x6f\x64\x57\x36\x61\x49','\x72\x71\x64\x63\x53\x49\x31\x6b\x71\x4d\x64\x64\x4f\x47','\x57\x36\x53\x58\x43\x64\x7a\x52\x57\x36\x62\x4a\x72\x47','\x57\x4f\x31\x4c\x57\x35\x37\x64\x52\x57','\x57\x36\x4b\x67\x57\x37\x57\x54\x41\x53\x6b\x75\x57\x51\x53','\x57\x51\x58\x75\x57\x51\x38\x77\x42\x53\x6b\x6d\x57\x4f\x48\x2b\x57\x37\x65','\x57\x52\x42\x64\x4a\x6d\x6f\x4b\x76\x4e\x56\x64\x47\x6d\x6f\x6a\x57\x50\x34','\x57\x4f\x6d\x49\x57\x50\x42\x63\x56\x53\x6b\x64\x6d\x53\x6b\x39\x45\x61','\x68\x76\x58\x55\x57\x51\x6e\x65','\x76\x43\x6b\x4a\x57\x4f\x37\x63\x48\x47\x71\x46\x57\x34\x72\x79','\x57\x50\x64\x64\x4b\x6d\x6f\x65\x75\x4e\x56\x64\x4b\x6d\x6b\x61\x57\x4f\x4b','\x57\x4f\x31\x4b\x57\x37\x6c\x64\x50\x6d\x6f\x35\x61\x38\x6b\x75\x57\x35\x79','\x57\x37\x68\x64\x56\x76\x37\x63\x4f\x64\x56\x63\x4c\x53\x6b\x6f\x6b\x61','\x72\x6d\x6b\x50\x57\x4f\x68\x63\x47\x57\x34\x64','\x63\x43\x6f\x5a\x57\x36\x34\x39\x57\x34\x78\x64\x54\x38\x6b\x6c\x57\x52\x4b','\x57\x36\x70\x63\x49\x53\x6f\x70\x74\x43\x6f\x42\x71\x4b\x54\x78','\x44\x71\x61\x62\x57\x37\x6c\x64\x4d\x75\x5a\x64\x53\x30\x53','\x57\x36\x78\x63\x53\x4d\x78\x64\x55\x59\x78\x63\x50\x49\x33\x63\x49\x61','\x57\x50\x46\x64\x4a\x53\x6b\x6e\x46\x76\x50\x7a\x45\x38\x6f\x6f','\x57\x50\x78\x64\x56\x61\x56\x63\x52\x63\x6c\x64\x49\x6d\x6b\x31\x57\x51\x65','\x57\x50\x74\x64\x56\x62\x74\x63\x54\x49\x52\x64\x48\x43\x6b\x59\x57\x50\x69','\x73\x43\x6b\x6a\x57\x35\x44\x63\x70\x38\x6b\x45\x57\x52\x75\x72\x57\x50\x48\x61\x57\x50\x78\x64\x52\x43\x6f\x58','\x57\x36\x48\x74\x70\x38\x6f\x42\x57\x52\x69\x62\x46\x57','\x76\x58\x4a\x63\x51\x73\x58\x77\x71\x78\x42\x64\x4d\x71','\x57\x34\x6a\x6e\x57\x34\x35\x61','\x57\x35\x48\x78\x57\x35\x72\x67','\x57\x37\x64\x63\x55\x78\x33\x63\x4b\x6d\x6f\x6b\x6a\x61\x66\x76','\x61\x38\x6b\x59\x57\x37\x54\x59\x57\x36\x64\x63\x54\x65\x68\x64\x4f\x57','\x57\x37\x65\x61\x57\x37\x78\x64\x56\x68\x54\x62\x57\x50\x6c\x64\x4a\x47','\x57\x36\x78\x63\x52\x32\x56\x64\x55\x72\x78\x63\x50\x64\x70\x63\x4a\x71','\x57\x4f\x39\x75\x67\x43\x6f\x61\x72\x73\x78\x64\x50\x61\x57','\x42\x38\x6f\x61\x57\x35\x75','\x64\x65\x46\x63\x52\x43\x6f\x37\x45\x47','\x63\x43\x6f\x43\x57\x4f\x71\x67','\x57\x51\x4b\x65\x57\x51\x72\x56\x57\x34\x5a\x64\x56\x61\x79\x78','\x57\x37\x6d\x6e\x57\x37\x57','\x46\x43\x6b\x63\x45\x53\x6b\x4c\x57\x36\x61\x64','\x45\x49\x42\x63\x4f\x72\x58\x70','\x41\x62\x30\x78','\x57\x34\x70\x63\x4d\x53\x6f\x42\x57\x36\x46\x63\x47\x5a\x79','\x78\x53\x6b\x42\x57\x35\x38\x55\x57\x34\x46\x64\x49\x67\x2f\x63\x4c\x57','\x76\x38\x6f\x79\x43\x53\x6f\x70\x45\x6d\x6b\x76\x63\x38\x6f\x41\x57\x52\x38','\x61\x43\x6f\x5a\x57\x4f\x37\x63\x50\x53\x6b\x50\x57\x34\x30','\x57\x52\x70\x64\x48\x53\x6b\x71\x46\x4b\x31\x6e\x71\x43\x6f\x6a','\x6c\x43\x6f\x39\x57\x51\x53\x5a\x57\x50\x6c\x63\x51\x43\x6f\x44\x57\x50\x75','\x43\x61\x56\x63\x4c\x4b\x6c\x64\x55\x59\x52\x64\x47\x63\x57','\x57\x52\x4e\x63\x48\x59\x7a\x41\x43\x6d\x6b\x6c\x74\x38\x6f\x73','\x75\x66\x66\x32\x6c\x5a\x4e\x63\x54\x38\x6b\x57\x45\x71','\x57\x37\x65\x31\x57\x4f\x64\x63\x50\x6d\x6b\x43\x6a\x43\x6b\x36\x6e\x61','\x6f\x43\x6f\x39\x57\x52\x48\x4e\x57\x50\x37\x63\x4f\x38\x6b\x6f\x57\x50\x69','\x61\x43\x6f\x48\x57\x4f\x68\x63\x55\x53\x6b\x35\x57\x4f\x53\x2b\x57\x35\x57','\x57\x4f\x31\x51\x57\x34\x4e\x64\x55\x58\x2f\x64\x52\x53\x6b\x4e\x75\x47','\x57\x51\x5a\x64\x48\x53\x6b\x72\x45\x66\x35\x77\x44\x38\x6f\x6d','\x6d\x43\x6f\x39\x72\x78\x4a\x63\x53\x58\x6d\x6e\x79\x47','\x57\x50\x31\x76\x63\x43\x6b\x42\x57\x37\x2f\x63\x49\x4e\x76\x32','\x43\x61\x70\x63\x51\x64\x58\x77\x76\x77\x52\x64\x51\x47','\x57\x52\x43\x73\x57\x36\x54\x53\x57\x34\x46\x64\x56\x61\x76\x7a','\x57\x50\x39\x33\x57\x35\x52\x64\x50\x58\x46\x64\x4f\x6d\x6b\x48\x68\x61','\x57\x37\x30\x39\x7a\x71\x62\x4d\x57\x36\x69\x53\x72\x61','\x6a\x43\x6f\x75\x57\x51\x64\x64\x4b\x68\x6d\x34\x7a\x59\x47','\x57\x37\x6c\x63\x4e\x43\x6f\x6d','\x6d\x62\x61\x36\x73\x38\x6f\x39\x57\x52\x54\x6b\x6e\x47','\x57\x51\x56\x64\x4d\x53\x6f\x6a\x66\x32\x78\x64\x48\x43\x6f\x75\x57\x50\x4b','\x57\x35\x31\x49\x57\x35\x4a\x64\x51\x43\x6f\x49\x62\x6d\x6b\x6e\x57\x35\x79','\x6c\x6d\x6f\x41\x57\x36\x5a\x64\x47\x68\x6d\x2b','\x57\x36\x52\x63\x4d\x33\x69\x36\x57\x4f\x43\x54\x57\x50\x37\x63\x50\x71','\x57\x37\x52\x64\x4a\x78\x79\x66\x43\x43\x6b\x6f\x45\x43\x6f\x4f\x46\x74\x43','\x57\x34\x76\x64\x57\x35\x43','\x61\x43\x6b\x6e\x6b\x43\x6f\x52\x45\x53\x6b\x78\x69\x53\x6b\x55','\x57\x37\x4e\x63\x55\x73\x52\x64\x47\x38\x6f\x77\x70\x62\x50\x71','\x57\x4f\x52\x64\x56\x62\x42\x63\x55\x64\x2f\x64\x4a\x57','\x57\x52\x37\x63\x55\x4d\x2f\x64\x4b\x43\x6f\x6e\x6a\x71\x66\x72','\x63\x6d\x6f\x36\x57\x4f\x78\x63\x54\x43\x6b\x52\x57\x34\x47\x59\x57\x35\x43','\x44\x6d\x6b\x67\x6e\x53\x6b\x4a\x57\x36\x61\x73\x57\x35\x43\x45','\x57\x52\x75\x62\x57\x36\x50\x39\x57\x34\x4a\x64\x51\x57\x65\x74','\x57\x50\x58\x66\x67\x43\x6f\x64\x72\x73\x78\x64\x51\x48\x30','\x57\x36\x53\x67\x57\x36\x38\x34\x41\x53\x6b\x69\x57\x52\x76\x6c','\x41\x30\x62\x2f','\x57\x50\x76\x67\x57\x37\x7a\x69\x62\x4a\x4a\x63\x4e\x4a\x69','\x57\x50\x48\x79\x76\x53\x6f\x70\x68\x67\x68\x64\x52\x61\x47','\x57\x36\x47\x6b\x57\x37\x4f\x57\x7a\x6d\x6b\x77\x57\x51\x53','\x57\x51\x46\x63\x48\x43\x6f\x77\x57\x36\x37\x64\x48\x64\x30','\x6d\x71\x64\x64\x51\x78\x70\x64\x49\x77\x74\x63\x56\x6d\x6b\x4e','\x62\x64\x78\x64\x4a\x32\x37\x64\x48\x53\x6f\x76\x57\x36\x44\x2b','\x57\x52\x71\x6d\x57\x36\x31\x54\x57\x34\x34','\x67\x43\x6b\x34\x57\x50\x48\x36\x57\x36\x64\x63\x50\x65\x46\x63\x50\x57','\x57\x37\x4b\x6e\x57\x37\x57','\x41\x31\x54\x4f','\x79\x71\x64\x64\x48\x4b\x6c\x64\x54\x73\x56\x64\x4a\x49\x79','\x78\x53\x6b\x67\x57\x34\x47\x2f\x57\x35\x68\x64\x4d\x59\x68\x64\x4d\x57','\x65\x38\x6b\x67\x6a\x38\x6f\x50\x43\x53\x6b\x70','\x68\x53\x6f\x73\x57\x50\x79\x42\x46\x57','\x57\x4f\x35\x35\x57\x34\x52\x64\x51\x43\x6f\x33\x61\x43\x6b\x74','\x6f\x48\x34\x30\x45\x6d\x6f\x39\x57\x51\x31\x4e\x6f\x47','\x57\x50\x68\x64\x49\x57\x47','\x6b\x59\x4c\x2b\x77\x75\x33\x64\x4d\x63\x72\x32','\x65\x66\x43\x37\x57\x51\x6a\x63\x68\x62\x42\x63\x47\x47','\x57\x35\x37\x63\x52\x75\x4e\x64\x50\x4e\x4a\x63\x4b\x6d\x6f\x4a\x57\x51\x42\x63\x4f\x38\x6b\x37\x57\x37\x66\x76\x57\x36\x75','\x69\x4e\x68\x64\x4e\x77\x78\x64\x47\x38\x6b\x6f\x57\x51\x58\x43','\x6b\x43\x6f\x33\x57\x51\x75\x52\x57\x35\x46\x63\x52\x53\x6b\x43\x57\x4f\x4f','\x67\x49\x64\x63\x47\x78\x33\x64\x4b\x43\x6b\x41\x57\x37\x48\x52','\x72\x53\x6b\x38\x57\x4f\x78\x63\x4c\x65\x65\x42\x57\x35\x7a\x76','\x68\x75\x33\x63\x54\x38\x6f\x4e\x6d\x53\x6f\x59\x57\x34\x52\x63\x49\x61','\x57\x51\x52\x64\x51\x64\x37\x63\x48\x38\x6b\x6e\x79\x75\x6e\x4a\x64\x4a\x4a\x64\x4d\x32\x6d\x6e','\x57\x37\x65\x2b\x7a\x5a\x6e\x58\x57\x36\x4f\x4d\x76\x47','\x57\x37\x43\x38\x6a\x64\x35\x51\x57\x36\x50\x4a\x75\x57','\x66\x53\x6b\x55\x57\x4f\x78\x63\x4d\x61\x61\x42\x57\x35\x35\x77','\x46\x30\x4e\x64\x54\x65\x43\x55\x75\x38\x6b\x43\x57\x52\x38','\x61\x33\x68\x64\x47\x77\x68\x64\x49\x43\x6b\x69\x57\x36\x31\x6d','\x72\x30\x58\x32\x69\x4a\x2f\x63\x54\x38\x6f\x31\x6b\x57','\x57\x4f\x64\x63\x4b\x63\x7a\x68\x44\x53\x6b\x41\x77\x6d\x6b\x42','\x62\x43\x6f\x52\x57\x36\x71\x31\x57\x35\x78\x64\x56\x43\x6b\x6e\x57\x51\x38','\x57\x37\x2f\x63\x4b\x43\x6f\x43\x57\x36\x64\x63\x4b\x71','\x57\x35\x34\x61\x63\x38\x6b\x71\x62\x74\x64\x64\x56\x73\x31\x66\x57\x34\x58\x4b','\x57\x36\x52\x63\x53\x32\x78\x64\x4e\x6d\x6f\x4d\x69\x58\x62\x43','\x62\x5a\x74\x63\x4e\x68\x79','\x74\x62\x2f\x64\x54\x38\x6b\x54\x43\x53\x6b\x49\x57\x50\x70\x63\x4e\x43\x6b\x53\x57\x36\x46\x64\x53\x61\x6e\x46','\x65\x75\x74\x64\x54\x68\x57\x6b\x61\x5a\x5a\x64\x4e\x6d\x6b\x56\x57\x51\x69\x42\x57\x50\x68\x64\x4b\x47','\x43\x71\x57\x43\x57\x37\x52\x63\x4c\x4c\x2f\x64\x53\x65\x34','\x65\x38\x6b\x61\x6c\x43\x6f\x49','\x57\x37\x34\x78\x57\x36\x35\x2b\x6c\x53\x6f\x41\x57\x51\x31\x7a','\x57\x51\x35\x35\x57\x34\x52\x64\x51\x43\x6f\x33\x61\x43\x6f\x61','\x57\x51\x52\x64\x4a\x38\x6b\x79\x46\x31\x50\x78\x44\x71','\x43\x72\x53\x62\x57\x37\x37\x63\x4c\x75\x4a\x64\x53\x62\x75','\x6c\x53\x6f\x58\x57\x51\x30\x50\x57\x50\x42\x63\x4f\x43\x6b\x6f','\x76\x38\x6f\x78\x43\x43\x6b\x32\x79\x43\x6b\x66\x68\x38\x6f\x44\x57\x52\x64\x64\x4d\x47'];_0x2af1=function(){return _0x5a697b;};return _0x2af1();}function stableHash(_0x1bc635){const _0x390ae5=_0x24fd3e;let _0x43c6ee=0x3310bc0+0x1*-0x89dccb57+0x107c85d5c;for(let _0x192194=0x22ad+-0x1d2f+-0x57e;_0x192194<_0x1bc635['\x6c\x65\x6e\x67\x74\x68'];_0x192194++){if(_0x390ae5(0x1fa,'\x26\x43\x58\x38')===_0x390ae5(0x20c,'\x5d\x4e\x36\x44')){const _0x180a7e=[...new _0x44fff6([..._0x29dcf1[_0x390ae5(0x17a,'\x36\x4a\x31\x5a')]??[],..._0xecb22][_0x390ae5(0x107,'\x42\x24\x70\x32')](_0x90c3e4=>_0x24dba8(_0x90c3e4))[_0x390ae5(0x142,'\x77\x44\x77\x38')](_0xe36852))];_0x10e0e9[_0x390ae5(0x191,'\x57\x57\x6a\x26')](_0x2c6ade(_0x390ae5(0x1ce,'\x29\x70\x65\x7a')+'\x70\x74',_0x244ce2(_0x390ae5(0x127,'\x23\x5a\x29\x36')+_0x390ae5(0x13e,'\x71\x23\x77\x28')+_0x295e1f['\x69\x64']),_0x4b3cba[_0x390ae5(0x208,'\x28\x73\x2a\x74')]||_0x390ae5(0x10a,'\x56\x57\x76\x59')+_0x390ae5(0x177,'\x69\x47\x65\x32')+_0x390ae5(0x1e4,'\x6a\x6b\x42\x59')+_0x390ae5(0x120,'\x54\x5e\x4f\x4d')+_0x390ae5(0x19c,'\x77\x44\x77\x38')+'\x79',_0x180a7e,_0x19ee20[_0x390ae5(0x18d,'\x6a\x6b\x42\x59')][_0x390ae5(0x1dd,'\x6c\x41\x56\x42')]>0x1e58*-0x1+0x107d+0xddb?_0x45a78c['\x65\x76\x69\x64\x65\x6e\x63\x65'][_0x390ae5(0x1e1,'\x71\x23\x77\x28')](0x19d1*0x1+-0x322+-0x16af,0x1db+-0x1*-0x261a+-0x27f3)[_0x390ae5(0x218,'\x2a\x31\x32\x6b')]('\x3b\x20'):_0x3c20f3[_0x390ae5(0x1b8,'\x4e\x54\x31\x42')],[...new _0x3cec13([..._0x9c5c3d,..._0x5e3f49(_0x180a7e)])]));}else _0x43c6ee^=_0x1bc635[_0x390ae5(0xfd,'\x77\x44\x77\x38')+'\x41\x74'](_0x192194),_0x43c6ee=Math['\x69\x6d\x75\x6c'](_0x43c6ee,0x1*-0xaaa6e+-0x33a3*-0x63f+0x2*-0x1bed8e);}return(_0x43c6ee>>>0x231e+0x4*0x8c1+-0x2*0x2311)[_0x390ae5(0xe2,'\x4f\x28\x2a\x66')](0x305*0x3+-0x4*-0x726+0x2597*-0x1)[_0x390ae5(0xeb,'\x21\x57\x72\x79')](0x1d2*0xb+0x1823+0x365*-0xd,'\x30');}const clip=(_0x2a5078,_0x67d4c3)=>_0x2a5078[_0x24fd3e(0x100,'\x2a\x31\x32\x6b')]>_0x67d4c3?_0x2a5078['\x73\x6c\x69\x63\x65'](-0x4cb*0x6+0x41b*0x2+0xa*0x20e,_0x67d4c3):_0x2a5078;function buildShape(_0x7aec18,_0x3e7ce6,_0x5a84bb){const _0x4722b5=_0x24fd3e,_0x7ee483=(_0x4722b5(0x1bf,'\x25\x59\x6d\x71')+'\x20'+_0x3e7ce6[_0x4722b5(0x1ca,'\x29\x5b\x72\x6e')]('\x2c\x20'))[_0x4722b5(0x211,'\x37\x38\x6b\x73')]();return{'\x74\x69\x74\x6c\x65':clip(_0x7aec18,TITLE_MAX),'\x69\x6e\x70\x75\x74':_0x4722b5(0x128,'\x28\x73\x2a\x74')+'\x65\x73\x73\x69\x6f\x6e\x20\x74'+_0x4722b5(0x168,'\x42\x24\x70\x32')+_0x4722b5(0x1d6,'\x21\x57\x72\x79')+_0x4722b5(0x1b9,'\x64\x42\x37\x25')+_0x4722b5(0x196,'\x62\x67\x58\x37')+_0x4722b5(0xfb,'\x56\x57\x76\x59')+_0x4722b5(0x105,'\x62\x67\x58\x37'),'\x6f\x75\x74\x70\x75\x74':_0x4722b5(0x1a7,'\x25\x59\x6d\x71')+_0x4722b5(0xf4,'\x6c\x41\x56\x42')+_0x4722b5(0x10b,'\x25\x59\x6d\x71')+_0x4722b5(0x15c,'\x28\x73\x2a\x74')+'\x68\x20\x67\x75\x69\x64\x65\x64'+_0x4722b5(0xe5,'\x51\x52\x4d\x65')+_0x4722b5(0x1c6,'\x6a\x6b\x42\x59'),'\x69\x6e\x76\x61\x72\x69\x61\x6e\x74\x73':_0x4722b5(0x155,'\x5e\x72\x56\x42')+_0x4722b5(0x146,'\x69\x47\x65\x32')+_0x4722b5(0x1ba,'\x4e\x54\x31\x42')+'\x76\x65\x72\x73\x69\x62\x6c\x65'+_0x4722b5(0x1b3,'\x29\x70\x65\x7a')+_0x4722b5(0xd0,'\x4b\x67\x79\x72')+_0x4722b5(0x16d,'\x64\x35\x23\x51')+'\x70\x65\x6e\x64\x2d\x6f\x6e\x6c'+_0x4722b5(0x1a9,'\x25\x59\x6d\x71'),'\x70\x61\x72\x61\x6d\x73':_0x7ee483||_0x4722b5(0x151,'\x50\x64\x4e\x5d')+_0x4722b5(0x200,'\x26\x43\x58\x38'),'\x66\x61\x69\x6c\x75\x72\x65\x5f\x70\x6f\x69\x6e\x74\x73':_0x4722b5(0x21a,'\x36\x4a\x31\x5a')+_0x4722b5(0xd8,'\x5e\x79\x74\x46')+_0x4722b5(0x1a6,'\x54\x5e\x4f\x4d')+_0x4722b5(0x1d8,'\x71\x23\x77\x28')+_0x4722b5(0x203,'\x36\x4a\x31\x5a')+_0x4722b5(0x183,'\x23\x5a\x29\x36')+_0x4722b5(0x1cb,'\x64\x76\x51\x59')+_0x4722b5(0x1be,'\x63\x40\x29\x48')+_0x4722b5(0x11e,'\x56\x57\x76\x59')+_0x4722b5(0x163,'\x32\x7a\x48\x62')+_0x4722b5(0x109,'\x4e\x61\x52\x4b')+'\x6e','\x65\x76\x69\x64\x65\x6e\x63\x65':clip(_0x5a84bb,EVIDENCE_MAX)};}function candidate(_0x4254fe,_0x4c639d,_0x200110,_0x3286b1,_0x201a84,_0x440748){const _0x58d17e=_0x24fd3e;return{'\x74\x79\x70\x65':_0x58d17e(0x1c9,'\x43\x70\x32\x38')+_0x58d17e(0x139,'\x4b\x67\x79\x72')+_0x58d17e(0x209,'\x28\x73\x2a\x74'),'\x69\x64':_0x58d17e(0xf6,'\x51\x6e\x69\x64')+_0x4c639d,'\x74\x69\x74\x6c\x65':_0x200110,'\x73\x6f\x75\x72\x63\x65':_0x4254fe,'\x73\x69\x67\x6e\x61\x6c\x73':_0x3286b1,'\x74\x61\x67\x73':_0x440748,'\x73\x68\x61\x70\x65':buildShape(_0x200110,_0x3286b1,_0x201a84)};}function failureTitle(_0x4c597e){const _0x1d0b04=_0x24fd3e;if(_0x4c597e[_0x1d0b04(0x20a,'\x38\x62\x6e\x21')](_0x1d0b04(0x1c4,'\x65\x57\x34\x28')+_0x1d0b04(0x194,'\x69\x31\x4f\x69')+'\x6e\x63\x65'))return _0x1d0b04(0x14e,'\x43\x70\x32\x38')+_0x1d0b04(0x1b5,'\x32\x7a\x48\x62')+_0x1d0b04(0x1ea,'\x64\x35\x23\x51')+_0x1d0b04(0x182,'\x57\x57\x6a\x26')+_0x1d0b04(0x1fe,'\x2a\x31\x32\x6b')+'\x73';if(_0x4c597e[_0x1d0b04(0x12c,'\x6a\x6b\x42\x59')](_0x1d0b04(0x1fd,'\x5e\x79\x74\x46')+_0x1d0b04(0x213,'\x78\x7a\x52\x4b')))return'\x50\x72\x65\x76\x65\x6e\x74\x20'+_0x1d0b04(0x1b7,'\x29\x70\x65\x7a')+_0x1d0b04(0xe3,'\x61\x6c\x31\x42')+_0x1d0b04(0x187,'\x54\x5e\x4f\x4d')+_0x1d0b04(0xf5,'\x78\x7a\x52\x4b')+_0x1d0b04(0x1bb,'\x51\x6e\x69\x64')+_0x1d0b04(0xff,'\x61\x6c\x31\x42');if(_0x4c597e['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x1d0b04(0x1b0,'\x64\x42\x37\x25')+_0x1d0b04(0x152,'\x61\x6c\x31\x42')+_0x1d0b04(0x16b,'\x67\x63\x35\x31')))return _0x1d0b04(0x18a,'\x30\x6e\x28\x58')+_0x1d0b04(0x1c1,'\x32\x7a\x48\x62')+_0x1d0b04(0x1c3,'\x77\x49\x4a\x34')+_0x1d0b04(0x1ec,'\x6a\x6b\x42\x59')+'\x6c\x75\x72\x65\x73';if(_0x4c597e[_0x1d0b04(0x186,'\x54\x5e\x4f\x4d')](_0x1d0b04(0xe6,'\x5e\x72\x56\x42')+_0x1d0b04(0x11a,'\x6c\x41\x56\x42')+'\x6f\x6e'))return'\x42\x72\x65\x61\x6b\x20\x72\x65'+_0x1d0b04(0x14a,'\x2a\x31\x32\x6b')+_0x1d0b04(0x16c,'\x5d\x4e\x36\x44')+_0x1d0b04(0xd7,'\x78\x7a\x52\x4b')+_0x1d0b04(0x1b1,'\x37\x38\x6b\x73')+_0x1d0b04(0xdd,'\x4f\x28\x2a\x66')+_0x1d0b04(0x1e2,'\x29\x5b\x72\x6e');if(_0x4c597e['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x1d0b04(0x1c5,'\x69\x47\x65\x32')+_0x1d0b04(0x103,'\x36\x58\x25\x56')+'\x6f\x6e'))return _0x1d0b04(0x217,'\x62\x67\x58\x37')+_0x1d0b04(0xfa,'\x56\x57\x76\x59')+_0x1d0b04(0x17e,'\x78\x7a\x52\x4b')+_0x1d0b04(0x1fb,'\x25\x59\x6d\x71')+_0x1d0b04(0x188,'\x23\x5a\x29\x36')+'\x72';return _0x1d0b04(0xe4,'\x5e\x72\x56\x42')+_0x1d0b04(0x167,'\x77\x44\x77\x38')+_0x1d0b04(0x17d,'\x47\x58\x47\x45')+_0x1d0b04(0xda,'\x57\x57\x6a\x26')+'\x75\x74\x69\x6f\x6e\x20\x70\x61'+'\x74\x68\x73';}export function extractCapabilityCandidates(_0x57fa73){const _0xcdef10=_0x24fd3e,_0x33cde0=(_0x57fa73['\x73\x69\x67\x6e\x61\x6c\x73']??[])[_0xcdef10(0x174,'\x37\x38\x6b\x73')](_0x5b3c9f=>String(_0x5b3c9f)),_0x2d5446=expandSignals(_0x33cde0),_0x456192=[],_0x46c90e=new Map();for(const _0x576768 of _0x57fa73[_0xcdef10(0x12f,'\x4f\x28\x2a\x66')+'\x73']??[])_0x46c90e[_0xcdef10(0x1ef,'\x39\x6f\x39\x67')](_0x576768,(_0x46c90e[_0xcdef10(0x17c,'\x51\x52\x4d\x65')](_0x576768)??0x1*0xcb6+-0x1*-0x75b+-0x1411)+(-0x1c87+-0x142a+-0x10f*-0x2e));for(const [_0x2ff5eb,_0x25d171]of _0x46c90e){if(_0x25d171<TOOL_CALL_MIN)continue;const _0x487efa=_0xcdef10(0x108,'\x4e\x61\x52\x4b')+_0xcdef10(0x10d,'\x38\x62\x6e\x21')+_0xcdef10(0x11b,'\x23\x5a\x29\x36')+_0x2ff5eb;_0x456192[_0xcdef10(0xf8,'\x24\x24\x45\x52')](candidate(_0xcdef10(0x215,'\x4b\x67\x79\x72')+'\x70\x74',stableHash(_0x487efa),_0x487efa,_0x33cde0,_0xcdef10(0xec,'\x43\x70\x32\x38')+'\x20'+_0x25d171+(_0xcdef10(0x207,'\x26\x43\x58\x38')+_0xcdef10(0x19d,'\x23\x5a\x29\x36')+_0xcdef10(0x181,'\x2a\x31\x32\x6b')+'\x6c\x20')+_0x2ff5eb+'\x2e',_0x2d5446));}for(const _0x19c5f1 of _0x57fa73['\x63\x6f\x6e\x76\x65\x72\x73\x61'+_0xcdef10(0x11c,'\x29\x5b\x72\x6e')]??[]){const _0x5505ad=[...new Set([..._0x19c5f1[_0xcdef10(0x19a,'\x2a\x31\x32\x6b')]??[],..._0x33cde0][_0xcdef10(0x161,'\x64\x76\x51\x59')](_0x566a86=>String(_0x566a86))[_0xcdef10(0x15e,'\x25\x59\x6d\x71')](Boolean))];_0x456192[_0xcdef10(0x1cd,'\x77\x44\x77\x38')](candidate(_0xcdef10(0x14c,'\x38\x28\x5b\x64')+'\x70\x74',stableHash('\x63\x6f\x6e\x76\x65\x72\x73\x61'+_0xcdef10(0xde,'\x57\x57\x6a\x26')+_0x19c5f1['\x69\x64']),_0x19c5f1[_0xcdef10(0xe1,'\x61\x6c\x31\x42')]||'\x56\x65\x72\x69\x66\x69\x65\x64'+_0xcdef10(0x125,'\x43\x70\x32\x38')+_0xcdef10(0x1f1,'\x48\x70\x59\x47')+_0xcdef10(0x1aa,'\x26\x43\x58\x38')+_0xcdef10(0x10f,'\x78\x7a\x52\x4b')+'\x79',_0x5505ad,_0x19c5f1['\x65\x76\x69\x64\x65\x6e\x63\x65']['\x6c\x65\x6e\x67\x74\x68']>-0xc16+0xb8d*0x3+-0x1691?_0x19c5f1[_0xcdef10(0xd1,'\x36\x4a\x31\x5a')]['\x73\x6c\x69\x63\x65'](-0x4*0x5e+0x1c7c+-0x85*0x34,0xfa6+-0x982*-0x1+-0x1926)['\x6a\x6f\x69\x6e']('\x3b\x20'):_0x19c5f1[_0xcdef10(0x134,'\x65\x57\x34\x28')],[...new Set([..._0x2d5446,...expandSignals(_0x5505ad)])]));}for(const _0x46c37a of SIGNAL_CANDIDATES){if(!_0x33cde0[_0xcdef10(0x195,'\x29\x5b\x72\x6e')](_0x5d9fcf=>_0x5d9fcf===_0x46c37a['\x73\x69\x67\x6e\x61\x6c']||_0x5d9fcf[_0xcdef10(0x1bd,'\x5d\x4e\x36\x44')+'\x74\x68'](_0x46c37a[_0xcdef10(0xf3,'\x64\x42\x37\x25')]+'\x3a')))continue;_0x456192[_0xcdef10(0x137,'\x64\x76\x51\x59')](candidate(_0xcdef10(0x16e,'\x62\x67\x58\x37'),stableHash(_0x46c37a[_0xcdef10(0x1b2,'\x61\x6c\x31\x42')]),_0x46c37a[_0xcdef10(0x1db,'\x23\x5a\x29\x36')],_0x33cde0,_0xcdef10(0x197,'\x36\x4a\x31\x5a')+_0x46c37a[_0xcdef10(0x178,'\x29\x5b\x72\x6e')]+_0xcdef10(0x114,'\x57\x57\x6a\x26'),_0x2d5446));}const _0x488a48=new Map();for(const _0x5938e9 of _0x57fa73[_0xcdef10(0x1af,'\x28\x73\x2a\x74')+'\x70\x73\x75\x6c\x65\x73']??[]){if(_0x5938e9[_0xcdef10(0x1d2,'\x64\x35\x23\x51')]?.[_0xcdef10(0x16f,'\x77\x49\x4a\x34')]===_0xcdef10(0x119,'\x6a\x6b\x42\x59'))continue;const _0x23d712=String(_0x5938e9[_0xcdef10(0xee,'\x51\x6e\x69\x64')+_0xcdef10(0x12b,'\x23\x5a\x29\x36')]??'')[_0xcdef10(0x1eb,'\x23\x5a\x29\x36')](),_0x2602fb=expandSignals([..._0x5938e9['\x74\x72\x69\x67\x67\x65\x72']??[],..._0x33cde0],_0x23d712)[_0xcdef10(0xdb,'\x78\x7a\x52\x4b')](_0x5d54b=>/^(problem|risk|area|action):/[_0xcdef10(0x20e,'\x77\x44\x77\x38')](_0x5d54b));if(_0x2602fb[_0xcdef10(0x164,'\x4e\x54\x31\x42')]===-0x1*0x1db2+-0x264a+0x26*0x1ca)continue;let _0xabd10a=null;for(const _0x1d3138 of PROBLEM_PRIORITY)if(_0x2602fb['\x69\x6e\x63\x6c\x75\x64\x65\x73'](_0x1d3138)){_0xabd10a=_0x1d3138;break;}const _0x2de2de=_0xabd10a?[_0xabd10a]:_0x2602fb[_0xcdef10(0x10c,'\x32\x7a\x48\x62')](_0x3706e1=>_0x3706e1[_0xcdef10(0x102,'\x47\x58\x47\x45')+'\x74\x68'](_0xcdef10(0x1ed,'\x54\x5e\x4f\x4d'))||_0x3706e1[_0xcdef10(0x1df,'\x2a\x31\x32\x6b')+'\x74\x68'](_0xcdef10(0x143,'\x63\x40\x29\x48')))[_0xcdef10(0xd6,'\x38\x28\x5b\x64')](-0x141e+-0x141c+-0x21e*-0x13,-0x14df+-0x1dc1+0x32a1),_0x445a9a=_0x2de2de[_0xcdef10(0x1c7,'\x38\x28\x5b\x64')]('\x7c');if(!_0x445a9a)continue;const _0x4dbccd=_0x488a48[_0xcdef10(0x1de,'\x4f\x28\x2a\x66')](_0x445a9a)??{'\x63\x6f\x75\x6e\x74':0x0,'\x74\x61\x67\x73':_0x2602fb,'\x72\x65\x61\x73\x6f\x6e\x73':[]};_0x4dbccd[_0xcdef10(0x179,'\x56\x57\x76\x59')]+=-0xe21*-0x1+-0x26*0x3d+-0x289*0x2;if(_0x23d712)_0x4dbccd[_0xcdef10(0x122,'\x62\x67\x58\x37')][_0xcdef10(0x1e5,'\x29\x5b\x72\x6e')](_0x23d712);_0x488a48['\x73\x65\x74'](_0x445a9a,_0x4dbccd);}for(const [_0x2f6d00,_0x5bdcbf]of _0x488a48){if(_0x5bdcbf[_0xcdef10(0x126,'\x78\x7a\x52\x4b')]<FAILURE_CLUSTER_MIN)continue;const _0x44753c=failureTitle(_0x5bdcbf[_0xcdef10(0x113,'\x37\x38\x6b\x73')]),_0x2deb38=_0x5bdcbf[_0xcdef10(0x18e,'\x48\x70\x59\x47')]+('\x20\x72\x65\x63\x75\x72\x72\x69'+'\x6e\x67\x20\x66\x61\x69\x6c\x75'+_0xcdef10(0x1f5,'\x6a\x6b\x42\x59'))+(_0x5bdcbf['\x72\x65\x61\x73\x6f\x6e\x73'][_0xcdef10(0x1e3,'\x64\x42\x37\x25')]?'\x20\x28'+_0x5bdcbf[_0xcdef10(0x20d,'\x6c\x41\x56\x42')][_0xcdef10(0x172,'\x42\x24\x70\x32')](-0x5e1+-0x9ac+0xf8d,-0x73*-0x5+-0x6b*0x4c+0x1d87)[_0xcdef10(0x136,'\x64\x76\x51\x59')]('\x3b\x20')+'\x29':'');_0x456192[_0xcdef10(0x121,'\x36\x4a\x31\x5a')](candidate(_0xcdef10(0x17b,'\x36\x58\x25\x56')+_0xcdef10(0x19e,'\x26\x43\x58\x38'),stableHash(_0xcdef10(0x212,'\x67\x63\x35\x31')+_0x2f6d00),_0x44753c,_0x33cde0,_0x2deb38,_0x5bdcbf[_0xcdef10(0x13f,'\x56\x57\x76\x59')]));}const _0xa01d71=new Set(),_0x52adf8=[];for(const _0x4ee845 of _0x456192){if(_0xcdef10(0x106,'\x32\x7a\x48\x62')!==_0xcdef10(0x1a5,'\x77\x44\x77\x38'))return{'\x74\x79\x70\x65':_0xcdef10(0x117,'\x4e\x61\x52\x4b')+_0xcdef10(0x124,'\x28\x73\x2a\x74')+_0xcdef10(0x13d,'\x6c\x41\x56\x42'),'\x69\x64':_0xcdef10(0x1e7,'\x26\x43\x58\x38')+_0x2fb98b,'\x74\x69\x74\x6c\x65':_0x5670cf,'\x73\x6f\x75\x72\x63\x65':_0x4f6b78,'\x73\x69\x67\x6e\x61\x6c\x73':_0x4bfafb,'\x74\x61\x67\x73':_0x14ce29,'\x73\x68\x61\x70\x65':_0x1875d9(_0x1313bc,_0x25c13e,_0x5e9989)};else{if(_0xa01d71['\x68\x61\x73'](_0x4ee845['\x69\x64']))continue;_0xa01d71[_0xcdef10(0x1d4,'\x5e\x79\x74\x46')](_0x4ee845['\x69\x64']),_0x52adf8[_0xcdef10(0x115,'\x47\x58\x47\x45')](_0x4ee845);}}return _0x52adf8;}