@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.
@@ -1,278 +1 @@
1
- // LLM trace capture — the reason the proxy sits on the wire at all. Every /v1/messages turn produces one trace
2
- // record (models, tier decision, status, latency, token usage, stop_reason) appended as JSONL so the ingest
3
- // pipeline can mine routing/economics signals the session transcripts can't see.
4
- //
5
- // Native request/response body capture is v1-compatible default full unless explicitly downgraded (see
6
- // bodyCapture.ts). Body fields are redacted+capped. If encryption material is missing, the sink still writes the
7
- // metadata row with bodies stripped so trace coverage stays auditable without falling back to plaintext bodies.
8
- import { mkdirSync, readFileSync, statSync } from 'node:fs';
9
- import { appendFile, chmod } from 'node:fs/promises';
10
- import { homedir } from 'node:os';
11
- import { join } from 'node:path';
12
- import { isNodeSecret, parseNodeSecretVersion } from '@evomap/evolver-adapter-public';
13
- import { captureBodiesEnabled } from './bodyCapture.js';
14
- import { traceCollectionEnabled, traceHubPublicKey, traceProfileAnalysisEnabled } from './traceConfig.js';
15
- import { materializeTraceForStorage } from './traceEnvelope.js';
16
- import { backfillProxyTraceUploads, enqueueTraceEnvelope, isHubDecryptableTraceEnvelope, } from './traceBackfill.js';
17
- export const DEFAULT_TRACE_FILE_CAP_BYTES = 64 * 1024 * 1024;
18
- function dayStamp(ms) {
19
- const d = new Date(ms);
20
- const p = (n) => String(n).padStart(2, '0');
21
- return `${d.getUTCFullYear()}${p(d.getUTCMonth() + 1)}${p(d.getUTCDate())}`;
22
- }
23
- function evomapHome(env = process.env) {
24
- return String(env['EVOLVER_HOME'] ?? env['EVOMAP_HOME'] ?? join(env['HOME'] || homedir(), '.evomap'));
25
- }
26
- function readTrimmedFile(path) {
27
- try {
28
- const value = readFileSync(path, 'utf8').trim();
29
- return value || undefined;
30
- }
31
- catch {
32
- return undefined;
33
- }
34
- }
35
- function traceEncryptionExplicitlyDisabled(env = process.env) {
36
- const raw = String(env['EVOLVER_LLM_TRACE_ENCRYPTION'] ?? env['EVOMAP_PROXY_TRACE_ENCRYPTION'] ?? '').trim().toLowerCase();
37
- return raw === '0' || raw === 'false' || raw === 'off' || raw === 'none';
38
- }
39
- function traceFlagEnabled(value) {
40
- const raw = String(value ?? '').trim().toLowerCase();
41
- return raw === '1' || raw === 'true' || raw === 'on' || raw === 'yes';
42
- }
43
- function metadataOnlyFallbackAllowed(env = process.env, profileAnalysisEnabled = false) {
44
- return captureBodiesEnabled(env)
45
- && !traceFlagEnabled(env['EVOLVER_LLM_TRACE_ENCRYPTION'])
46
- && !traceFlagEnabled(env['EVOMAP_PROXY_TRACE_ENCRYPTION'])
47
- && !traceFlagEnabled(env['EVOLVER_LLM_TRACE_PROFILE_ANALYSIS'])
48
- && !traceFlagEnabled(env['EVOMAP_PROXY_TRACE_PROFILE_ANALYSIS'])
49
- && !profileAnalysisEnabled;
50
- }
51
- export function resolveTraceNodeSecretMaterial(env = process.env, store, explicitNodeSecretVersion) {
52
- const explicitVersion = explicitNodeSecretVersion !== undefined ? parseNodeSecretVersion(explicitNodeSecretVersion) : undefined;
53
- const envSecretRaw = env['EVOMAP_NODE_SECRET'] ?? env['A2A_NODE_SECRET'];
54
- const envSecret = envSecretRaw && isNodeSecret(envSecretRaw) ? envSecretRaw : undefined;
55
- // EVOMAP-first to match the node_secret env precedence above, keeping (secret, version) paired.
56
- const envVersion = parseNodeSecretVersion(env['EVOMAP_NODE_SECRET_VERSION'] ?? env['A2A_NODE_SECRET_VERSION']);
57
- const storeSecretRaw = store?.getState?.('node_secret');
58
- const storeSecret = storeSecretRaw && isNodeSecret(storeSecretRaw) ? storeSecretRaw : undefined;
59
- const storeSource = store?.getState?.('node_secret_source');
60
- const storeVersion = parseNodeSecretVersion(store?.getState?.('node_secret_version'));
61
- if (storeSource === 'hub_rotate' && storeSecret) {
62
- return { nodeSecret: storeSecret, nodeSecretVersion: explicitVersion ?? storeVersion };
63
- }
64
- if (envSecret) {
65
- return {
66
- nodeSecret: envSecret,
67
- nodeSecretVersion: explicitVersion ?? envVersion ?? (envSecret === storeSecret ? storeVersion : undefined),
68
- };
69
- }
70
- if (storeSecret)
71
- return { nodeSecret: storeSecret, nodeSecretVersion: explicitVersion ?? storeVersion };
72
- const home = evomapHome(env);
73
- const legacySecret = readTrimmedFile(join(home, 'node_secret'));
74
- if (!legacySecret || !isNodeSecret(legacySecret))
75
- return { ...(explicitVersion !== undefined ? { nodeSecretVersion: explicitVersion } : {}) };
76
- const legacyVersion = parseNodeSecretVersion(readTrimmedFile(join(home, 'node_secret_version')));
77
- return { nodeSecret: legacySecret, nodeSecretVersion: explicitVersion ?? legacyVersion };
78
- }
79
- export function resolveTraceNodeSecretVersion(env = process.env, store, explicitNodeSecretVersion) {
80
- return resolveTraceNodeSecretMaterial(env, store, explicitNodeSecretVersion).nodeSecretVersion;
81
- }
82
- function metadataOnlyTraceRecord(record) {
83
- const { requestBody: _requestBody, responseBody: _responseBody, request_headers: _requestHeaders, response_headers: _responseHeaders, transport_metadata: _transportMetadata, attempts, ...rest } = record;
84
- const strippedAttempts = attempts?.map((attempt) => {
85
- const { requestBody: _attemptRequestBody, responseBody: _attemptResponseBody, ...attemptMeta } = attempt;
86
- return { ...attemptMeta, body_truncated: true };
87
- });
88
- return {
89
- ...rest,
90
- body_truncated: true,
91
- ...(strippedAttempts && strippedAttempts.length > 0 ? { attempts: strippedAttempts } : {}),
92
- };
93
- }
94
- /**
95
- * Append-only NDJSON sink, one file per UTC day (`llm-trace-YYYYMMDD.jsonl`). Fire-and-forget writes; any
96
- * failure (bad dir, full disk, cap reached) degrades to a single warn and NEVER propagates — trace capture
97
- * must not be able to break serving.
98
- */
99
- export class JsonlTraceSink {
100
- opts;
101
- now;
102
- cap;
103
- log;
104
- warned = false;
105
- chmodWarned = false;
106
- envelopeWarned = false;
107
- plaintextWarned = false;
108
- mailboxWarned = false;
109
- cappedDay = null;
110
- securedFiles = new Set();
111
- /** Appends are chained, not raced: two in-flight fs appends to one path have no ordering guarantee, and
112
- * out-of-order trace lines would corrupt the day-file as a timeline. Still fire-and-forget to callers. */
113
- tail = Promise.resolve();
114
- constructor(opts) {
115
- this.opts = opts;
116
- this.now = opts.now ?? (() => Date.now());
117
- this.cap = opts.fileCapBytes ?? DEFAULT_TRACE_FILE_CAP_BYTES;
118
- this.log = opts.logger ?? console;
119
- try {
120
- mkdirSync(opts.dir, { recursive: true });
121
- }
122
- catch {
123
- /* surfaced on first write instead */
124
- }
125
- this.backfillExistingTraceUploads();
126
- }
127
- filePath() {
128
- return join(this.opts.dir, `llm-trace-${dayStamp(this.now())}.jsonl`);
129
- }
130
- /**
131
- * Await the appends queued so far. write() is fire-and-forget (it chains the fs append onto `tail` and returns),
132
- * so a caller that needs the trace durable on disk — a graceful shutdown, or a test asserting file contents —
133
- * must await this rather than guess a wall-clock delay. Never rejects: write() already swallows append errors
134
- * into `tail`.
135
- */
136
- flush() {
137
- return this.tail;
138
- }
139
- write = (record) => {
140
- try {
141
- const env = this.opts.env ?? process.env;
142
- if (!traceCollectionEnabled(env, this.opts.mailboxStore))
143
- return;
144
- const day = dayStamp(this.now());
145
- if (this.cappedDay === day)
146
- return;
147
- const file = this.filePath();
148
- try {
149
- if (statSync(file).size >= this.cap) {
150
- this.cappedDay = day;
151
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_capped', file, cap_bytes: this.cap }));
152
- return;
153
- }
154
- }
155
- catch {
156
- /* file does not exist yet → first write of the day */
157
- }
158
- const profileAnalysisEnabled = traceProfileAnalysisEnabled(env, this.opts.mailboxStore);
159
- const traceSecret = resolveTraceNodeSecretMaterial(env, this.opts.mailboxStore, this.opts.nodeSecretVersion);
160
- const materialized = materializeTraceForStorage(record, env, {
161
- nodeSecretVersion: traceSecret.nodeSecretVersion,
162
- nodeSecret: traceSecret.nodeSecret,
163
- hubPublicKey: traceHubPublicKey(env, this.opts.mailboxStore),
164
- profileAnalysisEnabled,
165
- producerGeneration: 'v2',
166
- producerVersion: this.opts.producerVersion,
167
- producerComponent: 'proxy',
168
- });
169
- let storedRecord;
170
- if (materialized.ok) {
171
- storedRecord = materialized.record;
172
- this.enqueueOutboundTrace(materialized.record);
173
- }
174
- else if (traceEncryptionExplicitlyDisabled(env)) {
175
- // Escape hatch: body capture is on but no encryption key is available AND trace
176
- // encryption is explicitly disabled, so redacted-but-plaintext request/response bodies
177
- // are written to the local trace file. Warn once so this never happens silently
178
- // (see docs/trace-body-capture.md).
179
- if (!this.plaintextWarned) {
180
- this.plaintextWarned = true;
181
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_plaintext_bodies', reason: 'trace_encryption_disabled' }));
182
- }
183
- storedRecord = record;
184
- }
185
- else {
186
- if (!this.envelopeWarned) {
187
- this.envelopeWarned = true;
188
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_hub_undecryptable', reason: materialized.reason }));
189
- }
190
- if (!metadataOnlyFallbackAllowed(env, profileAnalysisEnabled))
191
- return;
192
- storedRecord = metadataOnlyTraceRecord(record);
193
- }
194
- const line = `${JSON.stringify(storedRecord)}\n`;
195
- this.tail = this.tail.then(async () => {
196
- if (!this.securedFiles.has(file)) {
197
- try {
198
- statSync(file);
199
- await this.secureTraceFile(file);
200
- }
201
- catch {
202
- /* new file: appendFile mode below controls initial permissions */
203
- }
204
- }
205
- await appendFile(file, line, { encoding: 'utf8', mode: 0o600 });
206
- await this.secureTraceFile(file);
207
- }).catch((err) => {
208
- if (!this.warned) {
209
- this.warned = true;
210
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_write_failed', error: err instanceof Error ? err.message : String(err) }));
211
- }
212
- });
213
- }
214
- catch (err) {
215
- if (!this.warned) {
216
- this.warned = true;
217
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_write_failed', error: err instanceof Error ? err.message : String(err) }));
218
- }
219
- }
220
- };
221
- async secureTraceFile(file) {
222
- if (this.securedFiles.has(file))
223
- return true;
224
- try {
225
- await chmod(file, 0o600);
226
- this.securedFiles.add(file);
227
- return true;
228
- }
229
- catch (err) {
230
- if (!this.chmodWarned) {
231
- this.chmodWarned = true;
232
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_chmod_failed', error: err instanceof Error ? err.message : String(err) }));
233
- }
234
- return false;
235
- }
236
- }
237
- enqueueOutboundTrace(storedRecord) {
238
- if (!this.opts.mailboxStore || !isHubDecryptableTraceEnvelope(storedRecord))
239
- return;
240
- try {
241
- enqueueTraceEnvelope(this.opts.mailboxStore, storedRecord, {
242
- now: this.now(),
243
- env: this.opts.env ?? process.env,
244
- ...(this.opts.runtimeNamespace ? { runtimeNamespace: this.opts.runtimeNamespace } : {}),
245
- ...(this.opts.sourceAgent ? { sourceAgent: this.opts.sourceAgent } : {}),
246
- ...(this.opts.targetAgent ? { targetAgent: this.opts.targetAgent } : {}),
247
- });
248
- }
249
- catch (err) {
250
- if (!this.mailboxWarned) {
251
- this.mailboxWarned = true;
252
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_enqueue_failed', error: err instanceof Error ? err.message : String(err) }));
253
- }
254
- }
255
- }
256
- backfillExistingTraceUploads() {
257
- if (!this.opts.mailboxStore)
258
- return null;
259
- try {
260
- return backfillProxyTraceUploads({
261
- dir: this.opts.dir,
262
- store: this.opts.mailboxStore,
263
- env: this.opts.env ?? process.env,
264
- now: this.now,
265
- ...(this.opts.runtimeNamespace ? { runtimeNamespace: this.opts.runtimeNamespace } : {}),
266
- ...(this.opts.sourceAgent ? { sourceAgent: this.opts.sourceAgent } : {}),
267
- ...(this.opts.targetAgent ? { targetAgent: this.opts.targetAgent } : {}),
268
- });
269
- }
270
- catch (err) {
271
- if (!this.mailboxWarned) {
272
- this.mailboxWarned = true;
273
- this.log.warn?.(JSON.stringify({ event: 'llm_trace_backfill_failed', error: err instanceof Error ? err.message : String(err) }));
274
- }
275
- return null;
276
- }
277
- }
278
- }
1
+ function _0x1436(){const _0x2e226e=['\x72\x43\x6f\x48\x57\x52\x52\x63\x4a\x4d\x58\x38\x63\x43\x6b\x75\x57\x35\x66\x2b','\x42\x38\x6f\x42\x68\x4a\x53','\x46\x53\x6f\x33\x61\x38\x6b\x48\x6a\x38\x6b\x37\x57\x4f\x79\x56','\x57\x51\x74\x64\x4f\x47\x79','\x57\x34\x35\x37\x57\x34\x46\x64\x52\x53\x6f\x31\x7a\x38\x6f\x77\x57\x36\x53','\x57\x34\x35\x44\x57\x35\x33\x63\x4d\x76\x7a\x48\x46\x38\x6f\x2f','\x57\x37\x69\x64\x57\x52\x43\x45\x6a\x47','\x57\x36\x61\x75\x57\x52\x4f\x6f\x6d\x64\x76\x59\x57\x51\x61','\x63\x43\x6f\x57\x57\x51\x52\x64\x4a\x62\x50\x5a\x78\x67\x64\x63\x53\x43\x6f\x59\x78\x73\x53','\x7a\x33\x61\x45\x72\x59\x50\x6d\x74\x53\x6b\x47','\x57\x4f\x74\x64\x56\x38\x6b\x6a','\x57\x34\x68\x64\x54\x38\x6b\x2b\x43\x5a\x30\x49\x57\x52\x52\x63\x56\x61','\x57\x4f\x5a\x64\x4f\x53\x6b\x6a\x61\x38\x6b\x55','\x75\x4d\x44\x58\x70\x61','\x57\x34\x7a\x44\x65\x72\x75\x6a\x57\x36\x78\x64\x49\x6d\x6b\x37','\x57\x50\x4e\x64\x4f\x53\x6b\x73\x61\x57','\x57\x37\x44\x57\x67\x61\x6d\x6f\x57\x36\x2f\x64\x4a\x43\x6b\x35','\x57\x52\x4f\x48\x57\x52\x66\x54\x6f\x38\x6b\x39\x57\x37\x74\x64\x49\x53\x6f\x2f\x6a\x76\x64\x64\x4a\x61','\x57\x51\x33\x64\x55\x6d\x6b\x4f\x57\x51\x48\x6d\x71\x53\x6b\x51','\x66\x43\x6f\x55\x57\x51\x5a\x64\x4c\x61','\x57\x34\x31\x5a\x57\x34\x2f\x64\x52\x53\x6f\x59\x43\x6d\x6f\x75\x57\x37\x4f','\x57\x51\x2f\x64\x52\x43\x6b\x56\x57\x51\x47','\x57\x35\x44\x35\x70\x5a\x4f\x36\x57\x37\x78\x64\x51\x53\x6b\x69','\x57\x36\x76\x36\x57\x36\x65\x58\x78\x6d\x6f\x47\x57\x35\x5a\x64\x4d\x57','\x57\x52\x43\x45\x57\x34\x66\x37\x70\x61','\x57\x52\x33\x63\x54\x76\x70\x64\x50\x4a\x4e\x64\x4b\x53\x6f\x4d\x57\x50\x34','\x57\x34\x65\x4c\x75\x38\x6f\x70\x7a\x38\x6b\x63\x72\x43\x6b\x38','\x78\x30\x54\x61','\x57\x36\x53\x4b\x69\x61','\x57\x52\x68\x64\x55\x65\x62\x73\x6d\x38\x6b\x4d\x72\x38\x6b\x72\x74\x48\x4b','\x57\x51\x42\x64\x49\x38\x6b\x66','\x57\x37\x74\x63\x4f\x47\x61\x62','\x57\x4f\x68\x63\x4c\x68\x78\x64\x4a\x62\x4a\x64\x53\x53\x6f\x58\x57\x52\x34','\x57\x37\x6d\x32\x57\x37\x71\x48','\x6f\x53\x6b\x36\x45\x38\x6f\x4a\x57\x36\x43','\x6e\x6d\x6b\x36\x7a\x53\x6f\x53\x57\x36\x30\x2f\x77\x74\x69','\x57\x34\x52\x64\x4a\x53\x6b\x41','\x57\x4f\x68\x63\x50\x73\x42\x63\x55\x5a\x58\x50\x64\x38\x6b\x4b','\x57\x37\x78\x63\x55\x72\x72\x43','\x57\x36\x31\x68\x57\x37\x37\x64\x47\x47','\x57\x36\x74\x63\x50\x61\x61','\x57\x51\x54\x76\x6d\x38\x6b\x41\x45\x62\x65','\x57\x37\x48\x32\x57\x36\x52\x63\x56\x4e\x54\x75\x74\x38\x6f\x6a','\x57\x52\x76\x78\x57\x4f\x4e\x64\x4d\x38\x6f\x2b\x6a\x43\x6f\x44\x72\x71','\x68\x6d\x6b\x6e\x71\x6d\x6f\x6e\x57\x34\x34\x61\x46\x49\x53','\x57\x4f\x69\x6c\x6f\x65\x54\x50\x71\x53\x6f\x54\x70\x61','\x57\x37\x57\x62\x57\x51\x30\x69','\x57\x52\x68\x64\x4a\x43\x6b\x63\x42\x53\x6f\x4d\x62\x6d\x6f\x32\x6d\x71','\x57\x36\x71\x34\x6d\x47','\x57\x34\x30\x42\x66\x62\x50\x43','\x57\x36\x78\x64\x4d\x43\x6b\x58\x6b\x57','\x57\x34\x50\x42\x57\x52\x74\x63\x49\x61','\x6e\x53\x6b\x52\x45\x38\x6f\x5a','\x57\x37\x65\x51\x70\x53\x6b\x35','\x57\x36\x68\x63\x51\x72\x79','\x57\x36\x39\x77\x57\x36\x70\x64\x4e\x43\x6f\x64\x77\x53\x6f\x56\x57\x37\x53','\x57\x34\x31\x59\x57\x34\x65','\x57\x51\x62\x71\x73\x61\x7a\x33\x6c\x6d\x6f\x78','\x76\x43\x6f\x45\x70\x38\x6b\x6e\x6c\x47','\x57\x51\x64\x63\x54\x76\x71','\x57\x35\x56\x63\x53\x53\x6f\x6a\x41\x58\x4a\x63\x55\x6d\x6b\x45\x57\x36\x47','\x57\x34\x66\x41\x57\x52\x2f\x63\x4a\x33\x38\x4e\x77\x32\x65','\x57\x4f\x72\x6c\x57\x4f\x57\x52\x43\x61','\x57\x52\x68\x64\x4c\x53\x6b\x66\x44\x43\x6f\x52\x62\x53\x6f\x45\x6d\x61','\x65\x76\x6d\x36\x70\x47','\x57\x37\x31\x6f\x66\x61\x75','\x57\x36\x53\x4e\x57\x37\x69\x38','\x57\x51\x5a\x64\x4a\x43\x6b\x61','\x57\x51\x74\x64\x4b\x57\x69\x74\x57\x52\x42\x64\x51\x61\x54\x69','\x57\x36\x31\x4b\x57\x35\x5a\x64\x53\x53\x6b\x46\x45\x53\x6f\x65\x57\x4f\x4f','\x6f\x38\x6f\x58\x57\x50\x4c\x4d\x57\x35\x75\x57\x6d\x4b\x75','\x77\x78\x58\x31\x57\x35\x71\x74\x57\x37\x4a\x64\x51\x48\x6c\x64\x52\x6d\x6b\x31\x64\x61\x30','\x57\x34\x70\x64\x48\x53\x6b\x62\x74\x68\x71\x4f\x71\x48\x57','\x57\x52\x6c\x64\x4a\x4c\x64\x64\x4b\x6d\x6f\x4a','\x67\x43\x6b\x39\x57\x36\x33\x64\x4d\x77\x4c\x56\x6c\x53\x6b\x30','\x57\x51\x4a\x63\x56\x65\x78\x64\x4f\x63\x6d','\x57\x51\x4e\x64\x53\x43\x6b\x2b\x57\x51\x47','\x57\x35\x72\x59\x57\x35\x4a\x64\x4f\x53\x6f\x4f\x45\x53\x6f\x7a','\x57\x4f\x68\x63\x53\x59\x71','\x57\x36\x74\x64\x48\x53\x6b\x52\x70\x71','\x57\x37\x58\x61\x62\x57','\x57\x35\x5a\x64\x4b\x53\x6b\x67\x76\x68\x38\x51\x78\x57\x65','\x57\x37\x75\x7a\x77\x33\x2f\x64\x4a\x43\x6b\x30\x57\x4f\x56\x63\x4c\x57','\x70\x53\x6b\x2b\x45\x38\x6f\x76\x57\x35\x53\x74\x42\x61\x4f','\x57\x36\x35\x6b\x57\x36\x79\x31\x46\x38\x6f\x31\x57\x35\x52\x64\x4a\x71','\x57\x50\x66\x76\x6b\x6d\x6b\x79\x46\x58\x52\x64\x47\x62\x57','\x57\x51\x56\x63\x50\x67\x42\x64\x54\x4a\x4e\x64\x48\x6d\x6f\x42\x57\x4f\x6d','\x57\x36\x50\x34\x57\x36\x61\x4e\x46\x38\x6f\x4b\x57\x35\x5a\x64\x4a\x61','\x57\x52\x76\x75\x57\x4f\x6d','\x57\x50\x62\x42\x6a\x47','\x70\x6d\x6b\x65\x45\x6d\x6f\x59\x57\x36\x79\x4b\x72\x64\x4f','\x57\x35\x4b\x64\x7a\x64\x39\x75\x65\x38\x6f\x65\x6d\x61','\x57\x34\x4c\x57\x57\x35\x37\x64\x52\x38\x6b\x55','\x64\x53\x6b\x36\x46\x43\x6f\x55\x57\x36\x4f\x30','\x57\x51\x53\x48\x6a\x6d\x6b\x36\x57\x4f\x7a\x54','\x57\x37\x64\x64\x49\x6d\x6b\x6d','\x57\x51\x50\x6d\x57\x50\x65','\x57\x4f\x48\x67\x69\x6d\x6b\x78\x45\x63\x52\x64\x4e\x73\x75','\x57\x51\x6e\x71\x6b\x6d\x6b\x68\x46\x62\x46\x64\x4c\x63\x34','\x57\x35\x6d\x59\x43\x61','\x45\x38\x6b\x62\x57\x34\x68\x63\x50\x78\x57\x65\x75\x75\x4f','\x63\x31\x30\x33\x6e\x59\x61\x75\x57\x52\x4b\x73','\x57\x36\x79\x46\x57\x34\x30\x49\x64\x47','\x72\x43\x6b\x6e\x57\x34\x5a\x63\x4e\x6d\x6f\x48\x57\x34\x68\x63\x56\x4c\x53','\x57\x36\x48\x39\x57\x36\x47\x37\x41\x38\x6f\x73\x57\x35\x37\x64\x4d\x57','\x73\x48\x43\x72\x76\x48\x70\x63\x53\x33\x75\x68','\x57\x37\x58\x61\x66\x62\x6d\x5a\x57\x34\x70\x64\x4e\x43\x6b\x30','\x57\x35\x57\x79\x6d\x62\x47','\x57\x34\x53\x49\x57\x34\x30\x38\x70\x57','\x57\x34\x4a\x64\x4a\x53\x6b\x65\x72\x75\x79\x4d\x74\x49\x43','\x57\x34\x6c\x64\x49\x38\x6b\x66\x46\x32\x69\x31\x77\x59\x57','\x57\x4f\x54\x76\x6d\x38\x6b\x41','\x57\x4f\x64\x63\x4c\x74\x7a\x4a\x63\x43\x6f\x62\x57\x50\x4e\x63\x55\x57','\x6f\x6d\x6b\x32\x41\x53\x6f\x5a\x57\x37\x38\x58\x71\x47\x61','\x57\x52\x47\x79\x57\x34\x43','\x57\x4f\x37\x64\x50\x4e\x75','\x57\x36\x58\x45\x76\x57\x75','\x57\x36\x6e\x41\x57\x36\x2f\x64\x47\x53\x6f\x72\x76\x6d\x6f\x30\x57\x34\x30','\x61\x38\x6b\x39\x57\x37\x56\x64\x4d\x71','\x57\x34\x76\x78\x44\x73\x79\x56\x43\x43\x6f\x77\x64\x43\x6f\x74\x65\x53\x6f\x77','\x57\x51\x64\x64\x56\x48\x57\x41\x57\x52\x6d','\x74\x38\x6f\x58\x44\x38\x6f\x31\x57\x51\x62\x69\x46\x77\x69','\x76\x75\x31\x66','\x74\x43\x6b\x57\x57\x37\x5a\x63\x4d\x4c\x53\x4c\x43\x31\x43','\x57\x51\x6c\x64\x52\x71\x69','\x57\x36\x71\x6c\x45\x43\x6f\x34','\x46\x43\x6b\x73\x57\x35\x68\x63\x55\x78\x47\x6f\x72\x76\x57','\x75\x43\x6f\x59\x79\x53\x6f\x5a\x57\x51\x54\x6f\x42\x4d\x61','\x57\x37\x70\x63\x55\x71\x61\x6e\x6d\x6d\x6b\x75\x44\x53\x6b\x4c','\x57\x50\x66\x72\x6d\x53\x6b\x68\x46\x62\x6c\x64\x4e\x71','\x57\x52\x69\x66\x57\x35\x30','\x57\x4f\x68\x63\x4d\x64\x69\x49\x68\x38\x6f\x43\x57\x4f\x64\x63\x4a\x57','\x57\x4f\x4a\x63\x53\x74\x2f\x64\x49\x73\x50\x30\x63\x53\x6b\x55','\x57\x37\x64\x63\x52\x62\x79\x33\x6b\x53\x6b\x73\x42\x43\x6b\x33','\x57\x34\x64\x63\x54\x53\x6f\x7a','\x76\x48\x6d\x78\x74\x61','\x7a\x4d\x38\x6f\x75\x71','\x57\x4f\x68\x64\x56\x6d\x6b\x6b\x6f\x43\x6b\x2b\x70\x6d\x6b\x67\x57\x50\x6d','\x69\x67\x71\x43\x68\x49\x75\x30\x57\x4f\x47\x2f','\x57\x4f\x68\x63\x53\x59\x79','\x57\x34\x70\x64\x48\x53\x6b\x79','\x57\x37\x7a\x79\x57\x37\x4a\x64\x4c\x61','\x44\x38\x6b\x54\x57\x37\x56\x64\x4d\x61','\x57\x37\x43\x59\x57\x36\x75\x36\x70\x75\x57\x46\x57\x4f\x69','\x6e\x43\x6b\x30\x41\x61','\x57\x37\x75\x64\x7a\x38\x6f\x5a\x45\x38\x6b\x33\x7a\x38\x6b\x2f','\x57\x51\x71\x6a\x57\x35\x54\x62\x6c\x4e\x53\x55\x57\x36\x6d','\x57\x52\x43\x62\x57\x34\x50\x54\x6b\x68\x38\x2f\x57\x37\x75','\x57\x52\x70\x64\x53\x53\x6b\x55\x57\x51\x4c\x6f\x71\x6d\x6b\x6f\x57\x35\x71','\x57\x37\x58\x76\x57\x37\x52\x64\x4a\x57','\x57\x4f\x56\x63\x52\x73\x42\x63\x4c\x57','\x57\x35\x37\x64\x49\x38\x6b\x6a\x73\x78\x47\x5a\x78\x5a\x43','\x67\x53\x6b\x5a\x57\x36\x64\x64\x4b\x66\x48\x4c\x6e\x43\x6b\x76','\x62\x64\x30\x33\x57\x50\x71','\x57\x36\x2f\x64\x4e\x43\x6b\x74\x70\x43\x6f\x4b\x6a\x6d\x6f\x6e\x57\x51\x65','\x57\x36\x39\x38\x57\x37\x43','\x41\x38\x6b\x33\x57\x36\x56\x64\x4f\x4d\x4e\x63\x4e\x43\x6b\x43\x57\x51\x38','\x57\x51\x5a\x64\x51\x71\x65\x6d\x57\x52\x42\x64\x50\x47\x61','\x57\x34\x76\x31\x69\x31\x2f\x63\x50\x53\x6f\x66\x78\x6d\x6f\x79','\x57\x51\x46\x63\x4d\x61\x33\x63\x4f\x72\x62\x66\x6f\x43\x6b\x75','\x57\x52\x4b\x43\x57\x35\x54\x54','\x57\x36\x53\x4b\x6d\x38\x6b\x57\x57\x52\x44\x59\x57\x35\x4a\x64\x50\x57','\x57\x36\x66\x77\x57\x37\x52\x64\x47\x43\x6f\x65\x75\x43\x6f\x74\x57\x34\x4b','\x46\x43\x6b\x34\x69\x71','\x78\x38\x6b\x48\x57\x36\x52\x63\x4f\x68\x4f\x69\x75\x78\x79','\x57\x51\x31\x6a\x57\x4f\x33\x64\x51\x71','\x57\x37\x30\x66\x46\x61','\x57\x50\x38\x45\x6f\x67\x43','\x57\x35\x72\x30\x45\x49\x66\x75\x68\x43\x6f\x6d\x6c\x61','\x57\x37\x58\x30\x57\x37\x43\x36\x41\x53\x6f\x48','\x57\x4f\x69\x44\x57\x52\x2f\x63\x56\x4b\x75\x37\x45\x33\x57','\x57\x51\x2f\x64\x47\x38\x6b\x45\x43\x6d\x6f\x4e\x64\x53\x6f\x70\x61\x71','\x57\x51\x68\x64\x56\x53\x6b\x2b\x57\x50\x31\x65\x73\x43\x6b\x51','\x77\x43\x6b\x71\x57\x34\x71','\x57\x36\x44\x7a\x57\x37\x34','\x46\x53\x6b\x32\x70\x33\x52\x63\x4f\x6d\x6b\x57\x57\x37\x5a\x64\x55\x61','\x57\x52\x52\x63\x53\x75\x6c\x64\x54\x63\x37\x64\x47\x38\x6f\x5a\x57\x4f\x53','\x6c\x78\x30\x45\x66\x57','\x57\x34\x30\x4f\x6d\x48\x66\x57\x57\x51\x46\x63\x47\x43\x6f\x51','\x57\x52\x6c\x64\x55\x61\x61\x77\x57\x52\x4e\x64\x50\x47\x58\x41','\x57\x37\x39\x76\x57\x37\x4e\x63\x50\x78\x54\x77\x71\x47','\x57\x35\x39\x64\x57\x4f\x37\x63\x4e\x78\x43\x4a\x75\x4b\x4f','\x57\x37\x58\x6b\x66\x61','\x57\x50\x69\x70\x6c\x33\x39\x35\x74\x53\x6f\x5a\x69\x57','\x57\x51\x46\x64\x56\x43\x6b\x76\x46\x43\x6f\x4d\x63\x53\x6f\x72\x70\x57','\x72\x53\x6f\x66\x75\x38\x6f\x7a\x57\x4f\x62\x5a\x75\x4b\x79','\x44\x38\x6f\x32\x65\x47','\x57\x36\x71\x71\x57\x51\x53\x76\x6a\x5a\x71','\x57\x51\x35\x67\x57\x4f\x57\x39\x45\x53\x6b\x70\x64\x61','\x57\x4f\x4a\x64\x51\x6d\x6b\x74\x6f\x43\x6b\x4f\x69\x43\x6b\x64\x57\x50\x4b','\x57\x51\x68\x63\x53\x76\x74\x64\x4f\x61','\x63\x76\x34\x6d\x6e\x62\x69\x79\x57\x52\x79\x66','\x67\x74\x47\x54\x57\x50\x6e\x69\x57\x51\x68\x64\x4f\x48\x75','\x57\x51\x48\x67\x69\x6d\x6b\x78\x45\x63\x64\x64\x49\x63\x43','\x57\x52\x46\x64\x4c\x53\x6b\x72\x6a\x61','\x57\x36\x44\x4f\x57\x36\x4a\x64\x4b\x6d\x6f\x63\x78\x53\x6f\x58\x57\x34\x65','\x74\x6d\x6b\x46\x57\x36\x4f\x79\x57\x51\x44\x71\x78\x78\x4e\x64\x49\x43\x6b\x47\x57\x36\x61\x61\x69\x71','\x57\x35\x4f\x57\x41\x77\x78\x64\x54\x38\x6b\x66\x57\x52\x4a\x63\x52\x71','\x57\x52\x76\x75\x57\x4f\x70\x64\x4f\x38\x6f\x56\x6a\x71','\x64\x6d\x6f\x55\x57\x51\x4a\x64\x4a\x4c\x52\x64\x53\x62\x4e\x63\x50\x61','\x78\x65\x76\x45\x57\x51\x62\x4a\x57\x35\x44\x54\x57\x35\x69','\x57\x52\x47\x64\x57\x35\x47','\x57\x36\x47\x51\x6a\x57','\x57\x4f\x4c\x61\x69\x38\x6b\x42\x41\x62\x56\x64\x4e\x62\x38','\x57\x51\x46\x64\x52\x72\x34\x6d\x57\x52\x69','\x57\x37\x68\x64\x54\x6d\x6b\x54\x79\x30\x71\x63\x42\x48\x61','\x57\x51\x4a\x64\x48\x53\x6b\x4f\x6b\x38\x6b\x6c\x68\x53\x6b\x34\x57\x51\x61','\x75\x78\x54\x4f\x65\x68\x57\x45\x71\x38\x6f\x79','\x57\x50\x68\x64\x50\x4d\x46\x64\x48\x53\x6f\x4f\x57\x35\x68\x64\x50\x43\x6f\x4b','\x57\x52\x39\x73\x57\x4f\x4a\x64\x4f\x43\x6f\x6a\x6e\x53\x6f\x6d\x7a\x61','\x57\x36\x47\x6d\x57\x35\x46\x63\x54\x53\x6b\x38\x79\x6d\x6b\x6a\x79\x30\x37\x63\x48\x6d\x6b\x77\x6a\x53\x6f\x51','\x57\x35\x4b\x53\x43\x65\x4b','\x57\x4f\x50\x59\x57\x52\x43','\x7a\x53\x6b\x53\x57\x37\x2f\x64\x4d\x68\x46\x63\x4e\x43\x6b\x79\x57\x51\x53','\x64\x73\x71\x56\x57\x4f\x6a\x58\x57\x51\x33\x64\x53\x5a\x6d','\x67\x6d\x6b\x49\x57\x37\x33\x64\x4a\x57','\x57\x35\x52\x64\x49\x6d\x6b\x4b\x74\x32\x65\x49\x73\x61\x57','\x44\x53\x6b\x35\x6a\x32\x70\x63\x50\x38\x6b\x51\x57\x36\x68\x64\x50\x61','\x63\x38\x6f\x4a\x57\x52\x56\x64\x49\x71','\x57\x36\x65\x70\x46\x38\x6f\x6a\x73\x38\x6b\x35\x79\x53\x6b\x70','\x57\x36\x4c\x48\x57\x36\x65\x41\x71\x47','\x57\x52\x44\x2f\x79\x6d\x6f\x54\x57\x51\x44\x55\x57\x35\x56\x64\x56\x6d\x6f\x75\x57\x35\x4b','\x57\x52\x78\x64\x52\x71\x61\x79\x57\x52\x6c\x64\x54\x73\x72\x42','\x57\x34\x44\x53\x57\x34\x68\x64\x53\x47','\x57\x51\x69\x45\x57\x34\x7a\x5a','\x57\x51\x58\x73\x57\x37\x5a\x64\x4e\x53\x6f\x6d\x76\x6d\x6f\x4e','\x76\x53\x6b\x78\x57\x34\x37\x63\x4c\x38\x6f\x57\x57\x37\x78\x63\x55\x4c\x53','\x57\x37\x6d\x64\x76\x67\x4a\x64\x4a\x6d\x6b\x58\x57\x50\x64\x63\x47\x47','\x68\x58\x4f\x49\x57\x50\x76\x70\x57\x51\x4e\x64\x4f\x57','\x57\x34\x78\x63\x54\x53\x6f\x64\x43\x47\x4a\x63\x53\x53\x6b\x59\x57\x34\x4b','\x46\x4e\x34\x69\x74\x62\x58\x6e','\x57\x34\x6c\x64\x55\x53\x6b\x33\x78\x57','\x57\x34\x53\x6d\x68\x43\x6b\x43\x57\x4f\x30','\x57\x35\x2f\x64\x47\x67\x47\x33\x6a\x6d\x6f\x62\x57\x4f\x46\x63\x4c\x68\x54\x4b','\x57\x37\x70\x63\x4c\x43\x6f\x65\x6c\x53\x6b\x5a\x76\x53\x6b\x63\x65\x38\x6b\x65\x6d\x43\x6b\x2b\x57\x36\x56\x63\x47\x61','\x57\x37\x4c\x64\x73\x57\x76\x2b','\x57\x52\x70\x63\x56\x63\x64\x63\x49\x4a\x54\x49','\x6b\x53\x6b\x54\x71\x43\x6f\x32\x43\x53\x6f\x49\x57\x4f\x43\x56\x57\x37\x48\x4d\x57\x4f\x7a\x6f','\x45\x4e\x61\x70\x75\x62\x50\x6d\x42\x6d\x6b\x31','\x41\x6d\x6f\x38\x66\x53\x6b\x58\x6f\x43\x6b\x58\x57\x50\x69\x6d','\x57\x51\x46\x64\x4a\x6d\x6b\x62','\x57\x36\x4b\x4b\x6d\x61','\x57\x51\x5a\x64\x53\x43\x6b\x32\x57\x4f\x72\x7a\x76\x38\x6b\x55\x57\x35\x61','\x57\x36\x7a\x4a\x57\x37\x68\x63\x55\x33\x44\x43\x78\x53\x6f\x38','\x67\x43\x6f\x6c\x57\x51\x48\x37\x57\x36\x69\x64\x68\x33\x61','\x62\x59\x65\x55\x57\x52\x48\x76\x57\x52\x37\x64\x50\x4a\x47','\x57\x36\x44\x36\x57\x36\x69','\x57\x51\x35\x41\x57\x50\x42\x64\x51\x53\x6f\x56\x6d\x57','\x42\x38\x6f\x42\x68\x4a\x56\x63\x51\x38\x6f\x34','\x57\x52\x44\x63\x57\x50\x79\x49','\x57\x34\x71\x35\x7a\x31\x78\x64\x53\x43\x6b\x74','\x57\x36\x68\x64\x49\x43\x6b\x6b\x57\x36\x57','\x57\x37\x44\x63\x68\x4e\x30','\x57\x37\x39\x75\x75\x74\x76\x6f\x68\x38\x6f\x65\x66\x61','\x57\x50\x4e\x63\x4d\x59\x31\x51','\x43\x6d\x6f\x73\x74\x38\x6f\x79\x57\x50\x44\x2f\x46\x75\x79','\x75\x6d\x6b\x72\x57\x35\x43','\x57\x35\x38\x57\x79\x75\x4b','\x57\x35\x50\x48\x6f\x48\x38\x61','\x42\x68\x65\x6f','\x64\x6d\x6f\x70\x57\x52\x39\x6e','\x75\x6d\x6f\x65\x57\x51\x39\x68\x57\x37\x47\x6f','\x44\x53\x6b\x35\x69\x47','\x57\x50\x39\x74\x6d\x43\x6b\x65\x75\x71','\x42\x75\x6e\x6d\x61\x65\x79','\x57\x37\x71\x70\x46\x38\x6f\x66\x74\x6d\x6b\x33\x79\x38\x6b\x79','\x69\x43\x6f\x39\x57\x50\x4c\x52\x57\x34\x71\x4e\x70\x57','\x57\x34\x70\x64\x54\x6d\x6b\x4b','\x57\x36\x61\x45\x57\x51\x57\x6a\x69\x74\x76\x78\x57\x4f\x65','\x57\x34\x4e\x63\x50\x43\x6f\x65\x45\x57\x34','\x57\x34\x5a\x63\x56\x53\x6f\x79','\x57\x51\x74\x64\x4f\x47\x6d\x6b\x57\x52\x6c\x64\x54\x61\x62\x5a','\x57\x34\x44\x68\x57\x52\x74\x63\x4c\x71','\x6f\x6d\x6b\x50\x79\x43\x6f\x4c\x57\x36\x53','\x44\x6d\x6b\x4a\x57\x37\x56\x64\x4b\x57','\x57\x37\x38\x66\x42\x61','\x57\x51\x62\x63\x57\x4f\x38','\x77\x48\x65\x41\x74\x57\x4e\x63\x56\x78\x6d\x70','\x42\x53\x6f\x43\x75\x38\x6f\x67\x57\x50\x7a\x31\x72\x68\x79','\x57\x51\x35\x6a\x57\x4f\x33\x64\x53\x6d\x6f\x56','\x57\x37\x4a\x64\x4e\x6d\x6b\x52\x6c\x6d\x6f\x2f\x6f\x53\x6f\x62\x57\x4f\x61','\x43\x6d\x6b\x32\x57\x37\x56\x64\x4c\x68\x78\x63\x4c\x43\x6b\x62\x57\x51\x47','\x57\x36\x2f\x63\x56\x71\x79\x78','\x42\x53\x6f\x79\x73\x43\x6f\x7a\x57\x50\x76\x39\x77\x71','\x57\x50\x34\x62\x6f\x57','\x57\x34\x46\x63\x50\x38\x6f\x45\x42\x71','\x57\x34\x56\x64\x55\x6d\x6b\x6e\x74\x4d\x43\x59\x78\x5a\x4f','\x57\x37\x72\x75\x73\x57\x44\x55\x6e\x61','\x57\x50\x2f\x63\x4b\x73\x53','\x43\x53\x6b\x36\x6d\x32\x78\x63\x53\x53\x6b\x2b\x57\x36\x46\x64\x4a\x47','\x76\x38\x6b\x6c\x57\x34\x42\x64\x53\x57','\x57\x36\x4a\x64\x4a\x43\x6b\x43\x79\x71\x47\x61\x57\x4f\x74\x63\x4a\x57','\x44\x4b\x58\x65\x57\x51\x4c\x51','\x78\x43\x6b\x51\x57\x36\x4a\x63\x4b\x65\x69\x4b\x7a\x32\x79','\x57\x4f\x78\x63\x52\x5a\x5a\x63\x47\x74\x4f','\x65\x53\x6b\x38\x57\x37\x30','\x76\x57\x79\x68','\x57\x36\x4f\x34\x57\x37\x65','\x57\x37\x66\x64\x57\x37\x4a\x64\x4d\x6d\x6f\x70\x75\x53\x6f\x2b\x57\x34\x34','\x6f\x43\x6f\x44\x57\x4f\x4a\x64\x51\x78\x78\x64\x49\x63\x78\x63\x4a\x57','\x57\x36\x35\x32\x57\x34\x37\x63\x53\x4d\x44\x61\x74\x38\x6f\x61','\x57\x51\x68\x63\x4f\x65\x74\x64\x4f\x61','\x57\x52\x7a\x6c\x57\x50\x64\x64\x54\x57','\x57\x50\x4f\x54\x57\x4f\x70\x63\x53\x53\x6f\x7a\x6a\x38\x6f\x68\x57\x51\x72\x67\x6a\x32\x64\x63\x54\x47','\x57\x51\x31\x6d\x57\x50\x53\x52\x72\x6d\x6b\x42\x64\x61\x6d','\x57\x36\x4e\x64\x49\x6d\x6b\x31','\x77\x43\x6b\x4e\x57\x37\x56\x63\x53\x30\x43\x4e\x43\x47','\x70\x73\x47\x58\x57\x50\x72\x69\x57\x51\x70\x64\x51\x71','\x62\x4c\x4f\x2b\x70\x72\x43\x4d\x57\x52\x53\x73','\x57\x36\x35\x35\x57\x35\x6d\x5a\x71\x47','\x57\x35\x35\x6f\x57\x52\x4a\x63\x4c\x33\x71\x4c\x72\x4e\x47','\x57\x35\x78\x64\x51\x67\x64\x64\x4b\x4a\x6e\x74\x6d\x38\x6b\x46\x57\x51\x4c\x49','\x57\x35\x52\x63\x4f\x53\x6f\x65\x41\x47\x70\x63\x53\x6d\x6b\x56\x57\x35\x71','\x71\x53\x6f\x57\x57\x34\x4a\x64\x4f\x4c\x78\x63\x56\x43\x6b\x53\x57\x4f\x53','\x57\x36\x4a\x64\x4a\x43\x6b\x43\x79\x71\x47\x61\x57\x4f\x74\x63\x4b\x71','\x57\x36\x72\x4c\x57\x37\x65\x4e','\x57\x50\x35\x61\x6a\x43\x6b\x36\x75\x61','\x57\x51\x33\x64\x56\x66\x4e\x64\x48\x38\x6f\x37','\x57\x36\x35\x6b\x57\x36\x79\x38\x79\x53\x6f\x51\x57\x35\x56\x64\x54\x47','\x65\x38\x6f\x4b\x57\x51\x38','\x57\x36\x74\x64\x48\x53\x6b\x59','\x57\x35\x75\x47\x57\x35\x65\x48\x69\x47','\x57\x36\x78\x63\x4f\x57\x79','\x61\x6d\x6b\x5a\x57\x37\x56\x64\x4b\x47','\x57\x36\x62\x42\x57\x36\x38','\x42\x6d\x6f\x76\x68\x4a\x61','\x57\x35\x58\x46\x57\x51\x78\x63\x49\x61','\x57\x36\x4b\x59\x57\x37\x75\x38\x6c\x4b\x34\x45','\x77\x33\x7a\x53\x69\x32\x30\x69','\x57\x51\x42\x64\x56\x6d\x6b\x59\x57\x52\x44\x69\x71\x71','\x57\x35\x56\x63\x4f\x38\x6f\x79\x44\x57\x74\x63\x55\x53\x6b\x4a\x57\x37\x57','\x57\x37\x6e\x78\x68\x4e\x52\x63\x4e\x53\x6f\x4e\x7a\x38\x6f\x48','\x57\x36\x76\x54\x57\x37\x5a\x63\x53\x4b\x50\x61\x71\x38\x6f\x6d','\x78\x43\x6b\x42\x57\x36\x4e\x63\x48\x30\x43\x2f\x43\x4c\x57','\x66\x6d\x6b\x5a\x57\x37\x4e\x64\x4a\x66\x39\x55\x63\x43\x6b\x4e','\x57\x4f\x6d\x6c\x6c\x32\x66\x54\x71\x53\x6f\x6c\x70\x71','\x76\x75\x66\x75\x57\x52\x35\x34\x57\x34\x48\x48\x57\x36\x61','\x57\x34\x78\x64\x55\x53\x6b\x47','\x57\x4f\x69\x6c\x6f\x61','\x57\x35\x35\x6b\x57\x51\x6c\x63\x49\x68\x43\x54\x77\x57','\x42\x63\x47\x42\x75\x4a\x69','\x57\x36\x72\x59\x57\x36\x5a\x63\x50\x61','\x57\x36\x7a\x6f\x61\x48\x65\x6a\x57\x34\x74\x64\x55\x43\x6b\x57','\x57\x4f\x4a\x63\x53\x74\x2f\x63\x55\x59\x50\x30\x63\x53\x6b\x55','\x57\x34\x71\x42\x6c\x59\x6a\x4c\x57\x52\x5a\x63\x4a\x53\x6f\x39','\x57\x51\x75\x79\x57\x35\x31\x33\x6e\x4e\x4b\x31\x57\x37\x79','\x57\x37\x54\x4e\x57\x36\x4f\x53\x44\x47','\x62\x43\x6b\x33\x57\x37\x52\x64\x4b\x31\x7a\x38\x6b\x61','\x57\x50\x39\x76\x6d\x71','\x57\x36\x65\x6c\x41\x6d\x6f\x5a','\x57\x34\x57\x7a\x57\x34\x57\x4d\x69\x57','\x57\x36\x4b\x32\x57\x36\x38\x4a\x6c\x75\x79\x64\x57\x50\x6d','\x63\x43\x6f\x70\x57\x51\x35\x67','\x57\x36\x35\x79\x57\x36\x30','\x66\x31\x43\x59\x69\x72\x57\x46','\x73\x75\x62\x4b\x70\x77\x79\x6a\x72\x47','\x57\x51\x56\x63\x4a\x31\x78\x64\x56\x74\x52\x64\x47\x53\x6f\x78\x57\x50\x4b','\x57\x37\x31\x55\x72\x57\x66\x35\x6e\x38\x6f\x4d\x68\x61','\x57\x36\x6c\x63\x52\x62\x65\x70\x6f\x6d\x6b\x41\x43\x38\x6b\x56','\x7a\x53\x6f\x74\x74\x61','\x57\x35\x57\x77\x6d\x62\x50\x30\x57\x52\x52\x63\x52\x53\x6f\x35','\x57\x51\x70\x63\x53\x76\x4e\x64\x56\x59\x4e\x64\x4d\x6d\x6f\x6b\x57\x52\x38','\x57\x52\x75\x77\x6a\x77\x44\x52\x74\x53\x6f\x58\x6b\x61','\x57\x37\x64\x64\x4b\x53\x6b\x55\x57\x36\x57\x4b\x57\x52\x64\x63\x52\x38\x6b\x58','\x57\x51\x7a\x38\x57\x4f\x47\x38\x43\x53\x6b\x43\x64\x64\x38','\x57\x36\x58\x64\x74\x61\x30','\x6d\x43\x6b\x6f\x63\x43\x6b\x79\x57\x51\x6a\x53\x45\x68\x70\x63\x54\x6d\x6f\x2b','\x41\x38\x6f\x51\x6f\x43\x6b\x57\x57\x52\x35\x49\x66\x57\x4c\x44\x57\x37\x48\x36\x41\x53\x6f\x62','\x57\x36\x4f\x37\x69\x38\x6b\x4d','\x57\x34\x71\x42\x67\x58\x48\x57\x57\x52\x57','\x78\x75\x48\x41\x57\x50\x6e\x31\x57\x34\x50\x30\x57\x36\x69','\x44\x38\x6f\x31\x67\x6d\x6b\x42\x70\x38\x6b\x4d\x57\x50\x43\x50','\x57\x50\x52\x63\x4c\x73\x31\x48','\x6c\x48\x53\x6d\x57\x51\x50\x47\x57\x50\x5a\x64\x4d\x62\x6d','\x57\x4f\x68\x63\x47\x4a\x74\x63\x48\x74\x44\x51\x64\x53\x6b\x50','\x57\x52\x70\x64\x51\x43\x6b\x50\x57\x52\x6a\x64\x71\x53\x6b\x4d\x57\x35\x75','\x57\x34\x4a\x64\x48\x6d\x6b\x31\x74\x73\x61\x38\x57\x52\x37\x63\x55\x57','\x57\x51\x74\x64\x4f\x47\x71','\x79\x43\x6f\x43\x77\x43\x6f\x62\x57\x50\x6a\x5a\x75\x65\x30','\x57\x34\x38\x73\x6e\x49\x35\x4c\x57\x51\x2f\x63\x4d\x38\x6f\x37','\x57\x51\x58\x74\x57\x4f\x53\x39','\x77\x6d\x6b\x41\x57\x35\x64\x63\x49\x38\x6f\x31\x57\x34\x78\x63\x56\x47'];_0x1436=function(){return _0x2e226e;};return _0x1436();}const _0x12d6ca=_0x4f97;(function(_0x1eb168,_0x1f8d5e){const _0x52b083=_0x4f97,_0x289f09=_0x1eb168();while(!![]){try{const _0x5af63c=-parseInt(_0x52b083(0x164,'\x58\x74\x37\x4d'))/(0x760*-0x1+0x25d1+0x3ce*-0x8)+parseInt(_0x52b083(0x122,'\x30\x73\x52\x69'))/(-0x914+-0x1605+0x1f1b)*(-parseInt(_0x52b083(0xdf,'\x21\x61\x35\x74'))/(0x1a17+-0x1e9a+0x486))+-parseInt(_0x52b083(0x1bb,'\x4b\x71\x77\x72'))/(-0x1050+0x94c+-0x3*-0x258)+-parseInt(_0x52b083(0x107,'\x5b\x65\x44\x48'))/(-0xf*-0x247+-0x25a9*0x1+0x1*0x385)+-parseInt(_0x52b083(0x112,'\x64\x36\x58\x57'))/(-0x815+0x4*-0x710+0x245b*0x1)*(-parseInt(_0x52b083(0x1d0,'\x45\x52\x66\x5a'))/(-0x22e8*0x1+-0x114a+0x1d*0x1cd))+parseInt(_0x52b083(0x1ec,'\x54\x59\x72\x38'))/(0x101*0x3+-0x1d3d+0x1a42)*(-parseInt(_0x52b083(0xf9,'\x63\x52\x44\x76'))/(0x187*-0x8+0xcc6+-0x85))+parseInt(_0x52b083(0xac,'\x64\x47\x4d\x59'))/(-0x77+0x16*-0xbe+0x8b*0x1f)*(parseInt(_0x52b083(0x1b3,'\x26\x52\x26\x31'))/(-0x2696*-0x1+0x36f+-0x2*0x14fd));if(_0x5af63c===_0x1f8d5e)break;else _0x289f09['push'](_0x289f09['shift']());}catch(_0x532639){_0x289f09['push'](_0x289f09['shift']());}}}(_0x1436,-0x2a958*-0x1+0x63968+-0x55604));import{mkdirSync,readFileSync,statSync}from'\x6e\x6f\x64\x65\x3a\x66\x73';import{appendFile,chmod}from'\x6e\x6f\x64\x65\x3a\x66\x73\x2f\x70\x72\x6f\x6d\x69\x73\x65\x73';import{homedir}from'\x6e\x6f\x64\x65\x3a\x6f\x73';import{join}from'\x6e\x6f\x64\x65\x3a\x70\x61\x74\x68';import{isNodeSecret,parseNodeSecretVersion}from'\x40\x65\x76\x6f\x6d\x61\x70\x2f\x65\x76\x6f\x6c\x76\x65\x72\x2d\x61\x64\x61\x70\x74\x65\x72\x2d\x70\x75\x62\x6c\x69\x63';import{captureBodiesEnabled}from'\x2e\x2f\x62\x6f\x64\x79\x43\x61\x70\x74\x75\x72\x65\x2e\x6a\x73';import{traceCollectionEnabled,traceHubPublicKey,traceProfileAnalysisEnabled}from'\x2e\x2f\x74\x72\x61\x63\x65\x43\x6f\x6e\x66\x69\x67\x2e\x6a\x73';import{materializeTraceForStorage}from'\x2e\x2f\x74\x72\x61\x63\x65\x45\x6e\x76\x65\x6c\x6f\x70\x65\x2e\x6a\x73';import{backfillProxyTraceUploads,enqueueTraceEnvelope,isHubDecryptableTraceEnvelope}from'\x2e\x2f\x74\x72\x61\x63\x65\x42\x61\x63\x6b\x66\x69\x6c\x6c\x2e\x6a\x73';export const DEFAULT_TRACE_FILE_CAP_BYTES=(0x425+0x4*-0x241+-0x1b5*-0x3)*(-0x7e1+-0x617*0x2+-0x180f*-0x1)*(0xe*0xa3+-0x18a7*0x1+0x13bd);function dayStamp(_0x56c1af){const _0x27e50d=_0x4f97,_0x5450e3=new Date(_0x56c1af),_0x3cde77=_0x5b7598=>String(_0x5b7598)[_0x27e50d(0xba,'\x45\x52\x66\x5a')](0x1d63+0x2433+0x3*-0x15dc,'\x30');return''+_0x5450e3[_0x27e50d(0xd9,'\x4b\x71\x77\x72')+_0x27e50d(0x1a6,'\x48\x26\x66\x41')]()+_0x3cde77(_0x5450e3[_0x27e50d(0x206,'\x2a\x5b\x7a\x29')+_0x27e50d(0xa7,'\x4c\x70\x37\x50')]()+(0x506+-0x845*0x1+-0x4*-0xd0))+_0x3cde77(_0x5450e3[_0x27e50d(0x132,'\x54\x59\x72\x38')+'\x74\x65']());}function evomapHome(_0x33c226=process.env){const _0x4765d3=_0x4f97;return String(_0x33c226[_0x4765d3(0xb3,'\x4b\x71\x77\x72')+_0x4765d3(0xe6,'\x5d\x7a\x61\x56')]??_0x33c226[_0x4765d3(0x1aa,'\x4a\x42\x39\x45')+'\x4f\x4d\x45']??join(_0x33c226['\x48\x4f\x4d\x45']||homedir(),_0x4765d3(0x116,'\x53\x35\x44\x5a')));}function readTrimmedFile(_0x45f8be){const _0x48317a=_0x4f97;try{const _0x50d72f=readFileSync(_0x45f8be,_0x48317a(0x1d9,'\x45\x52\x66\x5a'))[_0x48317a(0x1a2,'\x54\x59\x72\x38')]();return _0x50d72f||undefined;}catch{return undefined;}}function traceEncryptionExplicitlyDisabled(_0x31e2a8=process.env){const _0xf725b7=_0x4f97,_0x27c3ba=String(_0x31e2a8[_0xf725b7(0x1c9,'\x38\x45\x24\x57')+_0xf725b7(0x1b7,'\x53\x35\x44\x5a')+_0xf725b7(0x1b8,'\x6e\x44\x59\x24')+_0xf725b7(0x157,'\x6a\x70\x55\x4f')]??_0x31e2a8[_0xf725b7(0x103,'\x37\x6b\x32\x4e')+_0xf725b7(0xb4,'\x6e\x48\x48\x71')+_0xf725b7(0x205,'\x38\x75\x53\x77')+_0xf725b7(0x13d,'\x26\x43\x48\x65')]??'')[_0xf725b7(0xda,'\x5b\x65\x44\x48')]()[_0xf725b7(0x10d,'\x54\x75\x72\x6c')+_0xf725b7(0x1e3,'\x64\x36\x58\x57')]();return _0x27c3ba==='\x30'||_0x27c3ba===_0xf725b7(0x101,'\x7a\x26\x4c\x39')||_0x27c3ba===_0xf725b7(0x174,'\x4d\x4b\x5e\x56')||_0x27c3ba===_0xf725b7(0x202,'\x61\x38\x53\x43');}function traceFlagEnabled(_0x703c81){const _0x43eda8=_0x4f97,_0x3886a2=String(_0x703c81??'')[_0x43eda8(0x115,'\x4c\x70\x37\x50')]()['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+'\x61\x73\x65']();return _0x3886a2==='\x31'||_0x3886a2===_0x43eda8(0x1c2,'\x37\x6b\x32\x4e')||_0x3886a2==='\x6f\x6e'||_0x3886a2==='\x79\x65\x73';}function metadataOnlyFallbackAllowed(_0x33fb09=process.env,_0x834463=![]){const _0x1b0a82=_0x4f97;return captureBodiesEnabled(_0x33fb09)&&!traceFlagEnabled(_0x33fb09[_0x1b0a82(0xd3,'\x66\x42\x5b\x5d')+_0x1b0a82(0xae,'\x6e\x48\x48\x71')+_0x1b0a82(0x1f9,'\x63\x52\x44\x76')+_0x1b0a82(0xca,'\x58\x74\x37\x4d')])&&!traceFlagEnabled(_0x33fb09['\x45\x56\x4f\x4d\x41\x50\x5f\x50'+'\x52\x4f\x58\x59\x5f\x54\x52\x41'+_0x1b0a82(0xd4,'\x36\x5d\x4e\x35')+'\x50\x54\x49\x4f\x4e'])&&!traceFlagEnabled(_0x33fb09[_0x1b0a82(0xbf,'\x5d\x7a\x61\x56')+'\x4c\x4c\x4d\x5f\x54\x52\x41\x43'+_0x1b0a82(0x118,'\x38\x75\x53\x77')+_0x1b0a82(0x160,'\x4d\x4b\x5e\x56')+'\x49\x53'])&&!traceFlagEnabled(_0x33fb09[_0x1b0a82(0x158,'\x2a\x50\x56\x65')+_0x1b0a82(0x1cd,'\x65\x40\x33\x55')+_0x1b0a82(0x217,'\x4b\x71\x77\x72')+_0x1b0a82(0xdd,'\x54\x59\x72\x38')+_0x1b0a82(0x109,'\x5b\x65\x44\x48')])&&!_0x834463;}function _0x4f97(_0x8ee14f,_0x1b40e7){_0x8ee14f=_0x8ee14f-(0xcb3+0x11*-0x45+-0x782);const _0x45daeb=_0x1436();let _0x4fd8e6=_0x45daeb[_0x8ee14f];if(_0x4f97['\x4f\x66\x54\x66\x54\x74']===undefined){var _0x175da9=function(_0x3154e5){const _0xbef892='\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 _0x5b2af5='',_0x32f027='';for(let _0x3de264=-0x960+-0x878+0x11d8*0x1,_0x461967,_0x346ac3,_0x5894d6=0x1c3b+0x1969+-0x1*0x35a4;_0x346ac3=_0x3154e5['\x63\x68\x61\x72\x41\x74'](_0x5894d6++);~_0x346ac3&&(_0x461967=_0x3de264%(-0x797*0x3+-0x20c2+0x378b)?_0x461967*(0x23d6+-0x8e6+-0x1ab0*0x1)+_0x346ac3:_0x346ac3,_0x3de264++%(0x1*0x1b71+-0x1fe2+0x475))?_0x5b2af5+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0xa6c+0x305+0x866&_0x461967>>(-(0xacf*-0x1+0x94a+0x11*0x17)*_0x3de264&-0xfa+-0x946+0xa46)):-0x1e7*0x9+-0x251c+-0x363b*-0x1){_0x346ac3=_0xbef892['\x69\x6e\x64\x65\x78\x4f\x66'](_0x346ac3);}for(let _0x255e99=-0x9f5*0x1+0x1933+-0xf3e,_0x45dc28=_0x5b2af5['\x6c\x65\x6e\x67\x74\x68'];_0x255e99<_0x45dc28;_0x255e99++){_0x32f027+='\x25'+('\x30\x30'+_0x5b2af5['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x255e99)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0xed8+-0xd26+-0x95a*-0x3))['\x73\x6c\x69\x63\x65'](-(0x1c56+-0x12d8+-0x97c));}return decodeURIComponent(_0x32f027);};const _0x27b521=function(_0xd0a8e7,_0x4d63af){let _0x291c29=[],_0x5c5e5f=0xda1*-0x2+-0xb11*-0x2+0x520,_0x5f0685,_0x1a2ff3='';_0xd0a8e7=_0x175da9(_0xd0a8e7);let _0x131104;for(_0x131104=0x32d*-0x9+-0x1434+0x30c9;_0x131104<0x5a6*-0x5+-0x58e+0x20c*0x11;_0x131104++){_0x291c29[_0x131104]=_0x131104;}for(_0x131104=-0xb30*-0x2+-0x733*-0x3+-0x2bf9;_0x131104<-0x26*0xc8+-0x8a5+0x2755;_0x131104++){_0x5c5e5f=(_0x5c5e5f+_0x291c29[_0x131104]+_0x4d63af['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x131104%_0x4d63af['\x6c\x65\x6e\x67\x74\x68']))%(-0x137b+0x22*-0xa7+-0x1*-0x2aa9),_0x5f0685=_0x291c29[_0x131104],_0x291c29[_0x131104]=_0x291c29[_0x5c5e5f],_0x291c29[_0x5c5e5f]=_0x5f0685;}_0x131104=-0x3*-0x995+-0xef5+-0x5*0x2c2,_0x5c5e5f=-0x3*-0x1ca+0x1010+-0x156e;for(let _0x2cd706=-0x5*0x2e3+-0x235f+0x31ce;_0x2cd706<_0xd0a8e7['\x6c\x65\x6e\x67\x74\x68'];_0x2cd706++){_0x131104=(_0x131104+(-0x1134+0x3*-0x2f+0x11c2))%(-0x1d18+-0x1b67+0x397f),_0x5c5e5f=(_0x5c5e5f+_0x291c29[_0x131104])%(0x59a*-0x1+-0x118a+0x1824),_0x5f0685=_0x291c29[_0x131104],_0x291c29[_0x131104]=_0x291c29[_0x5c5e5f],_0x291c29[_0x5c5e5f]=_0x5f0685,_0x1a2ff3+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0xd0a8e7['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2cd706)^_0x291c29[(_0x291c29[_0x131104]+_0x291c29[_0x5c5e5f])%(-0x2c*-0x43+-0x3*-0x3f3+-0xe5*0x19)]);}return _0x1a2ff3;};_0x4f97['\x78\x45\x78\x67\x65\x42']=_0x27b521,_0x4f97['\x71\x61\x4c\x43\x6b\x71']={},_0x4f97['\x4f\x66\x54\x66\x54\x74']=!![];}const _0x5a868d=_0x45daeb[-0x1a94+-0x669*-0x3+-0x1*-0x759],_0x5bee1d=_0x8ee14f+_0x5a868d,_0x216f33=_0x4f97['\x71\x61\x4c\x43\x6b\x71'][_0x5bee1d];return!_0x216f33?(_0x4f97['\x56\x61\x66\x4d\x43\x45']===undefined&&(_0x4f97['\x56\x61\x66\x4d\x43\x45']=!![]),_0x4fd8e6=_0x4f97['\x78\x45\x78\x67\x65\x42'](_0x4fd8e6,_0x1b40e7),_0x4f97['\x71\x61\x4c\x43\x6b\x71'][_0x5bee1d]=_0x4fd8e6):_0x4fd8e6=_0x216f33,_0x4fd8e6;}export function resolveTraceNodeSecretMaterial(_0x5de818=process.env,_0x2af11f,_0x139d5a){const _0x4e346c=_0x4f97,_0x31eb93=_0x139d5a!==undefined?parseNodeSecretVersion(_0x139d5a):undefined,_0x5172be=_0x5de818[_0x4e346c(0x1df,'\x2a\x5b\x7a\x29')+_0x4e346c(0x1c7,'\x53\x35\x44\x5a')+'\x45\x54']??_0x5de818[_0x4e346c(0x20e,'\x54\x59\x72\x38')+_0x4e346c(0x13f,'\x63\x52\x44\x76')],_0x1fbc1b=_0x5172be&&isNodeSecret(_0x5172be)?_0x5172be:undefined,_0x5c8af4=parseNodeSecretVersion(_0x5de818[_0x4e346c(0x16f,'\x2a\x50\x56\x65')+_0x4e346c(0x1d3,'\x30\x5a\x77\x4f')+'\x45\x54\x5f\x56\x45\x52\x53\x49'+'\x4f\x4e']??_0x5de818[_0x4e346c(0x16e,'\x6a\x70\x55\x4f')+_0x4e346c(0x102,'\x54\x75\x72\x6c')+_0x4e346c(0x200,'\x53\x35\x44\x5a')]),_0x156a78=_0x2af11f?.[_0x4e346c(0x13e,'\x65\x40\x33\x55')]?.(_0x4e346c(0x9f,'\x38\x45\x24\x57')+_0x4e346c(0x155,'\x65\x29\x28\x64')),_0x53987e=_0x156a78&&isNodeSecret(_0x156a78)?_0x156a78:undefined,_0x339545=_0x2af11f?.[_0x4e346c(0x1b0,'\x48\x26\x66\x41')]?.(_0x4e346c(0x165,'\x51\x53\x79\x54')+_0x4e346c(0x110,'\x65\x40\x33\x55')+'\x63\x65'),_0x5c6710=parseNodeSecretVersion(_0x2af11f?.[_0x4e346c(0x129,'\x63\x52\x44\x76')]?.(_0x4e346c(0x181,'\x6e\x44\x59\x24')+_0x4e346c(0x1e0,'\x64\x47\x4d\x59')+_0x4e346c(0x1bd,'\x37\x6b\x32\x4e')));if(_0x339545===_0x4e346c(0xd1,'\x6a\x70\x55\x4f')+'\x74\x65'&&_0x53987e){if(_0x4e346c(0xa1,'\x4e\x71\x35\x6c')!==_0x4e346c(0x172,'\x35\x6a\x41\x49')){if(!this[_0x4e346c(0x170,'\x54\x75\x23\x4b')][_0x4e346c(0xcd,'\x26\x52\x26\x31')+_0x4e346c(0xc2,'\x53\x35\x44\x5a')])return null;try{return _0x1b7fd2({'\x64\x69\x72':this[_0x4e346c(0xdc,'\x64\x47\x4d\x59')][_0x4e346c(0xd0,'\x54\x75\x23\x4b')],'\x73\x74\x6f\x72\x65':this['\x6f\x70\x74\x73'][_0x4e346c(0xe4,'\x37\x43\x46\x5a')+_0x4e346c(0xc3,'\x6a\x70\x55\x4f')],'\x65\x6e\x76':this[_0x4e346c(0x114,'\x58\x74\x37\x4d')][_0x4e346c(0x201,'\x36\x5d\x4e\x35')]??_0x456454.env,'\x6e\x6f\x77':this[_0x4e346c(0xdb,'\x65\x40\x33\x55')],...this[_0x4e346c(0x10c,'\x26\x52\x26\x31')][_0x4e346c(0x204,'\x54\x75\x72\x6c')+'\x61\x6d\x65\x73\x70\x61\x63\x65']?{'\x72\x75\x6e\x74\x69\x6d\x65\x4e\x61\x6d\x65\x73\x70\x61\x63\x65':this[_0x4e346c(0x1c8,'\x29\x5a\x2a\x61')][_0x4e346c(0x16d,'\x72\x67\x2a\x6a')+_0x4e346c(0x156,'\x37\x43\x46\x5a')]}:{},...this[_0x4e346c(0xdc,'\x64\x47\x4d\x59')][_0x4e346c(0xc9,'\x29\x5a\x2a\x61')+_0x4e346c(0xe3,'\x53\x35\x44\x5a')]?{'\x73\x6f\x75\x72\x63\x65\x41\x67\x65\x6e\x74':this['\x6f\x70\x74\x73'][_0x4e346c(0x141,'\x73\x7a\x68\x34')+_0x4e346c(0x212,'\x41\x70\x41\x4f')]}:{},...this[_0x4e346c(0xbd,'\x53\x79\x57\x33')]['\x74\x61\x72\x67\x65\x74\x41\x67'+_0x4e346c(0x138,'\x53\x79\x57\x33')]?{'\x74\x61\x72\x67\x65\x74\x41\x67\x65\x6e\x74':this['\x6f\x70\x74\x73'][_0x4e346c(0xe5,'\x30\x5a\x77\x4f')+_0x4e346c(0x216,'\x38\x75\x53\x77')]}:{}});}catch(_0x205b10){return!this[_0x4e346c(0x16b,'\x21\x61\x35\x74')+_0x4e346c(0x146,'\x2a\x5b\x7a\x29')]&&(this[_0x4e346c(0x1d6,'\x2a\x5b\x7a\x29')+_0x4e346c(0x120,'\x54\x59\x72\x38')]=!![],this[_0x4e346c(0xef,'\x30\x73\x52\x69')][_0x4e346c(0xa4,'\x34\x71\x65\x41')]?.(_0x1301df[_0x4e346c(0x15f,'\x53\x35\x44\x5a')+'\x79']({'\x65\x76\x65\x6e\x74':_0x4e346c(0xfa,'\x38\x75\x53\x77')+_0x4e346c(0x19a,'\x54\x59\x72\x38')+_0x4e346c(0xf4,'\x5d\x7a\x61\x56')+'\x64','\x65\x72\x72\x6f\x72':_0x205b10 instanceof _0x3d442b?_0x205b10[_0x4e346c(0x1b2,'\x4e\x73\x59\x62')]:_0x508c6f(_0x205b10)}))),null;}}else return{'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74':_0x53987e,'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74\x56\x65\x72\x73\x69\x6f\x6e':_0x31eb93??_0x5c6710};}if(_0x1fbc1b)return{'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74':_0x1fbc1b,'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74\x56\x65\x72\x73\x69\x6f\x6e':_0x31eb93??_0x5c8af4??(_0x1fbc1b===_0x53987e?_0x5c6710:undefined)};if(_0x53987e)return{'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74':_0x53987e,'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74\x56\x65\x72\x73\x69\x6f\x6e':_0x31eb93??_0x5c6710};const _0x148e9a=evomapHome(_0x5de818),_0x33361a=readTrimmedFile(join(_0x148e9a,_0x4e346c(0xd6,'\x64\x36\x58\x57')+_0x4e346c(0x187,'\x64\x47\x4d\x59')));if(!_0x33361a||!isNodeSecret(_0x33361a))return{..._0x31eb93!==undefined?{'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74\x56\x65\x72\x73\x69\x6f\x6e':_0x31eb93}:{}};const _0x47d488=parseNodeSecretVersion(readTrimmedFile(join(_0x148e9a,'\x6e\x6f\x64\x65\x5f\x73\x65\x63'+_0x4e346c(0xc7,'\x4c\x70\x37\x50')+_0x4e346c(0x213,'\x51\x53\x79\x54'))));return{'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74':_0x33361a,'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74\x56\x65\x72\x73\x69\x6f\x6e':_0x31eb93??_0x47d488};}export function resolveTraceNodeSecretVersion(_0xf0fe2f=process.env,_0x5628f9,_0x340fe2){const _0x8a9534=_0x4f97;return resolveTraceNodeSecretMaterial(_0xf0fe2f,_0x5628f9,_0x340fe2)[_0x8a9534(0x1bc,'\x53\x79\x57\x33')+_0x8a9534(0x161,'\x6e\x44\x59\x24')+'\x6e'];}function metadataOnlyTraceRecord(_0x2fbb4c){const _0x8e2d21=_0x4f97,{requestBody:_0x172233,responseBody:_0x11c2cd,request_headers:_0x180cec,response_headers:_0x5ce3d6,transport_metadata:_0x19fa55,attempts:_0x7f72cb,..._0x23505b}=_0x2fbb4c,_0x15c4f6=_0x7f72cb?.[_0x8e2d21(0xff,'\x64\x36\x58\x57')](_0x2360cc=>{const {requestBody:_0x4b875b,responseBody:_0x407990,..._0x1f5f33}=_0x2360cc;return{..._0x1f5f33,'\x62\x6f\x64\x79\x5f\x74\x72\x75\x6e\x63\x61\x74\x65\x64':!![]};});return{..._0x23505b,'\x62\x6f\x64\x79\x5f\x74\x72\x75\x6e\x63\x61\x74\x65\x64':!![],..._0x15c4f6&&_0x15c4f6['\x6c\x65\x6e\x67\x74\x68']>-0x422+-0x1b*0x8+0x7*0xb6?{'\x61\x74\x74\x65\x6d\x70\x74\x73':_0x15c4f6}:{}};}export class JsonlTraceSink{[_0x12d6ca(0x152,'\x72\x67\x2a\x6a')];[_0x12d6ca(0x175,'\x61\x38\x53\x43')];[_0x12d6ca(0x166,'\x61\x38\x53\x43')];[_0x12d6ca(0x20c,'\x34\x71\x65\x41')];['\x77\x61\x72\x6e\x65\x64']=![];[_0x12d6ca(0x169,'\x5d\x7a\x61\x56')+_0x12d6ca(0x15d,'\x6b\x4e\x4d\x56')]=![];[_0x12d6ca(0x10a,'\x6a\x70\x55\x4f')+_0x12d6ca(0x210,'\x2a\x5b\x7a\x29')]=![];['\x70\x6c\x61\x69\x6e\x74\x65\x78'+_0x12d6ca(0x198,'\x26\x43\x48\x65')]=![];['\x6d\x61\x69\x6c\x62\x6f\x78\x57'+_0x12d6ca(0x1cb,'\x4c\x70\x37\x50')]=![];[_0x12d6ca(0xd7,'\x53\x35\x44\x5a')+'\x79']=null;[_0x12d6ca(0xc4,'\x4e\x71\x35\x6c')+_0x12d6ca(0x1ff,'\x29\x5a\x2a\x61')]=new Set();[_0x12d6ca(0x1f3,'\x5d\x7a\x61\x56')]=Promise[_0x12d6ca(0x190,'\x26\x52\x26\x31')]();constructor(_0x3c1613){const _0x4f7b83=_0x12d6ca;this['\x6f\x70\x74\x73']=_0x3c1613,this[_0x4f7b83(0xd8,'\x37\x43\x46\x5a')]=_0x3c1613[_0x4f7b83(0x1ce,'\x40\x6f\x75\x23')]??(()=>Date[_0x4f7b83(0x140,'\x2a\x50\x56\x65')]()),this[_0x4f7b83(0x149,'\x51\x53\x79\x54')]=_0x3c1613[_0x4f7b83(0xc6,'\x65\x40\x33\x55')+_0x4f7b83(0x1e6,'\x21\x61\x35\x74')]??DEFAULT_TRACE_FILE_CAP_BYTES,this[_0x4f7b83(0x126,'\x64\x36\x58\x57')]=_0x3c1613[_0x4f7b83(0xfb,'\x5b\x65\x44\x48')]??console;try{mkdirSync(_0x3c1613[_0x4f7b83(0x1d1,'\x66\x4c\x5a\x2a')],{'\x72\x65\x63\x75\x72\x73\x69\x76\x65':!![]});}catch{}this[_0x4f7b83(0x1af,'\x6e\x48\x48\x71')+_0x4f7b83(0x1f8,'\x58\x74\x37\x4d')+'\x54\x72\x61\x63\x65\x55\x70\x6c'+_0x4f7b83(0x11c,'\x2a\x50\x56\x65')]();}[_0x12d6ca(0xa2,'\x54\x75\x72\x6c')](){const _0x3c9fdd=_0x12d6ca;return join(this[_0x3c9fdd(0xcb,'\x36\x5d\x4e\x35')][_0x3c9fdd(0xaf,'\x40\x6f\x75\x23')],_0x3c9fdd(0xb9,'\x36\x5d\x4e\x35')+'\x65\x2d'+dayStamp(this[_0x3c9fdd(0xfe,'\x4c\x70\x37\x50')]())+_0x3c9fdd(0x13a,'\x63\x52\x44\x76'));}[_0x12d6ca(0x1fe,'\x30\x5a\x77\x4f')](){const _0x36a7f7=_0x12d6ca;return this[_0x36a7f7(0x1e8,'\x64\x36\x58\x57')];}[_0x12d6ca(0x14c,'\x5b\x65\x44\x48')]=_0x1885b8=>{const _0x34d5c1=_0x12d6ca;try{if(_0x34d5c1(0x171,'\x34\x71\x65\x41')!==_0x34d5c1(0x111,'\x54\x75\x23\x4b'))return!this[_0x34d5c1(0xe0,'\x66\x4c\x5a\x2a')+'\x61\x72\x6e\x65\x64']&&(this[_0x34d5c1(0x1d6,'\x2a\x5b\x7a\x29')+_0x34d5c1(0x15b,'\x36\x5d\x4e\x35')]=!![],this[_0x34d5c1(0x196,'\x53\x35\x44\x5a')][_0x34d5c1(0x1b4,'\x71\x49\x23\x59')]?.(_0x406af2[_0x34d5c1(0xb5,'\x45\x52\x66\x5a')+'\x79']({'\x65\x76\x65\x6e\x74':_0x34d5c1(0xa3,'\x54\x75\x72\x6c')+_0x34d5c1(0xf8,'\x53\x35\x44\x5a')+'\x6c\x6c\x5f\x66\x61\x69\x6c\x65'+'\x64','\x65\x72\x72\x6f\x72':_0x2928d6 instanceof _0x5e4524?_0x5b6fd8[_0x34d5c1(0x188,'\x21\x61\x35\x74')]:_0x2b7f41(_0x3a7e40)}))),null;else{const _0x473953=this[_0x34d5c1(0x162,'\x30\x5a\x77\x4f')][_0x34d5c1(0x19c,'\x6e\x48\x48\x71')]??process.env;if(!traceCollectionEnabled(_0x473953,this[_0x34d5c1(0x1e1,'\x73\x7a\x68\x34')][_0x34d5c1(0x19e,'\x30\x5a\x77\x4f')+_0x34d5c1(0x130,'\x41\x70\x41\x4f')]))return;const _0x33c674=dayStamp(this[_0x34d5c1(0x151,'\x64\x47\x4d\x59')]());if(this['\x63\x61\x70\x70\x65\x64\x44\x61'+'\x79']===_0x33c674)return;const _0x3a3f37=this[_0x34d5c1(0x10b,'\x4a\x42\x39\x45')]();try{if(statSync(_0x3a3f37)['\x73\x69\x7a\x65']>=this[_0x34d5c1(0xb1,'\x7a\x26\x4c\x39')]){this[_0x34d5c1(0x183,'\x26\x52\x26\x31')+'\x79']=_0x33c674,this[_0x34d5c1(0xe2,'\x4e\x73\x59\x62')][_0x34d5c1(0x1a9,'\x65\x29\x28\x64')]?.(JSON[_0x34d5c1(0x1f2,'\x66\x4c\x5a\x2a')+'\x79']({'\x65\x76\x65\x6e\x74':_0x34d5c1(0x1de,'\x5b\x65\x44\x48')+_0x34d5c1(0x207,'\x54\x75\x23\x4b'),'\x66\x69\x6c\x65':_0x3a3f37,'\x63\x61\x70\x5f\x62\x79\x74\x65\x73':this['\x63\x61\x70']}));return;}}catch{}const _0x3baee6=traceProfileAnalysisEnabled(_0x473953,this[_0x34d5c1(0x152,'\x72\x67\x2a\x6a')][_0x34d5c1(0x1fb,'\x54\x75\x72\x6c')+'\x74\x6f\x72\x65']),_0x259129=resolveTraceNodeSecretMaterial(_0x473953,this[_0x34d5c1(0x170,'\x54\x75\x23\x4b')][_0x34d5c1(0xfd,'\x40\x6f\x75\x23')+_0x34d5c1(0x17a,'\x71\x49\x23\x59')],this[_0x34d5c1(0x1a5,'\x64\x36\x58\x57')][_0x34d5c1(0x1fd,'\x26\x52\x26\x31')+_0x34d5c1(0x1a0,'\x41\x70\x41\x4f')+'\x6e']),_0x5e5e00=materializeTraceForStorage(_0x1885b8,_0x473953,{'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74\x56\x65\x72\x73\x69\x6f\x6e':_0x259129[_0x34d5c1(0x1fd,'\x26\x52\x26\x31')+_0x34d5c1(0x209,'\x30\x5a\x77\x4f')+'\x6e'],'\x6e\x6f\x64\x65\x53\x65\x63\x72\x65\x74':_0x259129[_0x34d5c1(0x218,'\x5d\x7a\x61\x56')+'\x65\x74'],'\x68\x75\x62\x50\x75\x62\x6c\x69\x63\x4b\x65\x79':traceHubPublicKey(_0x473953,this[_0x34d5c1(0x108,'\x38\x75\x53\x77')][_0x34d5c1(0x128,'\x6e\x44\x59\x24')+_0x34d5c1(0xa0,'\x48\x26\x66\x41')]),'\x70\x72\x6f\x66\x69\x6c\x65\x41\x6e\x61\x6c\x79\x73\x69\x73\x45\x6e\x61\x62\x6c\x65\x64':_0x3baee6,'\x70\x72\x6f\x64\x75\x63\x65\x72\x47\x65\x6e\x65\x72\x61\x74\x69\x6f\x6e':'\x76\x32','\x70\x72\x6f\x64\x75\x63\x65\x72\x56\x65\x72\x73\x69\x6f\x6e':this['\x6f\x70\x74\x73'][_0x34d5c1(0x9c,'\x4e\x73\x59\x62')+_0x34d5c1(0x168,'\x4a\x42\x39\x45')],'\x70\x72\x6f\x64\x75\x63\x65\x72\x43\x6f\x6d\x70\x6f\x6e\x65\x6e\x74':_0x34d5c1(0x18f,'\x54\x75\x23\x4b')});let _0x456f0c;if(_0x5e5e00['\x6f\x6b']){if(_0x34d5c1(0x176,'\x4e\x71\x35\x6c')===_0x34d5c1(0x219,'\x4e\x71\x35\x6c'))return _0x261825(this[_0x34d5c1(0xd5,'\x4c\x70\x37\x50')][_0x34d5c1(0x1d7,'\x54\x75\x72\x6c')],_0x34d5c1(0xb8,'\x65\x29\x28\x64')+'\x65\x2d'+_0x34a062(this[_0x34d5c1(0xfe,'\x4c\x70\x37\x50')]())+_0x34d5c1(0x211,'\x64\x36\x58\x57'));else _0x456f0c=_0x5e5e00[_0x34d5c1(0x12f,'\x38\x75\x53\x77')],this[_0x34d5c1(0x144,'\x7a\x26\x4c\x39')+_0x34d5c1(0x100,'\x34\x71\x65\x41')+_0x34d5c1(0x139,'\x63\x52\x44\x76')](_0x5e5e00['\x72\x65\x63\x6f\x72\x64']);}else{if(traceEncryptionExplicitlyDisabled(_0x473953))!this['\x70\x6c\x61\x69\x6e\x74\x65\x78'+_0x34d5c1(0xe9,'\x6e\x44\x59\x24')]&&(this[_0x34d5c1(0xcc,'\x54\x75\x72\x6c')+'\x74\x57\x61\x72\x6e\x65\x64']=!![],this[_0x34d5c1(0x148,'\x65\x40\x33\x55')][_0x34d5c1(0x195,'\x63\x52\x44\x76')]?.(JSON[_0x34d5c1(0x18e,'\x4c\x70\x37\x50')+'\x79']({'\x65\x76\x65\x6e\x74':_0x34d5c1(0x1a7,'\x40\x6f\x75\x23')+_0x34d5c1(0x1f7,'\x7a\x26\x4c\x39')+_0x34d5c1(0x1d8,'\x36\x5d\x4e\x35')+'\x65\x73','\x72\x65\x61\x73\x6f\x6e':'\x74\x72\x61\x63\x65\x5f\x65\x6e'+_0x34d5c1(0x14a,'\x6b\x4e\x4d\x56')+'\x5f\x64\x69\x73\x61\x62\x6c\x65'+'\x64'}))),_0x456f0c=_0x1885b8;else{if(_0x34d5c1(0x159,'\x40\x6f\x75\x23')===_0x34d5c1(0x1f1,'\x51\x53\x79\x54')){!this[_0x34d5c1(0x1b5,'\x30\x73\x52\x69')+_0x34d5c1(0x1dc,'\x34\x71\x65\x41')]&&(this[_0x34d5c1(0x15a,'\x4b\x71\x77\x72')+_0x34d5c1(0x121,'\x36\x5d\x4e\x35')]=!![],this[_0x34d5c1(0xc5,'\x2a\x5b\x7a\x29')][_0x34d5c1(0x1d4,'\x4e\x71\x35\x6c')]?.(JSON[_0x34d5c1(0x1ac,'\x29\x5a\x2a\x61')+'\x79']({'\x65\x76\x65\x6e\x74':_0x34d5c1(0x18d,'\x48\x26\x66\x41')+_0x34d5c1(0x1c3,'\x38\x45\x24\x57')+_0x34d5c1(0x185,'\x40\x6f\x75\x23')+_0x34d5c1(0x179,'\x53\x35\x44\x5a'),'\x72\x65\x61\x73\x6f\x6e':_0x5e5e00[_0x34d5c1(0x197,'\x5d\x7a\x61\x56')]})));if(!metadataOnlyFallbackAllowed(_0x473953,_0x3baee6))return;_0x456f0c=metadataOnlyTraceRecord(_0x1885b8);}else this[_0x34d5c1(0x208,'\x34\x71\x65\x41')+_0x34d5c1(0x15b,'\x36\x5d\x4e\x35')]=!![],this[_0x34d5c1(0x12b,'\x54\x75\x23\x4b')][_0x34d5c1(0x131,'\x66\x42\x5b\x5d')]?.(_0x58f5c3[_0x34d5c1(0xe8,'\x7a\x26\x4c\x39')+'\x79']({'\x65\x76\x65\x6e\x74':_0x34d5c1(0x127,'\x29\x5a\x2a\x61')+_0x34d5c1(0x199,'\x30\x5a\x77\x4f')+_0x34d5c1(0x1ad,'\x2a\x50\x56\x65'),'\x65\x72\x72\x6f\x72':_0x3fde3f instanceof _0x88597?_0x2a1d8a[_0x34d5c1(0x1c5,'\x29\x5a\x2a\x61')]:_0x301da2(_0x22f1fc)}));}}const _0xc6bfbb=JSON['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79'](_0x456f0c)+'\x0a';this[_0x34d5c1(0x12e,'\x51\x53\x79\x54')]=this['\x74\x61\x69\x6c'][_0x34d5c1(0x145,'\x21\x61\x35\x74')](async()=>{const _0x1881a7=_0x34d5c1;if(!this[_0x1881a7(0x1ba,'\x73\x7a\x68\x34')+'\x69\x6c\x65\x73'][_0x1881a7(0x186,'\x2a\x50\x56\x65')](_0x3a3f37))try{if(_0x1881a7(0x13c,'\x34\x71\x65\x41')===_0x1881a7(0x20f,'\x58\x74\x37\x4d')){this[_0x1881a7(0x1c0,'\x26\x43\x48\x65')]=_0x77dc20,this[_0x1881a7(0x1cf,'\x64\x36\x58\x57')]=_0x1be33c[_0x1881a7(0x203,'\x38\x45\x24\x57')]??(()=>_0xb2fadf[_0x1881a7(0x1f6,'\x66\x4c\x5a\x2a')]()),this[_0x1881a7(0x191,'\x34\x71\x65\x41')]=_0x527614[_0x1881a7(0x106,'\x5b\x65\x44\x48')+'\x79\x74\x65\x73']??_0x41487e,this[_0x1881a7(0xc5,'\x2a\x5b\x7a\x29')]=_0x3f4209['\x6c\x6f\x67\x67\x65\x72']??_0x246e61;try{_0x39cb9a(_0xd6471a[_0x1881a7(0x1db,'\x45\x52\x66\x5a')],{'\x72\x65\x63\x75\x72\x73\x69\x76\x65':!![]});}catch{}this[_0x1881a7(0xec,'\x64\x47\x4d\x59')+_0x1881a7(0x19f,'\x64\x47\x4d\x59')+_0x1881a7(0xf6,'\x34\x71\x65\x41')+_0x1881a7(0x1f4,'\x38\x45\x24\x57')]();}else statSync(_0x3a3f37),await this[_0x1881a7(0x1ef,'\x72\x67\x2a\x6a')+_0x1881a7(0xe1,'\x29\x5a\x2a\x61')](_0x3a3f37);}catch{}await appendFile(_0x3a3f37,_0xc6bfbb,{'\x65\x6e\x63\x6f\x64\x69\x6e\x67':_0x1881a7(0xf7,'\x66\x4c\x5a\x2a'),'\x6d\x6f\x64\x65':0x180}),await this[_0x1881a7(0x184,'\x64\x47\x4d\x59')+_0x1881a7(0x167,'\x4b\x71\x77\x72')](_0x3a3f37);})[_0x34d5c1(0x1d5,'\x2a\x5b\x7a\x29')](_0x5b4f87=>{const _0x3b9d79=_0x34d5c1;if('\x49\x63\x78\x76\x56'==='\x49\x63\x78\x76\x56')!this[_0x3b9d79(0x12c,'\x5b\x65\x44\x48')]&&(this[_0x3b9d79(0xf0,'\x73\x7a\x68\x34')]=!![],this[_0x3b9d79(0xc5,'\x2a\x5b\x7a\x29')][_0x3b9d79(0x10f,'\x4d\x4b\x5e\x56')]?.(JSON[_0x3b9d79(0x9e,'\x6b\x4e\x4d\x56')+'\x79']({'\x65\x76\x65\x6e\x74':_0x3b9d79(0x1be,'\x2a\x50\x56\x65')+_0x3b9d79(0x182,'\x4b\x71\x77\x72')+_0x3b9d79(0x17d,'\x26\x43\x48\x65'),'\x65\x72\x72\x6f\x72':_0x5b4f87 instanceof Error?_0x5b4f87[_0x3b9d79(0x150,'\x6e\x48\x48\x71')]:String(_0x5b4f87)})));else{const {requestBody:_0x515b57,responseBody:_0x3cef2e,request_headers:_0x357e72,response_headers:_0x471e85,transport_metadata:_0x3e495f,attempts:_0x262b2a,..._0x211220}=_0x45dc28,_0xe6f7b0=_0x262b2a?.[_0x3b9d79(0xc1,'\x54\x75\x72\x6c')](_0x45a332=>{const {requestBody:_0xf672b0,responseBody:_0x2b301d,..._0x5e9f4e}=_0x45a332;return{..._0x5e9f4e,'\x62\x6f\x64\x79\x5f\x74\x72\x75\x6e\x63\x61\x74\x65\x64':!![]};});return{..._0x211220,'\x62\x6f\x64\x79\x5f\x74\x72\x75\x6e\x63\x61\x74\x65\x64':!![],..._0xe6f7b0&&_0xe6f7b0[_0x3b9d79(0x154,'\x54\x59\x72\x38')]>-0x2684+-0x684+0x58*0x83?{'\x61\x74\x74\x65\x6d\x70\x74\x73':_0xe6f7b0}:{}};}});}}catch(_0x10397e){_0x34d5c1(0x11d,'\x64\x36\x58\x57')===_0x34d5c1(0x1ed,'\x30\x73\x52\x69')?!this['\x77\x61\x72\x6e\x65\x64']&&(this[_0x34d5c1(0x11b,'\x53\x79\x57\x33')]=!![],this[_0x34d5c1(0x20b,'\x5b\x65\x44\x48')][_0x34d5c1(0xb2,'\x65\x40\x33\x55')]?.(JSON[_0x34d5c1(0x180,'\x66\x42\x5b\x5d')+'\x79']({'\x65\x76\x65\x6e\x74':_0x34d5c1(0x12a,'\x4a\x42\x39\x45')+_0x34d5c1(0x20d,'\x2a\x5b\x7a\x29')+'\x66\x61\x69\x6c\x65\x64','\x65\x72\x72\x6f\x72':_0x10397e instanceof Error?_0x10397e['\x6d\x65\x73\x73\x61\x67\x65']:String(_0x10397e)}))):!this[_0x34d5c1(0xde,'\x54\x75\x23\x4b')]&&(this[_0x34d5c1(0x12d,'\x71\x49\x23\x59')]=!![],this['\x6c\x6f\x67'][_0x34d5c1(0x195,'\x63\x52\x44\x76')]?.(_0x343b78['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79']({'\x65\x76\x65\x6e\x74':_0x34d5c1(0x1a8,'\x30\x73\x52\x69')+_0x34d5c1(0x1a1,'\x51\x53\x79\x54')+_0x34d5c1(0x17e,'\x29\x5a\x2a\x61'),'\x65\x72\x72\x6f\x72':_0x2ce5d9 instanceof _0xf07b2c?_0x22007f[_0x34d5c1(0x17c,'\x4e\x71\x35\x6c')]:_0x4a501c(_0xb7dff8)})));}};async[_0x12d6ca(0x1cc,'\x30\x5a\x77\x4f')+'\x61\x63\x65\x46\x69\x6c\x65'](_0x123f7d){const _0x4c1573=_0x12d6ca;if(this['\x73\x65\x63\x75\x72\x65\x64\x46'+_0x4c1573(0x1c6,'\x4d\x4b\x5e\x56')][_0x4c1573(0xbb,'\x72\x67\x2a\x6a')](_0x123f7d))return!![];try{if(_0x4c1573(0x16a,'\x54\x75\x23\x4b')!==_0x4c1573(0x1e4,'\x48\x26\x66\x41'))_0x395da9(_0x33cf67[_0x4c1573(0xb7,'\x4c\x70\x37\x50')],{'\x72\x65\x63\x75\x72\x73\x69\x76\x65':!![]});else return await chmod(_0x123f7d,0x20db+0x7d9*0x2+-0x2f0d),this[_0x4c1573(0x124,'\x30\x73\x52\x69')+_0x4c1573(0x136,'\x38\x75\x53\x77')][_0x4c1573(0x1e9,'\x45\x52\x66\x5a')](_0x123f7d),!![];}catch(_0x619303){if(!this[_0x4c1573(0x9d,'\x54\x75\x23\x4b')+_0x4c1573(0xeb,'\x38\x45\x24\x57')]){if(_0x4c1573(0x193,'\x4e\x71\x35\x6c')!==_0x4c1573(0x137,'\x38\x45\x24\x57'))return _0x3de264(_0x461967,_0x346ac3,_0x5894d6)[_0x4c1573(0x1ca,'\x54\x75\x23\x4b')+_0x4c1573(0xcf,'\x61\x38\x53\x43')+'\x6e'];else this[_0x4c1573(0x117,'\x4e\x73\x59\x62')+_0x4c1573(0x1ee,'\x30\x5a\x77\x4f')]=!![],this['\x6c\x6f\x67'][_0x4c1573(0x178,'\x26\x52\x26\x31')]?.(JSON[_0x4c1573(0x180,'\x66\x42\x5b\x5d')+'\x79']({'\x65\x76\x65\x6e\x74':_0x4c1573(0x12a,'\x4a\x42\x39\x45')+_0x4c1573(0x173,'\x54\x75\x23\x4b')+'\x66\x61\x69\x6c\x65\x64','\x65\x72\x72\x6f\x72':_0x619303 instanceof Error?_0x619303[_0x4c1573(0xf1,'\x51\x53\x79\x54')]:String(_0x619303)}));}return![];}}[_0x12d6ca(0x10e,'\x37\x43\x46\x5a')+_0x12d6ca(0xb0,'\x4b\x71\x77\x72')+_0x12d6ca(0x192,'\x65\x40\x33\x55')](_0x21cba2){const _0xb59142=_0x12d6ca;if(!this[_0xb59142(0x163,'\x5b\x65\x44\x48')]['\x6d\x61\x69\x6c\x62\x6f\x78\x53'+_0xb59142(0x133,'\x65\x29\x28\x64')]||!isHubDecryptableTraceEnvelope(_0x21cba2))return;try{enqueueTraceEnvelope(this[_0xb59142(0x152,'\x72\x67\x2a\x6a')][_0xb59142(0x1ea,'\x53\x35\x44\x5a')+_0xb59142(0xab,'\x26\x52\x26\x31')],_0x21cba2,{'\x6e\x6f\x77':this[_0xb59142(0x175,'\x61\x38\x53\x43')](),'\x65\x6e\x76':this[_0xb59142(0xce,'\x4a\x42\x39\x45')][_0xb59142(0x1ae,'\x7a\x26\x4c\x39')]??process.env,...this[_0xb59142(0x1b1,'\x51\x53\x79\x54')][_0xb59142(0x14d,'\x61\x38\x53\x43')+_0xb59142(0xaa,'\x53\x35\x44\x5a')]?{'\x72\x75\x6e\x74\x69\x6d\x65\x4e\x61\x6d\x65\x73\x70\x61\x63\x65':this['\x6f\x70\x74\x73'][_0xb59142(0xf5,'\x4a\x42\x39\x45')+_0xb59142(0x20a,'\x54\x75\x23\x4b')]}:{},...this[_0xb59142(0x18a,'\x6e\x44\x59\x24')][_0xb59142(0x1e2,'\x66\x4c\x5a\x2a')+_0xb59142(0xc0,'\x36\x5d\x4e\x35')]?{'\x73\x6f\x75\x72\x63\x65\x41\x67\x65\x6e\x74':this[_0xb59142(0x1e5,'\x61\x38\x53\x43')][_0xb59142(0x134,'\x6e\x48\x48\x71')+_0xb59142(0x1b6,'\x7a\x26\x4c\x39')]}:{},...this[_0xb59142(0x1a5,'\x64\x36\x58\x57')][_0xb59142(0xe5,'\x30\x5a\x77\x4f')+_0xb59142(0x135,'\x4e\x73\x59\x62')]?{'\x74\x61\x72\x67\x65\x74\x41\x67\x65\x6e\x74':this[_0xb59142(0x17b,'\x21\x61\x35\x74')][_0xb59142(0x19d,'\x48\x26\x66\x41')+_0xb59142(0x13b,'\x37\x43\x46\x5a')]}:{}});}catch(_0x1566ea){!this[_0xb59142(0x14b,'\x6e\x48\x48\x71')+_0xb59142(0xad,'\x7a\x26\x4c\x39')]&&(this['\x6d\x61\x69\x6c\x62\x6f\x78\x57'+_0xb59142(0x142,'\x72\x67\x2a\x6a')]=!![],this['\x6c\x6f\x67'][_0xb59142(0x147,'\x6a\x70\x55\x4f')]?.(JSON[_0xb59142(0x1dd,'\x6e\x44\x59\x24')+'\x79']({'\x65\x76\x65\x6e\x74':_0xb59142(0xbe,'\x37\x6b\x32\x4e')+_0xb59142(0x153,'\x54\x75\x72\x6c')+_0xb59142(0x1ab,'\x36\x5d\x4e\x35'),'\x65\x72\x72\x6f\x72':_0x1566ea instanceof Error?_0x1566ea[_0xb59142(0xd2,'\x7a\x26\x4c\x39')]:String(_0x1566ea)})));}}[_0x12d6ca(0x19b,'\x45\x52\x66\x5a')+_0x12d6ca(0xee,'\x6e\x48\x48\x71')+_0x12d6ca(0x1c1,'\x38\x45\x24\x57')+_0x12d6ca(0xf3,'\x30\x5a\x77\x4f')](){const _0x2e5938=_0x12d6ca;if(!this[_0x2e5938(0x14f,'\x45\x52\x66\x5a')][_0x2e5938(0xcd,'\x26\x52\x26\x31')+_0x2e5938(0x1d2,'\x45\x52\x66\x5a')])return null;try{return backfillProxyTraceUploads({'\x64\x69\x72':this[_0x2e5938(0x1f5,'\x4e\x71\x35\x6c')][_0x2e5938(0x143,'\x72\x67\x2a\x6a')],'\x73\x74\x6f\x72\x65':this['\x6f\x70\x74\x73'][_0x2e5938(0x11a,'\x72\x67\x2a\x6a')+_0x2e5938(0xa9,'\x54\x59\x72\x38')],'\x65\x6e\x76':this['\x6f\x70\x74\x73'][_0x2e5938(0x125,'\x66\x4c\x5a\x2a')]??process.env,'\x6e\x6f\x77':this[_0x2e5938(0x15e,'\x4e\x71\x35\x6c')],...this[_0x2e5938(0x14f,'\x45\x52\x66\x5a')][_0x2e5938(0x204,'\x54\x75\x72\x6c')+_0x2e5938(0xc8,'\x4c\x70\x37\x50')]?{'\x72\x75\x6e\x74\x69\x6d\x65\x4e\x61\x6d\x65\x73\x70\x61\x63\x65':this['\x6f\x70\x74\x73'][_0x2e5938(0x1f0,'\x21\x61\x35\x74')+_0x2e5938(0xa6,'\x2a\x5b\x7a\x29')]}:{},...this[_0x2e5938(0x1e7,'\x2a\x5b\x7a\x29')][_0x2e5938(0x123,'\x53\x79\x57\x33')+_0x2e5938(0x177,'\x45\x52\x66\x5a')]?{'\x73\x6f\x75\x72\x63\x65\x41\x67\x65\x6e\x74':this[_0x2e5938(0xbc,'\x6b\x4e\x4d\x56')][_0x2e5938(0x105,'\x35\x6a\x41\x49')+_0x2e5938(0x15c,'\x26\x52\x26\x31')]}:{},...this[_0x2e5938(0xcb,'\x36\x5d\x4e\x35')][_0x2e5938(0x18b,'\x38\x45\x24\x57')+_0x2e5938(0xe3,'\x53\x35\x44\x5a')]?{'\x74\x61\x72\x67\x65\x74\x41\x67\x65\x6e\x74':this[_0x2e5938(0x1da,'\x53\x35\x44\x5a')][_0x2e5938(0x113,'\x7a\x26\x4c\x39')+_0x2e5938(0x1eb,'\x58\x74\x37\x4d')]}:{}});}catch(_0x23897b){if(_0x2e5938(0x1fc,'\x35\x6a\x41\x49')===_0x2e5938(0x189,'\x6b\x4e\x4d\x56'))this[_0x2e5938(0xfc,'\x4d\x4b\x5e\x56')+_0x2e5938(0x119,'\x4a\x42\x39\x45')]=!![],this[_0x2e5938(0xa8,'\x35\x6a\x41\x49')]['\x77\x61\x72\x6e']?.(_0x179c0d[_0x2e5938(0x14e,'\x6a\x70\x55\x4f')+'\x79']({'\x65\x76\x65\x6e\x74':_0x2e5938(0x104,'\x26\x43\x48\x65')+_0x2e5938(0xe7,'\x48\x26\x66\x41')+_0x2e5938(0xf2,'\x37\x6b\x32\x4e')+'\x65\x73','\x72\x65\x61\x73\x6f\x6e':_0x2e5938(0x214,'\x34\x71\x65\x41')+'\x63\x72\x79\x70\x74\x69\x6f\x6e'+_0x2e5938(0x215,'\x34\x71\x65\x41')+'\x64'}));else return!this[_0x2e5938(0xa5,'\x65\x29\x28\x64')+_0x2e5938(0x1b9,'\x73\x7a\x68\x34')]&&(this[_0x2e5938(0x194,'\x4e\x71\x35\x6c')+_0x2e5938(0x1bf,'\x37\x6b\x32\x4e')]=!![],this['\x6c\x6f\x67']['\x77\x61\x72\x6e']?.(JSON[_0x2e5938(0x17f,'\x72\x67\x2a\x6a')+'\x79']({'\x65\x76\x65\x6e\x74':_0x2e5938(0x18c,'\x36\x5d\x4e\x35')+_0x2e5938(0xed,'\x66\x4c\x5a\x2a')+_0x2e5938(0xea,'\x21\x61\x35\x74')+'\x64','\x65\x72\x72\x6f\x72':_0x23897b instanceof Error?_0x23897b[_0x2e5938(0xb6,'\x34\x71\x65\x41')]:String(_0x23897b)}))),null;}}}
@@ -1,27 +1 @@
1
- export const PROXY_TRACE_UPLOAD_SCHEMA = 'prism_trace_row.v1';
2
- function parseNodeSecretVersion(value) {
3
- if (typeof value === 'number' && Number.isInteger(value) && value > 0)
4
- return value;
5
- if (typeof value !== 'string')
6
- return undefined;
7
- const trimmed = value.trim();
8
- if (!/^[1-9]\d*$/.test(trimmed))
9
- return undefined;
10
- const parsed = Number(trimmed);
11
- return Number.isSafeInteger(parsed) ? parsed : undefined;
12
- }
13
- export function buildProxyTraceUploadPayload(record) {
14
- const secretVersion = parseNodeSecretVersion(record.secret_version);
15
- return {
16
- schema: PROXY_TRACE_UPLOAD_SCHEMA,
17
- encrypted: true,
18
- trace: record,
19
- ...(secretVersion !== undefined ? { node_secret_version: secretVersion } : {}),
20
- ...(record.producer_generation ? { producer_generation: record.producer_generation } : {}),
21
- ...(record.producer_version ? { producer_version: record.producer_version } : {}),
22
- ...(record.producer_component ? { producer_component: record.producer_component } : {}),
23
- };
24
- }
25
- export function proxyTraceUploadPayloadSizeBytes(record) {
26
- return Buffer.byteLength(JSON.stringify(buildProxyTraceUploadPayload(record)), 'utf8');
27
- }
1
+ const _0x59d358=_0x4456;(function(_0x485ec8,_0x363aa7){const _0x2277ed=_0x4456,_0x2b6439=_0x485ec8();while(!![]){try{const _0x235bcb=parseInt(_0x2277ed(0x9c,'\x54\x39\x77\x44'))/(-0x18f1+-0x1*-0x1539+0x3b9)*(parseInt(_0x2277ed(0x9f,'\x26\x73\x29\x41'))/(0xa7*-0x7+0xc7+0x3cc))+parseInt(_0x2277ed(0x87,'\x61\x6a\x46\x30'))/(0x177e+0x1d*-0xa3+-0x504)*(-parseInt(_0x2277ed(0xa1,'\x64\x53\x4f\x61'))/(0x206f+0x104b*-0x1+0xac*-0x18))+parseInt(_0x2277ed(0x88,'\x66\x35\x71\x6e'))/(0x1cf0+0x2ac+-0x1f97)+-parseInt(_0x2277ed(0x8a,'\x47\x59\x5e\x64'))/(0x2087+0x3d*0x37+0x684*-0x7)*(parseInt(_0x2277ed(0x8d,'\x70\x71\x4b\x5a'))/(-0x1225+-0x5*0x31d+-0x1*-0x21bd))+parseInt(_0x2277ed(0x97,'\x79\x67\x6f\x68'))/(-0x71*-0x3e+0x1fdc+-0x1*0x3b32)*(-parseInt(_0x2277ed(0x9d,'\x47\x59\x5e\x64'))/(-0x2461+-0x238c+0x47f6))+-parseInt(_0x2277ed(0x83,'\x37\x59\x61\x74'))/(-0xdc2+-0x22be+0x308a)*(parseInt(_0x2277ed(0xa9,'\x46\x57\x59\x6c'))/(0x5ab*-0x2+0x2*-0x5db+0x1717))+parseInt(_0x2277ed(0x8b,'\x21\x32\x42\x6c'))/(0x58*0x4d+0x1938+-0x2*0x19d2);if(_0x235bcb===_0x363aa7)break;else _0x2b6439['push'](_0x2b6439['shift']());}catch(_0x408182){_0x2b6439['push'](_0x2b6439['shift']());}}}(_0x9808,-0x1f*0x8824+0x166fb*0xf+0x744d4));function _0x4456(_0x4cb229,_0x113fd2){_0x4cb229=_0x4cb229-(-0x1dcc+-0x1c99*-0x1+-0x3*-0x92);const _0x499794=_0x9808();let _0x238594=_0x499794[_0x4cb229];if(_0x4456['\x59\x73\x58\x53\x79\x76']===undefined){var _0x34071d=function(_0x4b5edc){const _0x495191='\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 _0x1c8cf4='',_0x153829='';for(let _0x4c5bf2=-0x251*0xb+0xd*0x1d3+0x1c4,_0x192685,_0x159bb0,_0x40412c=0x874*-0x2+0xff+-0x1*-0xfe9;_0x159bb0=_0x4b5edc['\x63\x68\x61\x72\x41\x74'](_0x40412c++);~_0x159bb0&&(_0x192685=_0x4c5bf2%(-0x320*0x1+-0x2*0x565+0x1*0xdee)?_0x192685*(-0xe24+0x22a5+-0x1441)+_0x159bb0:_0x159bb0,_0x4c5bf2++%(-0x399+0xac*-0x2+-0x9*-0x8d))?_0x1c8cf4+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0x1cf3*-0x1+-0x22bb+0x158f*0x3&_0x192685>>(-(-0x29*0xaf+-0x25*-0xa7+-0x1*-0x3e6)*_0x4c5bf2&-0x2301+-0x1f87+0x428e)):0x819+0x62d+0xae*-0x15){_0x159bb0=_0x495191['\x69\x6e\x64\x65\x78\x4f\x66'](_0x159bb0);}for(let _0x4197d8=-0xc89+0x1c3c+0xfb3*-0x1,_0x97ed0e=_0x1c8cf4['\x6c\x65\x6e\x67\x74\x68'];_0x4197d8<_0x97ed0e;_0x4197d8++){_0x153829+='\x25'+('\x30\x30'+_0x1c8cf4['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4197d8)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0xa3*-0x3b+0x799*-0x1+0x33b*0xe))['\x73\x6c\x69\x63\x65'](-(-0xa16+0x1a84+-0x106c));}return decodeURIComponent(_0x153829);};const _0x30a2a0=function(_0x5745fc,_0x1bcd5c){let _0x11396f=[],_0x3d77a7=0xe3*0xd+0xb57+-0x16de*0x1,_0x5be7a5,_0x3b8e65='';_0x5745fc=_0x34071d(_0x5745fc);let _0x4ebe4e;for(_0x4ebe4e=-0x83*-0x1b+0xd0+-0xea1;_0x4ebe4e<-0x826+-0xdc4+0x16ea;_0x4ebe4e++){_0x11396f[_0x4ebe4e]=_0x4ebe4e;}for(_0x4ebe4e=0x437+-0x192*-0x6+0xda3*-0x1;_0x4ebe4e<0xf5*-0x5+-0x1c1+0x78a;_0x4ebe4e++){_0x3d77a7=(_0x3d77a7+_0x11396f[_0x4ebe4e]+_0x1bcd5c['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4ebe4e%_0x1bcd5c['\x6c\x65\x6e\x67\x74\x68']))%(0x1*0x379+-0x1509+0x1290),_0x5be7a5=_0x11396f[_0x4ebe4e],_0x11396f[_0x4ebe4e]=_0x11396f[_0x3d77a7],_0x11396f[_0x3d77a7]=_0x5be7a5;}_0x4ebe4e=-0x2a1*0x2+0xccf+-0x78d,_0x3d77a7=-0x203e+-0x197c+0x39ba;for(let _0x530181=0x10d4+0x1a56+-0x2b2a;_0x530181<_0x5745fc['\x6c\x65\x6e\x67\x74\x68'];_0x530181++){_0x4ebe4e=(_0x4ebe4e+(0x99a*0x3+-0xf7*0x1d+-0xd2))%(-0x1c4+0x1*-0x10b7+0x137b),_0x3d77a7=(_0x3d77a7+_0x11396f[_0x4ebe4e])%(-0x8*0x3a5+0x1fc3+-0x19b),_0x5be7a5=_0x11396f[_0x4ebe4e],_0x11396f[_0x4ebe4e]=_0x11396f[_0x3d77a7],_0x11396f[_0x3d77a7]=_0x5be7a5,_0x3b8e65+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x5745fc['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x530181)^_0x11396f[(_0x11396f[_0x4ebe4e]+_0x11396f[_0x3d77a7])%(-0x17ab+0x770+0xb*0x191)]);}return _0x3b8e65;};_0x4456['\x6f\x76\x74\x56\x78\x4b']=_0x30a2a0,_0x4456['\x47\x6a\x70\x6a\x66\x4f']={},_0x4456['\x59\x73\x58\x53\x79\x76']=!![];}const _0x24472e=_0x499794[-0x1884+-0x1069+0x28ed],_0x9081a1=_0x4cb229+_0x24472e,_0x2a1da5=_0x4456['\x47\x6a\x70\x6a\x66\x4f'][_0x9081a1];return!_0x2a1da5?(_0x4456['\x69\x73\x4e\x70\x4a\x67']===undefined&&(_0x4456['\x69\x73\x4e\x70\x4a\x67']=!![]),_0x238594=_0x4456['\x6f\x76\x74\x56\x78\x4b'](_0x238594,_0x113fd2),_0x4456['\x47\x6a\x70\x6a\x66\x4f'][_0x9081a1]=_0x238594):_0x238594=_0x2a1da5,_0x238594;}export const PROXY_TRACE_UPLOAD_SCHEMA=_0x59d358(0x91,'\x79\x33\x43\x34')+'\x61\x63\x65\x5f\x72\x6f\x77\x2e'+'\x76\x31';function _0x9808(){const _0x389261=['\x57\x4f\x5a\x63\x4f\x6d\x6f\x6a\x6b\x6d\x6f\x55\x69\x43\x6f\x54\x78\x48\x4e\x64\x51\x4c\x57\x62\x57\x4f\x65','\x57\x52\x30\x4c\x79\x43\x6f\x6b\x57\x4f\x4f\x66\x57\x50\x37\x64\x51\x38\x6f\x47\x44\x53\x6b\x61\x57\x36\x62\x70\x43\x71','\x68\x58\x78\x63\x49\x31\x74\x64\x4b\x4d\x48\x6e\x57\x52\x4f','\x6a\x43\x6f\x6f\x77\x38\x6f\x66\x42\x53\x6b\x53\x57\x51\x79','\x7a\x38\x6f\x6f\x6e\x61','\x41\x47\x78\x64\x48\x49\x52\x63\x54\x6d\x6f\x2b\x6c\x78\x71\x49\x73\x6d\x6b\x46','\x63\x4e\x53\x65\x67\x38\x6b\x38\x66\x61','\x57\x34\x66\x65\x57\x4f\x53\x2f\x78\x75\x75\x44\x57\x51\x79','\x66\x43\x6b\x2f\x69\x53\x6b\x37\x67\x59\x44\x4f\x68\x61','\x57\x37\x46\x63\x4d\x4c\x6c\x64\x47\x43\x6b\x46\x6d\x43\x6b\x4a\x6c\x61','\x57\x51\x78\x63\x4b\x74\x33\x64\x4e\x53\x6b\x65\x6d\x6d\x6b\x58','\x57\x34\x68\x64\x4e\x78\x4b','\x57\x35\x70\x63\x47\x4c\x52\x64\x4e\x68\x53\x54\x69\x43\x6b\x53','\x57\x50\x64\x63\x48\x68\x42\x64\x4f\x6d\x6b\x54\x6d\x38\x6b\x4f','\x57\x34\x6c\x63\x4a\x58\x4e\x64\x56\x38\x6b\x32\x6d\x53\x6b\x36\x57\x34\x75','\x57\x52\x4e\x63\x47\x73\x33\x64\x56\x6d\x6b\x6b\x57\x34\x53\x6a\x70\x57','\x57\x36\x43\x47\x57\x35\x6e\x65\x69\x6d\x6f\x57\x57\x4f\x61\x6e\x70\x43\x6b\x42\x74\x38\x6b\x62\x79\x38\x6b\x75','\x57\x4f\x39\x6f\x57\x36\x53\x42\x57\x35\x64\x64\x53\x4e\x79\x6e\x57\x37\x61\x6b','\x57\x51\x6e\x73\x57\x51\x56\x63\x52\x65\x48\x32\x57\x37\x56\x64\x55\x6d\x6f\x34','\x57\x4f\x4e\x63\x4f\x6d\x6f\x69\x69\x6d\x6f\x53\x69\x6d\x6f\x4b\x71\x62\x70\x64\x4f\x4e\x61\x50\x57\x4f\x79','\x67\x53\x6f\x4d\x57\x51\x76\x58\x57\x51\x5a\x64\x50\x61','\x57\x35\x74\x63\x4e\x43\x6f\x74\x57\x4f\x61\x55\x57\x36\x58\x39\x57\x35\x54\x37\x57\x51\x53','\x43\x38\x6f\x4b\x57\x37\x58\x61\x57\x34\x53','\x57\x4f\x70\x64\x47\x30\x4e\x64\x55\x4c\x4f\x45\x64\x43\x6b\x4c','\x57\x52\x30\x49\x41\x6d\x6f\x69\x57\x4f\x53\x6c\x57\x37\x64\x63\x51\x6d\x6f\x5a\x74\x38\x6b\x4a\x57\x37\x6d','\x64\x78\x30\x46\x68\x57','\x63\x61\x6a\x52\x57\x36\x7a\x59\x57\x34\x47\x6e\x57\x50\x61','\x57\x36\x43\x78\x57\x37\x33\x63\x4f\x65\x48\x4b\x57\x37\x6c\x64\x56\x47','\x41\x38\x6b\x32\x57\x34\x43\x59\x57\x52\x6a\x31\x57\x52\x72\x47','\x57\x52\x62\x7a\x67\x33\x31\x76\x57\x50\x35\x65\x57\x36\x78\x64\x4f\x47','\x57\x35\x4a\x64\x47\x68\x4a\x64\x4f\x76\x38\x44\x44\x33\x4f','\x57\x35\x2f\x63\x4e\x38\x6f\x55\x57\x51\x68\x64\x52\x53\x6b\x66\x41\x48\x6c\x63\x4a\x4d\x53','\x44\x38\x6f\x5a\x57\x37\x72\x62\x57\x34\x57\x6b\x57\x35\x35\x78','\x44\x5a\x37\x63\x4e\x43\x6f\x46\x57\x35\x4e\x64\x56\x32\x56\x63\x4f\x47','\x65\x58\x4a\x64\x56\x38\x6b\x36','\x73\x6d\x6f\x43\x71\x38\x6b\x5a\x57\x36\x53\x59','\x57\x36\x43\x50\x57\x35\x39\x64\x69\x53\x6f\x34\x57\x4f\x48\x45\x6d\x53\x6b\x62\x71\x38\x6b\x79\x41\x47','\x46\x65\x65\x50\x77\x6d\x6f\x75\x69\x43\x6f\x46\x64\x47','\x57\x36\x62\x50\x57\x34\x66\x6c\x57\x34\x44\x44\x57\x37\x7a\x66\x57\x34\x62\x58\x57\x4f\x4b','\x7a\x53\x6f\x33\x61\x53\x6f\x54\x6c\x53\x6b\x72\x57\x50\x52\x64\x4d\x4e\x30\x33\x57\x36\x56\x63\x4f\x66\x6d','\x74\x43\x6f\x48\x7a\x53\x6f\x62\x43\x38\x6b\x57\x57\x50\x5a\x63\x50\x61','\x57\x34\x4f\x73\x57\x52\x4c\x71\x57\x35\x37\x64\x47\x30\x57\x76','\x57\x36\x4a\x64\x4a\x53\x6f\x36\x57\x37\x66\x36\x78\x38\x6f\x74\x57\x35\x68\x63\x49\x71\x56\x63\x48\x75\x4b','\x57\x50\x33\x63\x47\x63\x6c\x63\x53\x58\x6e\x6b\x6a\x33\x50\x44\x57\x52\x42\x63\x54\x6d\x6f\x6d\x6c\x57','\x63\x53\x6b\x4f\x44\x38\x6f\x34'];_0x9808=function(){return _0x389261;};return _0x9808();}function parseNodeSecretVersion(_0x1d638e){const _0x42032d=_0x59d358;if(typeof _0x1d638e===_0x42032d(0x9e,'\x46\x5d\x75\x58')&&Number[_0x42032d(0x99,'\x25\x6e\x5d\x2a')+'\x72'](_0x1d638e)&&_0x1d638e>-0xc89+0x1c3c+0xfb3*-0x1)return _0x1d638e;if(typeof _0x1d638e!==_0x42032d(0x90,'\x43\x24\x58\x50'))return undefined;const _0x2669dc=_0x1d638e[_0x42032d(0xa3,'\x43\x24\x58\x50')]();if(!/^[1-9]\d*$/[_0x42032d(0x89,'\x29\x61\x73\x73')](_0x2669dc))return undefined;const _0x3b146d=Number(_0x2669dc);return Number[_0x42032d(0xaf,'\x49\x57\x39\x6b')+_0x42032d(0xa0,'\x54\x4c\x32\x4c')](_0x3b146d)?_0x3b146d:undefined;}export function buildProxyTraceUploadPayload(_0x4e80db){const _0x2ba9d8=_0x59d358,_0x537d09=parseNodeSecretVersion(_0x4e80db[_0x2ba9d8(0x86,'\x78\x49\x26\x71')+_0x2ba9d8(0xad,'\x4c\x72\x6b\x5d')]);return{'\x73\x63\x68\x65\x6d\x61':PROXY_TRACE_UPLOAD_SCHEMA,'\x65\x6e\x63\x72\x79\x70\x74\x65\x64':!![],'\x74\x72\x61\x63\x65':_0x4e80db,..._0x537d09!==undefined?{'\x6e\x6f\x64\x65\x5f\x73\x65\x63\x72\x65\x74\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x537d09}:{},..._0x4e80db[_0x2ba9d8(0xa8,'\x66\x35\x71\x6e')+_0x2ba9d8(0x8c,'\x6b\x6e\x6f\x52')+_0x2ba9d8(0x8e,'\x64\x43\x61\x7a')]?{'\x70\x72\x6f\x64\x75\x63\x65\x72\x5f\x67\x65\x6e\x65\x72\x61\x74\x69\x6f\x6e':_0x4e80db[_0x2ba9d8(0x92,'\x6a\x73\x2a\x50')+_0x2ba9d8(0xab,'\x66\x51\x24\x63')+_0x2ba9d8(0x95,'\x66\x35\x71\x6e')]}:{},..._0x4e80db[_0x2ba9d8(0xa5,'\x54\x39\x77\x44')+_0x2ba9d8(0x98,'\x4d\x4d\x43\x6d')]?{'\x70\x72\x6f\x64\x75\x63\x65\x72\x5f\x76\x65\x72\x73\x69\x6f\x6e':_0x4e80db[_0x2ba9d8(0xa8,'\x66\x35\x71\x6e')+_0x2ba9d8(0x93,'\x79\x67\x6f\x68')]}:{},..._0x4e80db[_0x2ba9d8(0xa6,'\x75\x4a\x76\x4f')+'\x5f\x63\x6f\x6d\x70\x6f\x6e\x65'+'\x6e\x74']?{'\x70\x72\x6f\x64\x75\x63\x65\x72\x5f\x63\x6f\x6d\x70\x6f\x6e\x65\x6e\x74':_0x4e80db[_0x2ba9d8(0xaa,'\x54\x4c\x32\x4c')+_0x2ba9d8(0x85,'\x70\x71\x4b\x5a')+'\x6e\x74']}:{}};}export function proxyTraceUploadPayloadSizeBytes(_0x53b027){const _0x2eb362=_0x59d358;return Buffer[_0x2eb362(0x96,'\x64\x53\x4f\x61')+'\x74\x68'](JSON['\x73\x74\x72\x69\x6e\x67\x69\x66'+'\x79'](buildProxyTraceUploadPayload(_0x53b027)),_0x2eb362(0xac,'\x23\x48\x41\x37'));}