@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.
- package/dist/algo/antiDistill.js +1 -167
- package/dist/algo/bans.js +1 -33
- package/dist/algo/candidateAssembly.js +1 -273
- package/dist/algo/capabilityCandidates.js +1 -146
- package/dist/algo/confidence.js +1 -196
- package/dist/algo/conversationSniffer.js +1 -149
- package/dist/algo/cycleEngine.js +1 -625
- package/dist/algo/cycleFailureClassifier.js +1 -112
- package/dist/algo/epigenetics.js +1 -41
- package/dist/algo/evolutionEvent.js +1 -24
- package/dist/algo/exploration.js +1 -68
- package/dist/algo/geneHealth.js +1 -17
- package/dist/algo/geneIntake.js +1 -128
- package/dist/algo/genePromotion.js +1 -53
- package/dist/algo/geneSelection.js +1 -546
- package/dist/algo/index.js +1 -22
- package/dist/algo/memoryGraph.js +1 -86
- package/dist/algo/mutation.js +1 -22
- package/dist/algo/orchestrator.js +1 -87
- package/dist/algo/publishEligibility.js +1 -52
- package/dist/algo/solidify.js +1 -63
- package/dist/algo/strategyPresets.js +1 -61
- package/dist/algo/ucb1.js +1 -156
- package/dist/benchmark/antiGeneBenchmark.js +1 -252
- package/dist/benchmark/antiGeneImpact.js +1 -34
- package/dist/benchmark/antiGeneRollout.js +1 -269
- package/dist/benchmark/benchmark.js +1 -26
- package/dist/benchmark/evolutionThesisSolver.js +1 -41
- package/dist/benchmark/index.js +1 -7
- package/dist/benchmark/selectionFlatAbstention.js +1 -481
- package/dist/benchmark/thesis.js +1 -150
- package/dist/benchmark/triggerShift.js +1 -106
- package/dist/cycle/cycleTimeline.js +1 -74
- package/dist/cycle/index.js +1 -2
- package/dist/cycle/stateMachine.js +1 -25
- package/dist/hub/agentDirectory.js +1 -104
- package/dist/hub/assetCallLog.js +1 -195
- package/dist/hub/bindings.js +1 -121
- package/dist/hub/capability.js +1 -1
- package/dist/hub/conversationDistiller.js +1 -264
- package/dist/hub/fake.js +1 -70
- package/dist/hub/hubReview.js +1 -106
- package/dist/hub/index.js +1 -11
- package/dist/hub/ingest.js +1 -15
- package/dist/hub/questionGenerator.js +1 -408
- package/dist/hub/reuseDecision.js +1 -127
- package/dist/hub/sanitize.js +1 -322
- package/dist/material/boundary.js +1 -14
- package/dist/material/consumer.js +1 -55
- package/dist/material/emit.js +1 -52
- package/dist/material/factory.js +1 -25
- package/dist/material/index.js +1 -9
- package/dist/material/materialArchive.js +1 -466
- package/dist/material/materialStore.js +1 -69
- package/dist/material/sampling.js +1 -39
- package/dist/material/sources.js +1 -33
- package/dist/material/watermark.js +1 -76
- package/dist/personality/drift.js +1 -106
- package/dist/personality/events.js +1 -37
- package/dist/personality/evolveOps.js +1 -93
- package/dist/personality/index.js +1 -11
- package/dist/personality/mutate.js +1 -39
- package/dist/personality/pivot.js +1 -22
- package/dist/personality/prompt.js +1 -62
- package/dist/personality/riskGate.js +1 -80
- package/dist/personality/schema.js +1 -119
- package/dist/personality/select.js +1 -71
- package/dist/personality/stats.js +1 -82
- package/dist/personality/store.js +1 -92
- package/dist/schema/common.js +1 -17
- package/dist/schema/evolutionGraph.js +1 -187
- package/dist/schema/index.js +1 -6
- package/dist/schema/material.js +1 -50
- package/dist/schema/problem.js +1 -45
- package/dist/schema/proofOfWork.js +1 -9
- package/dist/schema/signal.js +1 -19
- package/dist/signals/curriculum.js +1 -202
- package/dist/signals/cycleHistoryFromEvents.js +1 -105
- package/dist/signals/expand.js +1 -293
- package/dist/signals/extractor.js +1 -82
- package/dist/signals/index.js +1 -8
- package/dist/signals/metaSignals.js +1 -200
- package/dist/signals/signalGate.js +1 -40
- package/dist/signals/taskDomain.js +1 -43
- package/dist/signals/traceSignals.js +1 -123
- package/dist/strategy/constraintAblation.js +1 -2820
- package/dist/strategy/constraintAblationPredicates.js +1 -339
- package/dist/strategy/experiment.js +1 -63
- package/dist/strategy/index.js +1 -3
- package/dist/strategy/strategyPoint.js +1 -23
- package/package.json +1 -1
|
@@ -1,187 +1 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
import { extensions, sha256Hash } from './common.js';
|
|
3
|
-
export const EVOLUTION_GRAPH_SCHEMA_VERSION = '1.0.0';
|
|
4
|
-
export const evolutionGraphNodeKinds = [
|
|
5
|
-
'prompt',
|
|
6
|
-
'code',
|
|
7
|
-
'spec',
|
|
8
|
-
'test',
|
|
9
|
-
'feedback',
|
|
10
|
-
'run',
|
|
11
|
-
'metric',
|
|
12
|
-
'variant',
|
|
13
|
-
'selection',
|
|
14
|
-
];
|
|
15
|
-
export const evolutionGraphEdgeKinds = [
|
|
16
|
-
'derivation',
|
|
17
|
-
'evaluated_by',
|
|
18
|
-
'regressed',
|
|
19
|
-
'fixed',
|
|
20
|
-
'selected',
|
|
21
|
-
];
|
|
22
|
-
export const evolutionGraphProvenanceKinds = [
|
|
23
|
-
'root_event',
|
|
24
|
-
'asset',
|
|
25
|
-
'material',
|
|
26
|
-
'review',
|
|
27
|
-
'cycle',
|
|
28
|
-
'workflow',
|
|
29
|
-
'runtime_trace',
|
|
30
|
-
'plugin',
|
|
31
|
-
'manual',
|
|
32
|
-
];
|
|
33
|
-
export const evolutionGraphNodeKind = z.enum(evolutionGraphNodeKinds);
|
|
34
|
-
export const evolutionGraphEdgeKind = z.enum(evolutionGraphEdgeKinds);
|
|
35
|
-
export const evolutionGraphProvenanceKind = z.enum(evolutionGraphProvenanceKinds);
|
|
36
|
-
export const evolutionGraphNodeRef = z.string().min(1);
|
|
37
|
-
export const evolutionGraphArtifactRef = z.object({
|
|
38
|
-
kind: z.enum(['asset', 'material', 'root_event', 'file', 'runtime_trace', 'plugin_resource']),
|
|
39
|
-
ref: z.string().min(1),
|
|
40
|
-
sha256: sha256Hash.optional(),
|
|
41
|
-
});
|
|
42
|
-
export const evolutionGraphMetricValue = z.object({
|
|
43
|
-
metric: z.string().min(1),
|
|
44
|
-
value: z.number(),
|
|
45
|
-
unit: z.string().min(1).optional(),
|
|
46
|
-
direction: z.enum(['higher_is_better', 'lower_is_better', 'target']).default('higher_is_better'),
|
|
47
|
-
target: z.number().optional(),
|
|
48
|
-
});
|
|
49
|
-
export const evolutionGraphMetricDelta = z.object({
|
|
50
|
-
metric: z.string().min(1),
|
|
51
|
-
before: z.number().optional(),
|
|
52
|
-
after: z.number(),
|
|
53
|
-
delta: z.number().optional(),
|
|
54
|
-
direction: z.enum(['improved', 'regressed', 'unchanged', 'unknown']).default('unknown'),
|
|
55
|
-
});
|
|
56
|
-
export const evolutionGraphNode = z.object({
|
|
57
|
-
id: evolutionGraphNodeRef,
|
|
58
|
-
kind: evolutionGraphNodeKind,
|
|
59
|
-
label: z.string().min(1),
|
|
60
|
-
createdAt: z.string().datetime(),
|
|
61
|
-
artifact: evolutionGraphArtifactRef.optional(),
|
|
62
|
-
metrics: z.array(evolutionGraphMetricValue).default([]),
|
|
63
|
-
summary: z.string().optional(),
|
|
64
|
-
tags: z.array(z.string().min(1)).default([]),
|
|
65
|
-
extensions,
|
|
66
|
-
});
|
|
67
|
-
export const evolutionGraphProvenance = z.object({
|
|
68
|
-
kind: evolutionGraphProvenanceKind,
|
|
69
|
-
ref: z.string().min(1),
|
|
70
|
-
capturedAt: z.string().datetime(),
|
|
71
|
-
actor: z.string().min(1).optional(),
|
|
72
|
-
digest: sha256Hash.optional(),
|
|
73
|
-
summary: z.string().optional(),
|
|
74
|
-
});
|
|
75
|
-
export const evolutionGraphEdge = z.object({
|
|
76
|
-
id: z.string().min(1),
|
|
77
|
-
kind: evolutionGraphEdgeKind,
|
|
78
|
-
from: evolutionGraphNodeRef,
|
|
79
|
-
to: evolutionGraphNodeRef,
|
|
80
|
-
createdAt: z.string().datetime(),
|
|
81
|
-
provenance: z.array(evolutionGraphProvenance).min(1),
|
|
82
|
-
metricDelta: evolutionGraphMetricDelta.optional(),
|
|
83
|
-
reason: z.string().min(1).optional(),
|
|
84
|
-
confidence: z.number().min(0).max(1).optional(),
|
|
85
|
-
extensions,
|
|
86
|
-
});
|
|
87
|
-
export const evolutionGraphDashboardSummary = z.object({
|
|
88
|
-
nodeCount: z.number().int().nonnegative(),
|
|
89
|
-
edgeCount: z.number().int().nonnegative(),
|
|
90
|
-
variantCount: z.number().int().nonnegative(),
|
|
91
|
-
selectedCount: z.number().int().nonnegative(),
|
|
92
|
-
regressionCount: z.number().int().nonnegative(),
|
|
93
|
-
fixedCount: z.number().int().nonnegative(),
|
|
94
|
-
evaluatedVariantCount: z.number().int().nonnegative(),
|
|
95
|
-
unevaluatedVariantCount: z.number().int().nonnegative(),
|
|
96
|
-
orphanEdgeCount: z.number().int().nonnegative(),
|
|
97
|
-
provenanceGapCount: z.number().int().nonnegative(),
|
|
98
|
-
});
|
|
99
|
-
export const evolutionGraph = z.object({
|
|
100
|
-
schemaVersion: z.literal(EVOLUTION_GRAPH_SCHEMA_VERSION).default(EVOLUTION_GRAPH_SCHEMA_VERSION),
|
|
101
|
-
graphId: z.string().min(1),
|
|
102
|
-
generatedAt: z.string().datetime(),
|
|
103
|
-
nodes: z.array(evolutionGraphNode),
|
|
104
|
-
edges: z.array(evolutionGraphEdge),
|
|
105
|
-
dashboard: evolutionGraphDashboardSummary.optional(),
|
|
106
|
-
extensions,
|
|
107
|
-
}).superRefine((graph, ctx) => {
|
|
108
|
-
const nodesById = new Map();
|
|
109
|
-
for (const [index, node] of graph.nodes.entries()) {
|
|
110
|
-
if (nodesById.has(node.id)) {
|
|
111
|
-
ctx.addIssue({ code: z.ZodIssueCode.custom, path: ['nodes', index, 'id'], message: 'duplicate evolution graph node id' });
|
|
112
|
-
continue;
|
|
113
|
-
}
|
|
114
|
-
nodesById.set(node.id, node.kind);
|
|
115
|
-
}
|
|
116
|
-
const edgeIds = new Set();
|
|
117
|
-
for (const [index, edge] of graph.edges.entries()) {
|
|
118
|
-
if (edgeIds.has(edge.id)) {
|
|
119
|
-
ctx.addIssue({ code: z.ZodIssueCode.custom, path: ['edges', index, 'id'], message: 'duplicate evolution graph edge id' });
|
|
120
|
-
}
|
|
121
|
-
else {
|
|
122
|
-
edgeIds.add(edge.id);
|
|
123
|
-
}
|
|
124
|
-
const fromKind = nodesById.get(edge.from);
|
|
125
|
-
const toKind = nodesById.get(edge.to);
|
|
126
|
-
if (!fromKind)
|
|
127
|
-
ctx.addIssue({ code: z.ZodIssueCode.custom, path: ['edges', index, 'from'], message: 'edge source node is missing' });
|
|
128
|
-
if (!toKind)
|
|
129
|
-
ctx.addIssue({ code: z.ZodIssueCode.custom, path: ['edges', index, 'to'], message: 'edge target node is missing' });
|
|
130
|
-
if (!fromKind || !toKind)
|
|
131
|
-
continue;
|
|
132
|
-
validateEvolutionGraphEdgeShape(edge, fromKind, toKind, ctx, index);
|
|
133
|
-
}
|
|
134
|
-
});
|
|
135
|
-
export function deriveEvolutionGraphDashboardSummary(input) {
|
|
136
|
-
const variantIds = new Set(input.nodes.filter((node) => node.kind === 'variant').map((node) => node.id));
|
|
137
|
-
const evaluatedVariantIds = new Set();
|
|
138
|
-
let selectedCount = 0;
|
|
139
|
-
let regressionCount = 0;
|
|
140
|
-
let fixedCount = 0;
|
|
141
|
-
let orphanEdgeCount = 0;
|
|
142
|
-
let provenanceGapCount = 0;
|
|
143
|
-
const nodeIds = new Set(input.nodes.map((node) => node.id));
|
|
144
|
-
for (const edge of input.edges) {
|
|
145
|
-
if (!nodeIds.has(edge.from) || !nodeIds.has(edge.to))
|
|
146
|
-
orphanEdgeCount += 1;
|
|
147
|
-
if (edge.provenance.length === 0)
|
|
148
|
-
provenanceGapCount += 1;
|
|
149
|
-
if (edge.kind === 'evaluated_by' && variantIds.has(edge.from))
|
|
150
|
-
evaluatedVariantIds.add(edge.from);
|
|
151
|
-
if (edge.kind === 'selected')
|
|
152
|
-
selectedCount += 1;
|
|
153
|
-
if (edge.kind === 'regressed')
|
|
154
|
-
regressionCount += 1;
|
|
155
|
-
if (edge.kind === 'fixed')
|
|
156
|
-
fixedCount += 1;
|
|
157
|
-
}
|
|
158
|
-
return {
|
|
159
|
-
nodeCount: input.nodes.length,
|
|
160
|
-
edgeCount: input.edges.length,
|
|
161
|
-
variantCount: variantIds.size,
|
|
162
|
-
selectedCount,
|
|
163
|
-
regressionCount,
|
|
164
|
-
fixedCount,
|
|
165
|
-
evaluatedVariantCount: evaluatedVariantIds.size,
|
|
166
|
-
unevaluatedVariantCount: Math.max(0, variantIds.size - evaluatedVariantIds.size),
|
|
167
|
-
orphanEdgeCount,
|
|
168
|
-
provenanceGapCount,
|
|
169
|
-
};
|
|
170
|
-
}
|
|
171
|
-
function validateEvolutionGraphEdgeShape(edge, fromKind, toKind, ctx, edgeIndex) {
|
|
172
|
-
if (edge.kind === 'selected' && (fromKind !== 'variant' || toKind !== 'selection')) {
|
|
173
|
-
ctx.addIssue({ code: z.ZodIssueCode.custom, path: ['edges', edgeIndex, 'kind'], message: 'selected edges must connect variant -> selection' });
|
|
174
|
-
}
|
|
175
|
-
if (edge.kind === 'evaluated_by' && !['run', 'metric', 'test'].includes(toKind)) {
|
|
176
|
-
ctx.addIssue({ code: z.ZodIssueCode.custom, path: ['edges', edgeIndex, 'to'], message: 'evaluated_by target must be run, metric, or test' });
|
|
177
|
-
}
|
|
178
|
-
if ((edge.kind === 'regressed' || edge.kind === 'fixed') && !['run', 'metric', 'test'].includes(toKind)) {
|
|
179
|
-
ctx.addIssue({ code: z.ZodIssueCode.custom, path: ['edges', edgeIndex, 'to'], message: `${edge.kind} target must be run, metric, or test` });
|
|
180
|
-
}
|
|
181
|
-
if ((edge.kind === 'regressed' || edge.kind === 'fixed') && !edge.metricDelta) {
|
|
182
|
-
ctx.addIssue({ code: z.ZodIssueCode.custom, path: ['edges', edgeIndex, 'metricDelta'], message: `${edge.kind} edges require metricDelta` });
|
|
183
|
-
}
|
|
184
|
-
if (edge.kind === 'selected' && !edge.reason) {
|
|
185
|
-
ctx.addIssue({ code: z.ZodIssueCode.custom, path: ['edges', edgeIndex, 'reason'], message: 'selected edges require a reason' });
|
|
186
|
-
}
|
|
187
|
-
}
|
|
1
|
+
const _0x57dfc4=_0x57fd;(function(_0x49c36b,_0x5b8313){const _0x29412d=_0x57fd,_0x447b18=_0x49c36b();while(!![]){try{const _0x36e1a0=parseInt(_0x29412d(0x1df,'\x5d\x69\x24\x52'))/(-0x9d2+-0x873+0x1246*0x1)+-parseInt(_0x29412d(0x24d,'\x61\x4b\x25\x5d'))/(-0xba1+-0x1f0*0x11+-0x1*-0x2c93)*(-parseInt(_0x29412d(0x151,'\x61\x7a\x78\x56'))/(0x1b83+-0x243e+0x8be))+parseInt(_0x29412d(0x241,'\x2a\x72\x72\x4c'))/(-0x36c+-0xcbd+0x102d)*(-parseInt(_0x29412d(0x19d,'\x52\x24\x70\x42'))/(-0x16fa+0xd21*-0x1+0x2420))+-parseInt(_0x29412d(0xf0,'\x51\x62\x71\x68'))/(-0x111a+-0x540+0x1660)*(parseInt(_0x29412d(0x242,'\x38\x49\x4a\x66'))/(-0x1243*-0x1+0x242*0x3+0x3*-0x856))+-parseInt(_0x29412d(0x234,'\x6c\x45\x66\x7a'))/(-0x5d3+-0x26ba+-0x71*-0x65)+parseInt(_0x29412d(0x1b5,'\x5a\x44\x28\x70'))/(-0x2366+-0x2ea+0x1*0x2659)*(parseInt(_0x29412d(0x207,'\x51\x62\x71\x68'))/(0x1a3b+-0x122a+-0x2ad*0x3))+parseInt(_0x29412d(0x19f,'\x4b\x71\x33\x68'))/(-0x17*0x11b+0x112f+0x7*0x12f)*(-parseInt(_0x29412d(0x20d,'\x53\x45\x25\x29'))/(-0xbfa+0x14ff+0x8f9*-0x1));if(_0x36e1a0===_0x5b8313)break;else _0x447b18['push'](_0x447b18['shift']());}catch(_0x42694b){_0x447b18['push'](_0x447b18['shift']());}}}(_0x50af,-0x37a30*-0x4+-0x2cca6+-0x3000));import{z}from'\x7a\x6f\x64';import{extensions,sha256Hash}from'\x2e\x2f\x63\x6f\x6d\x6d\x6f\x6e\x2e\x6a\x73';export const EVOLUTION_GRAPH_SCHEMA_VERSION=_0x57dfc4(0x188,'\x4c\x71\x34\x63');export const evolutionGraphNodeKinds=[_0x57dfc4(0x1aa,'\x39\x65\x66\x49'),_0x57dfc4(0x191,'\x6a\x34\x4f\x64'),_0x57dfc4(0x11d,'\x62\x52\x47\x4f'),_0x57dfc4(0x125,'\x6b\x26\x47\x59'),_0x57dfc4(0x163,'\x46\x53\x51\x6d'),_0x57dfc4(0x15b,'\x67\x45\x2a\x66'),_0x57dfc4(0x1c3,'\x6c\x45\x66\x7a'),_0x57dfc4(0x1c9,'\x47\x72\x69\x74'),_0x57dfc4(0x255,'\x35\x26\x78\x31')+'\x6e'];function _0x50af(){const _0x2e5b95=['\x57\x37\x46\x63\x4a\x6d\x6b\x70\x6a\x76\x38\x4f\x66\x43\x6b\x56','\x57\x36\x70\x64\x53\x65\x72\x73','\x77\x76\x4a\x63\x50\x71','\x57\x50\x62\x43\x69\x32\x6c\x63\x51\x38\x6b\x74','\x74\x38\x6b\x4c\x57\x37\x6a\x61\x57\x4f\x78\x63\x54\x4a\x72\x72\x57\x37\x64\x63\x4f\x53\x6b\x31\x57\x51\x65\x5a','\x57\x4f\x33\x64\x4e\x73\x69','\x57\x52\x2f\x63\x49\x6d\x6b\x79','\x6c\x43\x6b\x31\x45\x53\x6f\x42','\x6f\x30\x54\x69\x57\x35\x43','\x66\x6d\x6f\x38\x57\x51\x34','\x57\x36\x38\x78\x57\x34\x70\x63\x4f\x31\x68\x64\x47\x53\x6f\x71\x6a\x66\x33\x63\x52\x53\x6b\x6e\x79\x67\x65','\x73\x38\x6f\x32\x41\x31\x47','\x57\x37\x4e\x64\x49\x4e\x62\x48\x57\x34\x50\x45\x68\x53\x6b\x44','\x57\x51\x79\x58\x57\x35\x2f\x63\x51\x53\x6f\x50','\x57\x34\x47\x43\x57\x52\x6c\x64\x53\x6d\x6f\x52\x6a\x38\x6f\x6c\x75\x57','\x66\x53\x6b\x2b\x72\x4e\x38\x6a\x57\x52\x79','\x57\x52\x6c\x63\x48\x38\x6b\x45\x6c\x57','\x7a\x5a\x44\x72\x6a\x6d\x6b\x58\x57\x52\x54\x48\x57\x52\x34','\x68\x58\x34\x37\x57\x37\x47\x64','\x43\x68\x74\x63\x48\x32\x6a\x47\x57\x4f\x48\x76\x57\x51\x65','\x57\x52\x68\x63\x48\x53\x6f\x30\x63\x43\x6f\x77\x57\x50\x71','\x57\x37\x46\x64\x49\x4d\x39\x53\x57\x34\x53','\x57\x52\x66\x67\x57\x4f\x47','\x57\x34\x70\x64\x51\x4c\x6e\x64\x57\x34\x42\x64\x53\x71','\x78\x38\x6b\x53\x57\x37\x6d\x68\x69\x57\x65','\x57\x52\x66\x74\x6f\x47','\x63\x53\x6f\x7a\x61\x43\x6f\x67\x57\x50\x69','\x57\x51\x56\x64\x47\x4d\x70\x64\x4a\x43\x6b\x33\x57\x51\x39\x63\x43\x38\x6f\x74\x57\x50\x56\x64\x4f\x49\x4f','\x57\x52\x39\x64\x6e\x59\x58\x72','\x57\x37\x70\x63\x4e\x4a\x68\x63\x56\x43\x6f\x31\x57\x36\x31\x2f\x77\x71','\x6d\x43\x6f\x62\x57\x4f\x70\x64\x50\x38\x6b\x46\x57\x50\x53','\x6a\x38\x6b\x46\x44\x43\x6f\x61\x57\x51\x79\x30','\x63\x6d\x6b\x4a\x77\x47','\x57\x51\x54\x31\x57\x35\x33\x63\x51\x38\x6f\x39\x78\x58\x50\x57','\x6a\x38\x6f\x42\x57\x4f\x78\x64\x56\x6d\x6b\x79\x57\x50\x4e\x64\x4f\x71','\x57\x51\x50\x65\x57\x34\x33\x63\x52\x75\x75\x50\x70\x65\x4b','\x57\x51\x4c\x46\x57\x52\x54\x4d\x76\x49\x57','\x62\x43\x6b\x58\x6d\x4a\x6c\x63\x56\x53\x6b\x32\x57\x34\x78\x64\x55\x57','\x69\x31\x70\x63\x4b\x71','\x77\x6d\x6f\x58\x57\x37\x6e\x53\x71\x6d\x6f\x38','\x6d\x64\x35\x4b\x6b\x43\x6b\x37\x57\x4f\x76\x6d','\x46\x33\x2f\x63\x48\x30\x35\x47','\x57\x51\x5a\x64\x4d\x47\x72\x57\x57\x52\x50\x2b\x57\x52\x44\x70','\x6c\x76\x56\x63\x4d\x53\x6b\x66\x57\x36\x6d','\x6c\x77\x72\x72\x57\x4f\x4a\x64\x49\x78\x68\x63\x4e\x47','\x6c\x6d\x6b\x37\x6f\x48\x37\x63\x52\x53\x6b\x58\x57\x35\x4e\x64\x53\x71','\x57\x51\x52\x64\x48\x6d\x6b\x78\x69\x77\x68\x64\x50\x53\x6f\x54\x71\x61','\x57\x4f\x44\x42\x6d\x78\x78\x63\x4f\x71','\x57\x50\x7a\x46\x6d\x78\x52\x63\x53\x43\x6b\x46\x57\x37\x50\x45','\x57\x36\x37\x64\x49\x53\x6b\x51\x75\x53\x6b\x68\x57\x35\x42\x64\x4e\x43\x6b\x34\x6b\x38\x6f\x51\x57\x37\x4a\x63\x50\x65\x43','\x6f\x53\x6b\x70\x44\x6d\x6f\x68\x57\x51\x61\x59\x57\x51\x4a\x64\x56\x57','\x44\x33\x4e\x63\x4d\x30\x35\x33','\x57\x51\x79\x4a\x57\x35\x4e\x63\x4f\x38\x6f\x56\x77\x30\x35\x38','\x57\x50\x50\x68\x6e\x57','\x57\x34\x61\x6e\x57\x51\x42\x64\x4f\x43\x6b\x34','\x6d\x78\x46\x64\x4a\x47\x2f\x63\x4b\x4d\x53','\x43\x78\x4e\x64\x4c\x38\x6f\x6b\x6d\x38\x6f\x54\x57\x36\x54\x46','\x57\x36\x44\x76\x57\x35\x4a\x63\x52\x75\x53\x56\x64\x61\x57','\x57\x52\x33\x64\x49\x53\x6f\x39\x57\x36\x65\x45\x57\x52\x4f','\x6a\x53\x6f\x71\x57\x50\x46\x64\x52\x38\x6b\x65\x57\x50\x64\x64\x50\x47','\x42\x38\x6b\x47\x6e\x32\x43','\x57\x37\x46\x63\x4a\x49\x46\x63\x4e\x43\x6f\x4c\x57\x35\x50\x56\x75\x61','\x43\x67\x35\x2f\x57\x50\x4e\x64\x4e\x4b\x6c\x63\x54\x57','\x57\x50\x68\x63\x50\x48\x47\x68\x57\x50\x37\x63\x50\x73\x56\x63\x4d\x43\x6b\x74\x6b\x75\x4e\x63\x49\x47','\x57\x50\x6c\x63\x4b\x64\x42\x63\x4e\x38\x6b\x69\x57\x50\x46\x64\x54\x66\x38','\x72\x43\x6b\x4c\x72\x4a\x79\x74\x57\x52\x74\x64\x56\x75\x38','\x72\x53\x6f\x4b\x57\x37\x76\x47\x78\x6d\x6f\x59\x57\x4f\x52\x64\x48\x57','\x43\x43\x6b\x44\x57\x37\x54\x66','\x76\x4b\x46\x63\x55\x6d\x6b\x38\x57\x51\x4f','\x6a\x65\x6c\x63\x4c\x53\x6b\x6a\x57\x36\x48\x4e\x57\x4f\x64\x64\x50\x57','\x57\x36\x64\x64\x54\x30\x33\x64\x52\x59\x4b','\x78\x4e\x4a\x64\x4b\x6d\x6f\x52\x69\x43\x6f\x57\x57\x37\x4c\x46','\x76\x75\x65\x55\x57\x4f\x65','\x77\x43\x6f\x34\x57\x51\x75\x63\x57\x34\x46\x64\x52\x4d\x43\x58','\x57\x36\x56\x63\x49\x53\x6b\x38\x57\x51\x65\x39\x57\x51\x30\x73\x57\x50\x78\x64\x52\x38\x6f\x50','\x57\x4f\x78\x64\x4d\x64\x78\x63\x4e\x63\x70\x64\x48\x61\x37\x63\x4e\x47','\x57\x36\x37\x64\x49\x6d\x6b\x77\x41\x68\x52\x64\x52\x53\x6f\x51\x77\x47','\x57\x37\x4a\x64\x47\x53\x6b\x6c\x44\x76\x70\x64\x51\x53\x6f\x4f\x76\x47','\x57\x50\x33\x64\x4b\x6d\x6f\x51\x57\x37\x61','\x57\x51\x64\x64\x4d\x62\x75','\x69\x4b\x44\x76','\x76\x6d\x6b\x56\x57\x37\x38\x6a\x6d\x58\x6c\x63\x48\x43\x6b\x48','\x7a\x6d\x6b\x6b\x57\x37\x48\x6e\x57\x51\x66\x44\x57\x4f\x76\x54','\x57\x36\x52\x64\x4d\x6d\x6b\x76\x70\x43\x6f\x56\x6f\x57','\x6c\x4b\x62\x70\x57\x4f\x70\x63\x4a\x77\x6c\x63\x4b\x38\x6b\x67','\x45\x6d\x6b\x41\x6f\x78\x54\x43\x6c\x4c\x70\x63\x4e\x61','\x57\x34\x46\x64\x4c\x43\x6b\x6a\x41\x77\x53','\x57\x52\x6a\x69\x57\x50\x37\x64\x54\x61\x68\x63\x4e\x43\x6b\x6a\x6f\x47','\x6f\x32\x6e\x6d\x57\x50\x74\x64\x4c\x78\x75','\x57\x36\x42\x63\x4e\x59\x42\x63\x47\x61','\x41\x53\x6b\x6e\x6a\x33\x39\x67','\x74\x6d\x6b\x48\x57\x50\x43\x45\x57\x37\x4a\x64\x49\x30\x31\x4f','\x57\x50\x50\x68\x6a\x61','\x46\x53\x6b\x7a\x57\x37\x65','\x57\x50\x6c\x64\x4d\x74\x78\x63\x49\x32\x42\x64\x48\x62\x6c\x63\x4a\x47','\x62\x6d\x6f\x37\x57\x51\x68\x64\x49\x6d\x6b\x39','\x6a\x38\x6f\x42\x57\x4f\x74\x64\x4f\x57','\x57\x52\x2f\x63\x4e\x64\x74\x64\x52\x38\x6f\x33','\x6c\x43\x6b\x59\x7a\x4b\x4c\x59\x57\x52\x38','\x79\x33\x78\x63\x4c\x75\x6a\x32\x57\x4f\x57','\x66\x53\x6b\x76\x76\x4e\x6d\x74\x57\x51\x78\x64\x51\x30\x4b','\x57\x52\x35\x6c\x57\x52\x50\x31\x78\x64\x75','\x65\x76\x33\x63\x48\x53\x6b\x50\x57\x37\x72\x36\x57\x50\x74\x64\x52\x47','\x65\x6d\x6f\x37\x57\x52\x71','\x57\x37\x71\x4b\x57\x37\x76\x79\x57\x36\x39\x79','\x57\x50\x5a\x63\x48\x63\x42\x63\x56\x38\x6b\x75\x57\x4f\x52\x64\x4f\x66\x79','\x66\x53\x6f\x4c\x57\x52\x71\x46\x57\x35\x52\x64\x51\x77\x76\x58','\x6a\x4c\x48\x45','\x57\x51\x78\x64\x4d\x72\x7a\x32\x57\x52\x58\x69\x57\x52\x66\x73','\x61\x6d\x6b\x38\x76\x78\x4f\x73\x57\x52\x64\x64\x55\x4c\x34','\x57\x52\x68\x64\x4a\x38\x6f\x36\x57\x37\x57\x45\x57\x52\x4b\x46\x57\x52\x79','\x63\x53\x6b\x66\x46\x6d\x6f\x68','\x7a\x6d\x6b\x42\x57\x36\x7a\x62\x57\x51\x58\x6f','\x6d\x38\x6b\x47\x57\x34\x78\x63\x4c\x67\x4b','\x67\x71\x38\x56\x57\x36\x4b\x46\x57\x34\x4b','\x6f\x75\x46\x63\x4a\x6d\x6b\x75\x57\x36\x35\x4b\x57\x4f\x74\x64\x4c\x61','\x73\x53\x6b\x4c\x57\x37\x6e\x70\x57\x4f\x64\x63\x56\x5a\x58\x33\x57\x36\x64\x63\x4a\x38\x6b\x30\x57\x4f\x65\x4a','\x6b\x38\x6b\x44\x6d\x64\x35\x6e\x6c\x31\x4a\x64\x4c\x61','\x6a\x38\x6b\x66\x44\x53\x6f\x6d\x57\x51\x79\x48\x57\x51\x5a\x64\x52\x57','\x67\x43\x6f\x46\x68\x6d\x6b\x70\x57\x34\x7a\x78\x66\x43\x6b\x47','\x57\x37\x4e\x64\x48\x6d\x6b\x45\x7a\x61','\x62\x53\x6b\x2f\x72\x32\x69\x69\x57\x52\x57','\x57\x52\x52\x64\x4b\x5a\x42\x63\x53\x68\x64\x64\x48\x62\x74\x63\x4a\x47','\x45\x53\x6b\x67\x57\x37\x4f','\x79\x73\x4c\x63','\x57\x51\x5a\x64\x4d\x53\x6f\x50\x57\x36\x43\x75\x57\x51\x71\x6e\x57\x52\x38','\x57\x4f\x74\x64\x4b\x6d\x6f\x51\x57\x35\x57\x63\x57\x51\x71\x6c\x57\x52\x38','\x57\x52\x52\x63\x4e\x43\x6f\x53\x62\x47','\x69\x65\x58\x72\x57\x34\x42\x64\x47\x59\x47','\x45\x38\x6b\x42\x57\x37\x75','\x44\x43\x6f\x70\x57\x51\x76\x66\x76\x38\x6f\x34\x57\x36\x7a\x6f','\x57\x51\x70\x63\x4e\x64\x2f\x64\x56\x53\x6f\x42\x62\x43\x6b\x66\x57\x37\x53','\x6d\x38\x6b\x56\x45\x47','\x65\x6d\x6b\x35\x71\x64\x79\x65\x57\x52\x37\x64\x4f\x66\x75','\x57\x37\x37\x63\x4e\x5a\x56\x63\x4b\x38\x6f\x59\x57\x37\x79','\x57\x50\x6e\x7a\x57\x37\x70\x63\x53\x53\x6f\x37\x44\x6d\x6b\x45\x70\x38\x6b\x4b\x77\x58\x6c\x64\x50\x4b\x65','\x57\x51\x6c\x63\x47\x5a\x78\x64\x51\x71','\x57\x36\x52\x64\x47\x53\x6b\x77\x6d\x43\x6f\x56\x6c\x4e\x34\x36','\x57\x52\x6c\x63\x49\x53\x6b\x46\x79\x4b\x57\x36\x72\x38\x6b\x30','\x42\x31\x50\x41\x57\x35\x68\x64\x48\x5a\x4e\x64\x48\x38\x6f\x76','\x57\x37\x2f\x64\x4c\x4e\x50\x52\x57\x34\x50\x45','\x62\x53\x6f\x46\x46\x61','\x57\x35\x78\x64\x4a\x77\x2f\x64\x47\x61\x53\x65','\x61\x32\x35\x4f\x6b\x43\x6f\x33\x57\x50\x4f','\x57\x52\x43\x57\x57\x34\x56\x63\x55\x57','\x6b\x4b\x50\x43\x57\x34\x42\x64\x4b\x57','\x6e\x38\x6b\x4f\x44\x30\x58\x50\x57\x52\x58\x36\x57\x36\x53','\x57\x50\x35\x69\x6a\x68\x70\x63\x54\x53\x6b\x78\x57\x36\x39\x78','\x6c\x74\x44\x42\x57\x4f\x56\x64\x4c\x68\x37\x63\x4a\x49\x4b','\x43\x43\x6f\x51\x57\x36\x76\x6d\x78\x43\x6f\x4f\x57\x50\x37\x64\x4a\x47','\x44\x6d\x6f\x6a\x57\x52\x43\x65\x76\x6d\x6f\x31\x57\x36\x61','\x57\x37\x69\x47\x57\x37\x6e\x66\x57\x37\x6a\x71\x6d\x31\x69','\x6d\x6d\x6f\x71\x57\x50\x64\x64\x56\x43\x6b\x45\x57\x50\x69','\x6d\x6d\x6b\x38\x70\x62\x37\x63\x52\x53\x6b\x58','\x41\x68\x6a\x41\x57\x50\x52\x64\x4e\x4d\x68\x64\x4d\x5a\x61','\x69\x78\x4c\x6b','\x57\x36\x6e\x45\x57\x35\x47','\x57\x52\x52\x63\x47\x6d\x6b\x66','\x62\x6d\x6f\x53\x57\x51\x58\x72\x63\x47\x4e\x63\x4e\x43\x6b\x6c\x79\x43\x6f\x5a','\x57\x52\x54\x6d\x57\x51\x7a\x53','\x79\x68\x42\x64\x47\x6d\x6f\x68\x6a\x53\x6f\x51\x57\x36\x66\x46','\x43\x31\x4a\x63\x47\x6d\x6b\x6e\x66\x6d\x6f\x48\x57\x36\x34\x44','\x57\x51\x69\x58\x57\x35\x5a\x63\x48\x53\x6f\x50\x73\x75\x39\x38','\x73\x53\x6f\x48\x57\x36\x76\x6d\x78\x43\x6f\x4f\x57\x50\x37\x64\x4a\x47','\x6f\x78\x46\x64\x48\x47\x4e\x63\x4b\x32\x2f\x64\x50\x47','\x57\x36\x4e\x64\x4b\x57\x76\x30\x57\x51\x54\x4b\x57\x37\x48\x6d','\x44\x4c\x33\x63\x4b\x6d\x6b\x48\x65\x38\x6f\x37\x57\x37\x79\x44','\x57\x51\x33\x64\x54\x4e\x58\x42\x65\x75\x70\x64\x48\x6d\x6b\x76','\x63\x53\x6f\x79\x61\x6d\x6f\x63\x57\x50\x38','\x6c\x53\x6b\x70\x42\x6d\x6b\x63\x57\x51\x30\x50\x57\x51\x4e\x64\x56\x47','\x57\x52\x6a\x43\x57\x51\x6e\x4b\x75\x63\x57','\x57\x36\x68\x64\x49\x43\x6b\x46\x6f\x53\x6b\x51\x70\x78\x34\x38','\x57\x50\x6a\x6e\x6e\x61','\x57\x37\x65\x34\x57\x37\x35\x6a\x57\x36\x71','\x77\x65\x2f\x63\x53\x57','\x57\x51\x5a\x64\x4b\x47\x7a\x32\x57\x52\x30','\x45\x38\x6f\x66\x57\x52\x38\x62','\x63\x6d\x6b\x52\x72\x61','\x57\x34\x71\x6e\x57\x51\x78\x64\x4a\x43\x6b\x34\x6e\x53\x6f\x42\x66\x47','\x6f\x53\x6b\x45\x41\x53\x6f\x6c\x57\x51\x30\x48','\x57\x4f\x7a\x69\x57\x50\x74\x64\x4b\x58\x46\x63\x49\x43\x6b\x44\x6b\x57','\x71\x53\x6b\x54\x57\x36\x57\x6d\x6b\x62\x71','\x57\x52\x68\x63\x47\x6d\x6b\x68\x6e\x4c\x38\x50','\x63\x77\x48\x4c\x6b\x43\x6f\x4e','\x57\x50\x37\x63\x4c\x74\x68\x63\x47\x53\x6b\x69\x57\x50\x71','\x77\x6d\x6b\x33\x57\x36\x4f','\x77\x53\x6b\x74\x71\x43\x6b\x41\x57\x35\x69\x6b\x71\x6d\x6b\x65\x57\x51\x37\x64\x4b\x73\x37\x64\x55\x63\x75','\x57\x36\x5a\x64\x4e\x65\x50\x64','\x78\x53\x6b\x65\x6f\x38\x6f\x59\x70\x43\x6f\x75\x57\x34\x4e\x64\x4a\x53\x6b\x76','\x71\x53\x6f\x30\x43\x66\x5a\x63\x4a\x38\x6f\x73\x57\x36\x70\x63\x49\x61','\x73\x6d\x6f\x57\x57\x37\x6a\x58\x71\x43\x6f\x32','\x6e\x38\x6f\x2b\x6f\x62\x74\x63\x51\x43\x6b\x47\x57\x50\x64\x64\x54\x57','\x57\x4f\x64\x64\x55\x4b\x72\x71\x57\x34\x5a\x64\x52\x32\x70\x63\x47\x47','\x44\x32\x70\x64\x48\x53\x6f\x6c\x70\x6d\x6f\x4b','\x57\x36\x56\x64\x4e\x43\x6b\x6d\x6e\x53\x6f\x4c\x6a\x33\x34\x49','\x6b\x31\x54\x6c\x57\x34\x2f\x64\x49\x74\x2f\x64\x4b\x53\x6b\x62','\x6f\x53\x6b\x36\x6d\x72\x37\x63\x56\x47','\x57\x52\x6a\x73\x57\x50\x33\x64\x55\x61\x68\x63\x49\x61','\x45\x4a\x6a\x6c','\x62\x32\x76\x53\x6b\x61','\x57\x52\x6c\x63\x49\x64\x64\x63\x4c\x43\x6f\x31\x57\x37\x66\x4b','\x6c\x6d\x6b\x37\x6f\x48\x37\x63\x52\x53\x6b\x58\x57\x35\x78\x64\x55\x47','\x57\x35\x64\x64\x53\x31\x76\x71\x57\x34\x64\x64\x53\x47','\x57\x36\x64\x64\x4a\x6d\x6b\x6d\x6f\x53\x6f\x2b\x69\x68\x69\x52','\x79\x74\x66\x61','\x6d\x43\x6b\x58\x6f\x62\x78\x63\x51\x6d\x6b\x49\x57\x35\x68\x64\x51\x47','\x6d\x6d\x6b\x74\x57\x34\x5a\x63\x50\x76\x57\x56\x57\x36\x57\x58','\x72\x53\x6f\x4b\x57\x37\x4b','\x6f\x38\x6b\x49\x43\x30\x76\x56','\x6f\x38\x6b\x37\x6d\x62\x52\x63\x55\x6d\x6b\x50\x57\x34\x71','\x57\x52\x31\x64\x57\x50\x74\x64\x4b\x58\x46\x63\x49\x43\x6b\x44\x6b\x57','\x57\x34\x37\x64\x51\x4b\x31\x76\x57\x34\x5a\x64\x52\x47','\x57\x52\x5a\x63\x47\x6d\x6b\x66\x6a\x47','\x57\x52\x50\x69\x6f\x59\x30','\x6d\x32\x46\x64\x4a\x71\x52\x63\x47\x33\x65','\x6a\x38\x6f\x72\x57\x50\x42\x64\x51\x38\x6b\x63','\x42\x33\x37\x64\x4d\x53\x6f\x67','\x57\x4f\x37\x64\x4b\x5a\x5a\x63\x4c\x32\x42\x64\x4b\x61\x64\x63\x4e\x57','\x67\x38\x6f\x79\x68\x43\x6f\x76\x57\x4f\x6e\x75\x65\x43\x6b\x36','\x57\x36\x68\x64\x48\x6d\x6b\x6b\x7a\x71','\x46\x68\x68\x63\x4a\x76\x35\x59\x57\x50\x43','\x6c\x32\x6e\x4d\x6b\x71','\x57\x51\x74\x64\x48\x6d\x6b\x6c\x46\x38\x6f\x4e\x69\x67\x57\x39','\x43\x4d\x78\x63\x4b\x66\x39\x38\x57\x50\x79','\x73\x33\x2f\x63\x48\x32\x6a\x47\x57\x4f\x48\x76\x57\x51\x65','\x57\x36\x6c\x64\x48\x66\x66\x6f\x57\x51\x4e\x63\x53\x38\x6f\x61\x57\x52\x34','\x57\x37\x2f\x63\x4b\x5a\x53','\x6d\x6d\x6b\x50\x43\x65\x76\x56','\x57\x52\x56\x64\x4d\x38\x6f\x50\x57\x37\x61\x63','\x69\x4c\x5a\x63\x4c\x47','\x57\x34\x64\x64\x49\x33\x6c\x64\x48\x61','\x57\x51\x74\x63\x4e\x43\x6b\x7a\x6b\x31\x71\x38','\x57\x34\x4e\x64\x51\x75\x75','\x6f\x38\x6b\x64\x45\x38\x6b\x6f\x57\x36\x6d\x50\x57\x52\x2f\x63\x55\x57','\x71\x6d\x6f\x53\x57\x36\x39\x48','\x45\x65\x4e\x63\x47\x6d\x6b\x62\x64\x38\x6f\x4d\x57\x36\x69\x75','\x6a\x71\x56\x63\x4e\x43\x6b\x43\x63\x43\x6f\x66\x57\x37\x4b\x36','\x57\x52\x7a\x78\x57\x51\x44\x4c','\x6b\x43\x6f\x41\x57\x50\x47\x4b\x44\x6d\x6f\x41\x57\x34\x34','\x78\x75\x46\x63\x52\x47','\x57\x34\x64\x64\x4b\x4c\x7a\x4b\x57\x4f\x53','\x44\x68\x74\x63\x48\x65\x35\x47','\x57\x52\x76\x6a\x57\x4f\x71','\x57\x52\x53\x45\x57\x50\x5a\x64\x53\x72\x69','\x74\x66\x30\x55','\x63\x62\x38\x37\x57\x36\x38\x76\x57\x35\x43\x4b\x57\x51\x38','\x57\x36\x6c\x64\x4f\x32\x58\x76\x67\x31\x37\x63\x48\x43\x6b\x6c','\x68\x6d\x6f\x79\x43\x53\x6f\x71','\x66\x57\x38\x56\x57\x36\x4c\x71\x57\x34\x79\x59\x57\x36\x4f','\x71\x38\x6f\x58\x41\x76\x46\x63\x48\x43\x6f\x6f','\x57\x52\x56\x63\x4d\x6d\x6f\x78\x72\x4c\x5a\x64\x4a\x6d\x6f\x67\x73\x53\x6b\x66','\x57\x34\x53\x43\x57\x51\x5a\x64\x50\x53\x6b\x55\x6e\x57','\x70\x43\x6b\x50\x43\x65\x75','\x74\x65\x30\x4e\x57\x50\x44\x36\x57\x4f\x69\x74\x57\x37\x57','\x6e\x43\x6f\x45\x42\x6d\x6f\x38\x68\x53\x6f\x4b\x57\x36\x74\x64\x4b\x47','\x6b\x6d\x6b\x4e\x7a\x4b\x4c\x39\x57\x52\x7a\x52','\x57\x36\x6c\x64\x4b\x75\x6e\x63\x57\x51\x47','\x72\x33\x4a\x64\x4b\x6d\x6f\x68','\x57\x36\x64\x64\x53\x53\x6b\x41\x6a\x53\x6b\x51\x70\x78\x34\x38','\x57\x36\x5a\x64\x4f\x77\x50\x44\x64\x71','\x79\x53\x6f\x7a\x57\x52\x38','\x6b\x53\x6f\x75\x57\x4f\x69','\x6f\x38\x6b\x33\x79\x75\x4c\x55\x57\x52\x30\x2f\x57\x37\x4b','\x57\x50\x4e\x63\x56\x59\x64\x63\x4a\x57','\x69\x59\x46\x64\x4b\x48\x69\x4a\x57\x51\x48\x69\x57\x52\x79\x5a\x57\x4f\x75\x4d','\x57\x34\x4e\x64\x47\x53\x6b\x61\x7a\x61','\x57\x50\x44\x42\x57\x51\x4a\x64\x53\x6d\x6b\x49\x63\x6d\x6f\x75\x6d\x71','\x57\x37\x74\x64\x47\x76\x7a\x6f\x57\x52\x78\x63\x53\x71','\x7a\x53\x6f\x6e\x57\x51\x6d\x6d\x71\x6d\x6f\x33\x57\x36\x61','\x68\x43\x6f\x65\x7a\x53\x6f\x62\x62\x6d\x6f\x36\x57\x37\x74\x64\x51\x61','\x57\x37\x4b\x4b\x57\x36\x54\x6f\x57\x36\x76\x68','\x57\x37\x74\x64\x4a\x77\x6a\x4b','\x7a\x43\x6b\x71\x6f\x33\x62\x41\x70\x76\x46\x63\x4a\x61','\x45\x78\x68\x63\x4b\x61','\x6c\x6d\x6b\x67\x46\x43\x6f\x62\x57\x52\x43\x56\x57\x51\x6c\x64\x54\x71','\x57\x51\x5a\x63\x48\x38\x6f\x52\x61\x53\x6f\x44\x57\x4f\x65','\x57\x51\x78\x63\x4a\x6d\x6b\x6d\x6d\x66\x38\x4f\x72\x53\x6b\x34','\x78\x43\x6f\x32\x41\x31\x4a\x63\x4b\x6d\x6f\x69','\x42\x59\x6a\x72','\x6f\x53\x6b\x5a\x7a\x65\x58\x31\x57\x52\x54\x2b\x57\x36\x57','\x6f\x65\x46\x63\x4b\x53\x6b\x66\x57\x37\x76\x42\x57\x4f\x74\x64\x52\x71','\x61\x6d\x6f\x47\x57\x51\x7a\x76\x43\x75\x52\x63\x4d\x43\x6b\x54\x44\x43\x6f\x74\x57\x51\x68\x64\x4a\x47','\x7a\x66\x5a\x63\x4d\x6d\x6b\x6e\x61\x38\x6f\x38\x57\x36\x79\x43','\x67\x6d\x6f\x41\x57\x50\x78\x64\x48\x38\x6b\x63\x57\x4f\x2f\x64\x50\x59\x69','\x57\x37\x74\x63\x49\x64\x52\x63\x4d\x71','\x57\x36\x5a\x64\x4a\x6d\x6b\x6c','\x57\x35\x4a\x64\x50\x31\x58\x72\x57\x37\x57','\x6d\x6d\x6f\x45\x57\x52\x71\x65\x75\x53\x6f\x32\x57\x37\x4f','\x43\x4b\x74\x63\x51\x38\x6b\x48\x57\x35\x6a\x6b\x57\x52\x53','\x57\x37\x48\x76\x57\x34\x33\x63\x52\x65\x30\x49','\x74\x53\x6f\x30\x57\x37\x72\x53\x78\x6d\x6f\x2b\x57\x34\x56\x64\x48\x47','\x68\x33\x48\x57\x6a\x43\x6f\x36\x57\x4f\x4b','\x57\x51\x39\x74\x57\x4f\x6c\x64\x53\x57\x52\x63\x4e\x71','\x57\x37\x34\x2f\x57\x36\x76\x61\x57\x37\x76\x72\x44\x4b\x61','\x6b\x6d\x6b\x6f\x46\x61','\x44\x4e\x78\x63\x4c\x57\x54\x2b\x57\x4f\x35\x74\x57\x52\x61','\x57\x36\x6c\x64\x4e\x38\x6b\x78\x6d\x47','\x57\x35\x52\x64\x53\x32\x72\x55\x57\x35\x4b','\x77\x48\x38\x34\x57\x37\x4f\x76\x57\x35\x44\x33\x57\x52\x47','\x6a\x6d\x6f\x43\x57\x50\x33\x64\x51\x57','\x61\x43\x6f\x65\x7a\x43\x6f\x78\x63\x6d\x6f\x4c','\x57\x36\x6e\x67\x57\x34\x4b','\x57\x52\x6c\x63\x4c\x53\x6f\x54\x67\x43\x6f\x41\x57\x4f\x75','\x46\x31\x4a\x63\x48\x57','\x57\x36\x4a\x64\x48\x76\x62\x6f\x57\x52\x74\x63\x55\x6d\x6b\x62\x57\x52\x38','\x57\x50\x6c\x63\x47\x49\x4a\x63\x4b\x38\x6b\x65\x57\x4f\x30','\x57\x36\x52\x64\x4e\x65\x4f','\x57\x51\x35\x7a\x6d\x77\x62\x41\x61\x67\x5a\x63\x54\x57','\x57\x4f\x76\x69\x69\x4e\x2f\x63\x50\x43\x6b\x71\x57\x37\x4f','\x61\x6d\x6f\x64\x68\x6d\x6f\x68','\x57\x35\x69\x67\x57\x52\x70\x64\x52\x38\x6b\x54\x6b\x43\x6f\x62\x62\x61','\x46\x32\x78\x63\x4a\x4b\x4c\x32\x57\x4f\x4b','\x6a\x53\x6b\x4c\x75\x68\x6d','\x68\x4d\x76\x48\x79\x6d\x6b\x30\x57\x4f\x68\x63\x51\x76\x4b','\x79\x63\x35\x63\x6a\x43\x6b\x37\x57\x51\x44\x46\x57\x52\x53','\x45\x4c\x5a\x63\x47\x6d\x6b\x41\x63\x43\x6f\x52','\x57\x36\x70\x64\x48\x67\x68\x63\x53\x38\x6b\x30\x6d\x38\x6b\x42\x57\x36\x58\x42\x61\x53\x6b\x4c','\x72\x53\x6f\x54\x41\x4c\x65','\x57\x52\x44\x6f\x57\x50\x37\x64\x56\x47','\x6c\x6d\x6b\x4a\x43\x31\x6a\x35\x57\x51\x54\x53\x57\x37\x30','\x6c\x38\x6f\x43\x57\x50\x38','\x43\x53\x6b\x62\x57\x36\x62\x41\x57\x51\x54\x6d\x57\x50\x38','\x75\x38\x6f\x64\x57\x52\x75\x61','\x57\x4f\x4a\x63\x4a\x49\x4e\x63\x4d\x6d\x6b\x69\x57\x4f\x37\x64\x55\x57','\x57\x36\x68\x63\x50\x74\x46\x63\x4b\x43\x6f\x59\x57\x36\x50\x56\x74\x47','\x74\x6d\x6f\x47\x79\x68\x5a\x63\x4b\x38\x6f\x70\x57\x37\x46\x63\x47\x71','\x57\x36\x35\x56\x57\x34\x37\x63\x50\x47','\x66\x72\x47\x32\x57\x37\x47\x74\x57\x35\x61','\x63\x53\x6f\x57\x57\x51\x57\x74\x57\x35\x42\x64\x53\x32\x66\x35','\x45\x67\x42\x63\x48\x47','\x71\x30\x6a\x51\x57\x51\x72\x62\x57\x50\x75\x46\x57\x4f\x78\x64\x4c\x38\x6f\x43\x57\x4f\x48\x31','\x6c\x6d\x6f\x41\x57\x50\x78\x64\x51\x38\x6b\x63','\x57\x37\x68\x63\x4a\x59\x42\x63\x47\x6d\x6f\x50\x57\x37\x6d','\x57\x51\x64\x64\x4d\x71\x38\x5a\x57\x51\x4c\x4c\x57\x52\x4c\x72','\x70\x53\x6f\x59\x57\x52\x69\x31\x57\x36\x75','\x69\x38\x6f\x72\x57\x50\x78\x64\x48\x38\x6b\x63\x57\x4f\x2f\x64\x50\x59\x69','\x6d\x43\x6f\x43\x57\x4f\x56\x64\x51\x57','\x65\x48\x53\x56','\x65\x4b\x74\x63\x4f\x6d\x6b\x6c\x57\x35\x79','\x71\x6d\x6f\x54\x41\x47','\x57\x4f\x68\x64\x4d\x64\x42\x63\x53\x68\x64\x64\x48\x62\x74\x63\x4a\x47','\x57\x52\x4b\x41\x6d\x74\x7a\x42\x61\x33\x33\x63\x50\x47','\x78\x38\x6b\x32\x57\x37\x4f\x61\x6e\x71','\x57\x52\x62\x63\x57\x50\x37\x64\x56\x72\x64\x63\x4b\x47','\x71\x53\x6f\x4d\x42\x4c\x64\x63\x47\x38\x6f\x69','\x75\x66\x30\x54\x57\x4f\x44\x36\x57\x4f\x6d','\x64\x53\x6f\x6f\x66\x43\x6f\x67\x57\x50\x75','\x45\x43\x6f\x62\x57\x51\x65\x78\x74\x53\x6f\x56\x57\x37\x66\x64','\x41\x53\x6b\x6d\x6a\x4e\x54\x6c','\x63\x71\x34\x55\x57\x37\x71\x45\x57\x34\x6d','\x71\x38\x6f\x52\x41\x4c\x56\x63\x48\x43\x6f\x42\x57\x36\x70\x63\x4b\x61','\x57\x50\x42\x63\x49\x73\x5a\x63\x4b\x47','\x57\x52\x70\x63\x49\x6d\x6b\x46\x6a\x30\x34\x59\x77\x6d\x6b\x34','\x57\x51\x33\x64\x4d\x53\x6f\x49\x57\x37\x61\x73\x57\x51\x6d\x42\x57\x52\x34','\x57\x52\x61\x57\x57\x34\x57','\x6a\x33\x37\x64\x50\x64\x68\x63\x4c\x47','\x57\x52\x62\x67\x6e\x68\x6d','\x57\x36\x68\x64\x50\x33\x4b','\x75\x4e\x2f\x63\x48\x30\x34','\x79\x38\x6b\x44\x57\x37\x76\x6c\x57\x51\x43','\x57\x4f\x37\x63\x4b\x74\x78\x64\x56\x53\x6f\x57\x62\x43\x6b\x62','\x46\x68\x78\x63\x4c\x31\x4c\x36\x57\x50\x48\x4b\x57\x51\x65','\x6f\x72\x75\x34\x57\x37\x47','\x6b\x6d\x6b\x6f\x46\x6d\x6f\x52\x57\x52\x61\x31\x57\x52\x4a\x64\x56\x47','\x57\x50\x64\x63\x48\x74\x42\x63\x48\x6d\x6b\x6f\x57\x50\x52\x64\x4b\x76\x79','\x76\x53\x6b\x38\x57\x36\x4f'];_0x50af=function(){return _0x2e5b95;};return _0x50af();}export const evolutionGraphEdgeKinds=[_0x57dfc4(0x24f,'\x33\x78\x28\x74')+'\x6f\x6e',_0x57dfc4(0x233,'\x47\x72\x69\x74')+_0x57dfc4(0x20a,'\x71\x26\x72\x7a'),_0x57dfc4(0x18a,'\x5d\x69\x24\x52')+'\x64',_0x57dfc4(0x247,'\x41\x77\x51\x4f'),_0x57dfc4(0x235,'\x71\x26\x72\x7a')];export const evolutionGraphProvenanceKinds=[_0x57dfc4(0x250,'\x33\x78\x28\x74')+'\x6e\x74',_0x57dfc4(0x1f1,'\x75\x47\x72\x24'),_0x57dfc4(0x128,'\x47\x72\x69\x74'),_0x57dfc4(0xf8,'\x52\x24\x70\x42'),_0x57dfc4(0x21f,'\x4c\x73\x76\x58'),_0x57dfc4(0x1cb,'\x4b\x71\x33\x68'),_0x57dfc4(0x108,'\x5a\x44\x28\x70')+_0x57dfc4(0x1fc,'\x35\x26\x78\x31'),_0x57dfc4(0x15f,'\x38\x49\x4a\x66'),_0x57dfc4(0x171,'\x52\x24\x70\x42')];export const evolutionGraphNodeKind=z[_0x57dfc4(0xf5,'\x46\x52\x25\x77')](evolutionGraphNodeKinds);export const evolutionGraphEdgeKind=z[_0x57dfc4(0x1a4,'\x25\x6b\x77\x6f')](evolutionGraphEdgeKinds);export const evolutionGraphProvenanceKind=z[_0x57dfc4(0x1a4,'\x25\x6b\x77\x6f')](evolutionGraphProvenanceKinds);export const evolutionGraphNodeRef=z[_0x57dfc4(0x1b8,'\x4e\x50\x34\x38')]()[_0x57dfc4(0x20c,'\x51\x62\x71\x68')](0x8b*-0x2c+0x2*-0x4f0+0x4d3*0x7);export const evolutionGraphArtifactRef=z[_0x57dfc4(0x115,'\x71\x72\x47\x26')]({'\x6b\x69\x6e\x64':z[_0x57dfc4(0x114,'\x6c\x45\x66\x7a')]([_0x57dfc4(0x21d,'\x63\x35\x6a\x69'),_0x57dfc4(0x245,'\x76\x53\x5a\x5d'),_0x57dfc4(0x118,'\x62\x52\x47\x4f')+'\x6e\x74',_0x57dfc4(0x1c0,'\x46\x52\x25\x77'),_0x57dfc4(0x1a2,'\x61\x7a\x78\x56')+_0x57dfc4(0x232,'\x47\x72\x69\x74'),'\x70\x6c\x75\x67\x69\x6e\x5f\x72'+_0x57dfc4(0x22f,'\x2a\x72\x72\x4c')]),'\x72\x65\x66':z[_0x57dfc4(0x14a,'\x21\x55\x72\x5b')]()[_0x57dfc4(0x184,'\x41\x77\x51\x4f')](-0x106*0x25+0x6*-0x56c+0x4667),'\x73\x68\x61\x32\x35\x36':sha256Hash[_0x57dfc4(0xff,'\x51\x62\x71\x68')]()});export const evolutionGraphMetricValue=z[_0x57dfc4(0x1c6,'\x6b\x49\x68\x48')]({'\x6d\x65\x74\x72\x69\x63':z[_0x57dfc4(0x212,'\x42\x73\x46\x32')]()[_0x57dfc4(0x119,'\x6a\x34\x4f\x64')](-0x5*-0x32f+-0x1*-0x1bcd+-0x2bb7),'\x76\x61\x6c\x75\x65':z[_0x57dfc4(0x16b,'\x71\x28\x41\x55')](),'\x75\x6e\x69\x74':z[_0x57dfc4(0x123,'\x34\x65\x31\x77')]()[_0x57dfc4(0x223,'\x42\x73\x46\x32')](0x1*0xf3b+-0x5ca+-0x970)[_0x57dfc4(0x103,'\x61\x4b\x25\x5d')](),'\x64\x69\x72\x65\x63\x74\x69\x6f\x6e':z[_0x57dfc4(0x213,'\x2a\x59\x4f\x5e')]([_0x57dfc4(0x20f,'\x25\x6b\x77\x6f')+_0x57dfc4(0x1d9,'\x71\x68\x6a\x68'),_0x57dfc4(0x101,'\x7a\x54\x42\x6b')+_0x57dfc4(0x1fd,'\x62\x52\x47\x4f'),_0x57dfc4(0x227,'\x65\x70\x41\x59')])[_0x57dfc4(0x23e,'\x46\x52\x25\x77')](_0x57dfc4(0x1cf,'\x67\x45\x2a\x66')+_0x57dfc4(0xf9,'\x42\x73\x46\x32')),'\x74\x61\x72\x67\x65\x74':z[_0x57dfc4(0x217,'\x6c\x45\x66\x7a')]()[_0x57dfc4(0x103,'\x61\x4b\x25\x5d')]()});function _0x57fd(_0x51f347,_0x346019){_0x51f347=_0x51f347-(0x1c61*-0x1+-0x94*0x3a+0x1f6c*0x2);const _0x53e668=_0x50af();let _0x40a560=_0x53e668[_0x51f347];if(_0x57fd['\x58\x6f\x74\x55\x64\x65']===undefined){var _0x4a522b=function(_0x473b63){const _0x344549='\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 _0x4f6ce9='',_0x58a5db='';for(let _0x178a8b=-0x4ad+0x3cb*0x7+0xa0*-0x23,_0x7fc0d6,_0x525deb,_0x118ca4=0x24aa+-0x10ad+-0x13fd;_0x525deb=_0x473b63['\x63\x68\x61\x72\x41\x74'](_0x118ca4++);~_0x525deb&&(_0x7fc0d6=_0x178a8b%(-0x5*-0x4da+-0x1f38+0x6fa*0x1)?_0x7fc0d6*(0xcb*0x2a+-0x1*0x8c3+-0x184b)+_0x525deb:_0x525deb,_0x178a8b++%(-0x1*-0xcfc+-0x1*-0xbee+-0x18e6))?_0x4f6ce9+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x1288*0x1+-0x20c1+0x3448&_0x7fc0d6>>(-(0x1399*0x1+-0x13c1+0x2a)*_0x178a8b&-0x31*0xa4+-0x1*0x25e1+0x454b)):-0x1f9e+0x1208+0xd96){_0x525deb=_0x344549['\x69\x6e\x64\x65\x78\x4f\x66'](_0x525deb);}for(let _0x48bde0=-0x7fc+0x5d1+-0x3*-0xb9,_0x3d39c5=_0x4f6ce9['\x6c\x65\x6e\x67\x74\x68'];_0x48bde0<_0x3d39c5;_0x48bde0++){_0x58a5db+='\x25'+('\x30\x30'+_0x4f6ce9['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x48bde0)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x4e9+-0x3*0x827+0xeb7*0x2))['\x73\x6c\x69\x63\x65'](-(-0xff3+0xaff+-0x2*-0x27b));}return decodeURIComponent(_0x58a5db);};const _0x4a726c=function(_0x56b67f,_0x431dbd){let _0x519ebe=[],_0x4fe44c=0xe*-0x2c8+-0x1b3*-0x9+0x17a5*0x1,_0x260eea,_0x448c74='';_0x56b67f=_0x4a522b(_0x56b67f);let _0x2b8425;for(_0x2b8425=-0x1e58*0x1+0x428*-0x2+0x26a8;_0x2b8425<-0x2121+0x24a9*0x1+-0x144*0x2;_0x2b8425++){_0x519ebe[_0x2b8425]=_0x2b8425;}for(_0x2b8425=-0xfec*0x2+-0x24bf*-0x1+-0x4e7;_0x2b8425<0x8c1+0x1154+0x1*-0x1915;_0x2b8425++){_0x4fe44c=(_0x4fe44c+_0x519ebe[_0x2b8425]+_0x431dbd['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2b8425%_0x431dbd['\x6c\x65\x6e\x67\x74\x68']))%(0x1f+0x1*0x2131+0xb*-0x2f0),_0x260eea=_0x519ebe[_0x2b8425],_0x519ebe[_0x2b8425]=_0x519ebe[_0x4fe44c],_0x519ebe[_0x4fe44c]=_0x260eea;}_0x2b8425=0x95*-0x33+-0xc67+0x2a16*0x1,_0x4fe44c=0x23c2+0xe6*-0x1+-0x22dc;for(let _0xacd2ef=-0xe81+0xf7+-0x1*-0xd8a;_0xacd2ef<_0x56b67f['\x6c\x65\x6e\x67\x74\x68'];_0xacd2ef++){_0x2b8425=(_0x2b8425+(0xc*0x3b+-0x176f+0x14ac))%(0x1bfb*-0x1+-0xeb9*0x2+0x3a6d*0x1),_0x4fe44c=(_0x4fe44c+_0x519ebe[_0x2b8425])%(0x1cf*0xa+0x2*0x449+-0x19a8),_0x260eea=_0x519ebe[_0x2b8425],_0x519ebe[_0x2b8425]=_0x519ebe[_0x4fe44c],_0x519ebe[_0x4fe44c]=_0x260eea,_0x448c74+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x56b67f['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xacd2ef)^_0x519ebe[(_0x519ebe[_0x2b8425]+_0x519ebe[_0x4fe44c])%(-0xe*-0x8d+-0x1113+0xa5d)]);}return _0x448c74;};_0x57fd['\x72\x6c\x5a\x75\x77\x63']=_0x4a726c,_0x57fd['\x51\x53\x57\x67\x5a\x67']={},_0x57fd['\x58\x6f\x74\x55\x64\x65']=!![];}const _0x1287cd=_0x53e668[0x105b*0x2+0x2*-0xa8d+0xb9c*-0x1],_0x23a289=_0x51f347+_0x1287cd,_0x48dd55=_0x57fd['\x51\x53\x57\x67\x5a\x67'][_0x23a289];return!_0x48dd55?(_0x57fd['\x77\x52\x6c\x52\x62\x4d']===undefined&&(_0x57fd['\x77\x52\x6c\x52\x62\x4d']=!![]),_0x40a560=_0x57fd['\x72\x6c\x5a\x75\x77\x63'](_0x40a560,_0x346019),_0x57fd['\x51\x53\x57\x67\x5a\x67'][_0x23a289]=_0x40a560):_0x40a560=_0x48dd55,_0x40a560;}export const evolutionGraphMetricDelta=z['\x6f\x62\x6a\x65\x63\x74']({'\x6d\x65\x74\x72\x69\x63':z[_0x57dfc4(0x1a8,'\x6c\x45\x66\x7a')]()[_0x57dfc4(0x119,'\x6a\x34\x4f\x64')](0x2264+0x1193*-0x1+-0x10d0),'\x62\x65\x66\x6f\x72\x65':z[_0x57dfc4(0x21b,'\x21\x55\x72\x5b')]()[_0x57dfc4(0x243,'\x6b\x49\x68\x48')](),'\x61\x66\x74\x65\x72':z[_0x57dfc4(0x168,'\x38\x49\x4a\x66')](),'\x64\x65\x6c\x74\x61':z[_0x57dfc4(0x15a,'\x53\x45\x25\x29')]()[_0x57dfc4(0x18b,'\x40\x50\x6f\x34')](),'\x64\x69\x72\x65\x63\x74\x69\x6f\x6e':z['\x65\x6e\x75\x6d']([_0x57dfc4(0x1f0,'\x35\x64\x21\x59'),_0x57dfc4(0x1d4,'\x6a\x34\x4f\x64')+'\x64',_0x57dfc4(0x23b,'\x4d\x6c\x41\x59')+'\x64',_0x57dfc4(0x1d8,'\x6b\x49\x68\x48')])['\x64\x65\x66\x61\x75\x6c\x74']('\x75\x6e\x6b\x6e\x6f\x77\x6e')});export const evolutionGraphNode=z[_0x57dfc4(0x124,'\x4e\x50\x34\x38')]({'\x69\x64':evolutionGraphNodeRef,'\x6b\x69\x6e\x64':evolutionGraphNodeKind,'\x6c\x61\x62\x65\x6c':z[_0x57dfc4(0x1a0,'\x31\x5e\x7a\x57')]()[_0x57dfc4(0x1c7,'\x31\x5e\x7a\x57')](0x10*0x1d1+0x2467+-0xab*0x62),'\x63\x72\x65\x61\x74\x65\x64\x41\x74':z[_0x57dfc4(0x25b,'\x2a\x72\x72\x4c')]()[_0x57dfc4(0x160,'\x64\x58\x58\x53')](),'\x61\x72\x74\x69\x66\x61\x63\x74':evolutionGraphArtifactRef[_0x57dfc4(0x152,'\x39\x65\x66\x49')](),'\x6d\x65\x74\x72\x69\x63\x73':z[_0x57dfc4(0xef,'\x75\x47\x72\x24')](evolutionGraphMetricValue)[_0x57dfc4(0x12b,'\x35\x64\x21\x59')]([]),'\x73\x75\x6d\x6d\x61\x72\x79':z[_0x57dfc4(0x1b8,'\x4e\x50\x34\x38')]()[_0x57dfc4(0x1c5,'\x31\x5e\x7a\x57')](),'\x74\x61\x67\x73':z[_0x57dfc4(0xef,'\x75\x47\x72\x24')](z[_0x57dfc4(0x221,'\x46\x52\x25\x77')]()[_0x57dfc4(0x132,'\x2a\x59\x4f\x5e')](-0x1*0x1384+-0x19f8+0x2d7d))[_0x57dfc4(0x139,'\x71\x28\x41\x55')]([]),'\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x73':extensions});export const evolutionGraphProvenance=z[_0x57dfc4(0x12e,'\x59\x4c\x74\x38')]({'\x6b\x69\x6e\x64':evolutionGraphProvenanceKind,'\x72\x65\x66':z[_0x57dfc4(0x17c,'\x2a\x59\x4f\x5e')]()[_0x57dfc4(0x21c,'\x4c\x73\x76\x58')](0x14d1+0x2027+-0x34f7),'\x63\x61\x70\x74\x75\x72\x65\x64\x41\x74':z[_0x57dfc4(0x1b9,'\x53\x45\x25\x29')]()[_0x57dfc4(0x135,'\x4d\x6c\x41\x59')](),'\x61\x63\x74\x6f\x72':z[_0x57dfc4(0xf7,'\x6a\x34\x4f\x64')]()[_0x57dfc4(0x110,'\x35\x26\x78\x31')](0x1*0x1741+-0x1326+-0x1*0x41a)[_0x57dfc4(0x214,'\x67\x45\x2a\x66')](),'\x64\x69\x67\x65\x73\x74':sha256Hash[_0x57dfc4(0x248,'\x5a\x44\x28\x70')](),'\x73\x75\x6d\x6d\x61\x72\x79':z[_0x57dfc4(0x22a,'\x76\x53\x5a\x5d')]()['\x6f\x70\x74\x69\x6f\x6e\x61\x6c']()});export const evolutionGraphEdge=z[_0x57dfc4(0x1dc,'\x5d\x69\x24\x52')]({'\x69\x64':z[_0x57dfc4(0x156,'\x4d\x6c\x41\x59')]()['\x6d\x69\x6e'](-0x1b4+0xa4*-0x3b+0x2781),'\x6b\x69\x6e\x64':evolutionGraphEdgeKind,'\x66\x72\x6f\x6d':evolutionGraphNodeRef,'\x74\x6f':evolutionGraphNodeRef,'\x63\x72\x65\x61\x74\x65\x64\x41\x74':z[_0x57dfc4(0x123,'\x34\x65\x31\x77')]()[_0x57dfc4(0x1f5,'\x2a\x59\x4f\x5e')](),'\x70\x72\x6f\x76\x65\x6e\x61\x6e\x63\x65':z[_0x57dfc4(0x13d,'\x63\x35\x6a\x69')](evolutionGraphProvenance)[_0x57dfc4(0x1d5,'\x46\x52\x25\x77')](-0x401+0xa0e*-0x2+-0x9*-0x2ae),'\x6d\x65\x74\x72\x69\x63\x44\x65\x6c\x74\x61':evolutionGraphMetricDelta[_0x57dfc4(0x180,'\x44\x69\x5d\x63')](),'\x72\x65\x61\x73\x6f\x6e':z[_0x57dfc4(0x1f2,'\x5d\x69\x24\x52')]()[_0x57dfc4(0x1e8,'\x39\x65\x66\x49')](-0xf96+-0x12df+-0x16*-0x191)[_0x57dfc4(0x152,'\x39\x65\x66\x49')](),'\x63\x6f\x6e\x66\x69\x64\x65\x6e\x63\x65':z[_0x57dfc4(0x256,'\x64\x58\x58\x53')]()[_0x57dfc4(0x253,'\x71\x72\x47\x26')](0xaa8+0x17*0x5f+-0x1331)[_0x57dfc4(0x219,'\x53\x45\x25\x29')](0x3d*-0x3+-0xcf+0x17*0x11)[_0x57dfc4(0x157,'\x64\x58\x58\x53')](),'\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x73':extensions});export const evolutionGraphDashboardSummary=z[_0x57dfc4(0x13f,'\x65\x70\x41\x59')]({'\x6e\x6f\x64\x65\x43\x6f\x75\x6e\x74':z[_0x57dfc4(0x121,'\x25\x6b\x77\x6f')]()[_0x57dfc4(0x187,'\x53\x45\x25\x29')]()['\x6e\x6f\x6e\x6e\x65\x67\x61\x74'+_0x57dfc4(0x205,'\x41\x77\x51\x4f')](),'\x65\x64\x67\x65\x43\x6f\x75\x6e\x74':z[_0x57dfc4(0x222,'\x71\x26\x72\x7a')]()[_0x57dfc4(0x17a,'\x5a\x44\x28\x70')]()[_0x57dfc4(0x16e,'\x41\x4d\x30\x34')+_0x57dfc4(0x17d,'\x38\x49\x4a\x66')](),'\x76\x61\x72\x69\x61\x6e\x74\x43\x6f\x75\x6e\x74':z[_0x57dfc4(0x18e,'\x39\x65\x66\x49')]()[_0x57dfc4(0x130,'\x2a\x72\x72\x4c')]()[_0x57dfc4(0x1a5,'\x75\x47\x72\x24')+_0x57dfc4(0x1c2,'\x4c\x71\x34\x63')](),'\x73\x65\x6c\x65\x63\x74\x65\x64\x43\x6f\x75\x6e\x74':z['\x6e\x75\x6d\x62\x65\x72']()[_0x57dfc4(0x252,'\x7a\x54\x42\x6b')]()[_0x57dfc4(0x10b,'\x71\x26\x72\x7a')+_0x57dfc4(0xf2,'\x35\x26\x78\x31')](),'\x72\x65\x67\x72\x65\x73\x73\x69\x6f\x6e\x43\x6f\x75\x6e\x74':z[_0x57dfc4(0x1c1,'\x61\x7a\x78\x56')]()[_0x57dfc4(0x122,'\x61\x7a\x78\x56')]()[_0x57dfc4(0x11e,'\x64\x58\x58\x53')+'\x69\x76\x65'](),'\x66\x69\x78\x65\x64\x43\x6f\x75\x6e\x74':z[_0x57dfc4(0x1cc,'\x52\x24\x70\x42')]()[_0x57dfc4(0xfc,'\x51\x62\x71\x68')]()[_0x57dfc4(0x1f3,'\x39\x65\x66\x49')+_0x57dfc4(0x1de,'\x52\x24\x70\x42')](),'\x65\x76\x61\x6c\x75\x61\x74\x65\x64\x56\x61\x72\x69\x61\x6e\x74\x43\x6f\x75\x6e\x74':z[_0x57dfc4(0x190,'\x4b\x71\x33\x68')]()[_0x57dfc4(0x14e,'\x21\x55\x72\x5b')]()[_0x57dfc4(0x25a,'\x53\x45\x25\x29')+'\x69\x76\x65'](),'\x75\x6e\x65\x76\x61\x6c\x75\x61\x74\x65\x64\x56\x61\x72\x69\x61\x6e\x74\x43\x6f\x75\x6e\x74':z[_0x57dfc4(0x1a3,'\x6f\x33\x34\x41')]()[_0x57dfc4(0xf1,'\x47\x72\x69\x74')]()['\x6e\x6f\x6e\x6e\x65\x67\x61\x74'+'\x69\x76\x65'](),'\x6f\x72\x70\x68\x61\x6e\x45\x64\x67\x65\x43\x6f\x75\x6e\x74':z['\x6e\x75\x6d\x62\x65\x72']()[_0x57dfc4(0x131,'\x4c\x71\x34\x63')]()['\x6e\x6f\x6e\x6e\x65\x67\x61\x74'+_0x57dfc4(0x161,'\x67\x45\x2a\x66')](),'\x70\x72\x6f\x76\x65\x6e\x61\x6e\x63\x65\x47\x61\x70\x43\x6f\x75\x6e\x74':z[_0x57dfc4(0x1ee,'\x58\x61\x37\x59')]()['\x69\x6e\x74']()[_0x57dfc4(0x162,'\x59\x4c\x74\x38')+_0x57dfc4(0x100,'\x71\x72\x47\x26')]()});export const evolutionGraph=z[_0x57dfc4(0x1ed,'\x39\x65\x66\x49')]({'\x73\x63\x68\x65\x6d\x61\x56\x65\x72\x73\x69\x6f\x6e':z['\x6c\x69\x74\x65\x72\x61\x6c'](EVOLUTION_GRAPH_SCHEMA_VERSION)[_0x57dfc4(0x166,'\x59\x4c\x74\x38')](EVOLUTION_GRAPH_SCHEMA_VERSION),'\x67\x72\x61\x70\x68\x49\x64':z[_0x57dfc4(0x148,'\x71\x26\x72\x7a')]()[_0x57dfc4(0x177,'\x71\x68\x6a\x68')](0x1ee0+0x23f4+-0x42d3),'\x67\x65\x6e\x65\x72\x61\x74\x65\x64\x41\x74':z[_0x57dfc4(0x105,'\x35\x26\x78\x31')]()[_0x57dfc4(0x136,'\x44\x69\x5d\x63')](),'\x6e\x6f\x64\x65\x73':z[_0x57dfc4(0x198,'\x40\x50\x6f\x34')](evolutionGraphNode),'\x65\x64\x67\x65\x73':z['\x61\x72\x72\x61\x79'](evolutionGraphEdge),'\x64\x61\x73\x68\x62\x6f\x61\x72\x64':evolutionGraphDashboardSummary['\x6f\x70\x74\x69\x6f\x6e\x61\x6c'](),'\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x73':extensions})[_0x57dfc4(0x1ad,'\x5a\x44\x28\x70')+'\x69\x6e\x65']((_0x491a87,_0x46f301)=>{const _0x54e4d8=_0x57dfc4,_0x53d5d0=new Map();for(const [_0x3d7e19,_0x5e6828]of _0x491a87[_0x54e4d8(0xf6,'\x62\x52\x47\x4f')][_0x54e4d8(0x1d6,'\x35\x26\x78\x31')]()){if(_0x54e4d8(0x1f8,'\x71\x28\x41\x55')===_0x54e4d8(0x1be,'\x38\x49\x4a\x66')){if(_0x53d5d0[_0x54e4d8(0x143,'\x41\x77\x51\x4f')](_0x5e6828['\x69\x64'])){if(_0x54e4d8(0x185,'\x31\x5e\x7a\x57')===_0x54e4d8(0x1e3,'\x51\x62\x71\x68')){_0x46f301[_0x54e4d8(0x1e4,'\x46\x52\x25\x77')]({'\x63\x6f\x64\x65':z[_0x54e4d8(0x175,'\x52\x24\x70\x42')+_0x54e4d8(0x204,'\x38\x49\x4a\x66')][_0x54e4d8(0x14d,'\x6b\x49\x68\x48')],'\x70\x61\x74\x68':[_0x54e4d8(0x1eb,'\x21\x55\x72\x5b'),_0x3d7e19,'\x69\x64'],'\x6d\x65\x73\x73\x61\x67\x65':_0x54e4d8(0x1ac,'\x6a\x34\x4f\x64')+_0x54e4d8(0x129,'\x2a\x72\x72\x4c')+_0x54e4d8(0x1e2,'\x7a\x54\x42\x6b')+_0x54e4d8(0x154,'\x59\x4c\x74\x38')+'\x64'});continue;}else _0x4bd738[_0x54e4d8(0x167,'\x53\x45\x25\x29')]({'\x63\x6f\x64\x65':_0x73d347[_0x54e4d8(0x228,'\x59\x4c\x74\x38')+_0x54e4d8(0x1d7,'\x35\x64\x21\x59')][_0x54e4d8(0x174,'\x52\x24\x70\x42')],'\x70\x61\x74\x68':[_0x54e4d8(0x165,'\x6a\x34\x4f\x64'),_0x3a5ff8,_0x54e4d8(0x201,'\x6b\x49\x68\x48')+'\x6c\x74\x61'],'\x6d\x65\x73\x73\x61\x67\x65':_0x44d6bc[_0x54e4d8(0x145,'\x35\x64\x21\x59')]+(_0x54e4d8(0x203,'\x2a\x59\x4f\x5e')+_0x54e4d8(0x1b7,'\x76\x53\x5a\x5d')+_0x54e4d8(0x240,'\x71\x68\x6a\x68')+'\x74\x61')});}_0x53d5d0[_0x54e4d8(0x1f7,'\x6b\x26\x47\x59')](_0x5e6828['\x69\x64'],_0x5e6828[_0x54e4d8(0x15c,'\x4e\x50\x34\x38')]);}else _0x4f716b[_0x54e4d8(0x13b,'\x44\x69\x5d\x63')]({'\x63\x6f\x64\x65':_0x5094c5[_0x54e4d8(0x149,'\x53\x45\x25\x29')+_0x54e4d8(0x1ff,'\x5d\x69\x24\x52')][_0x54e4d8(0x153,'\x76\x53\x5a\x5d')],'\x70\x61\x74\x68':[_0x54e4d8(0x144,'\x7a\x54\x42\x6b'),_0xaa79ad,_0x54e4d8(0x1f4,'\x6b\x49\x68\x48')],'\x6d\x65\x73\x73\x61\x67\x65':_0x54e4d8(0x1f6,'\x61\x4b\x25\x5d')+_0x54e4d8(0x12f,'\x2a\x72\x72\x4c')+'\x75\x73\x74\x20\x63\x6f\x6e\x6e'+_0x54e4d8(0x117,'\x35\x64\x21\x59')+'\x61\x6e\x74\x20\x2d\x3e\x20\x73'+_0x54e4d8(0x22d,'\x7a\x54\x42\x6b')});}const _0xa6f637=new Set();for(const [_0xb858bf,_0x14320d]of _0x491a87[_0x54e4d8(0x126,'\x71\x72\x47\x26')][_0x54e4d8(0x225,'\x46\x52\x25\x77')]()){if(_0xa6f637[_0x54e4d8(0x229,'\x5a\x44\x28\x70')](_0x14320d['\x69\x64'])){if(_0x54e4d8(0x1e7,'\x5a\x44\x28\x70')!==_0x54e4d8(0x259,'\x33\x78\x28\x74'))_0x46f301[_0x54e4d8(0x138,'\x76\x53\x5a\x5d')]({'\x63\x6f\x64\x65':z[_0x54e4d8(0x228,'\x59\x4c\x74\x38')+_0x54e4d8(0x1fb,'\x52\x24\x70\x42')][_0x54e4d8(0x107,'\x5d\x69\x24\x52')],'\x70\x61\x74\x68':[_0x54e4d8(0x159,'\x59\x4c\x74\x38'),_0xb858bf,'\x69\x64'],'\x6d\x65\x73\x73\x61\x67\x65':_0x54e4d8(0x158,'\x71\x72\x47\x26')+_0x54e4d8(0x1ea,'\x4c\x73\x76\x58')+'\x69\x6f\x6e\x20\x67\x72\x61\x70'+_0x54e4d8(0x224,'\x6b\x26\x47\x59')+'\x64'});else{if(!_0x41e91f[_0x54e4d8(0x1e6,'\x5d\x69\x24\x52')](_0x274d62[_0x54e4d8(0x16a,'\x4c\x73\x76\x58')])||!_0x29b1fa[_0x54e4d8(0x209,'\x2a\x59\x4f\x5e')](_0x11d6f1['\x74\x6f']))_0xfb2131+=-0x1*-0x2164+-0x1*0xaab+-0x16b8;if(_0x518c19[_0x54e4d8(0x16f,'\x63\x35\x6a\x69')+'\x63\x65'][_0x54e4d8(0x11b,'\x71\x68\x6a\x68')]===-0x248d+0x763+0x1d2a)_0x1ec397+=0x4*0x8cf+-0xda1+-0x159a;if(_0x4cb78e[_0x54e4d8(0x1ca,'\x63\x35\x6a\x69')]===_0x54e4d8(0x237,'\x6b\x26\x47\x59')+_0x54e4d8(0x19c,'\x6b\x49\x68\x48')&&_0x4a2c96[_0x54e4d8(0x1a6,'\x52\x24\x70\x42')](_0x1c388e[_0x54e4d8(0x20e,'\x39\x65\x66\x49')]))_0x3d1b91[_0x54e4d8(0x1bb,'\x71\x26\x72\x7a')](_0x408f43[_0x54e4d8(0x134,'\x65\x70\x41\x59')]);if(_0x1251e3['\x6b\x69\x6e\x64']==='\x73\x65\x6c\x65\x63\x74\x65\x64')_0x4c88cc+=-0x2*0x484+0x129e*-0x1+0x1ba7;if(_0x28d210[_0x54e4d8(0x17f,'\x76\x53\x5a\x5d')]===_0x54e4d8(0x112,'\x61\x4b\x25\x5d')+'\x64')_0x2a6b7+=-0x1*-0x146b+-0x813*-0x4+-0x34b6;if(_0x425ae6[_0x54e4d8(0x169,'\x2a\x59\x4f\x5e')]===_0x54e4d8(0x218,'\x25\x6b\x77\x6f'))_0x43bdcd+=-0x3*-0x67f+0x154+0x29a*-0x8;}}else _0xa6f637['\x61\x64\x64'](_0x14320d['\x69\x64']);const _0x4d0f60=_0x53d5d0[_0x54e4d8(0x202,'\x21\x55\x72\x5b')](_0x14320d[_0x54e4d8(0x134,'\x65\x70\x41\x59')]),_0x213891=_0x53d5d0[_0x54e4d8(0x1ab,'\x67\x45\x2a\x66')](_0x14320d['\x74\x6f']);if(!_0x4d0f60)_0x46f301[_0x54e4d8(0x200,'\x71\x26\x72\x7a')]({'\x63\x6f\x64\x65':z['\x5a\x6f\x64\x49\x73\x73\x75\x65'+_0x54e4d8(0x19e,'\x33\x78\x28\x74')][_0x54e4d8(0xfa,'\x65\x70\x41\x59')],'\x70\x61\x74\x68':['\x65\x64\x67\x65\x73',_0xb858bf,_0x54e4d8(0x246,'\x35\x26\x78\x31')],'\x6d\x65\x73\x73\x61\x67\x65':_0x54e4d8(0x24e,'\x41\x4d\x30\x34')+_0x54e4d8(0x1c8,'\x4c\x73\x76\x58')+_0x54e4d8(0x173,'\x64\x58\x58\x53')+_0x54e4d8(0x111,'\x67\x45\x2a\x66')});if(!_0x213891)_0x46f301[_0x54e4d8(0x137,'\x6b\x26\x47\x59')]({'\x63\x6f\x64\x65':z[_0x54e4d8(0x193,'\x61\x7a\x78\x56')+_0x54e4d8(0x172,'\x4e\x50\x34\x38')][_0x54e4d8(0x23d,'\x61\x4b\x25\x5d')],'\x70\x61\x74\x68':[_0x54e4d8(0x210,'\x6b\x26\x47\x59'),_0xb858bf,'\x74\x6f'],'\x6d\x65\x73\x73\x61\x67\x65':_0x54e4d8(0x140,'\x64\x58\x58\x53')+_0x54e4d8(0x13e,'\x71\x26\x72\x7a')+_0x54e4d8(0x231,'\x33\x78\x28\x74')+_0x54e4d8(0x238,'\x47\x72\x69\x74')});if(!_0x4d0f60||!_0x213891)continue;validateEvolutionGraphEdgeShape(_0x14320d,_0x4d0f60,_0x213891,_0x46f301,_0xb858bf);}});export function deriveEvolutionGraphDashboardSummary(_0x50937e){const _0x40b662=_0x57dfc4,_0x38a0c1=new Set(_0x50937e[_0x40b662(0x1e0,'\x46\x52\x25\x77')][_0x40b662(0x14b,'\x2a\x59\x4f\x5e')](_0x28f63d=>_0x28f63d['\x6b\x69\x6e\x64']===_0x40b662(0x1a1,'\x35\x64\x21\x59'))[_0x40b662(0x146,'\x42\x73\x46\x32')](_0x13171c=>_0x13171c['\x69\x64'])),_0x280947=new Set();let _0x308f53=0x826*0x2+0x234*-0x5+-0x548,_0x20aeaa=0xe*-0x7e+0xbf*0x23+-0x1339,_0x134eab=0x2*-0x829+-0x17*-0x2+0x1024,_0x1ffe0a=-0x1b39*0x1+0x2255+0x38e*-0x2,_0x131a53=0x2394+0x2011*0x1+-0x43a5;const _0x384bb0=new Set(_0x50937e[_0x40b662(0x178,'\x6a\x34\x4f\x64')][_0x40b662(0x208,'\x41\x4d\x30\x34')](_0xf4e7d=>_0xf4e7d['\x69\x64']));for(const _0x4c31eb of _0x50937e[_0x40b662(0x215,'\x5d\x69\x24\x52')]){if(_0x40b662(0xf4,'\x46\x52\x25\x77')===_0x40b662(0x249,'\x34\x65\x31\x77')){if(!_0x384bb0[_0x40b662(0x19a,'\x46\x52\x25\x77')](_0x4c31eb[_0x40b662(0x1bd,'\x64\x58\x58\x53')])||!_0x384bb0[_0x40b662(0x1c4,'\x44\x69\x5d\x63')](_0x4c31eb['\x74\x6f']))_0x1ffe0a+=0x1229+-0x120e*-0x1+-0x2436;if(_0x4c31eb['\x70\x72\x6f\x76\x65\x6e\x61\x6e'+'\x63\x65'][_0x40b662(0x1ec,'\x53\x45\x25\x29')]===0x175*-0x11+-0x18bd+0x3182)_0x131a53+=0xee6+-0x22ef+0xa*0x201;if(_0x4c31eb['\x6b\x69\x6e\x64']===_0x40b662(0x254,'\x21\x55\x72\x5b')+_0x40b662(0x1db,'\x4c\x71\x34\x63')&&_0x38a0c1[_0x40b662(0x1b2,'\x64\x58\x58\x53')](_0x4c31eb[_0x40b662(0x17b,'\x34\x65\x31\x77')]))_0x280947[_0x40b662(0x141,'\x47\x72\x69\x74')](_0x4c31eb[_0x40b662(0x1b1,'\x71\x68\x6a\x68')]);if(_0x4c31eb[_0x40b662(0x24b,'\x58\x61\x37\x59')]===_0x40b662(0x15e,'\x59\x4c\x74\x38'))_0x308f53+=0x24d*0x1+-0x1bd*0x1+-0xd*0xb;if(_0x4c31eb[_0x40b662(0x145,'\x35\x64\x21\x59')]===_0x40b662(0x192,'\x58\x61\x37\x59')+'\x64')_0x20aeaa+=0x239c+0x6a*0x41+-0x3e85;if(_0x4c31eb[_0x40b662(0x170,'\x33\x78\x28\x74')]===_0x40b662(0x236,'\x52\x24\x70\x42'))_0x134eab+=0x241e+0x1834+0x141b*-0x3;}else _0x3ffb25[_0x40b662(0x216,'\x52\x24\x70\x42')]({'\x63\x6f\x64\x65':_0x2fd67b[_0x40b662(0xfb,'\x5a\x44\x28\x70')+_0x40b662(0x251,'\x61\x4b\x25\x5d')][_0x40b662(0x1e1,'\x71\x68\x6a\x68')],'\x70\x61\x74\x68':[_0x40b662(0x239,'\x4b\x71\x33\x68'),_0x5832a5,'\x72\x65\x61\x73\x6f\x6e'],'\x6d\x65\x73\x73\x61\x67\x65':_0x40b662(0x1af,'\x44\x69\x5d\x63')+_0x40b662(0x155,'\x38\x49\x4a\x66')+_0x40b662(0x19b,'\x6a\x34\x4f\x64')+_0x40b662(0x1b4,'\x35\x64\x21\x59')});}return{'\x6e\x6f\x64\x65\x43\x6f\x75\x6e\x74':_0x50937e[_0x40b662(0x22c,'\x52\x24\x70\x42')][_0x40b662(0x23a,'\x71\x28\x41\x55')],'\x65\x64\x67\x65\x43\x6f\x75\x6e\x74':_0x50937e[_0x40b662(0x16c,'\x46\x52\x25\x77')]['\x6c\x65\x6e\x67\x74\x68'],'\x76\x61\x72\x69\x61\x6e\x74\x43\x6f\x75\x6e\x74':_0x38a0c1['\x73\x69\x7a\x65'],'\x73\x65\x6c\x65\x63\x74\x65\x64\x43\x6f\x75\x6e\x74':_0x308f53,'\x72\x65\x67\x72\x65\x73\x73\x69\x6f\x6e\x43\x6f\x75\x6e\x74':_0x20aeaa,'\x66\x69\x78\x65\x64\x43\x6f\x75\x6e\x74':_0x134eab,'\x65\x76\x61\x6c\x75\x61\x74\x65\x64\x56\x61\x72\x69\x61\x6e\x74\x43\x6f\x75\x6e\x74':_0x280947[_0x40b662(0x1e5,'\x46\x52\x25\x77')],'\x75\x6e\x65\x76\x61\x6c\x75\x61\x74\x65\x64\x56\x61\x72\x69\x61\x6e\x74\x43\x6f\x75\x6e\x74':Math[_0x40b662(0x164,'\x76\x53\x5a\x5d')](-0xdb6+0x2400+-0x27a*0x9,_0x38a0c1[_0x40b662(0x18c,'\x61\x7a\x78\x56')]-_0x280947[_0x40b662(0x10d,'\x33\x78\x28\x74')]),'\x6f\x72\x70\x68\x61\x6e\x45\x64\x67\x65\x43\x6f\x75\x6e\x74':_0x1ffe0a,'\x70\x72\x6f\x76\x65\x6e\x61\x6e\x63\x65\x47\x61\x70\x43\x6f\x75\x6e\x74':_0x131a53};}function validateEvolutionGraphEdgeShape(_0x552ad8,_0x2e6f03,_0x50a7ae,_0x428f85,_0x5b0a07){const _0x28bb4e=_0x57dfc4;_0x552ad8['\x6b\x69\x6e\x64']===_0x28bb4e(0x258,'\x75\x47\x72\x24')&&(_0x2e6f03!==_0x28bb4e(0x194,'\x6a\x34\x4f\x64')||_0x50a7ae!==_0x28bb4e(0x230,'\x59\x4c\x74\x38')+'\x6e')&&_0x428f85[_0x28bb4e(0x220,'\x71\x68\x6a\x68')]({'\x63\x6f\x64\x65':z[_0x28bb4e(0x10f,'\x41\x4d\x30\x34')+_0x28bb4e(0x104,'\x71\x26\x72\x7a')][_0x28bb4e(0x10e,'\x42\x73\x46\x32')],'\x70\x61\x74\x68':[_0x28bb4e(0x179,'\x61\x4b\x25\x5d'),_0x5b0a07,_0x28bb4e(0x182,'\x65\x70\x41\x59')],'\x6d\x65\x73\x73\x61\x67\x65':'\x73\x65\x6c\x65\x63\x74\x65\x64'+_0x28bb4e(0x13a,'\x7a\x54\x42\x6b')+_0x28bb4e(0x11a,'\x42\x73\x46\x32')+_0x28bb4e(0x11f,'\x2a\x59\x4f\x5e')+_0x28bb4e(0x257,'\x71\x72\x47\x26')+_0x28bb4e(0x1a7,'\x71\x26\x72\x7a')}),_0x552ad8['\x6b\x69\x6e\x64']===_0x28bb4e(0x102,'\x42\x73\x46\x32')+_0x28bb4e(0x23f,'\x75\x47\x72\x24')&&![_0x28bb4e(0x189,'\x58\x61\x37\x59'),'\x6d\x65\x74\x72\x69\x63',_0x28bb4e(0x20b,'\x71\x72\x47\x26')][_0x28bb4e(0x1ba,'\x6f\x33\x34\x41')](_0x50a7ae)&&(_0x28bb4e(0x106,'\x46\x53\x51\x6d')!==_0x28bb4e(0x1b3,'\x25\x6b\x77\x6f')?_0x428f85[_0x28bb4e(0xfe,'\x6b\x49\x68\x48')]({'\x63\x6f\x64\x65':z[_0x28bb4e(0x12a,'\x76\x53\x5a\x5d')+_0x28bb4e(0x1cd,'\x42\x73\x46\x32')][_0x28bb4e(0x206,'\x47\x72\x69\x74')],'\x70\x61\x74\x68':[_0x28bb4e(0x14c,'\x4e\x50\x34\x38'),_0x5b0a07,'\x74\x6f'],'\x6d\x65\x73\x73\x61\x67\x65':'\x65\x76\x61\x6c\x75\x61\x74\x65'+_0x28bb4e(0x197,'\x64\x58\x58\x53')+_0x28bb4e(0x1bc,'\x52\x24\x70\x42')+_0x28bb4e(0x10a,'\x75\x47\x72\x24')+_0x28bb4e(0x24c,'\x51\x62\x71\x68')+_0x28bb4e(0x244,'\x42\x73\x46\x32')}):_0x57ebde['\x61\x64\x64\x49\x73\x73\x75\x65']({'\x63\x6f\x64\x65':_0x4b19cf[_0x28bb4e(0x24a,'\x4d\x6c\x41\x59')+_0x28bb4e(0x251,'\x61\x4b\x25\x5d')][_0x28bb4e(0x206,'\x47\x72\x69\x74')],'\x70\x61\x74\x68':[_0x28bb4e(0x1ef,'\x63\x35\x6a\x69'),_0x408028,'\x74\x6f'],'\x6d\x65\x73\x73\x61\x67\x65':_0x8d214f[_0x28bb4e(0x1d2,'\x39\x65\x66\x49')]+(_0x28bb4e(0x226,'\x4c\x71\x34\x63')+_0x28bb4e(0x211,'\x4b\x71\x33\x68')+_0x28bb4e(0x10c,'\x63\x35\x6a\x69')+_0x28bb4e(0x1ce,'\x4e\x50\x34\x38')+'\x74\x65\x73\x74')})),(_0x552ad8[_0x28bb4e(0x1d3,'\x53\x45\x25\x29')]===_0x28bb4e(0x1a9,'\x2a\x59\x4f\x5e')+'\x64'||_0x552ad8[_0x28bb4e(0x16d,'\x4d\x6c\x41\x59')]===_0x28bb4e(0x22e,'\x5a\x44\x28\x70'))&&![_0x28bb4e(0x199,'\x35\x64\x21\x59'),_0x28bb4e(0x1d0,'\x44\x69\x5d\x63'),_0x28bb4e(0x25c,'\x71\x68\x6a\x68')][_0x28bb4e(0x127,'\x6a\x34\x4f\x64')](_0x50a7ae)&&_0x428f85[_0x28bb4e(0x147,'\x4b\x71\x33\x68')]({'\x63\x6f\x64\x65':z[_0x28bb4e(0x113,'\x61\x4b\x25\x5d')+_0x28bb4e(0x1f9,'\x47\x72\x69\x74')][_0x28bb4e(0x21a,'\x38\x49\x4a\x66')],'\x70\x61\x74\x68':[_0x28bb4e(0x126,'\x71\x72\x47\x26'),_0x5b0a07,'\x74\x6f'],'\x6d\x65\x73\x73\x61\x67\x65':_0x552ad8[_0x28bb4e(0x150,'\x31\x5e\x7a\x57')]+(_0x28bb4e(0x120,'\x71\x72\x47\x26')+_0x28bb4e(0x18d,'\x5d\x69\x24\x52')+'\x72\x75\x6e\x2c\x20\x6d\x65\x74'+_0x28bb4e(0x17e,'\x71\x26\x72\x7a')+'\x74\x65\x73\x74')}),(_0x552ad8['\x6b\x69\x6e\x64']===_0x28bb4e(0xf3,'\x41\x4d\x30\x34')+'\x64'||_0x552ad8[_0x28bb4e(0x182,'\x65\x70\x41\x59')]===_0x28bb4e(0x142,'\x6f\x33\x34\x41'))&&!_0x552ad8[_0x28bb4e(0x1fe,'\x52\x24\x70\x42')+_0x28bb4e(0x116,'\x35\x26\x78\x31')]&&_0x428f85[_0x28bb4e(0x1e9,'\x41\x4d\x30\x34')]({'\x63\x6f\x64\x65':z[_0x28bb4e(0x1b0,'\x46\x52\x25\x77')+_0x28bb4e(0x1ff,'\x5d\x69\x24\x52')][_0x28bb4e(0x174,'\x52\x24\x70\x42')],'\x70\x61\x74\x68':[_0x28bb4e(0x195,'\x31\x5e\x7a\x57'),_0x5b0a07,_0x28bb4e(0x23c,'\x4c\x71\x34\x63')+_0x28bb4e(0x1fa,'\x40\x50\x6f\x34')],'\x6d\x65\x73\x73\x61\x67\x65':_0x552ad8[_0x28bb4e(0x169,'\x2a\x59\x4f\x5e')]+(_0x28bb4e(0x1bf,'\x5d\x69\x24\x52')+_0x28bb4e(0x176,'\x31\x5e\x7a\x57')+'\x65\x74\x72\x69\x63\x44\x65\x6c'+'\x74\x61')}),_0x552ad8[_0x28bb4e(0x1ca,'\x63\x35\x6a\x69')]===_0x28bb4e(0x1dd,'\x51\x62\x71\x68')&&!_0x552ad8[_0x28bb4e(0x1b6,'\x4c\x71\x34\x63')]&&_0x428f85[_0x28bb4e(0x1da,'\x39\x65\x66\x49')]({'\x63\x6f\x64\x65':z[_0x28bb4e(0x149,'\x53\x45\x25\x29')+_0x28bb4e(0x196,'\x4d\x6c\x41\x59')][_0x28bb4e(0xfd,'\x6f\x33\x34\x41')],'\x70\x61\x74\x68':[_0x28bb4e(0x186,'\x52\x24\x70\x42'),_0x5b0a07,_0x28bb4e(0x12d,'\x46\x52\x25\x77')],'\x6d\x65\x73\x73\x61\x67\x65':_0x28bb4e(0x1f6,'\x61\x4b\x25\x5d')+_0x28bb4e(0x13c,'\x40\x50\x6f\x34')+_0x28bb4e(0x12c,'\x6f\x33\x34\x41')+_0x28bb4e(0x15d,'\x71\x68\x6a\x68')});}
|
package/dist/schema/index.js
CHANGED
|
@@ -1,6 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export * from './material.js';
|
|
3
|
-
export * from './signal.js';
|
|
4
|
-
export * from './problem.js';
|
|
5
|
-
export * from './evolutionGraph.js';
|
|
6
|
-
export * from './proofOfWork.js';
|
|
1
|
+
(function(_0x2ec535,_0x28eba5){var _0x337d2e=_0x2e0c,_0x527a61=_0x2ec535();while(!![]){try{var _0x18d5b2=-parseInt(_0x337d2e(0x13c,'\x36\x69\x31\x33'))/(0x1*0x21a3+0x1b59+-0x3cfb)*(-parseInt(_0x337d2e(0x14d,'\x56\x31\x76\x6f'))/(-0x4*0x40d+-0x1*-0x1df5+0x9*-0x187))+parseInt(_0x337d2e(0x148,'\x35\x32\x74\x48'))/(0x38f*-0x1+0x1139*0x1+-0x1*0xda7)*(-parseInt(_0x337d2e(0x143,'\x5d\x45\x30\x36'))/(-0x52a+0x26c+0x2c2))+-parseInt(_0x337d2e(0x141,'\x5d\x45\x30\x36'))/(-0x1*0x844+0x10c2+-0x879)+-parseInt(_0x337d2e(0x14a,'\x33\x41\x31\x41'))/(-0x1f1c+0x1*-0x2689+-0x1*-0x45ab)*(parseInt(_0x337d2e(0x13e,'\x5d\x66\x45\x70'))/(-0xf96+0x3b2*0x1+0xbeb))+-parseInt(_0x337d2e(0x149,'\x26\x78\x42\x36'))/(-0x2a2*0xd+0x5*0x1c9+-0x5*-0x511)+parseInt(_0x337d2e(0x140,'\x49\x6a\x33\x65'))/(0xdc8+0x26e*-0x10+-0x1921*-0x1)+parseInt(_0x337d2e(0x146,'\x33\x41\x31\x41'))/(0x152a+-0x424*-0x7+0x2*-0x190e);if(_0x18d5b2===_0x28eba5)break;else _0x527a61['push'](_0x527a61['shift']());}catch(_0x4bb458){_0x527a61['push'](_0x527a61['shift']());}}}(_0x212f,0x6d2ce+-0x4c51*-0x29+-0x7c9b8));export*from'\x2e\x2f\x63\x6f\x6d\x6d\x6f\x6e\x2e\x6a\x73';export*from'\x2e\x2f\x6d\x61\x74\x65\x72\x69\x61\x6c\x2e\x6a\x73';export*from'\x2e\x2f\x73\x69\x67\x6e\x61\x6c\x2e\x6a\x73';function _0x2e0c(_0x213113,_0x1999bb){_0x213113=_0x213113-(-0xf53+-0x783+0x3d*0x65);var _0x55e7b2=_0x212f();var _0x4a3075=_0x55e7b2[_0x213113];if(_0x2e0c['\x76\x72\x70\x46\x57\x68']===undefined){var _0x2d7128=function(_0x4468bc){var _0xb2ada9='\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';var _0x58fd63='',_0x2615cf='';for(var _0xc80430=0xc*0x116+0x227*0x1+-0xf2f,_0x30475a,_0x2a5ea2,_0x3c4bd6=-0x683+0x16f4*-0x1+0x1d77;_0x2a5ea2=_0x4468bc['\x63\x68\x61\x72\x41\x74'](_0x3c4bd6++);~_0x2a5ea2&&(_0x30475a=_0xc80430%(0x26d7+-0xd03*-0x1+-0x33d6)?_0x30475a*(-0x1804+-0xcfe+-0x12a1*-0x2)+_0x2a5ea2:_0x2a5ea2,_0xc80430++%(0x1*0x24db+0x1efd*0x1+-0x43d4))?_0x58fd63+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xfc+-0x18bc*0x1+0x18bf&_0x30475a>>(-(-0x6b5*-0x4+-0x93b+0x13*-0xed)*_0xc80430&0xbe8+0x7*0x54a+0x272*-0x14)):-0x4b4*-0x1+0x2124+-0x25d8){_0x2a5ea2=_0xb2ada9['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2a5ea2);}for(var _0x253f8d=-0x10f1+-0x3*0x4e5+0xfd*0x20,_0x2828c5=_0x58fd63['\x6c\x65\x6e\x67\x74\x68'];_0x253f8d<_0x2828c5;_0x253f8d++){_0x2615cf+='\x25'+('\x30\x30'+_0x58fd63['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x253f8d)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0xd*0x2ef+0x83c+-0x2e4f))['\x73\x6c\x69\x63\x65'](-(-0xeba+0x244+0xc78));}return decodeURIComponent(_0x2615cf);};var _0xde4ed=function(_0x1dc7ac,_0x16f0a7){var _0x5d6496=[],_0x7e8b48=0x213b+0x3e7+-0x2522,_0x5cb128,_0x77092a='';_0x1dc7ac=_0x2d7128(_0x1dc7ac);var _0x4d1bf7;for(_0x4d1bf7=0x1*0x21a3+0x1b59+-0x3cfc;_0x4d1bf7<-0x4*0x40d+-0x1*-0x1df5+0x1*-0xcc1;_0x4d1bf7++){_0x5d6496[_0x4d1bf7]=_0x4d1bf7;}for(_0x4d1bf7=0x38f*-0x1+0x1139*0x1+-0x2*0x6d5;_0x4d1bf7<-0x52a+0x26c+0x3be;_0x4d1bf7++){_0x7e8b48=(_0x7e8b48+_0x5d6496[_0x4d1bf7]+_0x16f0a7['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4d1bf7%_0x16f0a7['\x6c\x65\x6e\x67\x74\x68']))%(-0x1*0x844+0x10c2+-0x77e),_0x5cb128=_0x5d6496[_0x4d1bf7],_0x5d6496[_0x4d1bf7]=_0x5d6496[_0x7e8b48],_0x5d6496[_0x7e8b48]=_0x5cb128;}_0x4d1bf7=-0x1f1c+0x1*-0x2689+-0x1*-0x45a5,_0x7e8b48=-0xf96+0x3b2*0x1+0xbe4;for(var _0x49fe9f=-0x2a2*0xd+0x5*0x1c9+-0x11*-0x17d;_0x49fe9f<_0x1dc7ac['\x6c\x65\x6e\x67\x74\x68'];_0x49fe9f++){_0x4d1bf7=(_0x4d1bf7+(0xdc8+0x26e*-0x10+-0x505*-0x5))%(0x152a+-0x424*-0x7+0x3*-0x1062),_0x7e8b48=(_0x7e8b48+_0x5d6496[_0x4d1bf7])%(0xbd7+-0x59*-0x3d+-0x200c),_0x5cb128=_0x5d6496[_0x4d1bf7],_0x5d6496[_0x4d1bf7]=_0x5d6496[_0x7e8b48],_0x5d6496[_0x7e8b48]=_0x5cb128,_0x77092a+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x1dc7ac['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x49fe9f)^_0x5d6496[(_0x5d6496[_0x4d1bf7]+_0x5d6496[_0x7e8b48])%(-0x1*0xc1+0x2*-0x2c6+0x26f*0x3)]);}return _0x77092a;};_0x2e0c['\x67\x70\x53\x79\x6b\x54']=_0xde4ed,_0x2e0c['\x42\x46\x6e\x42\x43\x44']={},_0x2e0c['\x76\x72\x70\x46\x57\x68']=!![];}var _0x4f0c70=_0x55e7b2[-0x8*0x194+0xef7*0x1+-0x257],_0x18645e=_0x213113+_0x4f0c70,_0x233b13=_0x2e0c['\x42\x46\x6e\x42\x43\x44'][_0x18645e];return!_0x233b13?(_0x2e0c['\x52\x70\x46\x41\x78\x78']===undefined&&(_0x2e0c['\x52\x70\x46\x41\x78\x78']=!![]),_0x4a3075=_0x2e0c['\x67\x70\x53\x79\x6b\x54'](_0x4a3075,_0x1999bb),_0x2e0c['\x42\x46\x6e\x42\x43\x44'][_0x18645e]=_0x4a3075):_0x4a3075=_0x233b13,_0x4a3075;}function _0x212f(){var _0x4fa30b=['\x57\x37\x37\x63\x53\x4b\x54\x51\x66\x6d\x6f\x7a\x57\x4f\x74\x63\x4c\x68\x53\x44\x57\x35\x4e\x64\x48\x38\x6b\x4e','\x46\x43\x6b\x2f\x57\x51\x68\x63\x47\x5a\x4c\x73\x69\x31\x65\x59\x57\x4f\x66\x55','\x57\x36\x42\x64\x4b\x6d\x6b\x55\x57\x34\x39\x44\x57\x52\x4e\x63\x47\x53\x6f\x4b\x6f\x61','\x57\x50\x56\x64\x4a\x49\x37\x63\x4a\x66\x52\x63\x4c\x53\x6f\x50\x46\x43\x6f\x41\x57\x51\x65','\x69\x43\x6b\x65\x73\x72\x42\x63\x51\x43\x6f\x48\x57\x35\x2f\x63\x47\x43\x6b\x71\x57\x50\x4b','\x62\x53\x6f\x73\x57\x4f\x50\x47\x77\x4c\x44\x35\x79\x30\x30','\x63\x53\x6b\x73\x61\x43\x6b\x4d\x57\x34\x4e\x63\x4d\x77\x78\x64\x51\x78\x61\x70','\x75\x49\x64\x63\x47\x38\x6b\x75\x57\x50\x64\x63\x55\x38\x6b\x66\x57\x52\x62\x42\x57\x51\x4c\x48','\x57\x34\x57\x66\x74\x31\x34\x4e\x67\x63\x53\x31\x41\x61','\x69\x53\x6b\x67\x73\x58\x4e\x64\x49\x53\x6b\x76\x57\x51\x2f\x63\x48\x38\x6b\x47\x57\x51\x61\x6d\x57\x51\x46\x64\x53\x71','\x57\x36\x53\x38\x42\x77\x47\x53\x57\x4f\x30\x73\x76\x43\x6b\x79\x79\x65\x4c\x53\x6b\x61','\x43\x76\x46\x64\x52\x53\x6b\x34\x76\x53\x6f\x64\x57\x52\x47\x59\x62\x53\x6f\x74\x57\x50\x56\x63\x4d\x53\x6b\x72','\x57\x36\x52\x64\x49\x78\x64\x64\x50\x72\x66\x76\x57\x35\x58\x4f\x57\x4f\x66\x54\x57\x36\x35\x2f\x70\x47','\x44\x66\x42\x64\x52\x38\x6b\x32\x78\x43\x6b\x62\x57\x34\x4b\x43\x6d\x38\x6f\x4f\x57\x50\x79','\x57\x37\x52\x64\x4b\x43\x6b\x53\x57\x34\x6e\x69\x57\x50\x68\x64\x4b\x67\x7a\x65\x78\x53\x6f\x5a\x57\x34\x4a\x63\x48\x47','\x57\x51\x64\x64\x48\x6d\x6f\x45\x45\x63\x69\x38\x68\x71\x6c\x64\x54\x38\x6f\x70','\x45\x38\x6b\x38\x57\x51\x70\x63\x47\x5a\x71\x31\x75\x64\x79\x68\x57\x52\x44\x63\x57\x50\x47\x68\x57\x51\x34','\x57\x4f\x57\x30\x65\x61\x31\x75\x57\x51\x53\x56\x57\x35\x69\x78\x78\x6d\x6f\x62','\x41\x61\x57\x5a\x78\x4c\x44\x2f\x57\x51\x34\x4a\x62\x71'];_0x212f=function(){return _0x4fa30b;};return _0x212f();}export*from'\x2e\x2f\x70\x72\x6f\x62\x6c\x65\x6d\x2e\x6a\x73';export*from'\x2e\x2f\x65\x76\x6f\x6c\x75\x74\x69\x6f\x6e\x47\x72\x61\x70\x68\x2e\x6a\x73';export*from'\x2e\x2f\x70\x72\x6f\x6f\x66\x4f\x66\x57\x6f\x72\x6b\x2e\x6a\x73';
|
package/dist/schema/material.js
CHANGED
|
@@ -1,50 +1 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
import { ulid, extensions, artifactRef, sourceAgent } from './common.js';
|
|
3
|
-
/** 去重 watermark (批注#15): (path,mtime,size)+contentHash 兜底. */
|
|
4
|
-
export const watermark = z.object({
|
|
5
|
-
path: z.string(),
|
|
6
|
-
mtime: z.number(),
|
|
7
|
-
size: z.number().int().nonnegative(),
|
|
8
|
-
contentHash: z.string().optional(),
|
|
9
|
-
});
|
|
10
|
-
/** 进化原材料 (环境). 来自 runtime session/tool 日志, 或 agent-无关的 proxy LLM-trace (#95). */
|
|
11
|
-
export const material = z.object({
|
|
12
|
-
materialId: ulid,
|
|
13
|
-
/** Runtime agent that produced a session/tool source. Absent for agent-agnostic origins (proxy trace), #95. */
|
|
14
|
-
sourceAgent: sourceAgent.optional(),
|
|
15
|
-
/** Origin class: a runtime agent session, or the proxy gateway's LLM trace (agent-agnostic), #95.
|
|
16
|
-
* Defaults to runtime_session so pre-#95 records (which only ever held sessions) parse unchanged. */
|
|
17
|
-
sourceKind: z.enum(['runtime_session', 'proxy_trace']).default('runtime_session'),
|
|
18
|
-
sourcePath: z.string(),
|
|
19
|
-
kind: z.enum(['session_log', 'tool_event', 'llm_trace']), // 双吃分级 D17; llm_trace = proxy 网关遥测 (#95)
|
|
20
|
-
watermark,
|
|
21
|
-
capturedAt: z.string().datetime(),
|
|
22
|
-
consumerGroup: z.string(),
|
|
23
|
-
payloadRef: artifactRef.optional(),
|
|
24
|
-
payload: z.unknown().optional(), // <=64KB inline; 超走 payloadRef (硬化 B)
|
|
25
|
-
feedsMaterial: z.boolean().default(true),
|
|
26
|
-
extensions,
|
|
27
|
-
}).superRefine((m, ctx) => {
|
|
28
|
-
// Origin self-consistency (#95): a runtime session must name its agent; an agent-agnostic proxy trace must
|
|
29
|
-
// NOT carry one (there is no honest runtime-agent identity to record). Turns the convention into a hard gate.
|
|
30
|
-
if (m.sourceKind === 'runtime_session' && !m.sourceAgent)
|
|
31
|
-
ctx.addIssue({ code: z.ZodIssueCode.custom, path: ['sourceAgent'], message: 'runtime_session material requires sourceAgent' });
|
|
32
|
-
if (m.sourceKind === 'proxy_trace' && m.sourceAgent)
|
|
33
|
-
ctx.addIssue({ code: z.ZodIssueCode.custom, path: ['sourceAgent'], message: 'proxy_trace material is agent-agnostic and must not carry sourceAgent' });
|
|
34
|
-
// kind ↔ origin (#100 bugbot): llm_trace is proxy-only; runtime sessions are session_log/tool_event. Without
|
|
35
|
-
// this, a record could be llm_trace yet runtime_session+agent, contradicting the agent-agnostic trace model.
|
|
36
|
-
if (m.sourceKind === 'proxy_trace' && m.kind !== 'llm_trace')
|
|
37
|
-
ctx.addIssue({ code: z.ZodIssueCode.custom, path: ['kind'], message: 'proxy_trace material must have kind llm_trace' });
|
|
38
|
-
if (m.sourceKind === 'runtime_session' && m.kind === 'llm_trace')
|
|
39
|
-
ctx.addIssue({ code: z.ZodIssueCode.custom, path: ['kind'], message: 'llm_trace kind is proxy-only; a runtime_session cannot be llm_trace' });
|
|
40
|
-
});
|
|
41
|
-
/** 增量读取游标 (硬化 A14): 与 Material 解耦. */
|
|
42
|
-
export const sourceCursor = z.object({
|
|
43
|
-
sourcePath: z.string(),
|
|
44
|
-
consumerGroup: z.string(),
|
|
45
|
-
byteOffset: z.number().int().nonnegative().default(0),
|
|
46
|
-
lineSeq: z.number().int().nonnegative().default(0),
|
|
47
|
-
lastWatermark: watermark.optional(),
|
|
48
|
-
});
|
|
49
|
-
/** Material payload inline 上限 (硬化 B): 超走 artifact 引用. */
|
|
50
|
-
export const MATERIAL_PAYLOAD_INLINE_MAX_BYTES = 64 * 1024;
|
|
1
|
+
const _0x2b2130=_0x290f;(function(_0x3d5360,_0x6e447b){const _0x4ea888=_0x290f,_0xaa76b4=_0x3d5360();while(!![]){try{const _0x282cf3=parseInt(_0x4ea888(0x144,'\x28\x7a\x50\x74'))/(-0x231d+-0x2a*-0x86+0xd22)*(parseInt(_0x4ea888(0x166,'\x6a\x49\x32\x39'))/(-0x24dc+-0x3*-0x2d2+0x1c68))+parseInt(_0x4ea888(0x157,'\x31\x6f\x42\x42'))/(0xc2b+-0x1b62+0xf3a*0x1)*(parseInt(_0x4ea888(0x13e,'\x21\x68\x21\x28'))/(0x14f4+-0x1*0x12d4+-0x1b*0x14))+-parseInt(_0x4ea888(0x121,'\x37\x51\x5b\x21'))/(-0x1a87+0x1ab7+-0x2b)+parseInt(_0x4ea888(0x116,'\x55\x35\x39\x53'))/(0x131e+0x1*-0x17a+-0x1*0x119e)*(-parseInt(_0x4ea888(0x13b,'\x75\x66\x43\x36'))/(0x793*0x5+-0x935+0x1*-0x1ca3))+-parseInt(_0x4ea888(0x137,'\x6d\x21\x5b\x78'))/(-0x7*0x372+-0xb5*-0x25+-0x203)*(parseInt(_0x4ea888(0x150,'\x4f\x30\x33\x4c'))/(0x66*0x3b+-0x1b*-0x30+0x983*-0x3))+-parseInt(_0x4ea888(0x146,'\x6f\x29\x5e\x76'))/(0xae9+-0x1301+0x2b6*0x3)*(-parseInt(_0x4ea888(0x14f,'\x72\x66\x53\x62'))/(0x1*0x11fa+0x829+-0x1a18))+parseInt(_0x4ea888(0x127,'\x77\x4a\x6f\x72'))/(-0x1634+0x289+0x67*0x31)*(parseInt(_0x4ea888(0x123,'\x21\x79\x61\x56'))/(-0x1*0x121d+-0x11*-0x240+-0x1416));if(_0x282cf3===_0x6e447b)break;else _0xaa76b4['push'](_0xaa76b4['shift']());}catch(_0x572d30){_0xaa76b4['push'](_0xaa76b4['shift']());}}}(_0x2782,-0x665e4+-0x73f2e+-0x3*-0x61c6f));import{z}from'\x7a\x6f\x64';function _0x2782(){const _0x2fa0a9=['\x57\x34\x4a\x63\x4e\x63\x33\x64\x4e\x6d\x6f\x75\x57\x51\x35\x75\x61\x47','\x57\x37\x46\x64\x4d\x5a\x48\x72\x7a\x53\x6f\x52\x76\x38\x6f\x4b','\x57\x35\x68\x63\x51\x4e\x74\x63\x4f\x4e\x5a\x63\x53\x61\x37\x64\x48\x57','\x42\x53\x6b\x33\x63\x67\x44\x46\x62\x53\x6b\x6a\x57\x51\x69','\x57\x50\x42\x63\x4d\x75\x50\x76\x72\x76\x6c\x63\x53\x6d\x6b\x4a','\x72\x4c\x66\x73\x57\x37\x6e\x78\x57\x36\x50\x6f\x57\x36\x6a\x56\x6e\x43\x6f\x33','\x57\x52\x34\x59\x45\x31\x54\x62\x63\x43\x6b\x63\x57\x4f\x6d','\x41\x78\x4e\x63\x55\x77\x2f\x63\x54\x43\x6f\x38\x57\x36\x6c\x63\x4f\x68\x39\x78','\x64\x72\x79\x6b\x57\x52\x79\x67\x57\x36\x7a\x65\x57\x37\x65','\x44\x43\x6b\x6a\x57\x52\x74\x64\x53\x47\x58\x4a\x75\x57','\x76\x6d\x6b\x49\x57\x51\x7a\x48\x65\x6d\x6f\x39\x78\x53\x6f\x63','\x76\x43\x6b\x4a\x57\x52\x50\x38\x66\x38\x6f\x33','\x42\x33\x66\x74\x77\x78\x4b\x30\x57\x52\x69\x6b\x57\x52\x31\x64\x41\x49\x44\x38','\x6d\x62\x56\x64\x48\x4a\x47\x47\x72\x6d\x6b\x42\x57\x50\x71','\x65\x64\x37\x64\x4f\x53\x6f\x5a\x57\x50\x69\x47\x69\x53\x6b\x6c','\x57\x36\x76\x79\x57\x52\x38\x78\x67\x43\x6f\x59\x57\x50\x76\x53','\x57\x51\x31\x4a\x57\x4f\x6c\x64\x50\x43\x6f\x42\x57\x35\x64\x64\x56\x38\x6f\x58\x6e\x43\x6b\x63\x72\x61','\x70\x38\x6b\x4a\x57\x50\x37\x64\x50\x71\x50\x6a\x77\x71','\x6a\x43\x6f\x68\x57\x36\x35\x59\x57\x34\x64\x64\x4a\x71','\x79\x38\x6f\x30\x57\x35\x75\x42\x57\x37\x34\x45\x46\x71','\x62\x48\x37\x64\x55\x78\x74\x63\x55\x78\x31\x2b\x57\x51\x30','\x57\x36\x35\x51\x62\x5a\x56\x64\x4f\x6d\x6f\x2f\x6e\x74\x53','\x57\x35\x35\x74\x57\x52\x38\x78\x67\x43\x6f\x59\x57\x50\x76\x53','\x57\x52\x44\x6f\x75\x32\x71\x6e\x57\x35\x2f\x63\x4a\x53\x6b\x76','\x78\x76\x4e\x63\x55\x73\x4e\x64\x50\x68\x31\x45\x57\x50\x6e\x68\x65\x4e\x53','\x44\x43\x6f\x4b\x57\x35\x30\x6f\x57\x36\x69\x46\x42\x6d\x6b\x70','\x57\x34\x68\x63\x54\x30\x65\x47\x57\x35\x65\x68','\x65\x43\x6f\x55\x57\x37\x4f\x4c\x74\x53\x6b\x4f\x45\x43\x6f\x75\x72\x6d\x6f\x42\x66\x6d\x6f\x70','\x57\x50\x68\x63\x4b\x31\x7a\x6b\x43\x31\x4a\x63\x51\x6d\x6f\x4d','\x46\x48\x56\x63\x4b\x61','\x44\x38\x6f\x75\x57\x34\x6c\x64\x4a\x31\x43\x50\x57\x35\x35\x6e','\x74\x43\x6b\x2b\x57\x51\x7a\x58','\x78\x77\x44\x61\x57\x35\x64\x64\x54\x71','\x57\x51\x38\x52\x77\x48\x74\x64\x55\x6d\x6f\x67\x66\x73\x64\x64\x51\x47','\x57\x52\x38\x4c\x57\x35\x78\x63\x52\x43\x6b\x78\x57\x35\x74\x64\x50\x43\x6f\x48','\x57\x51\x31\x73\x61\x6d\x6b\x65\x57\x4f\x78\x64\x4a\x33\x34','\x57\x37\x62\x33\x62\x49\x33\x64\x56\x6d\x6f\x68\x69\x64\x30','\x45\x38\x6f\x4c\x64\x68\x7a\x69\x70\x43\x6f\x44\x57\x52\x4b','\x42\x43\x6b\x47\x66\x67\x58\x70\x6e\x53\x6b\x74\x57\x37\x61','\x57\x50\x5a\x64\x4a\x43\x6b\x47\x57\x4f\x52\x64\x4e\x74\x57\x59','\x61\x33\x64\x63\x55\x47\x4e\x63\x52\x53\x6f\x6d\x72\x53\x6b\x2b','\x57\x37\x6a\x33\x57\x34\x65','\x57\x37\x75\x78\x75\x32\x44\x35\x57\x36\x69','\x69\x48\x64\x64\x4c\x57\x6d\x57\x75\x53\x6b\x4c\x57\x50\x47','\x57\x35\x79\x70\x7a\x43\x6b\x54\x42\x6d\x6b\x4a','\x44\x47\x52\x63\x4b\x66\x78\x64\x52\x43\x6b\x72\x65\x43\x6f\x41','\x57\x34\x37\x64\x53\x6d\x6b\x6e\x57\x52\x70\x64\x4a\x61\x47\x43','\x57\x37\x68\x63\x4e\x48\x75','\x57\x36\x30\x6b\x74\x32\x4f','\x6c\x73\x75\x74\x65\x59\x48\x50\x57\x36\x4b','\x57\x37\x31\x54\x67\x5a\x46\x64\x54\x53\x6f\x6e','\x73\x43\x6b\x4e\x57\x52\x58\x38\x66\x53\x6f\x2b\x77\x53\x6f\x58','\x70\x61\x57\x61\x57\x51\x43','\x57\x34\x62\x38\x57\x4f\x52\x64\x50\x30\x74\x64\x51\x38\x6b\x79\x62\x71','\x78\x53\x6b\x6c\x57\x4f\x66\x2b','\x77\x6d\x6b\x5a\x6d\x47','\x43\x38\x6f\x42\x57\x34\x69','\x67\x68\x46\x63\x56\x30\x78\x64\x4f\x53\x6f\x6a\x77\x6d\x6f\x62','\x44\x43\x6f\x78\x57\x35\x5a\x64\x4a\x30\x79\x30','\x57\x35\x7a\x62\x57\x52\x34','\x57\x52\x72\x54\x76\x38\x6b\x31\x45\x38\x6f\x77\x57\x50\x4f\x64','\x71\x33\x78\x64\x4f\x43\x6b\x37\x57\x35\x78\x64\x51\x72\x71\x4b\x63\x53\x6f\x72','\x57\x50\x68\x63\x47\x4c\x44\x71\x44\x66\x61','\x69\x64\x78\x64\x48\x78\x39\x47\x57\x51\x46\x63\x4c\x38\x6b\x6e','\x57\x36\x75\x77\x75\x4e\x50\x34\x57\x36\x47','\x57\x4f\x70\x63\x4d\x6d\x6b\x41','\x57\x37\x46\x64\x4d\x59\x76\x6c\x41\x53\x6f\x56\x66\x53\x6f\x58','\x57\x34\x71\x46\x43\x38\x6b\x6e\x43\x43\x6b\x33\x57\x37\x33\x63\x56\x71','\x57\x36\x52\x64\x4d\x5a\x35\x78\x42\x6d\x6f\x54\x70\x6d\x6f\x53','\x69\x74\x4a\x64\x47\x78\x72\x4d\x57\x52\x71','\x57\x34\x4f\x35\x57\x4f\x52\x64\x55\x31\x4a\x64\x54\x53\x6b\x76\x70\x57','\x57\x35\x33\x63\x4d\x6d\x6f\x2f\x57\x4f\x75\x54\x66\x38\x6b\x78\x57\x4f\x4b','\x64\x4e\x56\x63\x55\x65\x4a\x63\x54\x38\x6f\x6d\x78\x57','\x43\x53\x6b\x50\x63\x4b\x62\x73\x6b\x38\x6b\x43\x57\x52\x6d','\x57\x4f\x66\x59\x72\x38\x6b\x76\x7a\x38\x6f\x6c\x57\x4f\x34\x6b','\x57\x37\x44\x32\x64\x71','\x57\x37\x47\x66\x65\x6d\x6b\x71\x57\x4f\x61\x46\x6f\x6d\x6b\x74','\x57\x4f\x78\x63\x49\x48\x33\x63\x4d\x38\x6f\x7a\x57\x52\x74\x64\x51\x57','\x44\x6d\x6b\x7a\x57\x51\x4e\x64\x54\x71\x58\x48\x77\x66\x71','\x57\x34\x78\x64\x50\x43\x6b\x46\x57\x52\x56\x64\x4c\x47\x4f\x6a\x57\x4f\x61','\x57\x4f\x47\x58\x43\x4b\x31\x67\x63\x6d\x6b\x77\x57\x4f\x75','\x42\x43\x6b\x58\x66\x78\x7a\x69\x70\x47','\x57\x4f\x54\x53\x72\x57','\x6c\x6d\x6f\x35\x57\x34\x42\x64\x48\x77\x71\x76\x57\x34\x79','\x57\x34\x70\x64\x51\x77\x6c\x64\x52\x77\x74\x63\x4f\x58\x4e\x64\x48\x57','\x61\x67\x4e\x63\x52\x5a\x47','\x6c\x67\x4a\x63\x50\x59\x74\x63\x53\x38\x6b\x77\x57\x37\x4b\x52','\x57\x36\x6d\x6e\x76\x67\x6d','\x57\x4f\x62\x33\x78\x53\x6b\x45\x42\x43\x6f\x78','\x57\x4f\x5a\x63\x4d\x76\x65\x7a\x45\x76\x42\x63\x54\x6d\x6b\x30','\x57\x34\x6c\x63\x53\x76\x57\x58\x57\x34\x79\x2f\x57\x36\x4b\x37','\x57\x52\x48\x67\x76\x38\x6f\x65\x57\x34\x66\x2b\x6e\x38\x6b\x61\x64\x4b\x64\x64\x48\x38\x6f\x45','\x57\x50\x68\x63\x4d\x76\x62\x6c\x45\x76\x6c\x63\x4a\x43\x6b\x56','\x57\x52\x70\x63\x4d\x6d\x6f\x6c\x57\x51\x4e\x63\x49\x4c\x79\x38\x78\x71','\x6c\x74\x65\x77\x57\x4f\x46\x63\x55\x78\x44\x38\x71\x6d\x6f\x6a\x79\x43\x6f\x79\x57\x51\x4a\x64\x4f\x61','\x57\x37\x79\x72\x74\x4e\x7a\x55\x57\x35\x52\x63\x4b\x59\x75','\x6c\x53\x6f\x73\x57\x35\x69\x51\x61\x6d\x6f\x52\x6c\x6d\x6b\x78\x57\x35\x64\x63\x47\x33\x64\x63\x4c\x57','\x6f\x49\x2f\x64\x51\x68\x2f\x63\x4b\x53\x6f\x34\x57\x34\x68\x63\x4f\x57','\x57\x35\x42\x64\x47\x72\x65\x6e\x6b\x66\x4e\x63\x48\x38\x6b\x75\x57\x37\x4f\x39\x57\x52\x38','\x6b\x59\x34\x6c\x64\x49\x35\x58\x57\x36\x4b','\x57\x50\x72\x69\x6a\x43\x6b\x74\x79\x38\x6b\x49\x57\x35\x5a\x63\x53\x75\x61','\x57\x52\x34\x58\x43\x71','\x57\x37\x53\x37\x75\x47','\x7a\x43\x6f\x2b\x57\x35\x57\x77\x57\x36\x34\x74\x7a\x57','\x6f\x49\x2f\x64\x51\x61','\x57\x37\x4c\x53\x57\x35\x47\x4c\x57\x34\x52\x64\x48\x47','\x57\x51\x7a\x4c\x57\x4f\x42\x64\x52\x43\x6f\x41\x57\x35\x5a\x64\x55\x6d\x6f\x69\x61\x38\x6b\x71\x41\x61','\x57\x36\x4f\x51\x77\x64\x4e\x64\x54\x76\x4e\x64\x49\x33\x53','\x57\x34\x5a\x63\x4d\x6d\x6f\x49\x57\x4f\x75\x52\x66\x57','\x41\x38\x6f\x39\x57\x35\x34\x4c\x57\x37\x38\x61\x41\x6d\x6b\x5a','\x57\x37\x42\x64\x4c\x49\x66\x61\x42\x6d\x6f\x38','\x61\x4d\x64\x63\x50\x43\x6f\x35\x57\x37\x64\x64\x54\x64\x50\x56','\x57\x36\x56\x63\x48\x57\x75\x62\x6f\x53\x6f\x4d\x41\x43\x6b\x6b','\x67\x49\x56\x64\x51\x64\x68\x63\x49\x57','\x57\x34\x68\x64\x56\x6d\x6b\x66\x57\x52\x79','\x44\x47\x4e\x63\x4b\x78\x6c\x64\x51\x53\x6f\x70\x62\x43\x6f\x79','\x46\x38\x6b\x6b\x57\x52\x4f\x4c\x57\x50\x46\x63\x48\x5a\x42\x63\x4d\x75\x5a\x63\x4b\x71\x74\x64\x51\x38\x6f\x6d','\x74\x53\x6b\x59\x6d\x33\x46\x64\x47\x6d\x6f\x48\x57\x4f\x54\x74','\x57\x36\x69\x63\x76\x77\x54\x4a\x57\x36\x5a\x63\x49\x4a\x69','\x62\x58\x56\x64\x4f\x68\x2f\x63\x53\x32\x65','\x6d\x6d\x6b\x4f\x57\x4f\x66\x6b\x57\x52\x58\x6b\x73\x38\x6b\x7a\x44\x6d\x6f\x6d\x72\x38\x6b\x4d','\x57\x4f\x72\x79\x66\x38\x6b\x2b\x57\x50\x2f\x64\x4b\x32\x78\x63\x56\x61','\x74\x53\x6b\x50\x6e\x67\x5a\x64\x4a\x43\x6f\x4a','\x57\x51\x48\x47\x76\x62\x4e\x64\x55\x77\x68\x64\x4e\x68\x34'];_0x2782=function(){return _0x2fa0a9;};return _0x2782();}import{ulid,extensions,artifactRef,sourceAgent}from'\x2e\x2f\x63\x6f\x6d\x6d\x6f\x6e\x2e\x6a\x73';export const watermark=z[_0x2b2130(0x184,'\x39\x6d\x57\x35')]({'\x70\x61\x74\x68':z[_0x2b2130(0x169,'\x6a\x49\x53\x49')](),'\x6d\x74\x69\x6d\x65':z[_0x2b2130(0x11b,'\x4c\x43\x75\x71')](),'\x73\x69\x7a\x65':z[_0x2b2130(0x13a,'\x31\x6f\x42\x42')]()['\x69\x6e\x74']()[_0x2b2130(0x17e,'\x39\x6d\x57\x35')+_0x2b2130(0x16e,'\x74\x72\x5a\x34')](),'\x63\x6f\x6e\x74\x65\x6e\x74\x48\x61\x73\x68':z[_0x2b2130(0x16b,'\x77\x4a\x6f\x72')]()['\x6f\x70\x74\x69\x6f\x6e\x61\x6c']()});function _0x290f(_0x28cd55,_0xfa9dc3){_0x28cd55=_0x28cd55-(0x1df2+0x37f+-0x2f1*0xb);const _0x3cf38f=_0x2782();let _0x5b8926=_0x3cf38f[_0x28cd55];if(_0x290f['\x43\x59\x71\x52\x4a\x5a']===undefined){var _0x4942f3=function(_0x4f5ff3){const _0x16fe05='\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 _0xf5012d='',_0x504be3='';for(let _0x18c4f7=-0x883*0x1+0x4*-0x39+-0x1d*-0x53,_0x1d78c4,_0x1ebe2f,_0x4705e4=0x24b3*0x1+0xfc*0x13+-0x3767;_0x1ebe2f=_0x4f5ff3['\x63\x68\x61\x72\x41\x74'](_0x4705e4++);~_0x1ebe2f&&(_0x1d78c4=_0x18c4f7%(-0x313+-0x758+0xa6f*0x1)?_0x1d78c4*(-0x4*0x40d+0x51b*-0x6+0x2f16)+_0x1ebe2f:_0x1ebe2f,_0x18c4f7++%(0x192d+0x37b+0x2f*-0x9c))?_0xf5012d+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x2444+-0x603+-0x15a3*-0x2&_0x1d78c4>>(-(-0x1728+0x1*0xe97+0x893)*_0x18c4f7&-0x6*0x5c0+-0x2402+-0x8*-0x8d1)):-0x24c4+0x23f7+0x29*0x5){_0x1ebe2f=_0x16fe05['\x69\x6e\x64\x65\x78\x4f\x66'](_0x1ebe2f);}for(let _0x2de2d7=-0x959*-0x3+-0x1a2f+0x4*-0x77,_0xbdbddf=_0xf5012d['\x6c\x65\x6e\x67\x74\x68'];_0x2de2d7<_0xbdbddf;_0x2de2d7++){_0x504be3+='\x25'+('\x30\x30'+_0xf5012d['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2de2d7)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0xe7e+0x731*-0x1+0x13*0x125))['\x73\x6c\x69\x63\x65'](-(0x1*0x1c86+-0x1d93*0x1+-0x1*-0x10f));}return decodeURIComponent(_0x504be3);};const _0x2d5cd0=function(_0x4683ad,_0x317e1b){let _0x3a5c66=[],_0x2e4209=0x1d94+0x646+0x23da*-0x1,_0x5de989,_0x247345='';_0x4683ad=_0x4942f3(_0x4683ad);let _0x3163ca;for(_0x3163ca=0x1*-0x17a5+-0x23ab*0x1+0x3b50*0x1;_0x3163ca<-0x194*0xc+0x15c+-0x94a*-0x2;_0x3163ca++){_0x3a5c66[_0x3163ca]=_0x3163ca;}for(_0x3163ca=0x23cd+-0x812+-0x1bbb;_0x3163ca<0x95f*0x1+0x5c7*-0x6+-0x35*-0x7f;_0x3163ca++){_0x2e4209=(_0x2e4209+_0x3a5c66[_0x3163ca]+_0x317e1b['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x3163ca%_0x317e1b['\x6c\x65\x6e\x67\x74\x68']))%(-0x2*0x880+0x9*0x1e+0x3*0x5a6),_0x5de989=_0x3a5c66[_0x3163ca],_0x3a5c66[_0x3163ca]=_0x3a5c66[_0x2e4209],_0x3a5c66[_0x2e4209]=_0x5de989;}_0x3163ca=-0x1*0xd49+0x3bf+-0x4a*-0x21,_0x2e4209=-0xa82*0x1+0x15ac+-0xb2a*0x1;for(let _0x5847a4=-0x70b*-0x2+-0x1d*0x123+0x12e1;_0x5847a4<_0x4683ad['\x6c\x65\x6e\x67\x74\x68'];_0x5847a4++){_0x3163ca=(_0x3163ca+(-0x1b45+-0x7ee+0x119a*0x2))%(-0x7c9*0x5+-0x1f32+0x471f),_0x2e4209=(_0x2e4209+_0x3a5c66[_0x3163ca])%(-0x1be*0x5+0x14e0+-0xb2a),_0x5de989=_0x3a5c66[_0x3163ca],_0x3a5c66[_0x3163ca]=_0x3a5c66[_0x2e4209],_0x3a5c66[_0x2e4209]=_0x5de989,_0x247345+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x4683ad['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5847a4)^_0x3a5c66[(_0x3a5c66[_0x3163ca]+_0x3a5c66[_0x2e4209])%(-0x2a*-0x86+-0xe00+-0x6fc)]);}return _0x247345;};_0x290f['\x6b\x45\x54\x69\x64\x4c']=_0x2d5cd0,_0x290f['\x48\x4f\x70\x4a\x6d\x59']={},_0x290f['\x43\x59\x71\x52\x4a\x5a']=!![];}const _0x18b4e9=_0x3cf38f[-0x3*-0x2d2+-0x77c+-0x32*0x5],_0x26659e=_0x28cd55+_0x18b4e9,_0x550c5a=_0x290f['\x48\x4f\x70\x4a\x6d\x59'][_0x26659e];return!_0x550c5a?(_0x290f['\x48\x46\x65\x6d\x47\x48']===undefined&&(_0x290f['\x48\x46\x65\x6d\x47\x48']=!![]),_0x5b8926=_0x290f['\x6b\x45\x54\x69\x64\x4c'](_0x5b8926,_0xfa9dc3),_0x290f['\x48\x4f\x70\x4a\x6d\x59'][_0x26659e]=_0x5b8926):_0x5b8926=_0x550c5a,_0x5b8926;}export const material=z[_0x2b2130(0x179,'\x55\x35\x39\x53')]({'\x6d\x61\x74\x65\x72\x69\x61\x6c\x49\x64':ulid,'\x73\x6f\x75\x72\x63\x65\x41\x67\x65\x6e\x74':sourceAgent[_0x2b2130(0x172,'\x28\x62\x55\x4e')](),'\x73\x6f\x75\x72\x63\x65\x4b\x69\x6e\x64':z['\x65\x6e\x75\x6d']([_0x2b2130(0x149,'\x28\x62\x55\x4e')+_0x2b2130(0x162,'\x26\x28\x46\x71'),_0x2b2130(0x122,'\x6a\x49\x53\x49')+'\x61\x63\x65'])[_0x2b2130(0x18c,'\x7a\x77\x45\x69')](_0x2b2130(0x186,'\x6c\x49\x47\x55')+'\x73\x65\x73\x73\x69\x6f\x6e'),'\x73\x6f\x75\x72\x63\x65\x50\x61\x74\x68':z[_0x2b2130(0x17d,'\x51\x36\x21\x51')](),'\x6b\x69\x6e\x64':z[_0x2b2130(0x11a,'\x6a\x49\x53\x49')]([_0x2b2130(0x185,'\x49\x26\x41\x52')+_0x2b2130(0x128,'\x5e\x67\x6a\x56'),_0x2b2130(0x143,'\x51\x36\x21\x51')+'\x6e\x74',_0x2b2130(0x120,'\x5e\x31\x73\x6b')+'\x65']),'\x77\x61\x74\x65\x72\x6d\x61\x72\x6b':watermark,'\x63\x61\x70\x74\x75\x72\x65\x64\x41\x74':z[_0x2b2130(0x14a,'\x28\x62\x55\x4e')]()[_0x2b2130(0x139,'\x6a\x49\x53\x49')](),'\x63\x6f\x6e\x73\x75\x6d\x65\x72\x47\x72\x6f\x75\x70':z[_0x2b2130(0x13d,'\x4b\x30\x74\x24')](),'\x70\x61\x79\x6c\x6f\x61\x64\x52\x65\x66':artifactRef[_0x2b2130(0x189,'\x4c\x43\x75\x71')](),'\x70\x61\x79\x6c\x6f\x61\x64':z[_0x2b2130(0x126,'\x6f\x69\x23\x64')]()[_0x2b2130(0x18e,'\x6a\x49\x32\x39')](),'\x66\x65\x65\x64\x73\x4d\x61\x74\x65\x72\x69\x61\x6c':z[_0x2b2130(0x12a,'\x75\x66\x43\x36')]()[_0x2b2130(0x152,'\x75\x66\x43\x36')](!![]),'\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x73':extensions})[_0x2b2130(0x18b,'\x63\x40\x76\x78')+_0x2b2130(0x18a,'\x33\x46\x44\x40')]((_0x300028,_0x16074f)=>{const _0x492fa4=_0x2b2130;if(_0x300028[_0x492fa4(0x14c,'\x7a\x56\x6d\x55')+'\x6e\x64']===_0x492fa4(0x147,'\x28\x7a\x50\x74')+_0x492fa4(0x170,'\x6f\x69\x23\x64')&&!_0x300028[_0x492fa4(0x138,'\x4b\x30\x74\x24')+'\x65\x6e\x74'])_0x16074f[_0x492fa4(0x155,'\x62\x5d\x21\x78')]({'\x63\x6f\x64\x65':z[_0x492fa4(0x17b,'\x4c\x43\x75\x71')+_0x492fa4(0x118,'\x62\x68\x68\x46')][_0x492fa4(0x17f,'\x6a\x49\x53\x49')],'\x70\x61\x74\x68':['\x73\x6f\x75\x72\x63\x65\x41\x67'+_0x492fa4(0x191,'\x4c\x43\x75\x71')],'\x6d\x65\x73\x73\x61\x67\x65':_0x492fa4(0x18d,'\x4f\x30\x33\x4c')+_0x492fa4(0x15b,'\x51\x36\x21\x51')+_0x492fa4(0x15d,'\x55\x35\x39\x53')+_0x492fa4(0x161,'\x72\x66\x53\x62')+_0x492fa4(0x117,'\x50\x54\x4c\x40')+_0x492fa4(0x134,'\x6f\x29\x5e\x76')});if(_0x300028[_0x492fa4(0x133,'\x74\x72\x5a\x34')+'\x6e\x64']===_0x492fa4(0x12e,'\x21\x68\x21\x28')+_0x492fa4(0x12b,'\x6f\x29\x5e\x76')&&_0x300028[_0x492fa4(0x13f,'\x44\x41\x49\x59')+_0x492fa4(0x176,'\x4b\x30\x74\x24')])_0x16074f[_0x492fa4(0x182,'\x77\x4a\x6f\x72')]({'\x63\x6f\x64\x65':z[_0x492fa4(0x18f,'\x5e\x67\x6a\x56')+_0x492fa4(0x175,'\x21\x79\x61\x56')][_0x492fa4(0x171,'\x33\x46\x44\x40')],'\x70\x61\x74\x68':[_0x492fa4(0x14d,'\x5b\x21\x79\x71')+_0x492fa4(0x168,'\x6f\x6c\x58\x28')],'\x6d\x65\x73\x73\x61\x67\x65':_0x492fa4(0x154,'\x33\x46\x44\x40')+_0x492fa4(0x124,'\x6f\x29\x5e\x76')+_0x492fa4(0x178,'\x4a\x31\x5d\x6a')+_0x492fa4(0x16c,'\x49\x4a\x56\x76')+_0x492fa4(0x140,'\x29\x62\x67\x23')+'\x6e\x64\x20\x6d\x75\x73\x74\x20'+_0x492fa4(0x11c,'\x51\x36\x21\x51')+_0x492fa4(0x174,'\x49\x26\x41\x52')+_0x492fa4(0x15f,'\x37\x51\x5b\x21')});if(_0x300028[_0x492fa4(0x11f,'\x51\x36\x21\x51')+'\x6e\x64']===_0x492fa4(0x142,'\x37\x63\x65\x69')+_0x492fa4(0x129,'\x21\x68\x21\x28')&&_0x300028[_0x492fa4(0x135,'\x6a\x49\x32\x39')]!==_0x492fa4(0x145,'\x5e\x67\x6a\x56')+'\x65')_0x16074f[_0x492fa4(0x16a,'\x7a\x56\x6d\x55')]({'\x63\x6f\x64\x65':z[_0x492fa4(0x13c,'\x26\x28\x46\x71')+_0x492fa4(0x173,'\x28\x7a\x50\x74')][_0x492fa4(0x17f,'\x6a\x49\x53\x49')],'\x70\x61\x74\x68':['\x6b\x69\x6e\x64'],'\x6d\x65\x73\x73\x61\x67\x65':_0x492fa4(0x11d,'\x56\x44\x38\x5a')+_0x492fa4(0x141,'\x50\x54\x4c\x40')+'\x72\x69\x61\x6c\x20\x6d\x75\x73'+_0x492fa4(0x156,'\x4e\x21\x65\x42')+_0x492fa4(0x167,'\x4a\x31\x5d\x6a')+'\x74\x72\x61\x63\x65'});if(_0x300028[_0x492fa4(0x183,'\x29\x62\x67\x23')+'\x6e\x64']==='\x72\x75\x6e\x74\x69\x6d\x65\x5f'+_0x492fa4(0x148,'\x4f\x30\x33\x4c')&&_0x300028[_0x492fa4(0x16f,'\x6a\x49\x53\x49')]===_0x492fa4(0x188,'\x37\x63\x65\x69')+'\x65')_0x16074f[_0x492fa4(0x136,'\x49\x4a\x56\x76')]({'\x63\x6f\x64\x65':z[_0x492fa4(0x14e,'\x62\x5d\x21\x78')+'\x43\x6f\x64\x65'][_0x492fa4(0x12f,'\x6c\x49\x47\x55')],'\x70\x61\x74\x68':[_0x492fa4(0x15e,'\x28\x62\x55\x4e')],'\x6d\x65\x73\x73\x61\x67\x65':_0x492fa4(0x130,'\x75\x66\x43\x36')+_0x492fa4(0x164,'\x37\x63\x65\x69')+_0x492fa4(0x132,'\x29\x6b\x76\x59')+_0x492fa4(0x119,'\x62\x68\x68\x46')+_0x492fa4(0x158,'\x75\x66\x43\x36')+_0x492fa4(0x165,'\x37\x63\x65\x69')+'\x63\x61\x6e\x6e\x6f\x74\x20\x62'+'\x65\x20\x6c\x6c\x6d\x5f\x74\x72'+_0x492fa4(0x180,'\x55\x77\x37\x6f')});});export const sourceCursor=z[_0x2b2130(0x131,'\x29\x62\x67\x23')]({'\x73\x6f\x75\x72\x63\x65\x50\x61\x74\x68':z[_0x2b2130(0x190,'\x37\x63\x65\x69')](),'\x63\x6f\x6e\x73\x75\x6d\x65\x72\x47\x72\x6f\x75\x70':z[_0x2b2130(0x159,'\x56\x44\x38\x5a')](),'\x62\x79\x74\x65\x4f\x66\x66\x73\x65\x74':z[_0x2b2130(0x151,'\x6d\x21\x5b\x78')]()['\x69\x6e\x74']()[_0x2b2130(0x181,'\x29\x62\x67\x23')+_0x2b2130(0x17a,'\x62\x5d\x21\x78')]()[_0x2b2130(0x16d,'\x6a\x49\x32\x39')](-0xe05*0x2+-0x13aa+-0xac*-0x47),'\x6c\x69\x6e\x65\x53\x65\x71':z[_0x2b2130(0x12c,'\x6f\x6c\x58\x28')]()[_0x2b2130(0x177,'\x55\x35\x39\x53')]()[_0x2b2130(0x163,'\x33\x46\x44\x40')+_0x2b2130(0x15c,'\x49\x4a\x56\x76')]()[_0x2b2130(0x187,'\x4a\x31\x5d\x6a')](0x158f+0x177+-0x1706),'\x6c\x61\x73\x74\x57\x61\x74\x65\x72\x6d\x61\x72\x6b':watermark[_0x2b2130(0x153,'\x31\x6f\x42\x42')]()});export const MATERIAL_PAYLOAD_INLINE_MAX_BYTES=(0x1dcb+-0x1*0x523+-0x1868)*(0x23f7+0xfb*-0x25+-0x5c*-0xc);
|
package/dist/schema/problem.js
CHANGED
|
@@ -1,45 +1 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
import { extensions, blastRadius } from './common.js';
|
|
3
|
-
/** value 命名因子, 禁黑盒 (军杰 §5.3). */
|
|
4
|
-
export const valueFactors = z.object({
|
|
5
|
-
severity: z.number().default(0),
|
|
6
|
-
reach: z.number().default(0),
|
|
7
|
-
strategicFit: z.number().default(0),
|
|
8
|
-
novelty: z.number().default(0),
|
|
9
|
-
costEst: z.number().default(0),
|
|
10
|
-
});
|
|
11
|
-
export const problemPattern = z.object({
|
|
12
|
-
id: z.string(),
|
|
13
|
-
signature: z.string(),
|
|
14
|
-
signatureV: z.number().int().positive().default(1),
|
|
15
|
-
firstSeenAt: z.string().datetime(),
|
|
16
|
-
lastSeenAt: z.string().datetime(),
|
|
17
|
-
occurrences: z.number().int().nonnegative().default(0),
|
|
18
|
-
linkedSignals: z.array(z.string()).default([]),
|
|
19
|
-
resolvedBy: z.string().nullable().default(null),
|
|
20
|
-
status: z.enum(['open', 'cooling', 'resolved', 'abandoned']).default('open'),
|
|
21
|
-
value: valueFactors.default({}),
|
|
22
|
-
consecutiveFailures: z.number().int().nonnegative().default(0),
|
|
23
|
-
cooldownUntil: z.string().datetime().nullable().default(null),
|
|
24
|
-
extensions,
|
|
25
|
-
});
|
|
26
|
-
export const problemInstance = z.object({
|
|
27
|
-
instanceId: z.string(),
|
|
28
|
-
signature: z.string(),
|
|
29
|
-
signatureV: z.number().int().positive().default(1),
|
|
30
|
-
occurredAt: z.string().datetime(),
|
|
31
|
-
linkedSignal: z.string().optional(),
|
|
32
|
-
extensions,
|
|
33
|
-
});
|
|
34
|
-
/** 解法边界 = gene 唯一登场处 (军杰 §4.4). */
|
|
35
|
-
export const resolutionScope = z.object({
|
|
36
|
-
scopeId: z.string(),
|
|
37
|
-
targetProblems: z.array(z.string()).default([]),
|
|
38
|
-
proposedByGene: z.string().nullable().default(null),
|
|
39
|
-
boundary: z.object({
|
|
40
|
-
codePaths: z.array(z.string()).default([]),
|
|
41
|
-
dataSurfaces: z.array(z.string()).default([]),
|
|
42
|
-
blastRadius: blastRadius.default('module'),
|
|
43
|
-
}),
|
|
44
|
-
extensions,
|
|
45
|
-
});
|
|
1
|
+
const _0x2e215f=_0x4699;(function(_0x5a6625,_0x1621be){const _0x546ac6=_0x4699,_0x2ca3e1=_0x5a6625();while(!![]){try{const _0x5105d1=-parseInt(_0x546ac6(0x1a9,'\x59\x46\x40\x7a'))/(0x12a*0x3+-0x213d+0x70*0x44)*(-parseInt(_0x546ac6(0x1bb,'\x50\x41\x47\x45'))/(0xae7+-0x223a+0x1755))+parseInt(_0x546ac6(0x1ad,'\x64\x6a\x47\x5a'))/(-0x2*0xc31+-0x4a7*0x7+-0x38f6*-0x1)*(-parseInt(_0x546ac6(0x196,'\x4e\x5b\x70\x56'))/(0xf*-0x15b+-0x2406+-0x1*-0x385f))+parseInt(_0x546ac6(0x183,'\x42\x32\x67\x55'))/(0x4*-0x1db+-0x1a02+0x2173)*(parseInt(_0x546ac6(0x17c,'\x58\x4b\x4f\x34'))/(-0x49*-0x3b+-0x1aeb+0x172*0x7))+-parseInt(_0x546ac6(0x1a0,'\x6b\x4b\x75\x65'))/(0x70d*-0x5+0x4c5+0x6b*0x49)*(parseInt(_0x546ac6(0x187,'\x72\x23\x2a\x34'))/(-0xd1b+-0x1836+0x2559))+-parseInt(_0x546ac6(0x18d,'\x74\x6d\x5a\x6b'))/(-0x9a*-0x2b+-0x5b2+-0x1423)*(parseInt(_0x546ac6(0x18e,'\x72\x38\x59\x35'))/(0x6d8+-0x14*0x89+0x3e6))+parseInt(_0x546ac6(0x171,'\x6a\x28\x66\x23'))/(-0x1549+0x40*0x22+0xcd4)+-parseInt(_0x546ac6(0x173,'\x57\x5e\x70\x66'))/(0x8ee+0x1af*0x15+-0x4b*0x97)*(-parseInt(_0x546ac6(0x1aa,'\x63\x45\x4f\x57'))/(0x1999+-0x1fe3+0x1*0x657));if(_0x5105d1===_0x1621be)break;else _0x2ca3e1['push'](_0x2ca3e1['shift']());}catch(_0x2bcd7c){_0x2ca3e1['push'](_0x2ca3e1['shift']());}}}(_0x800a,-0xf60b3+-0xe*-0x13ced+0xa2d68));import{z}from'\x7a\x6f\x64';function _0x800a(){const _0x4bc540=['\x78\x38\x6b\x32\x57\x37\x71','\x57\x52\x4b\x46\x73\x38\x6b\x58\x57\x37\x69\x6b\x57\x35\x53','\x42\x6d\x6b\x36\x57\x37\x34','\x78\x38\x6b\x66\x73\x59\x47\x6b\x57\x50\x75','\x57\x37\x2f\x64\x4a\x53\x6b\x6b\x64\x38\x6b\x38\x57\x51\x6d','\x57\x37\x30\x4a\x57\x50\x7a\x58\x57\x34\x53\x4a\x57\x50\x4b','\x57\x4f\x4f\x4d\x64\x6d\x6f\x41\x57\x4f\x53\x58','\x57\x52\x46\x64\x48\x43\x6b\x76\x57\x4f\x65\x46\x57\x51\x62\x38\x57\x37\x6d','\x57\x52\x64\x64\x52\x6d\x6b\x52\x57\x52\x33\x63\x49\x38\x6f\x6a\x46\x59\x74\x64\x56\x53\x6f\x77\x62\x43\x6f\x6e\x57\x34\x4b','\x43\x6d\x6f\x69\x57\x52\x68\x64\x55\x6d\x6f\x57\x72\x61','\x57\x4f\x4f\x54\x57\x36\x52\x63\x4c\x4d\x39\x2f\x6d\x53\x6b\x4e\x57\x37\x4c\x66\x57\x35\x38','\x57\x4f\x47\x54\x7a\x53\x6f\x65\x61\x6d\x6f\x54\x45\x38\x6f\x4d','\x57\x51\x70\x63\x49\x43\x6f\x74\x76\x6d\x6f\x53\x57\x36\x48\x6e\x72\x6d\x6b\x76\x57\x52\x35\x59\x46\x43\x6b\x36','\x75\x43\x6b\x37\x57\x52\x2f\x63\x55\x38\x6b\x43\x57\x51\x6e\x5a','\x73\x30\x74\x63\x50\x73\x37\x64\x48\x38\x6f\x6a\x66\x53\x6f\x37\x41\x43\x6b\x39\x57\x34\x5a\x64\x53\x53\x6b\x36','\x72\x43\x6b\x53\x57\x37\x6c\x64\x4e\x66\x46\x63\x4d\x57','\x65\x43\x6f\x48\x57\x4f\x6c\x64\x54\x4d\x58\x72\x67\x71','\x78\x38\x6b\x66\x73\x49\x79\x6f\x57\x4f\x78\x63\x4c\x6d\x6f\x55','\x57\x35\x58\x54\x72\x53\x6f\x68\x6d\x71','\x45\x53\x6f\x43\x57\x51\x4a\x64\x56\x38\x6f\x48\x78\x33\x37\x64\x50\x61','\x6c\x38\x6b\x70\x57\x51\x37\x64\x52\x43\x6f\x44\x45\x33\x52\x64\x4b\x57','\x66\x61\x68\x64\x56\x78\x74\x63\x4b\x53\x6b\x6d','\x69\x53\x6b\x4b\x57\x51\x74\x64\x49\x43\x6f\x65','\x57\x35\x31\x35\x57\x51\x52\x64\x48\x63\x54\x75\x6b\x38\x6b\x34','\x65\x38\x6b\x4d\x7a\x6d\x6f\x4a\x57\x36\x64\x63\x56\x43\x6f\x7a\x57\x37\x4b','\x57\x36\x71\x66\x57\x35\x7a\x6e\x57\x4f\x70\x64\x47\x57\x47','\x57\x36\x42\x64\x52\x38\x6f\x61\x57\x37\x42\x64\x55\x6d\x6b\x6a','\x71\x38\x6b\x79\x67\x74\x70\x64\x55\x78\x75','\x61\x38\x6f\x69\x43\x49\x30\x69\x57\x50\x70\x63\x49\x6d\x6f\x39','\x57\x50\x52\x64\x4e\x43\x6f\x39\x57\x52\x33\x63\x48\x38\x6b\x57\x57\x34\x79','\x41\x53\x6b\x32\x57\x36\x64\x63\x52\x76\x5a\x63\x47\x71','\x57\x35\x42\x64\x55\x43\x6f\x65\x57\x50\x46\x64\x4a\x38\x6b\x4a\x76\x43\x6f\x76','\x67\x57\x42\x64\x4f\x4e\x46\x63\x4a\x47','\x57\x52\x70\x64\x4d\x58\x39\x41\x70\x78\x6a\x75\x57\x36\x38','\x61\x6d\x6f\x54\x57\x36\x4e\x64\x52\x6d\x6f\x44\x57\x37\x39\x31\x57\x36\x76\x6f\x7a\x53\x6f\x71\x57\x37\x53','\x6b\x4d\x79\x34\x57\x51\x56\x64\x55\x67\x6d','\x6e\x53\x6f\x48\x57\x52\x37\x64\x56\x57\x2f\x63\x54\x38\x6b\x4d\x57\x50\x38\x71\x57\x34\x37\x64\x51\x71','\x77\x6d\x6b\x54\x57\x36\x33\x64\x4c\x31\x5a\x63\x4a\x47','\x57\x52\x69\x39\x78\x53\x6b\x62\x57\x4f\x35\x37\x67\x6d\x6f\x31','\x62\x67\x46\x64\x54\x53\x6f\x66\x76\x63\x58\x4f\x57\x37\x34','\x6c\x6d\x6b\x4d\x57\x52\x70\x64\x48\x47','\x57\x37\x7a\x53\x67\x6d\x6f\x46\x57\x35\x6d\x38\x73\x6d\x6f\x68\x57\x37\x37\x64\x4b\x63\x53\x58\x57\x34\x34','\x57\x51\x37\x63\x53\x53\x6b\x2b\x61\x67\x35\x6c','\x77\x64\x56\x63\x52\x43\x6b\x74\x63\x68\x38\x58\x57\x35\x6c\x63\x53\x6d\x6f\x4f\x57\x34\x72\x4f\x79\x57','\x75\x53\x6b\x39\x57\x36\x42\x64\x4c\x65\x5a\x63\x4b\x61\x69','\x42\x72\x4f\x4d\x76\x4b\x72\x64\x57\x4f\x33\x63\x4d\x61','\x57\x4f\x70\x63\x54\x38\x6f\x4f\x57\x37\x64\x63\x50\x66\x66\x74','\x72\x53\x6b\x51\x57\x51\x56\x63\x53\x38\x6b\x68\x57\x51\x47','\x57\x51\x4e\x64\x48\x38\x6f\x63\x44\x78\x4f\x5a\x62\x71','\x68\x58\x52\x64\x50\x78\x53','\x57\x37\x62\x54\x57\x35\x5a\x63\x54\x4a\x4a\x64\x48\x47','\x57\x34\x50\x53\x57\x51\x5a\x64\x49\x64\x66\x41','\x66\x43\x6f\x73\x57\x37\x70\x63\x48\x6d\x6b\x45\x76\x30\x75\x78','\x6f\x6d\x6b\x6f\x57\x35\x2f\x63\x51\x65\x46\x64\x4d\x71','\x62\x6d\x6b\x59\x57\x4f\x37\x64\x50\x43\x6b\x4a\x57\x36\x38','\x57\x34\x61\x75\x73\x62\x74\x63\x47\x38\x6b\x59\x57\x4f\x4b','\x57\x52\x75\x56\x45\x53\x6f\x58\x57\x37\x37\x64\x48\x64\x61','\x46\x38\x6f\x6a\x6a\x31\x46\x63\x47\x38\x6b\x6f\x57\x37\x74\x64\x55\x71','\x7a\x6d\x6b\x32\x57\x36\x56\x63\x50\x4c\x56\x63\x4d\x53\x6b\x38\x57\x4f\x61','\x6f\x6d\x6b\x46\x7a\x47\x37\x64\x47\x53\x6f\x73\x57\x34\x37\x64\x50\x49\x6c\x63\x4f\x64\x74\x64\x4f\x71','\x79\x43\x6b\x58\x57\x36\x5a\x63\x51\x75\x52\x63\x4d\x43\x6b\x4d','\x41\x38\x6b\x37\x57\x36\x74\x63\x50\x4c\x52\x63\x4b\x53\x6b\x5a\x57\x50\x65','\x57\x51\x46\x64\x4d\x53\x6b\x34\x76\x43\x6b\x39\x6b\x71','\x57\x37\x56\x63\x4e\x43\x6f\x48\x64\x53\x6f\x54\x79\x4d\x2f\x64\x50\x6d\x6f\x62\x78\x53\x6b\x75\x63\x38\x6b\x62','\x70\x65\x4b\x61\x75\x78\x48\x69\x57\x50\x42\x63\x4b\x71','\x57\x51\x74\x64\x4f\x6d\x6f\x71\x7a\x43\x6f\x46\x57\x50\x38','\x57\x35\x66\x55\x46\x71','\x57\x52\x56\x63\x54\x38\x6b\x47\x42\x59\x42\x63\x55\x58\x52\x63\x4f\x47','\x62\x43\x6f\x69\x41\x5a\x6d\x46\x57\x52\x42\x63\x47\x53\x6f\x35','\x42\x63\x66\x36\x57\x37\x74\x63\x4f\x4a\x71\x45\x57\x36\x64\x64\x49\x48\x54\x73\x57\x50\x4b','\x6f\x65\x58\x49\x46\x4e\x4c\x55\x57\x52\x74\x63\x4c\x43\x6b\x35','\x57\x51\x74\x63\x51\x38\x6b\x68\x57\x51\x46\x63\x50\x53\x6f\x7a\x57\x35\x2f\x64\x47\x76\x2f\x63\x51\x33\x68\x63\x4b\x43\x6f\x30','\x57\x52\x70\x63\x53\x38\x6b\x48\x63\x32\x76\x45','\x57\x37\x6e\x33\x57\x35\x78\x63\x4f\x74\x68\x64\x4b\x71','\x57\x52\x4a\x63\x55\x6d\x6f\x65\x72\x71\x4a\x63\x49\x5a\x37\x63\x56\x65\x43','\x57\x51\x34\x54\x71\x6d\x6b\x6d\x57\x4f\x44\x2f','\x57\x51\x71\x39\x73\x38\x6b\x70\x57\x50\x44\x48\x63\x71','\x70\x4b\x6a\x47\x61\x57\x75\x46\x57\x51\x5a\x63\x48\x38\x6b\x55\x44\x61\x74\x63\x52\x47','\x7a\x53\x6f\x45\x57\x34\x46\x63\x55\x4d\x5a\x64\x4f\x61\x46\x64\x4e\x71','\x77\x43\x6b\x4f\x57\x36\x78\x64\x4d\x57','\x6d\x68\x57\x2b','\x57\x50\x79\x57\x66\x6d\x6f\x77\x57\x4f\x79\x49','\x57\x50\x46\x64\x48\x38\x6f\x2b\x57\x52\x33\x63\x4a\x38\x6b\x38\x57\x34\x30\x5a','\x57\x52\x5a\x63\x54\x6d\x6b\x2b\x63\x68\x4b','\x57\x36\x6c\x63\x56\x43\x6f\x34\x57\x36\x33\x64\x4a\x38\x6b\x75\x70\x47','\x62\x77\x52\x64\x53\x53\x6f\x6f\x75\x4a\x38','\x63\x43\x6b\x4c\x57\x4f\x46\x64\x4b\x43\x6b\x42\x57\x51\x4b\x71\x69\x30\x47\x76\x57\x37\x6a\x6e\x42\x57'];_0x800a=function(){return _0x4bc540;};return _0x800a();}import{extensions,blastRadius}from'\x2e\x2f\x63\x6f\x6d\x6d\x6f\x6e\x2e\x6a\x73';export const valueFactors=z['\x6f\x62\x6a\x65\x63\x74']({'\x73\x65\x76\x65\x72\x69\x74\x79':z[_0x2e215f(0x193,'\x6a\x28\x66\x23')]()[_0x2e215f(0x1ac,'\x76\x38\x38\x48')](0x20f5+0x2dd*-0xb+-0x22*0xb),'\x72\x65\x61\x63\x68':z[_0x2e215f(0x190,'\x73\x33\x40\x62')]()['\x64\x65\x66\x61\x75\x6c\x74'](0xe*0x1f7+0x215a+-0x26*0x19a),'\x73\x74\x72\x61\x74\x65\x67\x69\x63\x46\x69\x74':z[_0x2e215f(0x1a8,'\x5a\x29\x32\x41')]()[_0x2e215f(0x184,'\x43\x23\x42\x71')](-0x1*0xea1+-0xefa+0x1d9b),'\x6e\x6f\x76\x65\x6c\x74\x79':z[_0x2e215f(0x1c4,'\x6f\x5a\x24\x23')]()[_0x2e215f(0x174,'\x6f\x5a\x24\x23')](0x1*-0x1823+-0xba7*0x3+0x3b18),'\x63\x6f\x73\x74\x45\x73\x74':z[_0x2e215f(0x17a,'\x72\x61\x54\x73')]()[_0x2e215f(0x1b8,'\x57\x78\x4a\x6f')](0x7bd+0xe30+0x74f*-0x3)});export const problemPattern=z[_0x2e215f(0x19d,'\x57\x5e\x70\x66')]({'\x69\x64':z[_0x2e215f(0x1ba,'\x23\x23\x42\x58')](),'\x73\x69\x67\x6e\x61\x74\x75\x72\x65':z['\x73\x74\x72\x69\x6e\x67'](),'\x73\x69\x67\x6e\x61\x74\x75\x72\x65\x56':z[_0x2e215f(0x1a3,'\x68\x67\x64\x34')]()[_0x2e215f(0x198,'\x74\x6d\x5a\x6b')]()[_0x2e215f(0x1be,'\x30\x45\x34\x74')]()[_0x2e215f(0x174,'\x6f\x5a\x24\x23')](-0x1f7b+0x245*-0x2+0x601*0x6),'\x66\x69\x72\x73\x74\x53\x65\x65\x6e\x41\x74':z[_0x2e215f(0x1ae,'\x6f\x5a\x24\x23')]()[_0x2e215f(0x1c0,'\x4b\x32\x24\x69')](),'\x6c\x61\x73\x74\x53\x65\x65\x6e\x41\x74':z[_0x2e215f(0x177,'\x76\x38\x38\x48')]()[_0x2e215f(0x175,'\x72\x38\x59\x35')](),'\x6f\x63\x63\x75\x72\x72\x65\x6e\x63\x65\x73':z[_0x2e215f(0x1a2,'\x50\x41\x47\x45')]()['\x69\x6e\x74']()[_0x2e215f(0x16f,'\x57\x5e\x70\x66')+_0x2e215f(0x18a,'\x36\x68\x2a\x36')]()[_0x2e215f(0x194,'\x6a\x28\x66\x23')](-0x1c0c+-0x9b4+-0x97*-0x40),'\x6c\x69\x6e\x6b\x65\x64\x53\x69\x67\x6e\x61\x6c\x73':z[_0x2e215f(0x19b,'\x73\x33\x40\x62')](z['\x73\x74\x72\x69\x6e\x67']())['\x64\x65\x66\x61\x75\x6c\x74']([]),'\x72\x65\x73\x6f\x6c\x76\x65\x64\x42\x79':z[_0x2e215f(0x199,'\x35\x78\x50\x42')]()[_0x2e215f(0x1b0,'\x50\x41\x47\x45')]()[_0x2e215f(0x180,'\x4e\x76\x24\x29')](null),'\x73\x74\x61\x74\x75\x73':z[_0x2e215f(0x179,'\x64\x6a\x47\x5a')]([_0x2e215f(0x197,'\x6f\x5a\x24\x23'),_0x2e215f(0x1bc,'\x29\x32\x45\x6f'),_0x2e215f(0x16e,'\x6a\x28\x66\x23'),_0x2e215f(0x182,'\x43\x23\x42\x71')+'\x64'])['\x64\x65\x66\x61\x75\x6c\x74'](_0x2e215f(0x170,'\x70\x74\x39\x42')),'\x76\x61\x6c\x75\x65':valueFactors[_0x2e215f(0x180,'\x4e\x76\x24\x29')]({}),'\x63\x6f\x6e\x73\x65\x63\x75\x74\x69\x76\x65\x46\x61\x69\x6c\x75\x72\x65\x73':z[_0x2e215f(0x1b4,'\x64\x6a\x47\x5a')]()[_0x2e215f(0x1a1,'\x43\x23\x42\x71')]()[_0x2e215f(0x185,'\x43\x23\x42\x71')+'\x69\x76\x65']()[_0x2e215f(0x1a4,'\x37\x21\x46\x21')](-0xfad+-0xd73+0x1d20),'\x63\x6f\x6f\x6c\x64\x6f\x77\x6e\x55\x6e\x74\x69\x6c':z[_0x2e215f(0x189,'\x32\x33\x61\x5d')]()[_0x2e215f(0x1b2,'\x5a\x29\x32\x41')]()[_0x2e215f(0x1a6,'\x45\x48\x31\x39')]()[_0x2e215f(0x1af,'\x28\x21\x62\x56')](null),'\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x73':extensions});function _0x4699(_0x4b78e1,_0x51701e){_0x4b78e1=_0x4b78e1-(-0xf83+-0x2*-0x2e0+-0xf*-0xbf);const _0x10d5de=_0x800a();let _0x523ff3=_0x10d5de[_0x4b78e1];if(_0x4699['\x69\x51\x53\x50\x45\x61']===undefined){var _0x48e69c=function(_0x29152c){const _0x11ed36='\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 _0x7f0472='',_0x45aae7='';for(let _0x1d7b26=0xbf7*0x2+0x10b6+-0x28a4,_0x439ae3,_0x10f465,_0x441fd2=-0x935*-0x1+0x6ef*0x4+0x31*-0xc1;_0x10f465=_0x29152c['\x63\x68\x61\x72\x41\x74'](_0x441fd2++);~_0x10f465&&(_0x439ae3=_0x1d7b26%(-0x1568+0x25a8+-0x103c)?_0x439ae3*(0x68c+-0x4e+-0x5fe)+_0x10f465:_0x10f465,_0x1d7b26++%(0x13*-0x1d7+0x10a+0x21ef))?_0x7f0472+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x7bd+0xe30+0x8d*-0x26&_0x439ae3>>(-(-0x1f7b+0x245*-0x2+0x2407*0x1)*_0x1d7b26&-0x1c0c+-0x9b4+-0x3c7*-0xa)):-0xfad+-0xd73+0x1d20){_0x10f465=_0x11ed36['\x69\x6e\x64\x65\x78\x4f\x66'](_0x10f465);}for(let _0x196cfa=-0xed0+-0x4*0x1e6+0x1668,_0x16dfcf=_0x7f0472['\x6c\x65\x6e\x67\x74\x68'];_0x196cfa<_0x16dfcf;_0x196cfa++){_0x45aae7+='\x25'+('\x30\x30'+_0x7f0472['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x196cfa)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x1546+-0x3*-0x411+-0x2169))['\x73\x6c\x69\x63\x65'](-(0xe68+0x1d77*0x1+0xe9f*-0x3));}return decodeURIComponent(_0x45aae7);};const _0x1d2a6f=function(_0x3b8165,_0x4245f0){let _0x438754=[],_0x10609f=-0x17a9*-0x1+-0x339+-0x6d*0x30,_0x43c05b,_0x18a426='';_0x3b8165=_0x48e69c(_0x3b8165);let _0x26a0de;for(_0x26a0de=0x283+-0x5*0x1f2+0x737;_0x26a0de<0x1de4+-0x1d66+0x82;_0x26a0de++){_0x438754[_0x26a0de]=_0x26a0de;}for(_0x26a0de=-0x75e+0x15a0+-0xe42;_0x26a0de<-0x1363+-0x1a9c+0x35*0xe3;_0x26a0de++){_0x10609f=(_0x10609f+_0x438754[_0x26a0de]+_0x4245f0['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x26a0de%_0x4245f0['\x6c\x65\x6e\x67\x74\x68']))%(-0x1*0x1a06+0x1abf+-0x47*-0x1),_0x43c05b=_0x438754[_0x26a0de],_0x438754[_0x26a0de]=_0x438754[_0x10609f],_0x438754[_0x10609f]=_0x43c05b;}_0x26a0de=0x15bf+0x12f4+-0x1*0x28b3,_0x10609f=-0xc62+-0x90f+0xb*0x1f3;for(let _0xff2393=-0x6*0x125+-0x1f79+0x2f3*0xd;_0xff2393<_0x3b8165['\x6c\x65\x6e\x67\x74\x68'];_0xff2393++){_0x26a0de=(_0x26a0de+(0x134*-0xa+0x2258+0x1*-0x164f))%(-0xf9*-0xd+0x584+-0x1129*0x1),_0x10609f=(_0x10609f+_0x438754[_0x26a0de])%(0x23bf+-0x2a6+-0xb*0x2eb),_0x43c05b=_0x438754[_0x26a0de],_0x438754[_0x26a0de]=_0x438754[_0x10609f],_0x438754[_0x10609f]=_0x43c05b,_0x18a426+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x3b8165['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xff2393)^_0x438754[(_0x438754[_0x26a0de]+_0x438754[_0x10609f])%(0x691+0x1f2c+-0xc3f*0x3)]);}return _0x18a426;};_0x4699['\x47\x42\x6f\x67\x4e\x4d']=_0x1d2a6f,_0x4699['\x72\x45\x51\x4c\x49\x66']={},_0x4699['\x69\x51\x53\x50\x45\x61']=!![];}const _0x3cff4f=_0x10d5de[0xbba+-0x2436+-0x187c*-0x1],_0x5e9a1d=_0x4b78e1+_0x3cff4f,_0x2e6023=_0x4699['\x72\x45\x51\x4c\x49\x66'][_0x5e9a1d];return!_0x2e6023?(_0x4699['\x62\x55\x66\x48\x54\x66']===undefined&&(_0x4699['\x62\x55\x66\x48\x54\x66']=!![]),_0x523ff3=_0x4699['\x47\x42\x6f\x67\x4e\x4d'](_0x523ff3,_0x51701e),_0x4699['\x72\x45\x51\x4c\x49\x66'][_0x5e9a1d]=_0x523ff3):_0x523ff3=_0x2e6023,_0x523ff3;}export const problemInstance=z[_0x2e215f(0x1a5,'\x35\x78\x50\x42')]({'\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x64':z[_0x2e215f(0x17b,'\x59\x46\x40\x7a')](),'\x73\x69\x67\x6e\x61\x74\x75\x72\x65':z['\x73\x74\x72\x69\x6e\x67'](),'\x73\x69\x67\x6e\x61\x74\x75\x72\x65\x56':z[_0x2e215f(0x186,'\x72\x23\x2a\x34')]()[_0x2e215f(0x19f,'\x6f\x5a\x24\x23')]()[_0x2e215f(0x181,'\x42\x32\x67\x55')]()[_0x2e215f(0x178,'\x50\x26\x4b\x67')](-0xed0+-0x4*0x1e6+0x1669),'\x6f\x63\x63\x75\x72\x72\x65\x64\x41\x74':z['\x73\x74\x72\x69\x6e\x67']()[_0x2e215f(0x1b6,'\x59\x46\x40\x7a')](),'\x6c\x69\x6e\x6b\x65\x64\x53\x69\x67\x6e\x61\x6c':z[_0x2e215f(0x17e,'\x54\x73\x35\x55')]()[_0x2e215f(0x1b7,'\x25\x48\x6c\x43')](),'\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x73':extensions});export const resolutionScope=z[_0x2e215f(0x1bd,'\x43\x23\x42\x71')]({'\x73\x63\x6f\x70\x65\x49\x64':z[_0x2e215f(0x1c2,'\x74\x6d\x5a\x6b')](),'\x74\x61\x72\x67\x65\x74\x50\x72\x6f\x62\x6c\x65\x6d\x73':z[_0x2e215f(0x1b5,'\x70\x74\x39\x42')](z[_0x2e215f(0x1b9,'\x51\x21\x49\x73')]())[_0x2e215f(0x174,'\x6f\x5a\x24\x23')]([]),'\x70\x72\x6f\x70\x6f\x73\x65\x64\x42\x79\x47\x65\x6e\x65':z['\x73\x74\x72\x69\x6e\x67']()[_0x2e215f(0x19a,'\x29\x32\x45\x6f')]()[_0x2e215f(0x1af,'\x28\x21\x62\x56')](null),'\x62\x6f\x75\x6e\x64\x61\x72\x79':z[_0x2e215f(0x17d,'\x4e\x5b\x70\x56')]({'\x63\x6f\x64\x65\x50\x61\x74\x68\x73':z[_0x2e215f(0x1b1,'\x63\x45\x4f\x57')](z[_0x2e215f(0x17e,'\x54\x73\x35\x55')]())[_0x2e215f(0x19c,'\x7a\x4a\x45\x59')]([]),'\x64\x61\x74\x61\x53\x75\x72\x66\x61\x63\x65\x73':z[_0x2e215f(0x1bf,'\x64\x6a\x47\x5a')](z[_0x2e215f(0x172,'\x73\x33\x40\x62')]())['\x64\x65\x66\x61\x75\x6c\x74']([]),'\x62\x6c\x61\x73\x74\x52\x61\x64\x69\x75\x73':blastRadius[_0x2e215f(0x17f,'\x6b\x23\x5e\x62')](_0x2e215f(0x191,'\x72\x61\x54\x73'))}),'\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x73':extensions});
|
|
@@ -1,9 +1 @@
|
|
|
1
|
-
|
|
2
|
-
/** 产出证据 (批注#19): 解锁非 coding agent, 不再"无 git 变动=没产出". */
|
|
3
|
-
export const proofOfWork = z.object({
|
|
4
|
-
kind: z.enum(['git_diff', 'artifact_hash', 'external_receipt', 'tool_call_trace']),
|
|
5
|
-
gitDiff: z.object({ files: z.number().int(), lines: z.number().int(), patchRef: z.string().optional() }).optional(),
|
|
6
|
-
artifactHash: z.object({ sha256: z.string(), mime: z.string().optional(), size: z.number().int() }).optional(),
|
|
7
|
-
externalReceipt: z.object({ provider: z.string(), receiptId: z.string(), ts: z.string() }).optional(),
|
|
8
|
-
toolCallTrace: z.object({ calls: z.number().int(), ref: z.string().optional() }).optional(),
|
|
9
|
-
});
|
|
1
|
+
const _0x147a00=_0xf8b8;(function(_0x14eae0,_0x2458ee){const _0x4ff703=_0xf8b8,_0x47ec3f=_0x14eae0();while(!![]){try{const _0x296af2=-parseInt(_0x4ff703(0x160,'\x58\x26\x67\x77'))/(-0x1*-0x1669+-0x5b6+-0x859*0x2)*(parseInt(_0x4ff703(0x167,'\x21\x70\x54\x51'))/(-0xac9+-0x1653+0x211e))+parseInt(_0x4ff703(0x16f,'\x44\x75\x70\x79'))/(-0xe6a+0x6*0x70+0xbcd)+-parseInt(_0x4ff703(0x161,'\x68\x74\x32\x61'))/(-0x10ba*-0x1+0xd6+-0x118c)+parseInt(_0x4ff703(0x169,'\x59\x6c\x36\x6f'))/(-0x2a5*0xa+-0xd*-0x167+-0x11*-0x7c)*(parseInt(_0x4ff703(0x162,'\x44\x4f\x6e\x59'))/(-0x1533+-0x3a6+0x18df))+-parseInt(_0x4ff703(0x18d,'\x62\x61\x49\x74'))/(0x3*-0x155+0xa86+-0x680)+parseInt(_0x4ff703(0x18a,'\x21\x70\x54\x51'))/(-0x11*-0x1fd+0x1*-0xf1a+0x9*-0x213)+-parseInt(_0x4ff703(0x16c,'\x68\x56\x35\x2a'))/(-0x1*0x127+-0x236+0x366)*(-parseInt(_0x4ff703(0x173,'\x5b\x47\x6f\x77'))/(0x7*0x218+0x1e3*-0xd+0x9e9));if(_0x296af2===_0x2458ee)break;else _0x47ec3f['push'](_0x47ec3f['shift']());}catch(_0x5e96ff){_0x47ec3f['push'](_0x47ec3f['shift']());}}}(_0x4fc5,0x107*-0x60+-0x45a40+-0xe5*-0x7d1));import{z}from'\x7a\x6f\x64';function _0xf8b8(_0xcf21cd,_0x23a5aa){_0xcf21cd=_0xcf21cd-(-0x61*-0x29+0x77*-0x1e+-0x39);const _0x3dd19f=_0x4fc5();let _0x94b4ea=_0x3dd19f[_0xcf21cd];if(_0xf8b8['\x4d\x67\x71\x56\x50\x77']===undefined){var _0x23199d=function(_0x17caeb){const _0x5ed1cd='\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 _0x61bec4='',_0xcd8dc1='';for(let _0x12b0b2=-0xc44*-0x2+-0x1cec+-0x464*-0x1,_0x309489,_0x470dc4,_0x1dd40f=0xaa*0x10+-0x1d98+0x12f8;_0x470dc4=_0x17caeb['\x63\x68\x61\x72\x41\x74'](_0x1dd40f++);~_0x470dc4&&(_0x309489=_0x12b0b2%(-0x1*0x22e1+0x270d+-0x10a*0x4)?_0x309489*(-0x143e+-0x1edb+-0xa45*-0x5)+_0x470dc4:_0x470dc4,_0x12b0b2++%(-0x3*-0xa52+-0x1*-0x21d+-0x210f))?_0x61bec4+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x636+-0x1aca+-0x107*-0x15&_0x309489>>(-(0xc41+0x13bd*-0x1+-0x3bf*-0x2)*_0x12b0b2&0x1450+0xe*0x11+0xc2*-0x1c)):0x1e99+-0x736+0x1763*-0x1){_0x470dc4=_0x5ed1cd['\x69\x6e\x64\x65\x78\x4f\x66'](_0x470dc4);}for(let _0xf07815=0x9c7+0x1ab3+-0x247a,_0x381fae=_0x61bec4['\x6c\x65\x6e\x67\x74\x68'];_0xf07815<_0x381fae;_0xf07815++){_0xcd8dc1+='\x25'+('\x30\x30'+_0x61bec4['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xf07815)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x1f36+-0x18db+0xb3*-0x9))['\x73\x6c\x69\x63\x65'](-(0x1804+-0x463*-0x4+-0x49e*0x9));}return decodeURIComponent(_0xcd8dc1);};const _0x598bb7=function(_0x4bc010,_0x568982){let _0x227a0b=[],_0x11e46e=0xca*-0x1e+0x1256+-0x2*-0x2ab,_0xada241,_0xdb9514='';_0x4bc010=_0x23199d(_0x4bc010);let _0x9245f0;for(_0x9245f0=-0xbf7+0xbb1+0x46;_0x9245f0<-0x2536+-0x24ad+-0x4ae3*-0x1;_0x9245f0++){_0x227a0b[_0x9245f0]=_0x9245f0;}for(_0x9245f0=0x1190+0x1*0x7db+-0x879*0x3;_0x9245f0<-0x2455+0x657*-0x2+0x3203;_0x9245f0++){_0x11e46e=(_0x11e46e+_0x227a0b[_0x9245f0]+_0x568982['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x9245f0%_0x568982['\x6c\x65\x6e\x67\x74\x68']))%(-0x4*-0x1be+-0xa77+0x47f),_0xada241=_0x227a0b[_0x9245f0],_0x227a0b[_0x9245f0]=_0x227a0b[_0x11e46e],_0x227a0b[_0x11e46e]=_0xada241;}_0x9245f0=-0x157d+-0x807+0x1*0x1d84,_0x11e46e=0x85f+-0x5*0x61f+-0x2*-0xb1e;for(let _0x1de583=0x2*0x41f+0x236+-0xa74;_0x1de583<_0x4bc010['\x6c\x65\x6e\x67\x74\x68'];_0x1de583++){_0x9245f0=(_0x9245f0+(0x10e6+-0x794+-0x9f*0xf))%(0x292*0xc+0x8e7+-0x26bf),_0x11e46e=(_0x11e46e+_0x227a0b[_0x9245f0])%(-0x25b7*0x1+-0x12*-0x1c+0x24bf),_0xada241=_0x227a0b[_0x9245f0],_0x227a0b[_0x9245f0]=_0x227a0b[_0x11e46e],_0x227a0b[_0x11e46e]=_0xada241,_0xdb9514+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x4bc010['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1de583)^_0x227a0b[(_0x227a0b[_0x9245f0]+_0x227a0b[_0x11e46e])%(-0x94b+-0x13db*-0x1+-0x990)]);}return _0xdb9514;};_0xf8b8['\x7a\x62\x4b\x56\x79\x58']=_0x598bb7,_0xf8b8['\x77\x67\x47\x4c\x58\x47']={},_0xf8b8['\x4d\x67\x71\x56\x50\x77']=!![];}const _0x13b44e=_0x3dd19f[0x11*-0xdb+0x264+0xc27],_0x207782=_0xcf21cd+_0x13b44e,_0x3bd02a=_0xf8b8['\x77\x67\x47\x4c\x58\x47'][_0x207782];return!_0x3bd02a?(_0xf8b8['\x6b\x45\x49\x4b\x44\x62']===undefined&&(_0xf8b8['\x6b\x45\x49\x4b\x44\x62']=!![]),_0x94b4ea=_0xf8b8['\x7a\x62\x4b\x56\x79\x58'](_0x94b4ea,_0x23a5aa),_0xf8b8['\x77\x67\x47\x4c\x58\x47'][_0x207782]=_0x94b4ea):_0x94b4ea=_0x3bd02a,_0x94b4ea;}function _0x4fc5(){const _0x6bffba=['\x76\x33\x52\x63\x52\x38\x6b\x39\x76\x76\x61','\x73\x6d\x6b\x44\x57\x51\x74\x64\x4f\x6d\x6b\x69\x57\x34\x64\x63\x51\x6d\x6b\x41','\x57\x36\x78\x63\x4c\x53\x6b\x32\x57\x4f\x33\x63\x4b\x43\x6f\x63\x57\x4f\x44\x42','\x57\x4f\x57\x61\x79\x6d\x6b\x68\x57\x4f\x71\x74','\x57\x34\x7a\x56\x57\x51\x6c\x64\x4f\x67\x61\x7a','\x65\x53\x6b\x33\x57\x37\x61','\x57\x50\x53\x33\x6d\x53\x6f\x4f\x71\x53\x6b\x33\x43\x43\x6b\x59','\x57\x50\x68\x64\x4f\x64\x38\x6a\x57\x4f\x4f\x2f','\x57\x36\x69\x44\x46\x48\x62\x39\x57\x51\x6d','\x75\x58\x42\x64\x49\x43\x6b\x6f\x57\x34\x72\x50\x57\x34\x65\x51\x79\x38\x6b\x61\x57\x4f\x53\x71\x61\x47','\x57\x35\x44\x72\x57\x50\x70\x63\x4f\x6d\x6b\x77\x62\x47','\x79\x33\x2f\x63\x4a\x38\x6b\x48\x46\x74\x30','\x41\x38\x6b\x59\x57\x52\x78\x64\x4d\x30\x4a\x64\x47\x72\x31\x31\x57\x50\x64\x63\x4e\x32\x58\x62\x71\x57','\x57\x34\x4f\x49\x57\x4f\x68\x64\x50\x43\x6b\x58\x57\x50\x71\x4f\x57\x51\x61','\x57\x52\x37\x64\x4f\x38\x6b\x52\x66\x43\x6f\x34\x57\x50\x43','\x57\x52\x74\x63\x49\x53\x6b\x52\x6d\x53\x6f\x62\x57\x34\x68\x64\x4d\x61','\x57\x51\x6e\x2f\x43\x38\x6b\x4d\x6b\x53\x6b\x55\x61\x49\x6a\x58\x57\x52\x33\x63\x4b\x47','\x71\x53\x6f\x47\x57\x52\x44\x64\x57\x35\x64\x64\x56\x59\x47\x71\x57\x37\x31\x41\x57\x50\x71\x53','\x57\x34\x62\x2f\x44\x6d\x6b\x5a\x67\x38\x6f\x52\x77\x38\x6b\x78\x57\x34\x4f\x6d\x68\x63\x69','\x57\x37\x52\x64\x4d\x53\x6b\x30\x46\x4a\x58\x50\x57\x52\x4c\x6f\x57\x34\x79\x41\x57\x51\x64\x64\x56\x73\x4b','\x6c\x66\x64\x63\x55\x57','\x57\x34\x33\x63\x54\x31\x35\x38\x57\x34\x56\x63\x4e\x6d\x6b\x62\x57\x51\x68\x64\x4a\x43\x6b\x79\x57\x34\x6c\x64\x4a\x47','\x57\x37\x30\x33\x6e\x38\x6f\x38\x43\x6d\x6b\x54\x62\x73\x71','\x75\x68\x70\x63\x53\x53\x6f\x38\x57\x4f\x75\x43\x57\x4f\x53','\x57\x37\x54\x78\x57\x4f\x74\x63\x51\x53\x6b\x44\x63\x61\x42\x64\x4b\x47','\x57\x50\x75\x57\x57\x50\x64\x63\x54\x6d\x6b\x42\x63\x38\x6f\x75','\x57\x34\x6c\x64\x55\x65\x68\x64\x51\x47','\x57\x34\x54\x76\x57\x50\x78\x63\x4f\x6d\x6b\x78\x64\x58\x46\x64\x49\x47','\x57\x50\x34\x4f\x57\x37\x5a\x63\x54\x4a\x44\x41\x73\x65\x79\x6a\x57\x4f\x39\x54\x6b\x57','\x69\x6d\x6f\x56\x64\x71','\x57\x50\x66\x2b\x71\x32\x61\x5a\x57\x51\x72\x57\x79\x4c\x5a\x64\x54\x53\x6b\x37\x57\x34\x57','\x57\x50\x68\x63\x50\x71\x70\x63\x56\x53\x6b\x6d\x57\x51\x4c\x58\x57\x35\x37\x64\x4a\x43\x6b\x2f\x66\x67\x6d','\x6a\x6d\x6b\x58\x57\x36\x75\x61\x57\x4f\x47','\x57\x50\x52\x64\x52\x53\x6b\x39\x42\x5a\x7a\x48\x57\x50\x79','\x57\x52\x31\x72\x57\x34\x76\x49\x57\x52\x43\x6f','\x45\x53\x6b\x58\x66\x43\x6f\x38\x57\x35\x66\x6c\x57\x35\x79\x75','\x70\x38\x6f\x2f\x57\x37\x46\x63\x49\x61\x6c\x63\x4c\x4b\x48\x4f','\x79\x32\x33\x63\x4b\x43\x6b\x54\x43\x73\x46\x64\x4c\x68\x47','\x57\x34\x4f\x32\x62\x74\x54\x51\x57\x37\x48\x41\x72\x57','\x6a\x53\x6f\x58\x64\x43\x6f\x42\x57\x35\x4c\x6f\x57\x37\x4f\x31','\x57\x51\x64\x63\x50\x38\x6f\x77\x75\x38\x6f\x46\x57\x36\x65','\x57\x34\x37\x64\x55\x65\x61','\x6c\x43\x6b\x67\x61\x62\x58\x36\x6b\x6d\x6f\x42\x6a\x32\x74\x64\x4a\x4a\x33\x64\x50\x61','\x75\x58\x37\x64\x47\x6d\x6b\x6c\x57\x34\x6d\x57\x57\x50\x38\x34\x41\x6d\x6b\x62\x57\x4f\x75','\x57\x51\x68\x63\x53\x6d\x6f\x72\x76\x6d\x6f\x7a\x57\x36\x43','\x6b\x53\x6b\x66\x64\x48\x6e\x37\x6b\x43\x6b\x42\x67\x4e\x74\x64\x52\x59\x6c\x64\x4a\x43\x6f\x49','\x66\x53\x6f\x53\x75\x4a\x62\x35\x57\x36\x53\x51\x57\x35\x54\x47\x6a\x63\x57\x67','\x57\x52\x37\x64\x53\x43\x6b\x31\x67\x43\x6f\x30\x57\x4f\x30\x57\x57\x50\x34','\x72\x53\x6b\x35\x45\x53\x6f\x2b\x57\x37\x33\x63\x4c\x58\x30'];_0x4fc5=function(){return _0x6bffba;};return _0x4fc5();}export const proofOfWork=z[_0x147a00(0x15e,'\x34\x36\x54\x4e')]({'\x6b\x69\x6e\x64':z[_0x147a00(0x16a,'\x44\x75\x70\x79')]([_0x147a00(0x182,'\x47\x29\x65\x39'),_0x147a00(0x18e,'\x46\x49\x21\x56')+_0x147a00(0x170,'\x68\x74\x32\x61'),_0x147a00(0x174,'\x62\x61\x49\x74')+_0x147a00(0x168,'\x24\x53\x21\x40'),_0x147a00(0x183,'\x42\x55\x61\x45')+_0x147a00(0x171,'\x78\x35\x41\x4d')]),'\x67\x69\x74\x44\x69\x66\x66':z[_0x147a00(0x178,'\x4e\x49\x6b\x4e')]({'\x66\x69\x6c\x65\x73':z['\x6e\x75\x6d\x62\x65\x72']()[_0x147a00(0x16d,'\x5b\x47\x6f\x77')](),'\x6c\x69\x6e\x65\x73':z[_0x147a00(0x185,'\x68\x56\x35\x2a')]()[_0x147a00(0x164,'\x70\x40\x6c\x54')](),'\x70\x61\x74\x63\x68\x52\x65\x66':z[_0x147a00(0x18b,'\x24\x53\x21\x40')]()[_0x147a00(0x187,'\x44\x4f\x6e\x59')]()})[_0x147a00(0x175,'\x4d\x30\x77\x6d')](),'\x61\x72\x74\x69\x66\x61\x63\x74\x48\x61\x73\x68':z[_0x147a00(0x189,'\x24\x54\x21\x4b')]({'\x73\x68\x61\x32\x35\x36':z['\x73\x74\x72\x69\x6e\x67'](),'\x6d\x69\x6d\x65':z[_0x147a00(0x172,'\x30\x77\x37\x5d')]()[_0x147a00(0x166,'\x58\x26\x67\x77')](),'\x73\x69\x7a\x65':z[_0x147a00(0x17c,'\x4e\x49\x6b\x4e')]()[_0x147a00(0x179,'\x44\x75\x70\x79')]()})[_0x147a00(0x16b,'\x24\x53\x21\x40')](),'\x65\x78\x74\x65\x72\x6e\x61\x6c\x52\x65\x63\x65\x69\x70\x74':z[_0x147a00(0x18c,'\x4d\x30\x77\x6d')]({'\x70\x72\x6f\x76\x69\x64\x65\x72':z['\x73\x74\x72\x69\x6e\x67'](),'\x72\x65\x63\x65\x69\x70\x74\x49\x64':z[_0x147a00(0x184,'\x63\x69\x55\x45')](),'\x74\x73':z[_0x147a00(0x181,'\x69\x36\x37\x29')]()})[_0x147a00(0x17f,'\x34\x36\x54\x4e')](),'\x74\x6f\x6f\x6c\x43\x61\x6c\x6c\x54\x72\x61\x63\x65':z['\x6f\x62\x6a\x65\x63\x74']({'\x63\x61\x6c\x6c\x73':z['\x6e\x75\x6d\x62\x65\x72']()[_0x147a00(0x186,'\x68\x74\x32\x61')](),'\x72\x65\x66':z[_0x147a00(0x188,'\x6a\x48\x54\x68')]()[_0x147a00(0x177,'\x5b\x47\x6f\x77')]()})[_0x147a00(0x176,'\x6e\x65\x29\x4a')]()});
|
package/dist/schema/signal.js
CHANGED
|
@@ -1,19 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { ulid, extensions } from './common.js';
|
|
3
|
-
/** 三层签名·工程层 (军杰 §4.2). camelCase (内部类型, schema §0 / 硬化 A10). */
|
|
4
|
-
export const eventSignature = z.string();
|
|
5
|
-
/** 三层签名·领域层 (军杰 §4.3), 不含 gene_id. */
|
|
6
|
-
export const problemSignature = z.string();
|
|
7
|
-
/** 选择压. 三条腿: 结构化强 / corpus 弱 / agent 自标 (批注#13). */
|
|
8
|
-
export const signal = z.object({
|
|
9
|
-
signalId: ulid,
|
|
10
|
-
fromMaterial: z.array(ulid).default([]),
|
|
11
|
-
kind: z.enum(['strong_structured', 'weak_corpus', 'agent_marked', 'verified_success']),
|
|
12
|
-
text: z.string(),
|
|
13
|
-
score: z.number().min(0).max(1).default(0),
|
|
14
|
-
eventSignature,
|
|
15
|
-
problemSignature,
|
|
16
|
-
signatureV: z.number().int().positive().default(1),
|
|
17
|
-
discoveredAt: z.string().datetime(),
|
|
18
|
-
extensions,
|
|
19
|
-
});
|
|
1
|
+
function _0x4a26(_0x133759,_0x1dc9d3){_0x133759=_0x133759-(0x5b*-0x1f+-0x2b7*0xb+0x2a83);const _0x56fee9=_0x5b8a();let _0x26da7b=_0x56fee9[_0x133759];if(_0x4a26['\x6b\x6d\x6f\x47\x51\x42']===undefined){var _0x3eb700=function(_0x4e97de){const _0x43946d='\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 _0x1c635a='',_0x123c9b='';for(let _0x1719ec=-0x21f1+-0x1a87*-0x1+-0x2*-0x3b5,_0x3d15ae,_0x28f7a2,_0x3e3f5f=0x3*-0x7e3+0x16b5+0xf4;_0x28f7a2=_0x4e97de['\x63\x68\x61\x72\x41\x74'](_0x3e3f5f++);~_0x28f7a2&&(_0x3d15ae=_0x1719ec%(0xa26+0x362+-0x1*0xd84)?_0x3d15ae*(-0x1*-0x2507+0xb19+0x4*-0xbf8)+_0x28f7a2:_0x28f7a2,_0x1719ec++%(-0x1*-0x129f+0x9*0x139+-0x1d9c))?_0x1c635a+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x8ee+-0x95f+0x1*0x134c&_0x3d15ae>>(-(0x2*0x149+0xc9*0x21+-0x1c79*0x1)*_0x1719ec&0x1aac+-0x2b*-0x9d+-0x3505)):-0x10d9+-0x899+-0xcb9*-0x2){_0x28f7a2=_0x43946d['\x69\x6e\x64\x65\x78\x4f\x66'](_0x28f7a2);}for(let _0x1eae6f=0x1*0x1027+-0x24fb*-0x1+0x8db*-0x6,_0x437f82=_0x1c635a['\x6c\x65\x6e\x67\x74\x68'];_0x1eae6f<_0x437f82;_0x1eae6f++){_0x123c9b+='\x25'+('\x30\x30'+_0x1c635a['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1eae6f)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0x134a+0x4fb+0x1*0xe5f))['\x73\x6c\x69\x63\x65'](-(0x1918+-0x1*-0x210b+-0x3a21));}return decodeURIComponent(_0x123c9b);};const _0x3a06a7=function(_0x312f4c,_0x2596d2){let _0x55b8db=[],_0x12d06f=0xfd6+-0x5*0x6bc+-0x3*-0x5f2,_0x1009b9,_0x9135ec='';_0x312f4c=_0x3eb700(_0x312f4c);let _0x92e1d0;for(_0x92e1d0=0x1*-0x28d+0x78b+0x6*-0xd5;_0x92e1d0<-0x13de*0x1+-0x797+0x1c75;_0x92e1d0++){_0x55b8db[_0x92e1d0]=_0x92e1d0;}for(_0x92e1d0=0x3*-0x289+-0x7*-0x36+0x621;_0x92e1d0<0xb4d+0x12cb+-0x746*0x4;_0x92e1d0++){_0x12d06f=(_0x12d06f+_0x55b8db[_0x92e1d0]+_0x2596d2['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x92e1d0%_0x2596d2['\x6c\x65\x6e\x67\x74\x68']))%(-0x1e76+0x856+0x1720),_0x1009b9=_0x55b8db[_0x92e1d0],_0x55b8db[_0x92e1d0]=_0x55b8db[_0x12d06f],_0x55b8db[_0x12d06f]=_0x1009b9;}_0x92e1d0=-0x4b9+0x10cb+0xa*-0x135,_0x12d06f=-0x4c6+-0x18d*0x1+0x653;for(let _0x571960=-0x49*0x7d+-0x1494+-0x25*-0x185;_0x571960<_0x312f4c['\x6c\x65\x6e\x67\x74\x68'];_0x571960++){_0x92e1d0=(_0x92e1d0+(-0x2512+-0x1318+0x382b))%(-0x3d7*0x2+0x45a+0x454),_0x12d06f=(_0x12d06f+_0x55b8db[_0x92e1d0])%(-0x4c+-0x13b+0x287),_0x1009b9=_0x55b8db[_0x92e1d0],_0x55b8db[_0x92e1d0]=_0x55b8db[_0x12d06f],_0x55b8db[_0x12d06f]=_0x1009b9,_0x9135ec+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x312f4c['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x571960)^_0x55b8db[(_0x55b8db[_0x92e1d0]+_0x55b8db[_0x12d06f])%(-0x2138*0x1+0x20ba+0x17e)]);}return _0x9135ec;};_0x4a26['\x6b\x62\x6c\x44\x48\x51']=_0x3a06a7,_0x4a26['\x4f\x45\x55\x65\x50\x45']={},_0x4a26['\x6b\x6d\x6f\x47\x51\x42']=!![];}const _0x4069dd=_0x56fee9[0x4b*0x3a+0xb*-0x371+0x31*0x6d],_0x38d483=_0x133759+_0x4069dd,_0x323e7c=_0x4a26['\x4f\x45\x55\x65\x50\x45'][_0x38d483];return!_0x323e7c?(_0x4a26['\x48\x44\x53\x4e\x75\x42']===undefined&&(_0x4a26['\x48\x44\x53\x4e\x75\x42']=!![]),_0x26da7b=_0x4a26['\x6b\x62\x6c\x44\x48\x51'](_0x26da7b,_0x1dc9d3),_0x4a26['\x4f\x45\x55\x65\x50\x45'][_0x38d483]=_0x26da7b):_0x26da7b=_0x323e7c,_0x26da7b;}const _0x3bbdb4=_0x4a26;(function(_0x27eadf,_0x1a9837){const _0x2150f6=_0x4a26,_0x5a8875=_0x27eadf();while(!![]){try{const _0x3cde09=parseInt(_0x2150f6(0x1bd,'\x43\x57\x79\x25'))/(-0x1773+-0x49*0x7d+0x3b19)*(parseInt(_0x2150f6(0x1b9,'\x21\x57\x28\x28'))/(0x385+-0xeec+0xb69))+parseInt(_0x2150f6(0x1b8,'\x63\x78\x64\x4d'))/(-0x1e5d+0x3*-0xa13+0x3c99)*(-parseInt(_0x2150f6(0x1c9,'\x31\x41\x5e\x25'))/(-0x3b7+-0x3df+0x79a))+parseInt(_0x2150f6(0x1bc,'\x57\x5b\x42\x65'))/(-0x10d+0x1e73*-0x1+0x1f85)*(-parseInt(_0x2150f6(0x1c8,'\x28\x31\x24\x72'))/(-0xe03*0x1+0x28*-0x27+0x1*0x1421))+parseInt(_0x2150f6(0x1c5,'\x48\x45\x4a\x74'))/(0x906+0xe06+-0x1705)*(-parseInt(_0x2150f6(0x1bf,'\x34\x48\x52\x45'))/(0x1*-0x73d+0x4*0x314+0x1*-0x50b))+-parseInt(_0x2150f6(0x1c2,'\x25\x76\x54\x52'))/(-0xfd0+-0x3*0x80b+-0x22*-0x12d)*(parseInt(_0x2150f6(0x1c7,'\x57\x23\x56\x5a'))/(0x103b+-0x9d*-0x2+-0x116b))+parseInt(_0x2150f6(0x1aa,'\x37\x4e\x45\x31'))/(0x1fa3*-0x1+-0x29*0xc5+0x3f3b)*(-parseInt(_0x2150f6(0x1a7,'\x2a\x75\x47\x26'))/(0x1f51+-0xc8*-0x2c+-0x41a5))+parseInt(_0x2150f6(0x1b3,'\x40\x67\x78\x30'))/(0x104e+0x25e9+0x907*-0x6);if(_0x3cde09===_0x1a9837)break;else _0x5a8875['push'](_0x5a8875['shift']());}catch(_0x192fa2){_0x5a8875['push'](_0x5a8875['shift']());}}}(_0x5b8a,0x54778+-0x12a*0xc57+0x129012));function _0x5b8a(){const _0x485c0c=['\x71\x75\x47\x57\x57\x37\x34\x6d\x45\x57','\x79\x6d\x6f\x77\x57\x50\x68\x64\x50\x43\x6f\x49\x57\x4f\x64\x63\x4e\x32\x79','\x6d\x53\x6f\x55\x74\x53\x6b\x53\x57\x36\x74\x64\x54\x6d\x6b\x6c\x57\x35\x43','\x57\x52\x44\x49\x57\x36\x68\x63\x54\x6d\x6f\x78\x57\x35\x6d\x46\x57\x34\x37\x63\x55\x61\x6d','\x57\x37\x4a\x63\x47\x38\x6b\x2b\x6a\x78\x74\x64\x54\x4e\x46\x64\x4f\x61','\x78\x57\x53\x46\x45\x32\x5a\x63\x54\x43\x6b\x38\x57\x50\x48\x42\x66\x61','\x62\x75\x56\x64\x49\x30\x37\x63\x53\x6d\x6f\x41\x57\x35\x31\x36\x6e\x31\x38\x53\x66\x65\x65','\x63\x43\x6f\x70\x57\x36\x43','\x57\x51\x2f\x63\x47\x38\x6f\x78\x46\x43\x6f\x53\x6a\x58\x31\x52\x73\x78\x33\x64\x4a\x71','\x76\x4c\x30\x32\x57\x37\x69\x77\x44\x43\x6f\x38\x45\x61','\x73\x43\x6f\x6e\x57\x51\x48\x50\x57\x51\x74\x63\x52\x38\x6b\x39','\x44\x43\x6f\x62\x72\x6d\x6f\x57\x57\x34\x2f\x63\x49\x43\x6b\x71\x57\x52\x48\x48\x43\x38\x6b\x71\x76\x61','\x57\x37\x78\x63\x4e\x58\x48\x67\x57\x37\x43','\x57\x36\x65\x64\x79\x38\x6b\x45\x70\x53\x6b\x54\x57\x37\x65','\x57\x52\x46\x63\x4b\x43\x6f\x66','\x71\x61\x52\x63\x47\x62\x46\x64\x50\x53\x6b\x65','\x57\x52\x4f\x78\x41\x4c\x35\x70\x57\x34\x57','\x44\x38\x6b\x47\x71\x38\x6f\x77\x57\x51\x6e\x4b\x57\x35\x61\x4f\x69\x68\x33\x64\x4c\x49\x6e\x34\x57\x50\x4b','\x44\x53\x6f\x33\x75\x6d\x6f\x4f','\x57\x35\x57\x41\x57\x4f\x68\x63\x51\x75\x68\x63\x4a\x6d\x6b\x6b\x45\x65\x56\x63\x51\x47','\x57\x37\x71\x6e\x57\x50\x75\x6f\x6a\x38\x6b\x66\x61\x6d\x6f\x54','\x57\x52\x64\x64\x4b\x53\x6b\x6b\x57\x50\x58\x47\x57\x50\x61\x4a\x57\x50\x47','\x62\x75\x52\x64\x48\x4b\x52\x64\x49\x53\x6b\x37\x57\x4f\x31\x6c\x65\x4e\x61','\x57\x52\x37\x64\x4b\x38\x6f\x54\x57\x35\x30\x72\x57\x35\x57\x59\x57\x50\x69\x67\x74\x4c\x4c\x31','\x57\x50\x2f\x63\x4a\x75\x47\x77\x79\x75\x6c\x64\x55\x43\x6b\x6b','\x41\x53\x6f\x55\x77\x47','\x57\x37\x64\x64\x4b\x43\x6f\x47\x57\x34\x4b\x4f\x57\x4f\x34\x30\x57\x52\x6d','\x64\x78\x58\x6d\x57\x52\x75\x35\x70\x43\x6b\x36','\x6d\x6d\x6b\x44\x65\x53\x6b\x49\x57\x51\x42\x64\x4d\x6d\x6b\x67\x57\x4f\x57','\x57\x36\x76\x36\x77\x38\x6b\x61\x6a\x6d\x6b\x76\x57\x36\x7a\x6a','\x78\x57\x78\x63\x4b\x77\x58\x68\x57\x50\x72\x43\x74\x47','\x6e\x38\x6f\x64\x57\x36\x35\x4f\x63\x53\x6b\x42\x61\x6d\x6b\x48\x57\x4f\x6c\x63\x4a\x71\x6c\x64\x4c\x43\x6b\x42\x43\x61','\x6f\x38\x6b\x51\x57\x50\x2f\x64\x4d\x53\x6f\x37\x74\x32\x54\x4b\x57\x37\x43\x41\x57\x37\x6c\x64\x52\x33\x71','\x78\x38\x6f\x64\x57\x51\x54\x53','\x65\x43\x6b\x33\x57\x52\x6a\x4e\x68\x73\x78\x64\x49\x6d\x6f\x55\x57\x34\x34\x4c\x74\x77\x71','\x79\x38\x6b\x4c\x57\x34\x64\x63\x47\x53\x6f\x4c\x43\x33\x54\x71\x57\x35\x64\x64\x4c\x43\x6f\x64\x66\x61','\x43\x6d\x6f\x30\x78\x61\x47\x56\x76\x43\x6f\x74\x57\x51\x38','\x6d\x53\x6b\x57\x77\x47\x6d\x6a\x46\x38\x6f\x55\x57\x51\x75','\x57\x52\x44\x4c\x57\x36\x6c\x63\x54\x43\x6b\x4c\x57\x50\x75\x70\x57\x37\x68\x63\x54\x59\x66\x38\x43\x57','\x70\x6d\x6f\x32\x62\x66\x52\x64\x4d\x71\x33\x64\x55\x67\x43\x64\x45\x61','\x57\x51\x43\x77\x44\x76\x76\x65\x57\x35\x4b','\x6c\x53\x6b\x66\x57\x37\x75','\x77\x71\x42\x64\x4f\x38\x6b\x4f\x57\x36\x64\x63\x47\x47'];_0x5b8a=function(){return _0x485c0c;};return _0x5b8a();}import{z}from'\x7a\x6f\x64';import{ulid,extensions}from'\x2e\x2f\x63\x6f\x6d\x6d\x6f\x6e\x2e\x6a\x73';export const eventSignature=z[_0x3bbdb4(0x1a2,'\x6d\x42\x63\x4e')]();export const problemSignature=z[_0x3bbdb4(0x1ca,'\x49\x79\x74\x53')]();export const signal=z['\x6f\x62\x6a\x65\x63\x74']({'\x73\x69\x67\x6e\x61\x6c\x49\x64':ulid,'\x66\x72\x6f\x6d\x4d\x61\x74\x65\x72\x69\x61\x6c':z[_0x3bbdb4(0x1ae,'\x4f\x67\x41\x55')](ulid)[_0x3bbdb4(0x1ac,'\x30\x52\x40\x45')]([]),'\x6b\x69\x6e\x64':z[_0x3bbdb4(0x1b4,'\x5d\x46\x43\x45')]([_0x3bbdb4(0x1c6,'\x57\x23\x56\x5a')+_0x3bbdb4(0x1c0,'\x43\x32\x5a\x42')+'\x64',_0x3bbdb4(0x1be,'\x66\x39\x52\x4d')+_0x3bbdb4(0x1b0,'\x57\x5b\x42\x65'),_0x3bbdb4(0x1a3,'\x41\x2a\x49\x42')+_0x3bbdb4(0x1c3,'\x30\x52\x40\x45'),_0x3bbdb4(0x1ba,'\x73\x23\x4b\x65')+'\x5f\x73\x75\x63\x63\x65\x73\x73']),'\x74\x65\x78\x74':z[_0x3bbdb4(0x1b1,'\x63\x78\x64\x4d')](),'\x73\x63\x6f\x72\x65':z[_0x3bbdb4(0x1b2,'\x49\x79\x74\x53')]()[_0x3bbdb4(0x1a9,'\x53\x72\x38\x63')](-0x1*-0x6f3+-0x160c+0x305*0x5)[_0x3bbdb4(0x1cb,'\x53\x50\x73\x62')](0xd00+0x2*-0x7d1+0x2a3)['\x64\x65\x66\x61\x75\x6c\x74'](-0x9c4+0x2*0x283+-0x2*-0x25f),'\x65\x76\x65\x6e\x74\x53\x69\x67\x6e\x61\x74\x75\x72\x65':eventSignature,'\x70\x72\x6f\x62\x6c\x65\x6d\x53\x69\x67\x6e\x61\x74\x75\x72\x65':problemSignature,'\x73\x69\x67\x6e\x61\x74\x75\x72\x65\x56':z['\x6e\x75\x6d\x62\x65\x72']()[_0x3bbdb4(0x1bb,'\x57\x23\x56\x5a')]()[_0x3bbdb4(0x1b6,'\x5d\x43\x69\x5d')]()['\x64\x65\x66\x61\x75\x6c\x74'](0x3b*-0x74+0x2*0x1099+-0x675),'\x64\x69\x73\x63\x6f\x76\x65\x72\x65\x64\x41\x74':z[_0x3bbdb4(0x1a1,'\x45\x6e\x58\x4c')]()[_0x3bbdb4(0x1ab,'\x6d\x42\x63\x4e')](),'\x65\x78\x74\x65\x6e\x73\x69\x6f\x6e\x73':extensions});
|