@evomap/evolver-proxy 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/lifecycle/claimNudge.js +1 -124
- package/dist/lifecycle/deployGuard.js +1 -53
- package/dist/lifecycle/legacyNodeId.js +1 -178
- package/dist/lifecycle/manager.js +1 -403
- package/dist/llm/bodyCapture.js +1 -293
- package/dist/llm/index.js +1 -3
- package/dist/llm/server.js +1 -379
- package/dist/llm/traceBackfill.js +1 -525
- package/dist/llm/traceConfig.js +1 -44
- package/dist/llm/traceControl.js +1 -85
- package/dist/llm/traceEnvelope.js +1 -286
- package/dist/llm/traceSink.js +1 -278
- package/dist/llm/traceUploadPayload.js +1 -27
- package/dist/llm/upstream.js +1 -514
- package/dist/router/cachePassthrough.js +1 -13
- package/dist/router/features.js +1 -52
- package/dist/router/index.js +1 -6
- package/dist/router/messagesRoute.js +1 -809
- package/dist/router/modelRouter.js +1 -66
- package/dist/router/providerRoutes.js +1 -1579
- package/dist/router/sseScan.js +1 -543
- package/dist/sync/engine.js +1 -696
- package/package.json +3 -3
|
@@ -1,525 +1 @@
|
|
|
1
|
-
import { createHash } from 'node:crypto';
|
|
2
|
-
import { closeSync, existsSync, openSync, readdirSync, readSync, statSync } from 'node:fs';
|
|
3
|
-
import { join } from 'node:path';
|
|
4
|
-
import { mailbox } from '@evomap/evolver-core';
|
|
5
|
-
import { traceCollectionEnabled } from './traceConfig.js';
|
|
6
|
-
import { buildProxyTraceUploadPayload, PROXY_TRACE_UPLOAD_SCHEMA, } from './traceUploadPayload.js';
|
|
7
|
-
const TRACE_BACKFILL_STATE_PREFIX = 'llm_trace_backfill:v1:';
|
|
8
|
-
const DEFAULT_TRACE_BACKFILL_MAX_ROWS = 100;
|
|
9
|
-
const DEFAULT_TRACE_BACKFILL_MAX_SCAN_BYTES = 8 * 1024 * 1024;
|
|
10
|
-
const DEFAULT_TRACE_BACKFILL_MAX_LINE_BYTES = 1024 * 1024;
|
|
11
|
-
const DEFAULT_TRACE_BACKFILL_MAX_PENDING = 100;
|
|
12
|
-
const TRACE_CURSOR_GUARD_BYTES = 4096;
|
|
13
|
-
const SUMMARY_ALLOWED_KEYS = new Set([
|
|
14
|
-
'event',
|
|
15
|
-
'payload_schema',
|
|
16
|
-
'ts',
|
|
17
|
-
'route',
|
|
18
|
-
'provider',
|
|
19
|
-
'wire_api',
|
|
20
|
-
'original_model',
|
|
21
|
-
'chosen_model',
|
|
22
|
-
'tier',
|
|
23
|
-
'reason',
|
|
24
|
-
'fallback',
|
|
25
|
-
'router_enabled',
|
|
26
|
-
'upstream_mode',
|
|
27
|
-
'status',
|
|
28
|
-
'stream',
|
|
29
|
-
'ttfb_ms',
|
|
30
|
-
'latency_ms',
|
|
31
|
-
'usage',
|
|
32
|
-
]);
|
|
33
|
-
const SUMMARY_STRING_OR_NULL_KEYS = [
|
|
34
|
-
'route',
|
|
35
|
-
'provider',
|
|
36
|
-
'wire_api',
|
|
37
|
-
'original_model',
|
|
38
|
-
'chosen_model',
|
|
39
|
-
'tier',
|
|
40
|
-
'reason',
|
|
41
|
-
'fallback',
|
|
42
|
-
'upstream_mode',
|
|
43
|
-
];
|
|
44
|
-
const SUMMARY_NUMBER_OR_NULL_KEYS = ['status', 'ttfb_ms', 'latency_ms'];
|
|
45
|
-
const USAGE_ALLOWED_KEYS = new Set([
|
|
46
|
-
'input_tokens',
|
|
47
|
-
'output_tokens',
|
|
48
|
-
'cache_creation_input_tokens',
|
|
49
|
-
'cache_read_input_tokens',
|
|
50
|
-
]);
|
|
51
|
-
function isRecord(value) {
|
|
52
|
-
return Boolean(value) && typeof value === 'object' && !Array.isArray(value);
|
|
53
|
-
}
|
|
54
|
-
function isNonEmptyBase64(value) {
|
|
55
|
-
return typeof value === 'string' && value.length > 0 && /^[A-Za-z0-9+/]+={0,2}$/.test(value);
|
|
56
|
-
}
|
|
57
|
-
function hasOnlyKeys(value, allowed) {
|
|
58
|
-
return Object.keys(value).every((key) => allowed.has(key));
|
|
59
|
-
}
|
|
60
|
-
function hasOwnKey(value, key) {
|
|
61
|
-
return Object.prototype.hasOwnProperty.call(value, key);
|
|
62
|
-
}
|
|
63
|
-
function parseNodeSecretVersion(value) {
|
|
64
|
-
if (typeof value === 'number' && Number.isInteger(value) && value > 0)
|
|
65
|
-
return value;
|
|
66
|
-
if (typeof value !== 'string')
|
|
67
|
-
return undefined;
|
|
68
|
-
const trimmed = value.trim();
|
|
69
|
-
if (!/^[1-9]\d*$/.test(trimmed))
|
|
70
|
-
return undefined;
|
|
71
|
-
const parsed = Number(trimmed);
|
|
72
|
-
return Number.isSafeInteger(parsed) ? parsed : undefined;
|
|
73
|
-
}
|
|
74
|
-
function isProducerGeneration(value) {
|
|
75
|
-
return value === 'v1' || value === 'v2' || value === 'unknown';
|
|
76
|
-
}
|
|
77
|
-
function storeState(store, key) {
|
|
78
|
-
try {
|
|
79
|
-
return store?.getState?.(key) ?? undefined;
|
|
80
|
-
}
|
|
81
|
-
catch {
|
|
82
|
-
return undefined;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
/** Mirrors v1 extractor truthyState: accepts the string/number/boolean truthy forms the store may surface. */
|
|
86
|
-
function truthyState(value) {
|
|
87
|
-
return value === true || value === 'true' || value === 1 || value === '1';
|
|
88
|
-
}
|
|
89
|
-
/**
|
|
90
|
-
* v1 parity (extractor.js readTraceNodeSecretVersionDecryptEnabled): the hub-keyring decrypt path is OFF by
|
|
91
|
-
* default. It is enabled only when ANY of these env vars / store-state keys is truthy. Without it, an encrypted
|
|
92
|
-
* row that only carries a secret_version (no hub_key_envelope) can only be decrypted by the hub keyring, which
|
|
93
|
-
* older hubs cannot do — so we must refuse the upload.
|
|
94
|
-
*/
|
|
95
|
-
function readTraceNodeSecretVersionDecryptEnabled(env = process.env, store) {
|
|
96
|
-
const candidates = [
|
|
97
|
-
env['EVOMAP_PROXY_TRACE_NODE_SECRET_VERSION_DECRYPT'],
|
|
98
|
-
env['EVOMAP_PROXY_TRACE_HUB_KEYRING_DECRYPT'],
|
|
99
|
-
storeState(store, 'trace_node_secret_version_decrypt_enabled'),
|
|
100
|
-
storeState(store, 'proxy_trace_node_secret_version_decrypt_enabled'),
|
|
101
|
-
storeState(store, 'trace_hub_keyring_decrypt_enabled'),
|
|
102
|
-
storeState(store, 'proxy_trace_hub_keyring_decrypt_enabled'),
|
|
103
|
-
];
|
|
104
|
-
const rawEnabled = candidates.find((value) => value !== undefined && value !== null && value !== '');
|
|
105
|
-
return truthyState(rawEnabled);
|
|
106
|
-
}
|
|
107
|
-
/**
|
|
108
|
-
* v1 parity (extractor.js secretVersionTraceDecryptAllowed). An encrypted envelope is hub-decryptable when it
|
|
109
|
-
* carries a hub_key_envelope (always allowed). A secret_version-only envelope is allowed ONLY when the
|
|
110
|
-
* node-secret-version keyring-decrypt flag is enabled; otherwise the hub could never decrypt it.
|
|
111
|
-
*/
|
|
112
|
-
function secretVersionTraceDecryptAllowed(record, env, store) {
|
|
113
|
-
if (!record || typeof record !== 'object')
|
|
114
|
-
return false;
|
|
115
|
-
if (record.hub_key_envelope)
|
|
116
|
-
return true;
|
|
117
|
-
if (parseNodeSecretVersion(record.secret_version) === undefined)
|
|
118
|
-
return false;
|
|
119
|
-
return readTraceNodeSecretVersionDecryptEnabled(env, store);
|
|
120
|
-
}
|
|
121
|
-
function isOptionalShortString(value, max) {
|
|
122
|
-
return value === undefined || (typeof value === 'string' && value.length > 0 && value.length <= max);
|
|
123
|
-
}
|
|
124
|
-
function isOptionalNonNegativeSafeInteger(value) {
|
|
125
|
-
return value === undefined || (typeof value === 'number' && Number.isSafeInteger(value) && value >= 0);
|
|
126
|
-
}
|
|
127
|
-
function isStringOrNull(value) {
|
|
128
|
-
return typeof value === 'string' || value === null;
|
|
129
|
-
}
|
|
130
|
-
function isBooleanOrNull(value) {
|
|
131
|
-
return typeof value === 'boolean' || value === null;
|
|
132
|
-
}
|
|
133
|
-
function isFiniteNumberOrNull(value) {
|
|
134
|
-
return value === null || (typeof value === 'number' && Number.isFinite(value));
|
|
135
|
-
}
|
|
136
|
-
function isHubTraceUsageSummary(value) {
|
|
137
|
-
if (!isRecord(value) || !hasOnlyKeys(value, USAGE_ALLOWED_KEYS))
|
|
138
|
-
return false;
|
|
139
|
-
return Object.values(value).every((entry) => typeof entry === 'number' && Number.isFinite(entry));
|
|
140
|
-
}
|
|
141
|
-
function isHubTracePlaintextSummary(value) {
|
|
142
|
-
if (!isRecord(value) || !hasOnlyKeys(value, SUMMARY_ALLOWED_KEYS))
|
|
143
|
-
return false;
|
|
144
|
-
if (value['event'] !== 'llm_trace_plaintext_summary')
|
|
145
|
-
return false;
|
|
146
|
-
if (value['payload_schema'] !== 'llm_turn_summary')
|
|
147
|
-
return false;
|
|
148
|
-
if (typeof value['ts'] !== 'string')
|
|
149
|
-
return false;
|
|
150
|
-
for (const key of SUMMARY_STRING_OR_NULL_KEYS) {
|
|
151
|
-
if (!isStringOrNull(value[key]))
|
|
152
|
-
return false;
|
|
153
|
-
}
|
|
154
|
-
if (!isBooleanOrNull(value['router_enabled']))
|
|
155
|
-
return false;
|
|
156
|
-
if (!isBooleanOrNull(value['stream']))
|
|
157
|
-
return false;
|
|
158
|
-
for (const key of SUMMARY_NUMBER_OR_NULL_KEYS) {
|
|
159
|
-
if (!isFiniteNumberOrNull(value[key]))
|
|
160
|
-
return false;
|
|
161
|
-
}
|
|
162
|
-
return !hasOwnKey(value, 'usage') || isHubTraceUsageSummary(value['usage']);
|
|
163
|
-
}
|
|
164
|
-
function isHubKeyEnvelope(value) {
|
|
165
|
-
if (!isRecord(value))
|
|
166
|
-
return false;
|
|
167
|
-
const allowed = new Set(['algorithm', 'key_id', 'wrapped_key']);
|
|
168
|
-
return hasOnlyKeys(value, allowed)
|
|
169
|
-
&& value['algorithm'] === 'rsa-oaep-sha256'
|
|
170
|
-
&& typeof value['key_id'] === 'string'
|
|
171
|
-
&& /^[a-f0-9]{16}$/i.test(value['key_id'])
|
|
172
|
-
&& isNonEmptyBase64(value['wrapped_key']);
|
|
173
|
-
}
|
|
174
|
-
export function isHubDecryptableTraceEnvelope(record) {
|
|
175
|
-
if (!isRecord(record))
|
|
176
|
-
return false;
|
|
177
|
-
const allowed = new Set([
|
|
178
|
-
'schema_version',
|
|
179
|
-
'event',
|
|
180
|
-
'encrypted',
|
|
181
|
-
'payload_schema',
|
|
182
|
-
'algorithm',
|
|
183
|
-
'key_id',
|
|
184
|
-
'iv',
|
|
185
|
-
'tag',
|
|
186
|
-
'ciphertext',
|
|
187
|
-
'hub_key_envelope',
|
|
188
|
-
'secret_version',
|
|
189
|
-
'producer_generation',
|
|
190
|
-
'producer_version',
|
|
191
|
-
'producer_component',
|
|
192
|
-
'plaintext_summary',
|
|
193
|
-
'payload_complete',
|
|
194
|
-
'payload_incomplete_reason',
|
|
195
|
-
'hub_uploadable',
|
|
196
|
-
'hub_upload_blocked_reason',
|
|
197
|
-
'hub_upload_size_bytes',
|
|
198
|
-
'hub_upload_max_bytes',
|
|
199
|
-
]);
|
|
200
|
-
return hasOnlyKeys(record, allowed)
|
|
201
|
-
&& record['schema_version'] === 1
|
|
202
|
-
&& record['event'] === 'llm_trace_envelope'
|
|
203
|
-
&& record['encrypted'] === true
|
|
204
|
-
&& record['payload_schema'] === 'prism_trace_row'
|
|
205
|
-
&& record['algorithm'] === 'aes-256-gcm'
|
|
206
|
-
&& typeof record['key_id'] === 'string'
|
|
207
|
-
&& /^[a-f0-9]{16}$/i.test(record['key_id'])
|
|
208
|
-
&& isNonEmptyBase64(record['iv'])
|
|
209
|
-
&& isNonEmptyBase64(record['tag'])
|
|
210
|
-
&& isNonEmptyBase64(record['ciphertext'])
|
|
211
|
-
&& (!hasOwnKey(record, 'hub_key_envelope') || isHubKeyEnvelope(record['hub_key_envelope']))
|
|
212
|
-
&& (isHubKeyEnvelope(record['hub_key_envelope']) || parseNodeSecretVersion(record['secret_version']) !== undefined)
|
|
213
|
-
&& (record['secret_version'] === undefined || parseNodeSecretVersion(record['secret_version']) !== undefined)
|
|
214
|
-
&& (record['producer_generation'] === undefined || isProducerGeneration(record['producer_generation']))
|
|
215
|
-
&& isOptionalShortString(record['producer_version'], 32)
|
|
216
|
-
&& isOptionalShortString(record['producer_component'], 32)
|
|
217
|
-
&& (record['payload_complete'] === undefined || record['payload_complete'] === false)
|
|
218
|
-
&& isOptionalShortString(record['payload_incomplete_reason'], 64)
|
|
219
|
-
&& (record['hub_uploadable'] === undefined || record['hub_uploadable'] === false)
|
|
220
|
-
&& isOptionalShortString(record['hub_upload_blocked_reason'], 64)
|
|
221
|
-
&& isOptionalNonNegativeSafeInteger(record['hub_upload_size_bytes'])
|
|
222
|
-
&& isOptionalNonNegativeSafeInteger(record['hub_upload_max_bytes'])
|
|
223
|
-
&& (!hasOwnKey(record, 'plaintext_summary') || isHubTracePlaintextSummary(record['plaintext_summary']));
|
|
224
|
-
}
|
|
225
|
-
export function traceUploadBlockedReason(record) {
|
|
226
|
-
if (record.hub_uploadable === false) {
|
|
227
|
-
const reason = record.hub_upload_blocked_reason ?? 'hub_upload_blocked';
|
|
228
|
-
return reason === 'payload_incomplete' ? undefined : reason;
|
|
229
|
-
}
|
|
230
|
-
return undefined;
|
|
231
|
-
}
|
|
232
|
-
function isProxyTraceUploadPayload(payload) {
|
|
233
|
-
if (!isRecord(payload))
|
|
234
|
-
return false;
|
|
235
|
-
const allowed = new Set([
|
|
236
|
-
'schema',
|
|
237
|
-
'encrypted',
|
|
238
|
-
'trace',
|
|
239
|
-
'node_secret_version',
|
|
240
|
-
'secret_version',
|
|
241
|
-
'producer_generation',
|
|
242
|
-
'producer_version',
|
|
243
|
-
'producer_component',
|
|
244
|
-
]);
|
|
245
|
-
return hasOnlyKeys(payload, allowed)
|
|
246
|
-
&& payload['schema'] === PROXY_TRACE_UPLOAD_SCHEMA
|
|
247
|
-
&& payload['encrypted'] === true
|
|
248
|
-
&& isHubDecryptableTraceEnvelope(payload['trace'])
|
|
249
|
-
&& (payload['node_secret_version'] === undefined || parseNodeSecretVersion(payload['node_secret_version']) !== undefined)
|
|
250
|
-
&& (payload['secret_version'] === undefined || parseNodeSecretVersion(payload['secret_version']) !== undefined)
|
|
251
|
-
&& (payload['producer_generation'] === undefined || isProducerGeneration(payload['producer_generation']))
|
|
252
|
-
&& isOptionalShortString(payload['producer_version'], 32)
|
|
253
|
-
&& isOptionalShortString(payload['producer_component'], 32);
|
|
254
|
-
}
|
|
255
|
-
export function normalizeProxyTraceOutboundPayload(payload, env = process.env, store) {
|
|
256
|
-
if (!traceCollectionEnabled(env, store) || env['EVOLVER_LLM_TRACE_MAILBOX'] === '0') {
|
|
257
|
-
return { ok: false, reason: 'proxy_trace_upload_disabled' };
|
|
258
|
-
}
|
|
259
|
-
// v1 parity (isProxyTraceUploadPayloadAllowed): an encrypted row that carries a secret_version but no
|
|
260
|
-
// hub_key_envelope is decryptable only by the hub keyring. Refuse it at egress unless the keyring-decrypt
|
|
261
|
-
// flag is enabled — a hub_key_envelope row is always allowed.
|
|
262
|
-
const gate = (trace) => {
|
|
263
|
-
const blockedReason = traceUploadBlockedReason(trace);
|
|
264
|
-
if (blockedReason)
|
|
265
|
-
return { ok: false, reason: blockedReason };
|
|
266
|
-
if (!secretVersionTraceDecryptAllowed(trace, env, store)) {
|
|
267
|
-
return { ok: false, reason: 'hub_keyring_decrypt_unsupported' };
|
|
268
|
-
}
|
|
269
|
-
return { ok: true, payload: buildProxyTraceUploadPayload(trace) };
|
|
270
|
-
};
|
|
271
|
-
if (isProxyTraceUploadPayload(payload))
|
|
272
|
-
return gate(payload.trace);
|
|
273
|
-
if (isRecord(payload) && payload['schema'] === PROXY_TRACE_UPLOAD_SCHEMA && payload['encrypted'] === true) {
|
|
274
|
-
const trace = payload['trace'];
|
|
275
|
-
if (isHubDecryptableTraceEnvelope(trace)) {
|
|
276
|
-
return gate(trace);
|
|
277
|
-
}
|
|
278
|
-
return { ok: false, reason: 'proxy_trace_payload_rejected' };
|
|
279
|
-
}
|
|
280
|
-
if (isHubDecryptableTraceEnvelope(payload))
|
|
281
|
-
return gate(payload);
|
|
282
|
-
return { ok: false, reason: 'proxy_trace_payload_rejected' };
|
|
283
|
-
}
|
|
284
|
-
export function traceUploadIdempotencyKey(record) {
|
|
285
|
-
return `proxy_trace:${createHash('sha256').update(JSON.stringify(record)).digest('hex')}`;
|
|
286
|
-
}
|
|
287
|
-
export function enqueueTraceEnvelope(store, record, opts = {}) {
|
|
288
|
-
if (!traceCollectionEnabled(opts.env ?? process.env, store)) {
|
|
289
|
-
return { queued: false, duplicate: false };
|
|
290
|
-
}
|
|
291
|
-
if (traceUploadBlockedReason(record)) {
|
|
292
|
-
return { queued: false, duplicate: false };
|
|
293
|
-
}
|
|
294
|
-
// v1 parity (validateTraceUpload): refuse — without enqueueing — an encrypted row that carries a
|
|
295
|
-
// secret_version but no hub_key_envelope unless the node-secret-version keyring-decrypt flag is enabled.
|
|
296
|
-
// The hub could otherwise never decrypt it. The mailbox store doubles as the decrypt-flag state source.
|
|
297
|
-
if (!secretVersionTraceDecryptAllowed(record, opts.env ?? process.env, store)) {
|
|
298
|
-
return { queued: false, duplicate: false };
|
|
299
|
-
}
|
|
300
|
-
const idempotencyKey = traceUploadIdempotencyKey(record);
|
|
301
|
-
const payload = buildProxyTraceUploadPayload(record);
|
|
302
|
-
if (store.hasMessageWithIdempotencyKey?.(idempotencyKey)
|
|
303
|
-
|| store.hasMessageWithPayload?.('proxy_trace', payload)
|
|
304
|
-
|| store.hasMessageWithPayload?.('proxy_trace', record)) {
|
|
305
|
-
return { queued: false, duplicate: true };
|
|
306
|
-
}
|
|
307
|
-
const env = mailbox.createEnvelope({
|
|
308
|
-
id: idempotencyKey,
|
|
309
|
-
type: 'proxy_trace',
|
|
310
|
-
payload,
|
|
311
|
-
correlationId: idempotencyKey,
|
|
312
|
-
idempotencyKey,
|
|
313
|
-
...(opts.now !== undefined ? { now: opts.now } : {}),
|
|
314
|
-
...(opts.runtimeNamespace ? { runtimeNamespace: opts.runtimeNamespace } : {}),
|
|
315
|
-
...(opts.sourceAgent ? { sourceAgent: opts.sourceAgent } : {}),
|
|
316
|
-
...(opts.targetAgent ? { targetAgent: opts.targetAgent } : {}),
|
|
317
|
-
});
|
|
318
|
-
return { queued: store.send(env).stored, duplicate: false };
|
|
319
|
-
}
|
|
320
|
-
function numberFromEnv(env, keys, fallback) {
|
|
321
|
-
for (const key of keys) {
|
|
322
|
-
const raw = Number(env[key]);
|
|
323
|
-
if (Number.isFinite(raw) && raw > 0)
|
|
324
|
-
return Math.floor(raw);
|
|
325
|
-
}
|
|
326
|
-
return fallback;
|
|
327
|
-
}
|
|
328
|
-
function cursorKey(file) {
|
|
329
|
-
return `${TRACE_BACKFILL_STATE_PREFIX}${createHash('sha256').update(file).digest('hex').slice(0, 24)}`;
|
|
330
|
-
}
|
|
331
|
-
function currentCursorState(file, offset) {
|
|
332
|
-
const stat = statSync(file);
|
|
333
|
-
return {
|
|
334
|
-
dev: Number(stat.dev) || 0,
|
|
335
|
-
ino: Number(stat.ino) || 0,
|
|
336
|
-
birthtimeMs: Math.floor(Number(stat.birthtimeMs) || 0),
|
|
337
|
-
size: Number(stat.size) || 0,
|
|
338
|
-
offset,
|
|
339
|
-
guard: cursorGuard(file, offset),
|
|
340
|
-
};
|
|
341
|
-
}
|
|
342
|
-
function cursorGuard(file, offset) {
|
|
343
|
-
if (offset <= 0)
|
|
344
|
-
return '';
|
|
345
|
-
const bytesToRead = Math.min(TRACE_CURSOR_GUARD_BYTES, offset);
|
|
346
|
-
const fd = openSync(file, 'r');
|
|
347
|
-
try {
|
|
348
|
-
const buf = Buffer.alloc(bytesToRead);
|
|
349
|
-
const bytesRead = readSync(fd, buf, 0, bytesToRead, offset - bytesToRead);
|
|
350
|
-
return createHash('sha256').update(buf.subarray(0, bytesRead)).digest('hex');
|
|
351
|
-
}
|
|
352
|
-
finally {
|
|
353
|
-
closeSync(fd);
|
|
354
|
-
}
|
|
355
|
-
}
|
|
356
|
-
function parseCursor(raw) {
|
|
357
|
-
if (!raw)
|
|
358
|
-
return null;
|
|
359
|
-
try {
|
|
360
|
-
const parsed = JSON.parse(raw);
|
|
361
|
-
if (typeof parsed.dev === 'number'
|
|
362
|
-
&& typeof parsed.ino === 'number'
|
|
363
|
-
&& typeof parsed.birthtimeMs === 'number'
|
|
364
|
-
&& typeof parsed.size === 'number'
|
|
365
|
-
&& typeof parsed.offset === 'number'
|
|
366
|
-
&& (typeof parsed.guard === 'string' || parsed.guard === undefined)
|
|
367
|
-
&& parsed.offset >= 0)
|
|
368
|
-
return { ...parsed, guard: parsed.guard ?? '' };
|
|
369
|
-
}
|
|
370
|
-
catch {
|
|
371
|
-
return null;
|
|
372
|
-
}
|
|
373
|
-
return null;
|
|
374
|
-
}
|
|
375
|
-
function sameFileIdentity(a, b) {
|
|
376
|
-
if (!a)
|
|
377
|
-
return false;
|
|
378
|
-
if (a.dev && b.dev && a.ino && b.ino)
|
|
379
|
-
return a.dev === b.dev && a.ino === b.ino;
|
|
380
|
-
return a.birthtimeMs > 0 && a.birthtimeMs === b.birthtimeMs;
|
|
381
|
-
}
|
|
382
|
-
function cursorOffset(store, file) {
|
|
383
|
-
const statState = currentCursorState(file, 0);
|
|
384
|
-
const saved = parseCursor(store.getState?.(cursorKey(file)));
|
|
385
|
-
if (!sameFileIdentity(saved, statState))
|
|
386
|
-
return 0;
|
|
387
|
-
if (!saved || saved.offset > statState.size || saved.size > statState.size)
|
|
388
|
-
return 0;
|
|
389
|
-
if (saved.guard !== cursorGuard(file, saved.offset))
|
|
390
|
-
return 0;
|
|
391
|
-
return saved.offset;
|
|
392
|
-
}
|
|
393
|
-
function readCompleteLines(file, offset, maxBytes, maxLineBytes) {
|
|
394
|
-
const stat = statSync(file);
|
|
395
|
-
const bytesToRead = Math.min(maxBytes, Math.max(0, stat.size - offset));
|
|
396
|
-
if (bytesToRead <= 0)
|
|
397
|
-
return { lines: [], nextOffset: offset, lineTooLong: false };
|
|
398
|
-
const fd = openSync(file, 'r');
|
|
399
|
-
try {
|
|
400
|
-
const buf = Buffer.alloc(bytesToRead);
|
|
401
|
-
const bytesRead = readSync(fd, buf, 0, bytesToRead, offset);
|
|
402
|
-
let pos = 0;
|
|
403
|
-
let nextOffset = offset;
|
|
404
|
-
let lineTooLong = false;
|
|
405
|
-
const lines = [];
|
|
406
|
-
while (pos < bytesRead) {
|
|
407
|
-
const nl = buf.indexOf(0x0a, pos);
|
|
408
|
-
if (nl === -1) {
|
|
409
|
-
if (bytesRead === bytesToRead && offset + bytesRead < stat.size) {
|
|
410
|
-
const partialLineBytes = bytesRead - pos;
|
|
411
|
-
if (partialLineBytes > maxLineBytes) {
|
|
412
|
-
nextOffset = offset + bytesRead;
|
|
413
|
-
lineTooLong = true;
|
|
414
|
-
}
|
|
415
|
-
}
|
|
416
|
-
break;
|
|
417
|
-
}
|
|
418
|
-
const rawLine = buf.subarray(pos, nl);
|
|
419
|
-
nextOffset = offset + nl + 1;
|
|
420
|
-
pos = nl + 1;
|
|
421
|
-
if (rawLine.length === 0)
|
|
422
|
-
continue;
|
|
423
|
-
if (rawLine.length > maxLineBytes) {
|
|
424
|
-
lineTooLong = true;
|
|
425
|
-
continue;
|
|
426
|
-
}
|
|
427
|
-
lines.push({ raw: rawLine.toString('utf8'), nextOffset });
|
|
428
|
-
}
|
|
429
|
-
return { lines, nextOffset, lineTooLong };
|
|
430
|
-
}
|
|
431
|
-
finally {
|
|
432
|
-
closeSync(fd);
|
|
433
|
-
}
|
|
434
|
-
}
|
|
435
|
-
function traceFiles(dir) {
|
|
436
|
-
if (!existsSync(dir))
|
|
437
|
-
return [];
|
|
438
|
-
return readdirSync(dir)
|
|
439
|
-
.filter((name) => /^llm-trace-\d{8}\.jsonl$/.test(name))
|
|
440
|
-
.sort()
|
|
441
|
-
.map((name) => join(dir, name));
|
|
442
|
-
}
|
|
443
|
-
function bump(stats, reason) {
|
|
444
|
-
stats.skipped += 1;
|
|
445
|
-
stats.reasons[reason] = (stats.reasons[reason] ?? 0) + 1;
|
|
446
|
-
}
|
|
447
|
-
function persistCursor(store, file, offset) {
|
|
448
|
-
store.setState?.(cursorKey(file), JSON.stringify(currentCursorState(file, offset)));
|
|
449
|
-
}
|
|
450
|
-
export function backfillProxyTraceUploads(opts) {
|
|
451
|
-
const env = opts.env ?? process.env;
|
|
452
|
-
const maxRows = numberFromEnv(env, ['EVOLVER_LLM_TRACE_BACKFILL_MAX_ROWS', 'EVOMAP_PROXY_TRACE_BACKFILL_MAX_ROWS'], DEFAULT_TRACE_BACKFILL_MAX_ROWS);
|
|
453
|
-
const maxScanBytes = numberFromEnv(env, ['EVOLVER_LLM_TRACE_BACKFILL_MAX_SCAN_BYTES', 'EVOMAP_PROXY_TRACE_BACKFILL_MAX_SCAN_BYTES'], DEFAULT_TRACE_BACKFILL_MAX_SCAN_BYTES);
|
|
454
|
-
const maxLineBytes = numberFromEnv(env, ['EVOLVER_LLM_TRACE_BACKFILL_MAX_LINE_BYTES', 'EVOMAP_PROXY_TRACE_BACKFILL_MAX_LINE_BYTES'], DEFAULT_TRACE_BACKFILL_MAX_LINE_BYTES);
|
|
455
|
-
const maxPending = numberFromEnv(env, ['EVOLVER_LLM_TRACE_MAX_PENDING_UPLOADS', 'EVOMAP_PROXY_TRACE_MAX_PENDING_UPLOADS'], DEFAULT_TRACE_BACKFILL_MAX_PENDING);
|
|
456
|
-
const stats = { scanned: 0, queued: 0, duplicates: 0, skipped: 0, files: 0, reasons: {} };
|
|
457
|
-
let stopBackfill = false;
|
|
458
|
-
for (const file of traceFiles(opts.dir)) {
|
|
459
|
-
if (stopBackfill || stats.scanned >= maxRows)
|
|
460
|
-
break;
|
|
461
|
-
let pending = opts.store.countPending?.('proxy', opts.runtimeNamespace);
|
|
462
|
-
if (pending !== undefined && pending >= maxPending) {
|
|
463
|
-
bump(stats, 'max_pending_uploads');
|
|
464
|
-
break;
|
|
465
|
-
}
|
|
466
|
-
stats.files += 1;
|
|
467
|
-
let offset = cursorOffset(opts.store, file);
|
|
468
|
-
try {
|
|
469
|
-
const read = readCompleteLines(file, offset, maxScanBytes, maxLineBytes);
|
|
470
|
-
if (read.lineTooLong)
|
|
471
|
-
bump(stats, 'line_too_long');
|
|
472
|
-
let processedLineCount = 0;
|
|
473
|
-
for (const line of read.lines) {
|
|
474
|
-
if (stats.scanned >= maxRows)
|
|
475
|
-
break;
|
|
476
|
-
if (pending !== undefined && pending >= maxPending) {
|
|
477
|
-
bump(stats, 'max_pending_uploads');
|
|
478
|
-
stopBackfill = true;
|
|
479
|
-
break;
|
|
480
|
-
}
|
|
481
|
-
processedLineCount += 1;
|
|
482
|
-
stats.scanned += 1;
|
|
483
|
-
offset = line.nextOffset;
|
|
484
|
-
let parsed;
|
|
485
|
-
try {
|
|
486
|
-
parsed = JSON.parse(line.raw);
|
|
487
|
-
}
|
|
488
|
-
catch {
|
|
489
|
-
bump(stats, 'invalid_json');
|
|
490
|
-
continue;
|
|
491
|
-
}
|
|
492
|
-
if (!isHubDecryptableTraceEnvelope(parsed)) {
|
|
493
|
-
bump(stats, 'not_hub_decryptable');
|
|
494
|
-
continue;
|
|
495
|
-
}
|
|
496
|
-
const blockedReason = traceUploadBlockedReason(parsed);
|
|
497
|
-
if (blockedReason) {
|
|
498
|
-
bump(stats, blockedReason);
|
|
499
|
-
continue;
|
|
500
|
-
}
|
|
501
|
-
const queued = enqueueTraceEnvelope(opts.store, parsed, {
|
|
502
|
-
now: opts.now?.(),
|
|
503
|
-
env,
|
|
504
|
-
...(opts.runtimeNamespace ? { runtimeNamespace: opts.runtimeNamespace } : {}),
|
|
505
|
-
...(opts.sourceAgent ? { sourceAgent: opts.sourceAgent } : {}),
|
|
506
|
-
...(opts.targetAgent ? { targetAgent: opts.targetAgent } : {}),
|
|
507
|
-
});
|
|
508
|
-
if (queued.duplicate)
|
|
509
|
-
stats.duplicates += 1;
|
|
510
|
-
else if (queued.queued) {
|
|
511
|
-
stats.queued += 1;
|
|
512
|
-
if (pending !== undefined)
|
|
513
|
-
pending += 1;
|
|
514
|
-
}
|
|
515
|
-
}
|
|
516
|
-
if (processedLineCount === read.lines.length && read.nextOffset > offset)
|
|
517
|
-
offset = read.nextOffset;
|
|
518
|
-
persistCursor(opts.store, file, offset);
|
|
519
|
-
}
|
|
520
|
-
catch {
|
|
521
|
-
bump(stats, 'read_failed');
|
|
522
|
-
}
|
|
523
|
-
}
|
|
524
|
-
return stats;
|
|
525
|
-
}
|
|
1
|
+
const _0x285e75=_0x3fe5;(function(_0x1a5d97,_0x35fa66){const _0x5291c5=_0x3fe5,_0x1dc74e=_0x1a5d97();while(!![]){try{const _0x3593a0=parseInt(_0x5291c5(0x210,'\x56\x74\x46\x5a'))/(0x14fa+0x1a23*0x1+-0x43*0xb4)+-parseInt(_0x5291c5(0x265,'\x6e\x7a\x41\x42'))/(-0x6*-0x315+-0x3*-0x7cc+0x4*-0xa78)*(parseInt(_0x5291c5(0x2b7,'\x71\x29\x69\x2a'))/(0x45e+0x71*-0x25+0xbfa))+-parseInt(_0x5291c5(0x143,'\x77\x79\x61\x25'))/(-0x1c1f+0xc4f+0x3f5*0x4)*(-parseInt(_0x5291c5(0x2e7,'\x48\x6c\x66\x37'))/(-0x1e65+-0x2*0xf5a+-0x1e8f*-0x2))+parseInt(_0x5291c5(0x1c0,'\x68\x48\x6d\x5b'))/(0x151*0x1d+-0x5d2+-0x3*0xac7)*(-parseInt(_0x5291c5(0x16f,'\x71\x6d\x77\x5a'))/(-0x432*0x1+0xeda+-0x38b*0x3))+parseInt(_0x5291c5(0x3af,'\x61\x76\x31\x39'))/(0x20fa+0x7*-0x315+-0xb5f)+-parseInt(_0x5291c5(0x150,'\x5b\x6e\x72\x69'))/(-0x27*-0x95+0x285+0x15*-0x133)*(parseInt(_0x5291c5(0x2b8,'\x38\x33\x24\x45'))/(-0x2335+0xabd*0x1+0x1882))+parseInt(_0x5291c5(0x2b3,'\x2a\x43\x28\x33'))/(0xa68+0x7*0x593+-0x3162*0x1)*(parseInt(_0x5291c5(0x2d7,'\x71\x6d\x77\x5a'))/(0x2382+-0x7*0x3dd+0x1af*-0x5));if(_0x3593a0===_0x35fa66)break;else _0x1dc74e['push'](_0x1dc74e['shift']());}catch(_0x555e1){_0x1dc74e['push'](_0x1dc74e['shift']());}}}(_0x51d5,-0x386cd+0x7f2fc+0x16*0x1af));import{createHash}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';import{closeSync,existsSync,openSync,readdirSync,readSync,statSync}from'\x6e\x6f\x64\x65\x3a\x66\x73';import{join}from'\x6e\x6f\x64\x65\x3a\x70\x61\x74\x68';import{mailbox}from'\x40\x65\x76\x6f\x6d\x61\x70\x2f\x65\x76\x6f\x6c\x76\x65\x72\x2d\x63\x6f\x72\x65';import{traceCollectionEnabled}from'\x2e\x2f\x74\x72\x61\x63\x65\x43\x6f\x6e\x66\x69\x67\x2e\x6a\x73';import{buildProxyTraceUploadPayload,PROXY_TRACE_UPLOAD_SCHEMA}from'\x2e\x2f\x74\x72\x61\x63\x65\x55\x70\x6c\x6f\x61\x64\x50\x61\x79\x6c\x6f\x61\x64\x2e\x6a\x73';const TRACE_BACKFILL_STATE_PREFIX=_0x285e75(0x2ca,'\x56\x74\x46\x5a')+_0x285e75(0x37a,'\x71\x68\x4f\x37')+_0x285e75(0x2d8,'\x50\x41\x25\x61'),DEFAULT_TRACE_BACKFILL_MAX_ROWS=0x1c0b+-0xd*0x5+-0x1b66,DEFAULT_TRACE_BACKFILL_MAX_SCAN_BYTES=(-0x653+-0x22aa+0x2905)*(0x14d3+-0x1a7f+0x9ac)*(-0x4*-0x8f3+0x139*0x3+-0x2377),DEFAULT_TRACE_BACKFILL_MAX_LINE_BYTES=(-0x8*-0x28a+-0x161*0x9+-0x1*0x3e7)*(-0x2a4*-0xa+0x2*0x295+-0x1b92*0x1),DEFAULT_TRACE_BACKFILL_MAX_PENDING=0x610+-0x8aa+0x2fe,TRACE_CURSOR_GUARD_BYTES=-0x6c0+-0x8*-0x43c+-0x2c8*0x4,SUMMARY_ALLOWED_KEYS=new Set([_0x285e75(0x359,'\x24\x4c\x77\x70'),_0x285e75(0x1e0,'\x69\x51\x5b\x5b')+_0x285e75(0x1cd,'\x68\x48\x6d\x5b'),'\x74\x73',_0x285e75(0x376,'\x71\x68\x4f\x37'),'\x70\x72\x6f\x76\x69\x64\x65\x72',_0x285e75(0x1b0,'\x69\x51\x5b\x5b'),_0x285e75(0x33d,'\x62\x28\x61\x66')+_0x285e75(0x20c,'\x32\x23\x53\x74'),_0x285e75(0x2fa,'\x38\x33\x24\x45')+_0x285e75(0x166,'\x21\x23\x5b\x45'),_0x285e75(0x3c0,'\x48\x6c\x66\x37'),_0x285e75(0x32f,'\x23\x75\x59\x57'),_0x285e75(0x252,'\x50\x41\x25\x61'),_0x285e75(0x39f,'\x62\x28\x61\x66')+_0x285e75(0x2b1,'\x56\x78\x57\x47'),_0x285e75(0x1a9,'\x21\x30\x32\x31')+_0x285e75(0x217,'\x48\x4f\x75\x53'),_0x285e75(0x279,'\x48\x28\x25\x6a'),_0x285e75(0x1f6,'\x61\x76\x31\x39'),_0x285e75(0x19b,'\x67\x71\x2a\x79'),'\x6c\x61\x74\x65\x6e\x63\x79\x5f'+'\x6d\x73',_0x285e75(0x328,'\x76\x50\x52\x21')]),SUMMARY_STRING_OR_NULL_KEYS=['\x72\x6f\x75\x74\x65',_0x285e75(0x280,'\x56\x78\x57\x47'),'\x77\x69\x72\x65\x5f\x61\x70\x69',_0x285e75(0x20e,'\x71\x32\x35\x41')+_0x285e75(0x1ad,'\x66\x48\x42\x47'),_0x285e75(0x2d0,'\x48\x56\x32\x7a')+_0x285e75(0x187,'\x31\x67\x6d\x74'),'\x74\x69\x65\x72',_0x285e75(0x208,'\x31\x67\x6d\x74'),'\x66\x61\x6c\x6c\x62\x61\x63\x6b',_0x285e75(0x305,'\x68\x54\x5e\x76')+_0x285e75(0x378,'\x41\x25\x4d\x74')],SUMMARY_NUMBER_OR_NULL_KEYS=['\x73\x74\x61\x74\x75\x73',_0x285e75(0x2d3,'\x68\x48\x6d\x5b'),'\x6c\x61\x74\x65\x6e\x63\x79\x5f'+'\x6d\x73'],USAGE_ALLOWED_KEYS=new Set([_0x285e75(0x266,'\x71\x68\x4f\x37')+_0x285e75(0x2a2,'\x56\x74\x52\x4d'),_0x285e75(0x2c6,'\x63\x75\x46\x6f')+_0x285e75(0x2bc,'\x48\x56\x32\x7a'),_0x285e75(0x174,'\x56\x74\x46\x5a')+_0x285e75(0x315,'\x38\x33\x24\x45')+_0x285e75(0x373,'\x71\x6d\x77\x5a')+_0x285e75(0x356,'\x76\x50\x52\x21'),_0x285e75(0x1e5,'\x38\x2a\x33\x44')+'\x61\x64\x5f\x69\x6e\x70\x75\x74'+_0x285e75(0x337,'\x32\x23\x53\x74')]);function isRecord(_0x442070){const _0x25dd1d=_0x285e75;return Boolean(_0x442070)&&typeof _0x442070===_0x25dd1d(0x211,'\x62\x28\x61\x66')&&!Array[_0x25dd1d(0x383,'\x67\x71\x2a\x79')](_0x442070);}function isNonEmptyBase64(_0x454483){const _0x4f4853=_0x285e75;return typeof _0x454483===_0x4f4853(0x16d,'\x41\x25\x4d\x74')&&_0x454483[_0x4f4853(0x1ce,'\x23\x75\x59\x57')]>0x419*0x7+0x148*0x2+-0x1f3f&&/^[A-Za-z0-9+/]+={0,2}$/[_0x4f4853(0x395,'\x31\x67\x6d\x74')](_0x454483);}function hasOnlyKeys(_0x564c2e,_0x2fea9b){const _0x139f52=_0x285e75;return Object['\x6b\x65\x79\x73'](_0x564c2e)['\x65\x76\x65\x72\x79'](_0x444eb0=>_0x2fea9b[_0x139f52(0x2f6,'\x2a\x43\x28\x33')](_0x444eb0));}function hasOwnKey(_0x46dee8,_0x18d79c){const _0x1491ab=_0x285e75;return Object[_0x1491ab(0x278,'\x62\x56\x50\x2a')+'\x65'][_0x1491ab(0x2e6,'\x41\x67\x4b\x26')+_0x1491ab(0x2d2,'\x5e\x6f\x71\x62')][_0x1491ab(0x398,'\x77\x79\x61\x25')](_0x46dee8,_0x18d79c);}function parseNodeSecretVersion(_0x2be950){const _0x532105=_0x285e75;if(typeof _0x2be950===_0x532105(0x31d,'\x6b\x69\x4f\x23')&&Number[_0x532105(0x1ac,'\x63\x75\x46\x6f')+'\x72'](_0x2be950)&&_0x2be950>0x1bda+0x2eb+0x1*-0x1ec5)return _0x2be950;if(typeof _0x2be950!==_0x532105(0x364,'\x38\x2a\x33\x44'))return undefined;const _0x35913d=_0x2be950[_0x532105(0x2fd,'\x21\x23\x5b\x45')]();if(!/^[1-9]\d*$/['\x74\x65\x73\x74'](_0x35913d))return undefined;const _0x144a06=Number(_0x35913d);return Number[_0x532105(0x3b8,'\x41\x67\x4b\x26')+_0x532105(0x2db,'\x56\x74\x52\x4d')](_0x144a06)?_0x144a06:undefined;}function isProducerGeneration(_0x11861d){const _0x585720=_0x285e75;return _0x11861d==='\x76\x31'||_0x11861d==='\x76\x32'||_0x11861d===_0x585720(0x2d1,'\x63\x75\x46\x6f');}function storeState(_0x2b12e4,_0x294f34){const _0x50fce3=_0x285e75;try{return'\x6a\x50\x6a\x70\x6f'!==_0x50fce3(0x169,'\x62\x28\x61\x66')?_0x523354===_0x243741||typeof _0xf1d88b===_0x50fce3(0x3aa,'\x6e\x7a\x41\x42')&&_0x59167e[_0x50fce3(0x39d,'\x41\x67\x4b\x26')]>-0x27*0xa9+-0xb5*-0x35+0x13*-0x9e&&_0x2f48aa[_0x50fce3(0x33f,'\x71\x29\x69\x2a')]<=_0x531fe9:_0x2b12e4?.[_0x50fce3(0x3ba,'\x78\x45\x24\x4f')]?.(_0x294f34)??undefined;}catch{if(_0x50fce3(0x368,'\x30\x43\x43\x4e')!==_0x50fce3(0x329,'\x71\x6d\x77\x5a'))return undefined;else{if(typeof _0x20b9b4===_0x50fce3(0x244,'\x21\x30\x32\x31')&&_0x44850c['\x69\x73\x49\x6e\x74\x65\x67\x65'+'\x72'](_0x131bf8)&&_0x1b9094>0x1*0x1a05+-0x65*0x46+0x199*0x1)return _0x58f61e;if(typeof _0x374ace!=='\x73\x74\x72\x69\x6e\x67')return _0x294b21;const _0x1d5cfe=_0x1e6a1e[_0x50fce3(0x1c7,'\x50\x41\x25\x61')]();if(!/^[1-9]\d*$/[_0x50fce3(0x228,'\x2a\x43\x28\x33')](_0x1d5cfe))return _0x58793b;const _0x3f8af9=_0x39adcc(_0x1d5cfe);return _0x4f21a5[_0x50fce3(0x24a,'\x62\x56\x50\x2a')+'\x74\x65\x67\x65\x72'](_0x3f8af9)?_0x3f8af9:_0x5d5a50;}}}function truthyState(_0x3705a4){const _0xfded32=_0x285e75;return _0x3705a4===!![]||_0x3705a4===_0xfded32(0x327,'\x48\x6c\x66\x37')||_0x3705a4===0x7a*-0x35+0x1e0d+-0x4ca||_0x3705a4==='\x31';}function readTraceNodeSecretVersionDecryptEnabled(_0x5c3285=process.env,_0x500f3e){const _0x2d3186=_0x285e75,_0x421e90=[_0x5c3285[_0x2d3186(0x2c8,'\x31\x67\x6d\x74')+_0x2d3186(0x263,'\x50\x41\x25\x61')+_0x2d3186(0x223,'\x32\x23\x53\x74')+_0x2d3186(0x1ed,'\x31\x67\x6d\x74')+_0x2d3186(0x37d,'\x23\x75\x59\x57')+_0x2d3186(0x1b2,'\x48\x56\x32\x7a')],_0x5c3285[_0x2d3186(0x2c4,'\x67\x72\x5b\x36')+_0x2d3186(0x277,'\x66\x48\x42\x47')+_0x2d3186(0x1f8,'\x68\x54\x5e\x76')+_0x2d3186(0x21c,'\x56\x74\x52\x4d')+_0x2d3186(0x339,'\x48\x28\x25\x6a')],storeState(_0x500f3e,_0x2d3186(0x25e,'\x5b\x6e\x72\x69')+_0x2d3186(0x367,'\x31\x67\x6d\x74')+_0x2d3186(0x34e,'\x21\x23\x5b\x45')+'\x6e\x5f\x64\x65\x63\x72\x79\x70'+_0x2d3186(0x1fa,'\x32\x38\x68\x4c')+'\x64'),storeState(_0x500f3e,_0x2d3186(0x394,'\x5e\x6f\x71\x62')+'\x61\x63\x65\x5f\x6e\x6f\x64\x65'+_0x2d3186(0x28e,'\x48\x6c\x66\x37')+_0x2d3186(0x246,'\x56\x78\x57\x47')+_0x2d3186(0x144,'\x56\x74\x46\x5a')+_0x2d3186(0x213,'\x50\x41\x25\x61')),storeState(_0x500f3e,_0x2d3186(0x260,'\x5e\x6f\x71\x62')+_0x2d3186(0x34c,'\x76\x50\x52\x21')+_0x2d3186(0x297,'\x48\x4f\x75\x53')+'\x74\x5f\x65\x6e\x61\x62\x6c\x65'+'\x64'),storeState(_0x500f3e,'\x70\x72\x6f\x78\x79\x5f\x74\x72'+_0x2d3186(0x17e,'\x76\x50\x52\x21')+'\x6b\x65\x79\x72\x69\x6e\x67\x5f'+'\x64\x65\x63\x72\x79\x70\x74\x5f'+_0x2d3186(0x14d,'\x68\x48\x6d\x5b'))],_0x4eac17=_0x421e90[_0x2d3186(0x1b6,'\x76\x50\x52\x21')](_0x4e1e4c=>_0x4e1e4c!==undefined&&_0x4e1e4c!==null&&_0x4e1e4c!=='');return truthyState(_0x4eac17);}function _0x51d5(){const _0x1c2654=['\x57\x35\x6c\x64\x48\x53\x6f\x64\x57\x35\x52\x63\x4b\x43\x6b\x61','\x57\x4f\x33\x63\x54\x76\x71\x42\x6c\x5a\x78\x63\x51\x53\x6b\x39','\x6a\x53\x6f\x53\x61\x6d\x6f\x67\x6d\x4d\x34\x31\x57\x37\x47','\x57\x34\x4c\x30\x6c\x53\x6b\x6c\x78\x43\x6b\x68\x57\x4f\x4a\x64\x4e\x57','\x6d\x72\x52\x64\x4d\x71','\x57\x52\x7a\x44\x57\x36\x2f\x63\x4d\x47\x76\x52\x71\x48\x4b','\x57\x50\x57\x68\x73\x61','\x57\x51\x43\x6e\x64\x49\x52\x64\x4d\x6d\x6b\x53\x57\x52\x4c\x39','\x57\x37\x2f\x64\x4a\x38\x6b\x55\x57\x52\x56\x63\x4b\x77\x6d','\x63\x43\x6b\x7a\x76\x58\x46\x64\x47\x74\x38\x63','\x46\x4a\x64\x63\x51\x43\x6f\x37\x57\x37\x5a\x64\x53\x38\x6b\x66','\x68\x53\x6b\x67\x57\x34\x6c\x64\x55\x43\x6b\x54\x57\x35\x68\x63\x55\x43\x6f\x68','\x57\x37\x56\x64\x4b\x53\x6f\x46','\x57\x50\x33\x64\x52\x6d\x6f\x6b\x6f\x4b\x4c\x30\x57\x51\x6a\x69','\x57\x51\x64\x63\x4e\x77\x2f\x64\x53\x4d\x75','\x57\x36\x74\x64\x4d\x6d\x6b\x34\x57\x4f\x64\x63\x4a\x77\x74\x64\x48\x74\x65','\x57\x52\x38\x78\x57\x52\x6a\x49\x66\x43\x6f\x4f\x65\x30\x38','\x75\x61\x37\x63\x4b\x53\x6f\x70\x57\x4f\x5a\x63\x4c\x31\x6c\x63\x4f\x61','\x57\x50\x52\x63\x54\x65\x43\x6b\x6b\x4a\x38','\x57\x36\x43\x54\x6a\x65\x66\x79\x57\x37\x38\x4d','\x61\x6d\x6b\x31\x44\x53\x6b\x6d\x57\x50\x4e\x64\x4d\x53\x6b\x4e\x46\x61','\x65\x47\x2f\x64\x4d\x38\x6f\x37\x76\x43\x6b\x35\x71\x47\x4b','\x57\x52\x4b\x42\x72\x47','\x6c\x77\x76\x57\x57\x35\x42\x64\x54\x38\x6f\x79\x67\x76\x30','\x57\x37\x4e\x64\x4d\x6d\x6f\x69','\x57\x52\x68\x63\x4d\x77\x56\x64\x56\x33\x71\x59\x57\x50\x72\x70','\x73\x32\x62\x79\x77\x43\x6f\x39\x57\x34\x61\x65\x73\x47','\x57\x34\x74\x63\x50\x33\x79\x5a\x71\x38\x6b\x51\x57\x35\x56\x64\x52\x47','\x57\x51\x64\x64\x51\x6d\x6f\x56\x73\x47','\x57\x52\x4a\x64\x4a\x6d\x6f\x4f\x63\x77\x4c\x6d\x57\x50\x76\x4d','\x57\x51\x4e\x64\x47\x53\x6f\x2b\x64\x33\x72\x62\x57\x50\x6e\x49','\x57\x35\x58\x4f\x6e\x38\x6b\x6b\x72\x6d\x6b\x6c\x57\x50\x33\x64\x49\x61','\x57\x4f\x54\x38\x6b\x53\x6b\x49\x43\x43\x6b\x67\x57\x51\x4b','\x6f\x4a\x6d\x57\x67\x72\x57\x49\x78\x67\x79','\x57\x52\x34\x6d\x6a\x59\x46\x64\x47\x38\x6b\x4d\x57\x51\x48\x51','\x57\x37\x72\x6a\x41\x5a\x70\x64\x51\x4e\x7a\x34\x57\x35\x38','\x57\x52\x79\x42\x70\x4a\x33\x64\x48\x6d\x6b\x31\x57\x52\x4c\x71','\x68\x43\x6b\x31\x7a\x38\x6b\x42\x57\x51\x78\x64\x4a\x6d\x6b\x64\x45\x61','\x57\x36\x38\x49\x57\x51\x53\x30\x45\x43\x6f\x35','\x57\x37\x75\x49\x69\x4b\x62\x65\x57\x37\x6d\x32\x78\x71','\x76\x5a\x37\x63\x4c\x6d\x6f\x69\x57\x4f\x6c\x63\x4e\x33\x6c\x63\x54\x71','\x57\x52\x46\x64\x56\x43\x6f\x6e\x61\x38\x6b\x63\x64\x61','\x6c\x77\x7a\x30','\x74\x43\x6b\x62\x70\x53\x6f\x69\x57\x37\x46\x63\x49\x43\x6f\x6b\x45\x61','\x74\x6d\x6b\x43\x6b\x43\x6f\x79','\x57\x35\x37\x63\x4f\x68\x4f\x59\x71\x38\x6b\x68','\x73\x64\x48\x31\x6a\x53\x6b\x44\x71\x4d\x5a\x64\x51\x61','\x42\x64\x42\x63\x52\x38\x6f\x77\x57\x36\x56\x64\x51\x6d\x6b\x54\x69\x47','\x57\x4f\x64\x63\x54\x65\x46\x64\x4e\x76\x47\x48\x57\x52\x48\x56','\x57\x36\x64\x64\x4c\x53\x6f\x75\x57\x34\x42\x64\x4f\x47','\x57\x34\x6c\x64\x55\x6d\x6f\x2b\x57\x36\x5a\x64\x4d\x62\x74\x63\x54\x73\x47','\x57\x51\x39\x43\x57\x35\x70\x63\x4a\x57\x58\x36\x43\x47\x43','\x6a\x53\x6f\x47\x57\x37\x4c\x78\x42\x6d\x6b\x2f','\x57\x36\x6e\x73\x7a\x4a\x78\x64\x55\x4d\x54\x50\x57\x37\x71','\x6b\x72\x70\x64\x47\x65\x48\x50\x57\x52\x37\x64\x55\x43\x6b\x44','\x57\x51\x4f\x52\x57\x51\x72\x69\x65\x6d\x6f\x57\x65\x67\x69','\x57\x4f\x56\x63\x4f\x4b\x4b\x6d\x6d\x5a\x4e\x63\x4f\x43\x6b\x71','\x45\x6d\x6b\x76\x57\x51\x44\x41\x43\x47\x6c\x64\x52\x33\x47','\x64\x6d\x6b\x77\x57\x36\x2f\x64\x53\x53\x6b\x56\x57\x35\x4b','\x57\x4f\x56\x63\x4f\x4b\x4b\x45\x6c\x5a\x37\x63\x4f\x43\x6b\x71','\x66\x47\x69\x63\x6c\x73\x53\x32\x42\x4b\x61','\x57\x50\x5a\x64\x50\x43\x6b\x41','\x57\x37\x78\x64\x4b\x38\x6f\x35\x57\x34\x46\x64\x4f\x49\x68\x63\x4c\x61\x79','\x73\x5a\x46\x63\x48\x38\x6f\x6a\x57\x4f\x74\x63\x4a\x47','\x76\x77\x35\x66\x75\x6d\x6f\x6e\x57\x35\x69\x66\x44\x47','\x6c\x4a\x68\x64\x51\x38\x6f\x6f\x42\x71','\x41\x6d\x6b\x74\x57\x52\x62\x70','\x6d\x59\x6c\x64\x56\x6d\x6f\x50\x7a\x6d\x6b\x65\x43\x5a\x34','\x6f\x38\x6b\x54\x78\x6d\x6b\x62\x57\x50\x71','\x57\x34\x33\x64\x55\x38\x6f\x68\x6b\x61\x70\x64\x4b\x61','\x57\x4f\x4a\x63\x50\x65\x4b\x41\x69\x5a\x34','\x64\x31\x68\x64\x56\x33\x4e\x63\x51\x53\x6f\x6b\x78\x6d\x6f\x6c','\x57\x52\x68\x63\x4a\x4e\x4e\x64\x51\x61','\x66\x38\x6b\x61\x57\x37\x33\x63\x4e\x53\x6b\x61\x57\x52\x42\x63\x4c\x6d\x6f\x52','\x6b\x53\x6f\x51\x66\x53\x6f\x78\x62\x77\x4b\x35\x57\x37\x79','\x7a\x57\x4b\x66\x46\x38\x6b\x41\x57\x51\x56\x63\x56\x59\x69','\x57\x51\x6c\x63\x4e\x4d\x56\x64\x52\x4e\x75','\x57\x50\x65\x6e\x75\x61','\x57\x51\x39\x70\x57\x34\x78\x63\x4c\x57\x58\x56\x42\x59\x47','\x57\x37\x4a\x64\x4b\x53\x6f\x45','\x64\x6d\x6b\x62\x57\x37\x78\x64\x56\x53\x6b\x53\x57\x35\x2f\x63\x48\x43\x6f\x41','\x77\x73\x4c\x2f\x61\x43\x6b\x75\x46\x67\x68\x64\x54\x47','\x68\x6d\x6b\x4a\x75\x47\x68\x64\x4a\x73\x6d\x69\x57\x35\x61','\x6e\x38\x6f\x47\x62\x53\x6f\x48\x6c\x4e\x53\x4f\x57\x37\x61','\x57\x34\x4e\x64\x4a\x31\x78\x64\x4e\x4c\x56\x64\x4b\x5a\x78\x64\x4e\x61','\x6d\x6d\x6f\x6c\x57\x37\x31\x6e\x42\x38\x6b\x50\x65\x53\x6f\x31','\x67\x53\x6f\x74\x57\x34\x6a\x49\x77\x61','\x6a\x53\x6f\x39\x57\x36\x6a\x67','\x70\x6d\x6b\x77\x57\x36\x56\x63\x49\x71','\x57\x37\x57\x37\x6a\x33\x62\x64\x57\x36\x4f\x55\x77\x47','\x7a\x59\x31\x2f\x6d\x6d\x6b\x62\x42\x33\x4e\x64\x52\x47','\x57\x35\x37\x63\x55\x4d\x61','\x57\x35\x47\x63\x63\x68\x62\x49\x57\x34\x47\x64\x44\x47','\x57\x50\x37\x64\x52\x38\x6b\x41\x6e\x47','\x73\x64\x4a\x63\x4a\x38\x6f\x46\x57\x50\x69','\x57\x52\x69\x37\x57\x52\x52\x64\x50\x4b\x4c\x43\x57\x51\x48\x79','\x57\x52\x38\x6b\x61\x58\x68\x64\x4d\x6d\x6b\x2f\x57\x52\x62\x47','\x73\x59\x39\x35\x6c\x6d\x6b\x62\x41\x75\x46\x64\x52\x61','\x70\x75\x39\x62\x6a\x47\x71\x4e\x57\x35\x76\x67','\x57\x4f\x2f\x64\x52\x6d\x6f\x75\x6d\x75\x35\x48\x57\x4f\x62\x65','\x57\x52\x30\x43\x72\x57','\x73\x67\x64\x64\x4f\x71\x4b\x73\x62\x71\x68\x63\x4e\x61','\x57\x50\x69\x74\x69\x53\x6b\x62\x46\x6d\x6f\x37','\x57\x51\x57\x62\x57\x52\x4c\x6a\x66\x6d\x6f\x57\x66\x66\x34','\x65\x38\x6b\x6c\x57\x37\x70\x64\x56\x53\x6b\x76\x57\x35\x68\x63\x54\x43\x6f\x47','\x46\x32\x42\x64\x54\x59\x4f\x73\x62\x62\x70\x63\x49\x71','\x57\x35\x31\x52\x72\x72\x37\x64\x48\x31\x72\x6e\x57\x37\x4b','\x66\x43\x6b\x6a\x77\x57\x42\x64\x49\x59\x6d','\x57\x50\x78\x63\x53\x75\x71\x65\x69\x5a\x34','\x57\x34\x33\x64\x52\x38\x6f\x69\x6a\x47\x70\x64\x48\x47','\x57\x51\x79\x71\x6f\x68\x78\x63\x4f\x4a\x35\x75\x57\x35\x75\x59\x78\x6d\x6f\x79\x68\x71','\x68\x53\x6b\x35\x76\x6d\x6b\x2f\x57\x52\x34','\x65\x53\x6b\x64\x57\x36\x78\x64\x48\x6d\x6b\x58\x57\x35\x56\x63\x54\x6d\x6f\x69','\x57\x50\x46\x64\x53\x38\x6b\x61\x69\x65\x47','\x57\x50\x6c\x63\x4f\x61\x4e\x63\x47\x57\x68\x63\x4d\x63\x78\x64\x4c\x78\x47\x47\x6d\x43\x6b\x4e','\x57\x37\x6e\x55\x57\x51\x37\x64\x4c\x4d\x48\x6b\x57\x4f\x31\x61','\x74\x67\x62\x73','\x66\x38\x6b\x7a\x77\x61\x70\x64\x4d\x4a\x4b','\x79\x58\x4b\x64','\x6d\x73\x4a\x64\x4f\x43\x6f\x79\x7a\x57','\x57\x34\x5a\x64\x4e\x38\x6f\x70\x57\x35\x68\x63\x4d\x53\x6b\x67\x41\x38\x6f\x35','\x71\x74\x78\x63\x56\x53\x6f\x69\x57\x4f\x74\x63\x4d\x30\x64\x63\x56\x71','\x57\x37\x30\x47\x6a\x4b\x62\x42\x57\x36\x4f\x55\x75\x61','\x78\x38\x6b\x41\x69\x38\x6f\x65\x57\x36\x42\x63\x4f\x53\x6f\x78\x7a\x57','\x57\x50\x70\x64\x55\x6d\x6f\x65\x63\x75\x62\x57\x57\x52\x48\x38','\x57\x50\x74\x64\x4e\x53\x6f\x33\x6d\x6d\x6b\x4c\x6f\x53\x6f\x2b\x57\x52\x4b','\x6d\x43\x6f\x58\x57\x34\x44\x71\x46\x6d\x6b\x56\x64\x6d\x6f\x2f','\x70\x67\x5a\x63\x54\x53\x6f\x51\x71\x53\x6b\x4a\x57\x35\x4a\x63\x4f\x57','\x71\x68\x31\x70\x76\x43\x6f\x6e\x57\x35\x30','\x57\x52\x38\x61\x78\x75\x6a\x51\x57\x50\x64\x63\x4a\x53\x6f\x4e','\x57\x4f\x42\x64\x4f\x38\x6b\x6f\x69\x61','\x75\x4c\x68\x64\x49\x59\x4f\x32\x6a\x5a\x2f\x63\x55\x61','\x57\x35\x46\x64\x4c\x53\x6f\x78\x57\x36\x46\x63\x4e\x43\x6b\x77','\x57\x52\x53\x74\x64\x62\x68\x64\x4d\x43\x6b\x39\x57\x52\x31\x53','\x57\x36\x71\x2b\x6b\x4c\x31\x63\x57\x37\x38\x4d','\x43\x6d\x6b\x6c\x69\x38\x6f\x72\x57\x36\x2f\x63\x4b\x53\x6f\x6e\x43\x61','\x57\x36\x4b\x31\x57\x51\x47\x4a\x43\x6d\x6f\x64\x43\x75\x71','\x57\x51\x66\x76\x69\x33\x78\x64\x4f\x47\x4c\x43\x73\x47','\x57\x52\x31\x4d\x66\x48\x4c\x2b\x66\x57','\x70\x73\x56\x64\x51\x38\x6f\x66\x43\x43\x6b\x70\x71\x4a\x43','\x57\x51\x75\x42\x71\x4c\x58\x57\x57\x50\x70\x63\x56\x57','\x57\x35\x2f\x63\x50\x78\x69\x49\x75\x53\x6b\x6d','\x70\x68\x58\x4d\x57\x35\x56\x64\x4e\x6d\x6f\x71\x62\x61','\x43\x71\x7a\x77\x61\x43\x6b\x50\x78\x65\x64\x64\x48\x71','\x73\x53\x6b\x67\x6f\x53\x6f\x7a\x57\x37\x70\x63\x4b\x53\x6f\x74\x43\x61','\x6a\x6d\x6b\x42\x75\x57\x52\x64\x49\x59\x6d\x71\x57\x35\x71','\x77\x64\x2f\x63\x4a\x77\x65\x48\x70\x43\x6b\x61\x57\x4f\x53','\x57\x50\x46\x64\x4f\x43\x6b\x43\x69\x62\x4f\x56','\x57\x36\x5a\x64\x47\x53\x6b\x38\x57\x51\x37\x63\x4b\x61','\x6e\x6d\x6f\x33\x57\x37\x30\x7a','\x57\x4f\x68\x64\x52\x38\x6b\x74\x69\x65\x4b','\x71\x6d\x6b\x6a\x6b\x6d\x6f\x4a\x57\x36\x33\x63\x4d\x6d\x6f\x6a\x43\x61','\x57\x51\x54\x4c\x6a\x64\x65\x56','\x70\x75\x39\x77\x69\x71\x71\x54\x57\x34\x65','\x57\x4f\x4a\x64\x55\x43\x6f\x75\x70\x30\x76\x59','\x57\x50\x39\x48\x6d\x4a\x34\x6e\x57\x52\x42\x63\x50\x43\x6b\x4f','\x57\x36\x6a\x74\x45\x49\x4a\x64\x56\x77\x66\x4c\x57\x35\x57','\x6c\x72\x52\x64\x56\x4c\x6e\x49\x57\x51\x56\x64\x52\x38\x6b\x6b','\x57\x37\x5a\x64\x4b\x53\x6f\x69\x57\x35\x6c\x64\x53\x59\x47','\x57\x50\x52\x64\x4f\x43\x6f\x6b\x6f\x75\x47','\x57\x50\x74\x64\x52\x53\x6b\x52\x6a\x31\x46\x64\x4e\x6d\x6f\x68\x44\x57','\x74\x77\x35\x70\x43\x38\x6f\x76\x57\x35\x30\x58\x77\x57','\x45\x43\x6f\x61\x57\x51\x68\x64\x4a\x43\x6b\x44\x57\x51\x56\x63\x50\x43\x6f\x4b\x72\x6d\x6b\x68','\x57\x35\x78\x64\x56\x38\x6f\x78\x6e\x57\x2f\x64\x4d\x31\x7a\x50','\x57\x34\x6c\x64\x4f\x4b\x6c\x64\x4b\x4c\x46\x64\x4a\x57','\x57\x52\x4f\x44\x57\x52\x4c\x41','\x57\x4f\x30\x72\x57\x50\x4a\x64\x4b\x68\x38','\x57\x36\x56\x64\x4e\x68\x5a\x64\x50\x67\x5a\x64\x53\x57\x33\x64\x52\x57','\x57\x37\x4a\x64\x47\x53\x6f\x65\x57\x36\x52\x64\x53\x4a\x64\x63\x49\x57\x79','\x65\x38\x6b\x6a\x76\x64\x56\x64\x48\x74\x71\x69\x57\x37\x38','\x57\x37\x4b\x56\x70\x71','\x64\x38\x6b\x71\x57\x37\x6c\x64\x56\x38\x6b\x30\x57\x35\x33\x63\x56\x38\x6f\x45','\x57\x51\x61\x59\x57\x52\x37\x64\x55\x31\x35\x62\x57\x4f\x6e\x67','\x57\x34\x6c\x64\x56\x4c\x6c\x64\x49\x75\x68\x64\x4b\x74\x4a\x64\x49\x71','\x57\x35\x31\x5a\x6d\x43\x6b\x64\x71\x43\x6b\x68\x57\x4f\x5a\x64\x4d\x71','\x57\x34\x4c\x30\x6c\x53\x6b\x78\x75\x43\x6b\x37\x57\x50\x4e\x64\x4e\x57','\x57\x52\x62\x69\x57\x35\x52\x63\x49\x61\x7a\x36','\x57\x37\x4c\x67\x45\x57','\x57\x34\x2f\x64\x4c\x53\x6f\x6e\x57\x34\x52\x63\x4b\x43\x6b\x67\x75\x43\x6f\x33','\x42\x61\x47\x63\x72\x61','\x57\x50\x39\x47\x70\x59\x30\x41','\x57\x51\x69\x32\x57\x52\x42\x64\x50\x30\x4c\x67\x57\x51\x48\x64','\x57\x52\x42\x63\x47\x32\x56\x63\x52\x49\x72\x42','\x57\x52\x6e\x6c\x57\x35\x6c\x63\x4e\x62\x44\x4d','\x45\x57\x34\x6f\x74\x71','\x6d\x6d\x6f\x41\x61\x43\x6f\x68\x6e\x33\x43\x39\x57\x36\x43','\x66\x43\x6b\x7a\x74\x48\x64\x64\x4f\x74\x43\x78\x57\x35\x6d','\x69\x38\x6f\x47\x62\x53\x6f\x48\x6c\x4e\x53\x4f\x57\x37\x61','\x57\x35\x68\x64\x50\x6d\x6b\x74\x57\x51\x33\x63\x54\x4b\x64\x64\x56\x58\x79','\x57\x34\x79\x47\x57\x51\x69\x31\x42\x6d\x6f\x55\x7a\x65\x69','\x57\x50\x46\x64\x4b\x6d\x6f\x37\x6c\x53\x6b\x50\x70\x53\x6f\x42\x57\x4f\x65','\x78\x74\x48\x50\x6e\x38\x6b\x6c\x43\x57','\x77\x53\x6b\x79\x70\x38\x6f\x69\x57\x36\x33\x63\x4d\x6d\x6f\x63\x45\x61','\x57\x51\x61\x36\x57\x4f\x42\x64\x50\x30\x76\x73\x57\x50\x6a\x58','\x57\x34\x6c\x64\x56\x4b\x75','\x6b\x48\x5a\x64\x49\x75\x72\x51\x57\x51\x53','\x57\x51\x31\x42\x57\x35\x6c\x63\x4a\x57\x50\x4a\x42\x4a\x4b','\x46\x53\x6b\x69\x57\x52\x4c\x64\x43\x71\x4b','\x57\x4f\x46\x64\x4f\x49\x44\x4b\x66\x38\x6f\x6e\x57\x36\x56\x64\x54\x66\x53\x7a\x6f\x4e\x38','\x6a\x43\x6b\x51\x68\x64\x64\x64\x4a\x61\x38\x41\x65\x61','\x79\x43\x6b\x4e\x57\x51\x38\x42\x6c\x53\x6f\x37\x67\x53\x6f\x49\x6e\x30\x76\x74\x6d\x47','\x57\x35\x37\x64\x4e\x6d\x6b\x45\x6b\x66\x34','\x57\x35\x64\x64\x48\x53\x6b\x72','\x6d\x65\x37\x63\x4a\x53\x6f\x47\x44\x71','\x57\x51\x71\x57\x57\x51\x2f\x64\x53\x75\x62\x68\x57\x4f\x44\x6c','\x68\x38\x6b\x7a\x71\x61','\x57\x34\x64\x63\x55\x78\x79\x35\x73\x6d\x6b\x62\x57\x35\x42\x64\x4f\x57','\x57\x50\x54\x6e\x6d\x67\x6c\x64\x56\x71\x39\x64\x71\x71','\x57\x51\x71\x2f\x57\x51\x33\x64\x56\x75\x6e\x67\x57\x51\x48\x68','\x57\x37\x62\x65\x42\x71','\x6b\x30\x72\x75\x6d\x71\x30\x38\x57\x37\x50\x76','\x57\x34\x79\x4b\x57\x51\x47\x32\x45\x43\x6f\x5a\x41\x31\x6d','\x6e\x4a\x42\x64\x50\x53\x6f\x50\x79\x43\x6b\x72\x43\x74\x75','\x70\x48\x52\x64\x54\x4b\x48\x5a\x57\x51\x6c\x64\x4a\x6d\x6b\x65','\x57\x36\x64\x64\x48\x43\x6f\x6a\x57\x35\x68\x64\x53\x49\x70\x63\x47\x48\x53','\x57\x34\x70\x63\x54\x4e\x38\x31\x73\x38\x6b\x75','\x6e\x4c\x72\x41\x69\x71\x30\x36','\x43\x38\x6b\x42\x57\x52\x4c\x4e\x45\x58\x74\x64\x51\x68\x57','\x57\x4f\x6c\x64\x4e\x38\x6f\x32','\x63\x6d\x6b\x71\x57\x37\x5a\x64\x51\x38\x6b\x58\x57\x35\x56\x63\x56\x53\x6f\x5a','\x67\x43\x6b\x74\x77\x71\x4a\x64\x49\x5a\x61\x46','\x69\x68\x31\x49\x57\x36\x42\x64\x51\x6d\x6f\x79\x64\x4d\x65','\x57\x51\x4f\x70\x71\x38\x6f\x47\x57\x52\x6c\x63\x50\x43\x6f\x39\x61\x57','\x57\x34\x46\x64\x53\x38\x6f\x78','\x57\x52\x65\x77\x64\x59\x4f','\x66\x53\x6b\x6d\x57\x37\x69','\x70\x6d\x6b\x62\x57\x36\x33\x63\x4d\x61','\x74\x74\x4c\x37\x6f\x43\x6b\x62','\x70\x4c\x37\x63\x56\x4b\x4f\x4e','\x43\x32\x6c\x64\x50\x58\x75\x6f\x62\x58\x74\x63\x54\x57','\x57\x50\x44\x77\x70\x59\x7a\x6e\x6a\x53\x6f\x4a\x66\x71','\x57\x36\x66\x76\x7a\x5a\x4e\x64\x51\x4c\x4c\x34\x57\x34\x47','\x6d\x66\x72\x76\x68\x62\x30\x34\x57\x34\x4c\x6d','\x57\x34\x70\x63\x53\x68\x71\x49\x71\x38\x6b\x62\x57\x36\x5a\x64\x52\x71','\x57\x35\x68\x64\x56\x38\x6f\x65\x6e\x57\x4e\x64\x4d\x47','\x57\x51\x6a\x48\x63\x71\x7a\x30\x61\x53\x6f\x76\x66\x71','\x57\x52\x64\x64\x4e\x6d\x6b\x37\x63\x77\x33\x64\x54\x53\x6f\x32\x71\x57','\x75\x59\x39\x4a\x61\x43\x6b\x6e\x45\x71','\x46\x4d\x4a\x64\x51\x47','\x46\x6d\x6b\x46\x57\x52\x35\x35\x41\x47\x42\x64\x52\x33\x47','\x62\x32\x64\x63\x53\x32\x75\x32','\x57\x37\x34\x6c\x6a\x65\x72\x62','\x57\x52\x4a\x64\x48\x43\x6f\x54\x6b\x43\x6b\x4a\x6d\x43\x6f\x6d','\x68\x4b\x46\x64\x53\x78\x2f\x63\x53\x38\x6f\x6d','\x65\x6d\x6f\x78\x57\x34\x50\x36\x73\x43\x6b\x79','\x57\x4f\x56\x64\x52\x6d\x6f\x46\x6f\x4b\x72\x30\x57\x51\x76\x38','\x6f\x4a\x6d\x56','\x57\x35\x78\x64\x56\x30\x74\x64\x4a\x31\x33\x64\x4b\x58\x70\x64\x49\x71','\x6b\x38\x6f\x33\x67\x38\x6f\x76\x6d\x33\x71\x39\x57\x37\x4b','\x57\x35\x54\x50\x6c\x53\x6b\x64\x74\x43\x6b\x66\x57\x4f\x6d','\x57\x34\x56\x64\x54\x76\x2f\x64\x4e\x65\x5a\x64\x49\x71','\x57\x52\x64\x64\x4e\x6d\x6b\x37\x63\x68\x52\x64\x4f\x38\x6f\x37\x74\x61','\x57\x50\x39\x6f\x69\x33\x74\x64\x4f\x71\x66\x71\x71\x71','\x57\x52\x37\x63\x48\x4d\x4b\x4b\x65\x62\x2f\x63\x4c\x53\x6b\x39','\x6f\x62\x52\x64\x4b\x47\x57\x31\x57\x37\x2f\x63\x51\x53\x6f\x69','\x71\x73\x70\x63\x4b\x53\x6f\x74\x57\x4f\x37\x63\x4c\x61','\x57\x4f\x37\x64\x47\x53\x6f\x65\x6b\x38\x6b\x4f\x6e\x53\x6f\x6c\x57\x52\x53','\x57\x35\x78\x63\x50\x32\x71\x35\x73\x43\x6b\x42','\x64\x53\x6b\x70\x76\x57\x70\x64\x49\x57','\x57\x51\x52\x64\x55\x43\x6f\x4b\x78\x71','\x57\x51\x47\x58\x57\x52\x43','\x57\x4f\x54\x74\x69\x4d\x42\x64\x50\x71\x75','\x44\x53\x6b\x74\x57\x51\x71','\x77\x48\x76\x58\x6f\x38\x6b\x44\x42\x33\x68\x64\x54\x61','\x57\x4f\x57\x79\x75\x53\x6f\x72\x57\x51\x6c\x63\x55\x43\x6f\x56\x61\x47','\x45\x59\x6d\x72\x72\x43\x6b\x44\x57\x51\x4a\x63\x55\x49\x69','\x57\x37\x6e\x34\x79\x59\x74\x64\x51\x4e\x72\x4c\x57\x35\x71','\x57\x35\x64\x64\x48\x38\x6b\x43\x6e\x76\x43\x58\x57\x50\x4c\x61','\x6b\x6d\x6b\x2f\x41\x6d\x6b\x65\x57\x50\x79','\x42\x48\x38\x63\x46\x38\x6b\x41\x57\x51\x56\x63\x56\x59\x69','\x57\x4f\x31\x61\x6a\x32\x4e\x64\x56\x57\x76\x78','\x76\x5a\x2f\x63\x4b\x43\x6f\x72\x57\x52\x75','\x57\x4f\x42\x64\x4c\x43\x6f\x4a\x69\x6d\x6b\x51\x6f\x47','\x78\x73\x72\x50','\x72\x49\x4a\x63\x4c\x43\x6f\x46\x57\x50\x69','\x57\x36\x30\x4d\x57\x51\x61','\x57\x50\x61\x45\x71\x38\x6f\x47\x57\x51\x6d','\x57\x34\x78\x63\x50\x4e\x79\x33\x71\x57','\x57\x52\x75\x64\x74\x66\x58\x52','\x57\x51\x74\x63\x53\x30\x4b\x66\x6e\x4a\x78\x63\x51\x53\x6b\x68','\x6d\x6d\x6f\x47\x61\x43\x6f\x67','\x57\x34\x50\x4a\x69\x53\x6b\x44\x74\x43\x6b\x71\x57\x52\x6c\x64\x4d\x57','\x57\x52\x54\x47\x66\x66\x37\x64\x47\x74\x71','\x67\x53\x6b\x79\x41\x71\x4e\x64\x4a\x59\x4b\x55\x57\x34\x69','\x77\x47\x62\x77\x6a\x53\x6b\x78','\x6c\x4a\x68\x64\x51\x38\x6f\x73\x79\x43\x6b\x63\x45\x63\x47','\x62\x4d\x4a\x63\x52\x71','\x57\x34\x52\x64\x4e\x43\x6b\x6e\x6d\x31\x71\x4d','\x57\x36\x4f\x56\x57\x51\x7a\x50\x70\x6d\x6b\x51','\x67\x4d\x37\x64\x4f\x57','\x43\x32\x6c\x64\x4d\x58\x71\x73\x66\x62\x6c\x63\x4a\x71','\x57\x36\x42\x64\x49\x43\x6b\x49\x57\x50\x78\x63\x4b\x61','\x57\x51\x58\x6e\x57\x35\x74\x63\x4e\x47\x35\x56\x76\x61\x65','\x57\x37\x56\x64\x4b\x53\x6f\x46\x57\x36\x52\x64\x52\x49\x71','\x6f\x38\x6b\x68\x57\x36\x52\x63\x4c\x6d\x6b\x43\x57\x52\x71','\x57\x51\x58\x53\x68\x4c\x37\x64\x4a\x4a\x72\x48\x7a\x71','\x45\x32\x56\x64\x51\x74\x47\x64\x62\x71\x68\x63\x49\x57','\x63\x43\x6b\x44\x71\x71','\x57\x36\x65\x32\x69\x61\x54\x2f\x6a\x53\x6f\x66\x6f\x57','\x57\x50\x5a\x64\x55\x43\x6b\x59\x6c\x66\x78\x64\x4d\x53\x6f\x71\x45\x71','\x61\x4d\x42\x63\x53\x57','\x65\x76\x42\x64\x56\x78\x2f\x63\x55\x53\x6f\x42','\x62\x78\x4e\x63\x51\x68\x71\x41\x64\x6d\x6b\x42\x57\x50\x65','\x63\x4d\x35\x56\x67\x4a\x43\x43\x57\x37\x44\x49','\x61\x67\x5a\x63\x50\x66\x38\x53\x68\x61','\x69\x74\x69\x31\x67\x61\x30','\x78\x6d\x6b\x43\x69\x38\x6f\x6f\x57\x37\x4f','\x72\x6d\x6b\x78\x57\x51\x76\x6f\x45\x57','\x57\x35\x37\x64\x4a\x6d\x6b\x4f\x6d\x30\x34\x50\x57\x52\x58\x62','\x6e\x47\x69\x49\x64\x71\x53\x77\x74\x4d\x61','\x65\x77\x31\x37\x68\x63\x75\x6a\x57\x37\x31\x38','\x57\x37\x62\x64\x41\x73\x70\x64\x56\x32\x6d','\x57\x36\x42\x64\x49\x6d\x6f\x32\x64\x73\x4e\x64\x55\x4d\x44\x59','\x57\x51\x71\x51\x78\x31\x44\x54\x57\x50\x46\x63\x55\x6d\x6f\x38','\x63\x38\x6b\x53\x44\x38\x6b\x68\x57\x52\x69','\x57\x4f\x39\x39\x69\x64\x43\x41\x57\x52\x42\x63\x53\x6d\x6b\x30','\x63\x4e\x50\x54\x68\x6d\x6b\x47\x46\x32\x6c\x64\x54\x61','\x57\x4f\x76\x36\x70\x57','\x57\x52\x54\x5a\x6d\x72\x48\x50\x61\x53\x6f\x69','\x57\x34\x42\x64\x52\x6d\x6f\x61\x6b\x48\x69','\x70\x67\x31\x4e\x57\x35\x5a\x64\x53\x71','\x57\x51\x48\x43\x57\x35\x33\x63\x49\x58\x6e\x52\x42\x59\x47','\x6e\x38\x6f\x51\x62\x38\x6f\x61\x6f\x78\x38\x44\x57\x37\x69','\x57\x4f\x56\x63\x53\x76\x71\x42\x69\x57','\x68\x71\x42\x64\x4d\x38\x6f\x30\x76\x43\x6b\x49\x76\x48\x57','\x57\x34\x68\x64\x55\x76\x33\x64\x4a\x31\x33\x64\x4b\x57','\x73\x49\x4f\x4f\x42\x43\x6b\x55\x57\x4f\x56\x63\x4a\x62\x30','\x42\x62\x6d\x6b\x75\x6d\x6b\x64\x57\x52\x37\x63\x50\x59\x47','\x57\x4f\x4c\x49\x6e\x73\x30\x67','\x57\x51\x52\x64\x55\x43\x6b\x72\x6a\x4b\x4e\x64\x4c\x53\x6f\x71\x71\x57','\x57\x52\x47\x61\x73\x32\x31\x30\x57\x4f\x68\x63\x51\x6d\x6f\x6d','\x63\x4c\x42\x63\x4b\x6d\x6f\x65\x7a\x47','\x6f\x38\x6b\x71\x57\x37\x64\x63\x4d\x6d\x6b\x46\x57\x52\x69','\x64\x38\x6b\x32\x44\x43\x6b\x67\x57\x52\x74\x64\x47\x6d\x6b\x32\x44\x57','\x63\x38\x6b\x30\x7a\x6d\x6b\x6d\x57\x51\x52\x64\x48\x53\x6b\x59\x45\x47','\x57\x34\x64\x63\x50\x33\x47\x4f\x78\x38\x6b\x51\x57\x34\x46\x64\x51\x71','\x79\x32\x6c\x64\x54\x58\x6d','\x57\x52\x75\x37\x57\x51\x52\x64\x4f\x61','\x57\x34\x5a\x64\x4d\x43\x6b\x42\x6f\x30\x34\x4b','\x57\x52\x30\x76\x57\x52\x54\x72','\x68\x32\x4a\x63\x52\x32\x43\x47\x64\x6d\x6b\x31\x57\x50\x30','\x42\x59\x68\x63\x4f\x38\x6f\x61\x57\x37\x56\x64\x56\x38\x6b\x78\x6a\x47','\x57\x4f\x48\x4b\x6e\x62\x47\x33','\x57\x35\x65\x79\x63\x4d\x6a\x33\x57\x34\x4f\x44\x7a\x71','\x73\x77\x50\x73\x77\x38\x6f\x77\x57\x35\x53','\x45\x43\x6b\x64\x57\x52\x35\x70\x42\x71','\x6e\x53\x6f\x51\x62\x38\x6f\x67\x70\x32\x47\x64\x57\x37\x61','\x57\x4f\x35\x30\x65\x32\x2f\x64\x49\x71','\x57\x4f\x4e\x64\x55\x38\x6f\x33\x69\x30\x61','\x67\x53\x6b\x46\x75\x57','\x57\x37\x43\x59\x57\x51\x4f\x35\x42\x6d\x6f\x55','\x57\x52\x43\x2f\x57\x52\x78\x64\x4f\x75\x4c\x42','\x64\x63\x53\x4c\x68\x48\x53\x75\x72\x32\x43','\x57\x51\x71\x77\x67\x59\x53','\x57\x50\x30\x44\x72\x6d\x6f\x72\x57\x51\x6c\x63\x50\x38\x6f\x57\x67\x61','\x67\x32\x4a\x63\x50\x67\x57\x51\x67\x43\x6b\x71\x57\x51\x75','\x6a\x43\x6f\x4d\x57\x37\x44\x68\x42\x6d\x6b\x56\x67\x38\x6f\x4f','\x57\x34\x50\x59\x6d\x38\x6b\x67\x72\x53\x6b\x64','\x61\x43\x6f\x77\x66\x53\x6f\x4b\x6d\x57','\x70\x6d\x6b\x4c\x62\x4a\x70\x64\x4a\x48\x34\x73\x6b\x47','\x57\x35\x6a\x49\x76\x57\x2f\x64\x4e\x65\x6a\x6a\x57\x36\x75','\x74\x62\x64\x63\x4a\x43\x6f\x51\x57\x35\x68\x64\x4e\x53\x6b\x52\x61\x61','\x45\x6d\x6f\x33\x72\x32\x33\x63\x4d\x65\x7a\x65\x6f\x4b\x62\x5a\x75\x53\x6f\x38\x75\x47','\x57\x35\x57\x72\x57\x4f\x47\x78\x78\x38\x6f\x7a\x76\x32\x4b','\x69\x53\x6b\x58\x65\x4a\x33\x64\x48\x61\x30','\x64\x53\x6b\x78\x57\x37\x4a\x64\x52\x53\x6b\x4b\x57\x35\x4f','\x64\x6d\x6b\x6a\x57\x37\x74\x64\x51\x38\x6b\x58\x57\x35\x56\x63\x56\x47','\x57\x50\x46\x63\x54\x75\x69','\x57\x51\x64\x64\x55\x43\x6f\x55\x78\x65\x65','\x57\x36\x46\x64\x47\x38\x6b\x54\x57\x4f\x65','\x75\x72\x68\x63\x52\x38\x6f\x70\x57\x36\x57','\x74\x68\x58\x56\x78\x43\x6f\x65\x57\x35\x79\x4f\x72\x57','\x68\x38\x6b\x7a\x76\x72\x42\x64\x4c\x59\x65\x66\x57\x34\x65','\x45\x64\x42\x63\x55\x6d\x6f\x33\x57\x37\x52\x64\x56\x43\x6b\x67\x6d\x71','\x57\x52\x64\x64\x4f\x53\x6f\x30\x71\x66\x64\x63\x49\x53\x6f\x38\x57\x4f\x34','\x6b\x4d\x66\x59\x57\x34\x33\x64\x51\x38\x6f\x6a\x68\x4c\x6d','\x57\x52\x6c\x64\x51\x43\x6f\x45\x74\x65\x4a\x63\x54\x43\x6f\x36\x57\x4f\x53','\x66\x38\x6b\x78\x57\x37\x2f\x64\x48\x6d\x6b\x30\x57\x34\x37\x63\x54\x53\x6f\x64','\x57\x52\x79\x62\x57\x52\x76\x49\x63\x6d\x6f\x54\x68\x78\x38','\x70\x6d\x6b\x41\x57\x37\x33\x63\x4a\x57','\x57\x52\x4a\x64\x51\x6d\x6f\x34\x43\x75\x33\x63\x56\x47','\x57\x4f\x79\x6e\x72\x43\x6f\x38\x57\x52\x6c\x63\x4f\x38\x6f\x64\x61\x71','\x57\x51\x71\x53\x57\x51\x52\x64\x56\x75\x6e\x67','\x57\x51\x46\x63\x47\x4e\x4a\x64\x51\x68\x4b\x7a\x57\x50\x6e\x6e','\x57\x35\x74\x64\x48\x53\x6f\x6d\x57\x36\x46\x63\x47\x43\x6b\x63\x79\x53\x6f\x55','\x6d\x6d\x6f\x4d\x57\x36\x54\x6b\x44\x53\x6b\x49','\x74\x78\x50\x45\x79\x38\x6f\x78\x57\x34\x6d\x6e\x72\x47','\x66\x47\x69\x6e\x6c\x74\x61\x49\x45\x65\x57','\x6f\x58\x5a\x64\x4f\x43\x6f\x79\x79\x53\x6b\x65\x43\x74\x75','\x75\x68\x39\x79\x78\x43\x6f\x77\x57\x35\x79','\x57\x36\x46\x64\x49\x43\x6b\x2f\x57\x4f\x68\x63\x4c\x77\x79','\x57\x37\x78\x64\x4a\x53\x6b\x69\x57\x4f\x42\x63\x4c\x67\x4a\x64\x47\x59\x47','\x57\x36\x61\x5a\x57\x51\x69\x4f','\x45\x63\x42\x63\x52\x43\x6f\x77\x57\x36\x4f','\x57\x35\x58\x4f\x69\x6d\x6b\x6e\x72\x6d\x6b\x62\x57\x4f\x4b','\x77\x78\x70\x63\x54\x4b\x30\x43\x67\x53\x6b\x57','\x57\x35\x2f\x64\x4e\x6d\x6f\x64\x57\x34\x4a\x63\x4d\x6d\x6b\x78\x45\x53\x6f\x4b','\x41\x72\x70\x63\x54\x6d\x6f\x4f\x57\x4f\x71','\x6b\x43\x6b\x46\x57\x37\x74\x63\x4b\x53\x6b\x72','\x57\x34\x52\x64\x54\x43\x6f\x6c','\x78\x62\x42\x63\x4b\x38\x6f\x4d\x57\x34\x2f\x64\x4e\x38\x6b\x35\x65\x47','\x6f\x67\x72\x48\x57\x35\x64\x64\x52\x43\x6f\x6a\x65\x4b\x79','\x69\x43\x6f\x4d\x57\x37\x4c\x61\x46\x61','\x41\x47\x71\x74\x46\x38\x6b\x43\x57\x51\x37\x63\x56\x49\x61','\x57\x52\x71\x61\x77\x76\x35\x32\x57\x4f\x46\x63\x53\x6d\x6f\x4e','\x57\x36\x39\x65\x57\x36\x38\x6a\x70\x53\x6f\x42\x6a\x32\x7a\x54\x45\x71','\x57\x52\x6d\x41\x61\x4a\x5a\x64\x4c\x6d\x6b\x2f\x57\x51\x48\x71','\x46\x71\x38\x67\x64\x43\x6b\x61\x57\x52\x52\x63\x54\x4a\x30','\x76\x64\x33\x63\x47\x6d\x6f\x74\x57\x4f\x2f\x63\x4a\x4c\x42\x63\x51\x47','\x68\x33\x56\x63\x56\x67\x6d\x47','\x57\x35\x33\x64\x4e\x38\x6f\x63\x57\x35\x46\x63\x4c\x57','\x41\x62\x38\x6b','\x57\x50\x30\x66\x6b\x53\x6b\x38\x44\x38\x6f\x4d\x66\x33\x57','\x57\x36\x72\x78\x42\x63\x64\x64\x50\x32\x6d','\x6c\x73\x64\x64\x4b\x4c\x72\x51\x57\x51\x46\x64\x56\x43\x6b\x78','\x6c\x77\x7a\x48\x57\x35\x56\x64\x52\x38\x6f\x79\x65\x57','\x57\x51\x71\x6c\x65\x59\x46\x64\x47\x38\x6b\x4f','\x57\x4f\x79\x43\x76\x6d\x6f\x4e\x57\x52\x4e\x63\x53\x6d\x6f\x31\x65\x71','\x57\x37\x68\x64\x4d\x64\x33\x63\x50\x63\x7a\x41\x57\x50\x35\x79\x57\x34\x43\x32\x57\x36\x68\x63\x4b\x61','\x76\x59\x58\x38\x6c\x43\x6b\x62\x41\x71','\x57\x50\x61\x64\x69\x43\x6b\x65\x42\x43\x6f\x48','\x77\x38\x6b\x41\x6c\x43\x6f\x46\x57\x37\x4f','\x57\x35\x4e\x63\x55\x33\x71\x2f\x73\x38\x6b\x66\x57\x35\x2f\x64\x56\x47','\x57\x4f\x78\x64\x55\x6d\x6b\x42\x69\x75\x37\x64\x4b\x6d\x6f\x62\x42\x47','\x57\x50\x74\x64\x52\x6d\x6f\x63\x63\x76\x4c\x57\x57\x51\x54\x67','\x72\x67\x6e\x42\x75\x38\x6f\x71\x57\x35\x4f\x76\x71\x71','\x68\x32\x4a\x63\x55\x47','\x57\x4f\x6c\x64\x4e\x38\x6f\x30\x6a\x38\x6b\x51\x6d\x6d\x6f\x70\x57\x52\x53','\x64\x43\x6b\x48\x57\x34\x56\x63\x54\x6d\x6b\x39\x57\x50\x33\x63\x56\x38\x6f\x57','\x57\x51\x34\x76\x57\x51\x35\x72\x65\x53\x6f\x38\x66\x75\x38','\x57\x4f\x38\x73\x74\x66\x58\x36\x57\x50\x42\x63\x53\x6d\x6f\x4e','\x57\x52\x38\x71\x57\x4f\x48\x71\x68\x6d\x6f\x4c\x6c\x4e\x69','\x57\x37\x62\x64\x76\x5a\x6c\x64\x55\x4e\x58\x50\x57\x36\x75','\x7a\x57\x4b\x66\x46\x38\x6b\x65\x57\x52\x37\x63\x51\x48\x69','\x75\x61\x38\x73\x74\x43\x6b\x63\x57\x52\x52\x63\x4f\x74\x71','\x57\x50\x65\x30\x63\x38\x6b\x6c\x73\x61','\x61\x66\x42\x63\x4c\x53\x6f\x67\x7a\x57','\x72\x38\x6b\x44\x6c\x53\x6f\x4a\x57\x36\x52\x63\x4a\x43\x6f\x70\x45\x47','\x46\x4a\x46\x63\x56\x57','\x57\x37\x65\x38\x6e\x4b\x7a\x7a\x57\x37\x71','\x79\x62\x47\x63\x74\x61','\x76\x63\x70\x63\x4a\x53\x6f\x45\x57\x50\x74\x63\x4d\x76\x42\x63\x4f\x61','\x57\x51\x42\x63\x47\x4e\x52\x64\x54\x68\x71\x46\x57\x4f\x35\x66','\x6c\x53\x6f\x76\x67\x6d\x6f\x63\x6e\x71','\x6d\x63\x38\x4c\x64\x72\x57\x79\x42\x77\x43','\x42\x48\x65\x63\x75\x38\x6b\x46\x57\x52\x52\x63\x53\x63\x47','\x66\x77\x70\x64\x4b\x53\x6b\x6b\x57\x35\x64\x63\x54\x31\x42\x63\x53\x74\x33\x63\x4b\x6d\x6b\x51','\x41\x6d\x6b\x6f\x57\x52\x48\x64\x43\x61\x61','\x57\x36\x64\x64\x54\x43\x6b\x59\x57\x4f\x52\x63\x4d\x77\x78\x64\x4a\x63\x79','\x78\x64\x37\x63\x49\x77\x69\x6a\x63\x6d\x6b\x66\x57\x50\x57','\x75\x78\x31\x44\x78\x38\x6f\x68','\x57\x50\x78\x63\x50\x75\x53\x6b\x69\x59\x47','\x57\x34\x4e\x64\x4d\x38\x6b\x71\x69\x4b\x6d\x45\x57\x4f\x66\x78','\x78\x73\x72\x55','\x57\x52\x71\x45\x61\x49\x42\x64\x49\x6d\x6b\x71\x57\x52\x39\x39','\x45\x58\x30\x61','\x57\x4f\x72\x48\x6d\x47\x61\x6b\x57\x52\x74\x63\x51\x6d\x6b\x2b','\x57\x51\x71\x41\x61\x4a\x5a\x64\x49\x6d\x6b\x37\x57\x4f\x6e\x35','\x70\x6d\x6f\x37\x57\x37\x79','\x71\x77\x7a\x42\x77\x43\x6f\x72\x57\x34\x43','\x57\x51\x31\x65\x6d\x4b\x37\x64\x4d\x47','\x76\x4a\x74\x63\x4c\x43\x6f\x4c\x57\x50\x46\x63\x4e\x30\x68\x63\x4f\x71','\x57\x51\x70\x63\x48\x32\x78\x64\x53\x32\x6d','\x57\x52\x79\x54\x45\x43\x6f\x6d\x57\x50\x42\x63\x4c\x6d\x6f\x78\x6d\x71','\x77\x73\x4c\x2f\x61\x43\x6b\x6d\x41\x68\x52\x64\x48\x71','\x57\x4f\x2f\x64\x48\x6d\x6f\x47\x68\x43\x6b\x54\x6f\x53\x6f\x67\x57\x4f\x65','\x68\x76\x70\x63\x4e\x53\x6f\x63\x43\x6d\x6b\x68','\x71\x67\x66\x6b','\x63\x38\x6b\x30\x43\x43\x6b\x42\x57\x52\x2f\x64\x4d\x43\x6b\x32\x45\x47','\x57\x34\x53\x54\x6b\x4b\x6a\x67\x57\x37\x75\x53\x75\x61','\x6b\x6d\x6b\x48\x63\x71','\x6c\x43\x6f\x52\x66\x53\x6f\x78\x69\x4c\x75\x36','\x69\x68\x31\x49\x57\x36\x42\x64\x54\x53\x6f\x6e\x67\x31\x65','\x45\x67\x70\x64\x4f\x71\x53','\x57\x52\x53\x67\x57\x51\x72\x75\x65\x53\x6f\x5a','\x6b\x49\x42\x64\x4d\x38\x6f\x65\x43\x43\x6b\x61\x42\x4a\x75','\x74\x6d\x6b\x62\x70\x6d\x6f\x75\x57\x37\x52\x63\x4a\x38\x6f\x78\x43\x61','\x63\x62\x68\x64\x50\x43\x6f\x7a\x78\x47','\x76\x59\x48\x57\x6f\x38\x6b\x68\x41\x71','\x67\x75\x2f\x64\x56\x33\x6c\x63\x52\x71','\x43\x73\x42\x63\x4f\x43\x6f\x67\x57\x36\x56\x64\x52\x47','\x57\x36\x7a\x48\x6a\x6d\x6b\x62\x74\x43\x6b\x77\x57\x4f\x5a\x64\x4d\x71','\x76\x5a\x74\x63\x47\x53\x6f\x69\x57\x4f\x74\x63\x4a\x4d\x5a\x63\x50\x61','\x64\x38\x6b\x44\x72\x61\x70\x64\x49\x59\x75\x57\x57\x34\x43','\x64\x76\x44\x63\x57\x37\x4a\x64\x47\x6d\x6f\x32\x6d\x78\x43','\x57\x36\x30\x79\x57\x52\x71\x55\x7a\x6d\x6f\x58\x7a\x65\x71','\x57\x35\x70\x63\x4f\x78\x69\x30','\x78\x5a\x39\x37\x6c\x6d\x6b\x61','\x57\x51\x7a\x4c\x6c\x58\x48\x2b\x61\x53\x6f\x63\x6a\x71','\x57\x35\x72\x58\x72\x57\x5a\x64\x4b\x4c\x7a\x74\x57\x36\x4f','\x57\x34\x68\x64\x4d\x6d\x6f\x58\x57\x36\x46\x64\x4c\x61','\x57\x51\x30\x62\x57\x52\x76\x43\x64\x38\x6f\x56\x65\x67\x4b','\x57\x36\x70\x64\x52\x38\x6f\x4c\x57\x37\x33\x64\x47\x47','\x57\x51\x7a\x30\x66\x47\x48\x65\x64\x53\x6f\x63','\x57\x4f\x57\x75\x69\x6d\x6b\x68\x42\x6d\x6f\x51\x66\x4d\x53','\x57\x35\x4a\x64\x4a\x43\x6b\x47\x6e\x31\x53\x35\x57\x51\x50\x68','\x57\x51\x66\x6b\x69\x71\x54\x46','\x43\x64\x68\x63\x50\x53\x6f\x62\x57\x36\x33\x64\x51\x61','\x57\x37\x75\x52\x57\x51\x4f\x65\x46\x43\x6f\x55\x7a\x66\x75','\x6d\x6d\x6f\x4b\x61\x6d\x6f\x76\x70\x32\x34\x44\x57\x37\x69','\x63\x33\x5a\x64\x54\x78\x70\x63\x56\x53\x6f\x6c\x76\x43\x6f\x43','\x57\x52\x37\x64\x4d\x38\x6f\x50\x67\x32\x50\x66\x57\x50\x35\x5a','\x57\x51\x6d\x77\x71\x76\x44\x59\x57\x4f\x75','\x57\x35\x70\x64\x51\x6d\x6f\x6b\x70\x62\x2f\x64\x51\x30\x58\x65','\x57\x4f\x42\x64\x4c\x43\x6f\x44\x69\x6d\x6b\x51\x6d\x6d\x6f\x43\x57\x52\x75','\x57\x34\x62\x6e\x6a\x6d\x6b\x77','\x57\x51\x38\x58\x57\x51\x33\x64\x49\x30\x72\x44\x57\x50\x76\x58','\x67\x38\x6b\x51\x79\x43\x6b\x44\x57\x52\x74\x64\x4a\x6d\x6b\x4a\x43\x47','\x67\x53\x6b\x72\x75\x58\x46\x64\x4e\x4a\x61\x73\x57\x34\x75','\x57\x52\x75\x42\x73\x4b\x62\x4d\x57\x50\x74\x63\x50\x43\x6f\x32','\x57\x52\x4b\x67\x79\x66\x58\x52\x57\x4f\x68\x63\x54\x53\x6f\x32','\x57\x34\x2f\x64\x4d\x53\x6f\x6a\x57\x35\x68\x64\x4f\x49\x57','\x57\x50\x71\x36\x70\x47\x70\x64\x52\x6d\x6b\x78\x57\x4f\x6e\x46','\x57\x34\x31\x4a\x6d\x53\x6b\x42','\x57\x36\x6d\x4e\x6e\x30\x50\x50\x57\x37\x53\x59\x78\x61','\x57\x35\x31\x56\x6a\x53\x6b\x6b\x77\x38\x6b\x71','\x67\x57\x64\x64\x4c\x53\x6f\x56\x72\x6d\x6b\x31','\x72\x71\x46\x63\x48\x38\x6f\x79\x57\x52\x71','\x57\x51\x70\x64\x56\x38\x6f\x55\x73\x4c\x68\x63\x55\x43\x6f\x38\x57\x50\x69','\x57\x4f\x31\x57\x64\x59\x57\x77\x57\x52\x37\x63\x4f\x43\x6b\x6f','\x78\x49\x6e\x30\x6f\x47','\x57\x50\x4b\x52\x70\x61','\x76\x4a\x39\x33\x70\x6d\x6b\x62\x42\x57','\x57\x50\x46\x63\x50\x66\x6c\x64\x48\x75\x34\x35\x57\x51\x48\x48','\x6e\x4b\x35\x61','\x42\x73\x42\x63\x4f\x53\x6f\x71\x57\x36\x46\x64\x53\x43\x6b\x78\x67\x47','\x57\x34\x56\x64\x4e\x6d\x6b\x59\x57\x50\x42\x63\x49\x32\x37\x64\x4a\x59\x30','\x74\x63\x74\x63\x47\x38\x6f\x4c\x57\x4f\x52\x63\x4e\x30\x52\x63\x4a\x71','\x44\x61\x7a\x66\x65\x38\x6b\x4c\x72\x75\x46\x64\x49\x61','\x6a\x43\x6f\x31\x57\x36\x50\x71\x46\x61','\x45\x74\x30\x59\x57\x4f\x52\x63\x55\x38\x6b\x70\x6f\x4d\x30\x6f\x57\x34\x42\x63\x50\x78\x6d','\x57\x4f\x74\x64\x50\x49\x39\x49\x68\x38\x6f\x6d\x57\x4f\x68\x64\x4c\x65\x79\x4b\x63\x4e\x2f\x63\x4e\x57','\x6e\x4c\x46\x64\x50\x31\x52\x63\x51\x71','\x69\x59\x38\x56\x63\x62\x30\x45\x74\x78\x53','\x44\x43\x6b\x57\x71\x6d\x6b\x62\x79\x49\x47\x72\x57\x34\x42\x63\x56\x49\x39\x4d\x57\x50\x75','\x57\x36\x42\x64\x4e\x38\x6b\x35\x57\x50\x64\x63\x4b\x77\x52\x64\x48\x71\x30','\x57\x37\x76\x6b\x64\x6d\x6b\x57\x46\x6d\x6b\x32\x57\x51\x5a\x64\x52\x47','\x57\x4f\x2f\x64\x56\x38\x6f\x70\x6f\x57','\x57\x34\x70\x64\x54\x75\x43','\x6d\x71\x52\x64\x47\x33\x35\x59\x57\x52\x52\x64\x53\x6d\x6b\x6b','\x70\x6d\x6b\x32\x66\x49\x5a\x64\x4a\x63\x61\x63\x62\x57','\x69\x6d\x6b\x62\x57\x37\x6c\x64\x54\x53\x6b\x58\x57\x35\x68\x63\x54\x6d\x6f\x6a','\x57\x35\x37\x64\x56\x66\x37\x64\x4d\x4c\x57','\x6f\x32\x54\x4f\x57\x35\x5a\x64\x52\x53\x6f\x43','\x57\x34\x2f\x64\x56\x38\x6f\x6c\x69\x58\x6c\x64\x4e\x61','\x57\x4f\x38\x73\x70\x43\x6b\x6b\x44\x38\x6f\x55','\x57\x50\x7a\x77\x6a\x66\x4a\x64\x50\x62\x62\x46\x73\x57','\x64\x53\x6b\x6d\x75\x47\x78\x64\x4d\x4a\x71','\x70\x38\x6b\x4e\x66\x5a\x52\x64\x4a\x62\x34\x50\x61\x57','\x57\x50\x74\x64\x4e\x53\x6f\x57\x6e\x47','\x57\x34\x64\x63\x54\x67\x34\x38\x73\x43\x6b\x75\x57\x35\x46\x64\x48\x61','\x57\x37\x5a\x64\x4b\x53\x6f\x63','\x57\x52\x42\x64\x4b\x53\x6f\x58\x71\x4b\x78\x63\x53\x38\x6f\x33\x57\x50\x71','\x79\x77\x6a\x6a\x78\x43\x6f\x4b','\x6d\x4a\x4b\x46\x63\x61\x65\x6f\x73\x77\x53','\x57\x37\x4e\x63\x4d\x76\x53\x70\x41\x38\x6b\x30\x57\x36\x56\x64\x48\x61','\x70\x61\x33\x64\x4b\x4b\x48\x4f\x57\x51\x71','\x63\x6d\x6b\x7a\x76\x72\x42\x64\x49\x59\x75\x55\x57\x35\x79','\x69\x43\x6f\x48\x6c\x43\x6f\x61\x70\x33\x53\x56\x57\x37\x4f','\x67\x53\x6f\x64\x57\x34\x53','\x57\x50\x46\x64\x47\x38\x6f\x54\x6f\x53\x6b\x2f\x61\x6d\x6f\x6c\x57\x51\x57','\x6b\x30\x6a\x77\x6c\x71\x79\x54\x57\x34\x65','\x57\x36\x71\x56\x70\x65\x6e\x7a\x57\x37\x53\x4d\x41\x47','\x57\x35\x4a\x64\x48\x6d\x6b\x41\x6b\x75\x4f\x47\x57\x50\x7a\x61','\x57\x51\x61\x39\x57\x52\x57','\x6a\x38\x6b\x76\x57\x37\x37\x63\x4a\x53\x6b\x78\x57\x51\x43','\x6d\x6d\x6f\x57\x57\x34\x44\x72\x46\x6d\x6b\x54\x64\x43\x6f\x31','\x57\x35\x52\x64\x49\x6d\x6b\x43\x6d\x4c\x38\x45\x57\x4f\x44\x61','\x6c\x43\x6b\x62\x57\x36\x56\x63\x4c\x6d\x6b\x44\x57\x52\x30','\x6f\x62\x5a\x64\x48\x68\x35\x59\x57\x52\x52\x64\x53\x6d\x6b\x6b','\x57\x34\x5a\x64\x47\x43\x6f\x62\x57\x35\x5a\x63\x47\x43\x6b\x72\x41\x38\x6f\x5a','\x66\x33\x35\x4c\x57\x34\x56\x64\x53\x6d\x6f\x75\x67\x66\x61','\x73\x59\x4c\x59\x6f\x38\x6b\x6a\x46\x61','\x57\x4f\x56\x64\x56\x38\x6f\x70\x6a\x75\x7a\x6b\x57\x52\x76\x72','\x69\x64\x34\x4f\x63\x71\x75\x43\x44\x33\x38','\x72\x65\x6c\x64\x48\x5a\x75\x59\x69\x5a\x2f\x63\x56\x47','\x57\x51\x52\x64\x52\x43\x6b\x72\x6b\x31\x37\x64\x47\x43\x6f\x66\x41\x61','\x6f\x30\x35\x41\x6d\x57\x71\x54\x57\x35\x66\x67','\x57\x51\x5a\x63\x48\x77\x75','\x57\x51\x71\x78\x61\x68\x5a\x63\x4d\x6d\x6f\x35','\x67\x6d\x6b\x74\x77\x58\x74\x64\x47\x4a\x71\x66\x57\x34\x75','\x6e\x58\x52\x64\x4d\x76\x76\x69\x57\x51\x5a\x64\x55\x53\x6b\x77','\x71\x63\x78\x63\x51\x43\x6f\x77\x57\x37\x33\x64\x54\x43\x6b\x44\x6f\x47','\x57\x37\x4c\x73\x41\x48\x37\x64\x50\x4e\x7a\x47\x57\x35\x75','\x70\x38\x6b\x57\x64\x74\x52\x64\x47\x62\x69','\x57\x35\x68\x64\x53\x38\x6b\x66\x57\x51\x33\x63\x54\x4b\x64\x64\x56\x57\x43','\x42\x6d\x6b\x54\x65\x38\x6f\x30\x57\x34\x52\x63\x56\x38\x6f\x38\x78\x47','\x57\x52\x56\x64\x55\x6d\x6f\x4a\x43\x75\x2f\x63\x56\x38\x6f\x47\x57\x52\x38','\x57\x36\x30\x79\x57\x51\x69\x31\x41\x6d\x6f\x2b\x41\x76\x6d','\x57\x52\x42\x64\x56\x38\x6f\x59\x72\x30\x56\x63\x54\x61','\x57\x35\x78\x64\x4f\x43\x6f\x50\x57\x37\x4a\x64\x48\x48\x64\x63\x55\x64\x4b','\x57\x50\x71\x74\x6c\x43\x6b\x38\x42\x6d\x6f\x35\x68\x33\x79','\x65\x65\x33\x64\x54\x57','\x79\x71\x4b\x6b\x71\x53\x6b\x6b\x57\x51\x4b','\x76\x5a\x4e\x63\x47\x6d\x6b\x69\x57\x35\x74\x64\x4a\x61','\x64\x64\x34\x56\x61\x72\x47\x73\x72\x4d\x57','\x57\x50\x30\x64\x70\x6d\x6f\x6f\x6b\x38\x6b\x38\x72\x74\x71','\x57\x50\x47\x64\x6f\x71','\x67\x58\x78\x64\x49\x38\x6f\x36\x71\x53\x6b\x4b\x74\x57\x75','\x77\x47\x5a\x63\x4a\x53\x6f\x4c\x57\x34\x33\x64\x4c\x38\x6b\x30\x68\x71','\x73\x63\x54\x4a\x6d\x53\x6b\x6c\x46\x68\x5a\x64\x48\x71','\x66\x53\x6b\x6d\x57\x37\x52\x64\x48\x6d\x6b\x4c\x57\x35\x56\x63\x55\x43\x6f\x45','\x7a\x77\x6c\x64\x50\x72\x71\x79\x67\x71','\x63\x38\x6b\x6f\x77\x71\x64\x64\x4d\x5a\x69\x75\x57\x35\x69','\x57\x35\x70\x64\x55\x38\x6f\x43\x6b\x61\x4e\x64\x4c\x76\x58\x50','\x57\x50\x4b\x37\x6b\x61\x64\x64\x51\x53\x6b\x71\x57\x4f\x4c\x46','\x57\x52\x4a\x64\x4e\x6d\x6f\x54\x6a\x53\x6b\x4a\x6d\x57','\x57\x35\x52\x63\x4b\x68\x79\x37\x75\x71','\x57\x50\x66\x72\x6c\x32\x64\x64\x55\x61\x35\x73\x73\x61','\x72\x74\x78\x63\x56\x53\x6f\x79\x57\x4f\x33\x63\x4c\x76\x64\x63\x55\x71','\x57\x36\x7a\x6e\x75\x4e\x37\x63\x4e\x6d\x6b\x63\x57\x52\x4c\x53\x57\x34\x37\x64\x53\x74\x4b','\x6b\x38\x6f\x4e\x67\x6d\x6f\x78\x6f\x77\x34','\x57\x50\x30\x63\x6c\x53\x6b\x62\x44\x43\x6f\x53','\x57\x50\x37\x64\x4f\x38\x6f\x68\x6e\x65\x44\x57\x57\x51\x75','\x57\x4f\x35\x72\x6b\x78\x2f\x64\x51\x64\x39\x68\x76\x47','\x44\x4a\x33\x63\x51\x38\x6f\x37\x57\x37\x56\x64\x52\x6d\x6b\x45\x6f\x57','\x67\x53\x6b\x71\x75\x71\x56\x64\x4e\x64\x47\x66\x57\x34\x47','\x6a\x6d\x6b\x72\x77\x71\x64\x64\x49\x57','\x57\x35\x56\x63\x53\x67\x34\x70\x74\x38\x6b\x72','\x57\x50\x46\x64\x47\x38\x6f\x54\x6a\x53\x6b\x5a\x70\x6d\x6f\x41\x57\x51\x57','\x67\x53\x6b\x4f\x43\x38\x6b\x6b\x57\x51\x70\x64\x54\x53\x6b\x53\x43\x61','\x57\x52\x75\x42\x78\x71','\x57\x52\x64\x64\x4b\x38\x6b\x4d\x64\x68\x78\x64\x54\x6d\x6f\x37\x77\x61','\x57\x37\x6e\x6f\x45\x4a\x78\x64\x55\x33\x6a\x4c\x57\x35\x43','\x57\x37\x7a\x73\x41\x74\x70\x64\x54\x57','\x57\x50\x39\x47\x69\x4a\x79\x72\x57\x51\x6d','\x57\x4f\x64\x64\x55\x6d\x6b\x31\x6b\x66\x38','\x57\x35\x5a\x64\x4d\x38\x6b\x6d\x6d\x31\x75\x56','\x67\x77\x5a\x63\x51\x76\x38\x5a\x68\x43\x6b\x67\x57\x4f\x4b','\x57\x51\x74\x64\x54\x6d\x6f\x44\x64\x6d\x6b\x6a\x67\x38\x6f\x36\x57\x4f\x65','\x69\x6d\x6b\x73\x57\x36\x56\x63\x53\x6d\x6b\x78\x57\x51\x64\x63\x4b\x38\x6f\x76','\x6b\x38\x6b\x49\x57\x35\x68\x63\x52\x6d\x6b\x57','\x66\x67\x31\x4f\x64\x49\x4b\x71\x57\x37\x50\x56','\x72\x67\x54\x4a\x77\x6d\x6f\x6c\x57\x34\x61\x61\x73\x57','\x57\x36\x76\x63\x45\x5a\x75','\x57\x35\x4a\x63\x4f\x68\x75\x70\x74\x43\x6b\x71\x57\x34\x52\x64\x51\x71','\x67\x43\x6b\x6c\x57\x37\x68\x64\x56\x53\x6b\x59','\x68\x76\x2f\x63\x4a\x57','\x57\x37\x65\x47\x6d\x71','\x57\x52\x75\x62\x57\x51\x52\x64\x4f\x75\x66\x66\x57\x50\x7a\x43','\x57\x36\x6a\x74\x45\x49\x4a\x64\x56\x77\x65','\x57\x35\x47\x42\x74\x53\x6f\x56\x57\x36\x78\x64\x4f\x53\x6b\x51','\x68\x6d\x6b\x6c\x57\x36\x33\x64\x53\x38\x6b\x4b\x57\x34\x5a\x63\x52\x53\x6f\x6a','\x57\x50\x37\x64\x52\x38\x6b\x6e\x6e\x31\x6c\x64\x4e\x43\x6f\x64\x71\x57','\x57\x4f\x4a\x63\x50\x75\x71\x6a\x6e\x63\x4a\x63\x50\x43\x6b\x42','\x70\x38\x6f\x4e\x57\x37\x44\x6e','\x57\x50\x46\x64\x4e\x43\x6f\x4a\x6b\x38\x6b\x4f\x6b\x38\x6f\x41\x57\x51\x79','\x57\x50\x30\x63\x70\x61','\x57\x34\x6a\x49\x73\x58\x70\x64\x4c\x4c\x6a\x74\x57\x36\x57','\x6f\x75\x6a\x73\x68\x62\x4f\x4e\x57\x35\x69','\x57\x52\x50\x4a\x57\x34\x38','\x69\x43\x6f\x52\x62\x61','\x57\x37\x70\x64\x50\x53\x6f\x56\x57\x36\x74\x64\x48\x71','\x57\x51\x4b\x37\x57\x51\x65','\x79\x58\x61\x6b\x46\x38\x6b\x42\x57\x51\x37\x63\x4f\x73\x6d','\x7a\x59\x7a\x31\x6d\x6d\x6b\x64','\x57\x4f\x47\x7a\x57\x50\x31\x71\x6a\x57','\x63\x4c\x70\x63\x47\x38\x6f\x63','\x6f\x62\x6c\x64\x48\x66\x6a\x33\x57\x51\x56\x64\x56\x38\x6b\x61','\x43\x4d\x4e\x64\x50\x58\x75\x6f\x62\x58\x74\x63\x4a\x71','\x57\x37\x70\x63\x4b\x65\x47\x79\x43\x38\x6b\x33\x57\x36\x5a\x64\x4b\x61','\x75\x57\x56\x63\x4f\x43\x6f\x4a\x57\x34\x79','\x61\x6d\x6b\x56\x46\x38\x6b\x6c\x57\x51\x70\x64\x4d\x57'];_0x51d5=function(){return _0x1c2654;};return _0x51d5();}function secretVersionTraceDecryptAllowed(_0x3ffc49,_0x2e7c96,_0xea9cf3){const _0x40f0e2=_0x285e75;if(!_0x3ffc49||typeof _0x3ffc49!==_0x40f0e2(0x18c,'\x76\x50\x52\x21'))return![];if(_0x3ffc49[_0x40f0e2(0x2c1,'\x50\x41\x25\x61')+_0x40f0e2(0x2d5,'\x68\x54\x5e\x76')])return!![];if(parseNodeSecretVersion(_0x3ffc49[_0x40f0e2(0x274,'\x78\x45\x24\x4f')+_0x40f0e2(0x344,'\x5d\x2a\x6f\x25')])===undefined)return![];return readTraceNodeSecretVersionDecryptEnabled(_0x2e7c96,_0xea9cf3);}function isOptionalShortString(_0x348b43,_0x39014e){const _0x14c03c=_0x285e75;return _0x348b43===undefined||typeof _0x348b43===_0x14c03c(0x2df,'\x50\x41\x25\x61')&&_0x348b43[_0x14c03c(0x2ba,'\x48\x4f\x75\x53')]>0x312+-0x195c*-0x1+-0x2*0xe37&&_0x348b43[_0x14c03c(0x2fc,'\x62\x56\x50\x2a')]<=_0x39014e;}function isOptionalNonNegativeSafeInteger(_0x5e667a){const _0xc375ac=_0x285e75;return _0x5e667a===undefined||typeof _0x5e667a===_0xc375ac(0x372,'\x34\x6e\x73\x53')&&Number['\x69\x73\x53\x61\x66\x65\x49\x6e'+_0xc375ac(0x385,'\x68\x48\x6d\x5b')](_0x5e667a)&&_0x5e667a>=0x1026+-0x188d+0x2cd*0x3;}function isStringOrNull(_0xf6361f){const _0x3e9a96=_0x285e75;return typeof _0xf6361f===_0x3e9a96(0x22e,'\x2a\x43\x28\x33')||_0xf6361f===null;}function isBooleanOrNull(_0x1e3c83){const _0x18fc97=_0x285e75;return typeof _0x1e3c83===_0x18fc97(0x33e,'\x6e\x7a\x41\x42')||_0x1e3c83===null;}function isFiniteNumberOrNull(_0xadadc){const _0x1915fc=_0x285e75;return _0xadadc===null||typeof _0xadadc===_0x1915fc(0x1ff,'\x21\x23\x5b\x45')&&Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0xadadc);}function isHubTraceUsageSummary(_0x41967b){const _0x2ed632=_0x285e75;if(!isRecord(_0x41967b)||!hasOnlyKeys(_0x41967b,USAGE_ALLOWED_KEYS))return![];return Object[_0x2ed632(0x3a4,'\x38\x33\x24\x45')](_0x41967b)[_0x2ed632(0x38d,'\x41\x4e\x37\x59')](_0xc5aa9a=>typeof _0xc5aa9a===_0x2ed632(0x18e,'\x78\x45\x24\x4f')&&Number[_0x2ed632(0x267,'\x56\x74\x46\x5a')](_0xc5aa9a));}function isHubTracePlaintextSummary(_0x5185cb){const _0x3f7933=_0x285e75;if(!isRecord(_0x5185cb)||!hasOnlyKeys(_0x5185cb,SUMMARY_ALLOWED_KEYS))return![];if(_0x5185cb[_0x3f7933(0x253,'\x5b\x6e\x72\x69')]!=='\x6c\x6c\x6d\x5f\x74\x72\x61\x63'+_0x3f7933(0x1d6,'\x21\x54\x28\x5a')+_0x3f7933(0x141,'\x21\x23\x5b\x45')+'\x61\x72\x79')return![];if(_0x5185cb[_0x3f7933(0x206,'\x76\x50\x52\x21')+_0x3f7933(0x1cd,'\x68\x48\x6d\x5b')]!==_0x3f7933(0x23c,'\x21\x23\x5b\x45')+_0x3f7933(0x160,'\x21\x23\x5b\x45'))return![];if(typeof _0x5185cb['\x74\x73']!==_0x3f7933(0x21f,'\x41\x4e\x37\x59'))return![];for(const _0x21bae6 of SUMMARY_STRING_OR_NULL_KEYS){if(!isStringOrNull(_0x5185cb[_0x21bae6]))return![];}if(!isBooleanOrNull(_0x5185cb[_0x3f7933(0x33c,'\x71\x29\x69\x2a')+_0x3f7933(0x28a,'\x23\x75\x59\x57')]))return![];if(!isBooleanOrNull(_0x5185cb['\x73\x74\x72\x65\x61\x6d']))return![];for(const _0x453bfc of SUMMARY_NUMBER_OR_NULL_KEYS){if(!isFiniteNumberOrNull(_0x5185cb[_0x453bfc]))return![];}return!hasOwnKey(_0x5185cb,_0x3f7933(0x347,'\x48\x4f\x75\x53'))||isHubTraceUsageSummary(_0x5185cb[_0x3f7933(0x35a,'\x5e\x6f\x71\x62')]);}function isHubKeyEnvelope(_0x19cb71){const _0x5821d9=_0x285e75;if(!isRecord(_0x19cb71))return![];const _0x10b262=new Set([_0x5821d9(0x392,'\x21\x30\x32\x31')+'\x6d','\x6b\x65\x79\x5f\x69\x64',_0x5821d9(0x320,'\x55\x31\x5d\x25')+_0x5821d9(0x251,'\x66\x48\x42\x47')]);return hasOnlyKeys(_0x19cb71,_0x10b262)&&_0x19cb71[_0x5821d9(0x216,'\x48\x4f\x75\x53')+'\x6d']===_0x5821d9(0x145,'\x21\x23\x5b\x45')+_0x5821d9(0x22f,'\x24\x4c\x77\x70')&&typeof _0x19cb71[_0x5821d9(0x3c1,'\x21\x54\x28\x5a')]===_0x5821d9(0x21f,'\x41\x4e\x37\x59')&&/^[a-f0-9]{16}$/i[_0x5821d9(0x29d,'\x48\x6c\x66\x37')](_0x19cb71['\x6b\x65\x79\x5f\x69\x64'])&&isNonEmptyBase64(_0x19cb71[_0x5821d9(0x386,'\x62\x56\x50\x2a')+'\x6b\x65\x79']);}export function isHubDecryptableTraceEnvelope(_0x6954e5){const _0x5d3519=_0x285e75;if(!isRecord(_0x6954e5))return![];const _0x4250ba=new Set([_0x5d3519(0x1d2,'\x61\x76\x31\x39')+_0x5d3519(0x165,'\x69\x51\x5b\x5b'),_0x5d3519(0x37f,'\x21\x30\x32\x31'),'\x65\x6e\x63\x72\x79\x70\x74\x65'+'\x64',_0x5d3519(0x33a,'\x50\x41\x25\x61')+_0x5d3519(0x1ea,'\x76\x50\x52\x21'),'\x61\x6c\x67\x6f\x72\x69\x74\x68'+'\x6d',_0x5d3519(0x375,'\x71\x6d\x77\x5a'),'\x69\x76',_0x5d3519(0x175,'\x21\x23\x5b\x45'),_0x5d3519(0x230,'\x55\x31\x5d\x25')+'\x78\x74','\x68\x75\x62\x5f\x6b\x65\x79\x5f'+_0x5d3519(0x159,'\x32\x23\x53\x74'),_0x5d3519(0x3c2,'\x24\x4c\x77\x70')+_0x5d3519(0x188,'\x77\x79\x61\x25'),_0x5d3519(0x219,'\x32\x23\x53\x74')+_0x5d3519(0x2aa,'\x31\x67\x6d\x74')+_0x5d3519(0x30f,'\x38\x2a\x33\x44'),_0x5d3519(0x19c,'\x24\x65\x4d\x57')+_0x5d3519(0x2ce,'\x71\x32\x35\x41'),_0x5d3519(0x24c,'\x56\x74\x46\x5a')+_0x5d3519(0x1cb,'\x55\x31\x5d\x25')+'\x6e\x74',_0x5d3519(0x146,'\x5d\x2a\x6f\x25')+_0x5d3519(0x2fe,'\x62\x28\x61\x66')+'\x79','\x70\x61\x79\x6c\x6f\x61\x64\x5f'+_0x5d3519(0x1ef,'\x6b\x69\x4f\x23'),_0x5d3519(0x285,'\x41\x67\x4b\x26')+_0x5d3519(0x154,'\x5e\x6f\x71\x62')+_0x5d3519(0x189,'\x48\x56\x32\x7a')+'\x6e',_0x5d3519(0x29e,'\x69\x51\x5b\x5b')+_0x5d3519(0x355,'\x32\x23\x53\x74'),_0x5d3519(0x176,'\x41\x4e\x37\x59')+_0x5d3519(0x1a6,'\x32\x23\x53\x74')+_0x5d3519(0x283,'\x66\x48\x42\x47')+'\x6e','\x68\x75\x62\x5f\x75\x70\x6c\x6f'+_0x5d3519(0x15e,'\x2a\x43\x28\x33')+_0x5d3519(0x357,'\x5d\x2a\x6f\x25'),_0x5d3519(0x1c9,'\x41\x53\x63\x5d')+_0x5d3519(0x19d,'\x38\x2a\x33\x44')+_0x5d3519(0x3cd,'\x32\x38\x68\x4c')]);return hasOnlyKeys(_0x6954e5,_0x4250ba)&&_0x6954e5[_0x5d3519(0x369,'\x62\x56\x50\x2a')+_0x5d3519(0x3c6,'\x48\x28\x25\x6a')]===0x223*-0x6+-0x1*0x25e8+0x32bb&&_0x6954e5[_0x5d3519(0x35b,'\x63\x75\x46\x6f')]===_0x5d3519(0x1a0,'\x32\x38\x68\x4c')+_0x5d3519(0x3c9,'\x48\x56\x32\x7a')+'\x70\x65'&&_0x6954e5[_0x5d3519(0x1ab,'\x63\x75\x46\x6f')+'\x64']===!![]&&_0x6954e5[_0x5d3519(0x303,'\x32\x23\x53\x74')+_0x5d3519(0x1a4,'\x63\x75\x46\x6f')]===_0x5d3519(0x1eb,'\x50\x41\x25\x61')+_0x5d3519(0x24f,'\x78\x45\x24\x4f')&&_0x6954e5[_0x5d3519(0x26c,'\x69\x51\x5b\x5b')+'\x6d']===_0x5d3519(0x343,'\x41\x53\x63\x5d')+'\x67\x63\x6d'&&typeof _0x6954e5[_0x5d3519(0x36a,'\x66\x48\x42\x47')]===_0x5d3519(0x14e,'\x56\x74\x46\x5a')&&/^[a-f0-9]{16}$/i[_0x5d3519(0x396,'\x38\x33\x24\x45')](_0x6954e5[_0x5d3519(0x218,'\x5e\x6f\x71\x62')])&&isNonEmptyBase64(_0x6954e5['\x69\x76'])&&isNonEmptyBase64(_0x6954e5[_0x5d3519(0x358,'\x32\x38\x68\x4c')])&&isNonEmptyBase64(_0x6954e5[_0x5d3519(0x168,'\x5b\x6e\x72\x69')+'\x78\x74'])&&(!hasOwnKey(_0x6954e5,_0x5d3519(0x1f9,'\x21\x54\x28\x5a')+_0x5d3519(0x393,'\x21\x30\x32\x31'))||isHubKeyEnvelope(_0x6954e5[_0x5d3519(0x322,'\x68\x48\x6d\x5b')+_0x5d3519(0x2a7,'\x6b\x69\x4f\x23')]))&&(isHubKeyEnvelope(_0x6954e5[_0x5d3519(0x2ee,'\x48\x4f\x75\x53')+_0x5d3519(0x311,'\x38\x33\x24\x45')])||parseNodeSecretVersion(_0x6954e5[_0x5d3519(0x32e,'\x5e\x6f\x71\x62')+_0x5d3519(0x3c3,'\x38\x33\x24\x45')])!==undefined)&&(_0x6954e5[_0x5d3519(0x177,'\x56\x74\x46\x5a')+'\x65\x72\x73\x69\x6f\x6e']===undefined||parseNodeSecretVersion(_0x6954e5[_0x5d3519(0x2a4,'\x38\x33\x24\x45')+_0x5d3519(0x221,'\x38\x2a\x33\x44')])!==undefined)&&(_0x6954e5[_0x5d3519(0x209,'\x48\x4f\x75\x53')+_0x5d3519(0x29f,'\x76\x50\x52\x21')+'\x69\x6f\x6e']===undefined||isProducerGeneration(_0x6954e5[_0x5d3519(0x27d,'\x56\x78\x57\x47')+_0x5d3519(0x2aa,'\x31\x67\x6d\x74')+_0x5d3519(0x2b9,'\x41\x67\x4b\x26')]))&&isOptionalShortString(_0x6954e5[_0x5d3519(0x39a,'\x78\x45\x24\x4f')+'\x5f\x76\x65\x72\x73\x69\x6f\x6e'],-0x6bd*-0x5+-0x1*-0xff+-0x2290)&&isOptionalShortString(_0x6954e5[_0x5d3519(0x28c,'\x34\x6e\x73\x53')+_0x5d3519(0x183,'\x69\x51\x5b\x5b')+'\x6e\x74'],-0x2bd*-0x3+0x4a3*0x2+-0x115d*0x1)&&(_0x6954e5[_0x5d3519(0x330,'\x67\x71\x2a\x79')+_0x5d3519(0x27e,'\x41\x25\x4d\x74')]===undefined||_0x6954e5[_0x5d3519(0x303,'\x32\x23\x53\x74')+_0x5d3519(0x3d1,'\x73\x6a\x50\x55')]===![])&&isOptionalShortString(_0x6954e5['\x70\x61\x79\x6c\x6f\x61\x64\x5f'+_0x5d3519(0x350,'\x38\x2a\x33\x44')+_0x5d3519(0x189,'\x48\x56\x32\x7a')+'\x6e'],0x33b+0x1906+0x43*-0x6b)&&(_0x6954e5[_0x5d3519(0x3c5,'\x73\x6a\x50\x55')+_0x5d3519(0x212,'\x24\x65\x4d\x57')]===undefined||_0x6954e5[_0x5d3519(0x163,'\x68\x54\x5e\x76')+_0x5d3519(0x338,'\x34\x6e\x73\x53')]===![])&&isOptionalShortString(_0x6954e5[_0x5d3519(0x3c7,'\x41\x67\x4b\x26')+_0x5d3519(0x250,'\x55\x31\x5d\x25')+_0x5d3519(0x1dc,'\x62\x28\x61\x66')+'\x6e'],-0x756+0x1e74+-0xb6f*0x2)&&isOptionalNonNegativeSafeInteger(_0x6954e5[_0x5d3519(0x2ed,'\x66\x48\x42\x47')+_0x5d3519(0x306,'\x38\x33\x24\x45')+_0x5d3519(0x39e,'\x41\x25\x4d\x74')])&&isOptionalNonNegativeSafeInteger(_0x6954e5[_0x5d3519(0x1d0,'\x71\x32\x35\x41')+_0x5d3519(0x15d,'\x77\x79\x61\x25')+'\x79\x74\x65\x73'])&&(!hasOwnKey(_0x6954e5,_0x5d3519(0x234,'\x32\x23\x53\x74')+_0x5d3519(0x22d,'\x38\x33\x24\x45')+'\x79')||isHubTracePlaintextSummary(_0x6954e5[_0x5d3519(0x27b,'\x41\x53\x63\x5d')+_0x5d3519(0x14c,'\x41\x53\x63\x5d')+'\x79']));}export function traceUploadBlockedReason(_0x456c4d){const _0x52a776=_0x285e75;if(_0x456c4d[_0x52a776(0x290,'\x21\x23\x5b\x45')+'\x61\x64\x61\x62\x6c\x65']===![]){const _0x1077d0=_0x456c4d[_0x52a776(0x1c9,'\x41\x53\x63\x5d')+'\x61\x64\x5f\x62\x6c\x6f\x63\x6b'+'\x65\x64\x5f\x72\x65\x61\x73\x6f'+'\x6e']??_0x52a776(0x186,'\x68\x48\x6d\x5b')+'\x61\x64\x5f\x62\x6c\x6f\x63\x6b'+'\x65\x64';return _0x1077d0===_0x52a776(0x15b,'\x77\x79\x61\x25')+_0x52a776(0x30c,'\x61\x76\x31\x39')+'\x74\x65'?undefined:_0x1077d0;}return undefined;}function isProxyTraceUploadPayload(_0x4166a7){const _0x53efec=_0x285e75;if(!isRecord(_0x4166a7))return![];const _0x2e4285=new Set([_0x53efec(0x308,'\x41\x53\x63\x5d'),_0x53efec(0x182,'\x21\x30\x32\x31')+'\x64','\x74\x72\x61\x63\x65',_0x53efec(0x28f,'\x62\x28\x61\x66')+'\x72\x65\x74\x5f\x76\x65\x72\x73'+_0x53efec(0x3d4,'\x23\x75\x59\x57'),_0x53efec(0x2f7,'\x73\x6a\x50\x55')+_0x53efec(0x2c5,'\x41\x67\x4b\x26'),_0x53efec(0x362,'\x48\x56\x32\x7a')+_0x53efec(0x18f,'\x6e\x7a\x41\x42')+_0x53efec(0x282,'\x56\x74\x52\x4d'),_0x53efec(0x1c3,'\x71\x68\x4f\x37')+_0x53efec(0x1f4,'\x78\x45\x24\x4f'),'\x70\x72\x6f\x64\x75\x63\x65\x72'+_0x53efec(0x201,'\x71\x68\x4f\x37')+'\x6e\x74']);return hasOnlyKeys(_0x4166a7,_0x2e4285)&&_0x4166a7['\x73\x63\x68\x65\x6d\x61']===PROXY_TRACE_UPLOAD_SCHEMA&&_0x4166a7[_0x53efec(0x2f2,'\x71\x29\x69\x2a')+'\x64']===!![]&&isHubDecryptableTraceEnvelope(_0x4166a7[_0x53efec(0x147,'\x71\x6d\x77\x5a')])&&(_0x4166a7[_0x53efec(0x25f,'\x41\x67\x4b\x26')+_0x53efec(0x222,'\x71\x6d\x77\x5a')+_0x53efec(0x371,'\x71\x6d\x77\x5a')]===undefined||parseNodeSecretVersion(_0x4166a7[_0x53efec(0x259,'\x21\x30\x32\x31')+_0x53efec(0x17b,'\x5d\x2a\x6f\x25')+'\x69\x6f\x6e'])!==undefined)&&(_0x4166a7['\x73\x65\x63\x72\x65\x74\x5f\x76'+'\x65\x72\x73\x69\x6f\x6e']===undefined||parseNodeSecretVersion(_0x4166a7[_0x53efec(0x317,'\x6b\x69\x4f\x23')+_0x53efec(0x2e9,'\x71\x29\x69\x2a')])!==undefined)&&(_0x4166a7[_0x53efec(0x248,'\x6e\x7a\x41\x42')+_0x53efec(0x323,'\x24\x4c\x77\x70')+_0x53efec(0x333,'\x31\x67\x6d\x74')]===undefined||isProducerGeneration(_0x4166a7[_0x53efec(0x155,'\x56\x74\x52\x4d')+_0x53efec(0x2d6,'\x48\x4f\x75\x53')+_0x53efec(0x24b,'\x24\x4c\x77\x70')]))&&isOptionalShortString(_0x4166a7[_0x53efec(0x2f0,'\x55\x31\x5d\x25')+_0x53efec(0x3a5,'\x71\x68\x4f\x37')],0x743*-0x3+-0xa43+0x3a*0x8e)&&isOptionalShortString(_0x4166a7[_0x53efec(0x254,'\x30\x43\x43\x4e')+_0x53efec(0x318,'\x32\x38\x68\x4c')+'\x6e\x74'],-0x4b3*0x1+-0xf9+0x5cc);}export function normalizeProxyTraceOutboundPayload(_0x4ac434,_0x1e2571=process.env,_0x560b23){const _0x3917d8=_0x285e75;if(!traceCollectionEnabled(_0x1e2571,_0x560b23)||_0x1e2571[_0x3917d8(0x204,'\x48\x56\x32\x7a')+'\x4c\x4c\x4d\x5f\x54\x52\x41\x43'+_0x3917d8(0x275,'\x5b\x6e\x72\x69')+'\x58']==='\x30')return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0x3917d8(0x32c,'\x2a\x43\x28\x33')+_0x3917d8(0x1e7,'\x41\x53\x63\x5d')+_0x3917d8(0x227,'\x41\x67\x4b\x26')+_0x3917d8(0x1d5,'\x66\x48\x42\x47')};const _0x404d7d=_0x433107=>{const _0xa003de=_0x3917d8;if('\x44\x6d\x75\x61\x46'!==_0xa003de(0x1d7,'\x41\x67\x4b\x26')){const _0x468559=_0x4549dd[_0xa003de(0x3d7,'\x48\x28\x25\x6a')];if(_0x29e85f(_0x468559))return _0x2cbfe2(_0x468559);return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':'\x70\x72\x6f\x78\x79\x5f\x74\x72'+'\x61\x63\x65\x5f\x70\x61\x79\x6c'+_0xa003de(0x156,'\x50\x41\x25\x61')+_0xa003de(0x271,'\x68\x54\x5e\x76')};}else{const _0x1e256b=traceUploadBlockedReason(_0x433107);if(_0x1e256b)return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0x1e256b};if(!secretVersionTraceDecryptAllowed(_0x433107,_0x1e2571,_0x560b23)){if(_0xa003de(0x1b3,'\x5d\x2a\x6f\x25')!=='\x61\x56\x66\x62\x55'){const _0x31adab=[_0x131825[_0xa003de(0x1fc,'\x66\x48\x42\x47')+'\x52\x4f\x58\x59\x5f\x54\x52\x41'+_0xa003de(0x3ad,'\x2a\x43\x28\x33')+_0xa003de(0x236,'\x2a\x43\x28\x33')+_0xa003de(0x15a,'\x48\x6c\x66\x37')+_0xa003de(0x35f,'\x71\x32\x35\x41')],_0x9e0f02[_0xa003de(0x38b,'\x21\x23\x5b\x45')+_0xa003de(0x374,'\x6b\x69\x4f\x23')+_0xa003de(0x242,'\x5e\x6f\x71\x62')+_0xa003de(0x1f7,'\x30\x43\x43\x4e')+'\x45\x43\x52\x59\x50\x54'],_0x56ef1c(_0x5b6881,_0xa003de(0x21a,'\x21\x30\x32\x31')+_0xa003de(0x2c3,'\x48\x28\x25\x6a')+_0xa003de(0x37e,'\x63\x75\x46\x6f')+_0xa003de(0x299,'\x71\x29\x69\x2a')+_0xa003de(0x16e,'\x30\x43\x43\x4e')+'\x64'),_0x4907f3(_0x2e6f53,_0xa003de(0x1a5,'\x23\x75\x59\x57')+_0xa003de(0x14a,'\x24\x65\x4d\x57')+_0xa003de(0x38e,'\x56\x74\x52\x4d')+_0xa003de(0x2e8,'\x23\x75\x59\x57')+_0xa003de(0x32a,'\x31\x67\x6d\x74')+_0xa003de(0x3cf,'\x6e\x7a\x41\x42')),_0x1e4f3a(_0x554e63,'\x74\x72\x61\x63\x65\x5f\x68\x75'+_0xa003de(0x34f,'\x2a\x43\x28\x33')+'\x67\x5f\x64\x65\x63\x72\x79\x70'+_0xa003de(0x1a2,'\x34\x6e\x73\x53')+'\x64'),_0x1d1c44(_0x23c4b9,_0xa003de(0x172,'\x38\x2a\x33\x44')+_0xa003de(0x255,'\x77\x79\x61\x25')+_0xa003de(0x231,'\x56\x74\x52\x4d')+'\x64\x65\x63\x72\x79\x70\x74\x5f'+_0xa003de(0x2de,'\x6b\x69\x4f\x23'))],_0x22132f=_0x31adab[_0xa003de(0x325,'\x56\x74\x46\x5a')](_0x31fe11=>_0x31fe11!==_0x25beac&&_0x31fe11!==null&&_0x31fe11!=='');return _0x436141(_0x22132f);}else return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0xa003de(0x229,'\x5e\x6f\x71\x62')+_0xa003de(0x207,'\x55\x31\x5d\x25')+_0xa003de(0x34d,'\x24\x4c\x77\x70')+_0xa003de(0x2cb,'\x69\x51\x5b\x5b')};}return{'\x6f\x6b':!![],'\x70\x61\x79\x6c\x6f\x61\x64':buildProxyTraceUploadPayload(_0x433107)};}};if(isProxyTraceUploadPayload(_0x4ac434))return _0x404d7d(_0x4ac434[_0x3917d8(0x153,'\x68\x54\x5e\x76')]);if(isRecord(_0x4ac434)&&_0x4ac434[_0x3917d8(0x3cb,'\x30\x43\x43\x4e')]===PROXY_TRACE_UPLOAD_SCHEMA&&_0x4ac434[_0x3917d8(0x268,'\x2a\x43\x28\x33')+'\x64']===!![]){if(_0x3917d8(0x161,'\x24\x65\x4d\x57')!==_0x3917d8(0x3b7,'\x78\x45\x24\x4f')){const _0xb0b26e=_0x4ac434[_0x3917d8(0x170,'\x41\x67\x4b\x26')];if(isHubDecryptableTraceEnvelope(_0xb0b26e))return _0x404d7d(_0xb0b26e);return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0x3917d8(0x273,'\x76\x50\x52\x21')+_0x3917d8(0x296,'\x76\x50\x52\x21')+_0x3917d8(0x156,'\x50\x41\x25\x61')+_0x3917d8(0x194,'\x5e\x6f\x71\x62')};}else _0x42e1f8=_0x374754+_0x3f048f,_0x9e9f34=!![];}if(isHubDecryptableTraceEnvelope(_0x4ac434))return _0x404d7d(_0x4ac434);return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0x3917d8(0x2cd,'\x32\x38\x68\x4c')+'\x61\x63\x65\x5f\x70\x61\x79\x6c'+_0x3917d8(0x2dc,'\x68\x54\x5e\x76')+_0x3917d8(0x2f8,'\x21\x23\x5b\x45')};}export function traceUploadIdempotencyKey(_0x30633c){const _0x2d7824=_0x285e75;return'\x70\x72\x6f\x78\x79\x5f\x74\x72'+_0x2d7824(0x2da,'\x48\x28\x25\x6a')+createHash(_0x2d7824(0x365,'\x32\x38\x68\x4c'))[_0x2d7824(0x34a,'\x71\x32\x35\x41')](JSON[_0x2d7824(0x2e1,'\x2a\x43\x28\x33')+'\x79'](_0x30633c))[_0x2d7824(0x1b1,'\x6e\x7a\x41\x42')](_0x2d7824(0x23b,'\x38\x33\x24\x45'));}export function enqueueTraceEnvelope(_0x242bf7,_0x370f14,_0x2896cd={}){const _0x3cbe28=_0x285e75;if(!traceCollectionEnabled(_0x2896cd[_0x3cbe28(0x239,'\x62\x28\x61\x66')]??process.env,_0x242bf7))return _0x3cbe28(0x3a1,'\x50\x41\x25\x61')===_0x3cbe28(0x18b,'\x48\x56\x32\x7a')?''+_0x29af8b+_0x56d044(_0x3cbe28(0x1f1,'\x56\x74\x46\x5a'))[_0x3cbe28(0x397,'\x38\x2a\x33\x44')](_0x51cc8)[_0x3cbe28(0x180,'\x67\x72\x5b\x36')]('\x68\x65\x78')['\x73\x6c\x69\x63\x65'](0x29*0x4f+-0x4d4+-0x7d3,0x32b*0x7+0xf66+-0x257b):{'\x71\x75\x65\x75\x65\x64':![],'\x64\x75\x70\x6c\x69\x63\x61\x74\x65':![]};if(traceUploadBlockedReason(_0x370f14)){if(_0x3cbe28(0x351,'\x21\x30\x32\x31')!=='\x46\x65\x7a\x6d\x50'){const _0x44d2a8=_0x34066e[_0x3cbe28(0x1fd,'\x24\x65\x4d\x57')+_0x3cbe28(0x20f,'\x5d\x2a\x6f\x25')+'\x65\x64\x5f\x72\x65\x61\x73\x6f'+'\x6e']??_0x3cbe28(0x2ed,'\x66\x48\x42\x47')+_0x3cbe28(0x3cc,'\x30\x43\x43\x4e')+'\x65\x64';return _0x44d2a8===_0x3cbe28(0x3a8,'\x71\x6d\x77\x5a')+'\x69\x6e\x63\x6f\x6d\x70\x6c\x65'+'\x74\x65'?_0x2f9589:_0x44d2a8;}else return{'\x71\x75\x65\x75\x65\x64':![],'\x64\x75\x70\x6c\x69\x63\x61\x74\x65':![]};}if(!secretVersionTraceDecryptAllowed(_0x370f14,_0x2896cd[_0x3cbe28(0x181,'\x41\x67\x4b\x26')]??process.env,_0x242bf7)){if(_0x3cbe28(0x2d9,'\x30\x43\x43\x4e')!==_0x3cbe28(0x39b,'\x41\x4e\x37\x59'))return{'\x71\x75\x65\x75\x65\x64':![],'\x64\x75\x70\x6c\x69\x63\x61\x74\x65':![]};else try{return _0x283daf?.[_0x3cbe28(0x334,'\x41\x25\x4d\x74')]?.(_0x8d171d)??_0x4a62dc;}catch{return _0x330d0c;}}const _0xad3d76=traceUploadIdempotencyKey(_0x370f14),_0x2d1330=buildProxyTraceUploadPayload(_0x370f14);if(_0x242bf7[_0x3cbe28(0x31e,'\x41\x25\x4d\x74')+_0x3cbe28(0x379,'\x38\x2a\x33\x44')+_0x3cbe28(0x25c,'\x68\x48\x6d\x5b')+_0x3cbe28(0x1a7,'\x6e\x7a\x41\x42')]?.(_0xad3d76)||_0x242bf7[_0x3cbe28(0x224,'\x48\x6c\x66\x37')+_0x3cbe28(0x31a,'\x41\x53\x63\x5d')+_0x3cbe28(0x1cc,'\x71\x29\x69\x2a')]?.(_0x3cbe28(0x214,'\x71\x32\x35\x41')+_0x3cbe28(0x1e2,'\x38\x33\x24\x45'),_0x2d1330)||_0x242bf7[_0x3cbe28(0x2ae,'\x31\x67\x6d\x74')+'\x67\x65\x57\x69\x74\x68\x50\x61'+_0x3cbe28(0x162,'\x67\x72\x5b\x36')]?.(_0x3cbe28(0x1de,'\x32\x23\x53\x74')+_0x3cbe28(0x316,'\x2a\x43\x28\x33'),_0x370f14))return _0x3cbe28(0x3d2,'\x5d\x2a\x6f\x25')!=='\x4d\x42\x55\x52\x65'?{'\x71\x75\x65\x75\x65\x64':![],'\x64\x75\x70\x6c\x69\x63\x61\x74\x65':![]}:{'\x71\x75\x65\x75\x65\x64':![],'\x64\x75\x70\x6c\x69\x63\x61\x74\x65':!![]};const _0x5ccc78=mailbox[_0x3cbe28(0x16a,'\x71\x68\x4f\x37')+_0x3cbe28(0x26b,'\x32\x38\x68\x4c')]({'\x69\x64':_0xad3d76,'\x74\x79\x70\x65':_0x3cbe28(0x2f4,'\x6e\x7a\x41\x42')+_0x3cbe28(0x3a2,'\x48\x4f\x75\x53'),'\x70\x61\x79\x6c\x6f\x61\x64':_0x2d1330,'\x63\x6f\x72\x72\x65\x6c\x61\x74\x69\x6f\x6e\x49\x64':_0xad3d76,'\x69\x64\x65\x6d\x70\x6f\x74\x65\x6e\x63\x79\x4b\x65\x79':_0xad3d76,..._0x2896cd[_0x3cbe28(0x1ba,'\x6b\x69\x4f\x23')]!==undefined?{'\x6e\x6f\x77':_0x2896cd[_0x3cbe28(0x2a0,'\x5e\x6f\x71\x62')]}:{},..._0x2896cd[_0x3cbe28(0x27a,'\x2a\x43\x28\x33')+_0x3cbe28(0x341,'\x71\x32\x35\x41')]?{'\x72\x75\x6e\x74\x69\x6d\x65\x4e\x61\x6d\x65\x73\x70\x61\x63\x65':_0x2896cd[_0x3cbe28(0x1bb,'\x78\x45\x24\x4f')+_0x3cbe28(0x240,'\x41\x53\x63\x5d')]}:{},..._0x2896cd[_0x3cbe28(0x2c2,'\x32\x23\x53\x74')+_0x3cbe28(0x31f,'\x32\x23\x53\x74')]?{'\x73\x6f\x75\x72\x63\x65\x41\x67\x65\x6e\x74':_0x2896cd[_0x3cbe28(0x26a,'\x21\x30\x32\x31')+_0x3cbe28(0x22c,'\x69\x51\x5b\x5b')]}:{},..._0x2896cd[_0x3cbe28(0x2a8,'\x50\x41\x25\x61')+_0x3cbe28(0x26f,'\x68\x48\x6d\x5b')]?{'\x74\x61\x72\x67\x65\x74\x41\x67\x65\x6e\x74':_0x2896cd[_0x3cbe28(0x191,'\x48\x4f\x75\x53')+'\x65\x6e\x74']}:{}});return{'\x71\x75\x65\x75\x65\x64':_0x242bf7[_0x3cbe28(0x261,'\x21\x54\x28\x5a')](_0x5ccc78)[_0x3cbe28(0x28b,'\x56\x78\x57\x47')],'\x64\x75\x70\x6c\x69\x63\x61\x74\x65':![]};}function numberFromEnv(_0x5652f4,_0x1c4204,_0x15e42b){const _0xde8be0=_0x285e75;for(const _0x16a83f of _0x1c4204){if(_0xde8be0(0x19e,'\x67\x71\x2a\x79')===_0xde8be0(0x289,'\x21\x30\x32\x31'))return{'\x6f\x6b':![],'\x72\x65\x61\x73\x6f\x6e':_0xde8be0(0x2c0,'\x68\x54\x5e\x76')+_0xde8be0(0x352,'\x21\x23\x5b\x45')+_0xde8be0(0x1d8,'\x71\x68\x4f\x37')+_0xde8be0(0x2bb,'\x21\x23\x5b\x45')};else{const _0x5194fd=Number(_0x5652f4[_0x16a83f]);if(Number[_0xde8be0(0x370,'\x56\x74\x52\x4d')](_0x5194fd)&&_0x5194fd>-0x14d2+0x1*-0x230a+0x37dc)return Math[_0xde8be0(0x18d,'\x34\x6e\x73\x53')](_0x5194fd);}}return _0x15e42b;}function cursorKey(_0x4f47a7){const _0x1144fb=_0x285e75;return''+TRACE_BACKFILL_STATE_PREFIX+createHash('\x73\x68\x61\x32\x35\x36')[_0x1144fb(0x3ca,'\x41\x67\x4b\x26')](_0x4f47a7)[_0x1144fb(0x179,'\x41\x67\x4b\x26')]('\x68\x65\x78')[_0x1144fb(0x390,'\x67\x72\x5b\x36')](-0x3d6*0x9+-0x160d+0x3893,-0x1306+-0x192*0x3+0x17d4);}function currentCursorState(_0x51ad67,_0x296306){const _0x1c2422=_0x285e75,_0x39ee67=statSync(_0x51ad67);return{'\x64\x65\x76':Number(_0x39ee67[_0x1c2422(0x184,'\x61\x76\x31\x39')])||0x1a06+-0x1*-0xee3+-0x28e9,'\x69\x6e\x6f':Number(_0x39ee67[_0x1c2422(0x326,'\x55\x31\x5d\x25')])||0x8af+0x1143+0x7b*-0x36,'\x62\x69\x72\x74\x68\x74\x69\x6d\x65\x4d\x73':Math[_0x1c2422(0x17c,'\x5b\x6e\x72\x69')](Number(_0x39ee67[_0x1c2422(0x247,'\x62\x28\x61\x66')+_0x1c2422(0x366,'\x34\x6e\x73\x53')])||-0x230b+0x1126+-0x3*-0x5f7),'\x73\x69\x7a\x65':Number(_0x39ee67[_0x1c2422(0x287,'\x41\x25\x4d\x74')])||-0x12d3*-0x1+-0x17a8+0x4d5,'\x6f\x66\x66\x73\x65\x74':_0x296306,'\x67\x75\x61\x72\x64':cursorGuard(_0x51ad67,_0x296306)};}function _0x3fe5(_0x4ee467,_0x3c3ca3){_0x4ee467=_0x4ee467-(0x1f*0xc3+-0x13eb*-0x1+0x1*-0x2a47);const _0x160f2d=_0x51d5();let _0x14bf0d=_0x160f2d[_0x4ee467];if(_0x3fe5['\x62\x79\x59\x74\x69\x41']===undefined){var _0x5b7e2a=function(_0x450f4a){const _0x56aba8='\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 _0x24a586='',_0x6f3ee6='';for(let _0x57600f=0xc3a+-0x27*0x77+-0x5e7*-0x1,_0xd3c223,_0x27f75b,_0x228547=-0x82a+0x144a+0xc2*-0x10;_0x27f75b=_0x450f4a['\x63\x68\x61\x72\x41\x74'](_0x228547++);~_0x27f75b&&(_0xd3c223=_0x57600f%(-0x198f*0x1+0xc8+0x18cb*0x1)?_0xd3c223*(0xd63*0x2+-0xe45+0xc41*-0x1)+_0x27f75b:_0x27f75b,_0x57600f++%(0x13*-0x130+-0x152+0x17e6*0x1))?_0x24a586+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x1a43+0x3*0xb0f+-0x5eb&_0xd3c223>>(-(-0x130f+-0x26c7+0x39d8)*_0x57600f&0x1111+0x6*-0x3e7+0x65f)):0xe27*-0x1+0x1d*0x127+-0x1344){_0x27f75b=_0x56aba8['\x69\x6e\x64\x65\x78\x4f\x66'](_0x27f75b);}for(let _0x1c83f2=-0xc5*-0xb+0x8a*-0x27+0xc8f,_0x115538=_0x24a586['\x6c\x65\x6e\x67\x74\x68'];_0x1c83f2<_0x115538;_0x1c83f2++){_0x6f3ee6+='\x25'+('\x30\x30'+_0x24a586['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1c83f2)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x5cb+-0x102*0x1b+-0x729*-0x3))['\x73\x6c\x69\x63\x65'](-(-0x1*0x61a+-0x1*0x1fd9+0x25f5));}return decodeURIComponent(_0x6f3ee6);};const _0xc6f260=function(_0x4ce5c5,_0x53e587){let _0x3ba2d0=[],_0x389f8a=0x2d7*0x3+0x1071*0x1+-0x18f6,_0x27b93a,_0x11db5f='';_0x4ce5c5=_0x5b7e2a(_0x4ce5c5);let _0x593e71;for(_0x593e71=0x204e+0x675*0x1+-0x26c3;_0x593e71<0x265e+0x192d+-0x3e8b;_0x593e71++){_0x3ba2d0[_0x593e71]=_0x593e71;}for(_0x593e71=-0xea0+-0x3*-0x83+0xd17;_0x593e71<0x27e+-0xe45+0xcc7*0x1;_0x593e71++){_0x389f8a=(_0x389f8a+_0x3ba2d0[_0x593e71]+_0x53e587['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x593e71%_0x53e587['\x6c\x65\x6e\x67\x74\x68']))%(0x14c4+-0x1*0x107+-0x12bd),_0x27b93a=_0x3ba2d0[_0x593e71],_0x3ba2d0[_0x593e71]=_0x3ba2d0[_0x389f8a],_0x3ba2d0[_0x389f8a]=_0x27b93a;}_0x593e71=0x1d47+0x1022+-0x2d69,_0x389f8a=-0x135c+-0x1b1f+-0x2e7b*-0x1;for(let _0x5ed487=0x353+-0x16f5+-0x13a2*-0x1;_0x5ed487<_0x4ce5c5['\x6c\x65\x6e\x67\x74\x68'];_0x5ed487++){_0x593e71=(_0x593e71+(-0x44b*-0x1+0x1244+-0x168e))%(0x11e9+-0x1cb+0xd7*-0x12),_0x389f8a=(_0x389f8a+_0x3ba2d0[_0x593e71])%(-0x10e6+0x1c47+-0x1*0xa61),_0x27b93a=_0x3ba2d0[_0x593e71],_0x3ba2d0[_0x593e71]=_0x3ba2d0[_0x389f8a],_0x3ba2d0[_0x389f8a]=_0x27b93a,_0x11db5f+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x4ce5c5['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5ed487)^_0x3ba2d0[(_0x3ba2d0[_0x593e71]+_0x3ba2d0[_0x389f8a])%(0x1d09*0x1+0x1e38*0x1+-0x3a41)]);}return _0x11db5f;};_0x3fe5['\x53\x76\x66\x63\x71\x54']=_0xc6f260,_0x3fe5['\x54\x50\x65\x75\x78\x44']={},_0x3fe5['\x62\x79\x59\x74\x69\x41']=!![];}const _0x3c218a=_0x160f2d[0x32f+-0x231a+0x1feb],_0x372dcc=_0x4ee467+_0x3c218a,_0x18d534=_0x3fe5['\x54\x50\x65\x75\x78\x44'][_0x372dcc];return!_0x18d534?(_0x3fe5['\x62\x57\x63\x49\x74\x62']===undefined&&(_0x3fe5['\x62\x57\x63\x49\x74\x62']=!![]),_0x14bf0d=_0x3fe5['\x53\x76\x66\x63\x71\x54'](_0x14bf0d,_0x3c3ca3),_0x3fe5['\x54\x50\x65\x75\x78\x44'][_0x372dcc]=_0x14bf0d):_0x14bf0d=_0x18d534,_0x14bf0d;}function cursorGuard(_0x3df5b1,_0x11e5a3){const _0x4c6fe7=_0x285e75;if(_0x11e5a3<=-0x288+-0x1264+0x14ec)return'';const _0x51109a=Math[_0x4c6fe7(0x34b,'\x41\x25\x4d\x74')](TRACE_CURSOR_GUARD_BYTES,_0x11e5a3),_0x35411d=openSync(_0x3df5b1,'\x72');try{const _0x56486c=Buffer[_0x4c6fe7(0x2e4,'\x50\x41\x25\x61')](_0x51109a),_0x168ec9=readSync(_0x35411d,_0x56486c,-0x2633+0x18f4+0xd3f,_0x51109a,_0x11e5a3-_0x51109a);return createHash(_0x4c6fe7(0x2fb,'\x5b\x6e\x72\x69'))[_0x4c6fe7(0x14b,'\x2a\x43\x28\x33')](_0x56486c[_0x4c6fe7(0x232,'\x56\x78\x57\x47')](-0xd*0xc1+0x8*0x195+-0x2b*0x11,_0x168ec9))['\x64\x69\x67\x65\x73\x74'](_0x4c6fe7(0x249,'\x41\x53\x63\x5d'));}finally{if(_0x4c6fe7(0x19a,'\x66\x48\x42\x47')!==_0x4c6fe7(0x3ab,'\x62\x28\x61\x66'))closeSync(_0x35411d);else return{'\x71\x75\x65\x75\x65\x64':![],'\x64\x75\x70\x6c\x69\x63\x61\x74\x65':!![]};}}function parseCursor(_0x1e268d){const _0x587227=_0x285e75;if(!_0x1e268d)return null;try{if(_0x587227(0x225,'\x48\x6c\x66\x37')===_0x587227(0x23a,'\x66\x48\x42\x47')){const _0x5457e4=JSON[_0x587227(0x1bf,'\x48\x28\x25\x6a')](_0x1e268d);if(typeof _0x5457e4[_0x587227(0x292,'\x24\x4c\x77\x70')]===_0x587227(0x245,'\x73\x6a\x50\x55')&&typeof _0x5457e4[_0x587227(0x382,'\x41\x4e\x37\x59')]===_0x587227(0x3b1,'\x61\x76\x31\x39')&&typeof _0x5457e4[_0x587227(0x3bc,'\x68\x48\x6d\x5b')+_0x587227(0x1b7,'\x24\x65\x4d\x57')]===_0x587227(0x2b2,'\x23\x75\x59\x57')&&typeof _0x5457e4[_0x587227(0x3a6,'\x56\x74\x46\x5a')]===_0x587227(0x3b1,'\x61\x76\x31\x39')&&typeof _0x5457e4['\x6f\x66\x66\x73\x65\x74']===_0x587227(0x171,'\x56\x78\x57\x47')&&(typeof _0x5457e4[_0x587227(0x291,'\x5b\x6e\x72\x69')]===_0x587227(0x36b,'\x48\x6c\x66\x37')||_0x5457e4[_0x587227(0x195,'\x76\x50\x52\x21')]===undefined)&&_0x5457e4[_0x587227(0x2cf,'\x67\x71\x2a\x79')]>=0x1624+-0xd8a*-0x1+-0x1*0x23ae)return{..._0x5457e4,'\x67\x75\x61\x72\x64':_0x5457e4[_0x587227(0x30e,'\x38\x2a\x33\x44')]??''};}else{if(!_0x59fdcf(_0x59f695[_0x1729de]))return![];}}catch{if(_0x587227(0x361,'\x76\x50\x52\x21')!==_0x587227(0x29b,'\x48\x28\x25\x6a'))return null;else{if(!_0xbb3476(_0x207aea))return[];return _0x39bcde(_0x584ad4)[_0x587227(0x38a,'\x71\x29\x69\x2a')](_0x544871=>/^llm-trace-\d{8}\.jsonl$/[_0x587227(0x28d,'\x5b\x6e\x72\x69')](_0x544871))['\x73\x6f\x72\x74']()[_0x587227(0x363,'\x71\x6d\x77\x5a')](_0x4e915a=>_0x3a670f(_0x4c87c1,_0x4e915a));}}return null;}function sameFileIdentity(_0x1b04ac,_0x20cffc){const _0x1fb205=_0x285e75;if(!_0x1b04ac)return![];if(_0x1b04ac[_0x1fb205(0x203,'\x24\x65\x4d\x57')]&&_0x20cffc[_0x1fb205(0x22b,'\x67\x72\x5b\x36')]&&_0x1b04ac[_0x1fb205(0x33b,'\x71\x68\x4f\x37')]&&_0x20cffc[_0x1fb205(0x1f0,'\x5b\x6e\x72\x69')])return _0x1b04ac[_0x1fb205(0x1c8,'\x71\x29\x69\x2a')]===_0x20cffc[_0x1fb205(0x312,'\x48\x4f\x75\x53')]&&_0x1b04ac[_0x1fb205(0x382,'\x41\x4e\x37\x59')]===_0x20cffc['\x69\x6e\x6f'];return _0x1b04ac['\x62\x69\x72\x74\x68\x74\x69\x6d'+_0x1fb205(0x238,'\x62\x56\x50\x2a')]>-0x11a0+0x1e64+-0xcc4&&_0x1b04ac[_0x1fb205(0x3c4,'\x5b\x6e\x72\x69')+_0x1fb205(0x1b7,'\x24\x65\x4d\x57')]===_0x20cffc[_0x1fb205(0x270,'\x68\x54\x5e\x76')+'\x65\x4d\x73'];}function cursorOffset(_0x378819,_0xa1539f){const _0x4f134c=_0x285e75,_0x420e15=currentCursorState(_0xa1539f,-0x5*-0x132+-0x1*0x1639+0x103f),_0x228ea6=parseCursor(_0x378819[_0x4f134c(0x300,'\x62\x28\x61\x66')]?.(cursorKey(_0xa1539f)));if(!sameFileIdentity(_0x228ea6,_0x420e15))return 0xf46+0x581*0x7+0x35cd*-0x1;if(!_0x228ea6||_0x228ea6[_0x4f134c(0x151,'\x76\x50\x52\x21')]>_0x420e15['\x73\x69\x7a\x65']||_0x228ea6[_0x4f134c(0x29c,'\x48\x28\x25\x6a')]>_0x420e15[_0x4f134c(0x2c7,'\x56\x74\x52\x4d')])return-0x5*-0xd4+-0x1*-0x2702+0x2a*-0x107;if(_0x228ea6[_0x4f134c(0x21e,'\x2a\x43\x28\x33')]!==cursorGuard(_0xa1539f,_0x228ea6[_0x4f134c(0x284,'\x5d\x2a\x6f\x25')]))return 0x1d05+-0x199f+0x57*-0xa;return _0x228ea6[_0x4f134c(0x2f5,'\x62\x56\x50\x2a')];}function readCompleteLines(_0x48310f,_0x24e8c0,_0x3225fd,_0x5e8ca9){const _0x14c1ca=_0x285e75,_0x4dba07=statSync(_0x48310f),_0x4040f5=Math[_0x14c1ca(0x2a9,'\x63\x75\x46\x6f')](_0x3225fd,Math[_0x14c1ca(0x2ef,'\x69\x51\x5b\x5b')](0x20a9+-0x1dd5+-0x2d4,_0x4dba07[_0x14c1ca(0x23f,'\x67\x72\x5b\x36')]-_0x24e8c0));if(_0x4040f5<=0x15af+0x8bf*0x1+-0x19a*0x13)return{'\x6c\x69\x6e\x65\x73':[],'\x6e\x65\x78\x74\x4f\x66\x66\x73\x65\x74':_0x24e8c0,'\x6c\x69\x6e\x65\x54\x6f\x6f\x4c\x6f\x6e\x67':![]};const _0x3b6fb1=openSync(_0x48310f,'\x72');try{if(_0x14c1ca(0x310,'\x67\x72\x5b\x36')!==_0x14c1ca(0x1c2,'\x34\x6e\x73\x53'))return _0x25b94a(_0x487306)&&typeof _0x36e800===_0x14c1ca(0x19f,'\x78\x45\x24\x4f')&&!_0x2c27bc['\x69\x73\x41\x72\x72\x61\x79'](_0x4a4006);else{const _0x419444=Buffer[_0x14c1ca(0x148,'\x73\x6a\x50\x55')](_0x4040f5),_0x227029=readSync(_0x3b6fb1,_0x419444,0x41a+-0x13eb*-0x1+-0x1805,_0x4040f5,_0x24e8c0);let _0x570e17=0x1b47+-0x1bd6+0xb*0xd,_0xccd742=_0x24e8c0,_0x4e1746=![];const _0x1c3182=[];while(_0x570e17<_0x227029){const _0x37aa4d=_0x419444[_0x14c1ca(0x185,'\x62\x28\x61\x66')](-0x21e7+-0x1739+0x392a,_0x570e17);if(_0x37aa4d===-(-0x12a3*-0x1+-0xc*-0x1f6+-0x2a2a)){if(_0x14c1ca(0x354,'\x5d\x2a\x6f\x25')===_0x14c1ca(0x17a,'\x71\x32\x35\x41'))return _0x5d8093;else{if(_0x227029===_0x4040f5&&_0x24e8c0+_0x227029<_0x4dba07['\x73\x69\x7a\x65']){const _0x56c144=_0x227029-_0x570e17;if(_0x56c144>_0x5e8ca9){if('\x73\x65\x62\x45\x46'===_0x14c1ca(0x2b4,'\x21\x30\x32\x31'))return null;else _0xccd742=_0x24e8c0+_0x227029,_0x4e1746=!![];}}break;}}const _0xdb2ebb=_0x419444[_0x14c1ca(0x2e0,'\x41\x4e\x37\x59')](_0x570e17,_0x37aa4d);_0xccd742=_0x24e8c0+_0x37aa4d+(0x1*-0x1a3d+0xe*-0x26b+0x1*0x3c18),_0x570e17=_0x37aa4d+(-0x4*-0x4be+-0xf7*-0x27+0x1*-0x3898);if(_0xdb2ebb['\x6c\x65\x6e\x67\x74\x68']===0x1ff7+0x28*0x65+0x1*-0x2fbf)continue;if(_0xdb2ebb[_0x14c1ca(0x2e3,'\x66\x48\x42\x47')]>_0x5e8ca9){if(_0x14c1ca(0x336,'\x69\x51\x5b\x5b')!==_0x14c1ca(0x20d,'\x5e\x6f\x71\x62'))return _0x57600f===null||typeof _0xd3c223===_0x14c1ca(0x3a3,'\x32\x38\x68\x4c')&&_0x27f75b[_0x14c1ca(0x345,'\x32\x23\x53\x74')](_0x228547);else{_0x4e1746=!![];continue;}}_0x1c3182['\x70\x75\x73\x68']({'\x72\x61\x77':_0xdb2ebb['\x74\x6f\x53\x74\x72\x69\x6e\x67']('\x75\x74\x66\x38'),'\x6e\x65\x78\x74\x4f\x66\x66\x73\x65\x74':_0xccd742});}return{'\x6c\x69\x6e\x65\x73':_0x1c3182,'\x6e\x65\x78\x74\x4f\x66\x66\x73\x65\x74':_0xccd742,'\x6c\x69\x6e\x65\x54\x6f\x6f\x4c\x6f\x6e\x67':_0x4e1746};}}finally{if(_0x14c1ca(0x2dd,'\x41\x4e\x37\x59')==='\x79\x4e\x71\x4b\x4e'){if(!_0x44253b)return null;try{const _0x9279e6=_0x2466cc[_0x14c1ca(0x388,'\x56\x78\x57\x47')](_0x3ab810);if(typeof _0x9279e6['\x64\x65\x76']===_0x14c1ca(0x272,'\x5e\x6f\x71\x62')&&typeof _0x9279e6[_0x14c1ca(0x25b,'\x63\x75\x46\x6f')]===_0x14c1ca(0x2b0,'\x48\x4f\x75\x53')&&typeof _0x9279e6[_0x14c1ca(0x21d,'\x2a\x43\x28\x33')+'\x65\x4d\x73']===_0x14c1ca(0x272,'\x5e\x6f\x71\x62')&&typeof _0x9279e6[_0x14c1ca(0x3b6,'\x30\x43\x43\x4e')]===_0x14c1ca(0x2ab,'\x24\x65\x4d\x57')&&typeof _0x9279e6['\x6f\x66\x66\x73\x65\x74']===_0x14c1ca(0x1b8,'\x76\x50\x52\x21')&&(typeof _0x9279e6[_0x14c1ca(0x30e,'\x38\x2a\x33\x44')]===_0x14c1ca(0x27f,'\x55\x31\x5d\x25')||_0x9279e6[_0x14c1ca(0x3ce,'\x78\x45\x24\x4f')]===_0x423089)&&_0x9279e6[_0x14c1ca(0x1e3,'\x48\x6c\x66\x37')]>=0x14a8+-0x1bf+-0x12e9)return{..._0x9279e6,'\x67\x75\x61\x72\x64':_0x9279e6['\x67\x75\x61\x72\x64']??''};}catch{return null;}return null;}else closeSync(_0x3b6fb1);}}function traceFiles(_0x4732e5){const _0x835e17=_0x285e75;if(!existsSync(_0x4732e5))return[];return readdirSync(_0x4732e5)['\x66\x69\x6c\x74\x65\x72'](_0x3d6ea1=>/^llm-trace-\d{8}\.jsonl$/[_0x835e17(0x1af,'\x6e\x7a\x41\x42')](_0x3d6ea1))[_0x835e17(0x1d3,'\x32\x23\x53\x74')]()['\x6d\x61\x70'](_0x4c99fb=>join(_0x4732e5,_0x4c99fb));}function bump(_0x4f2cd9,_0x58f73f){const _0x58a646=_0x285e75;_0x4f2cd9[_0x58a646(0x3b3,'\x55\x31\x5d\x25')]+=-0x184f+-0x258+-0x1aa8*-0x1,_0x4f2cd9[_0x58a646(0x24e,'\x48\x4f\x75\x53')][_0x58f73f]=(_0x4f2cd9[_0x58a646(0x24e,'\x48\x4f\x75\x53')][_0x58f73f]??-0x1733*-0x1+-0x49*0x53+0x78)+(-0x300+-0x454+0x755);}function persistCursor(_0x2fea6b,_0x15a2ba,_0x2e0039){const _0x1d64ec=_0x285e75;_0x2fea6b[_0x1d64ec(0x298,'\x62\x28\x61\x66')]?.(cursorKey(_0x15a2ba),JSON[_0x1d64ec(0x14f,'\x24\x4c\x77\x70')+'\x79'](currentCursorState(_0x15a2ba,_0x2e0039)));}export function backfillProxyTraceUploads(_0x3668fb){const _0x1878fa=_0x285e75,_0x5e5601=_0x3668fb['\x65\x6e\x76']??process.env,_0x58841a=numberFromEnv(_0x5e5601,[_0x1878fa(0x3b0,'\x32\x38\x68\x4c')+_0x1878fa(0x2a1,'\x69\x51\x5b\x5b')+_0x1878fa(0x192,'\x68\x48\x6d\x5b')+_0x1878fa(0x1be,'\x76\x50\x52\x21')+_0x1878fa(0x1dd,'\x48\x28\x25\x6a'),_0x1878fa(0x340,'\x56\x74\x52\x4d')+_0x1878fa(0x36c,'\x71\x32\x35\x41')+_0x1878fa(0x3d5,'\x78\x45\x24\x4f')+_0x1878fa(0x1d9,'\x5e\x6f\x71\x62')+'\x52\x4f\x57\x53'],DEFAULT_TRACE_BACKFILL_MAX_ROWS),_0x1947c6=numberFromEnv(_0x5e5601,[_0x1878fa(0x32b,'\x67\x71\x2a\x79')+_0x1878fa(0x2ec,'\x71\x29\x69\x2a')+_0x1878fa(0x281,'\x71\x68\x4f\x37')+_0x1878fa(0x25a,'\x48\x56\x32\x7a')+_0x1878fa(0x262,'\x50\x41\x25\x61')+'\x53',_0x1878fa(0x1a3,'\x50\x41\x25\x61')+_0x1878fa(0x36c,'\x71\x32\x35\x41')+_0x1878fa(0x389,'\x48\x56\x32\x7a')+_0x1878fa(0x2d4,'\x76\x50\x52\x21')+_0x1878fa(0x3ae,'\x78\x45\x24\x4f')+'\x45\x53'],DEFAULT_TRACE_BACKFILL_MAX_SCAN_BYTES),_0x332f15=numberFromEnv(_0x5e5601,[_0x1878fa(0x342,'\x56\x78\x57\x47')+_0x1878fa(0x1c6,'\x6e\x7a\x41\x42')+_0x1878fa(0x205,'\x78\x45\x24\x4f')+_0x1878fa(0x226,'\x6b\x69\x4f\x23')+'\x49\x4e\x45\x5f\x42\x59\x54\x45'+'\x53',_0x1878fa(0x39c,'\x69\x51\x5b\x5b')+_0x1878fa(0x1b9,'\x5b\x6e\x72\x69')+_0x1878fa(0x17d,'\x24\x4c\x77\x70')+_0x1878fa(0x37b,'\x6b\x69\x4f\x23')+'\x4c\x49\x4e\x45\x5f\x42\x59\x54'+'\x45\x53'],DEFAULT_TRACE_BACKFILL_MAX_LINE_BYTES),_0x2a6922=numberFromEnv(_0x5e5601,[_0x1878fa(0x331,'\x56\x74\x52\x4d')+_0x1878fa(0x2af,'\x2a\x43\x28\x33')+_0x1878fa(0x3c8,'\x71\x68\x4f\x37')+_0x1878fa(0x20b,'\x56\x74\x46\x5a')+_0x1878fa(0x2eb,'\x38\x33\x24\x45'),_0x1878fa(0x197,'\x2a\x43\x28\x33')+'\x52\x4f\x58\x59\x5f\x54\x52\x41'+_0x1878fa(0x1ae,'\x56\x74\x46\x5a')+_0x1878fa(0x301,'\x30\x43\x43\x4e')+_0x1878fa(0x26e,'\x32\x23\x53\x74')],DEFAULT_TRACE_BACKFILL_MAX_PENDING),_0x8b87fc={'\x73\x63\x61\x6e\x6e\x65\x64':0x0,'\x71\x75\x65\x75\x65\x64':0x0,'\x64\x75\x70\x6c\x69\x63\x61\x74\x65\x73':0x0,'\x73\x6b\x69\x70\x70\x65\x64':0x0,'\x66\x69\x6c\x65\x73':0x0,'\x72\x65\x61\x73\x6f\x6e\x73':{}};let _0x56e5ac=![];for(const _0x468f04 of traceFiles(_0x3668fb[_0x1878fa(0x324,'\x23\x75\x59\x57')])){if('\x51\x6f\x57\x52\x53'!==_0x1878fa(0x198,'\x66\x48\x42\x47'))return typeof _0x18d534===_0x1878fa(0x321,'\x48\x4f\x75\x53')||_0xc6f260===null;else{if(_0x56e5ac||_0x8b87fc[_0x1878fa(0x1df,'\x6b\x69\x4f\x23')]>=_0x58841a)break;let _0x2d2f78=_0x3668fb[_0x1878fa(0x377,'\x68\x54\x5e\x76')][_0x1878fa(0x3bb,'\x21\x54\x28\x5a')+_0x1878fa(0x2ea,'\x77\x79\x61\x25')]?.(_0x1878fa(0x286,'\x48\x56\x32\x7a'),_0x3668fb[_0x1878fa(0x309,'\x62\x56\x50\x2a')+_0x1878fa(0x1aa,'\x48\x4f\x75\x53')]);if(_0x2d2f78!==undefined&&_0x2d2f78>=_0x2a6922){bump(_0x8b87fc,_0x1878fa(0x288,'\x48\x56\x32\x7a')+'\x69\x6e\x67\x5f\x75\x70\x6c\x6f'+_0x1878fa(0x235,'\x24\x65\x4d\x57'));break;}_0x8b87fc[_0x1878fa(0x22a,'\x55\x31\x5d\x25')]+=-0x5a3+0x1327+-0xd83*0x1;let _0x45a5dc=cursorOffset(_0x3668fb['\x73\x74\x6f\x72\x65'],_0x468f04);try{if(_0x1878fa(0x220,'\x56\x74\x52\x4d')!=='\x5a\x56\x62\x6d\x67'){const _0x1b22b6=readCompleteLines(_0x468f04,_0x45a5dc,_0x1947c6,_0x332f15);if(_0x1b22b6[_0x1878fa(0x2ad,'\x55\x31\x5d\x25')+_0x1878fa(0x1fe,'\x34\x6e\x73\x53')])bump(_0x8b87fc,'\x6c\x69\x6e\x65\x5f\x74\x6f\x6f'+_0x1878fa(0x23d,'\x76\x50\x52\x21'));let _0x5ac9c0=-0x20ca+-0x805*0x3+0x38d9;for(const _0x4cae99 of _0x1b22b6[_0x1878fa(0x335,'\x71\x6d\x77\x5a')]){if(_0x8b87fc[_0x1878fa(0x353,'\x71\x32\x35\x41')]>=_0x58841a)break;if(_0x2d2f78!==undefined&&_0x2d2f78>=_0x2a6922){if('\x70\x57\x55\x68\x58'!==_0x1878fa(0x3a0,'\x71\x32\x35\x41')){if(!_0x360ddf(_0x41ed85))return![];const _0x5c5b23=new _0x57e16f([_0x1878fa(0x295,'\x55\x31\x5d\x25')+_0x1878fa(0x346,'\x5e\x6f\x71\x62'),'\x65\x76\x65\x6e\x74',_0x1878fa(0x1ab,'\x63\x75\x46\x6f')+'\x64',_0x1878fa(0x3ac,'\x61\x76\x31\x39')+_0x1878fa(0x391,'\x48\x6c\x66\x37'),_0x1878fa(0x2f1,'\x38\x33\x24\x45')+'\x6d',_0x1878fa(0x2c9,'\x73\x6a\x50\x55'),'\x69\x76',_0x1878fa(0x158,'\x71\x6d\x77\x5a'),_0x1878fa(0x380,'\x41\x4e\x37\x59')+'\x78\x74',_0x1878fa(0x17f,'\x32\x23\x53\x74')+_0x1878fa(0x264,'\x6e\x7a\x41\x42'),_0x1878fa(0x190,'\x5d\x2a\x6f\x25')+_0x1878fa(0x30a,'\x41\x25\x4d\x74'),_0x1878fa(0x1e8,'\x73\x6a\x50\x55')+_0x1878fa(0x302,'\x32\x38\x68\x4c')+_0x1878fa(0x178,'\x48\x28\x25\x6a'),_0x1878fa(0x1b4,'\x21\x54\x28\x5a')+_0x1878fa(0x1e9,'\x68\x48\x6d\x5b'),_0x1878fa(0x248,'\x6e\x7a\x41\x42')+_0x1878fa(0x35c,'\x56\x78\x57\x47')+'\x6e\x74',_0x1878fa(0x3d6,'\x68\x48\x6d\x5b')+_0x1878fa(0x27c,'\x77\x79\x61\x25')+'\x79',_0x1878fa(0x293,'\x62\x56\x50\x2a')+_0x1878fa(0x38c,'\x21\x23\x5b\x45'),_0x1878fa(0x3a8,'\x71\x6d\x77\x5a')+_0x1878fa(0x2bf,'\x69\x51\x5b\x5b')+_0x1878fa(0x2e2,'\x41\x53\x63\x5d')+'\x6e',_0x1878fa(0x1f5,'\x2a\x43\x28\x33')+_0x1878fa(0x257,'\x56\x78\x57\x47'),_0x1878fa(0x3c7,'\x41\x67\x4b\x26')+_0x1878fa(0x3bd,'\x21\x54\x28\x5a')+_0x1878fa(0x2be,'\x5d\x2a\x6f\x25')+'\x6e',_0x1878fa(0x3a7,'\x24\x4c\x77\x70')+_0x1878fa(0x269,'\x56\x74\x46\x5a')+'\x62\x79\x74\x65\x73',_0x1878fa(0x319,'\x48\x56\x32\x7a')+_0x1878fa(0x19d,'\x38\x2a\x33\x44')+'\x79\x74\x65\x73']);return _0x19d94c(_0x5bc8ac,_0x5c5b23)&&_0x210672[_0x1878fa(0x1ec,'\x71\x68\x4f\x37')+_0x1878fa(0x1e6,'\x48\x6c\x66\x37')]===0x23f6+-0x22d1+0x2*-0x92&&_0x291241[_0x1878fa(0x384,'\x23\x75\x59\x57')]===_0x1878fa(0x36d,'\x31\x67\x6d\x74')+_0x1878fa(0x29a,'\x48\x28\x25\x6a')+'\x70\x65'&&_0x378087[_0x1878fa(0x241,'\x31\x67\x6d\x74')+'\x64']===!![]&&_0x358398[_0x1878fa(0x20a,'\x23\x75\x59\x57')+_0x1878fa(0x31c,'\x5e\x6f\x71\x62')]===_0x1878fa(0x1ca,'\x61\x76\x31\x39')+_0x1878fa(0x237,'\x6b\x69\x4f\x23')&&_0x33fec0[_0x1878fa(0x157,'\x41\x67\x4b\x26')+'\x6d']===_0x1878fa(0x202,'\x24\x65\x4d\x57')+_0x1878fa(0x149,'\x21\x23\x5b\x45')&&typeof _0x441e29[_0x1878fa(0x24d,'\x30\x43\x43\x4e')]===_0x1878fa(0x1cf,'\x24\x65\x4d\x57')&&/^[a-f0-9]{16}$/i[_0x1878fa(0x35d,'\x62\x28\x61\x66')](_0x131bf4[_0x1878fa(0x332,'\x76\x50\x52\x21')])&&_0xf1410(_0x12ab4e['\x69\x76'])&&_0x3f6825(_0x5b35bd['\x74\x61\x67'])&&_0x349606(_0x1bef12[_0x1878fa(0x18a,'\x68\x54\x5e\x76')+'\x78\x74'])&&(!_0xf53551(_0x5e3dce,_0x1878fa(0x1bd,'\x5d\x2a\x6f\x25')+'\x65\x6e\x76\x65\x6c\x6f\x70\x65')||_0x19ea0b(_0x340344[_0x1878fa(0x15f,'\x21\x23\x5b\x45')+_0x1878fa(0x311,'\x38\x33\x24\x45')]))&&(_0x22fc19(_0x41ee62[_0x1878fa(0x38f,'\x63\x75\x46\x6f')+_0x1878fa(0x314,'\x71\x32\x35\x41')])||_0x1e6da(_0x20611b[_0x1878fa(0x1db,'\x48\x4f\x75\x53')+_0x1878fa(0x1fb,'\x21\x54\x28\x5a')])!==_0x4a05b7)&&(_0x54e9d1[_0x1878fa(0x2a6,'\x76\x50\x52\x21')+_0x1878fa(0x304,'\x76\x50\x52\x21')]===_0x499414||_0x467779(_0x2880ab[_0x1878fa(0x35e,'\x6e\x7a\x41\x42')+_0x1878fa(0x1da,'\x41\x53\x63\x5d')])!==_0x35aa82)&&(_0x4267b8[_0x1878fa(0x3a9,'\x48\x28\x25\x6a')+_0x1878fa(0x15c,'\x63\x75\x46\x6f')+_0x1878fa(0x25d,'\x66\x48\x42\x47')]===_0x2cfc67||_0x38a2fa(_0x39a595[_0x1878fa(0x254,'\x30\x43\x43\x4e')+_0x1878fa(0x1ee,'\x56\x74\x52\x4d')+_0x1878fa(0x349,'\x38\x33\x24\x45')]))&&_0x4bca35(_0x2aa977[_0x1878fa(0x31b,'\x66\x48\x42\x47')+_0x1878fa(0x1bc,'\x30\x43\x43\x4e')],-0x1107*0x1+-0x3*0x171+0x157a)&&_0x30221b(_0x274d7f[_0x1878fa(0x167,'\x5d\x2a\x6f\x25')+_0x1878fa(0x2cc,'\x68\x54\x5e\x76')+'\x6e\x74'],0x5*-0x265+0x200*0x1+0xa19)&&(_0x188557[_0x1878fa(0x3a8,'\x71\x6d\x77\x5a')+'\x63\x6f\x6d\x70\x6c\x65\x74\x65']===_0x24d9ac||_0x283d03[_0x1878fa(0x293,'\x62\x56\x50\x2a')+_0x1878fa(0x1f2,'\x48\x4f\x75\x53')]===![])&&_0x347e37(_0x2243c9[_0x1878fa(0x1d4,'\x5e\x6f\x71\x62')+'\x69\x6e\x63\x6f\x6d\x70\x6c\x65'+_0x1878fa(0x196,'\x67\x71\x2a\x79')+'\x6e'],-0x9a*-0x19+0x1a53+-0x291d)&&(_0x5001fd['\x68\x75\x62\x5f\x75\x70\x6c\x6f'+_0x1878fa(0x37c,'\x2a\x43\x28\x33')]===_0x1a3f2c||_0x1a6c7d[_0x1878fa(0x32d,'\x6b\x69\x4f\x23')+'\x61\x64\x61\x62\x6c\x65']===![])&&_0x4b0b70(_0x1da51a[_0x1878fa(0x3bf,'\x77\x79\x61\x25')+_0x1878fa(0x2e5,'\x56\x74\x52\x4d')+_0x1878fa(0x1e4,'\x48\x28\x25\x6a')+'\x6e'],-0x1343+-0x10eb*-0x1+-0x53*-0x8)&&_0x8fb153(_0x560b96[_0x1878fa(0x2a5,'\x56\x74\x46\x5a')+_0x1878fa(0x1b5,'\x41\x4e\x37\x59')+_0x1878fa(0x2b6,'\x56\x74\x52\x4d')])&&_0x296bf8(_0x5cef07[_0x1878fa(0x3be,'\x55\x31\x5d\x25')+_0x1878fa(0x360,'\x48\x4f\x75\x53')+_0x1878fa(0x348,'\x21\x54\x28\x5a')])&&(!_0x44e1e3(_0x461b97,_0x1878fa(0x313,'\x5e\x6f\x71\x62')+_0x1878fa(0x193,'\x32\x38\x68\x4c')+'\x79')||_0x31deef(_0x29a46b[_0x1878fa(0x2bd,'\x73\x6a\x50\x55')+_0x1878fa(0x256,'\x5d\x2a\x6f\x25')+'\x79']));}else{bump(_0x8b87fc,_0x1878fa(0x2b5,'\x55\x31\x5d\x25')+_0x1878fa(0x215,'\x78\x45\x24\x4f')+_0x1878fa(0x164,'\x78\x45\x24\x4f')),_0x56e5ac=!![];break;}}_0x5ac9c0+=0x4fd+-0x1*-0x12af+-0x17ab,_0x8b87fc[_0x1878fa(0x258,'\x69\x51\x5b\x5b')]+=0xdd1+-0x12e2+0x512,_0x45a5dc=_0x4cae99[_0x1878fa(0x2ff,'\x48\x4f\x75\x53')+'\x65\x74'];let _0x217be6;try{_0x217be6=JSON[_0x1878fa(0x276,'\x66\x48\x42\x47')](_0x4cae99[_0x1878fa(0x36e,'\x48\x4f\x75\x53')]);}catch{bump(_0x8b87fc,'\x69\x6e\x76\x61\x6c\x69\x64\x5f'+_0x1878fa(0x233,'\x48\x28\x25\x6a'));continue;}if(!isHubDecryptableTraceEnvelope(_0x217be6)){bump(_0x8b87fc,_0x1878fa(0x1a8,'\x38\x33\x24\x45')+_0x1878fa(0x3b9,'\x48\x4f\x75\x53')+'\x62\x6c\x65');continue;}const _0x2e9f53=traceUploadBlockedReason(_0x217be6);if(_0x2e9f53){bump(_0x8b87fc,_0x2e9f53);continue;}const _0x2ba324=enqueueTraceEnvelope(_0x3668fb[_0x1878fa(0x2f9,'\x41\x4e\x37\x59')],_0x217be6,{'\x6e\x6f\x77':_0x3668fb['\x6e\x6f\x77']?.(),'\x65\x6e\x76':_0x5e5601,..._0x3668fb[_0x1878fa(0x2ac,'\x77\x79\x61\x25')+_0x1878fa(0x1e1,'\x38\x2a\x33\x44')]?{'\x72\x75\x6e\x74\x69\x6d\x65\x4e\x61\x6d\x65\x73\x70\x61\x63\x65':_0x3668fb[_0x1878fa(0x1c5,'\x30\x43\x43\x4e')+_0x1878fa(0x16b,'\x21\x23\x5b\x45')]}:{},..._0x3668fb[_0x1878fa(0x387,'\x62\x28\x61\x66')+'\x65\x6e\x74']?{'\x73\x6f\x75\x72\x63\x65\x41\x67\x65\x6e\x74':_0x3668fb[_0x1878fa(0x26d,'\x5d\x2a\x6f\x25')+_0x1878fa(0x21b,'\x63\x75\x46\x6f')]}:{},..._0x3668fb[_0x1878fa(0x1a1,'\x62\x28\x61\x66')+_0x1878fa(0x307,'\x71\x29\x69\x2a')]?{'\x74\x61\x72\x67\x65\x74\x41\x67\x65\x6e\x74':_0x3668fb[_0x1878fa(0x399,'\x71\x6d\x77\x5a')+_0x1878fa(0x173,'\x76\x50\x52\x21')]}:{}});if(_0x2ba324[_0x1878fa(0x2f3,'\x6e\x7a\x41\x42')+'\x65'])_0x8b87fc[_0x1878fa(0x142,'\x63\x75\x46\x6f')+'\x65\x73']+=-0x90e*-0x3+0x7+-0x18*0x122;else{if(_0x2ba324[_0x1878fa(0x3b2,'\x55\x31\x5d\x25')]){if(_0x1878fa(0x23e,'\x77\x79\x61\x25')===_0x1878fa(0x243,'\x78\x45\x24\x4f')){const _0x2cf64f=_0x4d1c18-_0x302011;_0x2cf64f>_0x3b9024&&(_0x7b8305=_0x43fa87+_0xc1894b,_0x311d31=!![]);}else{_0x8b87fc['\x71\x75\x65\x75\x65\x64']+=0x2088+-0x6d*0x50+-0x83*-0x3;if(_0x2d2f78!==undefined)_0x2d2f78+=-0x5bf+-0x11b9+0x1779;}}}}if(_0x5ac9c0===_0x1b22b6[_0x1878fa(0x2a3,'\x5d\x2a\x6f\x25')][_0x1878fa(0x152,'\x24\x65\x4d\x57')]&&_0x1b22b6[_0x1878fa(0x1f3,'\x41\x53\x63\x5d')+'\x65\x74']>_0x45a5dc)_0x45a5dc=_0x1b22b6['\x6e\x65\x78\x74\x4f\x66\x66\x73'+'\x65\x74'];persistCursor(_0x3668fb[_0x1878fa(0x3b5,'\x21\x54\x28\x5a')],_0x468f04,_0x45a5dc);}else{const _0x5861df=_0x46dc5d[_0x1878fa(0x3d3,'\x48\x6c\x66\x37')](_0x5e2919),_0x43184d=_0x55b315(_0x5d0c74,_0x5861df,0xff3+0x157d+-0x95c*0x4,_0x47d26d,_0x29c241-_0x9f252c);return _0x3cc433(_0x1878fa(0x200,'\x5d\x2a\x6f\x25'))[_0x1878fa(0x1d1,'\x48\x4f\x75\x53')](_0x5861df[_0x1878fa(0x199,'\x77\x79\x61\x25')](0x2*-0x6dd+0xd49+0x71,_0x43184d))[_0x1878fa(0x179,'\x41\x67\x4b\x26')](_0x1878fa(0x294,'\x66\x48\x42\x47'));}}catch{bump(_0x8b87fc,'\x72\x65\x61\x64\x5f\x66\x61\x69'+_0x1878fa(0x3b4,'\x56\x78\x57\x47'));}}}return _0x8b87fc;}
|