@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,1579 +1 @@
1
- import { captureTraceMetadata, extractThinkingEffort } from './messagesRoute.js';
2
- import { randomUUID } from 'node:crypto';
3
- import { teeStreamForScan } from './sseScan.js';
4
- import { bodyMaxChars, captureBodiesEnabled, captureBody, REDACTION_VERSION, positiveIntegerFromEnv, redactText, stableUserIdHash } from '../llm/bodyCapture.js';
5
- import { rewriteModel } from './cachePassthrough.js';
6
- import { PLAN_RE, SIMPLE_LOOKUP_MAX_CHARS } from './features.js';
7
- import { pickForTurn } from './modelRouter.js';
8
- export const OPENAI_RESPONSE_HEADER_ALLOWLIST = new Set([
9
- 'openai-processing-ms',
10
- 'openai-version',
11
- 'retry-after',
12
- 'x-request-id',
13
- ]);
14
- export const GEMINI_RESPONSE_HEADER_ALLOWLIST = new Set([
15
- 'content-type',
16
- 'retry-after',
17
- 'x-request-id',
18
- ]);
19
- const CREDENTIAL_QUERY_PARAMS = new Set([
20
- 'key',
21
- 'api_key',
22
- 'apikey',
23
- 'access_token',
24
- 'token',
25
- 'authorization',
26
- 'auth',
27
- 'client_secret',
28
- 'refresh_token',
29
- 'id_token',
30
- 'signature',
31
- 'sig',
32
- ]);
33
- const GEMINI_VERTEX_ACTIONS = new Set([
34
- 'generateContent',
35
- 'streamGenerateContent',
36
- 'countTokens',
37
- 'embedContent',
38
- 'batchEmbedContents',
39
- ]);
40
- const DEFAULT_PROVIDER_STREAM_MAX_EVENTS = 100_000;
41
- const DEFAULT_PROVIDER_STREAM_SEMANTIC_TAIL_EVENTS = 100_000;
42
- const MAX_PROVIDER_STREAM_LINE_SCAN_TAIL_BYTES = 128 * 1024;
43
- // FIX-11: a single streamed SSE event can legitimately exceed the per-FIELD body cap (a big tool-call argument
44
- // blob, a long reasoning event). When the whole line overflows we can no longer JSON-parse it and fall back to a
45
- // lossy regex tail scan that drops tool calls / semantic events. Give the line scanner a higher floor than the
46
- // body-field cap so far more events stay fully parseable; the captured body is still size-capped downstream by
47
- // captureBody(), so this only widens what we can structurally extract, it does not bloat stored bodies.
48
- const DEFAULT_PROVIDER_STREAM_LINE_MAX_BYTES = 2 * 1024 * 1024;
49
- function providerStreamCaptureLimits(env = process.env) {
50
- const bodyMax = bodyMaxChars(env);
51
- return {
52
- lineMaxBytes: positiveIntegerFromEnv(env, [
53
- 'EVOLVER_LLM_TRACE_PROVIDER_STREAM_LINE_MAX_BYTES',
54
- 'EVOMAP_PROXY_TRACE_PROVIDER_STREAM_LINE_MAX_BYTES',
55
- 'EVOLVER_LLM_TRACE_STREAM_LINE_MAX_BYTES',
56
- 'EVOMAP_PROXY_TRACE_STREAM_LINE_MAX_BYTES',
57
- ], Math.max(bodyMax, DEFAULT_PROVIDER_STREAM_LINE_MAX_BYTES)),
58
- chunkMaxEvents: positiveIntegerFromEnv(env, [
59
- 'EVOLVER_LLM_TRACE_PROVIDER_STREAM_MAX_EVENTS',
60
- 'EVOMAP_PROXY_TRACE_PROVIDER_STREAM_MAX_EVENTS',
61
- 'EVOLVER_LLM_TRACE_STREAM_MAX_EVENTS',
62
- 'EVOMAP_PROXY_TRACE_STREAM_MAX_EVENTS',
63
- ], DEFAULT_PROVIDER_STREAM_MAX_EVENTS),
64
- chunkMaxBytes: positiveIntegerFromEnv(env, [
65
- 'EVOLVER_LLM_TRACE_PROVIDER_STREAM_MAX_BYTES',
66
- 'EVOMAP_PROXY_TRACE_PROVIDER_STREAM_MAX_BYTES',
67
- 'EVOLVER_LLM_TRACE_STREAM_MAX_BYTES',
68
- 'EVOMAP_PROXY_TRACE_STREAM_MAX_BYTES',
69
- ], bodyMax),
70
- rawStreamMaxChars: positiveIntegerFromEnv(env, [
71
- 'EVOLVER_LLM_TRACE_PROVIDER_RAW_STREAM_MAX_CHARS',
72
- 'EVOMAP_PROXY_TRACE_PROVIDER_RAW_STREAM_MAX_CHARS',
73
- 'EVOLVER_LLM_TRACE_STREAM_RAW_MAX_CHARS',
74
- 'EVOMAP_PROXY_TRACE_STREAM_RAW_MAX_CHARS',
75
- ], bodyMax),
76
- semanticTailMaxEvents: positiveIntegerFromEnv(env, [
77
- 'EVOLVER_LLM_TRACE_PROVIDER_STREAM_SEMANTIC_TAIL_MAX_EVENTS',
78
- 'EVOMAP_PROXY_TRACE_PROVIDER_STREAM_SEMANTIC_TAIL_MAX_EVENTS',
79
- 'EVOLVER_LLM_TRACE_STREAM_SEMANTIC_TAIL_MAX_EVENTS',
80
- 'EVOMAP_PROXY_TRACE_STREAM_SEMANTIC_TAIL_MAX_EVENTS',
81
- ], DEFAULT_PROVIDER_STREAM_SEMANTIC_TAIL_EVENTS),
82
- semanticTailMaxBytes: positiveIntegerFromEnv(env, [
83
- 'EVOLVER_LLM_TRACE_PROVIDER_STREAM_SEMANTIC_TAIL_MAX_BYTES',
84
- 'EVOMAP_PROXY_TRACE_PROVIDER_STREAM_SEMANTIC_TAIL_MAX_BYTES',
85
- 'EVOLVER_LLM_TRACE_STREAM_SEMANTIC_TAIL_MAX_BYTES',
86
- 'EVOMAP_PROXY_TRACE_STREAM_SEMANTIC_TAIL_MAX_BYTES',
87
- ], bodyMax),
88
- };
89
- }
90
- const OPENAI_ROUTER_ENABLED_KEYS = ['EVOLVER_LLM_OPENAI_ROUTER_ENABLED', 'EVOMAP_OPENAI_ROUTER_ENABLED'];
91
- const OPENAI_ROUTE_THREADED_KEYS = ['EVOLVER_LLM_OPENAI_ROUTE_THREADED', 'EVOMAP_OPENAI_ROUTE_THREADED'];
92
- const OPENAI_ROUTED_RETRY_STATUSES = new Set([400, 404, 422]);
93
- const ROUTER_FALSE_VALUES = new Set(['0', 'false', 'off', 'no', 'none']);
94
- function jsonStringify(o) {
95
- return JSON.stringify(o);
96
- }
97
- function copyResponseHeaders(headers = {}, allow) {
98
- const out = {};
99
- for (const [name, value] of Object.entries(headers)) {
100
- const lower = name.toLowerCase();
101
- if (!allow(lower) || value === undefined || value === null)
102
- continue;
103
- if (/[\r\n]/.test(value))
104
- continue;
105
- out[lower] = value;
106
- }
107
- return out;
108
- }
109
- export function copyOpenAIResponseHeaders(headers = {}) {
110
- return copyResponseHeaders(headers, (lower) => OPENAI_RESPONSE_HEADER_ALLOWLIST.has(lower) || lower.startsWith('x-ratelimit-'));
111
- }
112
- export function copyGeminiResponseHeaders(headers = {}) {
113
- return copyResponseHeaders(headers, (lower) => GEMINI_RESPONSE_HEADER_ALLOWLIST.has(lower) || lower.startsWith('x-goog-'));
114
- }
115
- function responseToBody(raw, status, headers, log, event) {
116
- if (!raw)
117
- return {};
118
- try {
119
- return JSON.parse(raw);
120
- }
121
- catch {
122
- log.warn?.(jsonStringify({
123
- event,
124
- reason: 'upstream_non_json',
125
- upstream_status: status,
126
- content_type: headers?.['content-type'] || '',
127
- response_bytes: Buffer.byteLength(raw),
128
- }));
129
- return { error: raw };
130
- }
131
- }
132
- function attemptResponseToBody(raw) {
133
- if (!raw)
134
- return {};
135
- try {
136
- return JSON.parse(raw);
137
- }
138
- catch {
139
- return { error: raw };
140
- }
141
- }
142
- function asUpstreamError(provider, err, fallback = 502) {
143
- const sc = err && typeof err === 'object' && 'statusCode' in err ? Number(err.statusCode) : NaN;
144
- return Object.assign(new Error(`${provider} upstream request failed`), {
145
- statusCode: Number.isFinite(sc) ? sc : fallback,
146
- cause: err,
147
- });
148
- }
149
- function badRequest(message) {
150
- return Object.assign(new Error(message), { statusCode: 400 });
151
- }
152
- function isRecord(value) {
153
- return !!value && typeof value === 'object' && !Array.isArray(value);
154
- }
155
- function envEnabled(env, keys) {
156
- for (const key of keys) {
157
- const raw = env[key];
158
- if (raw === undefined)
159
- continue;
160
- const normalized = String(raw).trim().toLowerCase();
161
- if (!normalized || ROUTER_FALSE_VALUES.has(normalized))
162
- return false;
163
- return true;
164
- }
165
- return false;
166
- }
167
- function routeSpecificOpenAIModelKeys(route, tier) {
168
- if (route === '/v1/responses')
169
- return [`EVOLVER_LLM_OPENAI_RESPONSES_MODEL_${tier}`, `EVOMAP_OPENAI_RESPONSES_MODEL_${tier}`];
170
- return [`EVOLVER_LLM_OPENAI_CHAT_MODEL_${tier}`, `EVOMAP_OPENAI_CHAT_MODEL_${tier}`];
171
- }
172
- export function resolveOpenAITierModels(env = process.env, route) {
173
- const out = {};
174
- const first = (keys) => {
175
- for (const key of keys) {
176
- const value = env[key];
177
- if (typeof value === 'string' && value.trim())
178
- return value.trim();
179
- }
180
- return undefined;
181
- };
182
- const tierKeys = (tier) => [
183
- ...(route ? routeSpecificOpenAIModelKeys(route, tier) : []),
184
- `EVOLVER_LLM_OPENAI_MODEL_${tier}`,
185
- `EVOMAP_OPENAI_MODEL_${tier}`,
186
- ];
187
- const cheap = first(tierKeys('CHEAP'));
188
- const mid = first(tierKeys('MID'));
189
- const expensive = first(tierKeys('EXPENSIVE'));
190
- if (cheap)
191
- out.cheap = cheap;
192
- if (mid)
193
- out.mid = mid;
194
- if (expensive)
195
- out.expensive = expensive;
196
- return out;
197
- }
198
- function textFromContent(content) {
199
- if (typeof content === 'string')
200
- return content;
201
- if (!Array.isArray(content))
202
- return '';
203
- return content.map((part) => {
204
- if (typeof part === 'string')
205
- return part;
206
- if (!isRecord(part))
207
- return '';
208
- for (const key of ['text', 'input_text', 'output_text', 'content']) {
209
- const value = part[key];
210
- if (typeof value === 'string')
211
- return value;
212
- }
213
- return '';
214
- }).filter(Boolean).join('\n');
215
- }
216
- function isOpenAIToolOutput(value) {
217
- if (!isRecord(value))
218
- return false;
219
- const type = typeof value['type'] === 'string' ? value['type'] : '';
220
- const role = typeof value['role'] === 'string' ? value['role'] : '';
221
- return type === 'function_call_output' || type === 'tool_result' || role === 'tool';
222
- }
223
- function openAIResponsesInputText(input) {
224
- if (typeof input === 'string')
225
- return input;
226
- if (!Array.isArray(input))
227
- return '';
228
- for (let i = input.length - 1; i >= 0; i--) {
229
- const item = input[i];
230
- if (!isRecord(item) || isOpenAIToolOutput(item))
231
- continue;
232
- const role = typeof item['role'] === 'string' ? item['role'] : '';
233
- if (role && role !== 'user')
234
- continue;
235
- const direct = textFromContent(item['content']);
236
- if (direct)
237
- return direct;
238
- const text = textFromContent(item['text']);
239
- if (text)
240
- return text;
241
- }
242
- return '';
243
- }
244
- function openAIChatLastUserText(messages) {
245
- if (!Array.isArray(messages))
246
- return '';
247
- for (let i = messages.length - 1; i >= 0; i--) {
248
- const msg = messages[i];
249
- if (!isRecord(msg) || msg['role'] !== 'user')
250
- continue;
251
- return textFromContent(msg['content']);
252
- }
253
- return '';
254
- }
255
- function openAIChatLastToolCallCount(messages) {
256
- if (!Array.isArray(messages))
257
- return 0;
258
- for (let i = messages.length - 1; i >= 0; i--) {
259
- const msg = messages[i];
260
- if (!isRecord(msg) || msg['role'] !== 'assistant')
261
- continue;
262
- const toolCalls = msg['tool_calls'];
263
- return Array.isArray(toolCalls) ? toolCalls.length : 0;
264
- }
265
- return 0;
266
- }
267
- function featuresFromText(userText, toolOnly, toolCallCount) {
268
- const trimmed = userText.trim();
269
- const userRequestedPlanning = trimmed.length > 0 && PLAN_RE.test(trimmed);
270
- return {
271
- last_assistant_tool_call_count: toolCallCount,
272
- last_assistant_had_tool_call: toolCallCount > 0,
273
- last_user_is_tool_result_only: toolOnly,
274
- user_requested_planning: userRequestedPlanning,
275
- user_simple_lookup: trimmed.length > 0 && !toolOnly && !userRequestedPlanning && trimmed.length <= SIMPLE_LOOKUP_MAX_CHARS,
276
- last_assistant_output_tokens: 0,
277
- last_assistant_stop_reason: toolOnly || toolCallCount > 0 ? 'ToolUse' : null,
278
- };
279
- }
280
- function extractOpenAIFeatures(route, body) {
281
- if (route === '/v1/chat/completions') {
282
- const messages = body['messages'];
283
- const tail = Array.isArray(messages) ? messages[messages.length - 1] : null;
284
- const toolOnly = isOpenAIToolOutput(tail);
285
- return featuresFromText(openAIChatLastUserText(messages), toolOnly, openAIChatLastToolCallCount(messages));
286
- }
287
- const input = body['input'];
288
- const toolOnly = Array.isArray(input) && input.length > 0 && input.every(isOpenAIToolOutput);
289
- const functionCallCount = Array.isArray(input)
290
- ? input.filter((item) => isRecord(item) && item['type'] === 'function_call').length
291
- : 0;
292
- return featuresFromText(openAIResponsesInputText(input), toolOnly, functionCallCount);
293
- }
294
- function hasOpenAIResponsesThreadState(body) {
295
- return body['previous_response_id'] !== undefined || body['conversation'] !== undefined;
296
- }
297
- function shouldRetryRoutedOpenAI(upstream, opts) {
298
- if (upstream.stream || opts.provider !== 'openai')
299
- return false;
300
- if (!opts.retryBody || !opts.chosenModel || opts.chosenModel === opts.model)
301
- return false;
302
- return upstream.status >= 500 || OPENAI_ROUTED_RETRY_STATUSES.has(upstream.status);
303
- }
304
- function routeOpenAIRequest(route, body, env, log) {
305
- const originalModel = typeof body.model === 'string' ? body.model : null;
306
- let chosenModel = originalModel;
307
- let tier = null;
308
- let reason = null;
309
- let fallback = null;
310
- let features;
311
- const routerEnabled = envEnabled(env, OPENAI_ROUTER_ENABLED_KEYS);
312
- if (!routerEnabled)
313
- return { body, originalModel, chosenModel, tier, reason, fallback, routerEnabled };
314
- if (route === '/v1/responses' && hasOpenAIResponsesThreadState(body) && !envEnabled(env, OPENAI_ROUTE_THREADED_KEYS)) {
315
- return { body, originalModel, chosenModel, tier, reason, fallback: 'threaded_passthrough', routerEnabled };
316
- }
317
- if (!originalModel) {
318
- return { body, originalModel, chosenModel, tier, reason, fallback: 'missing_model', routerEnabled };
319
- }
320
- try {
321
- features = extractOpenAIFeatures(route, body);
322
- const decision = pickForTurn({
323
- features,
324
- router_state: { history: [], pinned: null },
325
- config: { default_tier: 'mid', disable: false, hard_pin_after_plan: false },
326
- });
327
- tier = decision.tier;
328
- reason = decision.reason;
329
- const tierModel = resolveOpenAITierModels(env, route)[decision.tier];
330
- if (tierModel)
331
- chosenModel = tierModel;
332
- }
333
- catch (err) {
334
- fallback = 'classifier_error';
335
- log.warn?.(jsonStringify({ event: 'router_fallback', route, reason: fallback, original_model: originalModel, error: err instanceof Error ? err.message : String(err) }));
336
- }
337
- let routedBody = body;
338
- if (chosenModel && chosenModel !== originalModel) {
339
- try {
340
- routedBody = rewriteModel(body, chosenModel);
341
- }
342
- catch (err) {
343
- fallback = fallback ?? 'rewrite_error';
344
- chosenModel = originalModel;
345
- routedBody = body;
346
- log.warn?.(jsonStringify({ event: 'router_fallback', route, reason: fallback, original_model: originalModel, error: err instanceof Error ? err.message : String(err) }));
347
- }
348
- }
349
- log.log?.(jsonStringify({ event: 'router_decision', route, tier, reason, original_model: originalModel, chosen_model: chosenModel, fallback }));
350
- return { body: routedBody, originalModel, chosenModel, tier, reason, fallback, routerEnabled, ...(features ? { features } : {}) };
351
- }
352
- function setUsageNumber(usage, key, value) {
353
- if (typeof value === 'number' && Number.isFinite(value))
354
- usage[key] = value;
355
- }
356
- function usageOrUndefined(usage) {
357
- return Object.keys(usage).length > 0 ? usage : undefined;
358
- }
359
- function mergeTraceMeta(into, next) {
360
- if (next.usage)
361
- into.usage = { ...(into.usage ?? {}), ...next.usage };
362
- if (next.stop_reason !== undefined)
363
- into.stop_reason = next.stop_reason;
364
- if (next.response_id !== undefined)
365
- into.response_id = next.response_id;
366
- if (next.error !== undefined)
367
- into.error = next.error;
368
- }
369
- function responseIdFromBody(body) {
370
- if (!isRecord(body))
371
- return undefined;
372
- const id = body['id'];
373
- if (typeof id === 'string' && id.length > 0)
374
- return id;
375
- const response = body['response'];
376
- if (isRecord(response) && typeof response['id'] === 'string' && response['id'].length > 0)
377
- return response['id'];
378
- return undefined;
379
- }
380
- function openAIResponsesMeta(body) {
381
- const o = isRecord(body) && isRecord(body['response']) ? body['response'] : body;
382
- if (!isRecord(o))
383
- return {};
384
- const out = {};
385
- if (isRecord(o['usage'])) {
386
- const u = o['usage'];
387
- const usage = {};
388
- setUsageNumber(usage, 'input_tokens', u['input_tokens']);
389
- setUsageNumber(usage, 'output_tokens', u['output_tokens']);
390
- setUsageNumber(usage, 'cache_creation_input_tokens', u['cache_creation_input_tokens']);
391
- setUsageNumber(usage, 'cache_read_input_tokens', u['cache_read_input_tokens']);
392
- const mapped = usageOrUndefined(usage);
393
- if (mapped)
394
- out.usage = mapped;
395
- }
396
- const incomplete = isRecord(o['incomplete_details']) ? o['incomplete_details']['reason'] : undefined;
397
- if (typeof incomplete === 'string')
398
- out.stop_reason = incomplete;
399
- else if (typeof o['status'] === 'string')
400
- out.stop_reason = o['status'];
401
- if ((o['status'] === 'failed' || o['status'] === 'cancelled') && isRecord(o['error'])) {
402
- const message = o['error']['message'];
403
- if (typeof message === 'string' && message.trim())
404
- out.error = message;
405
- }
406
- const responseId = responseIdFromBody(body) ?? responseIdFromBody(o);
407
- if (responseId)
408
- out.response_id = responseId;
409
- return out;
410
- }
411
- function openAIChatMeta(body) {
412
- if (!isRecord(body))
413
- return {};
414
- const out = {};
415
- if (isRecord(body['usage'])) {
416
- const u = body['usage'];
417
- const usage = {};
418
- setUsageNumber(usage, 'input_tokens', u['prompt_tokens']);
419
- setUsageNumber(usage, 'output_tokens', u['completion_tokens']);
420
- const mapped = usageOrUndefined(usage);
421
- if (mapped)
422
- out.usage = mapped;
423
- }
424
- const choices = body['choices'];
425
- const first = Array.isArray(choices) && isRecord(choices[0]) ? choices[0] : null;
426
- if (first && (typeof first['finish_reason'] === 'string' || first['finish_reason'] === null)) {
427
- out.stop_reason = first['finish_reason'];
428
- }
429
- const responseId = responseIdFromBody(body);
430
- if (responseId)
431
- out.response_id = responseId;
432
- return out;
433
- }
434
- function geminiMeta(body) {
435
- if (!isRecord(body))
436
- return {};
437
- const out = {};
438
- if (isRecord(body['usageMetadata'])) {
439
- const u = body['usageMetadata'];
440
- const usage = {};
441
- setUsageNumber(usage, 'input_tokens', u['promptTokenCount']);
442
- setUsageNumber(usage, 'output_tokens', u['candidatesTokenCount']);
443
- setUsageNumber(usage, 'cache_read_input_tokens', u['cachedContentTokenCount']);
444
- const mapped = usageOrUndefined(usage);
445
- if (mapped)
446
- out.usage = mapped;
447
- }
448
- const candidates = body['candidates'];
449
- const first = Array.isArray(candidates) && isRecord(candidates[0]) ? candidates[0] : null;
450
- if (first && typeof first['finishReason'] === 'string')
451
- out.stop_reason = first['finishReason'];
452
- return out;
453
- }
454
- function ollamaMeta(body) {
455
- if (!isRecord(body))
456
- return {};
457
- const out = {};
458
- const usage = {};
459
- setUsageNumber(usage, 'input_tokens', body['prompt_eval_count']);
460
- setUsageNumber(usage, 'output_tokens', body['eval_count']);
461
- const mapped = usageOrUndefined(usage);
462
- if (mapped)
463
- out.usage = mapped;
464
- if (typeof body['done_reason'] === 'string')
465
- out.stop_reason = body['done_reason'];
466
- return out;
467
- }
468
- function providerMeta(route, body) {
469
- if (route.provider === 'openai' && route.upstreamPath === '/responses')
470
- return openAIResponsesMeta(body);
471
- if (route.provider === 'openai' && route.upstreamPath === '/chat/completions')
472
- return openAIChatMeta(body);
473
- if (route.provider === 'gemini' || route.provider === 'vertex')
474
- return geminiMeta(body);
475
- if (route.provider === 'ollama')
476
- return ollamaMeta(body);
477
- return {};
478
- }
479
- function setProviderTextUsage(into, key, match) {
480
- if (!match?.[1])
481
- return;
482
- const n = Number(match[1]);
483
- if (!Number.isFinite(n))
484
- return;
485
- const usage = into.usage ?? {};
486
- usage[key] = n;
487
- into.usage = usage;
488
- }
489
- function scanProviderTextMetadata(into, text) {
490
- const id = /"id"\s*:\s*"((?:resp_|chatcmpl-|msg_)[^"]+)"/.exec(text);
491
- if (id?.[1])
492
- into.response_id = id[1];
493
- const status = /"status"\s*:\s*"(completed|failed|incomplete|cancelled)"/.exec(text);
494
- if (status?.[1])
495
- into.stop_reason = status[1];
496
- const finish = /"finish_reason"\s*:\s*("(?:[^"]+)"|null)/.exec(text);
497
- if (finish?.[1])
498
- into.stop_reason = finish[1] === 'null' ? null : finish[1].slice(1, -1);
499
- setProviderTextUsage(into, 'input_tokens', /"input_tokens"\s*:\s*(\d+)/.exec(text));
500
- setProviderTextUsage(into, 'output_tokens', /"output_tokens"\s*:\s*(\d+)/.exec(text));
501
- setProviderTextUsage(into, 'input_tokens', /"prompt_tokens"\s*:\s*(\d+)/.exec(text));
502
- setProviderTextUsage(into, 'output_tokens', /"completion_tokens"\s*:\s*(\d+)/.exec(text));
503
- }
504
- function responseBodyIndicatesTruncation(value) {
505
- return isRecord(value) && (value['provider_stream_truncated'] === true
506
- || value['raw_stream_truncated'] === true
507
- || value['truncated'] === true);
508
- }
509
- function copyDefinedFields(source, keys) {
510
- const out = {};
511
- for (const key of keys)
512
- if (source[key] !== undefined)
513
- out[key] = source[key];
514
- return out;
515
- }
516
- function semanticToolItem(item) {
517
- if (!isRecord(item))
518
- return undefined;
519
- const type = typeof item['type'] === 'string' ? item['type'] : '';
520
- const role = typeof item['role'] === 'string' ? item['role'] : '';
521
- const fn = isRecord(item['function']) ? item['function'] : undefined;
522
- const isSemantic = type === 'function_call'
523
- || type === 'tool_use'
524
- || type === 'function_call_output'
525
- || type === 'tool_result'
526
- || role === 'tool'
527
- || Array.isArray(item['tool_calls'])
528
- || fn !== undefined;
529
- if (!isSemantic)
530
- return undefined;
531
- const out = copyDefinedFields(item, [
532
- 'id',
533
- 'type',
534
- 'role',
535
- 'call_id',
536
- 'tool_call_id',
537
- 'tool_use_id',
538
- 'name',
539
- 'arguments',
540
- 'input',
541
- 'output',
542
- 'content',
543
- 'status',
544
- 'index',
545
- 'output_index',
546
- ]);
547
- if (Array.isArray(item['tool_calls']))
548
- out['tool_calls'] = item['tool_calls'];
549
- if (fn)
550
- out['function'] = copyDefinedFields(fn, ['name', 'arguments']);
551
- return Object.keys(out).length > 0 ? out : undefined;
552
- }
553
- function semanticResponse(response) {
554
- if (!isRecord(response))
555
- return undefined;
556
- const out = copyDefinedFields(response, ['id', 'status', 'usage', 'incomplete_details']);
557
- const output = Array.isArray(response['output'])
558
- ? response['output'].map((item) => semanticToolItem(item)).filter((item) => item !== undefined)
559
- : [];
560
- if (output.length > 0)
561
- out['output'] = output;
562
- if (isRecord(response['error']))
563
- out['error'] = copyDefinedFields(response['error'], ['message', 'type', 'code']);
564
- return Object.keys(out).length > 0 ? out : undefined;
565
- }
566
- function semanticOpenAIChatEvent(evt) {
567
- const choices = Array.isArray(evt['choices'])
568
- ? evt['choices'].map((choice) => {
569
- if (!isRecord(choice))
570
- return undefined;
571
- const out = copyDefinedFields(choice, ['index']);
572
- if (choice['finish_reason'] !== undefined && choice['finish_reason'] !== null)
573
- out['finish_reason'] = choice['finish_reason'];
574
- const delta = isRecord(choice['delta']) ? choice['delta'] : undefined;
575
- const message = isRecord(choice['message']) ? choice['message'] : undefined;
576
- if (delta && Array.isArray(delta['tool_calls']))
577
- out['delta'] = { tool_calls: delta['tool_calls'] };
578
- if (message && Array.isArray(message['tool_calls']))
579
- out['message'] = { tool_calls: message['tool_calls'] };
580
- if (message && isRecord(message['function_call']))
581
- out['message'] = { ...(isRecord(out['message']) ? out['message'] : {}), function_call: message['function_call'] };
582
- return Object.keys(out).some((key) => key !== 'index') ? out : undefined;
583
- }).filter((choice) => choice !== undefined)
584
- : [];
585
- const out = copyDefinedFields(evt, ['id', 'usage']);
586
- if (choices.length > 0)
587
- out['choices'] = choices;
588
- return Object.keys(out).length > 0 ? out : undefined;
589
- }
590
- function semanticOpenAIResponsesEvent(evt) {
591
- const type = typeof evt['type'] === 'string' ? evt['type'] : '';
592
- if (type === 'response.function_call_arguments.delta' || type === 'response.function_call_arguments.done') {
593
- return copyDefinedFields(evt, ['type', 'item_id', 'output_index', 'call_id', 'id', 'delta', 'arguments']);
594
- }
595
- const item = semanticToolItem(evt['item']);
596
- if (item) {
597
- const out = copyDefinedFields(evt, ['type', 'output_index', 'item_id']);
598
- out['item'] = item;
599
- return out;
600
- }
601
- if (type === 'response.completed' || type === 'response.failed' || type === 'response.incomplete' || type === 'response.cancelled') {
602
- const response = semanticResponse(evt['response']);
603
- if (response)
604
- return { type, response };
605
- }
606
- return undefined;
607
- }
608
- function semanticAnthropicEvent(evt) {
609
- const type = typeof evt['type'] === 'string' ? evt['type'] : '';
610
- if (type === 'content_block_start') {
611
- const contentBlock = semanticToolItem(evt['content_block']);
612
- if (contentBlock)
613
- return { ...copyDefinedFields(evt, ['type', 'index']), content_block: contentBlock };
614
- }
615
- if (type === 'content_block_delta' && isRecord(evt['delta']) && evt['delta']['type'] === 'input_json_delta') {
616
- return { ...copyDefinedFields(evt, ['type', 'index']), delta: copyDefinedFields(evt['delta'], ['type', 'partial_json']) };
617
- }
618
- if (type === 'message_delta') {
619
- const out = copyDefinedFields(evt, ['type', 'usage']);
620
- if (isRecord(evt['delta'])) {
621
- const delta = copyDefinedFields(evt['delta'], ['stop_reason', 'stop_sequence']);
622
- if (Object.keys(delta).length > 0)
623
- out['delta'] = delta;
624
- }
625
- return out['usage'] !== undefined || out['delta'] !== undefined ? out : undefined;
626
- }
627
- return undefined;
628
- }
629
- // Gemini/Vertex tool calls live in candidates[].content.parts[] as
630
- // { functionCall: { name, args } } / { functionResponse: { name, response } }.
631
- // Keep only those tool-bearing parts so downstream tool-call reconstruction can
632
- // rebuild them while still dropping bulky free-text/thought parts.
633
- function semanticGeminiContentParts(content) {
634
- if (!isRecord(content))
635
- return undefined;
636
- const parts = Array.isArray(content['parts']) ? content['parts'] : [];
637
- const kept = parts
638
- .map((part) => {
639
- if (!isRecord(part))
640
- return undefined;
641
- if (isRecord(part['functionCall']))
642
- return copyDefinedFields(part, ['functionCall']);
643
- if (isRecord(part['functionResponse']))
644
- return copyDefinedFields(part, ['functionResponse']);
645
- return undefined;
646
- })
647
- .filter((part) => part !== undefined);
648
- if (kept.length === 0)
649
- return undefined;
650
- const out = copyDefinedFields(content, ['role']);
651
- out['parts'] = kept;
652
- return out;
653
- }
654
- function semanticGenericEvent(evt) {
655
- const out = copyDefinedFields(evt, [
656
- 'usage',
657
- 'usageMetadata',
658
- 'prompt_eval_count',
659
- 'eval_count',
660
- 'done',
661
- 'done_reason',
662
- ]);
663
- const candidates = Array.isArray(evt['candidates'])
664
- ? evt['candidates'].map((candidate) => {
665
- if (!isRecord(candidate))
666
- return undefined;
667
- const candidateOut = copyDefinedFields(candidate, ['finishReason']);
668
- const content = semanticGeminiContentParts(candidate['content']);
669
- if (content)
670
- candidateOut['content'] = content;
671
- return candidateOut;
672
- })
673
- .filter((candidate) => candidate !== undefined && Object.keys(candidate).length > 0)
674
- : [];
675
- if (candidates.length > 0)
676
- out['candidates'] = candidates;
677
- if (out['done'] !== true)
678
- delete out['done'];
679
- return Object.keys(out).length > 0 ? out : undefined;
680
- }
681
- function semanticTailEvents(parsed) {
682
- if (Array.isArray(parsed))
683
- return parsed.flatMap((item) => semanticTailEvents(item));
684
- if (!isRecord(parsed))
685
- return [];
686
- const event = semanticOpenAIResponsesEvent(parsed)
687
- ?? semanticOpenAIChatEvent(parsed)
688
- ?? semanticAnthropicEvent(parsed)
689
- ?? semanticGenericEvent(parsed);
690
- return event ? [event] : [];
691
- }
692
- class ProviderStreamMetaScanner {
693
- route;
694
- env;
695
- result = {};
696
- responseChunks = [];
697
- semanticTailEvents = [];
698
- responseChunkBytes = 0;
699
- semanticTailBytes = 0;
700
- rawStreamBody = '';
701
- rawStreamChars = 0;
702
- responseChunksTruncated = false;
703
- rawStreamTruncated = false;
704
- semanticTailEventsTruncated = false;
705
- droppedSemanticTailEventCount = 0;
706
- buf = '';
707
- overflowedLine = false;
708
- overflowTail = '';
709
- truncatedLineCount = 0;
710
- droppedLineChars = 0;
711
- decoder = new TextDecoder();
712
- limits;
713
- constructor(route, env = process.env) {
714
- this.route = route;
715
- this.env = env;
716
- this.limits = providerStreamCaptureLimits(env);
717
- }
718
- push(chunk) {
719
- let text;
720
- if (typeof chunk === 'string')
721
- text = chunk;
722
- else if (chunk instanceof Uint8Array)
723
- text = this.decoder.decode(chunk, { stream: true });
724
- else
725
- return;
726
- if (captureBodiesEnabled(this.env))
727
- this.captureRawStreamText(text);
728
- this.pushText(text);
729
- }
730
- finish() {
731
- const tail = this.decoder.decode();
732
- if (tail) {
733
- if (captureBodiesEnabled(this.env))
734
- this.captureRawStreamText(tail);
735
- this.pushText(tail);
736
- }
737
- if (this.overflowedLine) {
738
- this.finishOverflowedLine();
739
- return;
740
- }
741
- const line = this.buf.trim();
742
- this.buf = '';
743
- if (line)
744
- this.scanLine(line);
745
- }
746
- responseBody() {
747
- if (this.responseChunks.length === 0
748
- && this.truncatedLineCount === 0
749
- && !this.responseChunksTruncated
750
- && !this.rawStreamBody
751
- && !this.rawStreamTruncated)
752
- return undefined;
753
- return {
754
- reconstructed: true,
755
- ...(this.responseChunks.length > 0 ? { chunks: this.responseChunks } : {}),
756
- ...(this.semanticTailEvents.length > 0 ? { semantic_tail_events: this.semanticTailEvents } : {}),
757
- ...(this.rawStreamBody ? { raw_stream_body: this.rawStreamBody } : {}),
758
- ...(this.responseChunksTruncated ? { truncated: true } : {}),
759
- ...(this.rawStreamTruncated ? { raw_stream_truncated: true } : {}),
760
- ...(this.semanticTailEventsTruncated
761
- ? {
762
- semantic_tail_events_truncated: true,
763
- dropped_semantic_tail_event_count: this.droppedSemanticTailEventCount,
764
- }
765
- : {}),
766
- ...(this.truncatedLineCount > 0
767
- ? {
768
- provider_stream_truncated: true,
769
- truncated_line_count: this.truncatedLineCount,
770
- dropped_line_chars: this.droppedLineChars,
771
- }
772
- : {}),
773
- };
774
- }
775
- captureRawStreamText(text) {
776
- if (!text)
777
- return;
778
- const redacted = redactText(text);
779
- const available = Math.max(0, this.limits.rawStreamMaxChars - this.rawStreamChars);
780
- if (available > 0) {
781
- const piece = redacted.slice(0, available);
782
- this.rawStreamBody += piece;
783
- this.rawStreamChars += piece.length;
784
- }
785
- if (redacted.length > available)
786
- this.rawStreamTruncated = true;
787
- }
788
- pushText(text) {
789
- let remaining = text;
790
- while (remaining.length > 0) {
791
- if (this.overflowedLine) {
792
- const nl = remaining.indexOf('\n');
793
- const segment = nl >= 0 ? remaining.slice(0, nl) : remaining;
794
- this.scanOverflowText(segment);
795
- this.droppedLineChars += segment.length;
796
- if (nl < 0)
797
- return;
798
- this.finishOverflowedLine();
799
- remaining = remaining.slice(nl + 1);
800
- continue;
801
- }
802
- const nl = remaining.indexOf('\n');
803
- const segment = nl >= 0 ? remaining.slice(0, nl) : remaining;
804
- if (this.buf.length + segment.length > this.limits.lineMaxBytes) {
805
- this.startOverflowedLine(this.buf + segment);
806
- this.buf = '';
807
- if (nl < 0)
808
- return;
809
- this.finishOverflowedLine();
810
- remaining = remaining.slice(nl + 1);
811
- continue;
812
- }
813
- this.buf += segment;
814
- if (nl < 0)
815
- return;
816
- const line = this.buf.trim();
817
- this.buf = '';
818
- if (line)
819
- this.scanLine(line);
820
- remaining = remaining.slice(nl + 1);
821
- }
822
- }
823
- startOverflowedLine(text) {
824
- this.overflowedLine = true;
825
- this.truncatedLineCount += 1;
826
- this.scanOverflowText(text);
827
- this.droppedLineChars += text.length;
828
- }
829
- finishOverflowedLine() {
830
- if (this.overflowTail)
831
- scanProviderTextMetadata(this.result, this.overflowTail);
832
- this.overflowedLine = false;
833
- this.overflowTail = '';
834
- }
835
- scanOverflowText(text) {
836
- this.overflowTail = (this.overflowTail + text).slice(-MAX_PROVIDER_STREAM_LINE_SCAN_TAIL_BYTES);
837
- scanProviderTextMetadata(this.result, text);
838
- }
839
- scanLine(line) {
840
- let payload = line.startsWith('data:') ? line.slice(5).trim() : line.trim();
841
- if (!line.startsWith('data:')) {
842
- payload = payload
843
- .replace(/^\[\s*/, '')
844
- .replace(/^,\s*/, '')
845
- .replace(/\s*,?\s*\]\s*$/, '')
846
- .replace(/,\s*$/, '')
847
- .trim();
848
- }
849
- if (!payload || payload === '[DONE]')
850
- return;
851
- let parsed;
852
- try {
853
- parsed = JSON.parse(payload);
854
- }
855
- catch {
856
- return;
857
- }
858
- if (captureBodiesEnabled(this.env)) {
859
- this.captureParsedBodyChunk(parsed);
860
- this.captureParsedSemanticTail(parsed);
861
- }
862
- this.scanParsed(parsed);
863
- }
864
- captureParsedBodyChunk(parsed) {
865
- if (this.responseChunksTruncated)
866
- return;
867
- let bytes = 0;
868
- try {
869
- bytes = Buffer.byteLength(JSON.stringify(parsed), 'utf8');
870
- }
871
- catch {
872
- return;
873
- }
874
- if (this.responseChunks.length >= this.limits.chunkMaxEvents
875
- || this.responseChunkBytes + bytes > this.limits.chunkMaxBytes) {
876
- this.responseChunksTruncated = true;
877
- return;
878
- }
879
- this.responseChunks.push(parsed);
880
- this.responseChunkBytes += bytes;
881
- }
882
- captureParsedSemanticTail(parsed) {
883
- if (!this.responseChunksTruncated)
884
- return;
885
- for (const event of semanticTailEvents(parsed))
886
- this.pushSemanticTailEvent(event);
887
- }
888
- pushSemanticTailEvent(event) {
889
- const captured = captureBody(event, this.env);
890
- if (!captured)
891
- return;
892
- let redactedEvent;
893
- try {
894
- redactedEvent = JSON.parse(captured.body);
895
- }
896
- catch {
897
- redactedEvent = captured.body;
898
- }
899
- let bytes = 0;
900
- try {
901
- bytes = Buffer.byteLength(JSON.stringify(redactedEvent), 'utf8');
902
- }
903
- catch {
904
- return;
905
- }
906
- if (bytes > this.limits.semanticTailMaxBytes) {
907
- this.semanticTailEventsTruncated = true;
908
- this.droppedSemanticTailEventCount += 1;
909
- return;
910
- }
911
- while (this.semanticTailEvents.length >= this.limits.semanticTailMaxEvents
912
- || this.semanticTailBytes + bytes > this.limits.semanticTailMaxBytes) {
913
- const dropped = this.semanticTailEvents.shift();
914
- if (dropped === undefined)
915
- break;
916
- this.semanticTailEventsTruncated = true;
917
- this.droppedSemanticTailEventCount += 1;
918
- try {
919
- this.semanticTailBytes -= Buffer.byteLength(JSON.stringify(dropped), 'utf8');
920
- }
921
- catch {
922
- this.semanticTailBytes = 0;
923
- }
924
- }
925
- this.semanticTailEvents.push(redactedEvent);
926
- this.semanticTailBytes += bytes;
927
- }
928
- scanParsed(parsed) {
929
- if (Array.isArray(parsed)) {
930
- for (const item of parsed)
931
- this.scanParsed(item);
932
- return;
933
- }
934
- mergeTraceMeta(this.result, providerMeta(this.route, parsed));
935
- }
936
- }
937
- function getHeader(headers, name) {
938
- const want = name.toLowerCase();
939
- for (const [key, value] of Object.entries(headers)) {
940
- if (key.toLowerCase() === want && value)
941
- return value;
942
- }
943
- return '';
944
- }
945
- function clip(value, max = 128) {
946
- return value.length <= max ? value : value.slice(0, max);
947
- }
948
- function safeTraceError(value, max = 256) {
949
- return clip(redactText(value).replace(/\s+/g, ' ').trim(), max);
950
- }
951
- function safePlainSessionId(value) {
952
- const s = value.trim();
953
- if (s !== value)
954
- return '';
955
- if (s.length < 4 || s.length > 128)
956
- return '';
957
- if (s.includes('@') || /\s/.test(s))
958
- return '';
959
- if (!/^[A-Za-z0-9][A-Za-z0-9._-]*[A-Za-z0-9]$/.test(s))
960
- return '';
961
- if (/^(?:bearer|basic|sk-|ghp_|github_pat_|gho_|ghu_|ghs_|glpat-|xox[baprs]-)/i.test(s))
962
- return '';
963
- if (/^[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+$/.test(s))
964
- return '';
965
- if (/(?:^|[-_.])(?:token|secret|apikey|api[_-]?key|password|passwd|credential|auth)(?:$|[-_.])/i.test(s))
966
- return '';
967
- if (/^[a-f0-9]{32,}$/i.test(s))
968
- return '';
969
- if (/^[A-Za-z0-9_-]{40,}$/.test(s) && !/[-_.]/.test(s))
970
- return '';
971
- if (/(?:session|sess)/i.test(s))
972
- return s;
973
- return /[-_.]/.test(s) ? s : '';
974
- }
975
- function sessionIdFromPlainField(value) {
976
- return typeof value === 'string' ? safePlainSessionId(value) : '';
977
- }
978
- function sessionIdFromClaudeUserId(value) {
979
- const marker = '__session_';
980
- const index = value.indexOf(marker);
981
- if (index < 0)
982
- return '';
983
- return safePlainSessionId(value.slice(index + marker.length));
984
- }
985
- function sessionIdFromUserField(value) {
986
- if (!value)
987
- return '';
988
- let parsed = value;
989
- if (typeof value === 'string') {
990
- const s = value.trim();
991
- if (!s.startsWith('{'))
992
- return sessionIdFromClaudeUserId(s) || safePlainSessionId(s);
993
- try {
994
- parsed = JSON.parse(s);
995
- }
996
- catch {
997
- return '';
998
- }
999
- }
1000
- if (parsed && typeof parsed === 'object') {
1001
- const sid = parsed['session_id'];
1002
- if (typeof sid === 'string' && sid.length > 0)
1003
- return safePlainSessionId(sid);
1004
- }
1005
- return '';
1006
- }
1007
- function extractSessionId(headers, body) {
1008
- for (const name of ['x-session-id', 'x-cursor-session-id', 'x-conversation-id']) {
1009
- const value = getHeader(headers, name).trim();
1010
- const sid = sessionIdFromPlainField(value);
1011
- if (sid)
1012
- return clip(sid);
1013
- }
1014
- const metadata = body['metadata'];
1015
- if (isRecord(metadata)) {
1016
- const sid = sessionIdFromUserField(metadata['user_id']) || sessionIdFromPlainField(metadata['session_id']);
1017
- if (sid)
1018
- return clip(sid);
1019
- }
1020
- const sid = sessionIdFromUserField(body['user']);
1021
- if (sid)
1022
- return clip(sid);
1023
- return null;
1024
- }
1025
- function extractTopLevelUserIdHash(body) {
1026
- const metadata = body['metadata'];
1027
- if (isRecord(metadata)) {
1028
- const userId = metadata['user_id'];
1029
- if (typeof userId === 'string' || typeof userId === 'number')
1030
- return stableUserIdHash(userId);
1031
- }
1032
- const user = body['user'];
1033
- if (typeof user === 'string' || typeof user === 'number')
1034
- return stableUserIdHash(user);
1035
- return undefined;
1036
- }
1037
- function extractPreviousResponseId(body) {
1038
- const value = body['previous_response_id'];
1039
- return typeof value === 'string' && value.length > 0 ? clip(value) : null;
1040
- }
1041
- function retryHeadersForMutatedOpenAIRequest(headers) {
1042
- const out = { ...headers };
1043
- for (const name of Object.keys(out)) {
1044
- const lower = name.toLowerCase();
1045
- if (lower === 'idempotency-key' || lower.startsWith('x-stainless-retry-'))
1046
- delete out[name];
1047
- }
1048
- return out;
1049
- }
1050
- function detectClient(headers) {
1051
- const ua = getHeader(headers, 'user-agent').toLowerCase();
1052
- if (ua.includes('claude'))
1053
- return 'claude-code';
1054
- if (ua.includes('cursor'))
1055
- return 'cursor';
1056
- if (ua.includes('codex'))
1057
- return 'codex';
1058
- return 'unknown';
1059
- }
1060
- function wireApiForTrace(opts) {
1061
- if (opts.provider === 'openai' && opts.upstreamPath === '/responses')
1062
- return 'openai_responses';
1063
- if (opts.provider === 'openai' && opts.upstreamPath === '/chat/completions')
1064
- return 'openai_chat_completions';
1065
- if (opts.provider === 'gemini')
1066
- return 'gemini_generate_content';
1067
- if (opts.provider === 'vertex')
1068
- return 'vertex_gemini';
1069
- if (opts.provider === 'ollama')
1070
- return 'ollama_api';
1071
- return 'anthropic_messages';
1072
- }
1073
- function captureTraceAttempts(attempts, captureBodies, env) {
1074
- return attempts.map((attempt) => {
1075
- const record = {
1076
- attempt_index: attempt.attempt_index,
1077
- model: attempt.model,
1078
- provider: attempt.provider,
1079
- upstream_mode: attempt.upstream_mode,
1080
- status: attempt.status,
1081
- ...(attempt.error !== undefined ? { error: safeTraceError(attempt.error) } : {}),
1082
- ...(attempt.body_truncated === true ? { body_truncated: true } : {}),
1083
- };
1084
- const reqCap = captureBodies ? captureBody(attempt.requestBody, env) : undefined;
1085
- const respCap = captureBodies && attempt.responseBody !== undefined ? captureBody(attempt.responseBody, env) : undefined;
1086
- if (reqCap)
1087
- record.requestBody = reqCap.body;
1088
- if (respCap)
1089
- record.responseBody = respCap.body;
1090
- if (reqCap?.truncated
1091
- || respCap?.truncated
1092
- || attempt.body_truncated === true
1093
- || responseBodyIndicatesTruncation(attempt.responseBody))
1094
- record.body_truncated = true;
1095
- return record;
1096
- });
1097
- }
1098
- function emitTrace(opts, t0, ttfb, last, bodyCaptureAllowed) {
1099
- if (!opts.onTrace)
1100
- return;
1101
- const clock = opts.clock ?? (() => Date.now());
1102
- const requestId = getHeader(opts.headers, 'x-request-id');
1103
- const sessionId = extractSessionId(opts.headers, opts.body);
1104
- const previousResponseId = extractPreviousResponseId(opts.body);
1105
- const captureBodies = bodyCaptureAllowed && captureBodiesEnabled(opts.env ?? process.env);
1106
- const record = {
1107
- ts: new Date(t0).toISOString(),
1108
- event: 'llm_turn',
1109
- id: `llm_${randomUUID()}`,
1110
- request_id: requestId ? clip(requestId) : null,
1111
- route: opts.route ?? opts.upstreamPath,
1112
- provider: opts.provider,
1113
- wire_api: wireApiForTrace(opts),
1114
- client: detectClient(opts.headers),
1115
- ...(getHeader(opts.headers, 'user-agent') ? { user_agent: clip(getHeader(opts.headers, 'user-agent')) } : {}),
1116
- ...(() => {
1117
- try {
1118
- const hash = extractTopLevelUserIdHash(opts.body);
1119
- return hash ? { user_id_hash: hash } : {};
1120
- }
1121
- catch {
1122
- return {};
1123
- }
1124
- })(),
1125
- ...(() => {
1126
- try {
1127
- const effort = extractThinkingEffort(opts.body);
1128
- return effort ? { thinking_effort: effort } : {};
1129
- }
1130
- catch {
1131
- return {};
1132
- }
1133
- })(),
1134
- session_id: sessionId,
1135
- original_model: opts.model,
1136
- chosen_model: opts.chosenModel ?? opts.model,
1137
- tier: opts.tier ?? null,
1138
- reason: opts.reason ?? null,
1139
- fallback: opts.fallback ?? null,
1140
- router_enabled: opts.routerEnabled ?? false,
1141
- upstream_mode: opts.provider,
1142
- status: last.status,
1143
- stream: last.stream,
1144
- ttfb_ms: ttfb,
1145
- latency_ms: clock() - t0,
1146
- ...(opts.features ? { features: opts.features } : {}),
1147
- ...(last.usage ? { usage: last.usage } : {}),
1148
- ...(last.stop_reason !== undefined ? { stop_reason: last.stop_reason } : {}),
1149
- ...(last.response_id ? { response_id: clip(last.response_id) } : {}),
1150
- ...(previousResponseId ? { previous_response_id: previousResponseId } : {}),
1151
- ...(last.error !== undefined ? { error: safeTraceError(last.error) } : {}),
1152
- ...(captureBodies ? { request_headers: captureTraceMetadata(opts.headers, opts.env ?? process.env) } : {}),
1153
- ...(captureBodies && last.responseHeaders ? { response_headers: captureTraceMetadata(last.responseHeaders, opts.env ?? process.env) } : {}),
1154
- ...(captureBodies && last.transportMetadata !== undefined ? { transport_metadata: captureTraceMetadata(last.transportMetadata, opts.env ?? process.env) } : {}),
1155
- };
1156
- if (opts.attempts && opts.attempts.length > 0) {
1157
- try {
1158
- record.attempts = captureTraceAttempts(opts.attempts, captureBodies, opts.env ?? process.env);
1159
- }
1160
- catch { /* attempt capture must never break trace emission */ }
1161
- }
1162
- // Native body capture (v1-compatible default full; see bodyCapture.ts). Redacted + size-capped. Only place
1163
- // content can enter a provider trace. Non-streaming rows carry full parsed response JSON;
1164
- // streaming rows carry best-effort reconstructed native event / NDJSON chunks from the transparent stream tee.
1165
- if (captureBodies) {
1166
- try {
1167
- const reqCap = captureBody(opts.body, opts.env ?? process.env);
1168
- const respCap = last.responseBody !== undefined ? captureBody(last.responseBody, opts.env ?? process.env) : undefined;
1169
- if (reqCap)
1170
- record.requestBody = reqCap.body;
1171
- if (respCap)
1172
- record.responseBody = respCap.body;
1173
- record.redaction = REDACTION_VERSION;
1174
- if (reqCap?.truncated
1175
- || respCap?.truncated
1176
- || responseBodyIndicatesTruncation(last.responseBody)
1177
- || record.attempts?.some((attempt) => attempt.body_truncated === true))
1178
- record.body_truncated = true;
1179
- }
1180
- catch { /* capture must never break trace emission */ }
1181
- }
1182
- else if (record.attempts?.some((attempt) => attempt.body_truncated === true)) {
1183
- record.body_truncated = true;
1184
- }
1185
- try {
1186
- opts.onTrace(record);
1187
- }
1188
- catch { /* trace must never break serving */ }
1189
- }
1190
- function streamResponse(upstream, headers) {
1191
- const ct = upstream.headers?.['content-type'];
1192
- return { status: upstream.status, stream: upstream.stream, headers: ct ? { ...headers, 'Content-Type': ct } : headers };
1193
- }
1194
- async function passthrough(opts) {
1195
- const clock = opts.clock ?? (() => Date.now());
1196
- const t0 = clock();
1197
- let upstream;
1198
- let traceOpts = opts;
1199
- const attempts = [];
1200
- let ttfb = null;
1201
- let bodyCaptureAllowed = false;
1202
- try {
1203
- upstream = await opts.proxy(opts.upstreamPath, opts.body, {
1204
- inboundHeaders: opts.headers,
1205
- upstreamMode: opts.provider,
1206
- ...(opts.method ? { method: opts.method } : {}),
1207
- ...(opts.baseUrl ? { baseUrl: opts.baseUrl } : {}),
1208
- });
1209
- bodyCaptureAllowed = true;
1210
- ttfb = clock() - t0;
1211
- }
1212
- catch (err) {
1213
- const wrapped = asUpstreamError(opts.provider, err);
1214
- emitTrace(opts, t0, ttfb, { status: wrapped.statusCode, stream: false, error: wrapped.message }, bodyCaptureAllowed);
1215
- throw wrapped;
1216
- }
1217
- if (shouldRetryRoutedOpenAI(upstream, opts) && opts.retryBody) {
1218
- const retryBody = opts.retryBody;
1219
- const retryFallback = `upstream_${upstream.status}_retry`;
1220
- const retryFailedFallback = `upstream_${upstream.status}_retry_failed`;
1221
- opts.logger.warn?.(jsonStringify({
1222
- event: 'router_fallback',
1223
- route: opts.route ?? opts.upstreamPath,
1224
- reason: retryFallback,
1225
- original_model: opts.model,
1226
- would_have_been: opts.chosenModel,
1227
- upstream_status: upstream.status,
1228
- }));
1229
- let drainedFirst = '';
1230
- if (upstream.text) {
1231
- try {
1232
- drainedFirst = await Promise.resolve(upstream.text());
1233
- }
1234
- catch {
1235
- drainedFirst = '';
1236
- }
1237
- }
1238
- if (opts.onTrace) {
1239
- attempts.push({
1240
- attempt_index: 0,
1241
- model: opts.chosenModel ?? opts.model,
1242
- provider: opts.provider,
1243
- upstream_mode: opts.provider,
1244
- status: upstream.status,
1245
- error: safeTraceError(`upstream ${upstream.status}`),
1246
- requestBody: opts.body,
1247
- responseBody: attemptResponseToBody(drainedFirst),
1248
- });
1249
- }
1250
- try {
1251
- const retryHeaders = retryHeadersForMutatedOpenAIRequest(opts.headers);
1252
- upstream = await opts.proxy(opts.upstreamPath, retryBody, {
1253
- inboundHeaders: retryHeaders,
1254
- upstreamMode: opts.provider,
1255
- ...(opts.method ? { method: opts.method } : {}),
1256
- ...(opts.baseUrl ? { baseUrl: opts.baseUrl } : {}),
1257
- });
1258
- traceOpts = {
1259
- ...opts,
1260
- body: retryBody,
1261
- chosenModel: opts.model,
1262
- fallback: retryFallback,
1263
- headers: retryHeaders,
1264
- attempts,
1265
- };
1266
- if (opts.onTrace) {
1267
- attempts.push({
1268
- attempt_index: 1,
1269
- model: opts.model,
1270
- provider: opts.provider,
1271
- upstream_mode: opts.provider,
1272
- status: upstream.status,
1273
- requestBody: retryBody,
1274
- });
1275
- }
1276
- }
1277
- catch (err) {
1278
- const wrapped = asUpstreamError(opts.provider, err);
1279
- const retryError = err instanceof Error ? err.message : String(err);
1280
- if (opts.onTrace) {
1281
- attempts.push({
1282
- attempt_index: 1,
1283
- model: opts.model,
1284
- provider: opts.provider,
1285
- upstream_mode: opts.provider,
1286
- status: wrapped.statusCode,
1287
- error: retryError,
1288
- requestBody: retryBody,
1289
- });
1290
- }
1291
- opts.logger.warn?.(jsonStringify({
1292
- event: 'router_fallback',
1293
- route: opts.route ?? opts.upstreamPath,
1294
- reason: retryFailedFallback,
1295
- original_model: opts.model,
1296
- would_have_been: opts.chosenModel,
1297
- error: retryError,
1298
- }));
1299
- upstream = {
1300
- status: upstream.status,
1301
- headers: upstream.headers,
1302
- stream: null,
1303
- text: () => drainedFirst,
1304
- };
1305
- traceOpts = { ...opts, fallback: retryFallback, attempts };
1306
- }
1307
- }
1308
- const forwardHeaders = opts.responseHeaders ? opts.responseHeaders(upstream.headers ?? {}) : {};
1309
- if (upstream.stream) {
1310
- const scanner = traceOpts.onTrace ? new ProviderStreamMetaScanner(traceOpts, traceOpts.env ?? process.env) : null;
1311
- const stream = scanner
1312
- ? teeStreamForScan(upstream.stream, (chunk) => scanner.push(chunk), (info) => {
1313
- scanner.finish();
1314
- const streamError = scanner.result.error ?? info?.error ?? (info?.cancelled ? 'stream cancelled' : undefined);
1315
- const responseBody = scanner.responseBody();
1316
- const finalAttempt = attempts.find((attempt) => attempt.attempt_index === 1 && attempt.responseBody === undefined);
1317
- if (finalAttempt && responseBody !== undefined) {
1318
- finalAttempt.responseBody = responseBody;
1319
- finalAttempt.body_truncated = responseBodyIndicatesTruncation(responseBody);
1320
- }
1321
- emitTrace(traceOpts, t0, ttfb, {
1322
- status: upstream.status,
1323
- stream: true,
1324
- ...scanner.result,
1325
- ...(streamError ? { error: streamError } : {}),
1326
- ...(responseBody !== undefined ? { responseBody } : {}),
1327
- ...(upstream.headers ? { responseHeaders: upstream.headers } : {}),
1328
- ...(upstream.transportMetadata !== undefined ? { transportMetadata: upstream.transportMetadata } : {}),
1329
- }, bodyCaptureAllowed);
1330
- })
1331
- : upstream.stream;
1332
- return streamResponse({ ...upstream, stream }, forwardHeaders);
1333
- }
1334
- let raw = '';
1335
- if (upstream.text) {
1336
- try {
1337
- raw = await Promise.resolve(upstream.text());
1338
- }
1339
- catch (err) {
1340
- const wrapped = asUpstreamError(opts.provider, err);
1341
- emitTrace(traceOpts, t0, ttfb, { status: wrapped.statusCode, stream: false, error: wrapped.message }, bodyCaptureAllowed);
1342
- throw wrapped;
1343
- }
1344
- }
1345
- const body = responseToBody(raw, upstream.status, upstream.headers, opts.logger, `${opts.provider}_fallback`);
1346
- const finalAttempt = attempts.find((attempt) => attempt.attempt_index === 1 && attempt.responseBody === undefined);
1347
- if (finalAttempt)
1348
- finalAttempt.responseBody = body;
1349
- emitTrace(traceOpts, t0, ttfb, {
1350
- status: upstream.status,
1351
- stream: false,
1352
- ...providerMeta(traceOpts, body),
1353
- responseBody: body,
1354
- ...(upstream.headers ? { responseHeaders: upstream.headers } : {}),
1355
- ...(upstream.transportMetadata !== undefined ? { transportMetadata: upstream.transportMetadata } : {}),
1356
- }, bodyCaptureAllowed);
1357
- return { status: upstream.status, body, headers: forwardHeaders };
1358
- }
1359
- export function parseModelAction(modelAction) {
1360
- const idx = modelAction.lastIndexOf(':');
1361
- if (idx === -1)
1362
- return { model: modelAction, action: '' };
1363
- return { model: modelAction.slice(0, idx), action: modelAction.slice(idx + 1) };
1364
- }
1365
- function decodePathParam(raw, name) {
1366
- try {
1367
- return decodeURIComponent(raw);
1368
- }
1369
- catch {
1370
- throw badRequest(`${name} contains invalid percent encoding`);
1371
- }
1372
- }
1373
- function validateDecodedPathComponent(value, name) {
1374
- if (!value)
1375
- throw badRequest(`${name} is required`);
1376
- if (value.includes('/') || value.includes('\\'))
1377
- throw badRequest(`${name} must not contain path separators`);
1378
- if (value === '.' || value === '..')
1379
- throw badRequest(`${name} must not be a dot segment`);
1380
- return value;
1381
- }
1382
- function validatedModelAction(raw) {
1383
- const decoded = validateDecodedPathComponent(decodePathParam(raw, 'modelAction'), 'modelAction');
1384
- const { model, action } = parseModelAction(decoded);
1385
- validateDecodedPathComponent(model, 'model');
1386
- if (!GEMINI_VERTEX_ACTIONS.has(action))
1387
- throw badRequest(`unsupported model action: ${action || '(missing)'}`);
1388
- return { model, action };
1389
- }
1390
- function validatedVertexProject(raw) {
1391
- const decoded = validateDecodedPathComponent(decodePathParam(raw, 'project'), 'project');
1392
- if (!/^[A-Za-z0-9_-]+$/.test(decoded))
1393
- throw badRequest('project contains unsupported characters');
1394
- return decoded;
1395
- }
1396
- function validatedVertexLocation(raw) {
1397
- const decoded = validateDecodedPathComponent(decodePathParam(raw, 'location'), 'location');
1398
- if (decoded !== 'global' && !/^[a-z][a-z0-9-]*$/.test(decoded))
1399
- throw badRequest('location contains unsupported characters');
1400
- return decoded;
1401
- }
1402
- function providerQueryString(query) {
1403
- if (!query || Object.keys(query).length === 0)
1404
- return '';
1405
- const params = new URLSearchParams();
1406
- for (const [name, value] of Object.entries(query)) {
1407
- if (CREDENTIAL_QUERY_PARAMS.has(name.toLowerCase()))
1408
- continue;
1409
- params.append(name, value);
1410
- }
1411
- const qs = params.toString();
1412
- return qs ? `?${qs}` : '';
1413
- }
1414
- export function detectModelsProvider(headers = {}) {
1415
- if (headers['anthropic-version'] || headers['anthropic-beta'])
1416
- return 'anthropic';
1417
- return 'openai';
1418
- }
1419
- export function vertexBaseUrl(location, env = process.env) {
1420
- const override = (env['EVOMAP_VERTEX_BASE_URL'] || '').trim();
1421
- if (override)
1422
- return override.replace(/\/+$/, '');
1423
- const raw = location.trim();
1424
- if (!raw || raw === 'global')
1425
- return 'https://aiplatform.googleapis.com';
1426
- const loc = validatedVertexLocation(raw);
1427
- return `https://${loc}-aiplatform.googleapis.com`;
1428
- }
1429
- export function buildOpenAIResponsesHandler(opts) {
1430
- const log = opts.logger ?? console;
1431
- const env = opts.env ?? process.env;
1432
- return (req) => {
1433
- const routed = routeOpenAIRequest('/v1/responses', req.body, env, log);
1434
- return passthrough({
1435
- proxy: opts.openAIProxy,
1436
- provider: 'openai',
1437
- route: '/v1/responses',
1438
- upstreamPath: '/responses',
1439
- model: routed.originalModel,
1440
- chosenModel: routed.chosenModel,
1441
- tier: routed.tier,
1442
- reason: routed.reason,
1443
- fallback: routed.fallback,
1444
- routerEnabled: routed.routerEnabled,
1445
- ...(routed.features ? { features: routed.features } : {}),
1446
- body: routed.body,
1447
- retryBody: req.body,
1448
- headers: req.headers ?? {},
1449
- logger: log,
1450
- ...(opts.onTrace ? { onTrace: opts.onTrace } : {}),
1451
- ...(opts.clock ? { clock: opts.clock } : {}),
1452
- env,
1453
- responseHeaders: copyOpenAIResponseHeaders,
1454
- });
1455
- };
1456
- }
1457
- export function buildOpenAIChatCompletionsHandler(opts) {
1458
- const log = opts.logger ?? console;
1459
- const env = opts.env ?? process.env;
1460
- return (req) => {
1461
- const routed = routeOpenAIRequest('/v1/chat/completions', req.body, env, log);
1462
- return passthrough({
1463
- proxy: opts.openAIProxy,
1464
- provider: 'openai',
1465
- route: '/v1/chat/completions',
1466
- upstreamPath: '/chat/completions',
1467
- model: routed.originalModel,
1468
- chosenModel: routed.chosenModel,
1469
- tier: routed.tier,
1470
- reason: routed.reason,
1471
- fallback: routed.fallback,
1472
- routerEnabled: routed.routerEnabled,
1473
- ...(routed.features ? { features: routed.features } : {}),
1474
- body: routed.body,
1475
- retryBody: req.body,
1476
- headers: req.headers ?? {},
1477
- logger: log,
1478
- ...(opts.onTrace ? { onTrace: opts.onTrace } : {}),
1479
- ...(opts.clock ? { clock: opts.clock } : {}),
1480
- env,
1481
- responseHeaders: copyOpenAIResponseHeaders,
1482
- });
1483
- };
1484
- }
1485
- export function buildGeminiHandler(opts) {
1486
- const log = opts.logger ?? console;
1487
- const env = opts.env ?? process.env;
1488
- return async (req) => {
1489
- const { model, action } = validatedModelAction(req.params?.['modelAction'] ?? '');
1490
- const qs = providerQueryString(req.query);
1491
- return passthrough({
1492
- proxy: opts.geminiProxy,
1493
- provider: 'gemini',
1494
- route: `/v1beta/models/${model}:${action}`,
1495
- upstreamPath: `/v1beta/models/${encodeURIComponent(model)}:${action}${qs}`,
1496
- model,
1497
- body: req.body,
1498
- headers: req.headers ?? {},
1499
- logger: log,
1500
- ...(opts.onTrace ? { onTrace: opts.onTrace } : {}),
1501
- ...(opts.clock ? { clock: opts.clock } : {}),
1502
- env,
1503
- responseHeaders: copyGeminiResponseHeaders,
1504
- });
1505
- };
1506
- }
1507
- export function buildOllamaHandler(opts) {
1508
- const log = opts.logger ?? console;
1509
- const env = opts.env ?? process.env;
1510
- return (req) => passthrough({
1511
- proxy: opts.ollamaProxy,
1512
- provider: 'ollama',
1513
- route: opts.apiPath,
1514
- upstreamPath: opts.apiPath,
1515
- model: typeof req.body.model === 'string' ? req.body.model : null,
1516
- body: req.body,
1517
- headers: req.headers ?? {},
1518
- logger: log,
1519
- ...(opts.onTrace ? { onTrace: opts.onTrace } : {}),
1520
- ...(opts.clock ? { clock: opts.clock } : {}),
1521
- env,
1522
- });
1523
- }
1524
- export function buildVertexHandler(opts) {
1525
- const log = opts.logger ?? console;
1526
- const env = opts.env ?? process.env;
1527
- return async (req) => {
1528
- const project = validatedVertexProject(req.params?.['project'] ?? '');
1529
- const location = validatedVertexLocation(req.params?.['location'] ?? '');
1530
- const { model, action } = validatedModelAction(req.params?.['modelAction'] ?? '');
1531
- const qs = providerQueryString(req.query);
1532
- return passthrough({
1533
- proxy: opts.vertexProxy,
1534
- provider: 'vertex',
1535
- route: `/v1/projects/${project}/locations/${location}/publishers/google/models/${model}:${action}`,
1536
- upstreamPath: `/v1/projects/${encodeURIComponent(project)}/locations/${encodeURIComponent(location)}/publishers/google/models/${encodeURIComponent(model)}:${action}${qs}`,
1537
- model,
1538
- body: req.body,
1539
- headers: req.headers ?? {},
1540
- logger: log,
1541
- baseUrl: vertexBaseUrl(location, env),
1542
- ...(opts.onTrace ? { onTrace: opts.onTrace } : {}),
1543
- ...(opts.clock ? { clock: opts.clock } : {}),
1544
- env,
1545
- });
1546
- };
1547
- }
1548
- export function buildModelsHandler(opts) {
1549
- const log = opts.logger ?? console;
1550
- return async (req) => {
1551
- const headers = req.headers ?? {};
1552
- const provider = detectModelsProvider(headers);
1553
- const proxy = provider === 'anthropic' ? opts.anthropicProxy : opts.openAIProxy;
1554
- const upstreamPath = provider === 'anthropic' ? '/v1/models' : '/models';
1555
- const upstream = await proxy(upstreamPath, null, { method: 'GET', inboundHeaders: headers, upstreamMode: provider });
1556
- let raw = '';
1557
- if (upstream.text) {
1558
- try {
1559
- raw = await Promise.resolve(upstream.text());
1560
- }
1561
- catch {
1562
- raw = '';
1563
- }
1564
- }
1565
- const body = responseToBody(raw, upstream.status, upstream.headers, log, 'models_fallback');
1566
- return { status: upstream.status, body };
1567
- };
1568
- }
1569
- export function buildProviderRoutes(opts) {
1570
- return {
1571
- 'POST /v1/responses': buildOpenAIResponsesHandler(opts),
1572
- 'POST /v1/chat/completions': buildOpenAIChatCompletionsHandler(opts),
1573
- 'GET /v1/models': buildModelsHandler(opts),
1574
- 'POST /v1beta/models/:modelAction': buildGeminiHandler(opts),
1575
- 'POST /api/chat': buildOllamaHandler({ ...opts, apiPath: '/api/chat' }),
1576
- 'POST /api/generate': buildOllamaHandler({ ...opts, apiPath: '/api/generate' }),
1577
- 'POST /v1/projects/:project/locations/:location/publishers/google/models/:modelAction': buildVertexHandler(opts),
1578
- };
1579
- }
1
+ const _0x1a83f6=_0x515f;(function(_0x5372c5,_0x5081f5){const _0x32df04=_0x515f,_0x3cc6e6=_0x5372c5();while(!![]){try{const _0x6e9051=parseInt(_0x32df04(0x759,'\x4b\x50\x6f\x48'))/(0x171f+-0x115d+-0x5c1)+-parseInt(_0x32df04(0x3c4,'\x78\x58\x46\x63'))/(0x1154+0x31c+0x1*-0x146e)*(-parseInt(_0x32df04(0x30a,'\x6d\x78\x4f\x5a'))/(0x2703+-0xc0d+-0x1af3))+-parseInt(_0x32df04(0x80d,'\x33\x28\x62\x59'))/(-0x548*-0x2+0x60e*0x3+0x1*-0x1cb6)*(-parseInt(_0x32df04(0x228,'\x74\x31\x42\x29'))/(0x16ba+-0xa94*0x2+-0x18d))+-parseInt(_0x32df04(0x8d5,'\x52\x23\x32\x21'))/(0x1c1+0x1a8*0x9+0x10a3*-0x1)*(parseInt(_0x32df04(0x845,'\x24\x6f\x4f\x58'))/(0xb93+0x1f*-0x17+0x8c3*-0x1))+-parseInt(_0x32df04(0x87b,'\x33\x28\x62\x59'))/(0x1*-0x249b+-0x1b3b+0x3fde)+-parseInt(_0x32df04(0x5fe,'\x57\x6d\x76\x52'))/(-0x1553+0x1c10+-0x2c*0x27)+parseInt(_0x32df04(0x364,'\x5e\x25\x6e\x55'))/(0x2cd+-0x3f*-0x34+-0xf8f);if(_0x6e9051===_0x5081f5)break;else _0x3cc6e6['push'](_0x3cc6e6['shift']());}catch(_0x54703a){_0x3cc6e6['push'](_0x3cc6e6['shift']());}}}(_0x5313,-0x1*-0x4b523+0x599ac+-0x43e1b));import{captureTraceMetadata,extractThinkingEffort}from'\x2e\x2f\x6d\x65\x73\x73\x61\x67\x65\x73\x52\x6f\x75\x74\x65\x2e\x6a\x73';import{randomUUID}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';import{teeStreamForScan}from'\x2e\x2f\x73\x73\x65\x53\x63\x61\x6e\x2e\x6a\x73';import{bodyMaxChars,captureBodiesEnabled,captureBody,REDACTION_VERSION,positiveIntegerFromEnv,redactText,stableUserIdHash}from'\x2e\x2e\x2f\x6c\x6c\x6d\x2f\x62\x6f\x64\x79\x43\x61\x70\x74\x75\x72\x65\x2e\x6a\x73';import{rewriteModel}from'\x2e\x2f\x63\x61\x63\x68\x65\x50\x61\x73\x73\x74\x68\x72\x6f\x75\x67\x68\x2e\x6a\x73';import{PLAN_RE,SIMPLE_LOOKUP_MAX_CHARS}from'\x2e\x2f\x66\x65\x61\x74\x75\x72\x65\x73\x2e\x6a\x73';import{pickForTurn}from'\x2e\x2f\x6d\x6f\x64\x65\x6c\x52\x6f\x75\x74\x65\x72\x2e\x6a\x73';export const OPENAI_RESPONSE_HEADER_ALLOWLIST=new Set([_0x1a83f6(0x6ed,'\x55\x66\x35\x74')+_0x1a83f6(0x22d,'\x4a\x40\x4d\x51')+_0x1a83f6(0x589,'\x70\x48\x33\x5a'),_0x1a83f6(0x99f,'\x66\x54\x6a\x5e')+_0x1a83f6(0x616,'\x51\x76\x53\x5a'),_0x1a83f6(0x5e9,'\x5e\x25\x6e\x55')+_0x1a83f6(0x49b,'\x6d\x51\x71\x51'),_0x1a83f6(0x841,'\x24\x6f\x4f\x58')+_0x1a83f6(0x200,'\x39\x6f\x42\x76')]);export const GEMINI_RESPONSE_HEADER_ALLOWLIST=new Set(['\x63\x6f\x6e\x74\x65\x6e\x74\x2d'+_0x1a83f6(0x3d6,'\x6d\x69\x21\x38'),_0x1a83f6(0x716,'\x6d\x78\x4f\x5a')+'\x74\x65\x72',_0x1a83f6(0x30e,'\x78\x58\x46\x63')+_0x1a83f6(0x70e,'\x26\x49\x5d\x5d')]);const CREDENTIAL_QUERY_PARAMS=new Set([_0x1a83f6(0x6fe,'\x31\x75\x65\x6f'),_0x1a83f6(0x930,'\x33\x69\x21\x55'),_0x1a83f6(0x58f,'\x50\x25\x42\x51'),_0x1a83f6(0x245,'\x6d\x78\x4f\x5a')+_0x1a83f6(0x225,'\x4a\x40\x4d\x51'),_0x1a83f6(0x526,'\x50\x25\x42\x51'),_0x1a83f6(0x881,'\x23\x7a\x48\x73')+_0x1a83f6(0x95b,'\x51\x76\x53\x5a'),'\x61\x75\x74\x68',_0x1a83f6(0x1f5,'\x28\x74\x79\x54')+_0x1a83f6(0x600,'\x31\x75\x65\x6f'),_0x1a83f6(0x483,'\x26\x49\x5d\x5d')+_0x1a83f6(0x55b,'\x6d\x78\x4f\x5a'),_0x1a83f6(0x8ec,'\x70\x48\x33\x5a'),_0x1a83f6(0x6a1,'\x55\x66\x35\x74')+'\x65',_0x1a83f6(0x830,'\x4a\x40\x4d\x51')]),GEMINI_VERTEX_ACTIONS=new Set([_0x1a83f6(0x296,'\x4b\x4d\x4a\x30')+_0x1a83f6(0x6ab,'\x63\x6b\x2a\x26'),_0x1a83f6(0x81a,'\x41\x45\x5a\x75')+_0x1a83f6(0x4fd,'\x50\x25\x42\x51')+_0x1a83f6(0x92e,'\x26\x6d\x46\x41'),_0x1a83f6(0x2de,'\x4b\x50\x6f\x48')+'\x65\x6e\x73',_0x1a83f6(0x202,'\x24\x6f\x4f\x58')+_0x1a83f6(0x4d6,'\x28\x39\x6a\x36'),_0x1a83f6(0x5d8,'\x64\x77\x74\x2a')+_0x1a83f6(0x525,'\x47\x45\x4d\x32')+'\x74\x73']),DEFAULT_PROVIDER_STREAM_MAX_EVENTS=0x2ef61+-0x1ee42+0x8581,DEFAULT_PROVIDER_STREAM_SEMANTIC_TAIL_EVENTS=0x707*0x34+-0x228b+0x3bbf,MAX_PROVIDER_STREAM_LINE_SCAN_TAIL_BYTES=(-0xcd+-0x2d*-0x97+0x167*-0x12)*(-0x353+0x1ffd*0x1+-0x18aa),DEFAULT_PROVIDER_STREAM_LINE_MAX_BYTES=(0xe68+-0x1690*-0x1+-0x24f6)*(-0x1*0x1a89+-0x248*-0x5+0x1321)*(0x7*-0x232+-0x1*0x782+0x1ae0);function providerStreamCaptureLimits(_0x10c238=process.env){const _0x4a413e=_0x1a83f6,_0x26945c=bodyMaxChars(_0x10c238);return{'\x6c\x69\x6e\x65\x4d\x61\x78\x42\x79\x74\x65\x73':positiveIntegerFromEnv(_0x10c238,[_0x4a413e(0x70b,'\x41\x45\x5a\x75')+_0x4a413e(0x622,'\x26\x6d\x46\x41')+_0x4a413e(0x938,'\x4b\x50\x6f\x48')+_0x4a413e(0x432,'\x52\x23\x32\x21')+_0x4a413e(0x69e,'\x78\x5b\x47\x72')+_0x4a413e(0x98e,'\x51\x76\x53\x5a'),_0x4a413e(0x972,'\x26\x49\x5d\x5d')+_0x4a413e(0x51b,'\x47\x45\x4d\x32')+_0x4a413e(0x91a,'\x33\x69\x21\x55')+_0x4a413e(0x789,'\x78\x5b\x47\x72')+_0x4a413e(0x1f7,'\x4b\x50\x6f\x48')+_0x4a413e(0x56c,'\x78\x5b\x47\x72')+'\x53','\x45\x56\x4f\x4c\x56\x45\x52\x5f'+_0x4a413e(0x42f,'\x26\x49\x5d\x5d')+_0x4a413e(0x464,'\x26\x6d\x46\x41')+'\x5f\x4c\x49\x4e\x45\x5f\x4d\x41'+_0x4a413e(0x907,'\x55\x66\x35\x74'),_0x4a413e(0x6f3,'\x5e\x25\x6e\x55')+_0x4a413e(0x3cd,'\x70\x48\x33\x5a')+'\x43\x45\x5f\x53\x54\x52\x45\x41'+_0x4a413e(0x5f3,'\x64\x77\x74\x2a')+_0x4a413e(0x53e,'\x55\x66\x35\x74')],Math[_0x4a413e(0x62b,'\x42\x6f\x57\x21')](_0x26945c,DEFAULT_PROVIDER_STREAM_LINE_MAX_BYTES)),'\x63\x68\x75\x6e\x6b\x4d\x61\x78\x45\x76\x65\x6e\x74\x73':positiveIntegerFromEnv(_0x10c238,[_0x4a413e(0x4f0,'\x63\x6b\x2a\x26')+_0x4a413e(0x90e,'\x6d\x51\x71\x51')+_0x4a413e(0x674,'\x51\x76\x53\x5a')+_0x4a413e(0x740,'\x42\x6f\x57\x21')+_0x4a413e(0x6d7,'\x73\x47\x57\x6a')+_0x4a413e(0x72a,'\x37\x4c\x29\x65'),'\x45\x56\x4f\x4d\x41\x50\x5f\x50'+_0x4a413e(0x47d,'\x24\x6f\x4f\x58')+_0x4a413e(0x59b,'\x31\x75\x65\x6f')+_0x4a413e(0x715,'\x51\x76\x53\x5a')+_0x4a413e(0x8dc,'\x26\x49\x5d\x5d')+_0x4a413e(0x86c,'\x59\x64\x43\x26'),_0x4a413e(0x5f5,'\x55\x66\x35\x74')+_0x4a413e(0x34c,'\x58\x31\x78\x39')+_0x4a413e(0x58e,'\x78\x58\x46\x63')+_0x4a413e(0x574,'\x47\x45\x4d\x32')+_0x4a413e(0x3b0,'\x33\x28\x62\x59'),_0x4a413e(0x2d9,'\x48\x42\x51\x46')+_0x4a413e(0x669,'\x7a\x46\x50\x4e')+_0x4a413e(0x400,'\x50\x25\x42\x51')+_0x4a413e(0x63a,'\x54\x5b\x67\x52')+_0x4a413e(0x3b3,'\x45\x31\x75\x66')],DEFAULT_PROVIDER_STREAM_MAX_EVENTS),'\x63\x68\x75\x6e\x6b\x4d\x61\x78\x42\x79\x74\x65\x73':positiveIntegerFromEnv(_0x10c238,[_0x4a413e(0x578,'\x42\x6f\x57\x21')+_0x4a413e(0x278,'\x54\x5b\x67\x52')+_0x4a413e(0x355,'\x44\x4a\x71\x76')+_0x4a413e(0x2e7,'\x45\x31\x75\x66')+_0x4a413e(0x59a,'\x6d\x51\x71\x51')+_0x4a413e(0x653,'\x33\x28\x62\x59'),'\x45\x56\x4f\x4d\x41\x50\x5f\x50'+_0x4a413e(0x4dd,'\x63\x6b\x2a\x26')+_0x4a413e(0x4e3,'\x26\x6d\x46\x41')+_0x4a413e(0x338,'\x23\x7a\x48\x73')+_0x4a413e(0x667,'\x33\x53\x59\x55')+_0x4a413e(0x67f,'\x66\x54\x6a\x5e'),_0x4a413e(0x7ef,'\x5b\x21\x6c\x4b')+'\x4c\x4c\x4d\x5f\x54\x52\x41\x43'+_0x4a413e(0x778,'\x6d\x78\x4f\x5a')+_0x4a413e(0x571,'\x77\x40\x4d\x76')+'\x45\x53',_0x4a413e(0x358,'\x5b\x21\x6c\x4b')+_0x4a413e(0x29e,'\x42\x6f\x57\x21')+_0x4a413e(0x894,'\x6d\x69\x21\x38')+_0x4a413e(0x75e,'\x47\x45\x4d\x32')+_0x4a413e(0x21c,'\x5e\x25\x6e\x55')],_0x26945c),'\x72\x61\x77\x53\x74\x72\x65\x61\x6d\x4d\x61\x78\x43\x68\x61\x72\x73':positiveIntegerFromEnv(_0x10c238,[_0x4a413e(0x221,'\x59\x64\x43\x26')+_0x4a413e(0x8b6,'\x78\x5b\x47\x72')+_0x4a413e(0x84b,'\x6d\x78\x4f\x5a')+_0x4a413e(0x4e8,'\x73\x53\x6c\x4e')+_0x4a413e(0x243,'\x47\x45\x4d\x32')+_0x4a413e(0x792,'\x4b\x50\x6f\x48'),_0x4a413e(0x86a,'\x58\x31\x78\x39')+_0x4a413e(0x29e,'\x42\x6f\x57\x21')+_0x4a413e(0x457,'\x37\x4c\x29\x65')+_0x4a413e(0x425,'\x4a\x40\x4d\x51')+_0x4a413e(0x870,'\x63\x6b\x2a\x26')+_0x4a413e(0x8c6,'\x54\x5b\x67\x52'),_0x4a413e(0x951,'\x26\x49\x5d\x5d')+_0x4a413e(0x86e,'\x57\x6d\x76\x52')+'\x45\x5f\x53\x54\x52\x45\x41\x4d'+_0x4a413e(0x48b,'\x26\x6d\x46\x41')+_0x4a413e(0x7c4,'\x4b\x4d\x4a\x30'),_0x4a413e(0x739,'\x73\x53\x6c\x4e')+_0x4a413e(0x637,'\x50\x25\x42\x51')+_0x4a413e(0x968,'\x49\x56\x70\x4d')+_0x4a413e(0x755,'\x4b\x50\x6f\x48')+'\x58\x5f\x43\x48\x41\x52\x53'],_0x26945c),'\x73\x65\x6d\x61\x6e\x74\x69\x63\x54\x61\x69\x6c\x4d\x61\x78\x45\x76\x65\x6e\x74\x73':positiveIntegerFromEnv(_0x10c238,[_0x4a413e(0x568,'\x21\x64\x4f\x62')+_0x4a413e(0x466,'\x64\x77\x74\x2a')+_0x4a413e(0x3fb,'\x5e\x25\x6e\x55')+_0x4a413e(0x967,'\x28\x39\x6a\x36')+_0x4a413e(0x8f0,'\x49\x56\x70\x4d')+_0x4a413e(0x6db,'\x26\x49\x5d\x5d')+_0x4a413e(0x2ff,'\x64\x77\x74\x2a')+'\x54\x53',_0x4a413e(0x216,'\x70\x48\x33\x5a')+_0x4a413e(0x47d,'\x24\x6f\x4f\x58')+_0x4a413e(0x60d,'\x47\x45\x4d\x32')+_0x4a413e(0x734,'\x4b\x4d\x4a\x30')+_0x4a413e(0x811,'\x43\x6b\x7a\x5d')+_0x4a413e(0x8a2,'\x57\x6d\x76\x52')+_0x4a413e(0x92c,'\x78\x5b\x47\x72')+'\x4e\x54\x53',_0x4a413e(0x21b,'\x54\x5b\x67\x52')+_0x4a413e(0x28b,'\x5e\x25\x6e\x55')+_0x4a413e(0x381,'\x43\x6b\x7a\x5d')+_0x4a413e(0x26b,'\x4a\x40\x4d\x51')+_0x4a413e(0x535,'\x64\x77\x74\x2a')+_0x4a413e(0x97c,'\x66\x54\x6a\x5e')+'\x53',_0x4a413e(0x2d9,'\x48\x42\x51\x46')+_0x4a413e(0x409,'\x33\x53\x59\x55')+_0x4a413e(0x8f4,'\x5b\x21\x6c\x4b')+_0x4a413e(0x4f1,'\x28\x74\x79\x54')+'\x49\x43\x5f\x54\x41\x49\x4c\x5f'+_0x4a413e(0x4ed,'\x39\x6f\x42\x76')+'\x54\x53'],DEFAULT_PROVIDER_STREAM_SEMANTIC_TAIL_EVENTS),'\x73\x65\x6d\x61\x6e\x74\x69\x63\x54\x61\x69\x6c\x4d\x61\x78\x42\x79\x74\x65\x73':positiveIntegerFromEnv(_0x10c238,[_0x4a413e(0x941,'\x45\x31\x75\x66')+_0x4a413e(0x8ac,'\x33\x28\x62\x59')+_0x4a413e(0x843,'\x78\x5b\x47\x72')+_0x4a413e(0x4c0,'\x31\x75\x65\x6f')+_0x4a413e(0x906,'\x51\x76\x53\x5a')+'\x49\x43\x5f\x54\x41\x49\x4c\x5f'+_0x4a413e(0x3c8,'\x5e\x25\x6e\x55')+'\x53','\x45\x56\x4f\x4d\x41\x50\x5f\x50'+'\x52\x4f\x58\x59\x5f\x54\x52\x41'+_0x4a413e(0x3ff,'\x73\x47\x57\x6a')+_0x4a413e(0x2fd,'\x64\x77\x74\x2a')+'\x41\x4d\x5f\x53\x45\x4d\x41\x4e'+_0x4a413e(0x640,'\x26\x6d\x46\x41')+_0x4a413e(0x5e7,'\x49\x56\x70\x4d')+'\x45\x53',_0x4a413e(0x504,'\x73\x53\x6c\x4e')+_0x4a413e(0x49f,'\x48\x42\x51\x46')+'\x45\x5f\x53\x54\x52\x45\x41\x4d'+'\x5f\x53\x45\x4d\x41\x4e\x54\x49'+_0x4a413e(0x2a8,'\x47\x45\x4d\x32')+_0x4a413e(0x8bc,'\x26\x49\x5d\x5d'),_0x4a413e(0x46c,'\x55\x66\x35\x74')+'\x52\x4f\x58\x59\x5f\x54\x52\x41'+_0x4a413e(0x7ae,'\x42\x6f\x57\x21')+_0x4a413e(0x90a,'\x4a\x40\x4d\x51')+_0x4a413e(0x595,'\x77\x40\x4d\x76')+_0x4a413e(0x544,'\x49\x56\x70\x4d')+'\x53'],_0x26945c)};}const OPENAI_ROUTER_ENABLED_KEYS=[_0x1a83f6(0x4f0,'\x63\x6b\x2a\x26')+_0x1a83f6(0x5a0,'\x78\x5b\x47\x72')+_0x1a83f6(0x587,'\x59\x64\x43\x26')+_0x1a83f6(0x5d3,'\x4a\x40\x4d\x51')+'\x44','\x45\x56\x4f\x4d\x41\x50\x5f\x4f'+_0x1a83f6(0x99b,'\x70\x48\x33\x5a')+_0x1a83f6(0x971,'\x77\x40\x4d\x76')+_0x1a83f6(0x56b,'\x47\x45\x4d\x32')],OPENAI_ROUTE_THREADED_KEYS=['\x45\x56\x4f\x4c\x56\x45\x52\x5f'+_0x1a83f6(0x38d,'\x50\x25\x42\x51')+_0x1a83f6(0x2b5,'\x7a\x46\x50\x4e')+_0x1a83f6(0x840,'\x44\x4a\x71\x76')+'\x44','\x45\x56\x4f\x4d\x41\x50\x5f\x4f'+_0x1a83f6(0x498,'\x5b\x21\x6c\x4b')+_0x1a83f6(0x7d0,'\x28\x74\x79\x54')+_0x1a83f6(0x342,'\x26\x6d\x46\x41')],OPENAI_ROUTED_RETRY_STATUSES=new Set([0x4*0x428+-0x1be3+0x7*0x1d5,-0x1e*-0xdb+0x239b+-0x3bb1,0x1649+0xe15+-0x65*0x58]),ROUTER_FALSE_VALUES=new Set(['\x30',_0x1a83f6(0x6f4,'\x5e\x25\x6e\x55'),_0x1a83f6(0x3cf,'\x23\x7a\x48\x73'),'\x6e\x6f',_0x1a83f6(0x24c,'\x52\x23\x32\x21')]);function jsonStringify(_0x408a50){const _0x3dbd96=_0x1a83f6;return JSON[_0x3dbd96(0x379,'\x21\x64\x4f\x62')+'\x79'](_0x408a50);}function copyResponseHeaders(_0x17d9f6={},_0x511309){const _0xf3993e=_0x1a83f6,_0x2dc9b9={};for(const [_0x4f80d3,_0x929515]of Object[_0xf3993e(0x791,'\x73\x47\x57\x6a')](_0x17d9f6)){if(_0xf3993e(0x5c1,'\x26\x49\x5d\x5d')==='\x4f\x6e\x47\x54\x4d'){const _0x5c057c=_0x199cbf[_0xf3993e(0x74f,'\x28\x39\x6a\x36')][_0xf3993e(0x38e,'\x5e\x25\x6e\x55')];if(typeof _0x5c057c===_0xf3993e(0x459,'\x33\x69\x21\x55')&&_0x5c057c[_0xf3993e(0x60b,'\x21\x64\x4f\x62')]())_0x2cbeed[_0xf3993e(0x6eb,'\x58\x31\x78\x39')]=_0x5c057c;}else{const _0x3b5a88=_0x4f80d3[_0xf3993e(0x572,'\x55\x66\x35\x74')+_0xf3993e(0x608,'\x49\x56\x70\x4d')]();if(!_0x511309(_0x3b5a88)||_0x929515===undefined||_0x929515===null)continue;if(/[\r\n]/[_0xf3993e(0x71e,'\x39\x6f\x42\x76')](_0x929515))continue;_0x2dc9b9[_0x3b5a88]=_0x929515;}}return _0x2dc9b9;}export function copyOpenAIResponseHeaders(_0x52c733={}){const _0x172bf=_0x1a83f6;return copyResponseHeaders(_0x52c733,_0x570132=>OPENAI_RESPONSE_HEADER_ALLOWLIST[_0x172bf(0x6a8,'\x70\x48\x33\x5a')](_0x570132)||_0x570132[_0x172bf(0x47b,'\x4b\x50\x6f\x48')+'\x74\x68']('\x78\x2d\x72\x61\x74\x65\x6c\x69'+_0x172bf(0x472,'\x44\x4a\x71\x76')));}export function copyGeminiResponseHeaders(_0x3fd17c={}){const _0x24b892=_0x1a83f6;return copyResponseHeaders(_0x3fd17c,_0x1e628d=>GEMINI_RESPONSE_HEADER_ALLOWLIST['\x68\x61\x73'](_0x1e628d)||_0x1e628d[_0x24b892(0x912,'\x31\x75\x65\x6f')+'\x74\x68'](_0x24b892(0x41c,'\x42\x6f\x57\x21')));}function responseToBody(_0x278ebd,_0x2a03af,_0xc3b538,_0x3d0dd7,_0x1e62df){const _0x48c348=_0x1a83f6;if(!_0x278ebd)return{};try{return JSON[_0x48c348(0x37a,'\x44\x4a\x71\x76')](_0x278ebd);}catch{if('\x63\x66\x64\x70\x75'===_0x48c348(0x4d1,'\x44\x4a\x71\x76')){if(!_0x33d910(_0x5a0783))return![];const _0x571328=typeof _0x48ba29[_0x48c348(0x8fc,'\x28\x39\x6a\x36')]===_0x48c348(0x802,'\x73\x47\x57\x6a')?_0x43b41f[_0x48c348(0x815,'\x21\x64\x4f\x62')]:'',_0x167998=typeof _0x22dab5['\x72\x6f\x6c\x65']===_0x48c348(0x24e,'\x45\x31\x75\x66')?_0x128b13[_0x48c348(0x689,'\x6d\x69\x21\x38')]:'';return _0x571328===_0x48c348(0x28e,'\x31\x75\x65\x6f')+_0x48c348(0x7b6,'\x24\x6f\x4f\x58')+_0x48c348(0x6cd,'\x33\x53\x59\x55')||_0x571328===_0x48c348(0x4e4,'\x28\x39\x6a\x36')+_0x48c348(0x23b,'\x74\x31\x42\x29')||_0x167998===_0x48c348(0x729,'\x33\x28\x62\x59');}else return _0x3d0dd7[_0x48c348(0x7be,'\x78\x5b\x47\x72')]?.(jsonStringify({'\x65\x76\x65\x6e\x74':_0x1e62df,'\x72\x65\x61\x73\x6f\x6e':_0x48c348(0x2f8,'\x51\x76\x53\x5a')+_0x48c348(0x6a6,'\x59\x64\x43\x26')+'\x6e','\x75\x70\x73\x74\x72\x65\x61\x6d\x5f\x73\x74\x61\x74\x75\x73':_0x2a03af,'\x63\x6f\x6e\x74\x65\x6e\x74\x5f\x74\x79\x70\x65':_0xc3b538?.[_0x48c348(0x876,'\x52\x23\x32\x21')+_0x48c348(0x8b0,'\x70\x48\x33\x5a')]||'','\x72\x65\x73\x70\x6f\x6e\x73\x65\x5f\x62\x79\x74\x65\x73':Buffer[_0x48c348(0x3d5,'\x43\x6b\x7a\x5d')+'\x74\x68'](_0x278ebd)})),{'\x65\x72\x72\x6f\x72':_0x278ebd};}}function attemptResponseToBody(_0x40b90d){const _0x4213d7=_0x1a83f6;if(!_0x40b90d)return{};try{if(_0x4213d7(0x502,'\x58\x31\x78\x39')==='\x42\x47\x58\x45\x6a'){const _0x3bc001=_0x3f57dd(_0x10df35,[_0x4213d7(0x7ca,'\x49\x56\x70\x4d'),_0x4213d7(0x5e5,'\x52\x23\x32\x21')]);if(_0x3a88f5(_0x34ce0a[_0x4213d7(0x27c,'\x7a\x46\x50\x4e')])){const _0x211834=_0x24feb1(_0x252a7e[_0x4213d7(0x384,'\x6d\x78\x4f\x5a')],[_0x4213d7(0x2ca,'\x33\x28\x62\x59')+_0x4213d7(0x773,'\x54\x5b\x67\x52'),_0x4213d7(0x8bb,'\x58\x31\x78\x39')+_0x4213d7(0x64c,'\x78\x58\x46\x63')]);if(_0x4d984c[_0x4213d7(0x717,'\x37\x4c\x29\x65')](_0x211834)[_0x4213d7(0x322,'\x49\x56\x70\x4d')]>-0x2b6+-0x2136+0x23ec)_0x3bc001[_0x4213d7(0x8cc,'\x52\x23\x32\x21')]=_0x211834;}return _0x3bc001[_0x4213d7(0x477,'\x58\x31\x78\x39')]!==_0x341a14||_0x3bc001[_0x4213d7(0x57e,'\x66\x54\x6a\x5e')]!==_0x5252aa?_0x3bc001:_0x474c28;}else return JSON[_0x4213d7(0x23e,'\x64\x77\x74\x2a')](_0x40b90d);}catch{if(_0x4213d7(0x32e,'\x54\x5b\x67\x52')===_0x4213d7(0x4c8,'\x73\x53\x6c\x4e'))return{'\x65\x72\x72\x6f\x72':_0x40b90d};else{if(typeof _0x22da57===_0x4213d7(0x367,'\x42\x6f\x57\x21')&&_0x101392[_0x4213d7(0x91c,'\x69\x44\x5e\x35')](_0x25aeee))_0x5e5b85[_0x56b4da]=_0xdad431;}}}function asUpstreamError(_0x4eca9a,_0x5b4817,_0x466ac4=-0x1ac2+0x26e9+-0xa31){const _0x320ba7=_0x1a83f6,_0x2e6beb=_0x5b4817&&typeof _0x5b4817===_0x320ba7(0x707,'\x78\x5b\x47\x72')&&'\x73\x74\x61\x74\x75\x73\x43\x6f'+'\x64\x65'in _0x5b4817?Number(_0x5b4817[_0x320ba7(0x7b3,'\x33\x28\x62\x59')+'\x64\x65']):NaN;return Object[_0x320ba7(0x8c2,'\x4b\x40\x5b\x51')](new Error(_0x4eca9a+(_0x320ba7(0x8b7,'\x6d\x69\x21\x38')+'\x6d\x20\x72\x65\x71\x75\x65\x73'+'\x74\x20\x66\x61\x69\x6c\x65\x64')),{'\x73\x74\x61\x74\x75\x73\x43\x6f\x64\x65':Number['\x69\x73\x46\x69\x6e\x69\x74\x65'](_0x2e6beb)?_0x2e6beb:_0x466ac4,'\x63\x61\x75\x73\x65':_0x5b4817});}function badRequest(_0x16d85a){const _0x4745fc=_0x1a83f6;return Object[_0x4745fc(0x7cd,'\x51\x76\x53\x5a')](new Error(_0x16d85a),{'\x73\x74\x61\x74\x75\x73\x43\x6f\x64\x65':0x190});}function isRecord(_0x390de1){const _0x502d9f=_0x1a83f6;return!!_0x390de1&&typeof _0x390de1===_0x502d9f(0x27d,'\x33\x53\x59\x55')&&!Array[_0x502d9f(0x4d8,'\x5b\x21\x6c\x4b')](_0x390de1);}function envEnabled(_0x458f2c,_0x4d5076){const _0x939e38=_0x1a83f6;for(const _0xcd965b of _0x4d5076){const _0x1cc670=_0x458f2c[_0xcd965b];if(_0x1cc670===undefined)continue;const _0x44fffc=String(_0x1cc670)['\x74\x72\x69\x6d']()['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x939e38(0x2e4,'\x42\x6f\x57\x21')]();if(!_0x44fffc||ROUTER_FALSE_VALUES[_0x939e38(0x5a8,'\x4a\x40\x4d\x51')](_0x44fffc))return![];return!![];}return![];}function routeSpecificOpenAIModelKeys(_0x2195a7,_0x1cb8bf){const _0x46b692=_0x1a83f6;if(_0x2195a7===_0x46b692(0x555,'\x33\x69\x21\x55')+_0x46b692(0x31d,'\x4b\x40\x5b\x51'))return[_0x46b692(0x21b,'\x54\x5b\x67\x52')+_0x46b692(0x36e,'\x58\x31\x78\x39')+_0x46b692(0x487,'\x78\x5b\x47\x72')+_0x46b692(0x4f9,'\x4b\x50\x6f\x48')+_0x46b692(0x978,'\x28\x39\x6a\x36')+_0x1cb8bf,_0x46b692(0x69b,'\x4b\x40\x5b\x51')+'\x50\x45\x4e\x41\x49\x5f\x52\x45'+_0x46b692(0x69d,'\x74\x31\x42\x29')+_0x46b692(0x282,'\x41\x45\x5a\x75')+_0x1cb8bf];return[_0x46b692(0x586,'\x78\x58\x46\x63')+_0x46b692(0x684,'\x24\x6f\x4f\x58')+_0x46b692(0x80c,'\x55\x66\x35\x74')+_0x46b692(0x754,'\x42\x6f\x57\x21')+_0x1cb8bf,_0x46b692(0x333,'\x51\x76\x53\x5a')+_0x46b692(0x5c3,'\x31\x75\x65\x6f')+_0x46b692(0x276,'\x49\x56\x70\x4d')+'\x5f'+_0x1cb8bf];}export function resolveOpenAITierModels(_0x11b34b=process.env,_0x887040){const _0x15b161=_0x1a83f6,_0xd41cde={},_0x3d29c4=_0x422412=>{const _0x87a22d=_0x515f;for(const _0x2c47d1 of _0x422412){if(_0x87a22d(0x626,'\x33\x28\x62\x59')===_0x87a22d(0x887,'\x43\x6b\x7a\x5d')){const _0x2052fe=_0x11b34b[_0x2c47d1];if(typeof _0x2052fe===_0x87a22d(0x442,'\x5e\x25\x6e\x55')&&_0x2052fe['\x74\x72\x69\x6d']())return _0x2052fe[_0x87a22d(0x638,'\x66\x54\x6a\x5e')]();}else{const _0x28d6a9={..._0x578bde};for(const _0x614ff4 of _0x58fcde[_0x87a22d(0x69c,'\x57\x6d\x76\x52')](_0x28d6a9)){const _0x54d16c=_0x614ff4[_0x87a22d(0x733,'\x33\x28\x62\x59')+_0x87a22d(0x705,'\x64\x77\x74\x2a')]();if(_0x54d16c===_0x87a22d(0x816,'\x24\x6f\x4f\x58')+_0x87a22d(0x704,'\x73\x47\x57\x6a')||_0x54d16c[_0x87a22d(0x43f,'\x6d\x78\x4f\x5a')+'\x74\x68']('\x78\x2d\x73\x74\x61\x69\x6e\x6c'+_0x87a22d(0x3b4,'\x26\x6d\x46\x41')+'\x79\x2d'))delete _0x28d6a9[_0x614ff4];}return _0x28d6a9;}}return undefined;},_0x3ea357=_0x5a5dae=>[..._0x887040?routeSpecificOpenAIModelKeys(_0x887040,_0x5a5dae):[],_0x15b161(0x51d,'\x43\x6b\x7a\x5d')+_0x15b161(0x2fa,'\x70\x48\x33\x5a')+_0x15b161(0x378,'\x37\x4c\x29\x65')+'\x5f'+_0x5a5dae,_0x15b161(0x85e,'\x5e\x25\x6e\x55')+_0x15b161(0x40c,'\x78\x58\x46\x63')+_0x15b161(0x93f,'\x59\x64\x43\x26')+_0x5a5dae],_0x5710bc=_0x3d29c4(_0x3ea357(_0x15b161(0x5f1,'\x24\x6f\x4f\x58'))),_0x126672=_0x3d29c4(_0x3ea357(_0x15b161(0x419,'\x69\x44\x5e\x35'))),_0x2e2a33=_0x3d29c4(_0x3ea357(_0x15b161(0x7b4,'\x63\x6b\x2a\x26')+'\x45'));if(_0x5710bc)_0xd41cde[_0x15b161(0x462,'\x66\x54\x6a\x5e')]=_0x5710bc;if(_0x126672)_0xd41cde['\x6d\x69\x64']=_0x126672;if(_0x2e2a33)_0xd41cde[_0x15b161(0x3a9,'\x28\x74\x79\x54')+'\x65']=_0x2e2a33;return _0xd41cde;}function textFromContent(_0x2da3d7){const _0x542829=_0x1a83f6;if(typeof _0x2da3d7===_0x542829(0x8a6,'\x74\x31\x42\x29'))return _0x2da3d7;if(!Array[_0x542829(0x4d8,'\x5b\x21\x6c\x4b')](_0x2da3d7))return'';return _0x2da3d7[_0x542829(0x27b,'\x69\x44\x5e\x35')](_0x289949=>{const _0x767b58=_0x542829;if(typeof _0x289949==='\x73\x74\x72\x69\x6e\x67')return _0x289949;if(!isRecord(_0x289949))return'';for(const _0x46319c of[_0x767b58(0x813,'\x50\x25\x42\x51'),_0x767b58(0x651,'\x5e\x25\x6e\x55')+'\x78\x74',_0x767b58(0x7e4,'\x5b\x21\x6c\x4b')+'\x65\x78\x74',_0x767b58(0x461,'\x64\x77\x74\x2a')]){const _0x1466a5=_0x289949[_0x46319c];if(typeof _0x1466a5===_0x767b58(0x3d1,'\x4b\x50\x6f\x48'))return _0x1466a5;}return'';})[_0x542829(0x369,'\x45\x31\x75\x66')](Boolean)[_0x542829(0x3e0,'\x28\x74\x79\x54')]('\x0a');}function isOpenAIToolOutput(_0x55cab1){const _0x51058d=_0x1a83f6;if(!isRecord(_0x55cab1))return![];const _0x60f396=typeof _0x55cab1[_0x51058d(0x222,'\x64\x77\x74\x2a')]==='\x73\x74\x72\x69\x6e\x67'?_0x55cab1[_0x51058d(0x749,'\x26\x49\x5d\x5d')]:'',_0x3e3159=typeof _0x55cab1[_0x51058d(0x274,'\x33\x53\x59\x55')]===_0x51058d(0x33f,'\x57\x6d\x76\x52')?_0x55cab1[_0x51058d(0x6f6,'\x66\x54\x6a\x5e')]:'';return _0x60f396===_0x51058d(0x35f,'\x33\x53\x59\x55')+_0x51058d(0x5c0,'\x6d\x51\x71\x51')+_0x51058d(0x304,'\x24\x6f\x4f\x58')||_0x60f396===_0x51058d(0x385,'\x6d\x78\x4f\x5a')+_0x51058d(0x444,'\x39\x6f\x42\x76')||_0x3e3159===_0x51058d(0x2d1,'\x23\x7a\x48\x73');}function openAIResponsesInputText(_0x17283d){const _0x17fb54=_0x1a83f6;if(typeof _0x17283d===_0x17fb54(0x442,'\x5e\x25\x6e\x55'))return _0x17283d;if(!Array[_0x17fb54(0x39f,'\x7a\x46\x50\x4e')](_0x17283d))return'';for(let _0x56fad9=_0x17283d[_0x17fb54(0x851,'\x57\x6d\x76\x52')]-(-0xe16+-0xe*0x2bd+0x346d*0x1);_0x56fad9>=0xe*0x1df+-0x19bc+-0x2*0x3b;_0x56fad9--){if(_0x17fb54(0x317,'\x21\x64\x4f\x62')===_0x17fb54(0x3c6,'\x55\x66\x35\x74')){const _0x50b5c8=_0x17283d[_0x56fad9];if(!isRecord(_0x50b5c8)||isOpenAIToolOutput(_0x50b5c8))continue;const _0x1f40f9=typeof _0x50b5c8[_0x17fb54(0x28f,'\x39\x6f\x42\x76')]===_0x17fb54(0x874,'\x59\x64\x43\x26')?_0x50b5c8[_0x17fb54(0x5a3,'\x21\x64\x4f\x62')]:'';if(_0x1f40f9&&_0x1f40f9!=='\x75\x73\x65\x72')continue;const _0x3b66d1=textFromContent(_0x50b5c8[_0x17fb54(0x5cb,'\x6d\x51\x71\x51')]);if(_0x3b66d1)return _0x3b66d1;const _0x54e098=textFromContent(_0x50b5c8[_0x17fb54(0x4fb,'\x57\x6d\x76\x52')]);if(_0x54e098)return _0x54e098;}else _0x272696=_0x39e2e6[_0x17fb54(0x2c9,'\x4a\x40\x4d\x51')];}return'';}function openAIChatLastUserText(_0x56018e){const _0x2ca6dc=_0x1a83f6;if(!Array[_0x2ca6dc(0x6ae,'\x4b\x50\x6f\x48')](_0x56018e))return'';for(let _0x32ee14=_0x56018e['\x6c\x65\x6e\x67\x74\x68']-(0xa3*0x35+-0xd91+-0x142d);_0x32ee14>=0x24c2*0x1+-0x811+-0x1cb1;_0x32ee14--){const _0xe70c5a=_0x56018e[_0x32ee14];if(!isRecord(_0xe70c5a)||_0xe70c5a[_0x2ca6dc(0x577,'\x33\x28\x62\x59')]!==_0x2ca6dc(0x40e,'\x33\x28\x62\x59'))continue;return textFromContent(_0xe70c5a[_0x2ca6dc(0x309,'\x6d\x69\x21\x38')]);}return'';}function openAIChatLastToolCallCount(_0xb0fce1){const _0x4774f7=_0x1a83f6;if(!Array[_0x4774f7(0x807,'\x59\x64\x43\x26')](_0xb0fce1))return 0x1a97+-0x1abc+0x1*0x25;for(let _0x5e7af2=_0xb0fce1[_0x4774f7(0x910,'\x28\x39\x6a\x36')]-(0x1ee8+0x14a*-0x4+0x895*-0x3);_0x5e7af2>=-0x515*-0x2+-0x2*0xacf+0x2dd*0x4;_0x5e7af2--){if(_0x4774f7(0x737,'\x4b\x40\x5b\x51')!==_0x4774f7(0x3b5,'\x45\x31\x75\x66')){const _0x1337a0=_0x109870[_0x4774f7(0x29f,'\x26\x6d\x46\x41')]??_0x44f6f9,_0x260e92=_0x6c9784[_0x4774f7(0x3c9,'\x6d\x78\x4f\x5a')]??_0x4fc7f7.env;return _0x19619c=>_0x5908fa({'\x70\x72\x6f\x78\x79':_0x7e60d2[_0x4774f7(0x634,'\x26\x6d\x46\x41')+_0x4774f7(0x84d,'\x52\x23\x32\x21')],'\x70\x72\x6f\x76\x69\x64\x65\x72':_0x4774f7(0x204,'\x24\x6f\x4f\x58'),'\x72\x6f\x75\x74\x65':_0x128eba[_0x4774f7(0x86f,'\x59\x64\x43\x26')],'\x75\x70\x73\x74\x72\x65\x61\x6d\x50\x61\x74\x68':_0x523b75[_0x4774f7(0x904,'\x7a\x46\x50\x4e')],'\x6d\x6f\x64\x65\x6c':typeof _0x19619c[_0x4774f7(0x3e9,'\x42\x6f\x57\x21')][_0x4774f7(0x799,'\x5e\x25\x6e\x55')]===_0x4774f7(0x895,'\x33\x28\x62\x59')?_0x19619c[_0x4774f7(0x5db,'\x47\x45\x4d\x32')][_0x4774f7(0x635,'\x21\x64\x4f\x62')]:null,'\x62\x6f\x64\x79':_0x19619c[_0x4774f7(0x794,'\x5b\x21\x6c\x4b')],'\x68\x65\x61\x64\x65\x72\x73':_0x19619c[_0x4774f7(0x357,'\x6d\x51\x71\x51')]??{},'\x6c\x6f\x67\x67\x65\x72':_0x1337a0,..._0x414477[_0x4774f7(0x936,'\x59\x64\x43\x26')]?{'\x6f\x6e\x54\x72\x61\x63\x65':_0x34b253['\x6f\x6e\x54\x72\x61\x63\x65']}:{},..._0x57a834[_0x4774f7(0x451,'\x52\x23\x32\x21')]?{'\x63\x6c\x6f\x63\x6b':_0x5dcf44[_0x4774f7(0x611,'\x45\x31\x75\x66')]}:{},'\x65\x6e\x76':_0x260e92});}else{const _0x457731=_0xb0fce1[_0x5e7af2];if(!isRecord(_0x457731)||_0x457731[_0x4774f7(0x27a,'\x6d\x51\x71\x51')]!==_0x4774f7(0x53d,'\x5e\x25\x6e\x55')+'\x74')continue;const _0x2b3bb2=_0x457731[_0x4774f7(0x607,'\x33\x28\x62\x59')+'\x6c\x73'];return Array[_0x4774f7(0x974,'\x6d\x51\x71\x51')](_0x2b3bb2)?_0x2b3bb2['\x6c\x65\x6e\x67\x74\x68']:0x1a*0x175+-0x2*0x124d+-0x4*0x52;}}return-0x13*-0xa3+-0x1*-0x224f+0x87*-0x58;}function featuresFromText(_0x36dc8a,_0xb5c5c5,_0x2735ff){const _0x1cf78e=_0x1a83f6,_0x18abf0=_0x36dc8a[_0x1cf78e(0x6b0,'\x23\x7a\x48\x73')](),_0x52613d=_0x18abf0[_0x1cf78e(0x29b,'\x33\x53\x59\x55')]>0x1*-0x1ca0+-0x810+0x24b0&&PLAN_RE[_0x1cf78e(0x98a,'\x24\x6f\x4f\x58')](_0x18abf0);return{'\x6c\x61\x73\x74\x5f\x61\x73\x73\x69\x73\x74\x61\x6e\x74\x5f\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x63\x6f\x75\x6e\x74':_0x2735ff,'\x6c\x61\x73\x74\x5f\x61\x73\x73\x69\x73\x74\x61\x6e\x74\x5f\x68\x61\x64\x5f\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c':_0x2735ff>0x178b+-0x1483+0x61*-0x8,'\x6c\x61\x73\x74\x5f\x75\x73\x65\x72\x5f\x69\x73\x5f\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74\x5f\x6f\x6e\x6c\x79':_0xb5c5c5,'\x75\x73\x65\x72\x5f\x72\x65\x71\x75\x65\x73\x74\x65\x64\x5f\x70\x6c\x61\x6e\x6e\x69\x6e\x67':_0x52613d,'\x75\x73\x65\x72\x5f\x73\x69\x6d\x70\x6c\x65\x5f\x6c\x6f\x6f\x6b\x75\x70':_0x18abf0[_0x1cf78e(0x570,'\x7a\x46\x50\x4e')]>0x106f+-0xd*0x76+0x21*-0x51&&!_0xb5c5c5&&!_0x52613d&&_0x18abf0[_0x1cf78e(0x4da,'\x4b\x40\x5b\x51')]<=SIMPLE_LOOKUP_MAX_CHARS,'\x6c\x61\x73\x74\x5f\x61\x73\x73\x69\x73\x74\x61\x6e\x74\x5f\x6f\x75\x74\x70\x75\x74\x5f\x74\x6f\x6b\x65\x6e\x73':0x0,'\x6c\x61\x73\x74\x5f\x61\x73\x73\x69\x73\x74\x61\x6e\x74\x5f\x73\x74\x6f\x70\x5f\x72\x65\x61\x73\x6f\x6e':_0xb5c5c5||_0x2735ff>0x1a58+-0x20ee+-0x34b*-0x2?_0x1cf78e(0x8de,'\x24\x6f\x4f\x58'):null};}function extractOpenAIFeatures(_0x5e5dc6,_0x4f3053){const _0x319232=_0x1a83f6;if(_0x5e5dc6==='\x2f\x76\x31\x2f\x63\x68\x61\x74'+_0x319232(0x9a5,'\x37\x4c\x29\x65')+_0x319232(0x488,'\x5e\x25\x6e\x55')){const _0x529dab=_0x4f3053[_0x319232(0x690,'\x45\x31\x75\x66')],_0x5ba1c9=Array['\x69\x73\x41\x72\x72\x61\x79'](_0x529dab)?_0x529dab[_0x529dab[_0x319232(0x33b,'\x6d\x78\x4f\x5a')]-(0x208d+-0x221*-0x1+-0x22ad)]:null,_0x2ec9d9=isOpenAIToolOutput(_0x5ba1c9);return featuresFromText(openAIChatLastUserText(_0x529dab),_0x2ec9d9,openAIChatLastToolCallCount(_0x529dab));}const _0x578e9b=_0x4f3053['\x69\x6e\x70\x75\x74'],_0x5ea7fe=Array[_0x319232(0x807,'\x59\x64\x43\x26')](_0x578e9b)&&_0x578e9b[_0x319232(0x3bc,'\x64\x77\x74\x2a')]>-0x1*0xb35+0x1ffe+-0x1*0x14c9&&_0x578e9b[_0x319232(0x834,'\x50\x25\x42\x51')](isOpenAIToolOutput),_0x5f5573=Array[_0x319232(0x5ac,'\x23\x7a\x48\x73')](_0x578e9b)?_0x578e9b['\x66\x69\x6c\x74\x65\x72'](_0x32c4f9=>isRecord(_0x32c4f9)&&_0x32c4f9[_0x319232(0x5ef,'\x51\x76\x53\x5a')]===_0x319232(0x4af,'\x37\x4c\x29\x65')+_0x319232(0x406,'\x55\x66\x35\x74'))[_0x319232(0x5d1,'\x31\x75\x65\x6f')]:-0x5*0x383+0x10c*-0x17+0x29a3;return featuresFromText(openAIResponsesInputText(_0x578e9b),_0x5ea7fe,_0x5f5573);}function hasOpenAIResponsesThreadState(_0x1327b4){const _0x3386c7=_0x1a83f6;return _0x1327b4[_0x3386c7(0x5e0,'\x64\x77\x74\x2a')+_0x3386c7(0x3f4,'\x49\x56\x70\x4d')+_0x3386c7(0x908,'\x42\x6f\x57\x21')]!==undefined||_0x1327b4[_0x3386c7(0x8aa,'\x47\x45\x4d\x32')+'\x74\x69\x6f\x6e']!==undefined;}function shouldRetryRoutedOpenAI(_0x1618ea,_0x26a244){const _0x2cbd96=_0x1a83f6;if(_0x1618ea['\x73\x74\x72\x65\x61\x6d']||_0x26a244[_0x2cbd96(0x8fd,'\x4b\x40\x5b\x51')]!==_0x2cbd96(0x4f6,'\x52\x23\x32\x21'))return![];if(!_0x26a244[_0x2cbd96(0x4ce,'\x31\x75\x65\x6f')+'\x79']||!_0x26a244[_0x2cbd96(0x5d4,'\x50\x25\x42\x51')+'\x64\x65\x6c']||_0x26a244['\x63\x68\x6f\x73\x65\x6e\x4d\x6f'+_0x2cbd96(0x35c,'\x77\x40\x4d\x76')]===_0x26a244[_0x2cbd96(0x93e,'\x33\x28\x62\x59')])return![];return _0x1618ea[_0x2cbd96(0x564,'\x50\x25\x42\x51')]>=0x26*-0xad+-0x6d8*0x2+0x52*0x81||OPENAI_ROUTED_RETRY_STATUSES['\x68\x61\x73'](_0x1618ea[_0x2cbd96(0x7ab,'\x48\x42\x51\x46')]);}function routeOpenAIRequest(_0x1539c2,_0x1fbc81,_0x26e6a1,_0xd16d9e){const _0x2b4e86=_0x1a83f6,_0x5e5551=typeof _0x1fbc81[_0x2b4e86(0x892,'\x48\x42\x51\x46')]===_0x2b4e86(0x4a9,'\x55\x66\x35\x74')?_0x1fbc81[_0x2b4e86(0x311,'\x44\x4a\x71\x76')]:null;let _0x457844=_0x5e5551,_0x53f062=null,_0x5498c3=null,_0x5beb6d=null,_0x13c38a;const _0x858870=envEnabled(_0x26e6a1,OPENAI_ROUTER_ENABLED_KEYS);if(!_0x858870)return{'\x62\x6f\x64\x79':_0x1fbc81,'\x6f\x72\x69\x67\x69\x6e\x61\x6c\x4d\x6f\x64\x65\x6c':_0x5e5551,'\x63\x68\x6f\x73\x65\x6e\x4d\x6f\x64\x65\x6c':_0x457844,'\x74\x69\x65\x72':_0x53f062,'\x72\x65\x61\x73\x6f\x6e':_0x5498c3,'\x66\x61\x6c\x6c\x62\x61\x63\x6b':_0x5beb6d,'\x72\x6f\x75\x74\x65\x72\x45\x6e\x61\x62\x6c\x65\x64':_0x858870};if(_0x1539c2==='\x2f\x76\x31\x2f\x72\x65\x73\x70'+'\x6f\x6e\x73\x65\x73'&&hasOpenAIResponsesThreadState(_0x1fbc81)&&!envEnabled(_0x26e6a1,OPENAI_ROUTE_THREADED_KEYS))return{'\x62\x6f\x64\x79':_0x1fbc81,'\x6f\x72\x69\x67\x69\x6e\x61\x6c\x4d\x6f\x64\x65\x6c':_0x5e5551,'\x63\x68\x6f\x73\x65\x6e\x4d\x6f\x64\x65\x6c':_0x457844,'\x74\x69\x65\x72':_0x53f062,'\x72\x65\x61\x73\x6f\x6e':_0x5498c3,'\x66\x61\x6c\x6c\x62\x61\x63\x6b':_0x2b4e86(0x7e0,'\x33\x53\x59\x55')+_0x2b4e86(0x34b,'\x4b\x40\x5b\x51')+'\x6f\x75\x67\x68','\x72\x6f\x75\x74\x65\x72\x45\x6e\x61\x62\x6c\x65\x64':_0x858870};if(!_0x5e5551){if(_0x2b4e86(0x40a,'\x33\x69\x21\x55')!==_0x2b4e86(0x2af,'\x33\x28\x62\x59'))return{'\x62\x6f\x64\x79':_0x1fbc81,'\x6f\x72\x69\x67\x69\x6e\x61\x6c\x4d\x6f\x64\x65\x6c':_0x5e5551,'\x63\x68\x6f\x73\x65\x6e\x4d\x6f\x64\x65\x6c':_0x457844,'\x74\x69\x65\x72':_0x53f062,'\x72\x65\x61\x73\x6f\x6e':_0x5498c3,'\x66\x61\x6c\x6c\x62\x61\x63\x6b':_0x2b4e86(0x54b,'\x49\x56\x70\x4d')+_0x2b4e86(0x316,'\x63\x6b\x2a\x26'),'\x72\x6f\x75\x74\x65\x72\x45\x6e\x61\x62\x6c\x65\x64':_0x858870};else _0x12f74e[_0x2b4e86(0x467,'\x57\x6d\x76\x52')]=_0x454907(_0x321235[_0x2b4e86(0x533,'\x77\x40\x4d\x76')],_0x3fadce,_0x1169c4[_0x2b4e86(0x9a4,'\x63\x6b\x2a\x26')]??_0x4b5e91.env);}try{_0x13c38a=extractOpenAIFeatures(_0x1539c2,_0x1fbc81);const _0xcea157=pickForTurn({'\x66\x65\x61\x74\x75\x72\x65\x73':_0x13c38a,'\x72\x6f\x75\x74\x65\x72\x5f\x73\x74\x61\x74\x65':{'\x68\x69\x73\x74\x6f\x72\x79':[],'\x70\x69\x6e\x6e\x65\x64':null},'\x63\x6f\x6e\x66\x69\x67':{'\x64\x65\x66\x61\x75\x6c\x74\x5f\x74\x69\x65\x72':_0x2b4e86(0x479,'\x51\x76\x53\x5a'),'\x64\x69\x73\x61\x62\x6c\x65':![],'\x68\x61\x72\x64\x5f\x70\x69\x6e\x5f\x61\x66\x74\x65\x72\x5f\x70\x6c\x61\x6e':![]}});_0x53f062=_0xcea157['\x74\x69\x65\x72'],_0x5498c3=_0xcea157[_0x2b4e86(0x806,'\x33\x28\x62\x59')];const _0x351770=resolveOpenAITierModels(_0x26e6a1,_0x1539c2)[_0xcea157[_0x2b4e86(0x4ea,'\x58\x31\x78\x39')]];if(_0x351770)_0x457844=_0x351770;}catch(_0x4e1906){if(_0x2b4e86(0x484,'\x73\x47\x57\x6a')===_0x2b4e86(0x76a,'\x5b\x21\x6c\x4b')){const _0x5bb1ee=this['\x64\x65\x63\x6f\x64\x65\x72'][_0x2b4e86(0x632,'\x33\x69\x21\x55')]();if(_0x5bb1ee){if(_0x5e1ba4(this[_0x2b4e86(0x662,'\x78\x58\x46\x63')]))this[_0x2b4e86(0x236,'\x6d\x51\x71\x51')+_0x2b4e86(0x72f,'\x4b\x40\x5b\x51')+_0x2b4e86(0x46b,'\x26\x49\x5d\x5d')](_0x5bb1ee);this[_0x2b4e86(0x78c,'\x57\x6d\x76\x52')](_0x5bb1ee);}if(this[_0x2b4e86(0x848,'\x26\x49\x5d\x5d')+_0x2b4e86(0x702,'\x4b\x40\x5b\x51')]){this[_0x2b4e86(0x4e7,'\x58\x31\x78\x39')+_0x2b4e86(0x987,'\x52\x23\x32\x21')+_0x2b4e86(0x85d,'\x31\x75\x65\x6f')]();return;}const _0x578c0a=this['\x62\x75\x66'][_0x2b4e86(0x532,'\x33\x28\x62\x59')]();this['\x62\x75\x66']='';if(_0x578c0a)this[_0x2b4e86(0x3c3,'\x7a\x46\x50\x4e')](_0x578c0a);}else _0x5beb6d=_0x2b4e86(0x4d5,'\x4a\x40\x4d\x51')+_0x2b4e86(0x36c,'\x54\x5b\x67\x52'),_0xd16d9e[_0x2b4e86(0x681,'\x51\x76\x53\x5a')]?.(jsonStringify({'\x65\x76\x65\x6e\x74':'\x72\x6f\x75\x74\x65\x72\x5f\x66'+_0x2b4e86(0x7c1,'\x70\x48\x33\x5a'),'\x72\x6f\x75\x74\x65':_0x1539c2,'\x72\x65\x61\x73\x6f\x6e':_0x5beb6d,'\x6f\x72\x69\x67\x69\x6e\x61\x6c\x5f\x6d\x6f\x64\x65\x6c':_0x5e5551,'\x65\x72\x72\x6f\x72':_0x4e1906 instanceof Error?_0x4e1906[_0x2b4e86(0x803,'\x4b\x50\x6f\x48')]:String(_0x4e1906)}));}let _0x114289=_0x1fbc81;if(_0x457844&&_0x457844!==_0x5e5551)try{_0x114289=rewriteModel(_0x1fbc81,_0x457844);}catch(_0x230860){_0x5beb6d=_0x5beb6d??'\x72\x65\x77\x72\x69\x74\x65\x5f'+_0x2b4e86(0x5e4,'\x57\x6d\x76\x52'),_0x457844=_0x5e5551,_0x114289=_0x1fbc81,_0xd16d9e[_0x2b4e86(0x35a,'\x39\x6f\x42\x76')]?.(jsonStringify({'\x65\x76\x65\x6e\x74':'\x72\x6f\x75\x74\x65\x72\x5f\x66'+'\x61\x6c\x6c\x62\x61\x63\x6b','\x72\x6f\x75\x74\x65':_0x1539c2,'\x72\x65\x61\x73\x6f\x6e':_0x5beb6d,'\x6f\x72\x69\x67\x69\x6e\x61\x6c\x5f\x6d\x6f\x64\x65\x6c':_0x5e5551,'\x65\x72\x72\x6f\x72':_0x230860 instanceof Error?_0x230860[_0x2b4e86(0x620,'\x78\x5b\x47\x72')]:String(_0x230860)}));}return _0xd16d9e[_0x2b4e86(0x6d5,'\x4b\x40\x5b\x51')]?.(jsonStringify({'\x65\x76\x65\x6e\x74':_0x2b4e86(0x3f2,'\x73\x47\x57\x6a')+_0x2b4e86(0x372,'\x69\x44\x5e\x35'),'\x72\x6f\x75\x74\x65':_0x1539c2,'\x74\x69\x65\x72':_0x53f062,'\x72\x65\x61\x73\x6f\x6e':_0x5498c3,'\x6f\x72\x69\x67\x69\x6e\x61\x6c\x5f\x6d\x6f\x64\x65\x6c':_0x5e5551,'\x63\x68\x6f\x73\x65\x6e\x5f\x6d\x6f\x64\x65\x6c':_0x457844,'\x66\x61\x6c\x6c\x62\x61\x63\x6b':_0x5beb6d})),{'\x62\x6f\x64\x79':_0x114289,'\x6f\x72\x69\x67\x69\x6e\x61\x6c\x4d\x6f\x64\x65\x6c':_0x5e5551,'\x63\x68\x6f\x73\x65\x6e\x4d\x6f\x64\x65\x6c':_0x457844,'\x74\x69\x65\x72':_0x53f062,'\x72\x65\x61\x73\x6f\x6e':_0x5498c3,'\x66\x61\x6c\x6c\x62\x61\x63\x6b':_0x5beb6d,'\x72\x6f\x75\x74\x65\x72\x45\x6e\x61\x62\x6c\x65\x64':_0x858870,..._0x13c38a?{'\x66\x65\x61\x74\x75\x72\x65\x73':_0x13c38a}:{}};}function setUsageNumber(_0x170ace,_0x306084,_0x27eff4){const _0x36a3e0=_0x1a83f6;if(typeof _0x27eff4===_0x36a3e0(0x973,'\x7a\x46\x50\x4e')&&Number[_0x36a3e0(0x4e2,'\x28\x39\x6a\x36')](_0x27eff4))_0x170ace[_0x306084]=_0x27eff4;}function usageOrUndefined(_0x1e0814){const _0x574e1f=_0x1a83f6;return Object[_0x574e1f(0x7c2,'\x47\x45\x4d\x32')](_0x1e0814)[_0x574e1f(0x70f,'\x26\x6d\x46\x41')]>-0xe74+0x1*-0x19a+-0x55a*-0x3?_0x1e0814:undefined;}function mergeTraceMeta(_0x3d6752,_0x555131){const _0x37cf81=_0x1a83f6;if(_0x555131[_0x37cf81(0x42c,'\x31\x75\x65\x6f')])_0x3d6752[_0x37cf81(0x738,'\x33\x69\x21\x55')]={..._0x3d6752[_0x37cf81(0x241,'\x21\x64\x4f\x62')]??{},..._0x555131[_0x37cf81(0x711,'\x51\x76\x53\x5a')]};if(_0x555131[_0x37cf81(0x416,'\x57\x6d\x76\x52')+'\x73\x6f\x6e']!==undefined)_0x3d6752[_0x37cf81(0x969,'\x41\x45\x5a\x75')+_0x37cf81(0x3fa,'\x26\x6d\x46\x41')]=_0x555131[_0x37cf81(0x5ec,'\x50\x25\x42\x51')+_0x37cf81(0x4e0,'\x4b\x40\x5b\x51')];if(_0x555131[_0x37cf81(0x756,'\x4a\x40\x4d\x51')+_0x37cf81(0x3a8,'\x54\x5b\x67\x52')]!==undefined)_0x3d6752[_0x37cf81(0x5ca,'\x28\x39\x6a\x36')+_0x37cf81(0x8ff,'\x39\x6f\x42\x76')]=_0x555131[_0x37cf81(0x80b,'\x55\x66\x35\x74')+_0x37cf81(0x606,'\x37\x4c\x29\x65')];if(_0x555131[_0x37cf81(0x5a1,'\x51\x76\x53\x5a')]!==undefined)_0x3d6752[_0x37cf81(0x70a,'\x42\x6f\x57\x21')]=_0x555131[_0x37cf81(0x1fe,'\x41\x45\x5a\x75')];}function responseIdFromBody(_0x37f919){const _0x3630fe=_0x1a83f6;if(!isRecord(_0x37f919))return undefined;const _0x284916=_0x37f919['\x69\x64'];if(typeof _0x284916===_0x3630fe(0x630,'\x54\x5b\x67\x52')&&_0x284916[_0x3630fe(0x70f,'\x26\x6d\x46\x41')]>-0xb*-0x1+0x1056+0x7*-0x257)return _0x284916;const _0x4021fc=_0x37f919[_0x3630fe(0x6e6,'\x51\x76\x53\x5a')];if(isRecord(_0x4021fc)&&typeof _0x4021fc['\x69\x64']===_0x3630fe(0x87a,'\x24\x6f\x4f\x58')&&_0x4021fc['\x69\x64'][_0x3630fe(0x67b,'\x73\x53\x6c\x4e')]>-0x1c59+-0x180d*0x1+0x1*0x3466)return _0x4021fc['\x69\x64'];return undefined;}function openAIResponsesMeta(_0xd6b171){const _0x972da5=_0x1a83f6,_0x2ce985=isRecord(_0xd6b171)&&isRecord(_0xd6b171['\x72\x65\x73\x70\x6f\x6e\x73\x65'])?_0xd6b171[_0x972da5(0x90f,'\x6d\x69\x21\x38')]:_0xd6b171;if(!isRecord(_0x2ce985))return{};const _0x11d5f1={};if(isRecord(_0x2ce985[_0x972da5(0x42c,'\x31\x75\x65\x6f')])){if(_0x972da5(0x295,'\x44\x4a\x71\x76')===_0x972da5(0x615,'\x45\x31\x75\x66'))return _0x19215b[_0x972da5(0x6ac,'\x52\x23\x32\x21')](_0x414982);else{const _0x514645=_0x2ce985[_0x972da5(0x4df,'\x49\x56\x70\x4d')],_0x407739={};setUsageNumber(_0x407739,_0x972da5(0x8f8,'\x33\x53\x59\x55')+_0x972da5(0x8e9,'\x59\x64\x43\x26'),_0x514645[_0x972da5(0x24f,'\x73\x53\x6c\x4e')+_0x972da5(0x9a7,'\x5e\x25\x6e\x55')]),setUsageNumber(_0x407739,_0x972da5(0x3da,'\x6d\x69\x21\x38')+_0x972da5(0x4bb,'\x64\x77\x74\x2a'),_0x514645[_0x972da5(0x61d,'\x54\x5b\x67\x52')+_0x972da5(0x7c9,'\x33\x28\x62\x59')]),setUsageNumber(_0x407739,_0x972da5(0x7cc,'\x51\x76\x53\x5a')+_0x972da5(0x946,'\x26\x6d\x46\x41')+_0x972da5(0x597,'\x63\x6b\x2a\x26')+_0x972da5(0x63b,'\x69\x44\x5e\x35'),_0x514645[_0x972da5(0x6bc,'\x33\x28\x62\x59')+_0x972da5(0x7dc,'\x73\x53\x6c\x4e')+_0x972da5(0x449,'\x6d\x78\x4f\x5a')+_0x972da5(0x8b9,'\x23\x7a\x48\x73')]),setUsageNumber(_0x407739,_0x972da5(0x8fe,'\x45\x31\x75\x66')+_0x972da5(0x249,'\x33\x53\x59\x55')+_0x972da5(0x818,'\x26\x49\x5d\x5d'),_0x514645[_0x972da5(0x92a,'\x69\x44\x5e\x35')+_0x972da5(0x694,'\x73\x47\x57\x6a')+_0x972da5(0x351,'\x26\x6d\x46\x41')]);const _0x351eae=usageOrUndefined(_0x407739);if(_0x351eae)_0x11d5f1[_0x972da5(0x3bf,'\x6d\x69\x21\x38')]=_0x351eae;}}const _0xd67bd0=isRecord(_0x2ce985[_0x972da5(0x256,'\x51\x76\x53\x5a')+_0x972da5(0x889,'\x52\x23\x32\x21')+'\x6c\x73'])?_0x2ce985[_0x972da5(0x4e6,'\x52\x23\x32\x21')+_0x972da5(0x3fd,'\x42\x6f\x57\x21')+'\x6c\x73']['\x72\x65\x61\x73\x6f\x6e']:undefined;if(typeof _0xd67bd0===_0x972da5(0x442,'\x5e\x25\x6e\x55'))_0x11d5f1[_0x972da5(0x54e,'\x24\x6f\x4f\x58')+_0x972da5(0x20b,'\x48\x42\x51\x46')]=_0xd67bd0;else{if(typeof _0x2ce985[_0x972da5(0x986,'\x4a\x40\x4d\x51')]==='\x73\x74\x72\x69\x6e\x67')_0x11d5f1[_0x972da5(0x514,'\x42\x6f\x57\x21')+_0x972da5(0x3f5,'\x59\x64\x43\x26')]=_0x2ce985[_0x972da5(0x9a8,'\x33\x53\x59\x55')];}if((_0x2ce985[_0x972da5(0x8c8,'\x57\x6d\x76\x52')]==='\x66\x61\x69\x6c\x65\x64'||_0x2ce985[_0x972da5(0x34f,'\x47\x45\x4d\x32')]===_0x972da5(0x8f7,'\x26\x49\x5d\x5d')+'\x64')&&isRecord(_0x2ce985[_0x972da5(0x6f2,'\x6d\x78\x4f\x5a')])){if(_0x972da5(0x356,'\x23\x7a\x48\x73')!==_0x972da5(0x7c6,'\x37\x4c\x29\x65')){const _0x55c324=_0x2ce985[_0x972da5(0x1fe,'\x41\x45\x5a\x75')][_0x972da5(0x95a,'\x64\x77\x74\x2a')];if(typeof _0x55c324===_0x972da5(0x8a4,'\x50\x25\x42\x51')&&_0x55c324[_0x972da5(0x84e,'\x58\x31\x78\x39')]())_0x11d5f1[_0x972da5(0x3c1,'\x77\x40\x4d\x76')]=_0x55c324;}else{const _0x351e77=(_0x4cd466['\x45\x56\x4f\x4d\x41\x50\x5f\x56'+_0x972da5(0x8db,'\x6d\x51\x71\x51')+_0x972da5(0x450,'\x69\x44\x5e\x35')]||'')[_0x972da5(0x868,'\x78\x5b\x47\x72')]();if(_0x351e77)return _0x351e77[_0x972da5(0x6fd,'\x64\x77\x74\x2a')](/\/+$/,'');const _0x4f2548=_0x58c0f6[_0x972da5(0x79b,'\x6d\x51\x71\x51')]();if(!_0x4f2548||_0x4f2548===_0x972da5(0x6e8,'\x5b\x21\x6c\x4b'))return _0x972da5(0x4a8,'\x51\x76\x53\x5a')+_0x972da5(0x850,'\x45\x31\x75\x66')+_0x972da5(0x2b7,'\x33\x69\x21\x55')+_0x972da5(0x697,'\x54\x5b\x67\x52')+'\x6d';const _0x6d1584=_0x8a2ff3(_0x4f2548);return _0x972da5(0x436,'\x31\x75\x65\x6f')+_0x6d1584+(_0x972da5(0x87e,'\x78\x58\x46\x63')+_0x972da5(0x8f2,'\x4b\x4d\x4a\x30')+_0x972da5(0x68b,'\x52\x23\x32\x21')+'\x6f\x6d');}}const _0x432cdb=responseIdFromBody(_0xd6b171)??responseIdFromBody(_0x2ce985);if(_0x432cdb)_0x11d5f1[_0x972da5(0x6c4,'\x78\x5b\x47\x72')+_0x972da5(0x4f8,'\x26\x6d\x46\x41')]=_0x432cdb;return _0x11d5f1;}function openAIChatMeta(_0x5e3735){const _0x5988fc=_0x1a83f6;if(!isRecord(_0x5e3735))return{};const _0x571771={};if(isRecord(_0x5e3735[_0x5988fc(0x4a2,'\x7a\x46\x50\x4e')])){const _0x582430=_0x5e3735[_0x5988fc(0x993,'\x4a\x40\x4d\x51')],_0xd0eded={};setUsageNumber(_0xd0eded,_0x5988fc(0x500,'\x5b\x21\x6c\x4b')+_0x5988fc(0x72c,'\x78\x58\x46\x63'),_0x582430[_0x5988fc(0x6b7,'\x47\x45\x4d\x32')+_0x5988fc(0x865,'\x23\x7a\x48\x73')]),setUsageNumber(_0xd0eded,_0x5988fc(0x62d,'\x70\x48\x33\x5a')+_0x5988fc(0x343,'\x26\x6d\x46\x41'),_0x582430[_0x5988fc(0x31e,'\x70\x48\x33\x5a')+_0x5988fc(0x83a,'\x64\x77\x74\x2a')+'\x73']);const _0x2fd79d=usageOrUndefined(_0xd0eded);if(_0x2fd79d)_0x571771[_0x5988fc(0x6a0,'\x73\x53\x6c\x4e')]=_0x2fd79d;}const _0x43561b=_0x5e3735[_0x5988fc(0x55a,'\x42\x6f\x57\x21')],_0x3c8c0b=Array[_0x5988fc(0x398,'\x26\x6d\x46\x41')](_0x43561b)&&isRecord(_0x43561b[-0x1b9f+0x4f4+-0x16ab*-0x1])?_0x43561b[-0x18b2+-0x2471+0x14d*0x2f]:null;_0x3c8c0b&&(typeof _0x3c8c0b[_0x5988fc(0x7c5,'\x51\x76\x53\x5a')+_0x5988fc(0x6b3,'\x23\x7a\x48\x73')]===_0x5988fc(0x4dc,'\x63\x6b\x2a\x26')||_0x3c8c0b['\x66\x69\x6e\x69\x73\x68\x5f\x72'+'\x65\x61\x73\x6f\x6e']===null)&&(_0x571771[_0x5988fc(0x53a,'\x21\x64\x4f\x62')+_0x5988fc(0x3fa,'\x26\x6d\x46\x41')]=_0x3c8c0b[_0x5988fc(0x5be,'\x54\x5b\x67\x52')+_0x5988fc(0x2d3,'\x44\x4a\x71\x76')]);const _0x2c5dc2=responseIdFromBody(_0x5e3735);if(_0x2c5dc2)_0x571771[_0x5988fc(0x40d,'\x5e\x25\x6e\x55')+_0x5988fc(0x246,'\x4b\x50\x6f\x48')]=_0x2c5dc2;return _0x571771;}function geminiMeta(_0x56c84b){const _0xfdeaee=_0x1a83f6;if(!isRecord(_0x56c84b))return{};const _0x3da1c3={};if(isRecord(_0x56c84b['\x75\x73\x61\x67\x65\x4d\x65\x74'+_0xfdeaee(0x712,'\x69\x44\x5e\x35')])){const _0x16c90e=_0x56c84b[_0xfdeaee(0x911,'\x23\x7a\x48\x73')+_0xfdeaee(0x873,'\x47\x45\x4d\x32')],_0x4909cf={};setUsageNumber(_0x4909cf,_0xfdeaee(0x46a,'\x21\x64\x4f\x62')+_0xfdeaee(0x5a9,'\x58\x31\x78\x39'),_0x16c90e[_0xfdeaee(0x88e,'\x4b\x50\x6f\x48')+_0xfdeaee(0x55e,'\x42\x6f\x57\x21')]),setUsageNumber(_0x4909cf,_0xfdeaee(0x62d,'\x70\x48\x33\x5a')+_0xfdeaee(0x7e7,'\x28\x74\x79\x54'),_0x16c90e[_0xfdeaee(0x341,'\x28\x39\x6a\x36')+_0xfdeaee(0x73b,'\x51\x76\x53\x5a')+_0xfdeaee(0x5dd,'\x57\x6d\x76\x52')]),setUsageNumber(_0x4909cf,_0xfdeaee(0x37b,'\x57\x6d\x76\x52')+_0xfdeaee(0x24a,'\x73\x53\x6c\x4e')+_0xfdeaee(0x3c5,'\x49\x56\x70\x4d'),_0x16c90e[_0xfdeaee(0x7e3,'\x74\x31\x42\x29')+'\x6e\x74\x65\x6e\x74\x54\x6f\x6b'+'\x65\x6e\x43\x6f\x75\x6e\x74']);const _0xc3bfa7=usageOrUndefined(_0x4909cf);if(_0xc3bfa7)_0x3da1c3[_0xfdeaee(0x985,'\x78\x58\x46\x63')]=_0xc3bfa7;}const _0x8aa6df=_0x56c84b[_0xfdeaee(0x810,'\x59\x64\x43\x26')+'\x65\x73'],_0x3d8708=Array['\x69\x73\x41\x72\x72\x61\x79'](_0x8aa6df)&&isRecord(_0x8aa6df[-0xa9b+0x11*0x46+0x5f5])?_0x8aa6df[0x20a9+0x6a0+-0x2749]:null;if(_0x3d8708&&typeof _0x3d8708[_0xfdeaee(0x352,'\x4b\x4d\x4a\x30')+_0xfdeaee(0x499,'\x66\x54\x6a\x5e')]==='\x73\x74\x72\x69\x6e\x67')_0x3da1c3[_0xfdeaee(0x948,'\x33\x53\x59\x55')+'\x73\x6f\x6e']=_0x3d8708[_0xfdeaee(0x61f,'\x4b\x40\x5b\x51')+_0xfdeaee(0x4b3,'\x39\x6f\x42\x76')];return _0x3da1c3;}function ollamaMeta(_0x4ccfcf){const _0x2c956b=_0x1a83f6;if(!isRecord(_0x4ccfcf))return{};const _0x34e6f5={},_0x188ab2={};setUsageNumber(_0x188ab2,_0x2c956b(0x42d,'\x54\x5b\x67\x52')+_0x2c956b(0x583,'\x64\x77\x74\x2a'),_0x4ccfcf[_0x2c956b(0x726,'\x4b\x4d\x4a\x30')+'\x76\x61\x6c\x5f\x63\x6f\x75\x6e'+'\x74']),setUsageNumber(_0x188ab2,_0x2c956b(0x80a,'\x6d\x78\x4f\x5a')+_0x2c956b(0x38f,'\x44\x4a\x71\x76'),_0x4ccfcf[_0x2c956b(0x96d,'\x37\x4c\x29\x65')+'\x6e\x74']);const _0x9b4e02=usageOrUndefined(_0x188ab2);if(_0x9b4e02)_0x34e6f5['\x75\x73\x61\x67\x65']=_0x9b4e02;if(typeof _0x4ccfcf[_0x2c956b(0x89f,'\x59\x64\x43\x26')+'\x73\x6f\x6e']===_0x2c956b(0x8a6,'\x74\x31\x42\x29'))_0x34e6f5[_0x2c956b(0x74c,'\x4b\x40\x5b\x51')+_0x2c956b(0x4c3,'\x66\x54\x6a\x5e')]=_0x4ccfcf[_0x2c956b(0x8d4,'\x64\x77\x74\x2a')+'\x73\x6f\x6e'];return _0x34e6f5;}function providerMeta(_0x37da80,_0x14c959){const _0x352591=_0x1a83f6;if(_0x37da80[_0x352591(0x82f,'\x6d\x78\x4f\x5a')]===_0x352591(0x748,'\x77\x40\x4d\x76')&&_0x37da80[_0x352591(0x8e8,'\x6d\x78\x4f\x5a')+'\x50\x61\x74\x68']===_0x352591(0x846,'\x26\x6d\x46\x41')+'\x65\x73')return openAIResponsesMeta(_0x14c959);if(_0x37da80[_0x352591(0x7f8,'\x66\x54\x6a\x5e')]===_0x352591(0x7b8,'\x45\x31\x75\x66')&&_0x37da80[_0x352591(0x922,'\x6d\x69\x21\x38')+_0x352591(0x232,'\x31\x75\x65\x6f')]==='\x2f\x63\x68\x61\x74\x2f\x63\x6f'+'\x6d\x70\x6c\x65\x74\x69\x6f\x6e'+'\x73')return openAIChatMeta(_0x14c959);if(_0x37da80[_0x352591(0x7b0,'\x78\x5b\x47\x72')]===_0x352591(0x885,'\x64\x77\x74\x2a')||_0x37da80[_0x352591(0x77c,'\x28\x39\x6a\x36')]===_0x352591(0x5b5,'\x31\x75\x65\x6f'))return geminiMeta(_0x14c959);if(_0x37da80['\x70\x72\x6f\x76\x69\x64\x65\x72']===_0x352591(0x3a5,'\x33\x53\x59\x55'))return ollamaMeta(_0x14c959);return{};}function setProviderTextUsage(_0xdfcd01,_0x3bbc9b,_0x58b127){const _0x4b888a=_0x1a83f6;if(!_0x58b127?.[0x1722+0x2b*-0xb3+-0x1*-0x6f0])return;const _0xd6ddf4=Number(_0x58b127[0x1198+0x1b65*-0x1+0x9ce]);if(!Number[_0x4b888a(0x52e,'\x6d\x78\x4f\x5a')](_0xd6ddf4))return;const _0xe5f285=_0xdfcd01[_0x4b888a(0x831,'\x33\x28\x62\x59')]??{};_0xe5f285[_0x3bbc9b]=_0xd6ddf4,_0xdfcd01[_0x4b888a(0x646,'\x78\x5b\x47\x72')]=_0xe5f285;}function _0x5313(){const _0x837c7=['\x57\x50\x61\x45\x45\x6d\x6b\x61','\x57\x4f\x39\x58\x57\x50\x37\x63\x48\x47','\x57\x35\x56\x63\x51\x6d\x6b\x6b\x57\x50\x62\x4a\x67\x53\x6b\x5a','\x57\x50\x33\x64\x53\x6d\x6b\x4f\x57\x52\x79','\x71\x65\x72\x4e\x7a\x47','\x6b\x62\x54\x4c\x71\x4d\x46\x64\x4c\x47\x71','\x69\x77\x53\x4a\x67\x4c\x66\x39','\x6f\x47\x66\x4a\x44\x53\x6b\x72\x57\x36\x54\x50\x57\x37\x53','\x57\x4f\x72\x57\x42\x74\x75\x39\x73\x68\x4e\x64\x53\x47','\x74\x59\x39\x31\x66\x38\x6f\x57\x44\x47','\x41\x38\x6f\x32\x79\x47','\x77\x53\x6b\x48\x57\x51\x61\x4c\x57\x36\x38\x53','\x6f\x61\x62\x4b\x72\x4c\x33\x64\x49\x58\x75\x75','\x74\x4c\x65\x6f\x57\x35\x4b\x4a\x63\x57\x68\x64\x4b\x47','\x57\x52\x44\x4f\x6d\x4c\x6e\x46','\x57\x36\x61\x6c\x57\x37\x56\x63\x48\x48\x61\x52','\x43\x62\x50\x75\x70\x53\x6f\x78\x77\x38\x6b\x59\x57\x51\x75','\x62\x6d\x6f\x69\x66\x4a\x46\x63\x56\x31\x61','\x57\x34\x57\x6c\x57\x37\x4e\x63\x4a\x72\x65\x38\x65\x47','\x6d\x53\x6b\x65\x57\x50\x4e\x64\x48\x64\x50\x32','\x67\x58\x4e\x64\x51\x49\x56\x63\x48\x6d\x6f\x34','\x57\x50\x64\x64\x4b\x4d\x50\x75\x64\x6d\x6b\x43\x57\x34\x74\x64\x52\x57','\x57\x36\x34\x6c\x57\x37\x46\x63\x50\x4b\x79','\x57\x37\x61\x72\x61\x49\x74\x64\x54\x53\x6b\x51\x57\x51\x78\x63\x55\x71','\x57\x34\x71\x36\x6f\x62\x78\x64\x4f\x43\x6b\x63\x57\x50\x6d','\x57\x34\x4e\x63\x54\x43\x6b\x6a\x57\x4f\x78\x64\x51\x68\x79','\x79\x43\x6f\x55\x44\x6d\x6f\x36\x43\x4c\x4b\x34\x57\x52\x65','\x57\x50\x4a\x64\x50\x38\x6f\x62\x6d\x38\x6f\x65\x61\x43\x6f\x58\x57\x35\x47','\x46\x38\x6b\x4b\x42\x4c\x4e\x64\x55\x4c\x6c\x63\x49\x6d\x6f\x2b','\x7a\x4b\x35\x56\x41\x57\x38','\x61\x78\x7a\x55','\x57\x50\x35\x4d\x57\x50\x47','\x57\x37\x6a\x77\x74\x61\x47\x6f','\x57\x50\x30\x4e\x57\x52\x52\x64\x4b\x43\x6b\x32','\x57\x34\x64\x63\x53\x71\x4b\x55\x67\x43\x6b\x62\x78\x38\x6b\x69','\x77\x6d\x6b\x64\x57\x35\x65\x55\x57\x50\x30\x77\x57\x51\x69\x79','\x57\x37\x56\x63\x4a\x59\x64\x64\x51\x47','\x57\x34\x69\x41\x6f\x58\x78\x63\x49\x4a\x54\x49\x6e\x57','\x6e\x48\x47\x37\x45\x57\x43\x5a\x72\x4c\x69\x2b','\x57\x36\x62\x58\x57\x50\x42\x64\x4f\x71','\x72\x63\x47\x58\x57\x35\x4f','\x57\x4f\x7a\x53\x57\x50\x35\x76','\x69\x77\x30\x30\x57\x37\x43\x6f\x70\x47','\x57\x4f\x35\x7a\x67\x38\x6b\x4a\x76\x53\x6b\x59\x57\x36\x4f','\x41\x61\x47\x61\x57\x37\x53\x74\x42\x76\x52\x63\x51\x57','\x74\x4b\x71\x6f\x57\x35\x79\x37\x62\x58\x56\x64\x48\x61','\x6a\x48\x54\x56\x75\x32\x37\x64\x49\x59\x38\x64','\x57\x51\x78\x64\x4a\x32\x6a\x6e\x6e\x6d\x6b\x6b\x57\x34\x38','\x57\x35\x64\x63\x52\x6d\x6b\x42\x57\x4f\x62\x5a\x67\x53\x6b\x4c\x79\x71','\x57\x35\x44\x58\x43\x4a\x79\x77\x73\x68\x4e\x64\x53\x47','\x57\x34\x37\x63\x53\x38\x6b\x6a\x57\x50\x2f\x64\x52\x4e\x78\x64\x53\x6d\x6f\x43','\x57\x52\x6c\x64\x47\x43\x6f\x52\x65\x6d\x6f\x65\x67\x6d\x6f\x2b\x57\x37\x4f','\x57\x37\x42\x63\x4c\x6d\x6b\x51\x57\x36\x74\x63\x54\x43\x6f\x33\x6a\x71','\x57\x50\x50\x4d\x57\x50\x52\x63\x49\x38\x6b\x30\x57\x37\x4c\x4b\x57\x36\x4f','\x57\x35\x6d\x71\x6f\x58\x70\x63\x53\x61','\x57\x50\x46\x64\x56\x43\x6b\x35\x57\x51\x78\x63\x4c\x74\x56\x63\x48\x30\x65','\x57\x34\x43\x63\x62\x47\x74\x63\x50\x59\x58\x4d\x6f\x57','\x57\x50\x42\x64\x4f\x30\x4c\x4a\x57\x4f\x46\x64\x4b\x75\x52\x64\x49\x61','\x41\x33\x71\x56\x61\x57','\x57\x50\x75\x6f\x41\x38\x6f\x36\x57\x4f\x31\x42\x57\x4f\x74\x63\x50\x57','\x57\x4f\x69\x54\x57\x50\x4c\x76\x57\x35\x62\x75\x73\x38\x6f\x68','\x57\x50\x6a\x53\x57\x52\x68\x63\x4c\x38\x6b\x50\x57\x37\x31\x58\x57\x36\x30','\x57\x52\x74\x64\x56\x31\x31\x5a\x6c\x53\x6b\x56\x57\x36\x70\x64\x4e\x57','\x57\x36\x70\x63\x48\x72\x72\x49\x57\x50\x33\x64\x52\x49\x54\x51','\x57\x4f\x71\x76\x42\x53\x6f\x33\x57\x51\x44\x43\x57\x52\x78\x63\x56\x71','\x6c\x38\x6f\x2b\x6b\x58\x56\x63\x47\x78\x4e\x63\x50\x4d\x34','\x72\x75\x43\x6f\x70\x78\x61\x58\x62\x58\x34','\x57\x4f\x35\x66\x69\x53\x6f\x2f\x75\x6d\x6b\x2b\x57\x36\x62\x2b','\x42\x68\x47\x53\x67\x75\x75\x73','\x57\x37\x68\x63\x4c\x73\x65\x55\x6f\x43\x6b\x48\x46\x38\x6b\x4f','\x57\x52\x6d\x4e\x7a\x53\x6b\x73','\x57\x4f\x78\x64\x53\x43\x6f\x69\x6d\x53\x6f\x59\x6c\x43\x6f\x66\x57\x36\x79','\x42\x67\x47\x2f\x57\x37\x47\x46\x6d\x59\x4a\x64\x50\x61','\x57\x34\x68\x64\x49\x43\x6f\x30\x57\x4f\x30\x7a\x68\x68\x44\x4e','\x57\x51\x79\x75\x45\x61','\x57\x34\x61\x43\x6f\x71\x74\x63\x53\x64\x53','\x6d\x6d\x6f\x59\x6b\x6d\x6b\x36\x57\x36\x68\x63\x4f\x43\x6b\x43\x57\x4f\x47','\x71\x53\x6b\x33\x57\x52\x43\x4e','\x69\x38\x6b\x66\x57\x4f\x78\x64\x4d\x5a\x72\x38\x41\x76\x30','\x77\x53\x6b\x47\x57\x50\x48\x74\x73\x6d\x6b\x43\x57\x51\x70\x64\x52\x71','\x57\x51\x4a\x64\x56\x53\x6f\x61','\x57\x34\x56\x64\x4a\x38\x6f\x52\x57\x4f\x53\x69\x6c\x75\x35\x4e','\x42\x53\x6b\x69\x57\x51\x65\x6f\x57\x34\x34','\x71\x74\x38\x36\x57\x35\x4b\x2f\x77\x47','\x66\x43\x6b\x74\x65\x6d\x6b\x2f\x57\x4f\x64\x63\x56\x32\x58\x77','\x57\x52\x6d\x62\x44\x43\x6b\x50\x57\x36\x34\x59\x43\x61','\x6a\x33\x6d\x4c','\x57\x34\x4b\x58\x57\x34\x56\x63\x52\x64\x4b\x70\x6c\x38\x6b\x46','\x6b\x74\x72\x33\x67\x6d\x6f\x48\x57\x37\x54\x66','\x64\x76\x35\x66\x57\x35\x4f','\x6f\x72\x66\x34\x72\x4d\x33\x64\x4c\x47\x6d\x61','\x68\x30\x61\x63\x6e\x4e\x6a\x42\x42\x75\x4f','\x69\x43\x6f\x30\x6f\x61','\x73\x4a\x35\x2b\x68\x71','\x57\x4f\x54\x50\x57\x50\x5a\x63\x47\x53\x6b\x52\x57\x36\x75','\x79\x72\x79\x7a\x57\x36\x65\x46\x79\x66\x4e\x63\x51\x71','\x57\x35\x7a\x47\x42\x4a\x79\x4d\x76\x67\x2f\x64\x54\x47','\x77\x53\x6b\x52\x57\x51\x4b\x4c\x57\x37\x34\x32','\x45\x38\x6f\x52\x43\x6d\x6f\x56\x43\x78\x47\x59\x57\x52\x69','\x57\x37\x34\x71\x57\x37\x6c\x63\x53\x75\x52\x64\x51\x49\x56\x64\x47\x71','\x7a\x38\x6b\x32\x57\x52\x53','\x77\x6d\x6b\x53\x57\x51\x72\x70\x78\x38\x6b\x32\x57\x52\x2f\x64\x51\x57','\x66\x6d\x6b\x74\x65\x6d\x6b\x38\x57\x4f\x42\x63\x56\x4e\x66\x53','\x42\x32\x71\x31\x61\x65\x71\x76\x62\x5a\x47','\x6e\x6d\x6f\x31\x6c\x53\x6b\x38\x57\x35\x68\x63\x50\x43\x6b\x66\x57\x4f\x57','\x67\x59\x76\x62\x69\x61','\x68\x74\x4c\x63\x6e\x43\x6b\x70\x57\x52\x47\x33\x63\x47','\x57\x34\x5a\x63\x52\x57\x5a\x64\x4a\x53\x6b\x76\x78\x66\x52\x63\x4d\x61','\x73\x73\x47\x37\x57\x34\x34\x37\x76\x33\x5a\x63\x55\x71','\x57\x37\x31\x4e\x57\x51\x70\x64\x56\x67\x4e\x64\x54\x74\x76\x37','\x75\x6d\x6b\x59\x57\x52\x50\x6a\x78\x38\x6b\x49\x57\x51\x47','\x69\x66\x7a\x36\x57\x35\x33\x63\x54\x57','\x57\x51\x47\x57\x71\x53\x6b\x66\x57\x34\x6c\x64\x48\x5a\x53','\x77\x6d\x6b\x59\x57\x50\x34','\x57\x36\x65\x6b\x57\x35\x74\x63\x47\x62\x4f\x52','\x57\x35\x66\x31\x42\x4a\x69\x37\x78\x33\x33\x64\x56\x47','\x57\x35\x46\x64\x51\x38\x6b\x4c\x57\x52\x74\x63\x4c\x67\x64\x63\x55\x30\x43','\x57\x36\x43\x34\x63\x4a\x33\x63\x4c\x62\x66\x79\x65\x57','\x74\x43\x6b\x58\x57\x4f\x35\x70','\x72\x4d\x35\x72\x71\x64\x30\x72\x45\x4c\x71','\x63\x6d\x6f\x6d\x65\x6d\x6b\x6c\x57\x35\x42\x63\x4b\x53\x6b\x50\x57\x51\x34','\x71\x75\x72\x32\x43\x72\x4f','\x57\x34\x42\x63\x56\x58\x65\x72\x6d\x53\x6b\x71\x77\x38\x6b\x66','\x57\x37\x44\x31\x57\x4f\x42\x64\x56\x77\x6c\x64\x47\x5a\x6e\x37','\x74\x49\x38\x4d\x57\x34\x30\x4b\x71\x61','\x6b\x71\x62\x56\x43\x43\x6b\x41\x57\x37\x58\x2b\x57\x37\x30','\x41\x4b\x35\x49\x45\x57\x53\x33\x77\x57','\x62\x4d\x58\x55\x6f\x5a\x47','\x46\x6d\x6f\x35\x7a\x53\x6f\x42\x79\x65\x43\x59\x57\x51\x43','\x57\x36\x37\x63\x4d\x4a\x52\x64\x47\x43\x6b\x53\x44\x4e\x75','\x57\x51\x43\x54\x57\x4f\x4a\x64\x51\x38\x6b\x45\x72\x38\x6f\x67\x57\x52\x6d','\x69\x47\x6e\x4a\x62\x6d\x6b\x33\x57\x4f\x4b\x6a\x6c\x47','\x69\x43\x6b\x77\x57\x50\x33\x64\x56\x49\x4c\x51\x41\x75\x34','\x57\x35\x4a\x64\x4f\x43\x6b\x76\x43\x53\x6f\x4d\x69\x6d\x6f\x61\x57\x35\x34','\x57\x4f\x35\x62\x6b\x53\x6b\x4a\x75\x43\x6b\x39\x57\x36\x62\x55','\x42\x33\x38\x76\x61\x4c\x61\x63\x70\x71','\x71\x64\x62\x45\x6a\x53\x6b\x62\x57\x51\x69\x54\x61\x61','\x57\x52\x33\x64\x4c\x38\x6b\x44\x57\x4f\x46\x63\x52\x58\x4e\x63\x4b\x77\x57','\x65\x6d\x6f\x48\x6e\x6d\x6b\x34\x57\x34\x64\x63\x55\x43\x6b\x43\x57\x4f\x47','\x57\x50\x61\x69\x41\x6d\x6b\x43\x57\x37\x57','\x42\x68\x34\x4d\x66\x31\x71\x74','\x57\x4f\x35\x34\x57\x50\x33\x63\x4c\x38\x6b\x30\x57\x37\x6e\x31\x57\x36\x34','\x6a\x53\x6f\x31\x6f\x57','\x74\x49\x76\x2f\x66\x43\x6f\x4f','\x72\x66\x71\x6e\x6c\x57','\x57\x37\x71\x36\x64\x73\x4e\x63\x49\x48\x31\x76\x66\x57','\x46\x6d\x6b\x78\x57\x52\x72\x33\x45\x38\x6b\x67\x57\x4f\x70\x64\x4c\x57','\x41\x53\x6b\x56\x57\x52\x65\x4b\x57\x51\x61\x51\x6d\x6d\x6b\x4a','\x57\x52\x53\x46\x45\x43\x6b\x36\x57\x36\x43\x4e\x41\x53\x6b\x36','\x57\x50\x79\x69\x7a\x43\x6f\x4a\x57\x4f\x48\x43\x57\x50\x4a\x63\x52\x71','\x43\x53\x6b\x6c\x57\x50\x75\x44\x57\x35\x47\x46\x57\x37\x78\x63\x50\x71','\x64\x78\x4c\x2f\x70\x63\x6e\x79\x41\x33\x69','\x57\x51\x61\x75\x42\x38\x6b\x6d\x57\x36\x6d\x59','\x57\x35\x56\x64\x4b\x38\x6f\x52\x57\x4f\x47\x59\x6d\x77\x7a\x50','\x57\x36\x70\x63\x56\x53\x6b\x38\x57\x37\x62\x75\x57\x52\x42\x63\x51\x6d\x6b\x34','\x57\x50\x31\x39\x57\x4f\x64\x63\x47\x6d\x6b\x59\x57\x37\x39\x37\x57\x36\x30','\x57\x34\x75\x7a\x6f\x48\x70\x63\x56\x47','\x57\x52\x5a\x64\x53\x47\x4e\x63\x47\x43\x6b\x2f\x41\x59\x64\x63\x55\x61','\x57\x50\x68\x64\x4d\x4a\x4a\x63\x51\x38\x6b\x6b\x77\x57','\x57\x36\x69\x72\x57\x37\x33\x63\x54\x57','\x57\x36\x52\x64\x49\x6d\x6f\x47\x57\x4f\x65','\x6d\x49\x35\x51\x65\x43\x6f\x4e\x57\x37\x66\x61\x6c\x57','\x73\x4c\x38\x45\x57\x35\x43\x53\x67\x48\x42\x64\x4e\x47','\x70\x33\x4f\x49\x61\x66\x35\x39\x72\x47','\x66\x5a\x74\x64\x4f\x74\x2f\x63\x4e\x53\x6f\x32\x57\x52\x6d','\x74\x38\x6b\x51\x41\x76\x64\x64\x4f\x66\x42\x63\x49\x6d\x6f\x58','\x57\x35\x4b\x66\x57\x37\x52\x63\x52\x57','\x57\x37\x70\x63\x47\x53\x6f\x65\x57\x37\x56\x63\x51\x6d\x6f\x59\x6f\x43\x6b\x62','\x68\x30\x61\x43\x6d\x4d\x44\x66\x79\x75\x43','\x57\x50\x46\x64\x51\x4b\x50\x59','\x57\x35\x56\x64\x4b\x38\x6f\x52\x57\x4f\x47\x59\x6d\x67\x7a\x35','\x57\x34\x53\x71\x6a\x47\x70\x63\x54\x63\x35\x49','\x57\x36\x75\x41\x57\x37\x68\x63\x48\x48\x4f','\x79\x77\x4f\x57\x57\x36\x38\x46\x6f\x57','\x57\x34\x71\x36\x6f\x62\x75','\x57\x4f\x72\x66\x70\x43\x6b\x2b\x72\x71','\x57\x52\x74\x64\x48\x6d\x6b\x61\x57\x4f\x52\x63\x54\x62\x33\x63\x4d\x77\x53','\x57\x50\x4f\x4d\x57\x51\x2f\x64\x51\x43\x6b\x71\x73\x53\x6f\x71','\x57\x51\x79\x45\x43\x38\x6b\x76\x57\x35\x61\x4c\x45\x43\x6b\x4c','\x70\x6d\x6b\x70\x57\x50\x6d','\x61\x38\x6f\x76\x68\x74\x4f','\x57\x35\x42\x63\x54\x72\x30\x73\x63\x43\x6b\x77\x73\x61','\x41\x53\x6f\x33\x46\x38\x6f\x54','\x57\x34\x68\x64\x4b\x38\x6f\x48\x57\x50\x75','\x43\x38\x6b\x43\x57\x50\x47\x72\x57\x35\x34\x6d\x57\x36\x46\x63\x55\x57','\x69\x43\x6f\x4b\x6a\x57\x33\x63\x4d\x67\x52\x63\x52\x78\x53','\x57\x50\x75\x6f\x7a\x43\x6f\x2b\x57\x51\x44\x41\x57\x51\x6c\x63\x51\x71','\x57\x52\x46\x63\x49\x53\x6b\x63\x57\x36\x78\x63\x54\x6d\x6f\x2f\x6d\x53\x6b\x6b','\x57\x35\x6c\x64\x49\x77\x46\x64\x4f\x38\x6b\x6f\x71\x72\x64\x63\x4b\x61','\x57\x36\x66\x74\x75\x47\x53\x69\x41\x4b\x70\x64\x47\x57','\x74\x53\x6b\x5a\x7a\x4c\x4e\x64\x4f\x65\x46\x63\x47\x53\x6f\x4c','\x62\x73\x48\x64\x73\x6d\x6b\x52\x57\x34\x31\x62\x57\x35\x53','\x57\x37\x7a\x37\x57\x4f\x68\x64\x52\x61','\x77\x63\x4b\x58\x57\x34\x57\x75\x77\x33\x57','\x57\x51\x72\x7a\x57\x51\x4c\x50\x57\x37\x58\x4b\x44\x43\x6f\x32','\x73\x4c\x38\x45\x57\x35\x79\x37\x64\x58\x56\x64\x4b\x71','\x57\x52\x57\x65\x43\x43\x6b\x42\x57\x36\x4f\x30','\x72\x63\x4b\x76\x57\x34\x57\x35\x75\x32\x65','\x57\x36\x74\x64\x51\x38\x6f\x6a\x57\x51\x43\x49\x65\x30\x7a\x67','\x77\x53\x6b\x47\x57\x4f\x54\x70\x77\x6d\x6b\x58\x57\x52\x74\x64\x4d\x47','\x57\x4f\x6d\x45\x72\x53\x6f\x4e\x57\x50\x7a\x6e','\x43\x38\x6b\x63\x57\x50\x47','\x57\x34\x76\x58\x72\x64\x65\x44','\x57\x51\x71\x59\x45\x43\x6b\x75\x57\x34\x47','\x76\x43\x6b\x4b\x57\x50\x76\x43\x77\x43\x6b\x52','\x6c\x47\x72\x55\x61\x6d\x6b\x32\x57\x50\x6d\x6b\x6f\x57','\x75\x65\x75\x79\x57\x35\x75\x2f\x61\x61\x4e\x64\x47\x61','\x57\x36\x57\x6c\x57\x37\x4e\x63\x4a\x72\x65\x38\x65\x47','\x57\x35\x79\x68\x6f\x47\x42\x63\x56\x63\x31\x49\x6a\x61','\x57\x36\x4a\x64\x50\x38\x6b\x55\x57\x36\x66\x73\x57\x52\x79','\x43\x65\x35\x57\x42\x57\x65\x52\x77\x33\x71','\x57\x50\x37\x64\x4c\x78\x4c\x72\x66\x6d\x6b\x6e\x57\x37\x78\x64\x52\x57','\x57\x4f\x43\x54\x57\x4f\x4a\x64\x51\x38\x6b\x45\x72\x38\x6f\x67\x57\x52\x6d','\x79\x75\x72\x54\x41\x57\x53\x52\x78\x65\x34','\x57\x34\x42\x63\x56\x53\x6b\x6b\x57\x50\x6e\x4a','\x69\x77\x53\x57\x62\x30\x50\x50','\x7a\x31\x4c\x4c\x43\x57\x65\x59\x74\x78\x75','\x57\x52\x39\x6e\x57\x52\x5a\x63\x56\x6d\x6b\x76\x57\x34\x6a\x67\x57\x34\x79','\x65\x64\x76\x34\x69\x73\x31\x46\x77\x4e\x43','\x57\x4f\x78\x64\x48\x78\x35\x76','\x65\x43\x6f\x76\x66\x59\x37\x63\x4b\x30\x52\x63\x4a\x76\x53','\x72\x33\x31\x6d\x75\x49\x38\x76\x44\x30\x43','\x62\x77\x72\x46\x57\x34\x33\x63\x48\x58\x72\x77','\x57\x34\x75\x32\x57\x34\x46\x63\x51\x59\x30\x41\x6a\x6d\x6b\x79','\x57\x37\x42\x64\x56\x6d\x6b\x52\x57\x37\x62\x6c','\x64\x64\x72\x45\x6c\x6d\x6b\x64\x57\x52\x6d\x33','\x74\x6d\x6b\x6b\x73\x78\x52\x64\x49\x61','\x6e\x53\x6f\x48\x6b\x53\x6b\x68\x57\x37\x42\x63\x53\x53\x6b\x6e\x57\x4f\x57','\x6a\x32\x57\x57\x66\x66\x4f','\x57\x4f\x65\x36\x57\x50\x6c\x64\x54\x47','\x57\x52\x76\x31\x6d\x75\x34','\x57\x50\x57\x41\x77\x43\x6b\x35\x57\x36\x42\x64\x55\x71','\x65\x64\x2f\x64\x53\x73\x37\x63\x48\x43\x6f\x39\x57\x51\x72\x32','\x62\x5a\x37\x64\x4a\x4a\x46\x63\x48\x6d\x6f\x32','\x6a\x58\x66\x4c\x75\x78\x42\x64\x4b\x61','\x57\x50\x46\x64\x56\x68\x7a\x34\x57\x4f\x6c\x64\x4b\x76\x4e\x64\x50\x47','\x57\x51\x54\x6e\x57\x51\x64\x63\x4f\x53\x6b\x70\x57\x34\x4c\x67\x57\x34\x57','\x43\x4e\x71\x59\x61\x66\x34\x70\x6b\x5a\x71','\x68\x61\x31\x4a\x45\x4e\x4f','\x6e\x38\x6f\x30\x6c\x38\x6b\x58\x57\x36\x70\x63\x52\x43\x6f\x69\x57\x4f\x34','\x61\x63\x58\x75\x6b\x38\x6b\x62\x57\x52\x39\x50\x67\x71','\x57\x50\x65\x30\x71\x38\x6b\x51\x57\x35\x53\x75\x78\x43\x6b\x69','\x57\x35\x78\x64\x55\x38\x6b\x4f\x57\x51\x42\x63\x4b\x59\x42\x63\x54\x30\x79','\x57\x35\x34\x2f\x6f\x62\x78\x64\x4d\x6d\x6b\x68\x57\x50\x4a\x63\x4e\x71','\x68\x58\x76\x49\x77\x4b\x2f\x64\x4d\x71\x47\x4e','\x57\x51\x69\x57\x79\x61','\x62\x6d\x6b\x4d\x41\x66\x4a\x64\x4a\x30\x4a\x63\x49\x6d\x6f\x4b','\x57\x51\x75\x73\x46\x38\x6f\x47\x57\x50\x6e\x42\x57\x50\x70\x63\x55\x47','\x57\x50\x42\x64\x4d\x4a\x4a\x63\x56\x57','\x57\x35\x56\x64\x4b\x38\x6f\x4c\x57\x4f\x57\x79\x6d\x61','\x68\x48\x35\x62\x6d\x43\x6f\x61\x57\x34\x50\x6a\x64\x57','\x68\x67\x50\x2b\x6f\x59\x39\x78\x71\x68\x34','\x6c\x30\x72\x34','\x6a\x38\x6f\x53\x6e\x6d\x6b\x58\x57\x36\x5a\x63\x54\x6d\x6b\x33\x57\x50\x34','\x74\x64\x6d\x34\x57\x37\x53\x39\x76\x33\x42\x63\x4e\x47','\x57\x52\x4e\x64\x48\x43\x6b\x73\x57\x50\x4e\x63\x51\x71\x68\x63\x4e\x78\x43','\x63\x4d\x31\x54','\x66\x43\x6b\x74\x65\x6d\x6b\x47\x57\x4f\x70\x63\x50\x33\x4f','\x67\x61\x72\x42\x6d\x47','\x57\x52\x5a\x64\x4f\x76\x76\x2b\x69\x38\x6b\x47\x57\x37\x37\x64\x4e\x47','\x57\x34\x76\x48\x46\x64\x69\x4f','\x62\x6d\x6b\x41\x64\x6d\x6b\x53\x57\x4f\x71','\x57\x4f\x6d\x69\x45\x6d\x6f\x48\x57\x4f\x4f','\x57\x37\x69\x43\x41\x43\x6b\x6b\x57\x37\x54\x4d\x44\x53\x6b\x4d','\x57\x4f\x70\x63\x55\x53\x6f\x6e\x6f\x71','\x42\x76\x54\x4d\x43\x73\x38\x6d\x45\x67\x6d','\x57\x50\x74\x64\x4a\x77\x39\x65\x62\x43\x6b\x36\x57\x34\x78\x64\x54\x71','\x57\x36\x66\x47\x57\x4f\x70\x63\x52\x71','\x57\x50\x37\x64\x4a\x67\x66\x61\x64\x6d\x6b\x79','\x57\x52\x6d\x76\x46\x43\x6b\x6e\x57\x36\x34','\x6c\x58\x66\x4e','\x79\x4d\x57\x4c\x57\x37\x4f\x45\x70\x4a\x64\x64\x4f\x61','\x57\x4f\x5a\x64\x56\x77\x35\x4c\x57\x50\x74\x64\x4c\x30\x34','\x78\x5a\x53\x4a\x57\x36\x30\x2f\x71\x68\x33\x63\x49\x57','\x42\x43\x6b\x32\x57\x52\x34\x4e\x57\x51\x57','\x57\x37\x68\x63\x4e\x73\x4b','\x66\x53\x6f\x6f\x66\x5a\x6c\x63\x4b\x31\x56\x63\x49\x76\x79','\x46\x77\x79\x4b\x57\x36\x38\x46','\x74\x43\x6f\x63\x66\x5a\x70\x63\x56\x66\x74\x63\x4a\x75\x34','\x57\x34\x35\x42\x69\x6d\x6b\x59\x76\x53\x6b\x4c\x57\x36\x7a\x32','\x6a\x53\x6f\x35\x6b\x43\x6b\x58\x57\x34\x37\x63\x50\x43\x6b\x67\x57\x4f\x4f','\x57\x36\x70\x63\x4e\x49\x54\x30\x57\x4f\x37\x64\x51\x63\x65','\x64\x4a\x6a\x66\x6c\x43\x6b\x73\x57\x52\x4b\x30\x62\x47','\x57\x35\x4e\x64\x54\x6d\x6f\x6c\x6d\x6d\x6f\x31\x6a\x6d\x6f\x65\x57\x35\x34','\x45\x53\x6b\x43\x57\x34\x62\x38\x57\x52\x53','\x57\x35\x44\x58\x42\x59\x38\x4e\x78\x71','\x57\x52\x35\x45\x57\x51\x68\x63\x52\x53\x6b\x68\x57\x34\x7a\x6c\x57\x35\x6d','\x57\x36\x56\x63\x49\x6d\x6b\x4e\x57\x37\x4e\x63\x53\x6d\x6f\x5a\x6c\x53\x6b\x55','\x57\x34\x2f\x63\x49\x32\x64\x64\x55\x6d\x6f\x68\x63\x5a\x42\x63\x52\x68\x62\x4e\x57\x50\x68\x63\x50\x61','\x57\x4f\x46\x64\x54\x4c\x79','\x78\x38\x6b\x33\x43\x4c\x56\x64\x4e\x65\x78\x63\x4d\x43\x6f\x31','\x57\x37\x71\x46\x65\x49\x56\x64\x51\x6d\x6b\x55\x57\x51\x78\x63\x54\x71','\x57\x51\x4e\x64\x55\x47\x75','\x42\x4e\x53\x49\x57\x37\x34\x45\x68\x73\x56\x64\x50\x71','\x57\x36\x52\x63\x4c\x6d\x6b\x6b\x57\x37\x68\x63\x4f\x47','\x57\x50\x79\x4e\x57\x50\x78\x64\x52\x38\x6b\x75\x72\x38\x6f\x62\x57\x37\x53','\x57\x36\x57\x78\x57\x37\x79','\x72\x75\x43\x6f\x70\x67\x43\x4b\x63\x47\x34','\x57\x35\x69\x6d\x6a\x72\x75','\x57\x35\x4a\x64\x56\x6d\x6b\x36\x57\x37\x54\x74','\x57\x51\x47\x52\x79\x53\x6b\x68\x57\x35\x42\x64\x4b\x61\x66\x2f','\x70\x78\x71\x30\x68\x71','\x78\x53\x6f\x36\x77\x43\x6f\x52\x71\x61','\x66\x38\x6f\x72\x63\x59\x52\x63\x56\x4c\x33\x63\x49\x76\x43','\x57\x37\x75\x52\x41\x62\x47\x77\x57\x4f\x4a\x63\x47\x62\x76\x76\x6f\x38\x6b\x64','\x57\x34\x78\x64\x48\x53\x6f\x38','\x57\x50\x79\x4b\x57\x50\x74\x64\x55\x6d\x6b\x41','\x57\x34\x53\x34\x6e\x61\x4a\x63\x4c\x49\x66\x4d\x6a\x61','\x57\x35\x5a\x63\x4f\x38\x6b\x2f\x57\x4f\x7a\x4e\x63\x38\x6b\x4c','\x69\x68\x61\x59\x66\x4b\x58\x50\x73\x4e\x61','\x57\x52\x75\x58\x79\x38\x6b\x64\x57\x34\x42\x64\x4c\x48\x54\x4c','\x57\x36\x4f\x42\x57\x37\x74\x63\x48\x71','\x78\x38\x6b\x33\x7a\x4c\x56\x64\x4a\x66\x74\x63\x47\x53\x6f\x49','\x63\x53\x6f\x65\x67\x74\x52\x63\x51\x75\x52\x63\x4d\x57','\x57\x35\x30\x66\x57\x36\x46\x63\x51\x57','\x43\x6d\x6b\x54\x57\x52\x34\x4b\x57\x52\x4b\x55\x62\x61','\x57\x36\x2f\x64\x51\x53\x6b\x2f\x57\x37\x61','\x45\x53\x6f\x39\x74\x53\x6f\x53\x43\x75\x65\x32\x57\x51\x38','\x74\x4a\x53\x4b\x57\x34\x4f\x2b\x71\x68\x33\x63\x55\x61','\x57\x34\x64\x63\x56\x58\x69\x79','\x42\x43\x6b\x4e\x57\x51\x39\x43\x72\x61','\x46\x53\x6b\x52\x57\x51\x79\x4d\x57\x36\x38\x53\x57\x35\x65','\x57\x52\x35\x45\x6b\x57','\x57\x52\x6a\x32\x6b\x71','\x57\x50\x74\x64\x4b\x4e\x39\x6f\x65\x57','\x79\x43\x6b\x4e\x57\x36\x31\x72\x57\x52\x69\x47\x57\x50\x69\x34','\x57\x35\x79\x75\x6a\x57\x70\x63\x53\x61','\x57\x36\x33\x63\x48\x63\x6a\x4b\x57\x4f\x4e\x64\x50\x59\x76\x57','\x77\x6d\x6b\x46\x57\x34\x76\x52','\x65\x53\x6b\x66\x61\x53\x6b\x4f\x57\x4f\x4f','\x74\x43\x6b\x50\x41\x65\x6c\x64\x51\x30\x68\x63\x4c\x43\x6f\x4b','\x57\x34\x56\x63\x54\x43\x6b\x55\x57\x35\x46\x63\x49\x53\x6f\x6a\x65\x43\x6b\x53','\x79\x65\x72\x4e\x7a\x47','\x57\x4f\x6c\x64\x53\x66\x4c\x59\x57\x4f\x42\x64\x48\x33\x74\x64\x4b\x71','\x57\x51\x46\x64\x4f\x43\x6b\x50','\x57\x50\x6a\x64\x70\x43\x6b\x34\x77\x43\x6b\x32\x57\x36\x7a\x2f','\x57\x35\x52\x63\x4f\x53\x6b\x66','\x57\x34\x4e\x64\x47\x38\x6f\x42\x57\x50\x65\x64\x6d\x33\x7a\x38','\x57\x37\x52\x64\x54\x38\x6b\x71\x57\x37\x58\x6a\x57\x52\x78\x63\x54\x6d\x6b\x4a','\x6e\x53\x6b\x66\x57\x4f\x5a\x64\x47\x74\x6a\x56\x41\x75\x53','\x42\x65\x72\x54\x45\x47','\x6e\x4a\x56\x64\x51\x5a\x6c\x63\x50\x38\x6f\x59\x57\x51\x39\x72','\x73\x53\x6b\x31\x57\x4f\x4c\x73\x71\x38\x6b\x4b','\x57\x37\x6c\x64\x56\x43\x6b\x2f\x57\x36\x62\x74\x57\x50\x52\x63\x54\x43\x6b\x34','\x57\x51\x34\x57\x43\x53\x6b\x73\x57\x35\x53','\x57\x36\x53\x61\x57\x34\x5a\x63\x4d\x58\x75\x54\x62\x61','\x57\x51\x66\x2f\x70\x66\x39\x74\x57\x4f\x6c\x63\x48\x58\x79','\x71\x73\x76\x2f\x63\x71','\x57\x34\x5a\x64\x4c\x43\x6f\x52\x57\x4f\x47\x44\x6a\x4d\x44\x65','\x57\x37\x4e\x63\x4b\x53\x6b\x66\x57\x37\x78\x63\x53\x38\x6f\x2f\x6d\x38\x6b\x64','\x57\x36\x30\x61\x57\x37\x56\x63\x48\x48\x4b\x2b\x64\x43\x6b\x55','\x57\x35\x68\x64\x56\x72\x57\x79\x67\x43\x6b\x73','\x57\x35\x56\x64\x4b\x38\x6f\x32\x57\x50\x65\x64\x6a\x61','\x57\x50\x5a\x64\x4a\x32\x4c\x65\x64\x43\x6b\x34\x57\x34\x4e\x64\x52\x57','\x68\x49\x48\x70\x74\x43\x6b\x47\x57\x34\x54\x42','\x6e\x32\x6a\x6e\x57\x35\x6c\x63\x49\x47','\x57\x4f\x54\x5a\x6d\x30\x34','\x75\x38\x6b\x2b\x57\x51\x79\x57\x57\x36\x53\x51\x57\x34\x33\x63\x49\x61','\x74\x53\x6b\x6a\x57\x35\x66\x33','\x61\x5a\x6e\x77\x69\x53\x6b\x66\x57\x51\x71','\x66\x5a\x39\x44\x74\x6d\x6b\x48\x57\x36\x50\x6e\x57\x35\x75','\x57\x36\x5a\x63\x47\x6d\x6b\x51\x57\x51\x58\x7a\x6b\x53\x6b\x7a\x7a\x71','\x61\x63\x70\x64\x54\x4a\x56\x63\x50\x53\x6f\x32\x57\x52\x4c\x30','\x57\x52\x64\x64\x51\x76\x6a\x49\x6b\x43\x6b\x34\x57\x37\x37\x64\x48\x61','\x57\x35\x44\x50\x44\x63\x75\x53','\x68\x4e\x31\x35\x69\x73\x4c\x6f','\x57\x52\x76\x55\x6f\x65\x38\x67\x57\x50\x70\x63\x49\x47\x71','\x45\x53\x6f\x48\x79\x43\x6f\x54','\x66\x6d\x6b\x74\x64\x53\x6b\x55\x57\x4f\x68\x63\x50\x78\x7a\x71','\x57\x35\x52\x63\x53\x43\x6b\x4b\x57\x35\x52\x63\x4b\x43\x6f\x74\x64\x53\x6b\x59','\x57\x50\x6d\x6b\x45\x43\x6f\x36\x57\x4f\x50\x6e\x57\x51\x42\x63\x50\x71','\x64\x75\x57\x75\x70\x4e\x35\x75\x44\x31\x43','\x57\x4f\x2f\x64\x4e\x68\x62\x39\x57\x4f\x6d','\x6e\x68\x34\x39\x68\x31\x31\x37\x71\x68\x75','\x57\x51\x65\x66\x42\x53\x6b\x43\x57\x36\x34\x52','\x57\x4f\x69\x69\x77\x43\x6b\x36\x57\x36\x6c\x64\x54\x61\x66\x42','\x57\x37\x42\x63\x49\x43\x6b\x69\x57\x37\x4e\x63\x51\x53\x6f\x4d\x6d\x6d\x6b\x69','\x57\x50\x52\x64\x47\x38\x6f\x77\x6b\x6d\x6f\x52\x6b\x38\x6f\x61\x57\x35\x34','\x67\x4d\x58\x55\x6d\x77\x58\x76\x78\x68\x4f','\x57\x36\x6a\x58\x57\x50\x46\x64\x4f\x77\x6c\x64\x50\x61','\x57\x35\x52\x64\x49\x6d\x6f\x4f\x57\x50\x30','\x75\x63\x39\x32\x65\x43\x6f\x51\x41\x53\x6b\x69\x57\x50\x4b','\x69\x38\x6f\x31\x6a\x58\x70\x63\x47\x33\x5a\x63\x52\x78\x79','\x63\x6d\x6b\x67\x62\x53\x6b\x48\x57\x4f\x37\x63\x55\x61','\x57\x37\x30\x66\x65\x64\x4a\x64\x51\x53\x6b\x35\x57\x52\x42\x63\x51\x71','\x57\x37\x37\x63\x4e\x64\x6d\x49\x6f\x43\x6b\x48\x45\x38\x6b\x51','\x78\x5a\x75\x34\x57\x35\x53','\x57\x37\x4c\x31\x57\x50\x75','\x57\x52\x79\x75\x43\x6d\x6b\x6e\x57\x36\x34','\x57\x34\x46\x64\x48\x43\x6f\x55\x57\x50\x30\x6f\x6e\x57','\x57\x35\x64\x63\x56\x72\x39\x70\x57\x52\x64\x64\x4e\x58\x48\x67','\x62\x77\x35\x69\x57\x35\x56\x63\x49\x4a\x6a\x71\x57\x50\x38','\x79\x61\x53\x62\x57\x34\x34\x59','\x6a\x49\x62\x35\x71\x32\x5a\x64\x4d\x58\x65\x72','\x57\x51\x53\x31\x74\x53\x6f\x6c\x57\x52\x72\x33','\x70\x31\x69\x57\x63\x33\x58\x59\x71\x4d\x57','\x62\x4a\x2f\x64\x52\x49\x52\x63\x49\x57','\x57\x35\x78\x63\x50\x43\x6b\x6e','\x72\x75\x34\x72\x69\x4e\x34\x33\x65\x72\x75','\x6d\x47\x6e\x61\x6c\x38\x6f\x45\x57\x34\x30','\x78\x59\x38\x41\x57\x37\x47\x4c','\x64\x77\x39\x41','\x57\x51\x6d\x73\x46\x38\x6b\x7a\x57\x34\x42\x64\x50\x5a\x66\x2b','\x57\x52\x68\x64\x53\x58\x56\x63\x4b\x38\x6b\x51\x79\x74\x37\x63\x55\x71','\x63\x78\x76\x79\x57\x35\x56\x63\x49\x57\x6e\x68\x57\x52\x71','\x6e\x4e\x4f\x39\x62\x31\x34','\x57\x36\x53\x72\x57\x37\x33\x63\x4f\x65\x52\x64\x53\x62\x70\x64\x48\x47','\x57\x4f\x78\x64\x55\x6d\x6f\x69\x6f\x61','\x63\x32\x31\x64\x57\x35\x33\x63\x4a\x71','\x65\x75\x79\x43\x6e\x32\x30','\x57\x4f\x52\x64\x51\x43\x6b\x55\x57\x51\x68\x63\x48\x74\x33\x63\x51\x57','\x70\x43\x6f\x53\x6f\x71\x42\x63\x4b\x33\x33\x63\x56\x4e\x38','\x57\x51\x6d\x68\x57\x37\x6c\x63\x52\x76\x33\x64\x56\x62\x64\x64\x48\x61','\x57\x52\x4b\x58\x57\x52\x33\x64\x47\x53\x6b\x52','\x57\x4f\x7a\x73\x69\x43\x6b\x30\x72\x43\x6b\x57\x57\x37\x54\x38','\x57\x52\x6d\x33\x43\x38\x6b\x66','\x75\x73\x39\x51\x62\x43\x6f\x48\x42\x43\x6b\x76\x57\x52\x47','\x57\x50\x4a\x64\x4b\x4a\x46\x63\x4f\x53\x6b\x6b\x77\x48\x5a\x63\x52\x47','\x57\x51\x47\x55\x43\x38\x6b\x7a\x57\x34\x6c\x64\x4a\x71\x66\x35','\x57\x34\x74\x64\x47\x53\x6f\x51\x57\x50\x38\x7a\x6b\x57','\x61\x63\x50\x75\x6e\x38\x6b\x67\x57\x52\x4f\x52\x67\x61','\x7a\x48\x48\x65\x69\x38\x6f\x71\x74\x6d\x6b\x4b\x57\x52\x53','\x6f\x4b\x35\x30\x57\x36\x46\x63\x55\x73\x44\x48\x57\x51\x4f','\x62\x68\x44\x53\x6d\x49\x4c\x65','\x57\x4f\x6d\x54\x57\x50\x78\x64\x52\x38\x6b\x63','\x57\x50\x48\x4a\x57\x4f\x4c\x34\x57\x34\x54\x61\x73\x43\x6f\x65','\x57\x34\x33\x63\x48\x74\x46\x64\x50\x57','\x65\x71\x6a\x47\x7a\x53\x6b\x59','\x70\x53\x6b\x79\x57\x4f\x37\x64\x49\x64\x65','\x57\x51\x38\x35\x76\x43\x6f\x41\x57\x52\x4c\x48\x57\x4f\x56\x63\x4c\x57','\x45\x53\x6f\x51\x43\x6d\x6f\x4d\x7a\x30\x75\x34\x57\x52\x71','\x65\x6d\x6f\x6f\x66\x64\x53','\x57\x35\x5a\x63\x55\x6d\x6b\x2f\x57\x35\x46\x63\x4a\x53\x6f\x41\x61\x38\x6b\x47','\x57\x34\x68\x63\x50\x61\x57\x79\x64\x6d\x6b\x45','\x57\x35\x57\x4f\x6c\x71','\x7a\x32\x47\x49','\x6e\x33\x65\x4e','\x57\x34\x6d\x6e\x6d\x62\x6d','\x6e\x4e\x4f\x39','\x72\x58\x50\x7a\x6d\x38\x6f\x4c','\x57\x37\x38\x62\x57\x36\x64\x63\x53\x31\x68\x64\x54\x57\x2f\x64\x4a\x71','\x45\x6d\x6b\x76\x57\x51\x72\x32\x79\x53\x6b\x68\x57\x50\x74\x64\x48\x61','\x68\x5a\x4c\x6c\x72\x61','\x74\x6d\x6f\x66\x68\x74\x6c\x63\x55\x66\x4b','\x78\x53\x6b\x32\x57\x50\x31\x6b\x78\x47','\x57\x50\x6d\x34\x71\x38\x6b\x52\x57\x34\x61\x74\x74\x6d\x6b\x6d','\x68\x53\x6b\x4f\x57\x52\x4e\x64\x51\x62\x62\x7a\x71\x4e\x53','\x57\x37\x33\x63\x48\x33\x33\x64\x55\x43\x6b\x4f\x46\x67\x56\x63\x56\x71','\x57\x35\x6c\x64\x4b\x4a\x4e\x63\x51\x6d\x6b\x42\x78\x57\x57','\x57\x37\x72\x4b\x41\x73\x34','\x67\x4e\x44\x2b\x69\x73\x4c\x65\x43\x78\x75','\x57\x36\x56\x63\x4e\x63\x72\x36\x57\x50\x52\x64\x52\x59\x39\x30','\x75\x4b\x50\x33\x44\x57','\x73\x43\x6b\x66\x57\x34\x66\x39\x57\x35\x38','\x57\x34\x70\x63\x55\x6d\x6b\x79\x57\x50\x57','\x43\x67\x6d\x55\x62\x4c\x47\x66\x70\x73\x6d','\x57\x36\x33\x63\x4b\x5a\x79\x38\x70\x38\x6b\x47','\x57\x37\x5a\x63\x4a\x59\x64\x64\x52\x43\x6b\x55\x46\x67\x6c\x63\x4a\x47','\x57\x36\x65\x61\x57\x36\x34','\x57\x4f\x79\x47\x57\x50\x6c\x64\x56\x43\x6b\x66','\x79\x38\x6f\x35\x79\x71','\x74\x53\x6b\x6a\x57\x35\x66\x33\x57\x51\x38\x6e\x57\x52\x71\x69','\x67\x49\x39\x71\x69\x53\x6b\x66','\x77\x38\x6b\x55\x57\x50\x39\x63','\x7a\x4e\x54\x42\x72\x73\x6d','\x6d\x68\x61\x31\x63\x47','\x75\x64\x35\x30\x61\x6d\x6f\x42\x42\x6d\x6b\x65\x57\x50\x53','\x57\x36\x74\x63\x4e\x49\x48\x48\x57\x52\x56\x64\x52\x4a\x6a\x5a','\x57\x51\x65\x70\x45\x6d\x6b\x4c\x57\x34\x53','\x57\x34\x43\x68\x6a\x48\x78\x63\x53\x72\x50\x49\x6f\x57','\x57\x52\x52\x64\x50\x38\x6b\x50\x57\x51\x57','\x57\x50\x79\x42\x45\x6d\x6f\x36\x57\x4f\x53','\x57\x4f\x65\x58\x57\x4f\x56\x64\x56\x47','\x45\x53\x6f\x33\x46\x53\x6f\x4b','\x6e\x53\x6f\x4c\x6c\x53\x6b\x4b\x57\x36\x33\x63\x52\x53\x6b\x42\x57\x4f\x47','\x57\x50\x61\x50\x57\x4f\x4a\x64\x54\x6d\x6b\x46','\x57\x52\x44\x4f\x6d\x4b\x7a\x77\x57\x4f\x74\x63\x54\x47\x4f','\x67\x57\x39\x62\x74\x43\x6b\x38','\x57\x37\x70\x63\x4a\x53\x6b\x67\x57\x37\x2f\x63\x53\x38\x6f\x4c','\x65\x38\x6b\x74\x65\x6d\x6b\x37','\x6d\x6d\x6b\x77\x57\x4f\x42\x64\x47\x71\x6a\x58\x41\x61','\x57\x34\x46\x63\x50\x61\x48\x42\x57\x51\x37\x64\x4d\x58\x76\x78','\x6c\x6d\x6f\x30\x6b\x43\x6b\x4b\x57\x37\x68\x64\x55\x53\x6f\x68\x57\x34\x69','\x57\x50\x79\x4e\x57\x50\x2f\x64\x56\x47','\x57\x4f\x4e\x64\x4b\x62\x52\x63\x4f\x38\x6b\x6a\x76\x47\x33\x63\x55\x71','\x69\x74\x38\x34\x68\x75\x4c\x37\x74\x33\x43','\x57\x50\x56\x64\x50\x38\x6b\x34\x57\x52\x56\x63\x4c\x62\x56\x63\x54\x30\x6d','\x57\x37\x5a\x63\x53\x74\x38\x36\x6e\x57','\x57\x52\x56\x64\x56\x53\x6f\x6b\x6f\x61','\x57\x51\x35\x30\x6c\x76\x35\x73','\x57\x52\x74\x64\x49\x67\x6e\x42\x6d\x57','\x72\x33\x31\x6d\x75\x5a\x47\x61\x45\x4b\x34','\x63\x78\x6a\x6a','\x6d\x33\x79\x39\x6e\x4b\x4c\x2f\x74\x77\x4f','\x77\x49\x4b\x2b\x7a\x4e\x58\x6f\x76\x4d\x53\x51\x57\x35\x57\x4f','\x46\x6d\x6b\x74\x57\x51\x72\x4f\x45\x43\x6b\x72\x57\x50\x74\x64\x49\x71','\x7a\x38\x6f\x32\x44\x6d\x6f\x6c\x46\x66\x71\x4c\x57\x52\x75','\x57\x4f\x78\x64\x53\x64\x61','\x57\x50\x38\x45\x45\x6d\x6b\x43\x57\x36\x6d','\x57\x37\x62\x4b\x44\x63\x4f','\x57\x50\x6a\x49\x57\x4f\x48\x45\x57\x35\x53','\x66\x53\x6f\x70\x62\x43\x6b\x6e\x57\x35\x33\x63\x4c\x6d\x6b\x36\x57\x51\x57','\x57\x37\x30\x66\x65\x64\x4a\x64\x53\x43\x6b\x37\x57\x52\x6c\x63\x50\x61','\x65\x63\x58\x70\x57\x35\x68\x63\x49\x61\x76\x77\x57\x50\x4b','\x68\x67\x50\x49\x6f\x61','\x57\x51\x4b\x58\x79\x71','\x64\x38\x6b\x74\x61\x53\x6b\x52\x57\x4f\x52\x63\x4f\x32\x57','\x57\x34\x56\x64\x48\x53\x6f\x30\x57\x4f\x57\x79\x6d\x77\x7a\x79','\x79\x6d\x6f\x53\x45\x6d\x6f\x52\x71\x66\x71\x2b\x57\x51\x4f','\x57\x50\x70\x64\x47\x78\x35\x65\x6e\x6d\x6b\x6c\x57\x34\x79','\x57\x50\x5a\x64\x52\x43\x6b\x48\x57\x51\x68\x63\x47\x71','\x42\x30\x35\x57\x42\x61\x38\x49\x74\x71','\x57\x37\x65\x45\x57\x36\x56\x63\x4e\x71\x79\x52\x61\x6d\x6b\x4d','\x57\x34\x42\x63\x56\x53\x6b\x6f\x57\x4f\x79\x52\x63\x43\x6b\x4e\x76\x61','\x57\x52\x44\x65\x57\x51\x70\x63\x56\x6d\x6b\x6a\x57\x34\x7a\x72\x57\x34\x30','\x66\x63\x66\x62\x73\x53\x6b\x55\x57\x36\x7a\x6d\x57\x35\x30','\x62\x53\x6f\x56\x6f\x43\x6b\x54','\x57\x36\x69\x57\x62\x59\x2f\x63\x48\x48\x31\x76\x65\x57','\x62\x75\x54\x78\x6a\x6d\x6b\x76\x57\x35\x38\x32\x61\x47','\x57\x36\x53\x30\x64\x73\x2f\x63\x4b\x62\x39\x63\x67\x61','\x57\x51\x72\x78\x57\x50\x33\x63\x48\x53\x6b\x31\x57\x36\x76\x39\x57\x36\x57','\x57\x51\x75\x4a\x72\x38\x6f\x6b\x57\x51\x4f','\x57\x34\x76\x50\x43\x73\x71\x4f\x77\x78\x43','\x64\x73\x52\x64\x50\x5a\x64\x63\x49\x38\x6f\x36\x57\x4f\x48\x57','\x57\x4f\x78\x64\x4b\x68\x48\x76','\x7a\x53\x6b\x59\x57\x4f\x39\x6a\x73\x6d\x6b\x49\x57\x52\x5a\x64\x4c\x57','\x57\x52\x30\x41\x45\x43\x6b\x78\x57\x37\x57','\x73\x6d\x6b\x57\x44\x75\x42\x64\x4b\x66\x79','\x57\x35\x56\x63\x4a\x59\x56\x64\x51\x47','\x57\x34\x44\x51\x43\x5a\x69\x53\x76\x67\x47','\x57\x35\x64\x64\x48\x31\x7a\x76\x57\x4f\x68\x64\x53\x4e\x65','\x57\x37\x37\x63\x4b\x38\x6b\x6f\x57\x37\x69','\x77\x6d\x6b\x47\x41\x4c\x74\x64\x4b\x76\x64\x63\x48\x6d\x6f\x5a','\x64\x6d\x6b\x75\x57\x4f\x56\x64\x47\x74\x66\x68\x79\x31\x4f','\x57\x34\x56\x64\x4f\x6d\x6b\x7a\x57\x50\x66\x33\x68\x43\x6b\x4c\x71\x47','\x57\x51\x64\x64\x55\x30\x39\x35\x57\x50\x37\x64\x48\x57','\x6c\x6d\x6f\x48\x6c\x47','\x57\x50\x47\x4e\x57\x50\x2f\x64\x56\x53\x6b\x44','\x57\x4f\x48\x38\x57\x4f\x68\x63\x4b\x38\x6b\x7a\x57\x36\x72\x58\x57\x36\x69','\x57\x4f\x74\x64\x4f\x38\x6f\x77\x6f\x6d\x6f\x4b\x6a\x71','\x57\x36\x4b\x4f\x57\x37\x52\x63\x52\x76\x56\x64\x4d\x48\x70\x64\x4e\x71','\x57\x4f\x52\x64\x52\x43\x6b\x2b\x57\x51\x64\x63\x4a\x64\x53','\x57\x51\x4f\x58\x43\x53\x6b\x73\x57\x34\x38','\x66\x6d\x6b\x37\x67\x38\x6b\x6a\x57\x51\x47','\x6a\x4d\x30\x57\x68\x75\x58\x51\x74\x67\x57','\x57\x51\x37\x64\x53\x30\x48\x53\x69\x6d\x6b\x33\x57\x37\x37\x64\x4b\x47','\x64\x49\x6a\x65\x45\x4c\x74\x64\x56\x73\x69\x36','\x57\x34\x64\x63\x55\x43\x6b\x6b\x57\x4f\x62\x5a\x67\x57','\x57\x52\x5a\x64\x56\x30\x62\x47\x6f\x43\x6b\x4d\x57\x36\x2f\x64\x4a\x71','\x70\x6d\x6b\x7a\x57\x50\x4e\x64\x49\x63\x34','\x57\x50\x48\x4e\x57\x4f\x70\x63\x4b\x38\x6b\x51\x57\x37\x6e\x47\x57\x36\x4f','\x57\x34\x48\x53\x43\x63\x38\x39\x73\x71','\x57\x51\x71\x59\x44\x38\x6b\x63\x57\x34\x46\x64\x47\x78\x6e\x4f','\x62\x4a\x48\x44\x71\x71','\x64\x53\x6f\x65\x66\x4a\x4e\x63\x55\x66\x61','\x57\x4f\x4c\x6f\x64\x47','\x65\x49\x6a\x61\x74\x61','\x43\x75\x48\x49\x43\x73\x65\x5a\x74\x77\x6d','\x61\x48\x39\x75\x6d\x38\x6f\x62\x57\x34\x31\x62\x64\x57','\x6c\x74\x6e\x76\x70\x61','\x66\x53\x6f\x6f\x6e\x64\x68\x63\x55\x31\x33\x63\x4d\x4e\x4b','\x61\x5a\x35\x6c\x77\x38\x6f\x4f\x57\x35\x48\x70\x57\x35\x30','\x65\x59\x6e\x54\x72\x53\x6b\x57\x57\x35\x44\x43','\x57\x34\x75\x53\x6c\x48\x6d','\x79\x75\x6e\x53\x42\x61\x53\x52\x7a\x78\x34','\x64\x64\x50\x55\x65\x53\x6f\x4f\x44\x38\x6b\x73\x57\x50\x69','\x57\x35\x61\x4b\x64\x71\x2f\x64\x56\x61','\x57\x50\x71\x51\x57\x50\x46\x64\x56\x53\x6b\x76','\x6b\x6d\x6f\x4c\x70\x6d\x6b\x4b\x57\x36\x56\x63\x53\x38\x6f\x67\x57\x4f\x34','\x57\x37\x4c\x37\x57\x4f\x68\x64\x53\x67\x53','\x69\x6d\x6f\x37\x46\x53\x6f\x4c\x7a\x66\x4b\x59\x57\x52\x69','\x57\x34\x65\x34\x57\x35\x46\x63\x50\x64\x75\x45\x70\x53\x6b\x65','\x70\x31\x72\x55\x77\x67\x68\x64\x4c\x58\x71\x6d','\x57\x37\x44\x37\x57\x4f\x56\x64\x4f\x77\x6c\x64\x53\x4a\x75','\x57\x52\x6e\x78\x6f\x66\x39\x68\x57\x50\x74\x63\x47\x58\x65','\x57\x37\x34\x62\x57\x37\x37\x63\x4f\x4c\x64\x64\x52\x72\x78\x64\x49\x57','\x73\x53\x6f\x44\x71\x38\x6f\x78\x72\x32\x65\x66\x57\x4f\x6d','\x70\x77\x4f\x4c\x61\x30\x50\x55\x46\x67\x4f','\x57\x35\x5a\x64\x4c\x43\x6f\x54\x57\x50\x75','\x57\x4f\x2f\x64\x54\x4c\x72\x57\x57\x4f\x68\x64\x4e\x61','\x41\x75\x35\x54\x42\x61','\x57\x37\x5a\x63\x4a\x38\x6b\x45\x57\x37\x4a\x63\x52\x6d\x6f\x42\x70\x43\x6b\x76','\x6f\x53\x6b\x79\x57\x4f\x71','\x57\x34\x4e\x63\x54\x43\x6b\x41\x57\x50\x4a\x64\x53\x32\x69','\x57\x37\x42\x63\x49\x5a\x44\x5a','\x76\x43\x6b\x56\x57\x51\x4b\x4d\x57\x36\x6d\x36\x57\x34\x70\x63\x4a\x47','\x6b\x76\x58\x6f\x65\x71','\x62\x33\x6e\x55\x6f\x5a\x38','\x64\x38\x6f\x6f\x68\x64\x56\x63\x4f\x65\x56\x64\x48\x57','\x57\x37\x78\x63\x4f\x62\x62\x62\x57\x4f\x69','\x77\x6d\x6b\x30\x57\x52\x38\x79\x57\x34\x65','\x57\x34\x64\x63\x54\x71\x30\x6e\x61\x53\x6b\x44\x73\x43\x6b\x6d','\x57\x37\x42\x63\x4e\x47\x30\x50\x70\x57','\x77\x6d\x6b\x64\x57\x34\x31\x36','\x57\x35\x42\x63\x4b\x59\x35\x36','\x64\x6d\x6b\x68\x57\x4f\x56\x64\x4e\x49\x35\x53\x7a\x66\x30','\x62\x5a\x48\x67\x41\x76\x42\x64\x51\x4a\x65\x4d','\x65\x73\x37\x64\x4f\x59\x52\x63\x4e\x38\x6f\x47\x57\x50\x72\x38','\x57\x52\x75\x37\x79\x43\x6b\x66\x57\x34\x52\x64\x4b\x64\x54\x75','\x57\x36\x5a\x63\x4b\x38\x6b\x6b\x57\x36\x6c\x63\x53\x53\x6f\x4c','\x43\x33\x30\x4f\x65\x31\x71','\x6e\x32\x58\x4b\x70\x49\x4c\x79\x72\x57','\x57\x4f\x44\x45\x69\x43\x6b\x34\x72\x6d\x6b\x35\x57\x35\x31\x38','\x73\x43\x6b\x71\x57\x35\x72\x49\x57\x51\x38\x41\x57\x51\x4b\x69','\x57\x50\x6e\x72\x69\x38\x6b\x2b\x71\x6d\x6b\x30\x57\x36\x54\x76','\x57\x52\x61\x78\x57\x51\x56\x64\x49\x43\x6b\x2b\x46\x38\x6f\x38\x57\x50\x69','\x45\x6d\x6f\x78\x45\x43\x6f\x2b\x74\x47','\x72\x74\x38\x31\x57\x35\x4f\x55\x71\x67\x53','\x57\x37\x46\x63\x48\x4a\x65\x57\x6c\x6d\x6b\x4a\x7a\x43\x6b\x35','\x57\x37\x4b\x77\x57\x37\x52\x63\x52\x47','\x57\x4f\x64\x64\x54\x53\x6f\x77\x6d\x57','\x57\x35\x7a\x47\x42\x4a\x6d\x4c\x74\x47','\x57\x50\x76\x4f\x57\x4f\x61','\x69\x78\x57\x57\x68\x77\x39\x37\x75\x77\x30','\x57\x35\x66\x58\x45\x33\x34','\x57\x34\x37\x64\x4b\x53\x6f\x51\x57\x50\x53\x7a\x6b\x4d\x58\x4d','\x57\x50\x4f\x39\x57\x4f\x2f\x64\x51\x38\x6b\x65\x78\x71','\x57\x52\x74\x64\x56\x61\x4e\x63\x4d\x6d\x6b\x2f\x45\x4a\x70\x63\x50\x71','\x69\x53\x6f\x4c\x70\x6d\x6b\x47\x57\x37\x46\x63\x53\x53\x6b\x6e\x57\x50\x34','\x57\x37\x33\x63\x48\x73\x42\x64\x51\x53\x6b\x49','\x57\x34\x5a\x63\x4a\x77\x74\x64\x56\x38\x6f\x70\x61\x65\x56\x64\x49\x4e\x50\x37\x57\x50\x52\x63\x54\x62\x6c\x64\x4e\x61','\x57\x35\x38\x38\x6d\x61\x78\x64\x4d\x38\x6b\x7a','\x79\x57\x4b\x2f\x57\x36\x79\x4d','\x62\x4e\x72\x62\x57\x35\x5a\x63\x47\x57\x65','\x57\x36\x72\x31\x57\x50\x46\x64\x50\x4d\x69','\x78\x38\x6b\x4f\x57\x50\x44\x70\x73\x6d\x6b\x58','\x57\x35\x75\x62\x6a\x58\x4e\x63\x55\x59\x34','\x57\x35\x64\x63\x50\x43\x6b\x65\x57\x4f\x44\x4a\x62\x53\x6b\x6e\x78\x47','\x57\x35\x71\x37\x61\x47\x6c\x64\x4a\x6d\x6b\x7a\x57\x50\x4a\x63\x4d\x61','\x69\x43\x6b\x2f\x57\x51\x37\x64\x4f\x74\x79','\x62\x5a\x48\x67\x41\x75\x33\x64\x51\x64\x75\x52','\x63\x58\x62\x79\x6b\x38\x6b\x66\x57\x50\x75\x52\x67\x47','\x57\x51\x4a\x64\x51\x43\x6b\x35\x57\x52\x30','\x61\x43\x6f\x77\x65\x53\x6b\x79\x57\x35\x74\x63\x48\x43\x6b\x36\x57\x52\x69','\x57\x37\x66\x33\x57\x4f\x5a\x64\x50\x4d\x37\x64\x53\x59\x38','\x57\x52\x64\x63\x48\x6d\x6b\x65\x57\x37\x56\x63\x54\x38\x6f\x36\x6f\x43\x6b\x7a','\x57\x34\x46\x63\x4f\x62\x48\x66\x57\x52\x56\x64\x4d\x71\x39\x67','\x69\x43\x6b\x73\x57\x50\x56\x64\x4d\x64\x48\x52\x45\x67\x30','\x57\x51\x4f\x37\x79\x53\x6b\x46\x57\x34\x5a\x64\x47\x61','\x64\x53\x6b\x79\x62\x38\x6b\x51\x57\x50\x43','\x41\x53\x6b\x6d\x77\x68\x4a\x64\x53\x67\x64\x63\x51\x6d\x6f\x43','\x66\x6d\x6b\x63\x65\x43\x6b\x4d\x57\x4f\x68\x63\x54\x4e\x7a\x76','\x57\x4f\x75\x50\x57\x4f\x4e\x64\x51\x6d\x6b\x75','\x57\x35\x4e\x63\x4f\x6d\x6b\x6c\x57\x50\x4e\x64\x55\x66\x52\x64\x52\x43\x6f\x6c','\x57\x34\x64\x64\x47\x53\x6f\x4c\x57\x50\x57\x69\x6d\x78\x61','\x57\x4f\x56\x64\x56\x6d\x6b\x53\x57\x51\x68\x63\x4c\x74\x57','\x57\x34\x42\x63\x54\x71\x30\x6a','\x78\x5a\x38\x4b\x57\x35\x69\x51\x75\x78\x30','\x57\x4f\x66\x2f\x57\x4f\x6e\x6e\x57\x34\x50\x66\x78\x53\x6f\x66','\x41\x43\x6b\x35\x57\x36\x7a\x41\x57\x51\x69\x38\x57\x4f\x43\x57','\x68\x68\x48\x43\x57\x35\x53','\x57\x37\x50\x31\x57\x4f\x4a\x64\x53\x61','\x57\x4f\x46\x64\x54\x4c\x7a\x4a\x57\x50\x71','\x57\x50\x46\x64\x56\x66\x76\x37\x57\x51\x52\x64\x48\x4b\x37\x64\x4c\x47','\x76\x6d\x6b\x37\x57\x51\x65','\x57\x50\x58\x53\x57\x50\x57','\x57\x37\x33\x63\x4a\x59\x64\x64\x52\x53\x6b\x4f\x46\x78\x2f\x63\x54\x61','\x65\x62\x4c\x73\x6e\x6d\x6f\x79\x57\x35\x54\x34\x65\x47','\x57\x50\x46\x64\x48\x77\x58\x76\x66\x6d\x6b\x6c\x57\x34\x2f\x64\x51\x61','\x57\x34\x46\x63\x54\x6d\x6b\x42\x57\x50\x65','\x57\x50\x6d\x77\x46\x47','\x73\x43\x6b\x70\x57\x50\x61\x41\x57\x4f\x69\x42\x6a\x43\x6b\x46','\x57\x50\x64\x64\x4d\x49\x78\x63\x56\x38\x6b\x46\x76\x62\x4f','\x57\x50\x4f\x4a\x57\x50\x37\x64\x54\x43\x6b\x63','\x65\x43\x6f\x76\x63\x4a\x56\x63\x52\x76\x75','\x6f\x32\x57\x71\x61\x75\x31\x37\x77\x47','\x57\x50\x39\x54\x57\x4f\x33\x63\x4a\x6d\x6b\x49\x57\x37\x6e\x4d','\x45\x53\x6b\x65\x57\x51\x72\x52\x46\x38\x6b\x6d\x57\x4f\x46\x64\x47\x71','\x79\x32\x57\x2f\x57\x37\x57\x6f\x6e\x57','\x57\x35\x71\x75\x69\x49\x70\x63\x4f\x74\x54\x49\x6e\x57','\x44\x4d\x7a\x4d\x41\x57\x38\x48\x73\x77\x75','\x57\x35\x71\x75\x69\x49\x2f\x63\x50\x4a\x31\x31\x6d\x57','\x61\x77\x54\x6b\x6a\x5a\x35\x78\x74\x71','\x57\x36\x44\x41\x73\x71\x43\x61\x44\x4b\x70\x64\x4e\x47','\x57\x36\x37\x63\x48\x4a\x2f\x64\x56\x6d\x6b\x4d\x43\x67\x43','\x63\x4a\x6a\x68','\x62\x4a\x6a\x73\x6b\x43\x6b\x76\x57\x52\x69\x48\x68\x61','\x57\x4f\x68\x64\x54\x53\x6f\x69\x61\x53\x6f\x4d\x6a\x38\x6f\x75\x57\x34\x71','\x62\x6d\x6b\x45\x64\x6d\x6b\x38\x57\x4f\x52\x63\x56\x31\x6a\x43','\x57\x52\x53\x63\x78\x43\x6b\x6c\x57\x37\x30\x4e\x79\x71','\x74\x59\x6d\x47\x57\x35\x53\x68\x76\x33\x42\x63\x4a\x71','\x57\x36\x4a\x64\x50\x38\x6b\x39\x57\x37\x58\x6a\x57\x51\x6c\x63\x51\x6d\x6b\x58','\x57\x36\x72\x48\x57\x50\x42\x64\x56\x71','\x57\x4f\x78\x63\x4a\x77\x72\x66','\x57\x35\x6d\x38\x6f\x57','\x57\x34\x46\x64\x49\x38\x6f\x4f\x57\x50\x4b\x61\x69\x47','\x77\x5a\x53\x34\x57\x36\x65\x4f\x78\x77\x33\x63\x48\x61','\x78\x38\x6b\x51\x41\x66\x4e\x64\x4f\x65\x46\x63\x4a\x6d\x6f\x38','\x57\x36\x34\x47\x6f\x71','\x69\x43\x6f\x34\x6c\x43\x6b\x58\x57\x36\x5a\x63\x53\x38\x6b\x62\x57\x50\x53','\x57\x4f\x6c\x64\x55\x4b\x50\x37\x57\x50\x74\x64\x47\x65\x33\x64\x49\x47','\x57\x4f\x6a\x35\x57\x50\x35\x73\x57\x34\x31\x67','\x57\x4f\x6c\x64\x55\x43\x6f\x68\x70\x6d\x6f\x58\x6c\x43\x6f\x66','\x6f\x61\x62\x35\x78\x32\x5a\x64\x4e\x57','\x57\x37\x30\x68\x6c\x43\x6f\x77\x57\x36\x57\x55\x45\x43\x6b\x39','\x57\x4f\x37\x64\x54\x4b\x4c\x4b\x57\x50\x74\x64\x4b\x30\x37\x64\x55\x47','\x42\x72\x35\x69','\x57\x36\x69\x43\x57\x36\x4f','\x67\x68\x6e\x64\x57\x34\x4a\x63\x4a\x58\x44\x77\x57\x50\x4b','\x46\x6d\x6b\x70\x57\x51\x39\x4f','\x64\x77\x54\x34\x45\x64\x35\x74\x71\x67\x4b','\x77\x6d\x6b\x54\x57\x50\x76\x58\x44\x57','\x61\x71\x50\x68\x6d\x53\x6f\x71','\x69\x53\x6b\x4b\x70\x6d\x6b\x44\x57\x51\x37\x63\x48\x4b\x62\x47','\x42\x68\x71\x56\x66\x30\x75\x6a','\x74\x77\x79\x31\x57\x36\x69','\x57\x35\x69\x68\x57\x37\x6c\x63\x52\x31\x69','\x57\x37\x64\x63\x49\x43\x6b\x2f\x57\x36\x74\x63\x50\x53\x6f\x31\x6f\x71','\x57\x34\x4f\x71\x6f\x58\x46\x63\x4f\x73\x65','\x71\x38\x6b\x47\x7a\x4c\x68\x64\x4d\x4c\x42\x63\x4e\x47','\x66\x6d\x6f\x48\x6b\x43\x6b\x38','\x57\x35\x66\x32\x46\x63\x65\x53','\x67\x33\x76\x45\x57\x35\x56\x63\x48\x58\x34','\x57\x50\x72\x2f\x57\x50\x35\x75\x57\x35\x65','\x57\x52\x61\x71\x42\x38\x6b\x43\x57\x35\x4f\x30\x44\x61','\x57\x51\x65\x73\x46\x43\x6b\x78\x57\x34\x6d\x56\x44\x53\x6b\x53','\x57\x4f\x68\x64\x55\x43\x6f\x44\x57\x34\x61\x2f\x75\x6d\x6b\x6a\x7a\x38\x6b\x53\x57\x35\x53\x39\x57\x34\x53','\x70\x43\x6f\x76\x66\x5a\x78\x63\x51\x76\x42\x63\x4d\x57','\x61\x49\x7a\x6e\x62\x38\x6f\x59','\x57\x35\x42\x63\x54\x72\x69\x6a\x64\x61','\x57\x52\x64\x64\x56\x47\x37\x63\x4b\x38\x6b\x38\x41\x49\x56\x63\x56\x57','\x57\x4f\x42\x64\x56\x75\x57','\x57\x50\x68\x64\x50\x53\x6b\x39\x57\x51\x64\x63\x4c\x62\x64\x63\x52\x65\x43','\x73\x59\x38\x36\x57\x35\x30\x2f\x77\x33\x46\x63\x48\x61','\x42\x67\x47\x48\x57\x36\x38\x70\x6c\x73\x68\x64\x4b\x71','\x57\x51\x4c\x68\x57\x52\x42\x63\x55\x53\x6b\x7a\x57\x34\x6a\x67\x57\x34\x69','\x6b\x62\x76\x4e\x77\x4c\x33\x64\x4b\x72\x71','\x79\x43\x6f\x2b\x44\x57','\x57\x36\x70\x63\x48\x4a\x6e\x5a\x57\x4f\x6c\x64\x55\x5a\x35\x30','\x57\x4f\x56\x64\x56\x6d\x6b\x2f\x57\x52\x5a\x63\x4a\x49\x47','\x57\x35\x5a\x64\x4c\x43\x6f\x58\x57\x50\x79\x6f\x69\x4e\x44\x54','\x44\x4b\x35\x4e','\x57\x36\x33\x64\x55\x6d\x6f\x78\x57\x51\x57\x2f\x62\x4b\x6a\x66','\x74\x53\x6b\x46\x57\x34\x66\x52\x57\x52\x57\x43\x57\x51\x47\x41','\x57\x35\x62\x38\x42\x73\x6d','\x57\x37\x79\x6c\x57\x37\x4e\x63\x4d\x48\x53\x47','\x57\x36\x69\x67\x57\x37\x4e\x63\x50\x4c\x33\x64\x52\x71','\x57\x36\x33\x63\x47\x53\x6b\x79\x57\x36\x42\x63\x51\x6d\x6f\x34\x6c\x38\x6b\x69','\x57\x34\x54\x57\x41\x74\x79\x38\x74\x4b\x70\x64\x50\x57','\x57\x35\x5a\x63\x50\x6d\x6b\x6a\x57\x4f\x78\x64\x51\x68\x46\x64\x55\x53\x6f\x44','\x64\x78\x57\x57\x68\x31\x6d','\x57\x35\x42\x63\x56\x38\x6b\x7a\x57\x50\x54\x30','\x65\x4a\x39\x62\x77\x43\x6b\x31\x57\x35\x58\x6d\x57\x36\x53','\x63\x38\x6f\x70\x68\x64\x56\x63\x54\x68\x46\x63\x4a\x47','\x6c\x53\x6f\x56\x6e\x6d\x6b\x36','\x57\x37\x62\x61\x74\x47','\x57\x4f\x38\x6a\x73\x38\x6f\x38\x57\x4f\x50\x6a\x57\x52\x34','\x6b\x72\x76\x34\x75\x31\x46\x64\x49\x48\x57','\x57\x4f\x70\x64\x48\x78\x31\x6e\x61\x6d\x6b\x41\x57\x34\x38','\x57\x50\x35\x34\x57\x50\x48\x6c\x57\x35\x7a\x76','\x57\x50\x56\x64\x4d\x4a\x46\x63\x55\x6d\x6b\x6c\x71\x72\x52\x63\x49\x71','\x62\x49\x39\x57\x6e\x38\x6b\x73\x57\x52\x43\x39','\x57\x4f\x33\x64\x49\x49\x78\x63\x50\x61','\x63\x4d\x35\x69\x57\x34\x43','\x57\x52\x38\x45\x45\x6d\x6b\x43\x57\x36\x6d','\x62\x38\x6f\x4f\x6b\x6d\x6b\x36\x57\x36\x4e\x63\x47\x53\x6b\x72\x57\x50\x4b','\x44\x4c\x4c\x51\x43\x47','\x75\x59\x54\x50\x65\x43\x6f\x50\x42\x71','\x57\x37\x42\x63\x4e\x73\x48\x36\x57\x52\x64\x64\x51\x63\x54\x52','\x57\x35\x46\x63\x56\x47\x47','\x57\x4f\x53\x34\x7a\x43\x6f\x51\x57\x4f\x65','\x57\x37\x61\x72\x61\x49\x78\x64\x50\x38\x6b\x2f\x57\x52\x6c\x63\x55\x71','\x65\x64\x78\x64\x54\x59\x52\x63\x4a\x38\x6f\x48\x57\x4f\x48\x33','\x7a\x30\x76\x31','\x70\x43\x6f\x74\x68\x73\x33\x63\x56\x66\x46\x63\x48\x4b\x4b','\x43\x33\x34\x56','\x57\x52\x6d\x53\x79\x38\x6b\x7a\x57\x34\x64\x64\x48\x73\x50\x55','\x79\x6d\x6b\x58\x57\x51\x38\x51\x57\x52\x38','\x57\x4f\x6e\x49\x57\x50\x4c\x70\x57\x34\x7a\x74\x46\x53\x6f\x7a','\x67\x62\x39\x71\x6c\x6d\x6f\x51\x57\x35\x44\x59','\x67\x33\x44\x4c','\x57\x52\x4a\x64\x4f\x61\x42\x63\x4e\x53\x6b\x58\x7a\x74\x42\x63\x56\x47','\x77\x6d\x6b\x4f\x57\x50\x44\x2b\x77\x38\x6b\x4d\x57\x52\x2f\x64\x56\x61','\x68\x67\x72\x5a\x57\x35\x52\x63\x47\x57\x44\x73\x57\x4f\x69','\x57\x51\x4f\x32\x72\x38\x6f\x72\x57\x51\x58\x36\x57\x4f\x42\x63\x49\x57','\x69\x72\x2f\x64\x4e\x71\x37\x63\x55\x6d\x6f\x43\x57\x4f\x66\x41','\x72\x53\x6b\x67\x57\x4f\x69\x77\x57\x50\x4b\x7a\x6a\x43\x6b\x71','\x57\x35\x78\x63\x54\x6d\x6b\x43\x57\x4f\x68\x64\x51\x68\x68\x64\x47\x6d\x6f\x41','\x57\x37\x6d\x4d\x6f\x72\x34','\x61\x53\x6b\x42\x61\x53\x6b\x48\x57\x50\x56\x63\x55\x68\x58\x4e','\x57\x50\x69\x69\x79\x38\x6f\x4a','\x57\x37\x64\x63\x4c\x5a\x72\x4d\x57\x4f\x64\x64\x50\x74\x4c\x49','\x6c\x47\x48\x75\x6c\x43\x6f\x7a','\x70\x78\x65\x66\x61\x76\x35\x35\x72\x47','\x69\x4d\x4f\x49\x67\x57','\x57\x37\x52\x64\x51\x6d\x6f\x43\x57\x51\x65\x59\x66\x31\x66\x6a','\x57\x34\x64\x63\x49\x62\x56\x64\x4b\x38\x6b\x39','\x57\x50\x50\x4f\x57\x50\x76\x69','\x57\x36\x70\x63\x49\x6d\x6b\x4c\x57\x52\x76\x70\x6e\x38\x6b\x6e\x46\x47','\x57\x4f\x2f\x64\x4d\x49\x78\x63\x56\x6d\x6b\x72\x78\x71\x5a\x63\x4e\x57','\x76\x4a\x4c\x2b\x61\x47','\x57\x37\x4b\x6c\x57\x37\x5a\x63\x52\x57','\x77\x6d\x6b\x5a\x57\x50\x58\x6f\x71\x6d\x6b\x4d\x57\x52\x2f\x64\x56\x61','\x57\x51\x4b\x4b\x42\x53\x6b\x54\x57\x36\x47','\x57\x50\x4a\x64\x48\x5a\x70\x63\x52\x57','\x7a\x72\x6a\x2b\x77\x67\x68\x64\x4a\x62\x4b\x6b','\x57\x50\x2f\x64\x4b\x64\x6c\x63\x54\x71','\x68\x74\x31\x67\x66\x53\x6b\x75\x57\x51\x71\x48\x64\x47','\x57\x34\x4e\x63\x54\x43\x6b\x68\x57\x4f\x68\x64\x47\x4e\x46\x64\x55\x53\x6f\x70','\x74\x6d\x6b\x56\x57\x4f\x48\x6f\x78\x43\x6b\x5a\x57\x52\x37\x64\x55\x47','\x57\x4f\x6d\x75\x46\x61','\x57\x35\x4c\x44\x57\x51\x65','\x61\x33\x31\x59\x6a\x47','\x67\x74\x54\x74\x42\x31\x33\x64\x52\x63\x69\x4b','\x65\x63\x58\x6c\x57\x35\x68\x63\x49\x72\x71\x45','\x57\x51\x65\x33\x45\x53\x6b\x64\x57\x34\x42\x64\x4c\x47','\x75\x63\x7a\x59\x65\x38\x6f\x48','\x6f\x72\x76\x38\x7a\x78\x42\x64\x49\x48\x75\x65','\x57\x50\x68\x64\x56\x65\x39\x4a\x57\x50\x61','\x57\x4f\x2f\x64\x51\x43\x6b\x2f\x57\x52\x53','\x76\x38\x6b\x45\x57\x50\x48\x41\x71\x43\x6b\x56\x57\x4f\x37\x64\x51\x71','\x57\x34\x6a\x57\x43\x59\x75\x39\x75\x33\x70\x64\x56\x71','\x77\x38\x6b\x55\x57\x50\x39\x63\x43\x53\x6b\x33\x57\x51\x70\x64\x56\x71','\x66\x4c\x4f\x64\x6c\x67\x31\x42\x44\x65\x65','\x57\x4f\x46\x64\x50\x43\x6f\x6c\x6b\x38\x6f\x53\x6c\x6d\x6f\x65\x57\x35\x47','\x6f\x5a\x31\x79\x6b\x43\x6b\x49\x57\x51\x38\x57\x63\x47','\x57\x34\x64\x63\x54\x72\x38\x6f\x61\x53\x6b\x44','\x57\x35\x64\x63\x48\x64\x5a\x64\x53\x6d\x6b\x79\x45\x78\x2f\x63\x56\x47','\x57\x34\x64\x63\x4c\x64\x76\x55\x61\x53\x6b\x43\x57\x34\x46\x64\x4f\x4b\x6d','\x57\x35\x46\x63\x4c\x53\x6b\x34\x57\x50\x4a\x64\x49\x71','\x57\x37\x47\x78\x57\x37\x6c\x63\x50\x66\x53','\x57\x35\x47\x4e\x6c\x72\x6c\x64\x49\x53\x6b\x30\x57\x4f\x70\x63\x48\x71','\x57\x52\x35\x2b\x57\x4f\x56\x63\x4a\x43\x6b\x59\x57\x36\x75','\x71\x30\x75\x43\x57\x34\x71\x55\x64\x71\x78\x64\x47\x47','\x57\x34\x34\x71\x6e\x62\x74\x63\x53\x64\x54\x30','\x57\x34\x68\x63\x51\x6d\x6b\x79\x57\x4f\x72\x50\x62\x53\x6b\x5a\x76\x61','\x72\x33\x4c\x43\x74\x64\x4f\x78\x42\x76\x61','\x78\x4a\x79\x39\x57\x35\x30\x55','\x57\x34\x42\x63\x56\x5a\x69\x73\x67\x53\x6b\x77\x73\x6d\x6b\x51','\x64\x4a\x2f\x64\x52\x64\x4e\x63\x4e\x53\x6f\x37','\x57\x36\x75\x71\x57\x36\x46\x63\x53\x30\x33\x63\x4f\x31\x70\x63\x48\x57','\x68\x61\x35\x67\x6d\x53\x6f\x75\x57\x35\x4c\x5a','\x64\x77\x30\x30\x62\x30\x31\x4a','\x69\x4d\x30\x2b\x62\x76\x7a\x2b\x72\x4d\x57','\x7a\x66\x35\x54\x46\x62\x4f\x53\x72\x33\x38','\x57\x37\x4a\x64\x53\x53\x6b\x48\x57\x37\x7a\x63\x57\x51\x4e\x63\x52\x43\x6b\x59','\x79\x43\x6f\x30\x46\x43\x6f\x50\x45\x76\x71','\x57\x36\x4a\x64\x53\x6d\x6b\x55\x57\x37\x54\x4f\x57\x52\x70\x63\x50\x6d\x6b\x4c','\x73\x43\x6b\x69\x57\x34\x6d','\x57\x50\x64\x64\x50\x31\x54\x4c\x57\x4f\x68\x64\x48\x33\x5a\x64\x4a\x61','\x57\x4f\x56\x64\x50\x6d\x6b\x4b\x57\x52\x42\x63\x48\x71','\x75\x32\x4a\x63\x53\x67\x33\x64\x4d\x38\x6b\x47\x57\x36\x6d\x4a\x57\x52\x69\x53\x79\x53\x6f\x39\x57\x34\x76\x4f','\x57\x4f\x37\x64\x49\x59\x74\x63\x50\x43\x6b\x71\x76\x61','\x57\x51\x4c\x35\x70\x66\x39\x64\x57\x50\x71','\x57\x4f\x6c\x64\x55\x38\x6f\x71','\x61\x5a\x4c\x69\x65\x71','\x65\x30\x43\x6f\x6d\x68\x44\x42\x43\x75\x30','\x67\x49\x48\x61\x74\x53\x6b\x58\x57\x35\x65','\x75\x65\x71\x71\x57\x34\x6d\x4c\x68\x72\x33\x64\x4c\x71','\x57\x4f\x33\x64\x4f\x30\x39\x4a\x57\x51\x52\x64\x47\x65\x74\x64\x4a\x47','\x57\x36\x68\x63\x54\x61\x71\x32\x66\x71','\x57\x35\x46\x63\x50\x6d\x6b\x42\x57\x4f\x6c\x64\x56\x67\x6c\x64\x55\x47','\x57\x51\x43\x63\x45\x43\x6b\x6c\x57\x51\x69\x4e\x46\x38\x6b\x53','\x57\x35\x37\x63\x56\x43\x6b\x68\x57\x50\x66\x59\x61\x43\x6b\x56\x78\x57','\x57\x50\x5a\x63\x55\x38\x6f\x41\x57\x35\x54\x30\x64\x43\x6b\x5a\x71\x71','\x61\x77\x35\x63\x57\x34\x30','\x57\x34\x44\x72\x57\x52\x52\x64\x47\x66\x78\x64\x4b\x61','\x79\x75\x44\x53\x46\x61\x75','\x45\x38\x6b\x48\x57\x51\x6d\x4e\x57\x36\x79','\x57\x37\x62\x4d\x57\x4f\x52\x64\x50\x78\x46\x64\x55\x73\x76\x6e','\x62\x63\x58\x7a\x45\x53\x6b\x58\x57\x34\x54\x6e\x57\x35\x4b','\x67\x49\x72\x64\x71\x6d\x6b\x58\x57\x34\x4f','\x65\x6d\x6f\x61\x64\x57\x68\x63\x56\x30\x5a\x63\x4d\x4c\x38','\x41\x6d\x6b\x61\x77\x67\x78\x64\x52\x77\x56\x63\x55\x38\x6f\x7a','\x65\x38\x6b\x65\x66\x53\x6b\x48\x57\x4f\x5a\x63\x53\x67\x54\x77','\x57\x37\x5a\x63\x4e\x49\x68\x64\x54\x38\x6b\x50\x44\x61','\x65\x74\x2f\x64\x52\x5a\x2f\x63\x48\x6d\x6f\x4e\x57\x52\x35\x57','\x57\x50\x65\x45\x41\x43\x6b\x78\x57\x37\x53','\x57\x51\x46\x64\x54\x53\x6f\x71\x6e\x71','\x57\x35\x54\x4c\x57\x50\x56\x63\x4b\x6d\x6b\x59\x57\x52\x7a\x36\x57\x36\x57','\x57\x4f\x6c\x64\x4c\x67\x58\x76\x66\x6d\x6b\x6b\x57\x36\x4e\x64\x54\x61','\x57\x35\x5a\x63\x55\x38\x6b\x6f\x57\x4f\x7a\x47\x62\x6d\x6b\x56\x72\x47','\x44\x43\x6b\x4d\x57\x52\x69\x53\x57\x36\x65\x54\x57\x37\x42\x63\x49\x61','\x57\x34\x75\x41\x6f\x57\x74\x63\x53\x63\x44\x5a','\x64\x64\x72\x75\x6a\x6d\x6b\x71','\x44\x4b\x35\x37\x41\x57','\x6c\x75\x44\x79\x61\x72\x35\x5a\x44\x76\x79','\x57\x4f\x6d\x4c\x57\x4f\x33\x63\x4a\x6d\x6b\x4f\x57\x36\x62\x58\x57\x37\x65','\x57\x36\x4f\x35\x67\x63\x2f\x63\x47\x72\x54\x67\x66\x71','\x57\x35\x56\x63\x54\x43\x6b\x43\x57\x50\x74\x64\x53\x68\x78\x64\x51\x38\x6f\x44','\x57\x50\x6c\x64\x52\x4d\x35\x73\x6b\x57','\x65\x57\x44\x41\x69\x53\x6f\x45\x57\x36\x66\x4c\x65\x47','\x64\x53\x6b\x79\x65\x38\x6b\x36\x57\x50\x56\x63\x4a\x4d\x54\x43','\x77\x32\x57\x50\x57\x36\x38','\x6e\x64\x31\x36\x64\x6d\x6f\x30\x57\x36\x35\x6a\x6e\x47','\x57\x37\x44\x31\x57\x50\x78\x64\x4f\x78\x6c\x64\x52\x49\x72\x6f','\x57\x4f\x70\x64\x48\x78\x35\x72\x64\x53\x6b\x78\x57\x35\x4e\x64\x56\x47','\x41\x62\x71\x61\x57\x36\x30','\x66\x53\x6f\x65\x61\x63\x4f','\x57\x35\x37\x63\x53\x38\x6b\x68\x57\x4f\x68\x64\x52\x77\x64\x64\x55\x38\x6f\x39','\x57\x50\x47\x48\x57\x4f\x2f\x63\x54\x47','\x57\x34\x76\x52\x41\x73\x34\x37\x76\x77\x5a\x64\x55\x47','\x57\x50\x48\x50\x57\x4f\x64\x63\x48\x38\x6b\x56\x57\x37\x6a\x31\x57\x37\x43','\x73\x74\x38\x34','\x72\x75\x43\x6f\x70\x78\x61\x58\x62\x57\x65','\x70\x47\x44\x51\x75\x77\x43','\x57\x52\x72\x35\x70\x65\x76\x51\x57\x50\x4e\x63\x4a\x61\x61','\x57\x36\x4b\x68\x57\x37\x57','\x43\x43\x6b\x53\x57\x52\x69\x50\x57\x50\x69\x35\x62\x43\x6b\x49','\x57\x4f\x56\x64\x56\x6d\x6b\x53\x57\x51\x46\x63\x4c\x64\x5a\x63\x4a\x30\x65','\x71\x49\x72\x34\x66\x43\x6f\x4f\x43\x53\x6b\x65\x57\x50\x34','\x57\x51\x70\x64\x52\x31\x76\x34\x70\x53\x6b\x54\x57\x37\x4a\x64\x4d\x47','\x57\x35\x46\x63\x52\x53\x6b\x6d\x57\x50\x74\x64\x53\x75\x74\x64\x56\x6d\x6f\x41','\x66\x43\x6b\x78\x66\x6d\x6b\x43\x57\x50\x56\x63\x4f\x33\x50\x73','\x57\x50\x37\x64\x4b\x5a\x4e\x63\x52\x38\x6b\x76','\x57\x37\x6c\x63\x4b\x5a\x76\x4c\x57\x4f\x4f','\x57\x37\x68\x63\x47\x38\x6b\x6f\x57\x36\x34','\x46\x77\x57\x33\x57\x36\x4b\x46\x6c\x63\x5a\x64\x4e\x47','\x6f\x61\x5a\x64\x4f\x62\x6c\x63\x52\x71','\x6e\x33\x6e\x6a\x57\x34\x33\x63\x4c\x48\x58\x44\x57\x50\x47','\x70\x57\x7a\x2b\x77\x67\x68\x64\x4d\x71\x71\x61','\x6e\x57\x72\x58\x45\x38\x6b\x61\x57\x36\x50\x34\x57\x37\x43','\x57\x50\x74\x64\x4b\x64\x4a\x63\x56\x57','\x57\x4f\x4a\x64\x51\x43\x6b\x2f\x57\x52\x74\x63\x4a\x74\x57','\x6d\x59\x76\x61\x75\x38\x6b\x78','\x6e\x30\x50\x6b\x61\x48\x6e\x37\x44\x75\x6d','\x57\x4f\x46\x64\x48\x78\x39\x76\x62\x6d\x6b\x62\x57\x37\x78\x64\x56\x61','\x64\x38\x6f\x49\x65\x64\x2f\x63\x56\x4b\x53','\x41\x38\x6b\x47\x57\x52\x57\x58\x57\x51\x47\x56','\x72\x6d\x6b\x52\x57\x52\x43\x55\x57\x36\x53\x39\x57\x34\x43','\x7a\x32\x57\x57\x57\x37\x38\x46\x6c\x74\x43','\x57\x36\x42\x63\x4e\x4a\x42\x64\x53\x38\x6b\x79\x45\x4d\x47','\x68\x58\x47\x41','\x57\x50\x33\x64\x50\x53\x6b\x37','\x71\x53\x6b\x38\x57\x52\x69\x53\x57\x36\x4b\x2f\x57\x35\x42\x63\x4e\x57','\x41\x32\x57\x39','\x72\x53\x6b\x38\x57\x51\x47\x4f\x57\x36\x38\x39\x57\x35\x79','\x57\x36\x64\x63\x4b\x49\x4f','\x57\x36\x6c\x63\x4c\x74\x61\x38\x6a\x6d\x6b\x53\x41\x6d\x6b\x4d','\x64\x49\x39\x45\x6b\x57','\x57\x51\x48\x56\x6b\x76\x54\x74\x57\x4f\x74\x63\x56\x72\x65','\x77\x74\x38\x4d','\x44\x71\x75\x77\x57\x36\x43\x46\x44\x30\x53','\x57\x50\x56\x64\x55\x6d\x6f\x64\x6f\x53\x6f\x47\x6f\x47','\x69\x38\x6f\x4c\x6d\x6d\x6b\x39\x57\x36\x5a\x63\x51\x71','\x57\x34\x37\x63\x56\x47\x50\x6a\x57\x52\x56\x64\x4d\x71\x54\x65','\x64\x53\x6f\x6e\x66\x71\x65','\x57\x36\x78\x63\x51\x6d\x6b\x6d','\x57\x51\x43\x63\x46\x43\x6b\x45\x57\x36\x4f','\x79\x31\x48\x4d','\x57\x50\x50\x38\x57\x50\x52\x63\x48\x53\x6b\x52\x57\x36\x7a\x47\x57\x37\x61','\x57\x4f\x4c\x54\x57\x50\x52\x63\x4b\x43\x6b\x2f\x57\x35\x72\x37\x57\x36\x43','\x41\x61\x57\x42\x57\x37\x6d\x6b\x79\x4b\x46\x63\x55\x47','\x77\x53\x6f\x35\x45\x6d\x6f\x4b\x75\x75\x6d\x59\x57\x51\x47','\x57\x36\x57\x41\x57\x36\x5a\x63\x4d\x71\x44\x30\x74\x53\x6f\x4b','\x61\x48\x39\x68\x6b\x6d\x6f\x42\x57\x35\x4b','\x57\x36\x56\x63\x4e\x63\x6e\x5a\x57\x50\x43','\x57\x52\x79\x47\x57\x4f\x37\x64\x54\x43\x6b\x41\x77\x47','\x79\x43\x6b\x4d\x57\x52\x65\x58\x57\x51\x57','\x57\x34\x5a\x64\x54\x6d\x6b\x79\x57\x37\x50\x6d','\x66\x59\x66\x63\x73\x38\x6b\x4b\x57\x35\x50\x64','\x74\x43\x6b\x57\x41\x76\x42\x64\x49\x30\x33\x63\x47\x53\x6f\x2b','\x6e\x38\x6b\x79\x57\x4f\x74\x64\x49\x61','\x57\x37\x6c\x64\x50\x38\x6b\x51\x57\x37\x48\x34\x57\x51\x5a\x63\x50\x71','\x57\x50\x72\x31\x57\x4f\x4c\x79','\x57\x50\x42\x64\x50\x6d\x6f\x6c\x6d\x57','\x6d\x64\x76\x76','\x71\x53\x6b\x48\x57\x51\x47\x55\x57\x35\x75\x52\x57\x35\x68\x63\x4e\x57','\x62\x32\x48\x55\x6f\x59\x31\x46','\x57\x34\x42\x63\x54\x73\x65\x7a\x63\x6d\x6b\x68\x77\x38\x6b\x61','\x67\x73\x6e\x44\x74\x6d\x6b\x32','\x6b\x38\x6b\x47\x57\x52\x57\x52\x57\x51\x34\x55\x64\x6d\x6b\x39','\x57\x37\x42\x64\x54\x53\x6b\x37\x57\x37\x72\x64\x57\x51\x74\x63\x54\x43\x6b\x32','\x57\x34\x4b\x45\x6d\x62\x37\x63\x50\x47','\x57\x35\x74\x63\x55\x72\x61\x75\x68\x53\x6b\x42\x7a\x43\x6b\x42','\x57\x4f\x74\x64\x4b\x32\x58\x67\x62\x61','\x57\x52\x72\x31\x6d\x57','\x75\x64\x35\x36\x62\x6d\x6f\x58\x42\x71','\x57\x34\x47\x32\x57\x34\x5a\x63\x4b\x67\x52\x64\x49\x5a\x4e\x64\x51\x71','\x43\x43\x6b\x58\x57\x52\x71\x4f','\x57\x4f\x69\x62\x72\x43\x6b\x4a\x57\x37\x68\x64\x4f\x72\x39\x67','\x68\x64\x6e\x46','\x66\x63\x58\x44\x74\x6d\x6b\x71\x57\x34\x54\x65','\x6a\x72\x62\x55\x74\x47','\x57\x36\x79\x62\x57\x36\x52\x63\x53\x61','\x57\x35\x62\x47\x42\x4a\x69','\x57\x37\x52\x64\x56\x53\x6b\x46\x57\x37\x31\x4c','\x57\x50\x78\x64\x53\x66\x76\x37\x6c\x61','\x57\x36\x43\x62\x57\x37\x42\x63\x4e\x72\x65\x47\x66\x71','\x6d\x6d\x6f\x59\x6e\x6d\x6b\x35','\x57\x4f\x37\x64\x4d\x4a\x56\x63\x52\x43\x6b\x71\x72\x58\x42\x63\x4d\x71','\x57\x50\x4b\x54\x57\x50\x78\x64\x56\x6d\x6b\x66\x71\x71','\x57\x37\x38\x62\x57\x36\x46\x63\x53\x75\x46\x64\x4d\x58\x70\x64\x4a\x61','\x57\x35\x54\x39\x57\x4f\x64\x63\x4b\x6d\x6b\x5a\x57\x36\x7a\x4b\x57\x36\x57','\x57\x35\x47\x4e\x6f\x61','\x57\x52\x47\x4d\x57\x50\x2f\x64\x56\x6d\x6b\x6c','\x63\x62\x58\x2b\x77\x67\x4e\x64\x49\x57','\x75\x43\x6f\x76\x75\x6d\x6f\x71\x73\x33\x61\x62\x57\x4f\x6d','\x57\x35\x4a\x64\x4b\x53\x6f\x33\x57\x50\x61\x35\x6a\x4e\x54\x38','\x6d\x78\x6d\x57\x61\x65\x58\x5a\x72\x78\x43','\x71\x53\x6b\x52\x57\x51\x4b\x32','\x66\x6d\x6b\x41\x63\x53\x6b\x53\x57\x4f\x4f','\x57\x35\x56\x63\x4f\x5a\x38\x70\x68\x38\x6b\x73\x71\x57','\x57\x4f\x39\x54\x57\x50\x42\x63\x4c\x57','\x70\x38\x6b\x73\x57\x4f\x74\x64\x49\x49\x4c\x57','\x73\x53\x6b\x68\x41\x4c\x68\x64\x48\x57','\x57\x52\x71\x51\x7a\x6d\x6b\x45\x57\x34\x33\x64\x47\x57','\x57\x50\x75\x72\x74\x53\x6b\x55\x57\x37\x5a\x64\x53\x61\x58\x6b','\x57\x34\x6e\x50\x43\x49\x71\x4f\x76\x47','\x66\x38\x6f\x73\x67\x74\x4e\x63\x51\x71','\x69\x6d\x6b\x79\x57\x4f\x71','\x57\x4f\x78\x63\x4b\x49\x74\x63\x51\x43\x6b\x70\x72\x48\x52\x63\x49\x71','\x78\x38\x6b\x39\x57\x4f\x65\x52\x57\x36\x71\x33\x57\x35\x42\x63\x4e\x57','\x6b\x31\x31\x75\x62\x72\x35\x35\x79\x4c\x69','\x71\x53\x6b\x48\x57\x51\x47\x55\x57\x35\x75\x53\x57\x34\x46\x63\x49\x71','\x62\x71\x35\x72\x79\x43\x6f\x79\x57\x35\x66\x59\x61\x57','\x41\x30\x76\x47\x43\x61\x6d\x31\x72\x68\x71','\x6c\x72\x31\x4c\x78\x33\x68\x64\x4b\x64\x38\x74','\x57\x35\x37\x64\x47\x43\x6b\x71\x57\x34\x44\x4d\x57\x50\x6c\x63\x4e\x53\x6b\x65','\x57\x37\x5a\x63\x4e\x4a\x6c\x64\x51\x53\x6b\x59\x79\x61','\x70\x58\x31\x55\x72\x61','\x57\x35\x70\x63\x53\x53\x6b\x50\x57\x4f\x70\x64\x52\x32\x74\x64\x50\x47','\x64\x74\x6e\x76\x70\x6d\x6b\x2f\x57\x51\x69\x32\x67\x47','\x57\x52\x52\x64\x4c\x53\x6f\x38\x61\x53\x6f\x61\x68\x53\x6f\x4b\x57\x36\x71','\x57\x36\x5a\x63\x48\x6d\x6b\x6b\x57\x37\x4a\x63\x49\x38\x6f\x2f\x6d\x53\x6b\x69','\x57\x50\x79\x69\x7a\x43\x6f\x34\x57\x50\x66\x6d\x57\x51\x6c\x63\x55\x47','\x57\x4f\x69\x69\x77\x43\x6b\x37\x57\x37\x78\x64\x4f\x71\x58\x75','\x63\x43\x6f\x46\x64\x53\x6b\x72\x57\x34\x2f\x63\x47\x43\x6b\x4d\x57\x52\x4b','\x57\x51\x4e\x64\x4e\x4a\x2f\x63\x4f\x6d\x6b\x37\x72\x72\x52\x63\x4c\x61','\x75\x6d\x6b\x4e\x57\x51\x4b\x52\x57\x37\x4b\x32','\x65\x38\x6b\x7a\x64\x6d\x6b\x4a\x57\x52\x64\x63\x53\x4e\x35\x46','\x74\x4a\x53\x33\x57\x35\x79\x55\x76\x4c\x56\x63\x48\x71','\x42\x76\x54\x4d\x43\x71\x38\x53','\x63\x78\x6e\x46\x57\x35\x56\x63\x47\x4a\x66\x43\x57\x4f\x38','\x6e\x33\x66\x56','\x57\x52\x42\x64\x4d\x38\x6b\x69\x57\x4f\x42\x63\x56\x57\x6c\x63\x4c\x32\x57','\x71\x38\x6b\x77\x57\x35\x62\x47\x57\x50\x65\x71','\x57\x34\x37\x63\x50\x6d\x6b\x71\x57\x4f\x75','\x73\x64\x71\x49','\x41\x38\x6b\x4d\x57\x51\x38\x4b\x57\x52\x4b\x55\x69\x38\x6b\x2b','\x57\x4f\x78\x63\x4b\x49\x78\x63\x51\x43\x6b\x6e\x71\x62\x42\x63\x4c\x71','\x57\x51\x68\x64\x4a\x6d\x6b\x37\x57\x52\x70\x63\x4a\x71','\x57\x35\x56\x63\x56\x47\x34\x69\x67\x43\x6b\x53\x74\x53\x6b\x67','\x57\x34\x46\x63\x4f\x53\x6b\x49\x57\x51\x44\x6a\x6f\x38\x6b\x30\x71\x57','\x6b\x71\x62\x4f\x72\x4b\x43','\x6b\x75\x62\x75\x66\x58\x76\x49\x43\x75\x47','\x57\x35\x37\x64\x48\x43\x6b\x61\x57\x35\x4c\x58\x57\x4f\x64\x63\x4b\x38\x6b\x69','\x57\x36\x56\x63\x4e\x53\x6b\x42\x57\x37\x6d','\x67\x77\x35\x49\x57\x4f\x48\x35\x61\x59\x37\x63\x4e\x59\x72\x66\x6c\x68\x56\x64\x51\x61','\x63\x6d\x6b\x79\x6e\x38\x6b\x39\x57\x4f\x37\x63\x53\x4e\x4f','\x57\x37\x37\x63\x4b\x53\x6b\x4d\x57\x52\x76\x45\x6e\x38\x6b\x63\x41\x61','\x6c\x72\x66\x51\x71\x4e\x46\x64\x49\x48\x75\x77','\x57\x35\x72\x33\x43\x49\x57\x53\x77\x77\x47','\x57\x36\x61\x66\x57\x36\x6d','\x57\x50\x70\x64\x4c\x77\x53','\x78\x33\x57\x55\x66\x66\x71','\x57\x4f\x4e\x64\x4a\x74\x2f\x63\x4f\x71','\x69\x43\x6b\x73\x57\x50\x4e\x64\x4e\x74\x6a\x32\x46\x30\x4f','\x70\x64\x72\x4d\x62\x6d\x6f\x34\x57\x37\x39\x79\x6d\x47','\x57\x50\x72\x4a\x57\x50\x4f','\x77\x6d\x6b\x64\x57\x35\x65','\x57\x34\x62\x47\x43\x74\x69\x4f','\x67\x33\x76\x64\x57\x34\x37\x63\x55\x71\x66\x77\x57\x4f\x4f','\x6e\x38\x6f\x30\x70\x6d\x6b\x47\x57\x37\x46\x63\x53\x57','\x57\x4f\x4f\x46\x7a\x6d\x6f\x50\x57\x4f\x58\x61','\x77\x6d\x6b\x52\x57\x35\x62\x36\x57\x50\x65\x44\x57\x51\x43\x6a','\x61\x72\x74\x64\x4f\x73\x33\x63\x4f\x61','\x57\x34\x38\x67\x66\x61\x6c\x63\x50\x59\x48\x2b','\x72\x6d\x6b\x57\x43\x30\x78\x64\x49\x4c\x61','\x57\x34\x33\x63\x51\x6d\x6b\x5a\x57\x34\x2f\x63\x4d\x6d\x6f\x63\x64\x53\x6b\x53','\x57\x37\x71\x6b\x45\x53\x6b\x31\x57\x35\x46\x64\x4f\x47\x71','\x41\x43\x6b\x57\x57\x37\x50\x63\x57\x51\x79\x38\x57\x50\x71\x49','\x57\x50\x72\x7a\x6a\x6d\x6b\x2f\x77\x6d\x6b\x4d\x57\x36\x65','\x57\x4f\x75\x77\x7a\x43\x6f\x54\x57\x50\x6d','\x57\x36\x44\x54\x41\x63\x47\x49\x73\x75\x4a\x64\x4f\x71','\x57\x4f\x35\x42\x69\x38\x6b\x57\x77\x53\x6b\x57','\x57\x34\x68\x63\x4b\x59\x54\x36','\x6e\x38\x6f\x56\x6d\x57','\x75\x5a\x48\x30\x62\x53\x6f\x54\x45\x53\x6b\x65\x57\x4f\x47','\x57\x37\x52\x63\x47\x38\x6b\x4f\x57\x37\x4e\x63\x51\x43\x6f\x49\x6f\x43\x6b\x64','\x43\x43\x6b\x53\x57\x52\x79\x47\x57\x51\x6d','\x57\x34\x62\x6d\x57\x52\x78\x64\x52\x32\x47','\x65\x6d\x6f\x61\x67\x59\x52\x63\x51\x75\x52\x63\x4d\x57','\x57\x35\x72\x33\x45\x64\x61\x47\x76\x77\x4e\x64\x4f\x61','\x6a\x4e\x4f\x31','\x7a\x53\x6b\x6b\x71\x33\x64\x64\x53\x33\x53','\x57\x36\x2f\x63\x4b\x53\x6b\x79\x57\x37\x34','\x57\x51\x65\x66\x42\x53\x6b\x71\x57\x36\x65\x48','\x57\x4f\x52\x64\x4f\x68\x58\x2b\x57\x50\x56\x64\x4e\x76\x2f\x64\x47\x61','\x77\x74\x31\x42\x73\x38\x6b\x50\x57\x35\x62\x42\x57\x35\x61','\x57\x4f\x6e\x75\x6c\x4e\x39\x30','\x57\x37\x57\x52\x6b\x57\x6c\x64\x53\x57','\x76\x5a\x48\x59\x68\x71','\x57\x50\x62\x35\x57\x50\x48\x45\x57\x34\x35\x72\x74\x38\x6f\x65','\x57\x36\x34\x42\x68\x64\x64\x64\x4f\x43\x6b\x4d\x57\x52\x42\x63\x53\x47','\x57\x36\x75\x51\x61\x74\x68\x63\x4e\x61\x76\x79\x67\x57','\x57\x34\x75\x44\x6f\x47\x70\x63\x53\x63\x44\x6b\x6f\x71','\x62\x74\x4c\x70\x78\x43\x6b\x57\x57\x34\x4f','\x57\x4f\x78\x64\x4a\x32\x6a\x6e\x70\x53\x6b\x41\x57\x34\x56\x64\x54\x57','\x63\x4e\x44\x56\x6c\x61','\x66\x6d\x6b\x63\x64\x6d\x6b\x2f\x57\x52\x64\x63\x4f\x33\x50\x73','\x57\x34\x75\x4d\x6d\x47\x56\x64\x4f\x43\x6b\x69\x57\x50\x42\x63\x48\x47','\x57\x4f\x6a\x35\x57\x4f\x31\x6a\x57\x35\x44\x73\x42\x6d\x6f\x45','\x57\x50\x5a\x64\x4a\x63\x78\x63\x50\x43\x6b\x6e\x72\x58\x37\x63\x4c\x61','\x6d\x64\x6e\x51\x61\x38\x6f\x53\x57\x36\x50\x74\x6e\x71','\x68\x67\x66\x37\x6d\x61','\x78\x73\x47\x37\x57\x35\x71\x55\x75\x77\x5a\x64\x49\x47','\x62\x32\x39\x34\x57\x34\x5a\x63\x48\x58\x62\x77','\x41\x4d\x43\x4e','\x65\x58\x6a\x62\x6a\x6d\x6f\x35\x57\x35\x54\x34\x61\x71','\x6c\x38\x6f\x47\x69\x61\x68\x63\x4a\x4d\x68\x63\x56\x68\x38','\x57\x51\x37\x64\x55\x47\x4e\x63\x4d\x43\x6b\x53\x46\x57','\x57\x34\x65\x37\x6d\x48\x68\x64\x4c\x38\x6b\x70\x57\x50\x6c\x63\x4d\x61','\x57\x4f\x42\x64\x51\x30\x34','\x57\x37\x79\x6c\x57\x36\x4a\x63\x48\x72\x75\x54\x62\x61','\x57\x35\x52\x63\x55\x6d\x6b\x34\x57\x34\x6c\x63\x4c\x43\x6f\x74\x68\x43\x6b\x47','\x6d\x43\x6f\x5a\x6f\x6d\x6b\x4d\x57\x51\x2f\x63\x4f\x43\x6b\x70\x57\x4f\x47','\x64\x38\x6f\x69\x63\x59\x33\x63\x50\x76\x42\x63\x4a\x32\x75','\x57\x52\x76\x2f\x6c\x4c\x54\x6a\x57\x50\x37\x63\x4b\x71\x61','\x75\x67\x2f\x63\x53\x77\x33\x64\x4e\x53\x6b\x49\x57\x36\x44\x2f\x57\x51\x57\x6a\x72\x6d\x6f\x57\x57\x36\x47','\x57\x4f\x6c\x64\x4c\x67\x6a\x72\x70\x53\x6b\x6c\x57\x34\x2f\x64\x55\x47','\x71\x38\x6b\x69\x57\x36\x66\x38\x57\x50\x65\x41\x57\x51\x6d','\x74\x5a\x75\x57\x57\x34\x43','\x79\x6d\x6b\x54\x57\x51\x53','\x78\x43\x6b\x5a\x57\x50\x72\x6c\x78\x43\x6b\x4d\x57\x52\x78\x64\x48\x61','\x57\x52\x4e\x64\x55\x47\x74\x63\x4b\x38\x6b\x54\x7a\x59\x33\x63\x56\x57','\x42\x31\x54\x56\x45\x48\x4f\x53\x72\x33\x38','\x57\x51\x64\x63\x4e\x67\x6c\x63\x53\x43\x6b\x31\x44\x4e\x2f\x63\x4f\x71','\x74\x74\x42\x64\x52\x74\x33\x63\x49\x38\x6f\x4e\x57\x52\x35\x38','\x57\x37\x35\x37\x57\x4f\x5a\x64\x55\x57','\x73\x43\x6b\x75\x57\x34\x44\x48\x57\x4f\x69','\x57\x36\x42\x63\x47\x63\x48\x4d\x57\x50\x2f\x64\x52\x49\x35\x6c','\x63\x32\x4c\x64\x57\x35\x46\x63\x48\x72\x7a\x61','\x57\x50\x46\x64\x56\x66\x66\x59\x57\x50\x53','\x65\x6d\x6f\x67\x64\x74\x70\x63\x51\x76\x42\x63\x4e\x65\x4b','\x79\x75\x6e\x53\x44\x47\x30\x47\x77\x57','\x61\x32\x72\x63\x57\x37\x33\x63\x49\x71\x7a\x44\x57\x50\x38','\x57\x34\x42\x63\x51\x71\x34\x79','\x71\x53\x6b\x63\x57\x35\x62\x32','\x57\x34\x46\x63\x56\x38\x6b\x63\x57\x50\x4b','\x57\x37\x2f\x63\x4d\x64\x5a\x64\x51\x6d\x6b\x55\x44\x32\x4e\x63\x4f\x57','\x57\x35\x66\x52\x46\x49\x43\x39\x78\x33\x47','\x44\x53\x6b\x33\x57\x52\x57\x58\x57\x52\x47\x34','\x62\x38\x6f\x74\x63\x4a\x68\x63\x56\x47','\x69\x49\x58\x68\x72\x43\x6b\x68\x57\x34\x62\x43\x57\x35\x30','\x79\x53\x6f\x39\x46\x38\x6f\x56\x79\x66\x30','\x69\x53\x6b\x47\x6c\x6d\x6b\x64\x57\x52\x4e\x63\x4c\x65\x31\x53','\x72\x6d\x6b\x5a\x79\x4b\x46\x64\x4d\x75\x4a\x63\x47\x53\x6f\x4e','\x57\x51\x48\x32\x6d\x75\x50\x6c\x57\x50\x68\x63\x56\x71\x71','\x57\x35\x33\x63\x51\x38\x6b\x55\x57\x35\x69','\x6f\x57\x58\x32\x44\x53\x6b\x68\x57\x36\x62\x38\x57\x37\x30','\x57\x34\x39\x47\x7a\x64\x75','\x57\x4f\x72\x59\x6b\x65\x76\x6e\x57\x4f\x6d','\x57\x4f\x72\x4a\x57\x4f\x39\x41\x57\x35\x44\x65\x78\x57','\x57\x52\x34\x75\x43\x53\x6b\x45\x57\x37\x53\x55','\x57\x51\x35\x61\x57\x51\x31\x4a\x57\x37\x58\x4a\x79\x53\x6f\x4a','\x62\x71\x72\x35\x6c\x53\x6f\x63\x57\x35\x54\x4b\x6a\x71','\x57\x37\x75\x48\x62\x5a\x78\x63\x4c\x61\x72\x79\x67\x57','\x57\x34\x64\x63\x51\x53\x6b\x51\x57\x34\x37\x63\x4d\x6d\x6f\x74\x63\x53\x6b\x4f','\x65\x57\x72\x72\x6f\x61','\x57\x35\x52\x63\x54\x72\x38\x7a\x63\x6d\x6b\x62\x73\x71','\x75\x73\x76\x33\x66\x71','\x6c\x76\x44\x4a\x57\x37\x6c\x63\x53\x64\x7a\x48\x57\x52\x71','\x7a\x38\x6b\x53\x41\x76\x61','\x57\x37\x54\x36\x57\x50\x42\x64\x53\x68\x71','\x57\x50\x69\x46\x45\x43\x6f\x36','\x61\x73\x38\x45','\x57\x4f\x33\x64\x4e\x49\x74\x63\x56\x38\x6b\x42','\x63\x5a\x4c\x44\x6d\x43\x6b\x62','\x77\x74\x6d\x58\x57\x34\x57','\x79\x53\x6b\x56\x57\x51\x34\x55\x57\x34\x38\x4f\x57\x34\x46\x63\x4c\x61','\x43\x33\x34\x53\x66\x71','\x57\x50\x2f\x64\x4b\x64\x6c\x63\x54\x43\x6b\x48\x72\x57\x33\x63\x4a\x57','\x57\x34\x30\x71\x6f\x57\x6d','\x57\x35\x57\x35\x6d\x71\x6c\x64\x49\x53\x6b\x63\x57\x50\x4a\x63\x48\x61','\x6a\x67\x66\x70\x67\x47\x47','\x57\x37\x42\x63\x4d\x38\x6b\x4b\x57\x52\x48\x71\x6c\x43\x6b\x73\x42\x47','\x71\x76\x47\x45\x69\x4e\x34\x30\x64\x62\x71','\x67\x43\x6b\x34\x57\x37\x7a\x54\x57\x36\x4b\x32\x57\x34\x70\x63\x4a\x47','\x57\x50\x57\x4c\x57\x4f\x70\x63\x4b\x61','\x57\x51\x48\x58\x6f\x65\x76\x76','\x57\x52\x31\x62\x57\x51\x66\x4b\x57\x37\x44\x5a\x45\x53\x6f\x30','\x57\x50\x76\x79\x61\x38\x6b\x2b\x71\x6d\x6b\x30\x57\x37\x31\x41','\x57\x37\x56\x63\x51\x38\x6b\x63\x57\x37\x4a\x63\x4f\x53\x6f\x76\x6d\x38\x6b\x79','\x57\x37\x42\x63\x4b\x53\x6b\x34\x57\x51\x62\x75\x6c\x43\x6b\x62\x46\x61','\x7a\x6d\x6b\x5a\x57\x52\x71\x55\x57\x51\x47\x59','\x57\x34\x56\x63\x47\x53\x6b\x6e','\x78\x38\x6b\x6a\x57\x35\x53','\x57\x34\x48\x41\x44\x63\x69','\x57\x50\x6c\x64\x4a\x73\x6c\x63\x51\x43\x6b\x41\x65\x58\x5a\x63\x4b\x47','\x79\x58\x4c\x49\x72\x78\x68\x64\x4b\x72\x34\x63','\x57\x52\x48\x6f\x57\x52\x6e\x56\x57\x36\x6a\x4f\x44\x38\x6f\x4f','\x57\x35\x37\x63\x4f\x53\x6b\x70\x57\x50\x66\x51\x6b\x43\x6b\x4a\x72\x71','\x57\x51\x4b\x55\x79\x38\x6b\x64\x57\x37\x5a\x64\x4b\x64\x66\x47','\x6a\x48\x66\x2f\x78\x4d\x33\x64\x4e\x61','\x57\x51\x72\x48\x61\x6d\x6b\x43\x44\x53\x6b\x62\x57\x35\x62\x6a','\x79\x61\x75\x7a\x57\x37\x38\x74\x42\x76\x52\x63\x53\x57','\x57\x34\x34\x48\x57\x34\x5a\x63\x4b\x32\x5a\x64\x4c\x49\x52\x64\x4f\x71','\x77\x6d\x6b\x58\x7a\x4b\x46\x64\x49\x32\x56\x63\x4d\x38\x6f\x31','\x57\x36\x4e\x64\x56\x38\x6f\x42\x57\x52\x4f\x30\x66\x30\x7a\x42','\x57\x50\x71\x42\x46\x43\x6f\x44\x57\x4f\x58\x41\x57\x51\x6c\x63\x51\x71','\x6b\x4c\x66\x5a\x70\x71\x79','\x6f\x47\x66\x4a\x44\x53\x6b\x6b\x57\x36\x4c\x54\x57\x37\x79','\x57\x36\x65\x43\x57\x36\x52\x63\x48\x47\x79','\x44\x6d\x6b\x58\x41\x66\x37\x64\x4d\x4b\x52\x63\x4e\x47','\x66\x43\x6b\x7a\x64\x38\x6b\x51','\x79\x78\x47\x54\x6e\x75\x43\x65\x6e\x49\x75','\x73\x6d\x6b\x51\x57\x35\x58\x47\x57\x50\x75\x36\x57\x51\x4b\x69','\x57\x50\x78\x63\x54\x38\x6f\x7a\x57\x35\x37\x64\x52\x32\x64\x64\x52\x6d\x6f\x45','\x77\x53\x6b\x55\x57\x50\x76\x70\x73\x6d\x6b\x54\x57\x51\x75','\x6f\x4e\x34\x49','\x69\x62\x66\x4c\x72\x71','\x57\x4f\x35\x4d\x57\x4f\x33\x63\x47\x53\x6b\x59\x57\x37\x6e\x57','\x57\x52\x5a\x64\x4f\x76\x76\x2b\x6a\x6d\x6b\x56\x57\x36\x2f\x64\x4c\x71','\x7a\x38\x6f\x52\x75\x6d\x6f\x36\x7a\x4c\x71\x55','\x57\x34\x4f\x41\x6e\x48\x68\x63\x4f\x73\x62\x4f\x6f\x61','\x73\x6d\x6b\x50\x7a\x4b\x64\x64\x4d\x30\x65','\x77\x38\x6b\x6d\x57\x51\x47\x4d\x57\x37\x6d','\x6e\x38\x6f\x4c\x6d\x6d\x6b\x31\x57\x36\x5a\x63\x54\x6d\x6b\x62\x57\x4f\x34','\x57\x52\x6c\x64\x48\x43\x6f\x37\x64\x53\x6f\x72\x67\x53\x6f\x4b\x57\x36\x53','\x57\x34\x5a\x64\x53\x4b\x50\x2b\x57\x35\x52\x64\x4c\x30\x70\x64\x48\x61','\x57\x36\x4e\x63\x4e\x5a\x33\x64\x56\x43\x6b\x5a\x45\x4d\x70\x63\x56\x57','\x57\x37\x31\x36\x57\x50\x78\x64\x4f\x68\x6d','\x57\x37\x53\x62\x57\x36\x68\x63\x54\x31\x56\x64\x4f\x71','\x57\x50\x74\x64\x55\x38\x6f\x6c\x70\x53\x6f\x55','\x57\x34\x4e\x64\x4c\x38\x6f\x54\x57\x51\x47\x6d\x6e\x32\x53','\x57\x4f\x6e\x4f\x57\x50\x58\x78\x57\x34\x6a\x63\x78\x47','\x57\x4f\x5a\x64\x55\x53\x6b\x53\x57\x52\x56\x63\x4b\x5a\x2f\x63\x54\x31\x4f','\x69\x43\x6f\x48\x6c\x53\x6b\x37\x57\x36\x57','\x57\x4f\x5a\x64\x4f\x31\x39\x35\x57\x50\x74\x64\x4e\x71','\x65\x43\x6f\x65\x66\x74\x2f\x63\x4f\x4b\x5a\x63\x47\x76\x4b','\x42\x38\x6b\x6f\x57\x34\x62\x47\x57\x50\x53\x6b','\x57\x35\x43\x47\x6d\x57\x37\x64\x4a\x43\x6b\x64\x57\x51\x4a\x63\x4d\x61','\x57\x36\x5a\x63\x49\x5a\x33\x64\x55\x53\x6b\x55\x44\x32\x33\x63\x50\x71','\x43\x4a\x4b\x31\x57\x35\x69\x4e\x42\x78\x46\x63\x4e\x57','\x45\x4b\x69\x52\x57\x37\x71\x73','\x64\x78\x6e\x46\x57\x50\x68\x63\x47\x72\x58\x43\x57\x4f\x57','\x57\x35\x30\x48\x57\x35\x33\x63\x47\x4e\x46\x64\x48\x4a\x2f\x64\x4f\x61','\x42\x32\x43\x4b\x61\x4c\x43\x6e\x6e\x59\x79','\x57\x34\x68\x63\x51\x6d\x6b\x46\x57\x4f\x7a\x2f\x6b\x53\x6b\x56\x76\x71','\x78\x38\x6b\x69\x79\x4b\x68\x64\x4e\x4b\x64\x63\x4a\x6d\x6f\x4b','\x70\x58\x54\x4b\x77\x4c\x33\x64\x4d\x58\x65\x6a','\x69\x38\x6b\x66\x57\x4f\x78\x64\x48\x5a\x48\x37\x45\x61\x38','\x57\x34\x68\x63\x52\x6d\x6b\x43\x57\x51\x44\x59\x67\x53\x6b\x4c\x75\x61','\x72\x6d\x6b\x52\x57\x52\x71\x59\x57\x36\x75\x57\x57\x35\x68\x63\x4e\x57','\x74\x4a\x75\x36\x57\x34\x4f\x55\x78\x67\x57','\x57\x52\x39\x7a\x57\x52\x38','\x72\x6d\x6b\x64\x57\x35\x72\x51\x57\x50\x75\x6c\x57\x52\x75','\x57\x36\x42\x63\x48\x64\x46\x64\x55\x38\x6b\x2f','\x57\x35\x2f\x63\x51\x6d\x6f\x65\x57\x50\x4c\x50\x64\x6d\x6b\x4c\x78\x71','\x57\x52\x74\x64\x53\x53\x6b\x2f\x57\x37\x57\x69\x57\x51\x6c\x63\x50\x6d\x6b\x35','\x57\x36\x65\x62\x57\x37\x33\x63\x50\x65\x52\x64\x53\x71','\x65\x63\x72\x61\x71\x6d\x6b\x32\x57\x35\x66\x4e\x57\x34\x34','\x61\x65\x61\x75\x70\x78\x35\x79\x42\x31\x53','\x7a\x53\x6b\x52\x57\x52\x69\x32\x57\x51\x47\x4c\x6c\x43\x6b\x2b','\x6e\x53\x6f\x61\x65\x74\x6c\x63\x49\x75\x37\x63\x4a\x76\x71','\x72\x43\x6b\x49\x57\x51\x34\x48\x57\x36\x38','\x6c\x6d\x6f\x4c\x70\x6d\x6b\x57\x57\x36\x46\x63\x53\x53\x6b\x42','\x57\x34\x71\x75\x69\x72\x70\x63\x56\x71\x58\x51\x6e\x61','\x64\x6d\x6f\x61\x66\x74\x53','\x44\x4c\x4c\x32\x43\x71\x30\x4b\x78\x68\x71','\x57\x37\x33\x63\x49\x6d\x6b\x70\x57\x36\x38','\x78\x38\x6b\x30\x57\x50\x76\x79\x77\x43\x6b\x51\x57\x52\x37\x64\x50\x47','\x57\x35\x78\x63\x54\x6d\x6b\x67\x57\x4f\x75','\x73\x38\x6b\x55\x57\x50\x44\x45','\x6e\x6d\x6f\x59\x6d\x53\x6b\x49\x57\x36\x56\x63\x50\x6d\x6b\x6e\x57\x50\x38','\x57\x35\x79\x68\x6d\x61\x42\x63\x56\x63\x7a\x59\x6a\x71','\x57\x4f\x58\x73\x70\x6d\x6b\x49\x76\x53\x6b\x32\x57\x36\x4f','\x57\x50\x50\x48\x57\x4f\x6c\x63\x50\x53\x6b\x57\x57\x37\x6e\x36\x57\x37\x43','\x57\x4f\x57\x6f\x77\x38\x6f\x35\x57\x52\x38','\x57\x35\x2f\x63\x53\x38\x6b\x41\x57\x50\x37\x64\x52\x57','\x44\x31\x48\x49\x45\x61\x53','\x79\x4e\x34\x4c\x63\x71','\x70\x43\x6f\x53\x6f\x71\x42\x63\x4b\x33\x52\x63\x53\x77\x34','\x57\x37\x71\x43\x57\x37\x46\x63\x4e\x58\x30\x51\x62\x6d\x6b\x35','\x57\x4f\x2f\x64\x4d\x49\x6c\x63\x56\x53\x6b\x68\x68\x48\x37\x63\x4e\x61','\x57\x37\x58\x58\x57\x4f\x74\x64\x53\x77\x6c\x64\x52\x4a\x69','\x6a\x4e\x79\x30\x61\x71','\x44\x53\x6b\x33\x57\x52\x69\x31\x57\x50\x69\x35\x62\x43\x6b\x57','\x57\x50\x78\x64\x50\x38\x6b\x50\x57\x52\x64\x63\x4a\x61\x37\x63\x55\x31\x57','\x79\x6d\x6b\x47\x57\x51\x4b\x32\x57\x36\x69','\x57\x37\x61\x78\x57\x36\x4a\x63\x4a\x61','\x70\x77\x43\x4f','\x57\x52\x6c\x64\x51\x65\x48\x47\x6d\x71','\x75\x38\x6b\x59\x57\x50\x72\x76','\x57\x36\x53\x51\x67\x74\x4e\x63\x4d\x57\x58\x79\x67\x57','\x57\x4f\x35\x74\x69\x38\x6b\x30\x75\x47','\x6e\x64\x31\x36\x64\x43\x6f\x4a\x57\x37\x54\x65\x6f\x71','\x57\x50\x74\x63\x51\x6d\x6b\x53\x57\x52\x42\x63\x4c\x63\x42\x63\x54\x30\x79','\x69\x43\x6b\x73\x57\x50\x4e\x64\x4d\x64\x66\x53','\x57\x34\x76\x52\x41\x73\x38\x51\x42\x4e\x33\x64\x55\x47','\x57\x36\x37\x63\x4b\x38\x6b\x54\x57\x52\x64\x64\x4b\x66\x52\x64\x4b\x53\x6f\x56','\x62\x4c\x79\x73\x6c\x67\x54\x42\x41\x4c\x69','\x57\x50\x37\x64\x4e\x4a\x4a\x63\x51\x6d\x6b\x78\x76\x58\x37\x63\x4a\x47','\x57\x51\x50\x43\x46\x38\x6b\x6d\x57\x37\x30\x31\x44\x38\x6b\x37','\x62\x73\x48\x47\x6d\x53\x6b\x4e','\x57\x4f\x4a\x64\x54\x6d\x6f\x42\x57\x34\x6c\x63\x51\x74\x74\x63\x52\x38\x6f\x63\x57\x36\x71\x32\x57\x51\x6c\x64\x4a\x77\x71','\x57\x50\x37\x64\x4f\x43\x6b\x4a\x57\x52\x5a\x63\x4b\x59\x46\x63\x49\x4b\x30','\x57\x36\x47\x68\x57\x36\x68\x63\x50\x4b\x4f','\x57\x51\x79\x69\x42\x6d\x6b\x43','\x57\x50\x74\x64\x52\x43\x6b\x4a\x57\x52\x6c\x63\x4c\x63\x43','\x77\x63\x4f\x4e\x57\x34\x4f\x35\x76\x33\x4e\x63\x48\x57','\x44\x77\x65\x59\x62\x65\x6d\x65\x6f\x74\x57','\x61\x77\x39\x70\x57\x35\x6c\x63\x4b\x58\x44\x77\x57\x50\x47','\x44\x6d\x6b\x53\x79\x57','\x76\x59\x76\x30\x68\x6d\x6f\x42\x46\x43\x6b\x61\x57\x50\x79','\x61\x38\x6f\x73\x68\x71','\x61\x5a\x31\x63\x6d\x43\x6b\x50\x57\x52\x47\x47\x63\x47','\x6a\x38\x6f\x53\x6d\x53\x6b\x33\x57\x36\x4b','\x65\x38\x6b\x65\x63\x53\x6b\x49','\x57\x50\x37\x64\x4f\x43\x6b\x48\x57\x51\x68\x63\x48\x74\x30','\x57\x35\x5a\x63\x4f\x53\x6b\x30\x57\x34\x42\x63\x4c\x43\x6f\x7a\x63\x53\x6b\x4b','\x65\x6d\x6b\x59\x57\x52\x78\x64\x56\x71\x39\x78\x77\x4d\x79','\x63\x4e\x72\x6b','\x57\x35\x69\x6e\x57\x37\x43','\x77\x53\x6b\x54\x57\x50\x72\x79\x72\x47','\x57\x52\x70\x64\x53\x4b\x35\x2f','\x57\x34\x37\x63\x50\x57\x5a\x64\x4a\x43\x6b\x63\x78\x4b\x33\x63\x4e\x57','\x57\x34\x33\x64\x4e\x38\x6f\x57','\x42\x38\x6b\x72\x57\x50\x7a\x59\x79\x71','\x57\x36\x65\x43\x57\x36\x56\x63\x47\x62\x53\x47','\x75\x63\x4c\x36\x68\x53\x6f\x69\x44\x38\x6b\x70\x57\x50\x38','\x57\x51\x72\x4c\x65\x6d\x6b\x63\x79\x38\x6b\x64\x57\x34\x50\x79','\x57\x36\x47\x62\x57\x37\x2f\x63\x4a\x48\x65\x38','\x57\x52\x76\x31\x6b\x66\x39\x64\x57\x4f\x6c\x63\x56\x71\x6d','\x74\x65\x57\x6f\x57\x34\x47\x55\x64\x71\x68\x64\x47\x61','\x6b\x62\x58\x4b\x72\x77\x46\x64\x4c\x4a\x30\x6b','\x57\x35\x34\x38\x6b\x72\x46\x64\x49\x38\x6b\x46\x57\x51\x4a\x63\x4e\x47','\x69\x43\x6f\x6f\x64\x74\x64\x63\x55\x61','\x6e\x43\x6b\x45\x57\x4f\x74\x64\x48\x63\x35\x57\x78\x4b\x4f','\x67\x59\x48\x44\x77\x53\x6b\x4b\x57\x35\x35\x6e','\x6a\x4d\x79\x48\x66\x47','\x6a\x66\x72\x67\x63\x48\x48\x4b\x44\x76\x47','\x57\x37\x4e\x64\x56\x6d\x6b\x52\x57\x36\x57','\x57\x34\x75\x4a\x57\x34\x46\x63\x50\x74\x30\x61\x6a\x6d\x6b\x75','\x57\x36\x7a\x58\x57\x50\x42\x64\x50\x77\x4a\x64\x53\x4a\x6a\x37','\x41\x62\x48\x36\x62\x53\x6f\x70','\x57\x37\x71\x6d\x57\x34\x4e\x63\x4e\x64\x6d','\x6f\x72\x54\x4e\x75\x57','\x6a\x43\x6f\x55\x6b\x43\x6b\x38\x57\x37\x64\x63\x52\x38\x6b\x79\x57\x4f\x71','\x62\x6d\x6b\x7a\x64\x43\x6b\x37\x57\x4f\x52\x63\x56\x32\x53','\x62\x77\x62\x75','\x76\x53\x6b\x56\x57\x51\x39\x6a\x74\x6d\x6b\x47\x57\x52\x71','\x57\x50\x72\x39\x57\x50\x52\x63\x4b\x38\x6b\x5a\x57\x36\x6a\x6c\x57\x37\x43','\x57\x50\x6a\x42\x6a\x53\x6b\x59\x75\x47','\x72\x59\x39\x34\x68\x38\x6f\x47\x45\x38\x6b\x74','\x57\x34\x69\x39\x6c\x57\x37\x64\x4b\x6d\x6b\x6d','\x70\x53\x6b\x77\x57\x50\x4f','\x57\x36\x56\x63\x4a\x5a\x64\x64\x53\x43\x6b\x4a\x44\x47','\x57\x37\x68\x63\x48\x53\x6b\x67\x57\x37\x6d','\x62\x33\x72\x4e\x6e\x63\x66\x78\x7a\x67\x4b','\x63\x53\x6b\x7a\x62\x38\x6b\x51\x57\x4f\x6d','\x79\x43\x6f\x4f\x44\x6d\x6f\x4d\x44\x76\x57','\x76\x38\x6b\x6d\x57\x4f\x75\x43\x57\x50\x69\x46\x6d\x53\x6b\x71','\x67\x59\x35\x79\x6b\x61','\x72\x53\x6b\x52\x57\x51\x47\x52\x57\x51\x79\x34\x6e\x6d\x6b\x4a','\x57\x37\x57\x77\x65\x63\x42\x64\x50\x53\x6b\x30\x57\x52\x6c\x63\x56\x61','\x57\x37\x66\x36\x57\x50\x79','\x57\x4f\x6c\x64\x47\x78\x4c\x69\x64\x53\x6b\x78\x57\x4f\x46\x64\x53\x47','\x57\x36\x65\x69\x57\x37\x37\x63\x4e\x65\x52\x64\x52\x61\x37\x64\x48\x47','\x61\x38\x6f\x76\x64\x64\x56\x63\x4f\x75\x4a\x63\x4e\x65\x4b','\x57\x37\x68\x63\x55\x61\x53\x74\x62\x53\x6b\x61\x42\x53\x6b\x42','\x70\x66\x66\x69\x63\x48\x48\x33\x46\x76\x43','\x57\x4f\x4b\x75\x45\x43\x6f\x52\x57\x4f\x53','\x57\x4f\x6a\x49\x57\x4f\x69','\x57\x34\x46\x63\x51\x6d\x6b\x79\x57\x4f\x61','\x69\x43\x6f\x2b\x6c\x62\x2f\x63\x48\x78\x74\x63\x54\x33\x43','\x57\x52\x69\x42\x79\x38\x6f\x49\x57\x52\x31\x45\x57\x51\x6c\x63\x50\x47','\x61\x5a\x35\x70\x74\x53\x6b\x47','\x57\x35\x5a\x63\x56\x38\x6b\x63\x57\x50\x6e\x56\x62\x53\x6b\x48\x78\x71','\x57\x37\x52\x63\x47\x38\x6b\x4e\x57\x37\x2f\x63\x51\x43\x6f\x5a','\x57\x50\x46\x64\x54\x4b\x4c\x4a','\x57\x4f\x4b\x45\x43\x57','\x78\x38\x6b\x73\x57\x34\x44\x4e\x57\x50\x34\x45','\x57\x34\x42\x63\x51\x6d\x6b\x66\x57\x50\x44\x4a','\x57\x50\x6e\x73\x70\x6d\x6b\x2b\x77\x38\x6b\x4e\x57\x36\x4f','\x57\x51\x34\x57\x44\x43\x6b\x42\x57\x35\x42\x64\x47\x64\x54\x34','\x57\x4f\x46\x64\x4f\x30\x66\x6a\x6c\x47','\x57\x51\x6d\x53\x72\x43\x6f\x64\x57\x52\x4c\x34\x57\x50\x4a\x63\x4d\x61','\x57\x50\x74\x64\x4b\x73\x42\x63\x55\x43\x6b\x6b\x42\x61\x56\x63\x4e\x57','\x72\x32\x34\x36\x45\x49\x66\x7a\x75\x68\x34','\x44\x57\x39\x69','\x57\x51\x68\x63\x4a\x64\x6c\x64\x54\x38\x6b\x52\x44\x4d\x47','\x42\x4e\x53\x32\x57\x36\x34\x78\x6f\x49\x52\x64\x54\x71','\x68\x61\x35\x62\x6b\x43\x6f\x41\x57\x35\x4f','\x67\x33\x31\x4d\x6e\x63\x6a\x63\x78\x78\x47','\x57\x4f\x56\x64\x51\x38\x6b\x53\x57\x52\x56\x63\x53\x63\x37\x63\x51\x4c\x53','\x69\x68\x61\x4b\x62\x31\x4f','\x57\x50\x68\x64\x53\x4b\x31\x65\x57\x4f\x68\x64\x48\x4b\x37\x64\x48\x61','\x57\x52\x79\x71\x41\x6d\x6b\x79\x57\x52\x75','\x41\x53\x6f\x4d\x6b\x6d\x6b\x36\x57\x36\x68\x63\x54\x6d\x6b\x62\x57\x4f\x69','\x6a\x32\x53\x33\x73\x57','\x57\x34\x4a\x63\x50\x6d\x6b\x42\x57\x4f\x74\x64\x53\x78\x65','\x68\x67\x54\x46\x6a\x5a\x4c\x79\x76\x33\x4f','\x57\x37\x68\x63\x4f\x53\x6b\x70\x57\x4f\x30','\x57\x35\x62\x53\x45\x64\x71','\x57\x35\x42\x63\x4f\x38\x6b\x44','\x78\x49\x34\x31\x57\x34\x4f\x2b\x71\x71','\x6f\x58\x7a\x41\x71\x30\x75','\x74\x38\x6f\x6c\x57\x34\x6e\x52\x57\x4f\x69\x6b\x57\x51\x38\x73','\x6e\x38\x6b\x73\x57\x4f\x4e\x64\x47\x4a\x4c\x39','\x57\x36\x4e\x64\x51\x53\x6f\x42\x57\x52\x75\x53\x67\x31\x58\x6b','\x75\x73\x39\x4f\x61\x6d\x6f\x52\x43\x6d\x6b\x73\x57\x50\x38','\x57\x4f\x61\x2b\x72\x6d\x6b\x47\x57\x35\x61\x73\x73\x53\x6b\x69','\x63\x5a\x4c\x44','\x57\x4f\x68\x64\x53\x53\x6f\x77\x6b\x43\x6f\x47\x6d\x6d\x6f\x58\x57\x35\x47','\x57\x51\x2f\x63\x47\x59\x64\x63\x56\x53\x6b\x31\x44\x4e\x33\x63\x50\x61','\x75\x6d\x6b\x55\x57\x50\x75','\x57\x35\x34\x38\x6b\x72\x46\x64\x49\x38\x6b\x46','\x7a\x6d\x6f\x4a\x6d\x53\x6b\x36\x57\x37\x42\x63\x4f\x43\x6b\x62\x57\x4f\x6d','\x7a\x53\x6b\x52\x57\x51\x47\x52\x57\x51\x79\x67\x61\x43\x6b\x50','\x57\x37\x64\x63\x48\x57\x4c\x71\x57\x4f\x65','\x57\x51\x53\x33\x45\x38\x6b\x45\x57\x35\x46\x64\x4c\x57','\x57\x4f\x78\x64\x53\x53\x6f\x78\x6d\x53\x6f\x50\x70\x53\x6f\x65','\x57\x34\x65\x58\x57\x34\x4a\x63\x55\x5a\x53\x79\x6b\x6d\x6b\x70','\x6f\x72\x54\x2b\x71\x4d\x43','\x62\x4e\x34\x34\x68\x33\x50\x53\x72\x4e\x61','\x57\x34\x4a\x63\x50\x6d\x6b\x42\x57\x4f\x68\x64\x53\x4d\x56\x64\x52\x6d\x6f\x6c','\x71\x6d\x6b\x64\x57\x35\x54\x50\x57\x4f\x71\x72','\x61\x6d\x6b\x41\x64\x6d\x6b\x54\x57\x4f\x37\x63\x56\x71','\x66\x71\x72\x42\x6a\x6d\x6f\x51\x57\x34\x58\x5a\x62\x57','\x57\x37\x46\x64\x54\x53\x6b\x48\x57\x37\x6a\x74\x57\x51\x30','\x57\x50\x52\x64\x4c\x43\x6f\x6c\x6f\x43\x6f\x38','\x6c\x43\x6f\x55\x70\x53\x6b\x34\x57\x37\x46\x63\x50\x6d\x6b\x6e\x57\x50\x34','\x64\x49\x35\x77\x6d\x6d\x6b\x6e\x57\x52\x6d\x51\x67\x57','\x6e\x47\x48\x30\x66\x47','\x61\x71\x78\x64\x52\x5a\x56\x63\x4d\x43\x6f\x47\x57\x52\x7a\x30','\x57\x37\x6d\x70\x57\x36\x52\x63\x48\x57','\x57\x51\x75\x58\x43\x53\x6b\x6f\x57\x37\x5a\x64\x4b\x63\x58\x2b','\x57\x52\x71\x31\x75\x53\x6f\x78\x57\x51\x44\x38\x57\x50\x78\x63\x49\x71','\x57\x52\x33\x64\x52\x65\x62\x2b\x6c\x53\x6b\x50\x57\x36\x2f\x64\x4c\x71','\x57\x50\x46\x64\x53\x6d\x6b\x30','\x57\x50\x48\x2b\x57\x51\x31\x6a\x57\x35\x66\x61\x71\x47','\x57\x51\x70\x64\x54\x53\x6f\x6e\x6d\x43\x6f\x61\x70\x53\x6f\x65\x57\x34\x71','\x6b\x38\x6b\x4c\x57\x52\x57\x53\x57\x51\x65\x55\x62\x61','\x57\x35\x7a\x51\x43\x73\x6d','\x57\x4f\x6e\x4f\x57\x50\x39\x6c\x57\x34\x58\x70\x73\x6d\x6f\x73','\x42\x4b\x35\x49\x42\x57\x43\x32\x62\x4e\x69','\x62\x38\x6f\x63\x64\x63\x33\x64\x4f\x57','\x57\x37\x79\x75\x69\x72\x47','\x7a\x43\x6f\x39\x41\x6d\x6f\x37','\x6d\x53\x6b\x7a\x57\x50\x37\x64\x48\x64\x35\x6d\x42\x75\x79','\x76\x6d\x6b\x4b\x57\x4f\x48\x69\x74\x6d\x6b\x4b\x57\x52\x74\x64\x55\x57','\x57\x37\x5a\x63\x4a\x38\x6b\x65\x57\x37\x2f\x63\x50\x6d\x6f\x5a\x6c\x57','\x71\x6d\x6b\x64\x57\x50\x50\x4a\x57\x50\x38\x44\x57\x51\x6d\x72','\x41\x4e\x53\x4a\x57\x37\x71\x69','\x61\x5a\x37\x64\x4e\x74\x46\x63\x48\x6d\x6f\x4a\x57\x51\x6a\x4e','\x7a\x78\x38\x31\x61\x4c\x47\x65\x6b\x57','\x57\x34\x6a\x53\x43\x74\x69\x53\x73\x61','\x57\x35\x71\x4f\x6c\x71\x37\x64\x4a\x43\x6f\x66\x57\x50\x74\x63\x48\x71','\x57\x4f\x6c\x64\x4c\x68\x39\x65\x61\x6d\x6b\x75','\x57\x36\x2f\x64\x4f\x38\x6b\x36\x57\x36\x65','\x57\x37\x4a\x63\x52\x53\x6b\x6d\x57\x4f\x47','\x66\x53\x6b\x48\x57\x51\x78\x64\x4f\x62\x58\x69\x75\x32\x61','\x57\x35\x68\x63\x50\x6d\x6b\x72\x57\x4f\x69','\x57\x50\x72\x6b\x65\x4d\x76\x31\x57\x52\x78\x63\x53\x74\x4f','\x6f\x58\x6a\x49\x79\x6d\x6b\x6c\x57\x37\x58\x33\x57\x37\x75','\x57\x51\x6d\x61\x57\x4f\x70\x64\x53\x38\x6b\x35','\x57\x36\x37\x64\x4f\x6d\x6b\x55\x57\x37\x6a\x63','\x61\x47\x6a\x73\x6c\x38\x6f\x75\x57\x34\x50\x4a\x66\x61','\x72\x53\x6b\x67\x57\x4f\x69\x76\x57\x50\x38\x65\x6e\x53\x6b\x79','\x57\x36\x71\x78\x57\x35\x6c\x63\x53\x75\x5a\x64\x55\x61\x75','\x67\x5a\x4c\x63\x6d\x71','\x46\x38\x6b\x4b\x42\x4c\x4e\x64\x56\x76\x33\x63\x4d\x43\x6f\x31','\x78\x33\x38\x55\x68\x4d\x34\x6c\x6b\x5a\x34','\x71\x6d\x6b\x31\x57\x52\x47\x52\x57\x52\x4b','\x57\x50\x6e\x50\x57\x50\x30','\x57\x36\x44\x4b\x43\x73\x4f','\x57\x35\x2f\x63\x56\x58\x4f\x79\x61\x71','\x57\x4f\x71\x58\x45\x6d\x6b\x64\x57\x34\x42\x64\x49\x49\x4f','\x43\x4b\x50\x58\x42\x61\x53','\x6b\x6d\x6f\x56\x70\x53\x6b\x31\x57\x37\x42\x63\x51\x43\x6b\x68\x57\x4f\x6d','\x57\x50\x68\x64\x55\x38\x6b\x6d\x57\x51\x46\x63\x4b\x49\x37\x63\x4f\x71','\x6e\x64\x72\x4c\x65\x38\x6f\x36\x57\x36\x48\x46\x69\x47','\x45\x53\x6f\x51\x45\x6d\x6f\x4c','\x57\x35\x56\x64\x49\x38\x6f\x54\x57\x50\x53\x69','\x68\x64\x39\x71\x6b\x38\x6b\x56\x57\x51\x61\x48\x68\x71','\x41\x38\x6f\x35\x79\x53\x6f\x4e\x45\x47','\x78\x43\x6b\x52\x57\x52\x34\x58','\x64\x64\x57\x51\x78\x38\x6f\x30\x42\x6d\x6b\x6f\x57\x50\x61','\x63\x33\x4c\x4e\x6f\x72\x6e\x46\x75\x61','\x57\x36\x2f\x63\x4c\x43\x6b\x65\x57\x37\x56\x63\x54\x38\x6f\x49\x61\x38\x6b\x7a','\x76\x6d\x6b\x55\x57\x50\x39\x45\x71\x71','\x72\x38\x6b\x53\x41\x4c\x5a\x64\x49\x31\x43','\x57\x35\x42\x63\x4e\x62\x43\x74\x63\x6d\x6b\x57\x76\x43\x6b\x43','\x57\x34\x33\x64\x4c\x43\x6f\x33\x57\x35\x43\x6b\x6c\x67\x58\x56','\x71\x63\x54\x34\x67\x6d\x6f\x48\x71\x43\x6b\x63\x57\x4f\x47','\x65\x47\x6e\x41\x6d\x53\x6f\x71\x57\x35\x62\x42\x63\x71','\x57\x4f\x72\x4d\x43\x49\x47\x39\x77\x33\x78\x64\x56\x71','\x57\x50\x66\x63\x70\x6d\x6b\x35','\x6d\x43\x6f\x55\x6e\x53\x6b\x36\x57\x36\x33\x63\x54\x38\x6b\x67','\x57\x37\x33\x63\x4a\x59\x64\x64\x51\x38\x6b\x52\x7a\x57','\x57\x36\x33\x63\x47\x53\x6b\x70\x57\x37\x46\x63\x50\x6d\x6f\x49\x6e\x43\x6b\x63','\x57\x35\x69\x4d\x6d\x58\x70\x64\x4d\x38\x6b\x66\x57\x4f\x6d','\x62\x63\x48\x44\x77\x43\x6b\x51\x57\x35\x44\x42\x57\x35\x30','\x62\x32\x31\x2f\x6a\x74\x4c\x63','\x44\x76\x38\x2b\x57\x34\x4f\x7a','\x69\x58\x66\x51\x75\x4d\x46\x64\x49\x47\x6d','\x57\x4f\x31\x73\x69\x43\x6b\x32\x71\x38\x6b\x35','\x42\x38\x6f\x51\x44\x53\x6f\x39\x45\x76\x61\x35\x57\x52\x69','\x66\x49\x4a\x64\x4f\x5a\x64\x63\x4d\x43\x6f\x4a\x57\x52\x48\x48','\x6e\x38\x6f\x30\x6c\x38\x6b\x39\x57\x36\x5a\x63\x50\x38\x6b\x62\x57\x4f\x53','\x64\x58\x4e\x64\x51\x4a\x2f\x63\x4d\x6d\x6f\x47','\x57\x35\x5a\x64\x4c\x38\x6f\x58\x57\x4f\x57','\x77\x6d\x6b\x58\x7a\x4b\x68\x64\x49\x4c\x43','\x57\x4f\x48\x38\x57\x4f\x2f\x63\x4b\x43\x6b\x59\x57\x36\x76\x64\x57\x36\x4f','\x57\x50\x5a\x63\x4c\x6d\x6b\x38\x57\x50\x57\x65\x6e\x77\x31\x6c\x57\x51\x6d','\x43\x4c\x35\x57\x44\x57','\x57\x36\x37\x63\x52\x73\x35\x59','\x41\x6d\x6b\x78\x57\x51\x38\x57\x57\x51\x6d\x4f\x61\x43\x6b\x4c','\x76\x6d\x6f\x6c\x57\x35\x7a\x37\x57\x4f\x69\x6b\x57\x51\x4b\x70','\x70\x38\x6b\x79\x57\x4f\x30','\x57\x51\x37\x64\x48\x4d\x58\x6e\x64\x43\x6b\x42\x57\x34\x56\x64\x55\x61','\x6c\x57\x78\x64\x4a\x58\x2f\x63\x53\x53\x6f\x6d\x57\x50\x6a\x66','\x57\x36\x44\x47\x57\x4f\x52\x64\x50\x76\x4a\x64\x52\x59\x72\x56','\x46\x43\x6f\x53\x79\x38\x6f\x48\x45\x4c\x69','\x57\x37\x38\x41\x6e\x4a\x2f\x64\x4b\x57','\x72\x4b\x4f\x6f\x57\x34\x38\x37\x66\x47\x4a\x64\x4e\x47','\x57\x52\x58\x30\x57\x4f\x4c\x6d\x57\x34\x38','\x57\x35\x69\x71\x6c\x71\x71','\x46\x77\x57\x49\x57\x36\x53\x76\x6d\x74\x46\x64\x50\x61','\x57\x35\x5a\x63\x54\x6d\x6b\x67\x57\x50\x6c\x64\x51\x77\x5a\x64\x53\x6d\x6f\x61','\x57\x52\x7a\x56\x6f\x66\x4c\x46','\x57\x35\x76\x53\x57\x4f\x68\x63\x4a\x43\x6b\x4a','\x63\x43\x6b\x66\x74\x61','\x72\x38\x6b\x51\x79\x66\x6c\x64\x4d\x4c\x79','\x57\x50\x79\x4e\x57\x50\x2f\x64\x56\x53\x6b\x6a','\x77\x74\x38\x57','\x57\x37\x79\x6c\x57\x36\x56\x63\x4d\x72\x53\x47\x65\x53\x6b\x55','\x57\x52\x53\x45\x43\x47','\x57\x35\x78\x63\x56\x62\x65\x46\x64\x6d\x6b\x46','\x57\x35\x5a\x64\x48\x6d\x6f\x51\x57\x51\x34\x4a','\x57\x4f\x39\x6e\x63\x30\x48\x33','\x6c\x47\x7a\x35\x77\x78\x61','\x64\x49\x39\x75','\x68\x48\x54\x71\x6c\x38\x6f\x75\x57\x35\x43\x37\x66\x47','\x77\x6d\x6b\x6a\x57\x35\x50\x49\x57\x51\x38\x6d\x57\x52\x75\x79','\x57\x36\x2f\x63\x48\x53\x6b\x7a\x57\x37\x46\x63\x51\x53\x6f\x4c','\x57\x4f\x74\x64\x4f\x38\x6f\x66\x6b\x43\x6f\x57\x6f\x57','\x57\x52\x65\x6e\x57\x51\x4e\x64\x48\x6d\x6b\x49\x46\x43\x6f\x4e\x57\x50\x6d','\x57\x4f\x42\x64\x4f\x75\x48\x34\x57\x4f\x43','\x57\x52\x4a\x64\x51\x72\x4e\x63\x47\x43\x6b\x2f\x79\x59\x64\x63\x51\x47','\x57\x50\x56\x64\x4e\x4a\x52\x63\x56\x38\x6b\x42','\x57\x36\x78\x64\x50\x53\x6f\x43\x57\x51\x43\x4f\x66\x75\x7a\x67','\x68\x74\x6e\x44\x69\x61','\x70\x4e\x4f\x2f\x66\x65\x54\x59','\x6c\x58\x4c\x52\x45\x47','\x66\x38\x6b\x4c\x57\x50\x72\x76\x73\x61','\x57\x50\x52\x64\x56\x43\x6b\x52','\x72\x59\x54\x56\x65\x43\x6b\x2b','\x57\x37\x79\x62\x57\x36\x33\x63\x4e\x72\x65','\x57\x35\x71\x71\x6a\x72\x5a\x63\x54\x63\x50\x49','\x57\x36\x79\x62\x57\x36\x4f','\x71\x43\x6b\x64\x57\x34\x66\x4d\x57\x50\x38\x44','\x57\x35\x34\x54\x6a\x61','\x68\x59\x4c\x6c\x72\x6d\x6b\x31\x57\x35\x7a\x43\x57\x35\x30','\x6e\x53\x6b\x74\x57\x51\x42\x64\x48\x64\x6e\x39','\x57\x36\x57\x71\x57\x36\x46\x63\x50\x4c\x70\x64\x51\x71\x4a\x64\x54\x57','\x64\x64\x4e\x64\x55\x33\x70\x63\x47\x43\x6f\x32\x57\x51\x34','\x57\x34\x43\x67\x6d\x61','\x57\x34\x5a\x63\x47\x49\x42\x64\x53\x6d\x6b\x53\x75\x78\x78\x63\x50\x71','\x67\x73\x39\x65\x74\x6d\x6b\x4d\x57\x34\x30','\x57\x4f\x39\x36\x57\x50\x56\x63\x4a\x43\x6b\x4c\x57\x37\x44\x47\x57\x36\x79','\x41\x6d\x6b\x53\x57\x52\x4b\x47\x57\x51\x65','\x64\x78\x6e\x45\x57\x35\x68\x63\x4c\x61','\x57\x51\x6d\x53\x72\x43\x6f\x63\x57\x51\x35\x54\x57\x50\x78\x63\x4c\x57','\x57\x35\x68\x63\x56\x58\x61\x6a\x63\x6d\x6b\x44\x74\x53\x6b\x32','\x73\x38\x6b\x47\x57\x4f\x58\x4f\x77\x43\x6b\x58\x57\x52\x74\x64\x51\x71','\x45\x59\x71\x34\x57\x37\x38','\x62\x68\x31\x4c\x6d\x4a\x48\x45','\x57\x4f\x74\x64\x4b\x32\x48\x74','\x57\x37\x65\x44\x57\x37\x4e\x63\x4a\x48\x65','\x57\x37\x76\x57\x57\x4f\x74\x64\x4f\x77\x79','\x77\x38\x6b\x56\x57\x52\x38','\x43\x43\x6b\x53\x57\x52\x69\x50','\x57\x34\x61\x52\x57\x34\x52\x63\x54\x49\x43\x41\x6d\x38\x6b\x6f','\x57\x50\x68\x64\x54\x4b\x35\x4c\x57\x4f\x5a\x63\x4d\x75\x52\x64\x47\x57','\x71\x6d\x6b\x47\x46\x4b\x79','\x72\x49\x72\x2b\x61\x53\x6f\x4c\x41\x53\x6b\x65\x57\x51\x75','\x73\x53\x6b\x31\x44\x31\x64\x64\x4b\x75\x61','\x78\x6d\x6b\x75\x57\x35\x50\x34\x57\x50\x4b\x44\x57\x51\x6d\x70','\x57\x34\x5a\x63\x47\x49\x42\x64\x53\x6d\x6b\x53\x79\x66\x4a\x63\x4f\x57','\x57\x50\x6a\x64\x6c\x53\x6b\x4c\x71\x53\x6b\x49','\x57\x52\x33\x64\x4e\x53\x6b\x63\x57\x50\x4a\x63\x4f\x72\x2f\x63\x48\x32\x43','\x57\x4f\x70\x64\x53\x53\x6f\x78\x6b\x71','\x61\x53\x6b\x6f\x62\x53\x6b\x53','\x46\x67\x57\x38\x57\x37\x4f\x75\x6b\x59\x33\x64\x4f\x47','\x57\x4f\x74\x64\x4f\x38\x6f\x77\x6e\x6d\x6f\x52\x6c\x38\x6f\x69\x57\x34\x57','\x57\x4f\x70\x64\x55\x6d\x6f\x4f\x6d\x53\x6f\x59\x6c\x43\x6f\x74\x57\x36\x4b','\x57\x37\x37\x63\x4f\x53\x6b\x70\x57\x50\x66\x51','\x7a\x4d\x43\x48\x57\x36\x34\x6f\x61\x64\x64\x64\x52\x47','\x57\x35\x46\x63\x47\x53\x6b\x61\x57\x50\x64\x64\x52\x33\x79','\x57\x50\x66\x66\x69\x6d\x6b\x38\x72\x38\x6b\x4c\x57\x35\x62\x38','\x57\x36\x34\x66\x57\x37\x2f\x63\x52\x32\x68\x64\x53\x62\x47','\x57\x37\x68\x63\x48\x4a\x76\x2f\x57\x4f\x68\x64\x52\x61','\x76\x59\x76\x30\x68\x61','\x42\x53\x6b\x6c\x75\x32\x79','\x73\x43\x6b\x5a\x57\x50\x72\x72\x73\x6d\x6b\x47\x57\x51\x75','\x57\x35\x4a\x63\x51\x6d\x6b\x66\x57\x4f\x43','\x57\x37\x4b\x62\x57\x36\x64\x63\x54\x57','\x72\x43\x6b\x52\x57\x51\x4f\x4a\x57\x36\x71\x51\x57\x34\x56\x63\x4d\x71','\x6d\x53\x6b\x61\x57\x52\x4e\x64\x4d\x73\x39\x39\x42\x75\x69','\x57\x4f\x6c\x64\x4a\x32\x6d','\x57\x51\x66\x56\x6d\x30\x48\x73\x57\x50\x4e\x63\x4a\x71\x53','\x46\x4d\x69\x71\x57\x35\x71\x45','\x76\x59\x76\x78\x68\x38\x6f\x5a\x45\x38\x6b\x74\x57\x52\x4b','\x57\x51\x76\x59\x68\x43\x6b\x6f\x7a\x6d\x6b\x66\x57\x35\x31\x43','\x6c\x58\x66\x4e\x71\x4d\x6d','\x77\x6d\x6b\x58\x57\x50\x6a\x52\x74\x6d\x6b\x33\x57\x52\x4b','\x6d\x53\x6b\x42\x57\x4f\x74\x64\x50\x57\x43','\x57\x37\x52\x63\x4d\x74\x6c\x64\x55\x43\x6b\x49','\x57\x35\x37\x64\x48\x43\x6b\x61\x57\x35\x48\x4d\x57\x50\x78\x63\x4e\x53\x6b\x68','\x6b\x43\x6f\x75\x6c\x38\x6b\x48\x57\x36\x5a\x63\x4f\x38\x6b\x6a\x57\x50\x4b','\x57\x36\x65\x44\x57\x34\x5a\x63\x48\x48\x38\x52\x64\x38\x6b\x69','\x64\x38\x6f\x65\x63\x59\x33\x63\x52\x76\x2f\x63\x4a\x71','\x43\x4c\x4c\x53\x43\x48\x34\x58\x44\x33\x71','\x57\x52\x39\x45\x57\x51\x4c\x4f\x57\x37\x58\x53\x44\x6d\x6f\x5a','\x57\x35\x5a\x64\x49\x77\x4b','\x6c\x76\x6e\x5a\x57\x36\x33\x63\x53\x49\x66\x32\x57\x51\x4f','\x57\x35\x33\x64\x49\x4a\x4a\x63\x56\x38\x6b\x6c\x71\x57\x2f\x63\x4c\x71','\x64\x4e\x72\x63\x57\x35\x33\x63\x4b\x48\x50\x43\x57\x4f\x75','\x57\x36\x47\x68\x57\x36\x46\x63\x53\x62\x65','\x57\x34\x5a\x64\x47\x53\x6f\x4f','\x57\x50\x37\x64\x4e\x49\x42\x63\x55\x6d\x6b\x6c\x71\x72\x52\x63\x51\x47','\x6a\x38\x6b\x73\x57\x50\x6c\x64\x4d\x71','\x77\x43\x6b\x64\x57\x35\x54\x54\x57\x50\x75','\x57\x50\x35\x39\x57\x4f\x4c\x76\x57\x34\x6a\x69','\x45\x33\x61\x48\x57\x37\x34','\x41\x43\x6b\x4d\x57\x52\x6d\x49\x57\x52\x4b\x4a','\x57\x34\x46\x63\x56\x38\x6b\x45\x57\x50\x50\x4c\x63\x43\x6b\x30\x76\x61','\x69\x6d\x6b\x64\x57\x4f\x78\x64\x4e\x71\x6a\x51\x41\x75\x34','\x57\x37\x4e\x63\x4a\x59\x68\x64\x51\x53\x6b\x49\x41\x31\x5a\x63\x4f\x57','\x57\x51\x62\x2f\x6d\x65\x6a\x69\x57\x50\x4e\x63\x56\x71\x69','\x75\x38\x6b\x38\x57\x52\x75\x54\x57\x37\x47','\x57\x50\x72\x53\x57\x50\x58\x73\x57\x35\x61\x70\x77\x6d\x6f\x79','\x45\x74\x53\x39\x57\x35\x69','\x72\x6d\x6b\x52\x77\x66\x68\x64\x4d\x4b\x4a\x63\x4d\x43\x6f\x58','\x57\x4f\x4c\x4e\x57\x50\x56\x63\x4c\x38\x6b\x4a\x57\x36\x72\x72\x57\x36\x30','\x6a\x75\x35\x4f\x57\x37\x56\x63\x51\x49\x57','\x57\x52\x78\x64\x4c\x38\x6b\x46\x57\x50\x74\x63\x54\x58\x64\x63\x4c\x77\x4b','\x69\x68\x4f\x49\x61\x31\x62\x30\x75\x68\x53','\x57\x4f\x31\x79\x6b\x6d\x6b\x32\x75\x53\x6b\x4a','\x41\x38\x6f\x47\x44\x6d\x6f\x52','\x57\x34\x52\x63\x56\x6d\x6f\x2b\x57\x36\x6c\x64\x4d\x78\x52\x63\x4c\x65\x4e\x64\x4b\x78\x78\x64\x4b\x38\x6b\x65','\x57\x34\x6a\x76\x6a\x72\x78\x63\x50\x59\x50\x49\x6f\x61','\x76\x43\x6b\x73\x57\x35\x62\x39','\x57\x50\x35\x4c\x57\x4f\x46\x63\x4a\x43\x6b\x56','\x57\x4f\x37\x64\x54\x4b\x4c\x4b\x57\x50\x74\x64\x4b\x30\x34','\x57\x35\x6c\x63\x55\x6d\x6b\x4d\x57\x35\x46\x63\x4e\x38\x6f\x6a\x68\x53\x6b\x30','\x57\x35\x70\x63\x50\x63\x43\x6b\x6f\x71','\x79\x67\x43\x66\x57\x36\x4b\x42\x70\x63\x65','\x74\x6d\x6b\x58\x57\x4f\x48\x70\x78\x38\x6b\x4d\x57\x52\x64\x64\x50\x71','\x78\x77\x47\x63\x43\x53\x6f\x7a\x57\x36\x6d\x69\x64\x4a\x76\x32\x57\x37\x44\x70','\x57\x52\x4b\x75\x7a\x43\x6b\x6b','\x57\x35\x33\x63\x52\x53\x6b\x6b\x57\x4f\x62\x4a\x64\x61','\x57\x36\x42\x63\x4c\x59\x54\x49\x57\x4f\x34','\x78\x6d\x6b\x56\x57\x4f\x30','\x57\x37\x64\x63\x4b\x5a\x62\x66\x57\x50\x56\x64\x55\x73\x39\x4d','\x57\x4f\x42\x64\x53\x4b\x4c\x34\x57\x50\x53','\x79\x43\x6f\x32\x72\x43\x6f\x36\x44\x76\x79\x59','\x57\x35\x64\x63\x4f\x5a\x6d\x68\x69\x57','\x57\x37\x6a\x39\x57\x4f\x56\x64\x53\x71','\x57\x4f\x33\x64\x50\x31\x6e\x30\x57\x51\x68\x64\x4c\x75\x6c\x64\x49\x71','\x57\x4f\x78\x64\x53\x53\x6f\x78\x6c\x43\x6f\x51\x6a\x53\x6f\x73\x57\x34\x38','\x57\x35\x7a\x47\x42\x73\x4f\x4f\x77\x78\x4b','\x41\x6d\x6b\x54\x43\x4c\x56\x64\x4c\x66\x46\x63\x55\x43\x6f\x49','\x57\x35\x52\x63\x53\x43\x6b\x4b\x57\x35\x56\x63\x48\x53\x6f\x67\x61\x38\x6b\x39','\x57\x50\x44\x4e\x57\x4f\x4e\x63\x48\x6d\x6b\x4a\x57\x36\x71','\x57\x51\x61\x71\x41\x38\x6b\x51\x57\x37\x53\x30\x46\x43\x6b\x4f','\x57\x34\x69\x4d\x6d\x57','\x57\x37\x42\x63\x4b\x53\x6b\x37\x57\x51\x7a\x6a\x70\x53\x6b\x6a\x44\x71','\x77\x38\x6b\x6e\x57\x51\x38\x4a\x57\x37\x47\x54','\x57\x4f\x78\x64\x4b\x4e\x48\x70\x61\x53\x6b\x79\x57\x35\x37\x64\x56\x47','\x57\x50\x44\x54\x57\x4f\x64\x63\x48\x6d\x6b\x59\x57\x37\x34','\x57\x51\x42\x64\x4a\x67\x4c\x64\x57\x51\x46\x64\x53\x77\x52\x64\x51\x61','\x57\x36\x69\x72\x57\x36\x46\x63\x53\x30\x56\x64\x52\x71','\x57\x51\x35\x50\x68\x66\x4c\x75\x57\x50\x68\x63\x4d\x57','\x57\x35\x75\x41\x6f\x57','\x72\x53\x6b\x38\x57\x51\x47\x30\x57\x36\x6d\x36\x57\x34\x46\x63\x49\x61','\x57\x35\x31\x78\x57\x52\x52\x64\x47\x75\x42\x64\x4c\x71\x31\x62','\x57\x36\x4b\x62\x57\x37\x2f\x63\x54\x31\x38','\x65\x64\x48\x61\x73\x53\x6b\x58\x57\x35\x62\x68\x57\x35\x79','\x57\x37\x31\x4e\x57\x51\x74\x64\x50\x33\x78\x64\x56\x74\x47','\x71\x64\x38\x4e\x57\x34\x30\x51\x76\x78\x30','\x71\x53\x6b\x51\x41\x75\x79','\x41\x47\x58\x72\x66\x38\x6f\x4a','\x57\x37\x37\x63\x49\x53\x6b\x30\x57\x36\x6c\x63\x54\x43\x6f\x4a\x6d\x53\x6b\x6f','\x57\x36\x30\x41\x57\x37\x33\x63\x48\x61','\x57\x52\x76\x37\x6b\x4e\x48\x73\x57\x4f\x6c\x63\x48\x57\x71','\x64\x64\x48\x2b\x61\x38\x6f\x30\x43\x43\x6b\x70\x57\x4f\x4b','\x57\x52\x57\x73\x7a\x43\x6f\x75\x57\x36\x71\x4a\x79\x71','\x6d\x47\x48\x38\x44\x53\x6b\x77\x57\x36\x31\x36\x57\x37\x30','\x57\x50\x4c\x4e\x57\x4f\x52\x63\x4d\x47','\x57\x34\x38\x42\x6d\x72\x78\x63\x52\x71','\x57\x34\x52\x63\x54\x6d\x6b\x42\x57\x50\x4e\x64\x49\x77\x64\x64\x50\x38\x6f\x41','\x57\x50\x4a\x64\x55\x43\x6f\x57\x6c\x38\x6f\x4b\x6b\x38\x6f\x65','\x6a\x53\x6b\x65\x57\x4f\x56\x64\x49\x4a\x47','\x57\x36\x4e\x63\x47\x5a\x33\x64\x54\x38\x6b\x30\x45\x30\x70\x63\x50\x57','\x57\x4f\x48\x7a\x6b\x38\x6b\x30\x74\x57','\x62\x5a\x74\x64\x54\x49\x5a\x63\x47\x38\x6f\x32\x57\x51\x71','\x57\x51\x64\x64\x4c\x38\x6b\x6f\x57\x50\x33\x63\x4f\x72\x33\x63\x49\x57','\x57\x50\x76\x4f\x57\x4f\x62\x70\x57\x34\x69','\x57\x35\x64\x63\x56\x58\x4f\x65','\x57\x36\x66\x65\x57\x37\x6c\x63\x4f\x65\x52\x64\x53\x62\x70\x64\x48\x47','\x7a\x31\x4c\x57\x6d\x61\x4b\x51\x72\x33\x79','\x65\x73\x37\x64\x4f\x59\x52\x63\x4e\x38\x6f\x47','\x57\x50\x5a\x64\x4a\x73\x78\x63\x51\x43\x6b\x41\x43\x72\x64\x63\x4e\x47','\x57\x50\x64\x64\x4b\x64\x6c\x63\x51\x43\x6b\x73','\x6d\x38\x6b\x78\x63\x53\x6b\x4a\x57\x51\x52\x63\x50\x33\x50\x44','\x77\x73\x47\x39\x57\x35\x6d','\x57\x35\x33\x63\x50\x6d\x6b\x66\x57\x50\x4a\x64\x53\x32\x57','\x65\x57\x72\x72\x6f\x6d\x6f\x51\x57\x34\x50\x4b\x65\x57','\x71\x38\x6b\x4b\x44\x61','\x57\x37\x37\x63\x47\x53\x6b\x56\x57\x52\x66\x6b\x6e\x57','\x63\x53\x6b\x30\x64\x6d\x6b\x52\x57\x50\x79','\x57\x35\x38\x77\x70\x47\x42\x64\x4b\x53\x6b\x68\x57\x51\x4a\x63\x49\x57','\x57\x36\x6d\x61\x57\x37\x42\x63\x55\x57','\x57\x36\x42\x63\x4d\x72\x6c\x64\x52\x6d\x6b\x31\x43\x4e\x75','\x57\x52\x52\x64\x49\x6d\x6f\x33\x67\x6d\x6f\x69\x63\x43\x6f\x56\x57\x37\x34','\x57\x35\x35\x55\x57\x4f\x72\x41\x57\x35\x43\x6f\x77\x6d\x6f\x79','\x57\x35\x56\x63\x56\x48\x30\x72\x67\x6d\x6b\x78\x78\x38\x6b\x41','\x57\x51\x4f\x37\x57\x4f\x2f\x64\x51\x43\x6b\x75\x73\x6d\x6f\x79\x57\x4f\x4b','\x6f\x6d\x6b\x73\x57\x50\x70\x64\x4e\x47','\x57\x51\x39\x71\x57\x52\x37\x63\x4d\x43\x6b\x50','\x57\x35\x70\x63\x52\x38\x6b\x6c\x57\x50\x33\x64\x51\x67\x68\x64\x55\x53\x6f\x44','\x57\x37\x68\x63\x48\x49\x7a\x49\x57\x50\x52\x64\x55\x61','\x57\x4f\x4f\x76\x41\x43\x6f\x56\x57\x4f\x58\x62\x57\x51\x4a\x63\x50\x47','\x57\x4f\x79\x4e\x57\x50\x75','\x6b\x30\x72\x5a\x57\x36\x33\x63\x53\x49\x66\x32\x57\x51\x4f','\x57\x4f\x42\x64\x4f\x76\x58\x37\x57\x50\x52\x64\x47\x30\x37\x64\x47\x71','\x62\x4a\x39\x62\x78\x38\x6b\x53\x57\x35\x31\x6e\x57\x34\x4f','\x70\x30\x53\x4a\x62\x4c\x66\x35\x71\x4d\x4f','\x57\x34\x2f\x64\x53\x53\x6b\x4d\x57\x37\x4c\x49\x57\x52\x70\x63\x50\x6d\x6b\x35','\x75\x64\x35\x36\x62\x6d\x6f\x58\x42\x43\x6b\x49\x57\x50\x75','\x57\x4f\x69\x67\x72\x53\x6b\x59\x57\x36\x33\x64\x54\x58\x44\x44','\x57\x35\x2f\x64\x48\x53\x6f\x32\x57\x50\x79','\x57\x51\x37\x64\x47\x32\x58\x6e\x64\x43\x6b\x4d\x57\x34\x78\x64\x52\x47','\x68\x38\x6b\x37\x57\x51\x46\x64\x53\x47\x4c\x6b\x74\x77\x57','\x76\x53\x6b\x58\x57\x50\x35\x76\x74\x6d\x6b\x51','\x57\x4f\x6a\x79\x6b\x38\x6b\x30','\x57\x4f\x2f\x64\x4d\x4a\x46\x63\x56\x38\x6b\x72\x78\x71','\x42\x6d\x6f\x33\x44\x43\x6f\x58','\x66\x4a\x78\x64\x52\x74\x6c\x63\x54\x43\x6f\x57\x57\x52\x7a\x2f','\x57\x4f\x4c\x50\x57\x50\x4e\x63\x53\x6d\x6b\x59\x57\x36\x72\x58\x57\x36\x69','\x61\x73\x58\x43\x72\x57','\x57\x35\x38\x52\x57\x34\x56\x63\x4d\x4d\x68\x64\x4a\x73\x37\x64\x51\x71','\x57\x34\x70\x63\x50\x48\x37\x64\x47\x43\x6b\x74\x71\x75\x33\x63\x4b\x47','\x57\x50\x50\x4b\x57\x4f\x6c\x63\x47\x43\x6b\x4e\x57\x37\x76\x2f','\x57\x37\x74\x63\x47\x53\x6b\x73\x57\x36\x75','\x46\x6d\x6f\x39\x79\x53\x6f\x34\x45\x31\x53\x4b\x57\x51\x6d','\x57\x52\x35\x30\x62\x38\x6b\x71\x7a\x43\x6b\x63','\x57\x36\x69\x68\x57\x37\x42\x63\x47\x61\x43\x4d\x70\x53\x6b\x35','\x77\x38\x6b\x5a\x7a\x68\x42\x64\x49\x71','\x63\x74\x76\x46\x6c\x6d\x6b\x74\x57\x52\x34\x6c\x67\x71','\x74\x38\x6b\x68\x57\x34\x76\x36\x57\x4f\x75\x6c\x57\x51\x6d\x54','\x74\x63\x66\x2b\x68\x53\x6f\x33','\x66\x53\x6f\x79\x63\x64\x53','\x41\x53\x6f\x75\x45\x6d\x6f\x4d\x43\x78\x79\x34\x57\x52\x6d','\x57\x36\x43\x70\x57\x37\x56\x63\x47\x72\x65\x72\x61\x53\x6b\x35','\x57\x36\x75\x44\x57\x36\x56\x63\x47\x62\x6d\x47','\x57\x35\x76\x57\x45\x64\x71\x57','\x57\x34\x70\x63\x56\x38\x6b\x65\x57\x4f\x6a\x56\x64\x6d\x6b\x4c\x71\x57','\x65\x43\x6f\x75\x67\x6d\x6b\x6c\x57\x35\x42\x63\x49\x6d\x6b\x36\x57\x51\x47','\x57\x4f\x4a\x64\x4a\x64\x46\x63\x51\x38\x6b\x42','\x57\x37\x5a\x63\x48\x4a\x52\x64\x56\x43\x6b\x49','\x57\x50\x78\x64\x55\x6d\x6f\x61\x6a\x61','\x57\x51\x53\x2f\x7a\x43\x6b\x64\x57\x36\x52\x64\x49\x4a\x50\x55','\x61\x38\x6f\x70\x64\x64\x46\x63\x52\x32\x5a\x63\x49\x76\x6d','\x6b\x38\x6f\x55\x63\x43\x6b\x4d\x57\x36\x70\x63\x4f\x38\x6b\x6e','\x57\x35\x44\x37\x57\x50\x64\x64\x55\x33\x6d','\x71\x49\x57\x58\x57\x34\x57\x54\x78\x4e\x46\x63\x4e\x71','\x57\x34\x37\x63\x52\x53\x6b\x68\x57\x50\x33\x64\x47\x4e\x64\x64\x52\x6d\x6f\x6c','\x57\x34\x76\x53\x43\x73\x6d\x54','\x57\x35\x30\x53\x6b\x71\x37\x64\x4b\x43\x6b\x66\x57\x4f\x71','\x57\x37\x37\x64\x53\x53\x6b\x37\x57\x37\x58\x69\x57\x51\x56\x63\x4e\x53\x6b\x2b','\x62\x43\x6b\x70\x66\x38\x6b\x51\x57\x51\x70\x63\x54\x68\x66\x75','\x57\x4f\x4a\x64\x56\x43\x6b\x2b\x57\x52\x33\x63\x54\x63\x52\x63\x4f\x66\x57','\x61\x49\x48\x44\x78\x71','\x57\x35\x5a\x64\x4a\x38\x6f\x32\x57\x50\x30\x6d\x6a\x32\x7a\x53','\x57\x4f\x31\x45\x69\x53\x6b\x34\x71\x38\x6b\x49','\x57\x37\x6c\x63\x49\x6d\x6b\x70\x57\x37\x70\x63\x51\x57','\x57\x51\x72\x37\x70\x4b\x6e\x64\x57\x50\x74\x63\x4f\x71\x4f','\x57\x35\x33\x63\x50\x71\x4f\x6e\x67\x6d\x6b\x68\x7a\x43\x6b\x44','\x57\x50\x58\x70\x57\x4f\x6e\x46\x57\x35\x4f','\x57\x34\x66\x4b\x42\x49\x4b\x4e','\x6b\x38\x6f\x52\x6f\x6d\x6b\x36\x57\x37\x65','\x57\x35\x5a\x64\x4e\x53\x6f\x30\x57\x50\x30','\x57\x52\x72\x32\x6e\x65\x48\x64','\x57\x35\x6c\x63\x50\x6d\x6b\x6a\x57\x50\x78\x64\x55\x68\x46\x64\x52\x61','\x61\x53\x6b\x65\x65\x6d\x6f\x47\x57\x4f\x4a\x63\x56\x4e\x62\x75','\x6b\x71\x66\x54','\x57\x36\x4e\x64\x54\x53\x6b\x38\x57\x36\x76\x69\x57\x51\x56\x63\x53\x53\x6b\x59','\x46\x33\x53\x2b\x57\x37\x65\x46\x70\x64\x61','\x57\x37\x46\x63\x48\x4a\x65\x58\x6f\x38\x6b\x32\x41\x6d\x6b\x32','\x70\x49\x48\x70\x74\x43\x6b\x47\x57\x34\x54\x42','\x57\x36\x6d\x68\x57\x37\x6c\x63\x54\x31\x56\x64\x56\x71','\x57\x4f\x35\x43\x6b\x53\x6b\x2f\x72\x61','\x57\x36\x57\x67\x57\x37\x2f\x63\x50\x4c\x4f','\x57\x36\x53\x66\x57\x37\x2f\x63\x52\x31\x5a\x64\x55\x62\x2f\x64\x47\x57','\x69\x74\x6c\x64\x54\x5a\x64\x63\x47\x43\x6f\x47','\x78\x6d\x6b\x59\x57\x4f\x54\x75\x71\x38\x6b\x57\x57\x52\x74\x64\x55\x57','\x57\x37\x70\x63\x49\x6d\x6b\x6d\x57\x37\x68\x63\x4f\x53\x6f\x4b','\x68\x59\x35\x45\x6d\x38\x6b\x6a\x57\x52\x69\x48\x68\x71','\x57\x50\x6c\x64\x48\x6d\x6b\x6a\x57\x52\x6c\x63\x47\x71','\x57\x36\x56\x63\x4e\x63\x6e\x5a\x57\x50\x46\x64\x48\x63\x57','\x77\x6d\x6b\x75\x57\x34\x62\x47\x57\x50\x6d\x79\x57\x52\x69\x79','\x65\x53\x6b\x66\x61\x53\x6b\x4f\x57\x4f\x52\x63\x4e\x68\x50\x68','\x64\x77\x76\x47\x57\x35\x46\x63\x49\x62\x79','\x77\x74\x75\x37\x57\x35\x69\x75\x75\x78\x4e\x63\x48\x47','\x57\x34\x44\x51\x43\x5a\x69\x4f\x75\x33\x6c\x64\x4f\x61','\x57\x4f\x4c\x4e\x57\x4f\x6c\x63\x48\x47','\x57\x36\x53\x42\x57\x36\x5a\x63\x4d\x71\x65\x36\x70\x53\x6b\x2f','\x65\x73\x37\x64\x53\x64\x46\x63\x48\x6d\x6f\x30','\x57\x50\x78\x64\x52\x43\x6b\x2b\x57\x51\x42\x63\x47\x73\x4a\x63\x56\x71','\x57\x50\x6e\x73\x70\x6d\x6b\x48\x77\x6d\x6b\x2f\x57\x37\x58\x38','\x57\x35\x6a\x67\x75\x73\x34\x67','\x75\x73\x39\x36\x61\x38\x6f\x52\x43\x61','\x41\x77\x69\x61\x61\x4b\x6d\x61\x69\x71','\x74\x49\x76\x2f\x66\x43\x6f\x4f\x42\x43\x6f\x6f','\x57\x37\x6c\x64\x56\x43\x6b\x53\x57\x37\x50\x6b\x57\x52\x78\x63\x52\x43\x6b\x59','\x57\x4f\x5a\x64\x50\x4b\x35\x4e\x57\x4f\x64\x64\x47\x68\x74\x64\x4b\x71','\x61\x57\x35\x67\x6d\x43\x6f\x41\x57\x35\x62\x4c\x61\x57','\x6d\x63\x6a\x51\x61\x53\x6f\x39\x57\x37\x39\x63\x6f\x71','\x65\x4e\x34\x4a\x70\x38\x6f\x4e\x45\x38\x6b\x6d\x57\x4f\x70\x63\x54\x71','\x57\x34\x62\x6a\x44\x63\x47\x53\x45\x78\x70\x64\x50\x47','\x57\x50\x71\x46\x45\x43\x6f\x2b\x57\x50\x44\x67\x57\x52\x74\x63\x52\x71','\x79\x33\x61\x56\x66\x66\x47\x66\x6f\x73\x75','\x42\x43\x6b\x52\x57\x36\x50\x44\x57\x52\x75\x30\x57\x4f\x43\x5a','\x6b\x31\x31\x75\x62\x48\x48\x4b\x43\x76\x4f','\x43\x43\x6b\x4d\x57\x51\x75\x58','\x42\x43\x6f\x57\x46\x53\x6f\x37\x43\x76\x53\x41\x57\x51\x4b','\x65\x38\x6b\x70\x65\x38\x6b\x51','\x57\x50\x4a\x64\x48\x67\x48\x6d\x65\x43\x6b\x77\x57\x35\x37\x64\x56\x47','\x7a\x4d\x79\x2f\x57\x36\x47','\x75\x68\x30\x2b\x57\x37\x61\x46\x6d\x74\x43','\x57\x34\x75\x4e\x57\x34\x46\x63\x55\x5a\x65\x44\x6d\x43\x6b\x65','\x57\x50\x75\x6f\x45\x6d\x6f\x52\x57\x50\x4c\x66\x57\x4f\x64\x63\x52\x71','\x57\x34\x42\x64\x47\x38\x6f\x48\x57\x4f\x61','\x57\x35\x78\x63\x55\x43\x6b\x72','\x67\x38\x6b\x56\x57\x51\x34\x59\x57\x36\x79\x2f\x57\x35\x42\x63\x4e\x61','\x73\x43\x6b\x68\x57\x34\x7a\x48\x57\x50\x34','\x57\x34\x66\x33\x42\x59\x4b\x37','\x57\x34\x65\x4f\x6c\x58\x70\x64\x4c\x38\x6b\x6b\x57\x50\x56\x63\x54\x71','\x57\x4f\x43\x54\x57\x50\x52\x64\x51\x6d\x6b\x45\x72\x57','\x57\x35\x5a\x63\x55\x6d\x6b\x46\x57\x4f\x72\x5a\x68\x6d\x6b\x46\x77\x61','\x7a\x48\x58\x75\x70\x6d\x6f\x73\x77\x38\x6b\x5a\x57\x51\x75','\x67\x59\x6a\x6b\x74\x6d\x6b\x50\x57\x37\x48\x6c\x57\x34\x57','\x57\x50\x4a\x64\x4a\x32\x6d','\x57\x50\x78\x63\x54\x38\x6f\x7a\x57\x50\x70\x64\x55\x68\x68\x64\x56\x53\x6b\x62','\x68\x68\x54\x4c\x61\x57\x69','\x68\x59\x6e\x45\x78\x6d\x6b\x58\x57\x36\x7a\x43\x57\x35\x30','\x57\x52\x34\x45\x45\x38\x6b\x45\x57\x36\x4f\x30','\x57\x37\x78\x63\x4b\x5a\x76\x34','\x64\x53\x6b\x79\x62\x53\x6b\x6d\x57\x4f\x46\x63\x53\x67\x31\x61','\x61\x78\x66\x79\x69\x71','\x57\x4f\x6d\x7a\x57\x52\x46\x64\x52\x38\x6b\x31','\x57\x36\x2f\x63\x4c\x43\x6b\x65\x57\x37\x5a\x63\x4f\x53\x6f\x31\x6b\x61','\x57\x50\x70\x64\x4f\x76\x76\x48\x57\x50\x5a\x64\x4b\x65\x37\x64\x4c\x57','\x69\x78\x79\x32','\x76\x4a\x4c\x36\x66\x38\x6f\x48','\x57\x50\x37\x64\x4b\x4d\x61\x70\x62\x53\x6b\x77\x57\x34\x78\x64\x56\x61','\x57\x4f\x54\x39\x57\x50\x33\x63\x49\x38\x6b\x73\x57\x37\x6e\x53\x57\x37\x43','\x79\x6d\x6b\x31\x57\x52\x47\x33\x57\x52\x71','\x57\x36\x4e\x63\x47\x5a\x33\x64\x54\x38\x6b\x30\x45\x31\x70\x63\x4f\x57','\x46\x68\x30\x57\x57\x36\x38\x70\x6c\x61','\x57\x52\x71\x75\x46\x43\x6b\x6e\x57\x37\x4f\x30\x46\x43\x6b\x36','\x77\x53\x6b\x55\x57\x50\x76\x70\x73\x6d\x6b\x54\x57\x51\x78\x64\x4c\x57','\x57\x34\x65\x58\x57\x34\x56\x63\x56\x73\x79\x6c\x69\x6d\x6b\x67','\x57\x34\x4b\x42\x63\x47\x74\x63\x55\x49\x6a\x49\x6f\x61','\x57\x50\x64\x64\x52\x43\x6b\x53\x57\x52\x68\x63\x48\x74\x33\x63\x51\x57','\x57\x37\x76\x32\x57\x4f\x4e\x64\x53\x67\x6d','\x57\x50\x7a\x54\x57\x50\x33\x63\x4b\x6d\x6b\x4e\x57\x37\x66\x58','\x57\x4f\x4b\x69\x79\x38\x6f\x50\x57\x50\x66\x67\x57\x51\x42\x63\x50\x61','\x6a\x5a\x4c\x71\x69\x43\x6b\x66\x57\x51\x71\x33','\x57\x51\x4f\x43\x57\x52\x70\x64\x49\x43\x6b\x30\x41\x6d\x6f\x58\x57\x50\x6d','\x57\x4f\x4e\x63\x4a\x78\x39\x65\x65\x6d\x6b\x6d\x57\x34\x2f\x64\x51\x61','\x57\x35\x78\x63\x54\x6d\x6b\x43\x57\x4f\x68\x64\x51\x68\x68\x64\x47\x6d\x6f\x68','\x6d\x58\x6a\x2b\x45\x38\x6b\x6b\x57\x36\x39\x48\x57\x37\x57','\x57\x4f\x6a\x35\x57\x50\x35\x73\x57\x34\x31\x67\x75\x53\x6f\x72','\x57\x34\x78\x63\x4d\x74\x57\x71\x77\x6d\x6b\x75\x57\x36\x42\x64\x4a\x67\x78\x64\x54\x76\x43','\x72\x32\x50\x55\x6a\x4a\x58\x7a\x77\x4d\x47','\x61\x57\x35\x67\x6e\x6d\x6f\x7a\x57\x34\x4f','\x79\x68\x38\x30\x57\x36\x4b\x43\x6d\x59\x56\x64\x54\x47','\x61\x38\x6b\x74\x64\x38\x6b\x37\x57\x4f\x34','\x57\x50\x68\x64\x54\x4b\x4c\x4e\x57\x50\x52\x64\x4d\x4c\x4a\x64\x47\x61','\x57\x51\x42\x64\x4a\x67\x50\x66\x57\x52\x52\x64\x4f\x4d\x6c\x64\x4f\x71','\x57\x4f\x6a\x42\x69\x6d\x6b\x59\x78\x61','\x42\x76\x6e\x36','\x70\x57\x7a\x49\x77\x57','\x41\x38\x6b\x43\x57\x52\x34\x4b\x57\x51\x65\x4e\x70\x38\x6b\x57','\x77\x6d\x6b\x4f\x57\x4f\x54\x78\x74\x6d\x6b\x33\x57\x52\x46\x64\x50\x57','\x57\x35\x42\x63\x50\x6d\x6b\x67\x57\x50\x42\x64\x51\x77\x30','\x57\x50\x48\x35\x57\x4f\x4c\x77\x57\x37\x58\x69\x78\x57','\x57\x34\x75\x30\x57\x35\x30\x6b\x57\x50\x50\x6d\x44\x38\x6f\x47\x57\x52\x57\x63\x73\x47','\x57\x50\x61\x37\x57\x51\x2f\x64\x54\x6d\x6b\x41\x74\x6d\x6f\x42\x57\x50\x75','\x57\x4f\x70\x64\x52\x53\x6f\x75\x6f\x61','\x57\x35\x52\x64\x49\x6d\x6f\x58\x57\x4f\x57\x69\x6d\x76\x58\x55','\x57\x4f\x37\x64\x49\x5a\x46\x63\x55\x6d\x6b\x6c\x71\x61','\x6b\x43\x6f\x56\x6f\x43\x6b\x58\x57\x36\x34','\x57\x37\x30\x68\x6c\x43\x6f\x77\x57\x37\x38\x30\x44\x38\x6b\x4a','\x63\x43\x6b\x73\x62\x53\x6b\x33','\x57\x34\x46\x64\x4e\x38\x6f\x39','\x57\x36\x52\x63\x4c\x38\x6b\x79\x57\x36\x6c\x63\x54\x43\x6f\x5a\x70\x43\x6b\x61','\x57\x34\x65\x6e\x57\x37\x33\x63\x50\x47','\x57\x52\x4a\x64\x51\x72\x4e\x63\x47\x43\x6b\x2f\x79\x59\x64\x63\x54\x71','\x65\x6d\x6f\x65\x63\x59\x37\x63\x4f\x31\x42\x63\x4d\x31\x38','\x43\x4c\x4c\x53\x41\x71\x43\x48\x74\x77\x6d','\x57\x52\x74\x64\x54\x4b\x6a\x53\x69\x6d\x6b\x50\x57\x37\x78\x64\x49\x57','\x57\x37\x46\x64\x56\x6d\x6b\x53\x57\x37\x72\x74\x57\x51\x5a\x63\x52\x53\x6b\x35','\x57\x35\x43\x4f\x6d\x71\x56\x64\x4e\x6d\x6b\x6b\x57\x50\x74\x63\x47\x71','\x57\x4f\x33\x64\x4a\x74\x4e\x63\x55\x53\x6b\x78\x76\x58\x52\x63\x49\x61','\x79\x43\x6f\x5a\x44\x6d\x6f\x4d\x7a\x57','\x57\x52\x46\x64\x54\x4b\x6a\x4a','\x7a\x48\x76\x6c\x69\x53\x6f\x6c\x73\x6d\x6b\x4f\x57\x52\x34','\x61\x4a\x39\x68\x72\x61','\x57\x34\x31\x52\x45\x73\x6d\x58\x44\x78\x4f','\x64\x49\x6a\x65\x45\x30\x70\x64\x51\x63\x38\x31','\x57\x52\x4a\x64\x4f\x61\x78\x63\x4d\x6d\x6b\x53\x44\x4a\x37\x63\x54\x57','\x76\x4c\x71\x70\x6a\x67\x69','\x6f\x53\x6b\x65\x57\x51\x56\x64\x4e\x59\x39\x35\x44\x71','\x57\x37\x42\x63\x4a\x43\x6b\x4c\x57\x51\x37\x64\x49\x76\x46\x64\x4e\x53\x6f\x54','\x79\x77\x65\x4f\x69\x66\x61\x76\x6d\x61','\x57\x50\x71\x6b\x72\x6d\x6b\x59\x57\x36\x6c\x64\x51\x71\x66\x67','\x64\x4d\x48\x61\x57\x34\x52\x63\x47\x57\x65','\x7a\x78\x57\x47\x68\x4b\x75\x69\x6f\x57\x75','\x57\x37\x37\x63\x47\x38\x6b\x6b\x57\x36\x6c\x63\x50\x47','\x43\x32\x75\x5a\x67\x76\x38\x67','\x57\x50\x31\x54\x57\x4f\x2f\x63\x4c\x38\x6b\x5a\x57\x36\x72\x58\x57\x37\x61','\x79\x75\x72\x54\x41\x57\x53\x52\x78\x64\x57','\x57\x37\x42\x63\x49\x43\x6b\x42\x57\x36\x70\x63\x53\x38\x6f\x6a\x6b\x6d\x6b\x63','\x75\x6d\x6b\x56\x57\x50\x48\x78\x77\x6d\x6b\x4e\x57\x52\x74\x64\x55\x57','\x69\x48\x50\x4f\x77\x4e\x46\x64\x4e\x62\x75\x77','\x57\x4f\x6c\x64\x4c\x68\x39\x69\x64\x38\x6b\x45','\x66\x33\x34\x54\x72\x53\x6b\x32\x6c\x38\x6f\x78\x57\x4f\x2f\x63\x51\x58\x5a\x63\x56\x38\x6f\x66\x57\x37\x75','\x57\x34\x4e\x63\x52\x53\x6b\x67','\x41\x68\x71\x47\x66\x66\x71\x74\x6b\x57','\x57\x50\x37\x63\x52\x6d\x6b\x63\x57\x4f\x72\x51\x63\x43\x6b\x30\x76\x57','\x78\x75\x79\x6a\x57\x34\x69\x4c\x63\x58\x42\x64\x47\x61','\x44\x38\x6b\x77\x57\x50\x47\x68\x57\x35\x57\x42\x57\x36\x5a\x63\x52\x47','\x42\x38\x6f\x54\x7a\x43\x6f\x47\x45\x30\x43\x2b\x57\x52\x57','\x64\x30\x39\x56\x57\x36\x4a\x63\x50\x57','\x79\x61\x75\x79\x57\x37\x43\x66\x44\x30\x46\x63\x50\x57','\x57\x52\x6d\x76\x71\x38\x6b\x71\x57\x36\x65\x32\x42\x43\x6b\x39','\x57\x34\x65\x71\x6f\x62\x4e\x63\x55\x59\x61','\x57\x50\x44\x4b\x57\x4f\x6a\x73\x57\x35\x62\x6a\x44\x6d\x6f\x62','\x7a\x38\x6b\x30\x57\x35\x72\x34\x57\x52\x53','\x6a\x43\x6f\x5a\x6f\x61','\x44\x4b\x35\x43\x45\x57\x53\x58\x73\x78\x47','\x57\x36\x68\x63\x47\x53\x6b\x5a\x57\x51\x31\x7a\x70\x6d\x6b\x73\x43\x61','\x70\x53\x6b\x30\x57\x4f\x6c\x64\x4a\x63\x39\x52','\x67\x47\x35\x6d\x6d\x47','\x6e\x38\x6f\x4a\x70\x6d\x6b\x36\x57\x35\x6c\x63\x4f\x43\x6b\x41\x57\x50\x34','\x57\x4f\x4a\x64\x55\x53\x6b\x49\x57\x52\x4a\x63\x4b\x64\x56\x63\x4a\x65\x43','\x6f\x62\x48\x49\x76\x77\x43','\x57\x52\x4c\x4e\x57\x4f\x64\x64\x50\x4e\x74\x64\x54\x73\x35\x57','\x67\x71\x50\x67','\x57\x36\x2f\x63\x4e\x73\x6e\x5a\x57\x4f\x6d','\x57\x37\x54\x57\x57\x50\x57','\x57\x36\x44\x61\x71\x48\x75\x44\x41\x66\x4e\x64\x4b\x47','\x75\x64\x35\x50\x67\x43\x6f\x51\x45\x71','\x57\x34\x6d\x64\x57\x37\x6c\x63\x4d\x71\x65','\x65\x43\x6f\x6f\x66\x74\x53','\x57\x51\x53\x43\x57\x37\x33\x63\x4d\x47\x71\x48\x64\x38\x6b\x34','\x57\x4f\x76\x73\x69\x38\x6b\x4c\x76\x47','\x63\x43\x6f\x65\x66\x49\x30','\x68\x57\x48\x75\x6e\x43\x6f\x71\x57\x35\x4f','\x57\x4f\x50\x53\x43\x59\x75\x4d\x76\x32\x5a\x64\x56\x57','\x6f\x61\x62\x51\x72\x68\x42\x64\x49\x59\x43\x6d','\x57\x52\x35\x45\x57\x51\x68\x63\x52\x38\x6b\x71\x57\x35\x6e\x67\x57\x35\x57','\x7a\x68\x34\x56\x66\x77\x34\x74\x70\x74\x61','\x67\x71\x35\x75\x6a\x43\x6f\x71\x57\x34\x58\x4c','\x78\x6d\x6b\x53\x57\x50\x50\x76\x77\x43\x6b\x51\x57\x52\x6c\x64\x4e\x61','\x57\x36\x37\x63\x49\x6d\x6b\x52\x57\x51\x37\x64\x49\x75\x74\x64\x4c\x53\x6f\x49','\x57\x50\x56\x64\x49\x4a\x4a\x63\x52\x38\x6b\x6b\x77\x48\x64\x63\x4c\x61','\x44\x53\x6b\x33\x57\x51\x38\x53\x57\x51\x6d\x53','\x57\x36\x75\x41\x57\x36\x5a\x63\x4a\x62\x4b\x2b\x66\x43\x6b\x34','\x57\x52\x72\x55\x6c\x30\x6a\x69\x57\x50\x43','\x57\x37\x71\x70\x57\x36\x52\x63\x4d\x48\x65','\x6a\x67\x47\x77\x6d\x76\x75','\x57\x36\x57\x4d\x57\x37\x37\x63\x50\x30\x79','\x57\x37\x5a\x63\x49\x6d\x6b\x66\x57\x36\x64\x63\x4f\x53\x6f\x4b\x6c\x38\x6b\x6d','\x61\x59\x6e\x6e\x73\x6d\x6b\x58\x57\x35\x58\x6d','\x42\x57\x7a\x77\x6c\x38\x6f\x71\x74\x6d\x6b\x47\x57\x52\x4b','\x57\x34\x62\x31\x57\x4f\x5a\x64\x55\x71','\x57\x50\x61\x4d\x57\x4f\x30'];_0x5313=function(){return _0x837c7;};return _0x5313();}function scanProviderTextMetadata(_0x46f03a,_0x3c8fd3){const _0x4458ea=_0x1a83f6,_0x1220c8=/"id"\s*:\s*"((?:resp_|chatcmpl-|msg_)[^"]+)"/[_0x4458ea(0x71f,'\x21\x64\x4f\x62')](_0x3c8fd3);if(_0x1220c8?.[-0x1a00+-0xebc+0x28bd])_0x46f03a['\x72\x65\x73\x70\x6f\x6e\x73\x65'+_0x4458ea(0x4a1,'\x57\x6d\x76\x52')]=_0x1220c8[-0x43*0x25+-0xa84+0x3*0x6bc];const _0x3bd1d5=/"status"\s*:\s*"(completed|failed|incomplete|cancelled)"/[_0x4458ea(0x4b2,'\x77\x40\x4d\x76')](_0x3c8fd3);if(_0x3bd1d5?.[0x399*-0x3+0x697+0x435])_0x46f03a['\x73\x74\x6f\x70\x5f\x72\x65\x61'+_0x4458ea(0x4be,'\x74\x31\x42\x29')]=_0x3bd1d5[0xab4*-0x2+-0x2699+0x3c02];const _0x181239=/"finish_reason"\s*:\s*("(?:[^"]+)"|null)/[_0x4458ea(0x2ad,'\x64\x77\x74\x2a')](_0x3c8fd3);if(_0x181239?.[0x16c5+0x1d32*-0x1+0x66e])_0x46f03a['\x73\x74\x6f\x70\x5f\x72\x65\x61'+_0x4458ea(0x7ad,'\x44\x4a\x71\x76')]=_0x181239[-0x1faf+-0x2061*-0x1+-0x3b*0x3]===_0x4458ea(0x22f,'\x51\x76\x53\x5a')?null:_0x181239[0x610+-0x206f+0x1a60][_0x4458ea(0x5d6,'\x28\x39\x6a\x36')](-0xed*0x13+-0x1*0x12fb+0x2493,-(-0xc32*-0x1+-0x2073+-0xa21*-0x2));setProviderTextUsage(_0x46f03a,_0x4458ea(0x877,'\x47\x45\x4d\x32')+'\x6b\x65\x6e\x73',/"input_tokens"\s*:\s*(\d+)/[_0x4458ea(0x412,'\x5e\x25\x6e\x55')](_0x3c8fd3)),setProviderTextUsage(_0x46f03a,_0x4458ea(0x224,'\x63\x6b\x2a\x26')+_0x4458ea(0x4bb,'\x64\x77\x74\x2a'),/"output_tokens"\s*:\s*(\d+)/['\x65\x78\x65\x63'](_0x3c8fd3)),setProviderTextUsage(_0x46f03a,_0x4458ea(0x724,'\x26\x49\x5d\x5d')+_0x4458ea(0x89a,'\x49\x56\x70\x4d'),/"prompt_tokens"\s*:\s*(\d+)/[_0x4458ea(0x758,'\x23\x7a\x48\x73')](_0x3c8fd3)),setProviderTextUsage(_0x46f03a,_0x4458ea(0x339,'\x4a\x40\x4d\x51')+_0x4458ea(0x306,'\x7a\x46\x50\x4e'),/"completion_tokens"\s*:\s*(\d+)/[_0x4458ea(0x8b2,'\x4b\x50\x6f\x48')](_0x3c8fd3));}function responseBodyIndicatesTruncation(_0x5b4ee7){const _0x3b0136=_0x1a83f6;return isRecord(_0x5b4ee7)&&(_0x5b4ee7[_0x3b0136(0x7b0,'\x78\x5b\x47\x72')+_0x3b0136(0x305,'\x45\x31\x75\x66')+_0x3b0136(0x74b,'\x78\x58\x46\x63')+'\x64']===!![]||_0x5b4ee7[_0x3b0136(0x397,'\x64\x77\x74\x2a')+_0x3b0136(0x914,'\x45\x31\x75\x66')+_0x3b0136(0x963,'\x49\x56\x70\x4d')]===!![]||_0x5b4ee7[_0x3b0136(0x3f6,'\x63\x6b\x2a\x26')+'\x64']===!![]);}function copyDefinedFields(_0x5f4f52,_0x1b34b6){const _0x101806={};for(const _0x34b720 of _0x1b34b6)if(_0x5f4f52[_0x34b720]!==undefined)_0x101806[_0x34b720]=_0x5f4f52[_0x34b720];return _0x101806;}function semanticToolItem(_0x52047c){const _0x2b634a=_0x1a83f6;if(!isRecord(_0x52047c))return undefined;const _0x2e1e0a=typeof _0x52047c[_0x2b634a(0x958,'\x6d\x78\x4f\x5a')]===_0x2b634a(0x8a6,'\x74\x31\x42\x29')?_0x52047c[_0x2b634a(0x340,'\x48\x42\x51\x46')]:'',_0x5ef512=typeof _0x52047c[_0x2b634a(0x628,'\x58\x31\x78\x39')]==='\x73\x74\x72\x69\x6e\x67'?_0x52047c['\x72\x6f\x6c\x65']:'',_0x1f03ca=isRecord(_0x52047c[_0x2b634a(0x742,'\x42\x6f\x57\x21')])?_0x52047c[_0x2b634a(0x43a,'\x52\x23\x32\x21')]:undefined,_0x5894e6=_0x2e1e0a===_0x2b634a(0x3cb,'\x6d\x51\x71\x51')+_0x2b634a(0x25b,'\x42\x6f\x57\x21')||_0x2e1e0a==='\x74\x6f\x6f\x6c\x5f\x75\x73\x65'||_0x2e1e0a===_0x2b634a(0x255,'\x47\x45\x4d\x32')+_0x2b634a(0x30d,'\x4b\x40\x5b\x51')+_0x2b634a(0x699,'\x73\x53\x6c\x4e')||_0x2e1e0a===_0x2b634a(0x47a,'\x50\x25\x42\x51')+_0x2b634a(0x905,'\x4a\x40\x4d\x51')||_0x5ef512===_0x2b634a(0x40f,'\x31\x75\x65\x6f')||Array[_0x2b634a(0x3e7,'\x66\x54\x6a\x5e')](_0x52047c[_0x2b634a(0x3a7,'\x37\x4c\x29\x65')+'\x6c\x73'])||_0x1f03ca!==undefined;if(!_0x5894e6)return undefined;const _0x1ffd77=copyDefinedFields(_0x52047c,['\x69\x64',_0x2b634a(0x8f5,'\x63\x6b\x2a\x26'),_0x2b634a(0x2a7,'\x49\x56\x70\x4d'),_0x2b634a(0x2d8,'\x4b\x40\x5b\x51'),_0x2b634a(0x5c7,'\x58\x31\x78\x39')+_0x2b634a(0x6d2,'\x48\x42\x51\x46'),_0x2b634a(0x7d9,'\x57\x6d\x76\x52')+_0x2b634a(0x23a,'\x4b\x4d\x4a\x30'),'\x6e\x61\x6d\x65',_0x2b634a(0x6c9,'\x23\x7a\x48\x73')+'\x73',_0x2b634a(0x5b4,'\x69\x44\x5e\x35'),_0x2b634a(0x66e,'\x54\x5b\x67\x52'),_0x2b634a(0x5a7,'\x45\x31\x75\x66'),_0x2b634a(0x4bf,'\x33\x28\x62\x59'),'\x69\x6e\x64\x65\x78','\x6f\x75\x74\x70\x75\x74\x5f\x69'+_0x2b634a(0x7a2,'\x31\x75\x65\x6f')]);if(Array[_0x2b634a(0x77a,'\x74\x31\x42\x29')](_0x52047c['\x74\x6f\x6f\x6c\x5f\x63\x61\x6c'+'\x6c\x73']))_0x1ffd77[_0x2b634a(0x538,'\x24\x6f\x4f\x58')+'\x6c\x73']=_0x52047c[_0x2b634a(0x3ee,'\x48\x42\x51\x46')+'\x6c\x73'];if(_0x1f03ca)_0x1ffd77[_0x2b634a(0x94a,'\x70\x48\x33\x5a')]=copyDefinedFields(_0x1f03ca,[_0x2b634a(0x633,'\x47\x45\x4d\x32'),_0x2b634a(0x389,'\x55\x66\x35\x74')+'\x73']);return Object[_0x2b634a(0x7a8,'\x4b\x40\x5b\x51')](_0x1ffd77)[_0x2b634a(0x394,'\x26\x49\x5d\x5d')]>-0x4*0x147+-0x1*-0x1dc3+-0x1*0x18a7?_0x1ffd77:undefined;}function semanticResponse(_0x34e7bf){const _0x35922d=_0x1a83f6;if(!isRecord(_0x34e7bf))return undefined;const _0x268446=copyDefinedFields(_0x34e7bf,['\x69\x64',_0x35922d(0x980,'\x73\x53\x6c\x4e'),_0x35922d(0x78e,'\x4b\x40\x5b\x51'),_0x35922d(0x270,'\x47\x45\x4d\x32')+_0x35922d(0x235,'\x23\x7a\x48\x73')+'\x6c\x73']),_0x575776=Array[_0x35922d(0x3e2,'\x41\x45\x5a\x75')](_0x34e7bf[_0x35922d(0x51a,'\x37\x4c\x29\x65')])?_0x34e7bf[_0x35922d(0x3e5,'\x77\x40\x4d\x76')]['\x6d\x61\x70'](_0x515d8a=>semanticToolItem(_0x515d8a))[_0x35922d(0x41d,'\x63\x6b\x2a\x26')](_0x93a925=>_0x93a925!==undefined):[];if(_0x575776[_0x35922d(0x4cd,'\x44\x4a\x71\x76')]>-0x841+0xbcf+0x23*-0x1a)_0x268446[_0x35922d(0x6c5,'\x26\x6d\x46\x41')]=_0x575776;if(isRecord(_0x34e7bf['\x65\x72\x72\x6f\x72']))_0x268446[_0x35922d(0x6f2,'\x6d\x78\x4f\x5a')]=copyDefinedFields(_0x34e7bf[_0x35922d(0x565,'\x49\x56\x70\x4d')],[_0x35922d(0x952,'\x4a\x40\x4d\x51'),'\x74\x79\x70\x65',_0x35922d(0x7b9,'\x4b\x4d\x4a\x30')]);return Object[_0x35922d(0x40b,'\x77\x40\x4d\x76')](_0x268446)[_0x35922d(0x777,'\x70\x48\x33\x5a')]>0x113b*0x1+-0x3*0x449+-0x28*0x1c?_0x268446:undefined;}function semanticOpenAIChatEvent(_0x5b968f){const _0x1c8713=_0x1a83f6,_0x570ce9=Array[_0x1c8713(0x86d,'\x4b\x40\x5b\x51')](_0x5b968f[_0x1c8713(0x990,'\x66\x54\x6a\x5e')])?_0x5b968f[_0x1c8713(0x55d,'\x52\x23\x32\x21')][_0x1c8713(0x2aa,'\x54\x5b\x67\x52')](_0x588a54=>{const _0x2d2197=_0x1c8713;if(!isRecord(_0x588a54))return undefined;const _0x36fc4b=copyDefinedFields(_0x588a54,[_0x2d2197(0x790,'\x4b\x4d\x4a\x30')]);if(_0x588a54[_0x2d2197(0x835,'\x33\x69\x21\x55')+_0x2d2197(0x81e,'\x43\x6b\x7a\x5d')]!==undefined&&_0x588a54['\x66\x69\x6e\x69\x73\x68\x5f\x72'+_0x2d2197(0x7e6,'\x6d\x69\x21\x38')]!==null)_0x36fc4b[_0x2d2197(0x4bc,'\x5b\x21\x6c\x4b')+_0x2d2197(0x768,'\x6d\x78\x4f\x5a')]=_0x588a54['\x66\x69\x6e\x69\x73\x68\x5f\x72'+_0x2d2197(0x5ba,'\x28\x74\x79\x54')];const _0xa48cf2=isRecord(_0x588a54[_0x2d2197(0x4ac,'\x50\x25\x42\x51')])?_0x588a54[_0x2d2197(0x2f6,'\x4b\x50\x6f\x48')]:undefined,_0x267208=isRecord(_0x588a54[_0x2d2197(0x83d,'\x70\x48\x33\x5a')])?_0x588a54[_0x2d2197(0x73c,'\x49\x56\x70\x4d')]:undefined;if(_0xa48cf2&&Array[_0x2d2197(0x4eb,'\x57\x6d\x76\x52')](_0xa48cf2[_0x2d2197(0x5c7,'\x58\x31\x78\x39')+'\x6c\x73']))_0x36fc4b[_0x2d2197(0x8cc,'\x52\x23\x32\x21')]={'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x73':_0xa48cf2[_0x2d2197(0x4f4,'\x21\x64\x4f\x62')+'\x6c\x73']};if(_0x267208&&Array[_0x2d2197(0x91d,'\x45\x31\x75\x66')](_0x267208[_0x2d2197(0x20c,'\x49\x56\x70\x4d')+'\x6c\x73']))_0x36fc4b['\x6d\x65\x73\x73\x61\x67\x65']={'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x73':_0x267208[_0x2d2197(0x7fe,'\x6d\x51\x71\x51')+'\x6c\x73']};if(_0x267208&&isRecord(_0x267208[_0x2d2197(0x5b3,'\x33\x69\x21\x55')+_0x2d2197(0x3ba,'\x31\x75\x65\x6f')]))_0x36fc4b['\x6d\x65\x73\x73\x61\x67\x65']={...isRecord(_0x36fc4b[_0x2d2197(0x437,'\x55\x66\x35\x74')])?_0x36fc4b['\x6d\x65\x73\x73\x61\x67\x65']:{},'\x66\x75\x6e\x63\x74\x69\x6f\x6e\x5f\x63\x61\x6c\x6c':_0x267208[_0x2d2197(0x5b3,'\x33\x69\x21\x55')+_0x2d2197(0x3dc,'\x4a\x40\x4d\x51')]};return Object['\x6b\x65\x79\x73'](_0x36fc4b)[_0x2d2197(0x897,'\x49\x56\x70\x4d')](_0x51a06d=>_0x51a06d!==_0x2d2197(0x78b,'\x64\x77\x74\x2a'))?_0x36fc4b:undefined;})[_0x1c8713(0x696,'\x6d\x69\x21\x38')](_0x35bb08=>_0x35bb08!==undefined):[],_0x4f24fa=copyDefinedFields(_0x5b968f,['\x69\x64',_0x1c8713(0x7d1,'\x5e\x25\x6e\x55')]);if(_0x570ce9[_0x1c8713(0x29b,'\x33\x53\x59\x55')]>-0x214c+-0x3f8*0x5+0x3524)_0x4f24fa[_0x1c8713(0x691,'\x47\x45\x4d\x32')]=_0x570ce9;return Object[_0x1c8713(0x6b4,'\x28\x39\x6a\x36')](_0x4f24fa)[_0x1c8713(0x602,'\x4b\x50\x6f\x48')]>0x2566+-0x2040+-0x526?_0x4f24fa:undefined;}function semanticOpenAIResponsesEvent(_0x429eaa){const _0x1a570b=_0x1a83f6,_0xcea5ec=typeof _0x429eaa[_0x1a570b(0x234,'\x73\x53\x6c\x4e')]===_0x1a570b(0x8a4,'\x50\x25\x42\x51')?_0x429eaa[_0x1a570b(0x55f,'\x5b\x21\x6c\x4b')]:'';if(_0xcea5ec===_0x1a570b(0x919,'\x66\x54\x6a\x5e')+'\x2e\x66\x75\x6e\x63\x74\x69\x6f'+_0x1a570b(0x422,'\x45\x31\x75\x66')+'\x72\x67\x75\x6d\x65\x6e\x74\x73'+_0x1a570b(0x2b3,'\x49\x56\x70\x4d')||_0xcea5ec===_0x1a570b(0x76d,'\x39\x6f\x42\x76')+_0x1a570b(0x413,'\x58\x31\x78\x39')+'\x6e\x5f\x63\x61\x6c\x6c\x5f\x61'+'\x72\x67\x75\x6d\x65\x6e\x74\x73'+_0x1a570b(0x6e1,'\x70\x48\x33\x5a'))return copyDefinedFields(_0x429eaa,[_0x1a570b(0x53f,'\x26\x6d\x46\x41'),_0x1a570b(0x3f9,'\x55\x66\x35\x74'),_0x1a570b(0x9a9,'\x55\x66\x35\x74')+_0x1a570b(0x560,'\x43\x6b\x7a\x5d'),_0x1a570b(0x727,'\x31\x75\x65\x6f'),'\x69\x64',_0x1a570b(0x28d,'\x4a\x40\x4d\x51'),_0x1a570b(0x410,'\x45\x31\x75\x66')+'\x73']);const _0x388ee0=semanticToolItem(_0x429eaa[_0x1a570b(0x785,'\x51\x76\x53\x5a')]);if(_0x388ee0){const _0xf4fc=copyDefinedFields(_0x429eaa,[_0x1a570b(0x855,'\x39\x6f\x42\x76'),_0x1a570b(0x822,'\x78\x58\x46\x63')+_0x1a570b(0x81b,'\x33\x53\x59\x55'),_0x1a570b(0x4b1,'\x73\x53\x6c\x4e')]);return _0xf4fc[_0x1a570b(0x966,'\x33\x53\x59\x55')]=_0x388ee0,_0xf4fc;}if(_0xcea5ec===_0x1a570b(0x80f,'\x41\x45\x5a\x75')+_0x1a570b(0x213,'\x39\x6f\x42\x76')+'\x65\x64'||_0xcea5ec===_0x1a570b(0x347,'\x5b\x21\x6c\x4b')+_0x1a570b(0x654,'\x33\x69\x21\x55')||_0xcea5ec===_0x1a570b(0x909,'\x58\x31\x78\x39')+'\x2e\x69\x6e\x63\x6f\x6d\x70\x6c'+_0x1a570b(0x90b,'\x28\x74\x79\x54')||_0xcea5ec===_0x1a570b(0x85f,'\x49\x56\x70\x4d')+_0x1a570b(0x4b9,'\x50\x25\x42\x51')+'\x65\x64'){const _0x5c71e2=semanticResponse(_0x429eaa[_0x1a570b(0x668,'\x33\x28\x62\x59')]);if(_0x5c71e2)return{'\x74\x79\x70\x65':_0xcea5ec,'\x72\x65\x73\x70\x6f\x6e\x73\x65':_0x5c71e2};}return undefined;}function semanticAnthropicEvent(_0x674fae){const _0x3a668b=_0x1a83f6,_0x1d6265=typeof _0x674fae[_0x3a668b(0x601,'\x7a\x46\x50\x4e')]==='\x73\x74\x72\x69\x6e\x67'?_0x674fae[_0x3a668b(0x2d0,'\x44\x4a\x71\x76')]:'';if(_0x1d6265===_0x3a668b(0x984,'\x52\x23\x32\x21')+_0x3a668b(0x469,'\x55\x66\x35\x74')+'\x61\x72\x74'){const _0x58e6c3=semanticToolItem(_0x674fae[_0x3a668b(0x838,'\x45\x31\x75\x66')+'\x62\x6c\x6f\x63\x6b']);if(_0x58e6c3)return{...copyDefinedFields(_0x674fae,['\x74\x79\x70\x65',_0x3a668b(0x250,'\x63\x6b\x2a\x26')]),'\x63\x6f\x6e\x74\x65\x6e\x74\x5f\x62\x6c\x6f\x63\x6b':_0x58e6c3};}if(_0x1d6265===_0x3a668b(0x70c,'\x5b\x21\x6c\x4b')+_0x3a668b(0x2fb,'\x78\x5b\x47\x72')+'\x6c\x74\x61'&&isRecord(_0x674fae[_0x3a668b(0x513,'\x6d\x69\x21\x38')])&&_0x674fae[_0x3a668b(0x8cc,'\x52\x23\x32\x21')][_0x3a668b(0x38b,'\x78\x58\x46\x63')]==='\x69\x6e\x70\x75\x74\x5f\x6a\x73'+_0x3a668b(0x752,'\x37\x4c\x29\x65')){if('\x6c\x4f\x4a\x6a\x76'!==_0x3a668b(0x26c,'\x6d\x78\x4f\x5a'))_0x1f1952=_0x3960d2??_0x3a668b(0x34e,'\x63\x6b\x2a\x26')+_0x3a668b(0x5e4,'\x57\x6d\x76\x52'),_0x2178e2=_0x3e8588,_0x222dfe=_0x403c24,_0x3ba4f3[_0x3a668b(0x7b5,'\x33\x53\x59\x55')]?.(_0x4d6874({'\x65\x76\x65\x6e\x74':_0x3a668b(0x856,'\x33\x53\x59\x55')+_0x3a668b(0x211,'\x48\x42\x51\x46'),'\x72\x6f\x75\x74\x65':_0x22cc97,'\x72\x65\x61\x73\x6f\x6e':_0x110669,'\x6f\x72\x69\x67\x69\x6e\x61\x6c\x5f\x6d\x6f\x64\x65\x6c':_0x147a17,'\x65\x72\x72\x6f\x72':_0x312207 instanceof _0xbc0ed5?_0xe238f1[_0x3a668b(0x75d,'\x6d\x78\x4f\x5a')]:_0x2ff33d(_0x44b06b)}));else return{...copyDefinedFields(_0x674fae,[_0x3a668b(0x222,'\x64\x77\x74\x2a'),_0x3a668b(0x377,'\x21\x64\x4f\x62')]),'\x64\x65\x6c\x74\x61':copyDefinedFields(_0x674fae[_0x3a668b(0x793,'\x77\x40\x4d\x76')],[_0x3a668b(0x240,'\x43\x6b\x7a\x5d'),_0x3a668b(0x820,'\x54\x5b\x67\x52')+_0x3a668b(0x5f2,'\x45\x31\x75\x66')])};}if(_0x1d6265===_0x3a668b(0x3af,'\x6d\x78\x4f\x5a')+_0x3a668b(0x735,'\x58\x31\x78\x39')){const _0x11723c=copyDefinedFields(_0x674fae,[_0x3a668b(0x234,'\x73\x53\x6c\x4e'),_0x3a668b(0x4bd,'\x24\x6f\x4f\x58')]);if(isRecord(_0x674fae[_0x3a668b(0x77e,'\x31\x75\x65\x6f')])){const _0x50b917=copyDefinedFields(_0x674fae[_0x3a668b(0x899,'\x4b\x4d\x4a\x30')],[_0x3a668b(0x8e0,'\x6d\x69\x21\x38')+_0x3a668b(0x730,'\x24\x6f\x4f\x58'),_0x3a668b(0x959,'\x33\x53\x59\x55')+_0x3a668b(0x8e5,'\x64\x77\x74\x2a')]);if(Object[_0x3a668b(0x4c6,'\x31\x75\x65\x6f')](_0x50b917)[_0x3a668b(0x902,'\x6d\x51\x71\x51')]>0x1055+0x20ea+-0x313f)_0x11723c['\x64\x65\x6c\x74\x61']=_0x50b917;}return _0x11723c['\x75\x73\x61\x67\x65']!==undefined||_0x11723c[_0x3a668b(0x284,'\x73\x47\x57\x6a')]!==undefined?_0x11723c:undefined;}return undefined;}function semanticGeminiContentParts(_0x205d4){const _0x49a835=_0x1a83f6;if(!isRecord(_0x205d4))return undefined;const _0x5e5880=Array[_0x49a835(0x3e2,'\x41\x45\x5a\x75')](_0x205d4['\x70\x61\x72\x74\x73'])?_0x205d4['\x70\x61\x72\x74\x73']:[],_0x407f40=_0x5e5880[_0x49a835(0x50b,'\x31\x75\x65\x6f')](_0x1e0355=>{const _0xd077e6=_0x49a835;if(_0xd077e6(0x42b,'\x57\x6d\x76\x52')!=='\x42\x54\x4e\x75\x53'){if(!isRecord(_0x1e0355))return undefined;if(isRecord(_0x1e0355[_0xd077e6(0x6df,'\x57\x6d\x76\x52')+_0xd077e6(0x6a9,'\x6d\x69\x21\x38')]))return copyDefinedFields(_0x1e0355,[_0xd077e6(0x8a3,'\x5e\x25\x6e\x55')+_0xd077e6(0x522,'\x48\x42\x51\x46')]);if(isRecord(_0x1e0355[_0xd077e6(0x255,'\x47\x45\x4d\x32')+_0xd077e6(0x931,'\x44\x4a\x71\x76')]))return copyDefinedFields(_0x1e0355,[_0xd077e6(0x423,'\x6d\x69\x21\x38')+'\x52\x65\x73\x70\x6f\x6e\x73\x65']);return undefined;}else{for(const _0x5574d3 of[_0xd077e6(0x949,'\x73\x53\x6c\x4e')+_0xd077e6(0x82c,'\x66\x54\x6a\x5e'),_0xd077e6(0x6d4,'\x43\x6b\x7a\x5d')+_0xd077e6(0x890,'\x69\x44\x5e\x35')+_0xd077e6(0x73f,'\x24\x6f\x4f\x58'),_0xd077e6(0x465,'\x70\x48\x33\x5a')+'\x73\x61\x74\x69\x6f\x6e\x2d\x69'+'\x64']){const _0x16c56d=_0x2649cc(_0x452d63,_0x5574d3)[_0xd077e6(0x561,'\x78\x58\x46\x63')](),_0x4ab5be=_0x262895(_0x16c56d);if(_0x4ab5be)return _0x45c44b(_0x4ab5be);}const _0x3ba6a9=_0x592ff6['\x6d\x65\x74\x61\x64\x61\x74\x61'];if(_0x5d8462(_0x3ba6a9)){const _0x1a35b4=_0x3561f8(_0x3ba6a9[_0xd077e6(0x8c7,'\x54\x5b\x67\x52')])||_0x1953c1(_0x3ba6a9['\x73\x65\x73\x73\x69\x6f\x6e\x5f'+'\x69\x64']);if(_0x1a35b4)return _0x3cc84e(_0x1a35b4);}const _0x358e3e=_0x1a07e6(_0x4cd6ea[_0xd077e6(0x710,'\x24\x6f\x4f\x58')]);if(_0x358e3e)return _0x28e644(_0x358e3e);return null;}})[_0x49a835(0x60c,'\x4b\x50\x6f\x48')](_0x4802e1=>_0x4802e1!==undefined);if(_0x407f40['\x6c\x65\x6e\x67\x74\x68']===0x1*-0x92f+0x1*0x1206+-0x1f*0x49)return undefined;const _0x4db1bb=copyDefinedFields(_0x205d4,[_0x49a835(0x800,'\x70\x48\x33\x5a')]);return _0x4db1bb[_0x49a835(0x2cf,'\x41\x45\x5a\x75')]=_0x407f40,_0x4db1bb;}function semanticGenericEvent(_0xab012c){const _0x96451d=_0x1a83f6,_0x5a4640=copyDefinedFields(_0xab012c,[_0x96451d(0x21e,'\x47\x45\x4d\x32'),'\x75\x73\x61\x67\x65\x4d\x65\x74'+_0x96451d(0x1fc,'\x6d\x69\x21\x38'),_0x96451d(0x73d,'\x52\x23\x32\x21')+_0x96451d(0x3a6,'\x6d\x51\x71\x51')+'\x74',_0x96451d(0x353,'\x43\x6b\x7a\x5d')+'\x6e\x74',_0x96451d(0x4b0,'\x4b\x40\x5b\x51'),_0x96451d(0x67a,'\x55\x66\x35\x74')+_0x96451d(0x77b,'\x64\x77\x74\x2a')]),_0x807af1=Array[_0x96451d(0x391,'\x4a\x40\x4d\x51')](_0xab012c[_0x96451d(0x5bf,'\x33\x69\x21\x55')+'\x65\x73'])?_0xab012c[_0x96451d(0x474,'\x70\x48\x33\x5a')+'\x65\x73'][_0x96451d(0x387,'\x77\x40\x4d\x76')](_0x50ceda=>{const _0x5bdb95=_0x96451d;if('\x6a\x66\x62\x77\x70'===_0x5bdb95(0x226,'\x23\x7a\x48\x73')){if(!_0x10b84a(_0x284031))return{};const _0x4a2df6={},_0x82742c={};_0x4f0335(_0x82742c,_0x5bdb95(0x3ca,'\x4b\x50\x6f\x48')+_0x5bdb95(0x33c,'\x52\x23\x32\x21'),_0x32ac00[_0x5bdb95(0x944,'\x41\x45\x5a\x75')+_0x5bdb95(0x39d,'\x39\x6f\x42\x76')+'\x74']),_0x4217ba(_0x82742c,_0x5bdb95(0x401,'\x57\x6d\x76\x52')+_0x5bdb95(0x58a,'\x74\x31\x42\x29'),_0x427d6e[_0x5bdb95(0x353,'\x43\x6b\x7a\x5d')+'\x6e\x74']);const _0x4a9b24=_0x540500(_0x82742c);if(_0x4a9b24)_0x4a2df6['\x75\x73\x61\x67\x65']=_0x4a9b24;if(typeof _0x43a68f['\x64\x6f\x6e\x65\x5f\x72\x65\x61'+_0x5bdb95(0x642,'\x77\x40\x4d\x76')]===_0x5bdb95(0x215,'\x6d\x69\x21\x38'))_0x4a2df6['\x73\x74\x6f\x70\x5f\x72\x65\x61'+_0x5bdb95(0x642,'\x77\x40\x4d\x76')]=_0x230a4f[_0x5bdb95(0x954,'\x37\x4c\x29\x65')+_0x5bdb95(0x87c,'\x57\x6d\x76\x52')];return _0x4a2df6;}else{if(!isRecord(_0x50ceda))return undefined;const _0x18793d=copyDefinedFields(_0x50ceda,[_0x5bdb95(0x5ff,'\x4b\x50\x6f\x48')+'\x61\x73\x6f\x6e']),_0x41958e=semanticGeminiContentParts(_0x50ceda[_0x5bdb95(0x8b4,'\x58\x31\x78\x39')]);if(_0x41958e)_0x18793d[_0x5bdb95(0x335,'\x69\x44\x5e\x35')]=_0x41958e;return _0x18793d;}})[_0x96451d(0x871,'\x42\x6f\x57\x21')](_0x1294c1=>_0x1294c1!==undefined&&Object[_0x96451d(0x56d,'\x6d\x69\x21\x38')](_0x1294c1)[_0x96451d(0x97b,'\x45\x31\x75\x66')]>-0xc6b+0x1d41*0x1+-0x10d6):[];if(_0x807af1['\x6c\x65\x6e\x67\x74\x68']>-0x182*0x9+0x1*0x393+0x9ff*0x1)_0x5a4640['\x63\x61\x6e\x64\x69\x64\x61\x74'+'\x65\x73']=_0x807af1;if(_0x5a4640[_0x96451d(0x965,'\x23\x7a\x48\x73')]!==!![])delete _0x5a4640[_0x96451d(0x324,'\x78\x5b\x47\x72')];return Object[_0x96451d(0x763,'\x7a\x46\x50\x4e')](_0x5a4640)[_0x96451d(0x4da,'\x4b\x40\x5b\x51')]>-0xae*0x39+0x25fa+0xc4?_0x5a4640:undefined;}function semanticTailEvents(_0x21def5){const _0x57beec=_0x1a83f6;if(Array[_0x57beec(0x780,'\x69\x44\x5e\x35')](_0x21def5))return _0x21def5['\x66\x6c\x61\x74\x4d\x61\x70'](_0x2c9d64=>semanticTailEvents(_0x2c9d64));if(!isRecord(_0x21def5))return[];const _0x1f7b54=semanticOpenAIResponsesEvent(_0x21def5)??semanticOpenAIChatEvent(_0x21def5)??semanticAnthropicEvent(_0x21def5)??semanticGenericEvent(_0x21def5);return _0x1f7b54?[_0x1f7b54]:[];}class ProviderStreamMetaScanner{[_0x1a83f6(0x420,'\x6d\x78\x4f\x5a')];[_0x1a83f6(0x43e,'\x43\x6b\x7a\x5d')];[_0x1a83f6(0x65e,'\x57\x6d\x76\x52')]={};[_0x1a83f6(0x431,'\x78\x58\x46\x63')+'\x43\x68\x75\x6e\x6b\x73']=[];[_0x1a83f6(0x5bc,'\x49\x56\x70\x4d')+_0x1a83f6(0x8cb,'\x37\x4c\x29\x65')+'\x74\x73']=[];[_0x1a83f6(0x6de,'\x26\x49\x5d\x5d')+_0x1a83f6(0x3eb,'\x28\x74\x79\x54')+'\x65\x73']=0x3a*0x86+0x18f5+-0x3751;[_0x1a83f6(0x5b0,'\x28\x74\x79\x54')+_0x1a83f6(0x939,'\x28\x74\x79\x54')+'\x73']=0xa83+0x1*-0x22a7+0x203*0xc;[_0x1a83f6(0x47f,'\x21\x64\x4f\x62')+'\x6d\x42\x6f\x64\x79']='';['\x72\x61\x77\x53\x74\x72\x65\x61'+_0x1a83f6(0x6cc,'\x73\x47\x57\x6a')]=0x1*-0xd24+0x1727+-0xa03;[_0x1a83f6(0x347,'\x5b\x21\x6c\x4b')+'\x43\x68\x75\x6e\x6b\x73\x54\x72'+'\x75\x6e\x63\x61\x74\x65\x64']=![];[_0x1a83f6(0x395,'\x64\x77\x74\x2a')+_0x1a83f6(0x6d3,'\x50\x25\x42\x51')+'\x65\x64']=![];[_0x1a83f6(0x337,'\x31\x75\x65\x6f')+_0x1a83f6(0x676,'\x4a\x40\x4d\x51')+'\x74\x73\x54\x72\x75\x6e\x63\x61'+_0x1a83f6(0x3d3,'\x52\x23\x32\x21')]=![];[_0x1a83f6(0x471,'\x57\x6d\x76\x52')+_0x1a83f6(0x872,'\x59\x64\x43\x26')+_0x1a83f6(0x2e5,'\x4a\x40\x4d\x51')+_0x1a83f6(0x61e,'\x49\x56\x70\x4d')]=-0x6b8+-0x73f+0xdf7;[_0x1a83f6(0x3a4,'\x54\x5b\x67\x52')]='';[_0x1a83f6(0x8c9,'\x23\x7a\x48\x73')+_0x1a83f6(0x7fd,'\x42\x6f\x57\x21')]=![];[_0x1a83f6(0x29c,'\x66\x54\x6a\x5e')+_0x1a83f6(0x2eb,'\x6d\x69\x21\x38')]='';[_0x1a83f6(0x776,'\x24\x6f\x4f\x58')+_0x1a83f6(0x36f,'\x66\x54\x6a\x5e')+'\x6e\x74']=0xdf7+0x95*-0xf+-0x43*0x14;[_0x1a83f6(0x254,'\x33\x53\x59\x55')+_0x1a83f6(0x2e8,'\x23\x7a\x48\x73')]=-0x17c1+0x2592+-0x189*0x9;[_0x1a83f6(0x964,'\x5b\x21\x6c\x4b')]=new TextDecoder();[_0x1a83f6(0x7e1,'\x4b\x4d\x4a\x30')];constructor(_0x17645d,_0x2b8c06=process.env){const _0x8832a7=_0x1a83f6;this[_0x8832a7(0x659,'\x4a\x40\x4d\x51')]=_0x17645d,this[_0x8832a7(0x3c9,'\x6d\x78\x4f\x5a')]=_0x2b8c06,this[_0x8832a7(0x7e1,'\x4b\x4d\x4a\x30')]=providerStreamCaptureLimits(_0x2b8c06);}[_0x1a83f6(0x2be,'\x78\x58\x46\x63')](_0x2a3ec1){const _0x32b883=_0x1a83f6;let _0x46dfd2;if(typeof _0x2a3ec1===_0x32b883(0x36a,'\x64\x77\x74\x2a'))_0x46dfd2=_0x2a3ec1;else{if(_0x2a3ec1 instanceof Uint8Array)_0x46dfd2=this[_0x32b883(0x62f,'\x33\x28\x62\x59')][_0x32b883(0x8be,'\x51\x76\x53\x5a')](_0x2a3ec1,{'\x73\x74\x72\x65\x61\x6d':!![]});else return;}if(captureBodiesEnabled(this[_0x32b883(0x289,'\x42\x6f\x57\x21')]))this['\x63\x61\x70\x74\x75\x72\x65\x52'+_0x32b883(0x8e7,'\x64\x77\x74\x2a')+_0x32b883(0x866,'\x6d\x78\x4f\x5a')](_0x46dfd2);this[_0x32b883(0x833,'\x70\x48\x33\x5a')](_0x46dfd2);}[_0x1a83f6(0x8c0,'\x49\x56\x70\x4d')](){const _0x4a297e=_0x1a83f6,_0x4eee4d=this[_0x4a297e(0x392,'\x70\x48\x33\x5a')][_0x4a297e(0x666,'\x4b\x40\x5b\x51')]();if(_0x4eee4d){if(captureBodiesEnabled(this[_0x4a297e(0x766,'\x45\x31\x75\x66')]))this['\x63\x61\x70\x74\x75\x72\x65\x52'+_0x4a297e(0x8ee,'\x48\x42\x51\x46')+_0x4a297e(0x866,'\x6d\x78\x4f\x5a')](_0x4eee4d);this[_0x4a297e(0x7de,'\x4b\x50\x6f\x48')](_0x4eee4d);}if(this['\x6f\x76\x65\x72\x66\x6c\x6f\x77'+_0x4a297e(0x998,'\x73\x47\x57\x6a')]){this[_0x4a297e(0x5d2,'\x78\x5b\x47\x72')+_0x4a297e(0x7af,'\x6d\x78\x4f\x5a')+'\x4c\x69\x6e\x65']();return;}const _0x2ec9e7=this[_0x4a297e(0x7ec,'\x58\x31\x78\x39')][_0x4a297e(0x79b,'\x6d\x51\x71\x51')]();this[_0x4a297e(0x93d,'\x28\x74\x79\x54')]='';if(_0x2ec9e7)this[_0x4a297e(0x4ee,'\x47\x45\x4d\x32')](_0x2ec9e7);}[_0x1a83f6(0x804,'\x4b\x4d\x4a\x30')+'\x42\x6f\x64\x79'](){const _0x3d864a=_0x1a83f6;if(this[_0x3d864a(0x68a,'\x77\x40\x4d\x76')+_0x3d864a(0x287,'\x55\x66\x35\x74')][_0x3d864a(0x33b,'\x6d\x78\x4f\x5a')]===-0x33b+-0x541*-0x1+-0x206&&this[_0x3d864a(0x21a,'\x37\x4c\x29\x65')+_0x3d864a(0x314,'\x31\x75\x65\x6f')+'\x6e\x74']===-0x1a24+0x1b5d+-0x139*0x1&&!this[_0x3d864a(0x431,'\x78\x58\x46\x63')+_0x3d864a(0x639,'\x50\x25\x42\x51')+_0x3d864a(0x5aa,'\x70\x48\x33\x5a')]&&!this['\x72\x61\x77\x53\x74\x72\x65\x61'+_0x3d864a(0x5af,'\x28\x39\x6a\x36')]&&!this[_0x3d864a(0x59e,'\x41\x45\x5a\x75')+'\x6d\x54\x72\x75\x6e\x63\x61\x74'+'\x65\x64'])return undefined;return{'\x72\x65\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x65\x64':!![],...this[_0x3d864a(0x84a,'\x6d\x78\x4f\x5a')+_0x3d864a(0x5bd,'\x43\x6b\x7a\x5d')][_0x3d864a(0x447,'\x78\x5b\x47\x72')]>0x3b5+0x2f*0x93+-0x1eb2?{'\x63\x68\x75\x6e\x6b\x73':this[_0x3d864a(0x919,'\x66\x54\x6a\x5e')+_0x3d864a(0x30f,'\x6d\x78\x4f\x5a')]}:{},...this[_0x3d864a(0x720,'\x26\x49\x5d\x5d')+_0x3d864a(0x5d5,'\x49\x56\x70\x4d')+'\x74\x73']['\x6c\x65\x6e\x67\x74\x68']>-0xc5*-0x1+0x49*0x1+-0x10e?{'\x73\x65\x6d\x61\x6e\x74\x69\x63\x5f\x74\x61\x69\x6c\x5f\x65\x76\x65\x6e\x74\x73':this[_0x3d864a(0x30c,'\x37\x4c\x29\x65')+_0x3d864a(0x580,'\x28\x39\x6a\x36')+'\x74\x73']}:{},...this[_0x3d864a(0x786,'\x74\x31\x42\x29')+_0x3d864a(0x7a0,'\x21\x64\x4f\x62')]?{'\x72\x61\x77\x5f\x73\x74\x72\x65\x61\x6d\x5f\x62\x6f\x64\x79':this[_0x3d864a(0x209,'\x6d\x51\x71\x51')+_0x3d864a(0x3f0,'\x41\x45\x5a\x75')]}:{},...this['\x72\x65\x73\x70\x6f\x6e\x73\x65'+_0x3d864a(0x71b,'\x33\x69\x21\x55')+_0x3d864a(0x953,'\x73\x47\x57\x6a')]?{'\x74\x72\x75\x6e\x63\x61\x74\x65\x64':!![]}:{},...this[_0x3d864a(0x992,'\x28\x74\x79\x54')+_0x3d864a(0x271,'\x39\x6f\x42\x76')+'\x65\x64']?{'\x72\x61\x77\x5f\x73\x74\x72\x65\x61\x6d\x5f\x74\x72\x75\x6e\x63\x61\x74\x65\x64':!![]}:{},...this[_0x3d864a(0x45a,'\x73\x47\x57\x6a')+_0x3d864a(0x645,'\x41\x45\x5a\x75')+'\x74\x73\x54\x72\x75\x6e\x63\x61'+_0x3d864a(0x6e5,'\x6d\x51\x71\x51')]?{'\x73\x65\x6d\x61\x6e\x74\x69\x63\x5f\x74\x61\x69\x6c\x5f\x65\x76\x65\x6e\x74\x73\x5f\x74\x72\x75\x6e\x63\x61\x74\x65\x64':!![],'\x64\x72\x6f\x70\x70\x65\x64\x5f\x73\x65\x6d\x61\x6e\x74\x69\x63\x5f\x74\x61\x69\x6c\x5f\x65\x76\x65\x6e\x74\x5f\x63\x6f\x75\x6e\x74':this[_0x3d864a(0x91b,'\x6d\x51\x71\x51')+_0x3d864a(0x8a1,'\x45\x31\x75\x66')+_0x3d864a(0x5a4,'\x59\x64\x43\x26')+_0x3d864a(0x7d7,'\x69\x44\x5e\x35')]}:{},...this[_0x3d864a(0x74b,'\x78\x58\x46\x63')+_0x3d864a(0x5a5,'\x43\x6b\x7a\x5d')+'\x6e\x74']>-0x1774+-0x230b+0x3a7f?{'\x70\x72\x6f\x76\x69\x64\x65\x72\x5f\x73\x74\x72\x65\x61\x6d\x5f\x74\x72\x75\x6e\x63\x61\x74\x65\x64':!![],'\x74\x72\x75\x6e\x63\x61\x74\x65\x64\x5f\x6c\x69\x6e\x65\x5f\x63\x6f\x75\x6e\x74':this['\x74\x72\x75\x6e\x63\x61\x74\x65'+_0x3d864a(0x58d,'\x47\x45\x4d\x32')+'\x6e\x74'],'\x64\x72\x6f\x70\x70\x65\x64\x5f\x6c\x69\x6e\x65\x5f\x63\x68\x61\x72\x73':this['\x64\x72\x6f\x70\x70\x65\x64\x4c'+'\x69\x6e\x65\x43\x68\x61\x72\x73']}:{}};}[_0x1a83f6(0x976,'\x45\x31\x75\x66')+'\x61\x77\x53\x74\x72\x65\x61\x6d'+_0x1a83f6(0x308,'\x33\x69\x21\x55')](_0x35377a){const _0x3ff600=_0x1a83f6;if(!_0x35377a)return;const _0x490dd7=redactText(_0x35377a),_0x4f45f8=Math[_0x3ff600(0x713,'\x28\x39\x6a\x36')](0x18*0x19e+-0x1c84+-0xa4c,this[_0x3ff600(0x31f,'\x6d\x69\x21\x38')][_0x3ff600(0x8d1,'\x5b\x21\x6c\x4b')+_0x3ff600(0x283,'\x4a\x40\x4d\x51')+'\x73']-this[_0x3ff600(0x767,'\x48\x42\x51\x46')+_0x3ff600(0x48d,'\x49\x56\x70\x4d')]);if(_0x4f45f8>0x2a0+0x1d*0xd1+-0x1a4d){const _0x8b534a=_0x490dd7[_0x3ff600(0x350,'\x59\x64\x43\x26')](-0xef3*-0x1+0xd34+-0x1c27,_0x4f45f8);this[_0x3ff600(0x7bd,'\x70\x48\x33\x5a')+_0x3ff600(0x2d5,'\x78\x5b\x47\x72')]+=_0x8b534a,this[_0x3ff600(0x933,'\x4b\x40\x5b\x51')+_0x3ff600(0x775,'\x28\x39\x6a\x36')]+=_0x8b534a[_0x3ff600(0x570,'\x7a\x46\x50\x4e')];}if(_0x490dd7[_0x3ff600(0x910,'\x28\x39\x6a\x36')]>_0x4f45f8)this[_0x3ff600(0x772,'\x7a\x46\x50\x4e')+_0x3ff600(0x281,'\x58\x31\x78\x39')+'\x65\x64']=!![];}[_0x1a83f6(0x4d4,'\x33\x53\x59\x55')](_0x4ffe36){const _0x11b9fb=_0x1a83f6;let _0x4a5062=_0x4ffe36;while(_0x4a5062['\x6c\x65\x6e\x67\x74\x68']>0x10*0x1f6+0x1*0x218f+-0x40ef){if(this[_0x11b9fb(0x935,'\x4b\x4d\x4a\x30')+_0x11b9fb(0x648,'\x47\x45\x4d\x32')]){if(_0x11b9fb(0x468,'\x24\x6f\x4f\x58')!==_0x11b9fb(0x518,'\x73\x47\x57\x6a')){const _0x455798=typeof _0x73df0d[_0x11b9fb(0x267,'\x23\x7a\x48\x73')]===_0x11b9fb(0x3ad,'\x58\x31\x78\x39')?_0x3550f0[_0x11b9fb(0x382,'\x42\x6f\x57\x21')]:'';if(_0x455798===_0x11b9fb(0x80f,'\x41\x45\x5a\x75')+'\x2e\x66\x75\x6e\x63\x74\x69\x6f'+_0x11b9fb(0x7a1,'\x54\x5b\x67\x52')+_0x11b9fb(0x55c,'\x49\x56\x70\x4d')+_0x11b9fb(0x8d9,'\x26\x49\x5d\x5d')||_0x455798===_0x11b9fb(0x68a,'\x77\x40\x4d\x76')+_0x11b9fb(0x65c,'\x28\x74\x79\x54')+_0x11b9fb(0x84f,'\x50\x25\x42\x51')+'\x72\x67\x75\x6d\x65\x6e\x74\x73'+_0x11b9fb(0x6f9,'\x45\x31\x75\x66'))return _0x5672d4(_0x4bff57,[_0x11b9fb(0x7ca,'\x49\x56\x70\x4d'),_0x11b9fb(0x852,'\x77\x40\x4d\x76'),_0x11b9fb(0x8e6,'\x4b\x50\x6f\x48')+_0x11b9fb(0x482,'\x47\x45\x4d\x32'),_0x11b9fb(0x6b6,'\x26\x6d\x46\x41'),'\x69\x64',_0x11b9fb(0x849,'\x21\x64\x4f\x62'),_0x11b9fb(0x8c4,'\x24\x6f\x4f\x58')+'\x73']);const _0x860b24=_0x364f8c(_0x37b09[_0x11b9fb(0x90c,'\x33\x28\x62\x59')]);if(_0x860b24){const _0x59c71c=_0x39c5ac(_0x17cb28,[_0x11b9fb(0x505,'\x47\x45\x4d\x32'),_0x11b9fb(0x842,'\x57\x6d\x76\x52')+_0x11b9fb(0x4c5,'\x58\x31\x78\x39'),_0x11b9fb(0x491,'\x33\x69\x21\x55')]);return _0x59c71c[_0x11b9fb(0x2b2,'\x78\x5b\x47\x72')]=_0x860b24,_0x59c71c;}if(_0x455798===_0x11b9fb(0x3d9,'\x47\x45\x4d\x32')+_0x11b9fb(0x332,'\x23\x7a\x48\x73')+'\x65\x64'||_0x455798===_0x11b9fb(0x99c,'\x59\x64\x43\x26')+_0x11b9fb(0x688,'\x50\x25\x42\x51')||_0x455798===_0x11b9fb(0x2b0,'\x31\x75\x65\x6f')+_0x11b9fb(0x89c,'\x6d\x69\x21\x38')+'\x65\x74\x65'||_0x455798===_0x11b9fb(0x6e6,'\x51\x76\x53\x5a')+_0x11b9fb(0x294,'\x31\x75\x65\x6f')+'\x65\x64'){const _0x4befec=_0x5a507a(_0x3077de[_0x11b9fb(0x677,'\x57\x6d\x76\x52')]);if(_0x4befec)return{'\x74\x79\x70\x65':_0x455798,'\x72\x65\x73\x70\x6f\x6e\x73\x65':_0x4befec};}return _0x48c36e;}else{const _0x332e33=_0x4a5062[_0x11b9fb(0x3df,'\x49\x56\x70\x4d')]('\x0a'),_0x3121b8=_0x332e33>=0xdd*0x23+0x1bbc+-0x39f3?_0x4a5062['\x73\x6c\x69\x63\x65'](-0x1b1c+-0x754+0x10*0x227,_0x332e33):_0x4a5062;this[_0x11b9fb(0x6b2,'\x66\x54\x6a\x5e')+_0x11b9fb(0x242,'\x37\x4c\x29\x65')](_0x3121b8),this['\x64\x72\x6f\x70\x70\x65\x64\x4c'+_0x11b9fb(0x82b,'\x21\x64\x4f\x62')]+=_0x3121b8[_0x11b9fb(0x999,'\x58\x31\x78\x39')];if(_0x332e33<0xa29+-0x21af+0xbc3*0x2)return;this[_0x11b9fb(0x78f,'\x33\x69\x21\x55')+_0x11b9fb(0x24b,'\x4b\x40\x5b\x51')+_0x11b9fb(0x579,'\x37\x4c\x29\x65')](),_0x4a5062=_0x4a5062[_0x11b9fb(0x62e,'\x4b\x4d\x4a\x30')](_0x332e33+(-0x2*0x1307+-0x1321*0x1+-0x50*-0xb7));continue;}}const _0x3be3ca=_0x4a5062[_0x11b9fb(0x869,'\x6d\x69\x21\x38')]('\x0a'),_0x1ace6c=_0x3be3ca>=0x5*-0x451+-0x21d2+0x3767*0x1?_0x4a5062[_0x11b9fb(0x433,'\x6d\x51\x71\x51')](-0xdb+0x9bb*-0x2+-0x7*-0x2e7,_0x3be3ca):_0x4a5062;if(this[_0x11b9fb(0x1f8,'\x26\x6d\x46\x41')][_0x11b9fb(0x5d1,'\x31\x75\x65\x6f')]+_0x1ace6c[_0x11b9fb(0x29b,'\x33\x53\x59\x55')]>this[_0x11b9fb(0x8f3,'\x59\x64\x43\x26')]['\x6c\x69\x6e\x65\x4d\x61\x78\x42'+'\x79\x74\x65\x73']){if(_0x11b9fb(0x2c8,'\x52\x23\x32\x21')===_0x11b9fb(0x4c9,'\x24\x6f\x4f\x58')){this[_0x11b9fb(0x59c,'\x37\x4c\x29\x65')+_0x11b9fb(0x8f6,'\x39\x6f\x42\x76')+_0x11b9fb(0x4d0,'\x54\x5b\x67\x52')](this[_0x11b9fb(0x6fa,'\x4b\x50\x6f\x48')]+_0x1ace6c),this[_0x11b9fb(0x50c,'\x24\x6f\x4f\x58')]='';if(_0x3be3ca<-0x1e58+0x7*-0x493+0x3e5d)return;this[_0x11b9fb(0x886,'\x77\x40\x4d\x76')+'\x65\x72\x66\x6c\x6f\x77\x65\x64'+_0x11b9fb(0x25c,'\x74\x31\x42\x29')](),_0x4a5062=_0x4a5062['\x73\x6c\x69\x63\x65'](_0x3be3ca+(-0xa72+-0x25da+0x1*0x304d));continue;}else{const _0x14dbb6=_0x406e6a(_0x15f764(_0x40fddb,_0x11b9fb(0x72b,'\x45\x31\x75\x66')),_0x11b9fb(0x496,'\x28\x39\x6a\x36'));if(!/^[A-Za-z0-9_-]+$/[_0x11b9fb(0x72d,'\x31\x75\x65\x6f')](_0x14dbb6))throw _0x236b33(_0x11b9fb(0x5c8,'\x4b\x40\x5b\x51')+_0x11b9fb(0x7ff,'\x6d\x69\x21\x38')+_0x11b9fb(0x4cf,'\x70\x48\x33\x5a')+_0x11b9fb(0x266,'\x74\x31\x42\x29')+_0x11b9fb(0x292,'\x4b\x50\x6f\x48'));return _0x14dbb6;}}this[_0x11b9fb(0x913,'\x50\x25\x42\x51')]+=_0x1ace6c;if(_0x3be3ca<-0x23bf*0x1+-0x773*0x1+-0x1599*-0x2)return;const _0x262658=this[_0x11b9fb(0x386,'\x28\x39\x6a\x36')][_0x11b9fb(0x2f0,'\x26\x6d\x46\x41')]();this[_0x11b9fb(0x60f,'\x42\x6f\x57\x21')]='';if(_0x262658)this[_0x11b9fb(0x478,'\x74\x31\x42\x29')](_0x262658);_0x4a5062=_0x4a5062[_0x11b9fb(0x41e,'\x33\x28\x62\x59')](_0x3be3ca+(0x1914+0x161e+0x3*-0xfbb));}}['\x73\x74\x61\x72\x74\x4f\x76\x65'+_0x1a83f6(0x354,'\x4b\x4d\x4a\x30')+_0x1a83f6(0x8cd,'\x26\x6d\x46\x41')](_0x1c81c7){const _0x28c57d=_0x1a83f6;this[_0x28c57d(0x5c4,'\x59\x64\x43\x26')+_0x28c57d(0x921,'\x51\x76\x53\x5a')]=!![],this[_0x28c57d(0x458,'\x21\x64\x4f\x62')+_0x28c57d(0x6ba,'\x5b\x21\x6c\x4b')+'\x6e\x74']+=-0x59e+-0x20c2+0x2661,this[_0x28c57d(0x43d,'\x73\x53\x6c\x4e')+_0x28c57d(0x2cb,'\x48\x42\x51\x46')](_0x1c81c7),this[_0x28c57d(0x559,'\x48\x42\x51\x46')+_0x28c57d(0x2a1,'\x77\x40\x4d\x76')]+=_0x1c81c7[_0x28c57d(0x3b8,'\x59\x64\x43\x26')];}[_0x1a83f6(0x7c7,'\x66\x54\x6a\x5e')+'\x65\x72\x66\x6c\x6f\x77\x65\x64'+_0x1a83f6(0x2e0,'\x39\x6f\x42\x76')](){const _0xabb468=_0x1a83f6;if(this[_0xabb468(0x45f,'\x78\x58\x46\x63')+_0xabb468(0x955,'\x31\x75\x65\x6f')])scanProviderTextMetadata(this[_0xabb468(0x315,'\x4b\x50\x6f\x48')],this[_0xabb468(0x569,'\x37\x4c\x29\x65')+_0xabb468(0x8ad,'\x69\x44\x5e\x35')]);this['\x6f\x76\x65\x72\x66\x6c\x6f\x77'+_0xabb468(0x977,'\x41\x45\x5a\x75')]=![],this['\x6f\x76\x65\x72\x66\x6c\x6f\x77'+_0xabb468(0x751,'\x6d\x51\x71\x51')]='';}[_0x1a83f6(0x325,'\x52\x23\x32\x21')+'\x66\x6c\x6f\x77\x54\x65\x78\x74'](_0x161eae){const _0x50f32f=_0x1a83f6;this[_0x50f32f(0x23f,'\x48\x42\x51\x46')+_0x50f32f(0x34a,'\x48\x42\x51\x46')]=(this[_0x50f32f(0x9a2,'\x54\x5b\x67\x52')+'\x54\x61\x69\x6c']+_0x161eae)[_0x50f32f(0x88f,'\x58\x31\x78\x39')](-MAX_PROVIDER_STREAM_LINE_SCAN_TAIL_BYTES),scanProviderTextMetadata(this[_0x50f32f(0x35b,'\x6d\x69\x21\x38')],_0x161eae);}[_0x1a83f6(0x617,'\x33\x28\x62\x59')](_0x411360){const _0x3bf39c=_0x1a83f6;let _0x56cb83=_0x411360[_0x3bf39c(0x326,'\x55\x66\x35\x74')+'\x74\x68'](_0x3bf39c(0x6fb,'\x33\x28\x62\x59'))?_0x411360[_0x3bf39c(0x264,'\x6d\x69\x21\x38')](0xd83+0xae8+-0x1866)[_0x3bf39c(0x404,'\x41\x45\x5a\x75')]():_0x411360[_0x3bf39c(0x359,'\x31\x75\x65\x6f')]();if(!_0x411360[_0x3bf39c(0x53c,'\x77\x40\x4d\x76')+'\x74\x68'](_0x3bf39c(0x65b,'\x7a\x46\x50\x4e'))){if(_0x3bf39c(0x2cc,'\x63\x6b\x2a\x26')!==_0x3bf39c(0x896,'\x51\x76\x53\x5a'))_0x56cb83=_0x56cb83[_0x3bf39c(0x5b8,'\x77\x40\x4d\x76')](/^\[\s*/,'')[_0x3bf39c(0x37f,'\x6d\x51\x71\x51')](/^,\s*/,'')[_0x3bf39c(0x48f,'\x28\x39\x6a\x36')](/\s*,?\s*\]\s*$/,'')[_0x3bf39c(0x548,'\x51\x76\x53\x5a')](/,\s*$/,'')[_0x3bf39c(0x561,'\x78\x58\x46\x63')]();else{const _0x17521f=_0x48ebb5(_0x36792c);return{'\x6c\x69\x6e\x65\x4d\x61\x78\x42\x79\x74\x65\x73':_0x40065f(_0x401333,[_0x3bf39c(0x89e,'\x70\x48\x33\x5a')+_0x3bf39c(0x49f,'\x48\x42\x51\x46')+_0x3bf39c(0x6af,'\x55\x66\x35\x74')+_0x3bf39c(0x29d,'\x33\x28\x62\x59')+'\x4d\x5f\x4c\x49\x4e\x45\x5f\x4d'+_0x3bf39c(0x503,'\x26\x6d\x46\x41'),_0x3bf39c(0x358,'\x5b\x21\x6c\x4b')+_0x3bf39c(0x7bf,'\x31\x75\x65\x6f')+_0x3bf39c(0x60e,'\x4b\x40\x5b\x51')+_0x3bf39c(0x988,'\x70\x48\x33\x5a')+_0x3bf39c(0x624,'\x51\x76\x53\x5a')+'\x4d\x41\x58\x5f\x42\x59\x54\x45'+'\x53',_0x3bf39c(0x504,'\x73\x53\x6c\x4e')+'\x4c\x4c\x4d\x5f\x54\x52\x41\x43'+_0x3bf39c(0x4c2,'\x63\x6b\x2a\x26')+_0x3bf39c(0x97d,'\x26\x49\x5d\x5d')+_0x3bf39c(0x49c,'\x6d\x51\x71\x51'),_0x3bf39c(0x26f,'\x63\x6b\x2a\x26')+_0x3bf39c(0x2ed,'\x28\x74\x79\x54')+'\x43\x45\x5f\x53\x54\x52\x45\x41'+_0x3bf39c(0x883,'\x6d\x51\x71\x51')+_0x3bf39c(0x59d,'\x33\x53\x59\x55')],_0x4d7ebe['\x6d\x61\x78'](_0x17521f,_0x381437)),'\x63\x68\x75\x6e\x6b\x4d\x61\x78\x45\x76\x65\x6e\x74\x73':_0x2b05bc(_0x21ee9c,[_0x3bf39c(0x823,'\x33\x28\x62\x59')+_0x3bf39c(0x95f,'\x4b\x50\x6f\x48')+_0x3bf39c(0x8ed,'\x24\x6f\x4f\x58')+'\x45\x52\x5f\x53\x54\x52\x45\x41'+'\x4d\x5f\x4d\x41\x58\x5f\x45\x56'+'\x45\x4e\x54\x53',_0x3bf39c(0x4a6,'\x6d\x51\x71\x51')+_0x3bf39c(0x637,'\x50\x25\x42\x51')+_0x3bf39c(0x950,'\x55\x66\x35\x74')+_0x3bf39c(0x6f1,'\x44\x4a\x71\x76')+_0x3bf39c(0x924,'\x64\x77\x74\x2a')+'\x56\x45\x4e\x54\x53',_0x3bf39c(0x269,'\x47\x45\x4d\x32')+'\x4c\x4c\x4d\x5f\x54\x52\x41\x43'+_0x3bf39c(0x3d4,'\x33\x53\x59\x55')+_0x3bf39c(0x4d3,'\x23\x7a\x48\x73')+_0x3bf39c(0x5cc,'\x77\x40\x4d\x76'),_0x3bf39c(0x861,'\x24\x6f\x4f\x58')+_0x3bf39c(0x27e,'\x48\x42\x51\x46')+'\x43\x45\x5f\x53\x54\x52\x45\x41'+_0x3bf39c(0x31c,'\x24\x6f\x4f\x58')+_0x3bf39c(0x46f,'\x6d\x51\x71\x51')],_0x1727be),'\x63\x68\x75\x6e\x6b\x4d\x61\x78\x42\x79\x74\x65\x73':_0x24c74a(_0x21fff0,[_0x3bf39c(0x371,'\x28\x74\x79\x54')+_0x3bf39c(0x279,'\x5b\x21\x6c\x4b')+_0x3bf39c(0x867,'\x33\x28\x62\x59')+_0x3bf39c(0x374,'\x48\x42\x51\x46')+_0x3bf39c(0x508,'\x78\x58\x46\x63')+'\x54\x45\x53',_0x3bf39c(0x770,'\x47\x45\x4d\x32')+_0x3bf39c(0x87f,'\x26\x49\x5d\x5d')+_0x3bf39c(0x393,'\x45\x31\x75\x66')+_0x3bf39c(0x553,'\x5e\x25\x6e\x55')+_0x3bf39c(0x94c,'\x5e\x25\x6e\x55')+_0x3bf39c(0x6f8,'\x78\x5b\x47\x72'),'\x45\x56\x4f\x4c\x56\x45\x52\x5f'+_0x3bf39c(0x58b,'\x77\x40\x4d\x76')+_0x3bf39c(0x839,'\x51\x76\x53\x5a')+_0x3bf39c(0x448,'\x26\x49\x5d\x5d')+'\x45\x53','\x45\x56\x4f\x4d\x41\x50\x5f\x50'+_0x3bf39c(0x7bf,'\x31\x75\x65\x6f')+_0x3bf39c(0x61b,'\x26\x49\x5d\x5d')+_0x3bf39c(0x957,'\x4a\x40\x4d\x51')+_0x3bf39c(0x3e1,'\x6d\x69\x21\x38')],_0x17521f),'\x72\x61\x77\x53\x74\x72\x65\x61\x6d\x4d\x61\x78\x43\x68\x61\x72\x73':_0x5ecb0e(_0x59fe5f,[_0x3bf39c(0x2e3,'\x52\x23\x32\x21')+_0x3bf39c(0x927,'\x28\x74\x79\x54')+_0x3bf39c(0x938,'\x4b\x50\x6f\x48')+_0x3bf39c(0x3b7,'\x21\x64\x4f\x62')+_0x3bf39c(0x5f9,'\x57\x6d\x76\x52')+'\x58\x5f\x43\x48\x41\x52\x53',_0x3bf39c(0x650,'\x41\x45\x5a\x75')+'\x52\x4f\x58\x59\x5f\x54\x52\x41'+_0x3bf39c(0x457,'\x37\x4c\x29\x65')+_0x3bf39c(0x945,'\x28\x39\x6a\x36')+_0x3bf39c(0x573,'\x64\x77\x74\x2a')+_0x3bf39c(0x446,'\x4a\x40\x4d\x51'),_0x3bf39c(0x89e,'\x70\x48\x33\x5a')+_0x3bf39c(0x3fe,'\x41\x45\x5a\x75')+_0x3bf39c(0x549,'\x47\x45\x4d\x32')+_0x3bf39c(0x534,'\x54\x5b\x67\x52')+_0x3bf39c(0x2c0,'\x5b\x21\x6c\x4b'),_0x3bf39c(0x599,'\x4b\x4d\x4a\x30')+_0x3bf39c(0x683,'\x41\x45\x5a\x75')+_0x3bf39c(0x812,'\x26\x6d\x46\x41')+_0x3bf39c(0x932,'\x66\x54\x6a\x5e')+_0x3bf39c(0x792,'\x4b\x50\x6f\x48')],_0x17521f),'\x73\x65\x6d\x61\x6e\x74\x69\x63\x54\x61\x69\x6c\x4d\x61\x78\x45\x76\x65\x6e\x74\x73':_0x29f627(_0x5b1a9f,[_0x3bf39c(0x31a,'\x58\x31\x78\x39')+'\x4c\x4c\x4d\x5f\x54\x52\x41\x43'+_0x3bf39c(0x286,'\x59\x64\x43\x26')+_0x3bf39c(0x5b1,'\x39\x6f\x42\x76')+_0x3bf39c(0x7a4,'\x39\x6f\x42\x76')+'\x49\x43\x5f\x54\x41\x49\x4c\x5f'+_0x3bf39c(0x5ab,'\x24\x6f\x4f\x58')+'\x54\x53',_0x3bf39c(0x599,'\x4b\x4d\x4a\x30')+_0x3bf39c(0x88a,'\x78\x58\x46\x63')+_0x3bf39c(0x950,'\x55\x66\x35\x74')+_0x3bf39c(0x926,'\x52\x23\x32\x21')+'\x41\x4d\x5f\x53\x45\x4d\x41\x4e'+_0x3bf39c(0x640,'\x26\x6d\x46\x41')+_0x3bf39c(0x293,'\x49\x56\x70\x4d')+_0x3bf39c(0x323,'\x74\x31\x42\x29'),'\x45\x56\x4f\x4c\x56\x45\x52\x5f'+'\x4c\x4c\x4d\x5f\x54\x52\x41\x43'+_0x3bf39c(0x58e,'\x78\x58\x46\x63')+_0x3bf39c(0x319,'\x24\x6f\x4f\x58')+_0x3bf39c(0x399,'\x6d\x69\x21\x38')+_0x3bf39c(0x880,'\x28\x39\x6a\x36')+'\x53',_0x3bf39c(0x96c,'\x6d\x69\x21\x38')+_0x3bf39c(0x940,'\x64\x77\x74\x2a')+_0x3bf39c(0x9a0,'\x7a\x46\x50\x4e')+'\x4d\x5f\x53\x45\x4d\x41\x4e\x54'+_0x3bf39c(0x2a5,'\x41\x45\x5a\x75')+_0x3bf39c(0x6f5,'\x33\x53\x59\x55')+'\x54\x53'],_0x41e352),'\x73\x65\x6d\x61\x6e\x74\x69\x63\x54\x61\x69\x6c\x4d\x61\x78\x42\x79\x74\x65\x73':_0x2d93f2(_0x187e89,[_0x3bf39c(0x504,'\x73\x53\x6c\x4e')+_0x3bf39c(0x7c0,'\x33\x69\x21\x55')+_0x3bf39c(0x774,'\x78\x58\x46\x63')+_0x3bf39c(0x618,'\x4b\x4d\x4a\x30')+_0x3bf39c(0x2b6,'\x4b\x40\x5b\x51')+_0x3bf39c(0x77d,'\x69\x44\x5e\x35')+_0x3bf39c(0x1fb,'\x24\x6f\x4f\x58')+'\x53',_0x3bf39c(0x8e2,'\x39\x6f\x42\x76')+_0x3bf39c(0x41b,'\x58\x31\x78\x39')+_0x3bf39c(0x6a2,'\x50\x25\x42\x51')+_0x3bf39c(0x789,'\x78\x5b\x47\x72')+_0x3bf39c(0x613,'\x33\x69\x21\x55')+_0x3bf39c(0x5fa,'\x4a\x40\x4d\x51')+_0x3bf39c(0x261,'\x78\x58\x46\x63')+'\x45\x53','\x45\x56\x4f\x4c\x56\x45\x52\x5f'+_0x3bf39c(0x7b7,'\x4b\x40\x5b\x51')+_0x3bf39c(0x86b,'\x5e\x25\x6e\x55')+'\x5f\x53\x45\x4d\x41\x4e\x54\x49'+_0x3bf39c(0x644,'\x49\x56\x70\x4d')+_0x3bf39c(0x3f1,'\x54\x5b\x67\x52'),_0x3bf39c(0x476,'\x59\x64\x43\x26')+_0x3bf39c(0x683,'\x41\x45\x5a\x75')+'\x43\x45\x5f\x53\x54\x52\x45\x41'+_0x3bf39c(0x510,'\x55\x66\x35\x74')+_0x3bf39c(0x361,'\x5e\x25\x6e\x55')+_0x3bf39c(0x23d,'\x43\x6b\x7a\x5d')+'\x53'],_0x17521f)};}}if(!_0x56cb83||_0x56cb83===_0x3bf39c(0x996,'\x63\x6b\x2a\x26'))return;let _0x4f23cf;try{if(_0x3bf39c(0x882,'\x42\x6f\x57\x21')!==_0x3bf39c(0x2df,'\x5b\x21\x6c\x4b'))_0x4f23cf=JSON[_0x3bf39c(0x368,'\x69\x44\x5e\x35')](_0x56cb83);else{const _0x570683=_0x2f64ff(_0x321814[_0x3bf39c(0x765,'\x48\x42\x51\x46')],['\x73\x74\x6f\x70\x5f\x72\x65\x61'+_0x3bf39c(0x523,'\x28\x74\x79\x54'),_0x3bf39c(0x6d8,'\x69\x44\x5e\x35')+_0x3bf39c(0x747,'\x43\x6b\x7a\x5d')]);if(_0x10af17[_0x3bf39c(0x88c,'\x55\x66\x35\x74')](_0x570683)[_0x3bf39c(0x435,'\x73\x47\x57\x6a')]>-0xc*0x1ca+0x22ef+-0xd77)_0x507079[_0x3bf39c(0x3c7,'\x5b\x21\x6c\x4b')]=_0x570683;}}catch{if('\x6e\x6c\x53\x53\x69'!==_0x3bf39c(0x44a,'\x5b\x21\x6c\x4b'))return;else _0x1d8a2f='';}if(captureBodiesEnabled(this[_0x3bf39c(0x511,'\x77\x40\x4d\x76')])){if(_0x3bf39c(0x291,'\x4a\x40\x4d\x51')!==_0x3bf39c(0x301,'\x41\x45\x5a\x75')){const _0xa2453a=_0x1d0a06['\x74\x72\x69\x6d']();if(!_0xa2453a[_0x3bf39c(0x6cf,'\x70\x48\x33\x5a')+'\x74\x68']('\x7b'))return _0x2706a0(_0xa2453a)||_0x530c15(_0xa2453a);try{_0x4f8df1=_0x574454[_0x3bf39c(0x3b6,'\x55\x66\x35\x74')](_0xa2453a);}catch{return'';}}else this[_0x3bf39c(0x7c8,'\x43\x6b\x7a\x5d')+_0x3bf39c(0x798,'\x5e\x25\x6e\x55')+_0x3bf39c(0x8c3,'\x73\x47\x57\x6a')](_0x4f23cf),this[_0x3bf39c(0x2f3,'\x33\x53\x59\x55')+_0x3bf39c(0x2cd,'\x64\x77\x74\x2a')+_0x3bf39c(0x7d5,'\x49\x56\x70\x4d')+'\x6c'](_0x4f23cf);}this[_0x3bf39c(0x35d,'\x4a\x40\x4d\x51')+'\x65\x64'](_0x4f23cf);}[_0x1a83f6(0x3cc,'\x26\x49\x5d\x5d')+_0x1a83f6(0x4f7,'\x42\x6f\x57\x21')+_0x1a83f6(0x8c3,'\x73\x47\x57\x6a')](_0x5e8032){const _0xffde8d=_0x1a83f6;if(this[_0xffde8d(0x431,'\x78\x58\x46\x63')+_0xffde8d(0x460,'\x28\x39\x6a\x36')+_0xffde8d(0x56f,'\x77\x40\x4d\x76')])return;let _0x13a11b=0x11ea*-0x2+0x18f+-0x1f*-0x11b;try{_0xffde8d(0x366,'\x6d\x51\x71\x51')===_0xffde8d(0x6da,'\x54\x5b\x67\x52')?_0x13a11b=Buffer[_0xffde8d(0x262,'\x73\x47\x57\x6a')+'\x74\x68'](JSON[_0xffde8d(0x6cb,'\x28\x74\x79\x54')+'\x79'](_0x5e8032),_0xffde8d(0x65d,'\x4a\x40\x4d\x51')):_0x52a6b3[_0xffde8d(0x3a2,'\x69\x44\x5e\x35')]({'\x61\x74\x74\x65\x6d\x70\x74\x5f\x69\x6e\x64\x65\x78':0x1,'\x6d\x6f\x64\x65\x6c':_0x27ec4f[_0xffde8d(0x7e2,'\x47\x45\x4d\x32')],'\x70\x72\x6f\x76\x69\x64\x65\x72':_0x2ff9de[_0xffde8d(0x864,'\x5e\x25\x6e\x55')],'\x75\x70\x73\x74\x72\x65\x61\x6d\x5f\x6d\x6f\x64\x65':_0x4a2fa6[_0xffde8d(0x7cf,'\x78\x58\x46\x63')],'\x73\x74\x61\x74\x75\x73':_0x22c99b[_0xffde8d(0x34d,'\x73\x47\x57\x6a')+'\x64\x65'],'\x65\x72\x72\x6f\x72':_0x1fd105,'\x72\x65\x71\x75\x65\x73\x74\x42\x6f\x64\x79':_0xd470c7});}catch{if(_0xffde8d(0x214,'\x43\x6b\x7a\x5d')==='\x6d\x6f\x4c\x78\x4f'){const _0x3829c9=_0x285531(_0x4a3b87[_0xffde8d(0x524,'\x33\x28\x62\x59')],_0x233604);_0x4a0c84(_0xb303ef,_0x101830,_0x252192,{'\x73\x74\x61\x74\x75\x73':_0x3829c9['\x73\x74\x61\x74\x75\x73\x43\x6f'+'\x64\x65'],'\x73\x74\x72\x65\x61\x6d':![],'\x65\x72\x72\x6f\x72':_0x3829c9[_0xffde8d(0x2f7,'\x52\x23\x32\x21')]},_0x529898);throw _0x3829c9;}else return;}if(this['\x72\x65\x73\x70\x6f\x6e\x73\x65'+_0xffde8d(0x4ab,'\x44\x4a\x71\x76')]['\x6c\x65\x6e\x67\x74\x68']>=this[_0xffde8d(0x455,'\x78\x5b\x47\x72')][_0xffde8d(0x33d,'\x47\x45\x4d\x32')+_0xffde8d(0x42e,'\x70\x48\x33\x5a')]||this[_0xffde8d(0x6de,'\x26\x49\x5d\x5d')+_0xffde8d(0x706,'\x33\x69\x21\x55')+'\x65\x73']+_0x13a11b>this[_0xffde8d(0x672,'\x63\x6b\x2a\x26')][_0xffde8d(0x670,'\x50\x25\x42\x51')+_0xffde8d(0x93a,'\x7a\x46\x50\x4e')]){this[_0xffde8d(0x6e6,'\x51\x76\x53\x5a')+'\x43\x68\x75\x6e\x6b\x73\x54\x72'+_0xffde8d(0x8ab,'\x78\x5b\x47\x72')]=!![];return;}this[_0xffde8d(0x903,'\x21\x64\x4f\x62')+_0xffde8d(0x7f5,'\x73\x47\x57\x6a')][_0xffde8d(0x408,'\x4a\x40\x4d\x51')](_0x5e8032),this[_0xffde8d(0x7c3,'\x23\x7a\x48\x73')+_0xffde8d(0x3eb,'\x28\x74\x79\x54')+'\x65\x73']+=_0x13a11b;}[_0x1a83f6(0x8df,'\x78\x58\x46\x63')+_0x1a83f6(0x260,'\x78\x5b\x47\x72')+_0x1a83f6(0x5f8,'\x6d\x69\x21\x38')+'\x6c'](_0x28ae3a){const _0x464675=_0x1a83f6;if(!this[_0x464675(0x7c3,'\x23\x7a\x48\x73')+_0x464675(0x9a6,'\x41\x45\x5a\x75')+_0x464675(0x563,'\x6d\x69\x21\x38')])return;for(const _0x2a37f9 of semanticTailEvents(_0x28ae3a))this['\x70\x75\x73\x68\x53\x65\x6d\x61'+_0x464675(0x76c,'\x6d\x78\x4f\x5a')+'\x45\x76\x65\x6e\x74'](_0x2a37f9);}[_0x1a83f6(0x917,'\x28\x74\x79\x54')+_0x1a83f6(0x2f4,'\x23\x7a\x48\x73')+_0x1a83f6(0x6a7,'\x50\x25\x42\x51')](_0x113ce3){const _0x5269d3=_0x1a83f6,_0x179771=captureBody(_0x113ce3,this[_0x5269d3(0x2ac,'\x4a\x40\x4d\x51')]);if(!_0x179771)return;let _0xa97814;try{_0xa97814=JSON[_0x5269d3(0x481,'\x48\x42\x51\x46')](_0x179771['\x62\x6f\x64\x79']);}catch{_0xa97814=_0x179771[_0x5269d3(0x414,'\x5e\x25\x6e\x55')];}let _0x44a2a7=-0x1f33+-0x1c70+0x3ba3;try{_0x44a2a7=Buffer['\x62\x79\x74\x65\x4c\x65\x6e\x67'+'\x74\x68'](JSON[_0x5269d3(0x247,'\x4b\x4d\x4a\x30')+'\x79'](_0xa97814),'\x75\x74\x66\x38');}catch{if(_0x5269d3(0x4ff,'\x4b\x50\x6f\x48')===_0x5269d3(0x732,'\x26\x49\x5d\x5d')){if(typeof _0x36890c===_0x5269d3(0x64b,'\x43\x6b\x7a\x5d'))return _0x3e9abc;if(!_0xb4f2b4(_0x31d911))return'';for(const _0x3105ab of[_0x5269d3(0x4d9,'\x70\x48\x33\x5a'),'\x69\x6e\x70\x75\x74\x5f\x74\x65'+'\x78\x74',_0x5269d3(0x801,'\x51\x76\x53\x5a')+_0x5269d3(0x614,'\x33\x53\x59\x55'),_0x5269d3(0x4ca,'\x51\x76\x53\x5a')]){const _0x45f267=_0x19b817[_0x3105ab];if(typeof _0x45f267==='\x73\x74\x72\x69\x6e\x67')return _0x45f267;}return'';}else return;}if(_0x44a2a7>this['\x6c\x69\x6d\x69\x74\x73'][_0x5269d3(0x268,'\x21\x64\x4f\x62')+_0x5269d3(0x9a3,'\x58\x31\x78\x39')+'\x79\x74\x65\x73']){if(_0x5269d3(0x979,'\x6d\x69\x21\x38')!==_0x5269d3(0x75f,'\x5b\x21\x6c\x4b')){if(_0x2b023d[_0x5269d3(0x2a9,'\x5b\x21\x6c\x4b')]||_0x15916c[_0x5269d3(0x71a,'\x43\x6b\x7a\x5d')]!==_0x5269d3(0x5bb,'\x6d\x78\x4f\x5a'))return![];if(!_0x3e02b8[_0x5269d3(0x4a5,'\x70\x48\x33\x5a')+'\x79']||!_0x32a722[_0x5269d3(0x32c,'\x52\x23\x32\x21')+_0x5269d3(0x475,'\x6d\x51\x71\x51')]||_0x167c4e[_0x5269d3(0x6bd,'\x55\x66\x35\x74')+'\x64\x65\x6c']===_0x19e015[_0x5269d3(0x709,'\x50\x25\x42\x51')])return![];return _0x46b8d3[_0x5269d3(0x515,'\x28\x74\x79\x54')]>=0xa*0x2e3+-0x1*0xe5d+-0xc8d||_0x58c9a8[_0x5269d3(0x310,'\x28\x74\x79\x54')](_0x1ca6a4[_0x5269d3(0x6f0,'\x39\x6f\x42\x76')]);}else{this['\x73\x65\x6d\x61\x6e\x74\x69\x63'+_0x5269d3(0x5d5,'\x49\x56\x70\x4d')+_0x5269d3(0x65f,'\x26\x6d\x46\x41')+_0x5269d3(0x8f9,'\x7a\x46\x50\x4e')]=!![],this[_0x5269d3(0x3de,'\x78\x5b\x47\x72')+_0x5269d3(0x299,'\x5e\x25\x6e\x55')+_0x5269d3(0x3fc,'\x45\x31\x75\x66')+_0x5269d3(0x223,'\x73\x53\x6c\x4e')]+=-0x1*0xefc+0xace+0x42f;return;}}while(this['\x73\x65\x6d\x61\x6e\x74\x69\x63'+_0x5269d3(0x7b2,'\x73\x53\x6c\x4e')+'\x74\x73'][_0x5269d3(0x6f7,'\x4a\x40\x4d\x51')]>=this[_0x5269d3(0x672,'\x63\x6b\x2a\x26')][_0x5269d3(0x275,'\x33\x28\x62\x59')+'\x54\x61\x69\x6c\x4d\x61\x78\x45'+_0x5269d3(0x2a0,'\x44\x4a\x71\x76')]||this[_0x5269d3(0x45a,'\x73\x47\x57\x6a')+_0x5269d3(0x6a5,'\x37\x4c\x29\x65')+'\x73']+_0x44a2a7>this[_0x5269d3(0x2d6,'\x47\x45\x4d\x32')][_0x5269d3(0x96e,'\x78\x5b\x47\x72')+_0x5269d3(0x24d,'\x73\x47\x57\x6a')+_0x5269d3(0x75b,'\x43\x6b\x7a\x5d')]){if(_0x5269d3(0x991,'\x37\x4c\x29\x65')===_0x5269d3(0x2a3,'\x78\x5b\x47\x72')){const _0xdc69bb=this[_0x5269d3(0x4cc,'\x5e\x25\x6e\x55')+'\x54\x61\x69\x6c\x45\x76\x65\x6e'+'\x74\x73'][_0x5269d3(0x2c3,'\x44\x4a\x71\x76')]();if(_0xdc69bb===undefined)break;this['\x73\x65\x6d\x61\x6e\x74\x69\x63'+_0x5269d3(0x4a7,'\x23\x7a\x48\x73')+'\x74\x73\x54\x72\x75\x6e\x63\x61'+_0x5269d3(0x52a,'\x4a\x40\x4d\x51')]=!![],this[_0x5269d3(0x453,'\x69\x44\x5e\x35')+_0x5269d3(0x872,'\x59\x64\x43\x26')+_0x5269d3(0x5e2,'\x70\x48\x33\x5a')+_0x5269d3(0x928,'\x52\x23\x32\x21')]+=0x217a*0x1+0x22e9+0x1*-0x4462;try{if(_0x5269d3(0x20a,'\x50\x25\x42\x51')!==_0x5269d3(0x531,'\x54\x5b\x67\x52'))this[_0x5269d3(0x275,'\x33\x28\x62\x59')+_0x5269d3(0x566,'\x78\x5b\x47\x72')+'\x73']-=Buffer[_0x5269d3(0x7dd,'\x21\x64\x4f\x62')+'\x74\x68'](JSON[_0x5269d3(0x3a1,'\x73\x53\x6c\x4e')+'\x79'](_0xdc69bb),_0x5269d3(0x35e,'\x6d\x69\x21\x38'));else{if(!_0x1d13b1(_0xd45205))return _0x1a4648;const _0x334326=typeof _0xf6c960[_0x5269d3(0x621,'\x4a\x40\x4d\x51')]===_0x5269d3(0x33f,'\x57\x6d\x76\x52')?_0x1b0161[_0x5269d3(0x222,'\x64\x77\x74\x2a')]:'',_0x4804d7=typeof _0x9bcb04[_0x5269d3(0x995,'\x74\x31\x42\x29')]===_0x5269d3(0x3ab,'\x77\x40\x4d\x76')?_0x549ac3[_0x5269d3(0x5de,'\x45\x31\x75\x66')]:'',_0x4b3307=_0x1a0a34(_0x34fea4[_0x5269d3(0x77f,'\x78\x5b\x47\x72')])?_0x1fdbe2['\x66\x75\x6e\x63\x74\x69\x6f\x6e']:_0xdaac7e,_0x3838f3=_0x334326==='\x66\x75\x6e\x63\x74\x69\x6f\x6e'+'\x5f\x63\x61\x6c\x6c'||_0x334326===_0x5269d3(0x4b5,'\x28\x39\x6a\x36')||_0x334326===_0x5269d3(0x5dc,'\x45\x31\x75\x66')+_0x5269d3(0x5c0,'\x6d\x51\x71\x51')+_0x5269d3(0x925,'\x45\x31\x75\x66')||_0x334326==='\x74\x6f\x6f\x6c\x5f\x72\x65\x73'+_0x5269d3(0x38c,'\x41\x45\x5a\x75')||_0x4804d7===_0x5269d3(0x714,'\x50\x25\x42\x51')||_0x2dca58[_0x5269d3(0x519,'\x64\x77\x74\x2a')](_0x4e7e03[_0x5269d3(0x961,'\x7a\x46\x50\x4e')+'\x6c\x73'])||_0x4b3307!==_0x7be1b;if(!_0x3838f3)return _0x3a18fb;const _0x57ad9c=_0x3cf6db(_0x146145,['\x69\x64',_0x5269d3(0x7e8,'\x33\x53\x59\x55'),_0x5269d3(0x237,'\x5b\x21\x6c\x4b'),_0x5269d3(0x3ce,'\x58\x31\x78\x39'),_0x5269d3(0x7bc,'\x73\x47\x57\x6a')+_0x5269d3(0x592,'\x6d\x69\x21\x38'),_0x5269d3(0x6ee,'\x43\x6b\x7a\x5d')+_0x5269d3(0x4b4,'\x66\x54\x6a\x5e'),_0x5269d3(0x383,'\x69\x44\x5e\x35'),_0x5269d3(0x655,'\x26\x49\x5d\x5d')+'\x73',_0x5269d3(0x2e1,'\x74\x31\x42\x29'),_0x5269d3(0x51a,'\x37\x4c\x29\x65'),_0x5269d3(0x6c3,'\x54\x5b\x67\x52'),_0x5269d3(0x663,'\x6d\x51\x71\x51'),'\x69\x6e\x64\x65\x78',_0x5269d3(0x916,'\x59\x64\x43\x26')+_0x5269d3(0x85a,'\x21\x64\x4f\x62')]);if(_0x11b8fe[_0x5269d3(0x686,'\x77\x40\x4d\x76')](_0x114a11[_0x5269d3(0x53b,'\x54\x5b\x67\x52')+'\x6c\x73']))_0x57ad9c[_0x5269d3(0x53b,'\x54\x5b\x67\x52')+'\x6c\x73']=_0x5b95cf[_0x5269d3(0x929,'\x5b\x21\x6c\x4b')+'\x6c\x73'];if(_0x4b3307)_0x57ad9c[_0x5269d3(0x731,'\x74\x31\x42\x29')]=_0x3b10ca(_0x4b3307,[_0x5269d3(0x5d9,'\x49\x56\x70\x4d'),_0x5269d3(0x67e,'\x66\x54\x6a\x5e')+'\x73']);return _0x96570f['\x6b\x65\x79\x73'](_0x57ad9c)[_0x5269d3(0x74a,'\x50\x25\x42\x51')]>-0x209e+0x1e95*0x1+0x209?_0x57ad9c:_0x1c2815;}}catch{if(_0x5269d3(0x8d0,'\x44\x4a\x71\x76')===_0x5269d3(0x238,'\x45\x31\x75\x66'))return _0x2a3dd1[_0x5269d3(0x721,'\x39\x6f\x42\x76')+'\x79'](_0xcfc365);else this[_0x5269d3(0x275,'\x33\x28\x62\x59')+_0x5269d3(0x6a5,'\x37\x4c\x29\x65')+'\x73']=-0x1760+-0x649*0x1+0x3*0x9e3;}}else{for(const _0x4c75d9 of _0x423723){const _0xb0f552=_0x5418b3[_0x4c75d9];if(typeof _0xb0f552===_0x5269d3(0x258,'\x33\x53\x59\x55')&&_0xb0f552[_0x5269d3(0x4cb,'\x28\x74\x79\x54')]())return _0xb0f552[_0x5269d3(0x60b,'\x21\x64\x4f\x62')]();}return _0x48d9a6;}}this[_0x5269d3(0x657,'\x26\x6d\x46\x41')+_0x5269d3(0x676,'\x4a\x40\x4d\x51')+'\x74\x73'][_0x5269d3(0x321,'\x78\x5b\x47\x72')](_0xa97814),this['\x73\x65\x6d\x61\x6e\x74\x69\x63'+_0x5269d3(0x939,'\x28\x74\x79\x54')+'\x73']+=_0x44a2a7;}[_0x1a83f6(0x88d,'\x28\x74\x79\x54')+'\x65\x64'](_0x2c9b24){const _0x3080d4=_0x1a83f6;if(Array[_0x3080d4(0x6a3,'\x31\x75\x65\x6f')](_0x2c9b24)){for(const _0x1c5d11 of _0x2c9b24)this[_0x3080d4(0x658,'\x4b\x50\x6f\x48')+'\x65\x64'](_0x1c5d11);return;}mergeTraceMeta(this[_0x3080d4(0x947,'\x7a\x46\x50\x4e')],providerMeta(this[_0x3080d4(0x363,'\x33\x69\x21\x55')],_0x2c9b24));}}function getHeader(_0x3d7e4b,_0x5e5c72){const _0x41d680=_0x1a83f6,_0x1f2ce6=_0x5e5c72[_0x41d680(0x217,'\x47\x45\x4d\x32')+_0x41d680(0x6ec,'\x66\x54\x6a\x5e')]();for(const [_0x4d7d1b,_0x6565bc]of Object[_0x41d680(0x791,'\x73\x47\x57\x6a')](_0x3d7e4b)){if(_0x4d7d1b[_0x41d680(0x434,'\x5b\x21\x6c\x4b')+'\x61\x73\x65']()===_0x1f2ce6&&_0x6565bc)return _0x6565bc;}return'';}function clip(_0x5977b1,_0x35d9f4=-0x1fd*-0x9+-0x20aa+0xf45){const _0x5554d5=_0x1a83f6;return _0x5977b1[_0x5554d5(0x3bc,'\x64\x77\x74\x2a')]<=_0x35d9f4?_0x5977b1:_0x5977b1[_0x5554d5(0x433,'\x6d\x51\x71\x51')](-0x1*-0x2cf+-0x1829+0x155a,_0x35d9f4);}function safeTraceError(_0x4409e9,_0x211e28=-0x21db+0x14b7+0xe24){const _0x59a03c=_0x1a83f6;return clip(redactText(_0x4409e9)[_0x59a03c(0x76e,'\x6d\x69\x21\x38')](/\s+/g,'\x20')[_0x59a03c(0x3ec,'\x52\x23\x32\x21')](),_0x211e28);}function safePlainSessionId(_0x4e0040){const _0x532ecf=_0x1a83f6,_0x233434=_0x4e0040[_0x532ecf(0x994,'\x44\x4a\x71\x76')]();if(_0x233434!==_0x4e0040)return'';if(_0x233434[_0x532ecf(0x6c8,'\x4b\x4d\x4a\x30')]<-0x18*-0x167+-0x21c3+0x1f||_0x233434['\x6c\x65\x6e\x67\x74\x68']>0x739+0x3*0x74a+0xd*-0x233)return'';if(_0x233434[_0x532ecf(0x64e,'\x63\x6b\x2a\x26')]('\x40')||/\s/[_0x532ecf(0x643,'\x78\x58\x46\x63')](_0x233434))return'';if(!/^[A-Za-z0-9][A-Za-z0-9._-]*[A-Za-z0-9]$/[_0x532ecf(0x649,'\x6d\x78\x4f\x5a')](_0x233434))return'';if(/^(?:bearer|basic|sk-|ghp_|github_pat_|gho_|ghu_|ghs_|glpat-|xox[baprs]-)/i[_0x532ecf(0x7df,'\x78\x5b\x47\x72')](_0x233434))return'';if(/^[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+$/[_0x532ecf(0x8d6,'\x69\x44\x5e\x35')](_0x233434))return'';if(/(?:^|[-_.])(?:token|secret|apikey|api[_-]?key|password|passwd|credential|auth)(?:$|[-_.])/i[_0x532ecf(0x6a4,'\x66\x54\x6a\x5e')](_0x233434))return'';if(/^[a-f0-9]{32,}$/i[_0x532ecf(0x8d3,'\x33\x69\x21\x55')](_0x233434))return'';if(/^[A-Za-z0-9_-]{40,}$/[_0x532ecf(0x37e,'\x5b\x21\x6c\x4b')](_0x233434)&&!/[-_.]/[_0x532ecf(0x4c7,'\x6d\x69\x21\x38')](_0x233434))return'';if(/(?:session|sess)/i[_0x532ecf(0x32b,'\x54\x5b\x67\x52')](_0x233434))return _0x233434;return/[-_.]/[_0x532ecf(0x2d7,'\x21\x64\x4f\x62')](_0x233434)?_0x233434:'';}function sessionIdFromPlainField(_0x2f800c){const _0x898579=_0x1a83f6;return typeof _0x2f800c===_0x898579(0x87a,'\x24\x6f\x4f\x58')?safePlainSessionId(_0x2f800c):'';}function sessionIdFromClaudeUserId(_0x153b3d){const _0x5eb44d=_0x1a83f6,_0x4d8675=_0x5eb44d(0x300,'\x70\x48\x33\x5a')+'\x6e\x5f',_0x53cf8b=_0x153b3d[_0x5eb44d(0x7fa,'\x48\x42\x51\x46')](_0x4d8675);if(_0x53cf8b<-0x2b*0xde+0x26*-0xe8+0x47ba)return'';return safePlainSessionId(_0x153b3d[_0x5eb44d(0x440,'\x4b\x50\x6f\x48')](_0x53cf8b+_0x4d8675[_0x5eb44d(0x97b,'\x45\x31\x75\x66')]));}function sessionIdFromUserField(_0x3f5e9a){const _0xecb1d3=_0x1a83f6;if(!_0x3f5e9a)return'';let _0x83a789=_0x3f5e9a;if(typeof _0x3f5e9a===_0xecb1d3(0x6d9,'\x23\x7a\x48\x73')){if('\x6f\x64\x6c\x65\x65'!==_0xecb1d3(0x5f4,'\x4b\x4d\x4a\x30'))this[_0xecb1d3(0x745,'\x5e\x25\x6e\x55')+_0xecb1d3(0x21d,'\x26\x49\x5d\x5d')+'\x79\x43\x68\x75\x6e\x6b'](_0x95b50),this[_0xecb1d3(0x46d,'\x69\x44\x5e\x35')+'\x61\x72\x73\x65\x64\x53\x65\x6d'+_0xecb1d3(0x68f,'\x4b\x40\x5b\x51')+'\x6c'](_0x11bb68);else{const _0x527423=_0x3f5e9a[_0xecb1d3(0x868,'\x78\x5b\x47\x72')]();if(!_0x527423['\x73\x74\x61\x72\x74\x73\x57\x69'+'\x74\x68']('\x7b'))return sessionIdFromClaudeUserId(_0x527423)||safePlainSessionId(_0x527423);try{_0x83a789=JSON[_0xecb1d3(0x8a7,'\x51\x76\x53\x5a')](_0x527423);}catch{if(_0xecb1d3(0x805,'\x6d\x69\x21\x38')!==_0xecb1d3(0x64f,'\x24\x6f\x4f\x58')){const _0x305c7c=_0x396393[_0xecb1d3(0x609,'\x66\x54\x6a\x5e')+_0xecb1d3(0x590,'\x78\x58\x46\x63')]('\x3a');if(_0x305c7c===-(0x1752+0x20d*-0x8+-0x6e9))return{'\x6d\x6f\x64\x65\x6c':_0x103cd4,'\x61\x63\x74\x69\x6f\x6e':''};return{'\x6d\x6f\x64\x65\x6c':_0x5a8fa5['\x73\x6c\x69\x63\x65'](-0x2482*-0x1+-0x5*0xf9+-0x1fa5,_0x305c7c),'\x61\x63\x74\x69\x6f\x6e':_0x25d455['\x73\x6c\x69\x63\x65'](_0x305c7c+(0xf6e+0x1a37+-0x1a*0x19a))};}else return'';}}}if(_0x83a789&&typeof _0x83a789===_0xecb1d3(0x3d8,'\x31\x75\x65\x6f')){if(_0xecb1d3(0x627,'\x51\x76\x53\x5a')===_0xecb1d3(0x664,'\x58\x31\x78\x39')){const _0x4188b2=_0x83a789[_0xecb1d3(0x2c1,'\x33\x69\x21\x55')+'\x69\x64'];if(typeof _0x4188b2==='\x73\x74\x72\x69\x6e\x67'&&_0x4188b2[_0xecb1d3(0x322,'\x49\x56\x70\x4d')]>0x2*-0xa31+-0xaed+-0xe5*-0x23)return safePlainSessionId(_0x4188b2);}else{const _0x2953a3=_0x4138f8[_0xecb1d3(0x771,'\x70\x48\x33\x5a')]??_0x349984,_0x169dcf=_0x5d72c0[_0xecb1d3(0x551,'\x50\x25\x42\x51')]??_0x83c42d.env;return async _0x58b40b=>{const _0x520eca=_0xecb1d3,_0x529fdf=_0x4cbfed(_0x58b40b[_0x520eca(0x3ed,'\x33\x28\x62\x59')]?.[_0x520eca(0x7ee,'\x26\x49\x5d\x5d')]??''),_0x1d3ce5=_0x1c6636(_0x58b40b[_0x520eca(0x6ef,'\x47\x45\x4d\x32')]?.[_0x520eca(0x862,'\x73\x53\x6c\x4e')]??''),{model:_0x36ec1e,action:_0x2b472e}=_0x16b2fc(_0x58b40b[_0x520eca(0x90d,'\x70\x48\x33\x5a')]?.[_0x520eca(0x596,'\x78\x58\x46\x63')+_0x520eca(0x66d,'\x45\x31\x75\x66')]??''),_0x22a30b=_0xa85e6b(_0x58b40b[_0x520eca(0x7ce,'\x6d\x69\x21\x38')]);return _0x2bbf5f({'\x70\x72\x6f\x78\x79':_0x56180f[_0x520eca(0x74d,'\x33\x69\x21\x55')+_0x520eca(0x5f0,'\x4a\x40\x4d\x51')],'\x70\x72\x6f\x76\x69\x64\x65\x72':'\x76\x65\x72\x74\x65\x78','\x72\x6f\x75\x74\x65':_0x520eca(0x96b,'\x5e\x25\x6e\x55')+_0x520eca(0x743,'\x31\x75\x65\x6f')+_0x529fdf+('\x2f\x6c\x6f\x63\x61\x74\x69\x6f'+_0x520eca(0x6e2,'\x21\x64\x4f\x62'))+_0x1d3ce5+(_0x520eca(0x52f,'\x78\x5b\x47\x72')+_0x520eca(0x5c2,'\x42\x6f\x57\x21')+_0x520eca(0x692,'\x43\x6b\x7a\x5d')+'\x73\x2f')+_0x36ec1e+'\x3a'+_0x2b472e,'\x75\x70\x73\x74\x72\x65\x61\x6d\x50\x61\x74\x68':_0x520eca(0x859,'\x7a\x46\x50\x4e')+_0x520eca(0x5ee,'\x50\x25\x42\x51')+_0x11be1b(_0x529fdf)+(_0x520eca(0x937,'\x66\x54\x6a\x5e')+_0x520eca(0x57c,'\x66\x54\x6a\x5e'))+_0x22ae59(_0x1d3ce5)+('\x2f\x70\x75\x62\x6c\x69\x73\x68'+_0x520eca(0x6bb,'\x33\x53\x59\x55')+_0x520eca(0x956,'\x47\x45\x4d\x32')+'\x73\x2f')+_0x315d4c(_0x36ec1e)+'\x3a'+_0x2b472e+_0x22a30b,'\x6d\x6f\x64\x65\x6c':_0x36ec1e,'\x62\x6f\x64\x79':_0x58b40b[_0x520eca(0x244,'\x52\x23\x32\x21')],'\x68\x65\x61\x64\x65\x72\x73':_0x58b40b[_0x520eca(0x25a,'\x78\x5b\x47\x72')]??{},'\x6c\x6f\x67\x67\x65\x72':_0x2953a3,'\x62\x61\x73\x65\x55\x72\x6c':_0x7c9ce4(_0x1d3ce5,_0x169dcf),..._0x166d5c[_0x520eca(0x7d6,'\x28\x74\x79\x54')]?{'\x6f\x6e\x54\x72\x61\x63\x65':_0xa3655b[_0x520eca(0x8da,'\x4b\x4d\x4a\x30')]}:{},..._0xcfaa90[_0x520eca(0x451,'\x52\x23\x32\x21')]?{'\x63\x6c\x6f\x63\x6b':_0x829b32[_0x520eca(0x611,'\x45\x31\x75\x66')]}:{},'\x65\x6e\x76':_0x169dcf});};}}return'';}function extractSessionId(_0x203b48,_0x54367f){const _0x1a5a1d=_0x1a83f6;for(const _0x44a058 of[_0x1a5a1d(0x4fe,'\x5e\x25\x6e\x55')+'\x6e\x2d\x69\x64',_0x1a5a1d(0x5fc,'\x7a\x46\x50\x4e')+_0x1a5a1d(0x9a1,'\x4b\x50\x6f\x48')+'\x2d\x69\x64',_0x1a5a1d(0x2ef,'\x42\x6f\x57\x21')+_0x1a5a1d(0x63c,'\x24\x6f\x4f\x58')+'\x64']){if(_0x1a5a1d(0x6c6,'\x26\x49\x5d\x5d')!==_0x1a5a1d(0x59f,'\x26\x6d\x46\x41')){const _0x272215=getHeader(_0x203b48,_0x44a058)[_0x1a5a1d(0x33a,'\x33\x53\x59\x55')](),_0x28dde0=sessionIdFromPlainField(_0x272215);if(_0x28dde0)return clip(_0x28dde0);}else{if(_0x34b7f9[_0x1a5a1d(0x58c,'\x4b\x4d\x4a\x30')+_0x1a5a1d(0x888,'\x28\x74\x79\x54')]()===_0x30faf0&&_0x839408)return _0x17820f;}}const _0x38f609=_0x54367f[_0x1a5a1d(0x207,'\x26\x49\x5d\x5d')];if(isRecord(_0x38f609)){if('\x72\x48\x44\x4c\x6b'!==_0x1a5a1d(0x36d,'\x4b\x40\x5b\x51')){const _0x85e0eb=_0x86436a(_0x4fba10,_0x1a5a1d(0x54a,'\x28\x74\x79\x54')+'\x6e\x74')[_0x1a5a1d(0x2dc,'\x5e\x25\x6e\x55')+_0x1a5a1d(0x920,'\x45\x31\x75\x66')]();if(_0x85e0eb[_0x1a5a1d(0x39c,'\x66\x54\x6a\x5e')]('\x63\x6c\x61\x75\x64\x65'))return _0x1a5a1d(0x320,'\x63\x6b\x2a\x26')+'\x6f\x64\x65';if(_0x85e0eb[_0x1a5a1d(0x7a6,'\x5b\x21\x6c\x4b')]('\x63\x75\x72\x73\x6f\x72'))return _0x1a5a1d(0x307,'\x37\x4c\x29\x65');if(_0x85e0eb[_0x1a5a1d(0x605,'\x42\x6f\x57\x21')](_0x1a5a1d(0x8c5,'\x31\x75\x65\x6f')))return _0x1a5a1d(0x6e4,'\x44\x4a\x71\x76');return _0x1a5a1d(0x6c0,'\x28\x74\x79\x54');}else{const _0x2fb50d=sessionIdFromUserField(_0x38f609['\x75\x73\x65\x72\x5f\x69\x64'])||sessionIdFromPlainField(_0x38f609[_0x1a5a1d(0x915,'\x21\x64\x4f\x62')+'\x69\x64']);if(_0x2fb50d)return clip(_0x2fb50d);}}const _0x4cdfbf=sessionIdFromUserField(_0x54367f[_0x1a5a1d(0x95d,'\x54\x5b\x67\x52')]);if(_0x4cdfbf)return clip(_0x4cdfbf);return null;}function extractTopLevelUserIdHash(_0x5a1937){const _0x367459=_0x1a83f6,_0x32fa31=_0x5a1937[_0x367459(0x4ba,'\x73\x53\x6c\x4e')];if(isRecord(_0x32fa31)){if(_0x367459(0x411,'\x63\x6b\x2a\x26')!==_0x367459(0x346,'\x28\x39\x6a\x36'))_0x646156=_0x45dfb3[_0x367459(0x210,'\x28\x74\x79\x54')+'\x74\x68'](_0x18fa00[_0x367459(0x379,'\x21\x64\x4f\x62')+'\x79'](_0x4ee18c),_0x367459(0x445,'\x78\x5b\x47\x72'));else{const _0x33b5e4=_0x32fa31[_0x367459(0x970,'\x6d\x51\x71\x51')];if(typeof _0x33b5e4===_0x367459(0x52d,'\x7a\x46\x50\x4e')||typeof _0x33b5e4===_0x367459(0x365,'\x54\x5b\x67\x52'))return stableUserIdHash(_0x33b5e4);}}const _0x4e3c25=_0x5a1937['\x75\x73\x65\x72'];if(typeof _0x4e3c25==='\x73\x74\x72\x69\x6e\x67'||typeof _0x4e3c25==='\x6e\x75\x6d\x62\x65\x72')return stableUserIdHash(_0x4e3c25);return undefined;}function extractPreviousResponseId(_0x2955ab){const _0x4b7d4e=_0x1a83f6,_0xc8c9d6=_0x2955ab[_0x4b7d4e(0x529,'\x6d\x69\x21\x38')+_0x4b7d4e(0x485,'\x42\x6f\x57\x21')+'\x65\x5f\x69\x64'];return typeof _0xc8c9d6===_0x4b7d4e(0x8b5,'\x4a\x40\x4d\x51')&&_0xc8c9d6['\x6c\x65\x6e\x67\x74\x68']>0x1cc6+-0x1b0+0x2*-0xd8b?clip(_0xc8c9d6):null;}function retryHeadersForMutatedOpenAIRequest(_0x45ab0a){const _0x7b8134=_0x1a83f6,_0x4e3c7f={..._0x45ab0a};for(const _0x5ea086 of Object[_0x7b8134(0x41a,'\x26\x6d\x46\x41')](_0x4e3c7f)){const _0x537712=_0x5ea086[_0x7b8134(0x99a,'\x6d\x78\x4f\x5a')+_0x7b8134(0x4a3,'\x52\x23\x32\x21')]();if(_0x537712===_0x7b8134(0x701,'\x78\x5b\x47\x72')+_0x7b8134(0x788,'\x7a\x46\x50\x4e')||_0x537712[_0x7b8134(0x89d,'\x58\x31\x78\x39')+'\x74\x68'](_0x7b8134(0x989,'\x26\x6d\x46\x41')+_0x7b8134(0x3b4,'\x26\x6d\x46\x41')+'\x79\x2d'))delete _0x4e3c7f[_0x5ea086];}return _0x4e3c7f;}function detectClient(_0x34512a){const _0xaac32=_0x1a83f6,_0x3ac51d=getHeader(_0x34512a,_0xaac32(0x44c,'\x7a\x46\x50\x4e')+'\x6e\x74')[_0xaac32(0x722,'\x39\x6f\x42\x76')+'\x61\x73\x65']();if(_0x3ac51d[_0xaac32(0x2bb,'\x48\x42\x51\x46')](_0xaac32(0x5ae,'\x37\x4c\x29\x65')))return'\x63\x6c\x61\x75\x64\x65\x2d\x63'+_0xaac32(0x285,'\x57\x6d\x76\x52');if(_0x3ac51d[_0xaac32(0x879,'\x58\x31\x78\x39')](_0xaac32(0x92b,'\x6d\x51\x71\x51')))return'\x63\x75\x72\x73\x6f\x72';if(_0x3ac51d[_0xaac32(0x67d,'\x28\x74\x79\x54')]('\x63\x6f\x64\x65\x78'))return _0xaac32(0x2ec,'\x77\x40\x4d\x76');return _0xaac32(0x51e,'\x4b\x4d\x4a\x30');}function wireApiForTrace(_0x4cfbb2){const _0x200041=_0x1a83f6;if(_0x4cfbb2['\x70\x72\x6f\x76\x69\x64\x65\x72']===_0x200041(0x4b6,'\x26\x6d\x46\x41')&&_0x4cfbb2[_0x200041(0x93c,'\x70\x48\x33\x5a')+_0x200041(0x2b9,'\x6d\x69\x21\x38')]===_0x200041(0x898,'\x51\x76\x53\x5a')+'\x65\x73')return _0x200041(0x29a,'\x63\x6b\x2a\x26')+_0x200041(0x7f6,'\x45\x31\x75\x66');if(_0x4cfbb2[_0x200041(0x5df,'\x28\x74\x79\x54')]===_0x200041(0x4b6,'\x26\x6d\x46\x41')&&_0x4cfbb2['\x75\x70\x73\x74\x72\x65\x61\x6d'+_0x200041(0x370,'\x4b\x50\x6f\x48')]===_0x200041(0x7a5,'\x77\x40\x4d\x76')+_0x200041(0x554,'\x52\x23\x32\x21')+'\x73')return _0x200041(0x303,'\x73\x47\x57\x6a')+'\x68\x61\x74\x5f\x63\x6f\x6d\x70'+_0x200041(0x7db,'\x54\x5b\x67\x52');if(_0x4cfbb2[_0x200041(0x562,'\x33\x69\x21\x55')]===_0x200041(0x79c,'\x57\x6d\x76\x52'))return _0x200041(0x74e,'\x74\x31\x42\x29')+_0x200041(0x718,'\x33\x28\x62\x59')+'\x63\x6f\x6e\x74\x65\x6e\x74';if(_0x4cfbb2['\x70\x72\x6f\x76\x69\x64\x65\x72']===_0x200041(0x265,'\x26\x6d\x46\x41'))return _0x200041(0x48c,'\x24\x6f\x4f\x58')+_0x200041(0x75c,'\x70\x48\x33\x5a');if(_0x4cfbb2['\x70\x72\x6f\x76\x69\x64\x65\x72']===_0x200041(0x521,'\x4b\x4d\x4a\x30'))return _0x200041(0x56a,'\x74\x31\x42\x29')+'\x70\x69';return'\x61\x6e\x74\x68\x72\x6f\x70\x69'+_0x200041(0x680,'\x73\x47\x57\x6a')+'\x65\x73';}function captureTraceAttempts(_0x55dd38,_0x3c1a7b,_0x229e2a){return _0x55dd38['\x6d\x61\x70'](_0x3ad5a0=>{const _0x480c05=_0x515f;if(_0x480c05(0x7a9,'\x70\x48\x33\x5a')===_0x480c05(0x527,'\x69\x44\x5e\x35')){const _0x1c92c3={'\x61\x74\x74\x65\x6d\x70\x74\x5f\x69\x6e\x64\x65\x78':_0x3ad5a0[_0x480c05(0x28c,'\x42\x6f\x57\x21')+_0x480c05(0x5ce,'\x33\x69\x21\x55')],'\x6d\x6f\x64\x65\x6c':_0x3ad5a0[_0x480c05(0x858,'\x28\x74\x79\x54')],'\x70\x72\x6f\x76\x69\x64\x65\x72':_0x3ad5a0[_0x480c05(0x380,'\x77\x40\x4d\x76')],'\x75\x70\x73\x74\x72\x65\x61\x6d\x5f\x6d\x6f\x64\x65':_0x3ad5a0[_0x480c05(0x227,'\x49\x56\x70\x4d')+_0x480c05(0x50d,'\x59\x64\x43\x26')],'\x73\x74\x61\x74\x75\x73':_0x3ad5a0[_0x480c05(0x71c,'\x4b\x4d\x4a\x30')],..._0x3ad5a0[_0x480c05(0x23c,'\x24\x6f\x4f\x58')]!==undefined?{'\x65\x72\x72\x6f\x72':safeTraceError(_0x3ad5a0[_0x480c05(0x3dd,'\x78\x58\x46\x63')])}:{},..._0x3ad5a0[_0x480c05(0x2c5,'\x43\x6b\x7a\x5d')+'\x6e\x63\x61\x74\x65\x64']===!![]?{'\x62\x6f\x64\x79\x5f\x74\x72\x75\x6e\x63\x61\x74\x65\x64':!![]}:{}},_0x4a548e=_0x3c1a7b?captureBody(_0x3ad5a0[_0x480c05(0x298,'\x33\x28\x62\x59')+_0x480c05(0x700,'\x54\x5b\x67\x52')],_0x229e2a):undefined,_0x320b10=_0x3c1a7b&&_0x3ad5a0[_0x480c05(0x5ca,'\x28\x39\x6a\x36')+_0x480c05(0x2fc,'\x28\x74\x79\x54')]!==undefined?captureBody(_0x3ad5a0[_0x480c05(0x50f,'\x4b\x40\x5b\x51')+_0x480c05(0x3b9,'\x26\x49\x5d\x5d')],_0x229e2a):undefined;if(_0x4a548e)_0x1c92c3['\x72\x65\x71\x75\x65\x73\x74\x42'+_0x480c05(0x64a,'\x41\x45\x5a\x75')]=_0x4a548e[_0x480c05(0x7bb,'\x23\x7a\x48\x73')];if(_0x320b10)_0x1c92c3[_0x480c05(0x68a,'\x77\x40\x4d\x76')+_0x480c05(0x8b3,'\x52\x23\x32\x21')]=_0x320b10[_0x480c05(0x2c9,'\x4a\x40\x4d\x51')];if(_0x4a548e?.[_0x480c05(0x708,'\x70\x48\x33\x5a')+'\x64']||_0x320b10?.[_0x480c05(0x3d2,'\x33\x53\x59\x55')+'\x64']||_0x3ad5a0[_0x480c05(0x8ef,'\x41\x45\x5a\x75')+_0x480c05(0x89b,'\x55\x66\x35\x74')]===!![]||responseBodyIndicatesTruncation(_0x3ad5a0[_0x480c05(0x80f,'\x41\x45\x5a\x75')+'\x42\x6f\x64\x79']))_0x1c92c3[_0x480c05(0x4ec,'\x66\x54\x6a\x5e')+_0x480c05(0x95c,'\x26\x49\x5d\x5d')]=!![];return _0x1c92c3;}else{if(_0x2ccb51===_0x480c05(0x44e,'\x78\x58\x46\x63')+_0x480c05(0x4b8,'\x78\x5b\x47\x72'))return[_0x480c05(0x941,'\x45\x31\x75\x66')+_0x480c05(0x975,'\x33\x53\x59\x55')+_0x480c05(0x819,'\x51\x76\x53\x5a')+_0x480c05(0x73e,'\x77\x40\x4d\x76')+'\x45\x4c\x5f'+_0x3a40b7,_0x480c05(0x71d,'\x4b\x50\x6f\x48')+'\x50\x45\x4e\x41\x49\x5f\x52\x45'+_0x480c05(0x8bf,'\x33\x28\x62\x59')+_0x480c05(0x52b,'\x37\x4c\x29\x65')+_0x5786eb];return[_0x480c05(0x371,'\x28\x74\x79\x54')+_0x480c05(0x2ee,'\x54\x5b\x67\x52')+_0x480c05(0x263,'\x24\x6f\x4f\x58')+_0x480c05(0x79f,'\x78\x58\x46\x63')+_0x1307fc,_0x480c05(0x8f1,'\x59\x64\x43\x26')+'\x50\x45\x4e\x41\x49\x5f\x43\x48'+_0x480c05(0x2b1,'\x45\x31\x75\x66')+'\x5f'+_0x16b4d8];}});}function emitTrace(_0x12e914,_0x213735,_0x23d9dc,_0x13aa98,_0x4327bf){const _0x267548=_0x1a83f6;if(!_0x12e914[_0x267548(0x78d,'\x39\x6f\x42\x76')])return;const _0x4d8d70=_0x12e914[_0x267548(0x1fd,'\x21\x64\x4f\x62')]??(()=>Date[_0x267548(0x2f1,'\x63\x6b\x2a\x26')]()),_0x2fa92d=getHeader(_0x12e914[_0x267548(0x6c7,'\x58\x31\x78\x39')],_0x267548(0x4e1,'\x5e\x25\x6e\x55')+_0x267548(0x3a3,'\x24\x6f\x4f\x58')),_0x4f915c=extractSessionId(_0x12e914[_0x267548(0x3bd,'\x37\x4c\x29\x65')],_0x12e914[_0x267548(0x623,'\x73\x53\x6c\x4e')]),_0x5ccba4=extractPreviousResponseId(_0x12e914[_0x267548(0x78a,'\x70\x48\x33\x5a')]),_0x504c30=_0x4327bf&&captureBodiesEnabled(_0x12e914[_0x267548(0x39b,'\x66\x54\x6a\x5e')]??process.env),_0xfb65af={'\x74\x73':new Date(_0x213735)[_0x267548(0x501,'\x78\x58\x46\x63')+'\x69\x6e\x67'](),'\x65\x76\x65\x6e\x74':_0x267548(0x63d,'\x31\x75\x65\x6f'),'\x69\x64':_0x267548(0x4a0,'\x49\x56\x70\x4d')+randomUUID(),'\x72\x65\x71\x75\x65\x73\x74\x5f\x69\x64':_0x2fa92d?clip(_0x2fa92d):null,'\x72\x6f\x75\x74\x65':_0x12e914[_0x267548(0x20d,'\x26\x49\x5d\x5d')]??_0x12e914[_0x267548(0x93c,'\x70\x48\x33\x5a')+_0x267548(0x2bc,'\x52\x23\x32\x21')],'\x70\x72\x6f\x76\x69\x64\x65\x72':_0x12e914[_0x267548(0x426,'\x39\x6f\x42\x76')],'\x77\x69\x72\x65\x5f\x61\x70\x69':wireApiForTrace(_0x12e914),'\x63\x6c\x69\x65\x6e\x74':detectClient(_0x12e914[_0x267548(0x2f2,'\x21\x64\x4f\x62')]),...getHeader(_0x12e914[_0x267548(0x8a0,'\x55\x66\x35\x74')],_0x267548(0x329,'\x78\x5b\x47\x72')+'\x6e\x74')?{'\x75\x73\x65\x72\x5f\x61\x67\x65\x6e\x74':clip(getHeader(_0x12e914[_0x267548(0x83b,'\x4b\x50\x6f\x48')],_0x267548(0x2f9,'\x78\x58\x46\x63')+'\x6e\x74'))}:{},...((()=>{const _0x178e0f=_0x267548;try{if(_0x178e0f(0x99d,'\x58\x31\x78\x39')===_0x178e0f(0x585,'\x26\x6d\x46\x41')){if(!_0x4d8378)return{};try{return _0x14d065[_0x178e0f(0x57d,'\x5e\x25\x6e\x55')](_0x35e65b);}catch{return _0x8ffb5[_0x178e0f(0x82a,'\x48\x42\x51\x46')]?.(_0x5365f0({'\x65\x76\x65\x6e\x74':_0xe342b3,'\x72\x65\x61\x73\x6f\x6e':_0x178e0f(0x761,'\x45\x31\x75\x66')+_0x178e0f(0x429,'\x33\x69\x21\x55')+'\x6e','\x75\x70\x73\x74\x72\x65\x61\x6d\x5f\x73\x74\x61\x74\x75\x73':_0x1379ce,'\x63\x6f\x6e\x74\x65\x6e\x74\x5f\x74\x79\x70\x65':_0xb3e97b?.['\x63\x6f\x6e\x74\x65\x6e\x74\x2d'+_0x178e0f(0x918,'\x66\x54\x6a\x5e')]||'','\x72\x65\x73\x70\x6f\x6e\x73\x65\x5f\x62\x79\x74\x65\x73':_0x506140[_0x178e0f(0x3a0,'\x6d\x51\x71\x51')+'\x74\x68'](_0x38a843)})),{'\x65\x72\x72\x6f\x72':_0x303195};}}else{const _0x8126d4=extractTopLevelUserIdHash(_0x12e914[_0x178e0f(0x2c9,'\x4a\x40\x4d\x51')]);return _0x8126d4?{'\x75\x73\x65\x72\x5f\x69\x64\x5f\x68\x61\x73\x68':_0x8126d4}:{};}}catch{return{};}})()),...((()=>{const _0x41ad57=_0x267548;if(_0x41ad57(0x345,'\x48\x42\x51\x46')!=='\x53\x78\x7a\x69\x77')try{const _0x42ac2c=extractThinkingEffort(_0x12e914['\x62\x6f\x64\x79']);return _0x42ac2c?{'\x74\x68\x69\x6e\x6b\x69\x6e\x67\x5f\x65\x66\x66\x6f\x72\x74':_0x42ac2c}:{};}catch{if(_0x41ad57(0x2b4,'\x45\x31\x75\x66')!==_0x41ad57(0x82d,'\x44\x4a\x71\x76'))return{};else{if(this[_0x41ad57(0x405,'\x48\x42\x51\x46')+_0x41ad57(0x56e,'\x74\x31\x42\x29')][_0x41ad57(0x678,'\x43\x6b\x7a\x5d')]===-0x885+-0x26c4+0x2f49&&this[_0x41ad57(0x8fb,'\x28\x74\x79\x54')+_0x41ad57(0x80e,'\x6d\x69\x21\x38')+'\x6e\x74']===0x24ab+-0x134e+-0x115d*0x1&&!this[_0x41ad57(0x2d2,'\x28\x74\x79\x54')+_0x41ad57(0x63f,'\x5b\x21\x6c\x4b')+_0x41ad57(0x233,'\x50\x25\x42\x51')]&&!this[_0x41ad57(0x5c9,'\x78\x58\x46\x63')+_0x41ad57(0x7e5,'\x77\x40\x4d\x76')]&&!this[_0x41ad57(0x70d,'\x45\x31\x75\x66')+'\x6d\x54\x72\x75\x6e\x63\x61\x74'+'\x65\x64'])return _0x2e4381;return{'\x72\x65\x63\x6f\x6e\x73\x74\x72\x75\x63\x74\x65\x64':!![],...this[_0x41ad57(0x76d,'\x39\x6f\x42\x76')+_0x41ad57(0x7f5,'\x73\x47\x57\x6a')][_0x41ad57(0x777,'\x70\x48\x33\x5a')]>0x6d*0x39+0x10bb*-0x1+0x1*-0x78a?{'\x63\x68\x75\x6e\x6b\x73':this[_0x41ad57(0x983,'\x44\x4a\x71\x76')+_0x41ad57(0x4d2,'\x58\x31\x78\x39')]}:{},...this[_0x41ad57(0x30c,'\x37\x4c\x29\x65')+_0x41ad57(0x79a,'\x21\x64\x4f\x62')+'\x74\x73'][_0x41ad57(0x5d1,'\x31\x75\x65\x6f')]>-0x7c2+-0x75e+0xf20?{'\x73\x65\x6d\x61\x6e\x74\x69\x63\x5f\x74\x61\x69\x6c\x5f\x65\x76\x65\x6e\x74\x73':this[_0x41ad57(0x72e,'\x28\x39\x6a\x36')+_0x41ad57(0x4f2,'\x5e\x25\x6e\x55')+'\x74\x73']}:{},...this[_0x41ad57(0x92f,'\x23\x7a\x48\x73')+'\x6d\x42\x6f\x64\x79']?{'\x72\x61\x77\x5f\x73\x74\x72\x65\x61\x6d\x5f\x62\x6f\x64\x79':this[_0x41ad57(0x65a,'\x6d\x78\x4f\x5a')+'\x6d\x42\x6f\x64\x79']}:{},...this[_0x41ad57(0x84a,'\x6d\x78\x4f\x5a')+_0x41ad57(0x76f,'\x37\x4c\x29\x65')+_0x41ad57(0x3ac,'\x39\x6f\x42\x76')]?{'\x74\x72\x75\x6e\x63\x61\x74\x65\x64':!![]}:{},...this['\x72\x61\x77\x53\x74\x72\x65\x61'+_0x41ad57(0x73a,'\x28\x74\x79\x54')+'\x65\x64']?{'\x72\x61\x77\x5f\x73\x74\x72\x65\x61\x6d\x5f\x74\x72\x75\x6e\x63\x61\x74\x65\x64':!![]}:{},...this['\x73\x65\x6d\x61\x6e\x74\x69\x63'+_0x41ad57(0x687,'\x39\x6f\x42\x76')+'\x74\x73\x54\x72\x75\x6e\x63\x61'+_0x41ad57(0x512,'\x43\x6b\x7a\x5d')]?{'\x73\x65\x6d\x61\x6e\x74\x69\x63\x5f\x74\x61\x69\x6c\x5f\x65\x76\x65\x6e\x74\x73\x5f\x74\x72\x75\x6e\x63\x61\x74\x65\x64':!![],'\x64\x72\x6f\x70\x70\x65\x64\x5f\x73\x65\x6d\x61\x6e\x74\x69\x63\x5f\x74\x61\x69\x6c\x5f\x65\x76\x65\x6e\x74\x5f\x63\x6f\x75\x6e\x74':this['\x64\x72\x6f\x70\x70\x65\x64\x53'+_0x41ad57(0x403,'\x21\x64\x4f\x62')+_0x41ad57(0x1f6,'\x6d\x51\x71\x51')+_0x41ad57(0x45b,'\x7a\x46\x50\x4e')]}:{},...this[_0x41ad57(0x486,'\x58\x31\x78\x39')+_0x41ad57(0x7cb,'\x23\x7a\x48\x73')+'\x6e\x74']>-0x3*-0xb4e+0x2*-0x13d+0x8*-0x3ee?{'\x70\x72\x6f\x76\x69\x64\x65\x72\x5f\x73\x74\x72\x65\x61\x6d\x5f\x74\x72\x75\x6e\x63\x61\x74\x65\x64':!![],'\x74\x72\x75\x6e\x63\x61\x74\x65\x64\x5f\x6c\x69\x6e\x65\x5f\x63\x6f\x75\x6e\x74':this[_0x41ad57(0x494,'\x28\x39\x6a\x36')+_0x41ad57(0x28a,'\x63\x6b\x2a\x26')+'\x6e\x74'],'\x64\x72\x6f\x70\x70\x65\x64\x5f\x6c\x69\x6e\x65\x5f\x63\x68\x61\x72\x73':this[_0x41ad57(0x552,'\x45\x31\x75\x66')+_0x41ad57(0x943,'\x7a\x46\x50\x4e')]}:{}};}}else{if(typeof _0x24d13b===_0x41ad57(0x802,'\x73\x47\x57\x6a'))return _0x4b7d60;if(!_0x1daf32[_0x41ad57(0x8e3,'\x47\x45\x4d\x32')](_0x55ebe2))return'';return _0x539886[_0x41ad57(0x2c4,'\x23\x7a\x48\x73')](_0x2a997f=>{const _0x54a245=_0x41ad57;if(typeof _0x2a997f===_0x54a245(0x728,'\x48\x42\x51\x46'))return _0x2a997f;if(!_0x257ebb(_0x2a997f))return'';for(const _0x302991 of[_0x54a245(0x349,'\x43\x6b\x7a\x5d'),_0x54a245(0x828,'\x78\x5b\x47\x72')+'\x78\x74',_0x54a245(0x982,'\x24\x6f\x4f\x58')+_0x54a245(0x547,'\x6d\x78\x4f\x5a'),_0x54a245(0x62a,'\x21\x64\x4f\x62')]){const _0x44b4a6=_0x2a997f[_0x302991];if(typeof _0x44b4a6===_0x54a245(0x8a6,'\x74\x31\x42\x29'))return _0x44b4a6;}return'';})['\x66\x69\x6c\x74\x65\x72'](_0x5983e6)[_0x41ad57(0x557,'\x69\x44\x5e\x35')]('\x0a');}})()),'\x73\x65\x73\x73\x69\x6f\x6e\x5f\x69\x64':_0x4f915c,'\x6f\x72\x69\x67\x69\x6e\x61\x6c\x5f\x6d\x6f\x64\x65\x6c':_0x12e914[_0x267548(0x6b8,'\x45\x31\x75\x66')],'\x63\x68\x6f\x73\x65\x6e\x5f\x6d\x6f\x64\x65\x6c':_0x12e914[_0x267548(0x536,'\x64\x77\x74\x2a')+_0x267548(0x206,'\x58\x31\x78\x39')]??_0x12e914[_0x267548(0x6aa,'\x5b\x21\x6c\x4b')],'\x74\x69\x65\x72':_0x12e914[_0x267548(0x297,'\x63\x6b\x2a\x26')]??null,'\x72\x65\x61\x73\x6f\x6e':_0x12e914[_0x267548(0x3d7,'\x51\x76\x53\x5a')]??null,'\x66\x61\x6c\x6c\x62\x61\x63\x6b':_0x12e914[_0x267548(0x863,'\x54\x5b\x67\x52')]??null,'\x72\x6f\x75\x74\x65\x72\x5f\x65\x6e\x61\x62\x6c\x65\x64':_0x12e914[_0x267548(0x22e,'\x63\x6b\x2a\x26')+_0x267548(0x7f3,'\x31\x75\x65\x6f')]??![],'\x75\x70\x73\x74\x72\x65\x61\x6d\x5f\x6d\x6f\x64\x65':_0x12e914[_0x267548(0x7b0,'\x78\x5b\x47\x72')],'\x73\x74\x61\x74\x75\x73':_0x13aa98[_0x267548(0x836,'\x26\x49\x5d\x5d')],'\x73\x74\x72\x65\x61\x6d':_0x13aa98[_0x267548(0x698,'\x24\x6f\x4f\x58')],'\x74\x74\x66\x62\x5f\x6d\x73':_0x23d9dc,'\x6c\x61\x74\x65\x6e\x63\x79\x5f\x6d\x73':_0x4d8d70()-_0x213735,..._0x12e914[_0x267548(0x837,'\x7a\x46\x50\x4e')]?{'\x66\x65\x61\x74\x75\x72\x65\x73':_0x12e914[_0x267548(0x252,'\x74\x31\x42\x29')]}:{},..._0x13aa98['\x75\x73\x61\x67\x65']?{'\x75\x73\x61\x67\x65':_0x13aa98['\x75\x73\x61\x67\x65']}:{},..._0x13aa98[_0x267548(0x312,'\x70\x48\x33\x5a')+_0x267548(0x591,'\x43\x6b\x7a\x5d')]!==undefined?{'\x73\x74\x6f\x70\x5f\x72\x65\x61\x73\x6f\x6e':_0x13aa98[_0x267548(0x98b,'\x49\x56\x70\x4d')+_0x267548(0x4be,'\x74\x31\x42\x29')]}:{},..._0x13aa98[_0x267548(0x50f,'\x4b\x40\x5b\x51')+_0x267548(0x610,'\x31\x75\x65\x6f')]?{'\x72\x65\x73\x70\x6f\x6e\x73\x65\x5f\x69\x64':clip(_0x13aa98[_0x267548(0x997,'\x73\x47\x57\x6a')+'\x5f\x69\x64'])}:{},..._0x5ccba4?{'\x70\x72\x65\x76\x69\x6f\x75\x73\x5f\x72\x65\x73\x70\x6f\x6e\x73\x65\x5f\x69\x64':_0x5ccba4}:{},..._0x13aa98[_0x267548(0x81f,'\x6d\x69\x21\x38')]!==undefined?{'\x65\x72\x72\x6f\x72':safeTraceError(_0x13aa98[_0x267548(0x95e,'\x4b\x4d\x4a\x30')])}:{},..._0x504c30?{'\x72\x65\x71\x75\x65\x73\x74\x5f\x68\x65\x61\x64\x65\x72\x73':captureTraceMetadata(_0x12e914[_0x267548(0x97e,'\x51\x76\x53\x5a')],_0x12e914[_0x267548(0x8ae,'\x44\x4a\x71\x76')]??process.env)}:{},..._0x504c30&&_0x13aa98[_0x267548(0x668,'\x33\x28\x62\x59')+_0x267548(0x83f,'\x66\x54\x6a\x5e')]?{'\x72\x65\x73\x70\x6f\x6e\x73\x65\x5f\x68\x65\x61\x64\x65\x72\x73':captureTraceMetadata(_0x13aa98[_0x267548(0x50f,'\x4b\x40\x5b\x51')+_0x267548(0x8c1,'\x51\x76\x53\x5a')],_0x12e914[_0x267548(0x493,'\x4b\x50\x6f\x48')]??process.env)}:{},..._0x504c30&&_0x13aa98[_0x267548(0x230,'\x37\x4c\x29\x65')+_0x267548(0x336,'\x74\x31\x42\x29')+'\x61']!==undefined?{'\x74\x72\x61\x6e\x73\x70\x6f\x72\x74\x5f\x6d\x65\x74\x61\x64\x61\x74\x61':captureTraceMetadata(_0x13aa98[_0x267548(0x318,'\x4a\x40\x4d\x51')+'\x74\x4d\x65\x74\x61\x64\x61\x74'+'\x61'],_0x12e914['\x65\x6e\x76']??process.env)}:{}};if(_0x12e914[_0x267548(0x63e,'\x49\x56\x70\x4d')]&&_0x12e914[_0x267548(0x3d0,'\x48\x42\x51\x46')][_0x267548(0x94d,'\x5e\x25\x6e\x55')]>0xb43+0xb36+-0x1679*0x1){if(_0x267548(0x6dc,'\x77\x40\x4d\x76')!=='\x43\x57\x73\x45\x4f')try{if(_0x267548(0x8cf,'\x6d\x69\x21\x38')!==_0x267548(0x901,'\x28\x39\x6a\x36'))_0xfb65af[_0x267548(0x4a4,'\x70\x48\x33\x5a')]=captureTraceAttempts(_0x12e914[_0x267548(0x8a5,'\x51\x76\x53\x5a')],_0x504c30,_0x12e914[_0x267548(0x3f3,'\x52\x23\x32\x21')]??process.env);else{const _0x2ef6f4=_0x77736d[_0x267548(0x576,'\x5b\x21\x6c\x4b')]?.[_0x267548(0x21f,'\x44\x4a\x71\x76')+'\x74\x79\x70\x65'];return{'\x73\x74\x61\x74\x75\x73':_0x500fea[_0x267548(0x986,'\x4a\x40\x4d\x51')],'\x73\x74\x72\x65\x61\x6d':_0x471d27[_0x267548(0x3c0,'\x42\x6f\x57\x21')],'\x68\x65\x61\x64\x65\x72\x73':_0x2ef6f4?{..._0x3c681a,'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':_0x2ef6f4}:_0xf0386e};}}catch{}else return _0xc93e60(_0x2dec03)&&(_0x12722c[_0x267548(0x5df,'\x28\x74\x79\x54')+_0x267548(0x7a7,'\x44\x4a\x71\x76')+_0x267548(0x5da,'\x52\x23\x32\x21')+'\x64']===!![]||_0x4a1651[_0x267548(0x456,'\x49\x56\x70\x4d')+_0x267548(0x784,'\x47\x45\x4d\x32')+_0x267548(0x30b,'\x47\x45\x4d\x32')]===!![]||_0x319c8f[_0x267548(0x7fb,'\x43\x6b\x7a\x5d')+'\x64']===!![]);}if(_0x504c30){if(_0x267548(0x5e3,'\x41\x45\x5a\x75')===_0x267548(0x5fd,'\x66\x54\x6a\x5e'))try{const _0x228660=captureBody(_0x12e914[_0x267548(0x2c9,'\x4a\x40\x4d\x51')],_0x12e914[_0x267548(0x3ef,'\x5b\x21\x6c\x4b')]??process.env),_0xf451a8=_0x13aa98[_0x267548(0x76d,'\x39\x6f\x42\x76')+_0x267548(0x2ce,'\x4b\x50\x6f\x48')]!==undefined?captureBody(_0x13aa98[_0x267548(0x625,'\x69\x44\x5e\x35')+_0x267548(0x660,'\x78\x58\x46\x63')],_0x12e914[_0x267548(0x3c9,'\x6d\x78\x4f\x5a')]??process.env):undefined;if(_0x228660)_0xfb65af[_0x267548(0x375,'\x4b\x40\x5b\x51')+_0x267548(0x893,'\x69\x44\x5e\x35')]=_0x228660[_0x267548(0x7d3,'\x39\x6f\x42\x76')];if(_0xf451a8)_0xfb65af[_0x267548(0x7c3,'\x23\x7a\x48\x73')+_0x267548(0x2a2,'\x33\x69\x21\x55')]=_0xf451a8[_0x267548(0x539,'\x26\x6d\x46\x41')];_0xfb65af[_0x267548(0x6c2,'\x47\x45\x4d\x32')+'\x6e']=REDACTION_VERSION;if(_0x228660?.[_0x267548(0x9aa,'\x26\x6d\x46\x41')+'\x64']||_0xf451a8?.[_0x267548(0x776,'\x24\x6f\x4f\x58')+'\x64']||responseBodyIndicatesTruncation(_0x13aa98[_0x267548(0x981,'\x52\x23\x32\x21')+'\x42\x6f\x64\x79'])||_0xfb65af['\x61\x74\x74\x65\x6d\x70\x74\x73']?.[_0x267548(0x581,'\x59\x64\x43\x26')](_0xf68a12=>_0xf68a12[_0x267548(0x582,'\x5e\x25\x6e\x55')+_0x267548(0x48e,'\x50\x25\x42\x51')]===!![]))_0xfb65af['\x62\x6f\x64\x79\x5f\x74\x72\x75'+_0x267548(0x443,'\x74\x31\x42\x29')]=!![];}catch{}else{if(!_0x4f481c)return;const _0x563677=_0x27eee1(_0x309b8e),_0x4f44da=_0x1f0cdd[_0x267548(0x229,'\x33\x53\x59\x55')](-0x12f0+0x110b+0x1e5,this[_0x267548(0x6b9,'\x37\x4c\x29\x65')][_0x267548(0x772,'\x7a\x46\x50\x4e')+_0x267548(0x22b,'\x64\x77\x74\x2a')+'\x73']-this[_0x267548(0x415,'\x66\x54\x6a\x5e')+_0x267548(0x725,'\x57\x6d\x76\x52')]);if(_0x4f44da>0xf3e+-0x1fd4+0x1096){const _0x4008e7=_0x563677[_0x267548(0x6b1,'\x33\x53\x59\x55')](0xada+-0x1354+0x87a,_0x4f44da);this[_0x267548(0x454,'\x78\x5b\x47\x72')+_0x267548(0x67c,'\x39\x6f\x42\x76')]+=_0x4008e7,this[_0x267548(0x454,'\x78\x5b\x47\x72')+_0x267548(0x88b,'\x4b\x40\x5b\x51')]+=_0x4008e7[_0x267548(0x516,'\x41\x45\x5a\x75')];}if(_0x563677[_0x267548(0x8b8,'\x33\x28\x62\x59')]>_0x4f44da)this[_0x267548(0x41f,'\x58\x31\x78\x39')+_0x267548(0x7b1,'\x4a\x40\x4d\x51')+'\x65\x64']=!![];}}else{if(_0xfb65af['\x61\x74\x74\x65\x6d\x70\x74\x73']?.['\x73\x6f\x6d\x65'](_0x38a6d0=>_0x38a6d0[_0x267548(0x424,'\x45\x31\x75\x66')+'\x6e\x63\x61\x74\x65\x64']===!![])){if(_0x267548(0x530,'\x74\x31\x42\x29')!==_0x267548(0x348,'\x5b\x21\x6c\x4b')){const _0x109d20=_0x479f04(_0x223051(_0x6ab8c1,_0x267548(0x824,'\x78\x5b\x47\x72')+_0x267548(0x248,'\x78\x58\x46\x63')),_0x267548(0x5ed,'\x4b\x50\x6f\x48')+_0x267548(0x825,'\x24\x6f\x4f\x58')),{model:_0x5058d2,action:_0x45089f}=_0x212496(_0x109d20);_0x1e28d2(_0x5058d2,_0x267548(0x331,'\x69\x44\x5e\x35'));if(!_0x53afd3[_0x267548(0x79e,'\x37\x4c\x29\x65')](_0x45089f))throw _0x448e9a('\x75\x6e\x73\x75\x70\x70\x6f\x72'+_0x267548(0x8d2,'\x43\x6b\x7a\x5d')+_0x267548(0x795,'\x31\x75\x65\x6f')+'\x3a\x20'+(_0x45089f||_0x267548(0x594,'\x58\x31\x78\x39')+'\x29'));return{'\x6d\x6f\x64\x65\x6c':_0x5058d2,'\x61\x63\x74\x69\x6f\x6e':_0x45089f};}else _0xfb65af[_0x267548(0x79d,'\x55\x66\x35\x74')+_0x267548(0x764,'\x78\x58\x46\x63')]=!![];}}try{_0x12e914[_0x267548(0x760,'\x26\x49\x5d\x5d')](_0xfb65af);}catch{}}function streamResponse(_0x3701ae,_0x2adb8e){const _0x42bbfa=_0x1a83f6,_0x596b1b=_0x3701ae[_0x42bbfa(0x5cd,'\x43\x6b\x7a\x5d')]?.['\x63\x6f\x6e\x74\x65\x6e\x74\x2d'+_0x42bbfa(0x8fc,'\x28\x39\x6a\x36')];return{'\x73\x74\x61\x74\x75\x73':_0x3701ae[_0x42bbfa(0x857,'\x5e\x25\x6e\x55')],'\x73\x74\x72\x65\x61\x6d':_0x3701ae[_0x42bbfa(0x2a9,'\x5b\x21\x6c\x4b')],'\x68\x65\x61\x64\x65\x72\x73':_0x596b1b?{..._0x2adb8e,'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':_0x596b1b}:_0x2adb8e};}async function passthrough(_0x233418){const _0x1128bf=_0x1a83f6,_0x231f83=_0x233418[_0x1128bf(0x290,'\x42\x6f\x57\x21')]??(()=>Date['\x6e\x6f\x77']()),_0x536a74=_0x231f83();let _0x17ccc2,_0x2084a8=_0x233418;const _0x509d45=[];let _0x4459ea=null,_0x1b6547=![];try{_0x17ccc2=await _0x233418[_0x1128bf(0x8bd,'\x74\x31\x42\x29')](_0x233418['\x75\x70\x73\x74\x72\x65\x61\x6d'+_0x1128bf(0x3be,'\x28\x74\x79\x54')],_0x233418[_0x1128bf(0x414,'\x5e\x25\x6e\x55')],{'\x69\x6e\x62\x6f\x75\x6e\x64\x48\x65\x61\x64\x65\x72\x73':_0x233418[_0x1128bf(0x490,'\x26\x49\x5d\x5d')],'\x75\x70\x73\x74\x72\x65\x61\x6d\x4d\x6f\x64\x65':_0x233418[_0x1128bf(0x3b2,'\x42\x6f\x57\x21')],..._0x233418[_0x1128bf(0x598,'\x58\x31\x78\x39')]?{'\x6d\x65\x74\x68\x6f\x64':_0x233418[_0x1128bf(0x656,'\x55\x66\x35\x74')]}:{},..._0x233418[_0x1128bf(0x3e3,'\x58\x31\x78\x39')]?{'\x62\x61\x73\x65\x55\x72\x6c':_0x233418[_0x1128bf(0x4c4,'\x78\x5b\x47\x72')]}:{}}),_0x1b6547=!![],_0x4459ea=_0x231f83()-_0x536a74;}catch(_0x6aa462){const _0x4897f6=asUpstreamError(_0x233418[_0x1128bf(0x97f,'\x64\x77\x74\x2a')],_0x6aa462);emitTrace(_0x233418,_0x536a74,_0x4459ea,{'\x73\x74\x61\x74\x75\x73':_0x4897f6[_0x1128bf(0x45e,'\x24\x6f\x4f\x58')+'\x64\x65'],'\x73\x74\x72\x65\x61\x6d':![],'\x65\x72\x72\x6f\x72':_0x4897f6[_0x1128bf(0x781,'\x6d\x51\x71\x51')]},_0x1b6547);throw _0x4897f6;}if(shouldRetryRoutedOpenAI(_0x17ccc2,_0x233418)&&_0x233418[_0x1128bf(0x5c5,'\x78\x58\x46\x63')+'\x79']){if(_0x1128bf(0x783,'\x33\x28\x62\x59')!=='\x49\x46\x4a\x67\x67')_0x213a8f=_0x939a4b[_0x1128bf(0x8a7,'\x51\x76\x53\x5a')](_0x30ef06);else{const _0x27b21e=_0x233418[_0x1128bf(0x4a5,'\x70\x48\x33\x5a')+'\x79'],_0x1d35cf=_0x1128bf(0x26a,'\x41\x45\x5a\x75')+'\x5f'+_0x17ccc2[_0x1128bf(0x986,'\x4a\x40\x4d\x51')]+_0x1128bf(0x438,'\x4a\x40\x4d\x51'),_0x570950=_0x1128bf(0x603,'\x6d\x51\x71\x51')+'\x5f'+_0x17ccc2[_0x1128bf(0x515,'\x28\x74\x79\x54')]+('\x5f\x72\x65\x74\x72\x79\x5f\x66'+_0x1128bf(0x7da,'\x6d\x69\x21\x38'));_0x233418[_0x1128bf(0x7f7,'\x47\x45\x4d\x32')][_0x1128bf(0x421,'\x4b\x50\x6f\x48')]?.(jsonStringify({'\x65\x76\x65\x6e\x74':_0x1128bf(0x856,'\x33\x53\x59\x55')+_0x1128bf(0x302,'\x6d\x69\x21\x38'),'\x72\x6f\x75\x74\x65':_0x233418[_0x1128bf(0x675,'\x58\x31\x78\x39')]??_0x233418[_0x1128bf(0x85c,'\x47\x45\x4d\x32')+_0x1128bf(0x45c,'\x39\x6f\x42\x76')],'\x72\x65\x61\x73\x6f\x6e':_0x1d35cf,'\x6f\x72\x69\x67\x69\x6e\x61\x6c\x5f\x6d\x6f\x64\x65\x6c':_0x233418['\x6d\x6f\x64\x65\x6c'],'\x77\x6f\x75\x6c\x64\x5f\x68\x61\x76\x65\x5f\x62\x65\x65\x6e':_0x233418[_0x1128bf(0x814,'\x23\x7a\x48\x73')+_0x1128bf(0x744,'\x33\x53\x59\x55')],'\x75\x70\x73\x74\x72\x65\x61\x6d\x5f\x73\x74\x61\x74\x75\x73':_0x17ccc2[_0x1128bf(0x797,'\x73\x47\x57\x6a')]}));let _0x56b49b='';if(_0x17ccc2[_0x1128bf(0x746,'\x4b\x40\x5b\x51')])try{if(_0x1128bf(0x4db,'\x37\x4c\x29\x65')!==_0x1128bf(0x8a9,'\x31\x75\x65\x6f')){const _0x5b483f=_0x2922a9[_0x1128bf(0x7fc,'\x21\x64\x4f\x62')+_0x1128bf(0x205,'\x7a\x46\x50\x4e')],_0x4517bc={};_0xe9d4a7(_0x4517bc,_0x1128bf(0x724,'\x26\x49\x5d\x5d')+_0x1128bf(0x9a7,'\x5e\x25\x6e\x55'),_0x5b483f[_0x1128bf(0x2d4,'\x74\x31\x42\x29')+'\x6b\x65\x6e\x43\x6f\x75\x6e\x74']),_0x2b49e6(_0x4517bc,_0x1128bf(0x49a,'\x74\x31\x42\x29')+_0x1128bf(0x7f2,'\x4b\x4d\x4a\x30'),_0x5b483f[_0x1128bf(0x5fb,'\x5e\x25\x6e\x55')+_0x1128bf(0x854,'\x44\x4a\x71\x76')+_0x1128bf(0x94e,'\x31\x75\x65\x6f')]),_0x28aae0(_0x4517bc,'\x63\x61\x63\x68\x65\x5f\x72\x65'+_0x1128bf(0x884,'\x7a\x46\x50\x4e')+_0x1128bf(0x5a2,'\x37\x4c\x29\x65'),_0x5b483f[_0x1128bf(0x4f5,'\x6d\x51\x71\x51')+'\x6e\x74\x65\x6e\x74\x54\x6f\x6b'+_0x1128bf(0x32a,'\x78\x5b\x47\x72')]);const _0x458d61=_0x16e22b(_0x4517bc);if(_0x458d61)_0x35cb9f[_0x1128bf(0x2c6,'\x66\x54\x6a\x5e')]=_0x458d61;}else _0x56b49b=await Promise[_0x1128bf(0x1f9,'\x21\x64\x4f\x62')](_0x17ccc2[_0x1128bf(0x6dd,'\x64\x77\x74\x2a')]());}catch{if(_0x1128bf(0x69f,'\x44\x4a\x71\x76')==='\x65\x47\x49\x74\x70')return _0x6c025[_0x1128bf(0x602,'\x4b\x50\x6f\x48')]<=_0x483a96?_0x1b9b07:_0x42e705[_0x1128bf(0x7e9,'\x74\x31\x42\x29')](0x8*-0x41b+-0x136b+0x3443,_0x3719d2);else _0x56b49b='';}if(_0x233418[_0x1128bf(0x22c,'\x78\x58\x46\x63')]){if(_0x1128bf(0x6e9,'\x33\x53\x59\x55')===_0x1128bf(0x827,'\x26\x6d\x46\x41'))_0x509d45[_0x1128bf(0x52c,'\x47\x45\x4d\x32')]({'\x61\x74\x74\x65\x6d\x70\x74\x5f\x69\x6e\x64\x65\x78':0x0,'\x6d\x6f\x64\x65\x6c':_0x233418[_0x1128bf(0x814,'\x23\x7a\x48\x73')+_0x1128bf(0x219,'\x6d\x78\x4f\x5a')]??_0x233418[_0x1128bf(0x3ea,'\x7a\x46\x50\x4e')],'\x70\x72\x6f\x76\x69\x64\x65\x72':_0x233418[_0x1128bf(0x860,'\x52\x23\x32\x21')],'\x75\x70\x73\x74\x72\x65\x61\x6d\x5f\x6d\x6f\x64\x65':_0x233418['\x70\x72\x6f\x76\x69\x64\x65\x72'],'\x73\x74\x61\x74\x75\x73':_0x17ccc2[_0x1128bf(0x537,'\x78\x5b\x47\x72')],'\x65\x72\x72\x6f\x72':safeTraceError('\x75\x70\x73\x74\x72\x65\x61\x6d'+'\x20'+_0x17ccc2[_0x1128bf(0x6ce,'\x37\x4c\x29\x65')]),'\x72\x65\x71\x75\x65\x73\x74\x42\x6f\x64\x79':_0x233418[_0x1128bf(0x96f,'\x69\x44\x5e\x35')],'\x72\x65\x73\x70\x6f\x6e\x73\x65\x42\x6f\x64\x79':attemptResponseToBody(_0x56b49b)});else{const _0xd96769=_0x5ecf7b[_0x1128bf(0x829,'\x7a\x46\x50\x4e')]??_0x13203a,_0x4def9a=_0x54ac3a[_0x1128bf(0x418,'\x41\x45\x5a\x75')]??_0x1a4e3d.env;return _0x583e90=>{const _0x1ff0df=_0x1128bf,_0x65210a=_0x599ef7(_0x1ff0df(0x588,'\x28\x39\x6a\x36')+'\x2f\x63\x6f\x6d\x70\x6c\x65\x74'+_0x1ff0df(0x782,'\x37\x4c\x29\x65'),_0x583e90[_0x1ff0df(0x2c7,'\x45\x31\x75\x66')],_0x4def9a,_0xd96769);return _0x14767f({'\x70\x72\x6f\x78\x79':_0x24e108[_0x1ff0df(0x201,'\x52\x23\x32\x21')+_0x1ff0df(0x962,'\x4b\x40\x5b\x51')],'\x70\x72\x6f\x76\x69\x64\x65\x72':_0x1ff0df(0x4fa,'\x43\x6b\x7a\x5d'),'\x72\x6f\x75\x74\x65':_0x1ff0df(0x3ae,'\x7a\x46\x50\x4e')+'\x2f\x63\x6f\x6d\x70\x6c\x65\x74'+_0x1ff0df(0x44f,'\x42\x6f\x57\x21'),'\x75\x70\x73\x74\x72\x65\x61\x6d\x50\x61\x74\x68':'\x2f\x63\x68\x61\x74\x2f\x63\x6f'+_0x1ff0df(0x44d,'\x78\x58\x46\x63')+'\x73','\x6d\x6f\x64\x65\x6c':_0x65210a[_0x1ff0df(0x647,'\x78\x58\x46\x63')+_0x1ff0df(0x2ea,'\x7a\x46\x50\x4e')],'\x63\x68\x6f\x73\x65\x6e\x4d\x6f\x64\x65\x6c':_0x65210a[_0x1ff0df(0x36b,'\x78\x58\x46\x63')+_0x1ff0df(0x475,'\x6d\x51\x71\x51')],'\x74\x69\x65\x72':_0x65210a[_0x1ff0df(0x661,'\x6d\x69\x21\x38')],'\x72\x65\x61\x73\x6f\x6e':_0x65210a[_0x1ff0df(0x428,'\x5b\x21\x6c\x4b')],'\x66\x61\x6c\x6c\x62\x61\x63\x6b':_0x65210a['\x66\x61\x6c\x6c\x62\x61\x63\x6b'],'\x72\x6f\x75\x74\x65\x72\x45\x6e\x61\x62\x6c\x65\x64':_0x65210a[_0x1ff0df(0x3f8,'\x77\x40\x4d\x76')+_0x1ff0df(0x83c,'\x69\x44\x5e\x35')],..._0x65210a[_0x1ff0df(0x362,'\x28\x74\x79\x54')]?{'\x66\x65\x61\x74\x75\x72\x65\x73':_0x65210a[_0x1ff0df(0x509,'\x58\x31\x78\x39')]}:{},'\x62\x6f\x64\x79':_0x65210a['\x62\x6f\x64\x79'],'\x72\x65\x74\x72\x79\x42\x6f\x64\x79':_0x583e90[_0x1ff0df(0x575,'\x55\x66\x35\x74')],'\x68\x65\x61\x64\x65\x72\x73':_0x583e90[_0x1ff0df(0x37c,'\x33\x53\x59\x55')]??{},'\x6c\x6f\x67\x67\x65\x72':_0xd96769,..._0x1f3fa4[_0x1ff0df(0x62c,'\x45\x31\x75\x66')]?{'\x6f\x6e\x54\x72\x61\x63\x65':_0x44f1bf[_0x1ff0df(0x3bb,'\x47\x45\x4d\x32')]}:{},..._0x52f756[_0x1ff0df(0x51f,'\x41\x45\x5a\x75')]?{'\x63\x6c\x6f\x63\x6b':_0x2324f1[_0x1ff0df(0x51f,'\x41\x45\x5a\x75')]}:{},'\x65\x6e\x76':_0x4def9a,'\x72\x65\x73\x70\x6f\x6e\x73\x65\x48\x65\x61\x64\x65\x72\x73':_0x4e03e2});};}}try{const _0xe5c7b5=retryHeadersForMutatedOpenAIRequest(_0x233418[_0x1128bf(0x92d,'\x52\x23\x32\x21')]);_0x17ccc2=await _0x233418['\x70\x72\x6f\x78\x79'](_0x233418[_0x1128bf(0x604,'\x59\x64\x43\x26')+_0x1128bf(0x68d,'\x64\x77\x74\x2a')],_0x27b21e,{'\x69\x6e\x62\x6f\x75\x6e\x64\x48\x65\x61\x64\x65\x72\x73':_0xe5c7b5,'\x75\x70\x73\x74\x72\x65\x61\x6d\x4d\x6f\x64\x65':_0x233418[_0x1128bf(0x380,'\x77\x40\x4d\x76')],..._0x233418[_0x1128bf(0x376,'\x63\x6b\x2a\x26')]?{'\x6d\x65\x74\x68\x6f\x64':_0x233418[_0x1128bf(0x6ff,'\x43\x6b\x7a\x5d')]}:{},..._0x233418[_0x1128bf(0x2f5,'\x24\x6f\x4f\x58')]?{'\x62\x61\x73\x65\x55\x72\x6c':_0x233418[_0x1128bf(0x3c2,'\x7a\x46\x50\x4e')]}:{}}),_0x2084a8={..._0x233418,'\x62\x6f\x64\x79':_0x27b21e,'\x63\x68\x6f\x73\x65\x6e\x4d\x6f\x64\x65\x6c':_0x233418[_0x1128bf(0x2a4,'\x4b\x40\x5b\x51')],'\x66\x61\x6c\x6c\x62\x61\x63\x6b':_0x1d35cf,'\x68\x65\x61\x64\x65\x72\x73':_0xe5c7b5,'\x61\x74\x74\x65\x6d\x70\x74\x73':_0x509d45},_0x233418['\x6f\x6e\x54\x72\x61\x63\x65']&&_0x509d45[_0x1128bf(0x3e8,'\x5e\x25\x6e\x55')]({'\x61\x74\x74\x65\x6d\x70\x74\x5f\x69\x6e\x64\x65\x78':0x1,'\x6d\x6f\x64\x65\x6c':_0x233418[_0x1128bf(0x311,'\x44\x4a\x71\x76')],'\x70\x72\x6f\x76\x69\x64\x65\x72':_0x233418[_0x1128bf(0x5e8,'\x51\x76\x53\x5a')],'\x75\x70\x73\x74\x72\x65\x61\x6d\x5f\x6d\x6f\x64\x65':_0x233418[_0x1128bf(0x439,'\x4a\x40\x4d\x51')],'\x73\x74\x61\x74\x75\x73':_0x17ccc2[_0x1128bf(0x8c8,'\x57\x6d\x76\x52')],'\x72\x65\x71\x75\x65\x73\x74\x42\x6f\x64\x79':_0x27b21e});}catch(_0x5ebd66){const _0x53e2ab=asUpstreamError(_0x233418[_0x1128bf(0x2bf,'\x59\x64\x43\x26')],_0x5ebd66),_0x67725c=_0x5ebd66 instanceof Error?_0x5ebd66[_0x1128bf(0x5e1,'\x4b\x4d\x4a\x30')]:String(_0x5ebd66);_0x233418[_0x1128bf(0x960,'\x44\x4a\x71\x76')]&&_0x509d45[_0x1128bf(0x6bf,'\x4b\x4d\x4a\x30')]({'\x61\x74\x74\x65\x6d\x70\x74\x5f\x69\x6e\x64\x65\x78':0x1,'\x6d\x6f\x64\x65\x6c':_0x233418[_0x1128bf(0x98f,'\x73\x53\x6c\x4e')],'\x70\x72\x6f\x76\x69\x64\x65\x72':_0x233418[_0x1128bf(0x4ef,'\x41\x45\x5a\x75')],'\x75\x70\x73\x74\x72\x65\x61\x6d\x5f\x6d\x6f\x64\x65':_0x233418[_0x1128bf(0x546,'\x54\x5b\x67\x52')],'\x73\x74\x61\x74\x75\x73':_0x53e2ab[_0x1128bf(0x7b3,'\x33\x28\x62\x59')+'\x64\x65'],'\x65\x72\x72\x6f\x72':_0x67725c,'\x72\x65\x71\x75\x65\x73\x74\x42\x6f\x64\x79':_0x27b21e}),_0x233418[_0x1128bf(0x6e3,'\x37\x4c\x29\x65')][_0x1128bf(0x8d8,'\x77\x40\x4d\x76')]?.(jsonStringify({'\x65\x76\x65\x6e\x74':_0x1128bf(0x61a,'\x74\x31\x42\x29')+_0x1128bf(0x39a,'\x33\x69\x21\x55'),'\x72\x6f\x75\x74\x65':_0x233418[_0x1128bf(0x6fc,'\x51\x76\x53\x5a')]??_0x233418[_0x1128bf(0x603,'\x6d\x51\x71\x51')+_0x1128bf(0x612,'\x6d\x78\x4f\x5a')],'\x72\x65\x61\x73\x6f\x6e':_0x570950,'\x6f\x72\x69\x67\x69\x6e\x61\x6c\x5f\x6d\x6f\x64\x65\x6c':_0x233418['\x6d\x6f\x64\x65\x6c'],'\x77\x6f\x75\x6c\x64\x5f\x68\x61\x76\x65\x5f\x62\x65\x65\x6e':_0x233418[_0x1128bf(0x61c,'\x58\x31\x78\x39')+_0x1128bf(0x2ae,'\x4a\x40\x4d\x51')],'\x65\x72\x72\x6f\x72':_0x67725c})),_0x17ccc2={'\x73\x74\x61\x74\x75\x73':_0x17ccc2[_0x1128bf(0x857,'\x5e\x25\x6e\x55')],'\x68\x65\x61\x64\x65\x72\x73':_0x17ccc2[_0x1128bf(0x8b1,'\x78\x58\x46\x63')],'\x73\x74\x72\x65\x61\x6d':null,'\x74\x65\x78\x74':()=>_0x56b49b},_0x2084a8={..._0x233418,'\x66\x61\x6c\x6c\x62\x61\x63\x6b':_0x1d35cf,'\x61\x74\x74\x65\x6d\x70\x74\x73':_0x509d45};}}}const _0x513951=_0x233418[_0x1128bf(0x388,'\x33\x69\x21\x55')+_0x1128bf(0x239,'\x28\x39\x6a\x36')]?_0x233418['\x72\x65\x73\x70\x6f\x6e\x73\x65'+_0x1128bf(0x7f0,'\x78\x5b\x47\x72')](_0x17ccc2[_0x1128bf(0x83b,'\x4b\x50\x6f\x48')]??{}):{};if(_0x17ccc2[_0x1128bf(0x26e,'\x7a\x46\x50\x4e')]){const _0x31e11c=_0x2084a8[_0x1128bf(0x78d,'\x39\x6f\x42\x76')]?new ProviderStreamMetaScanner(_0x2084a8,_0x2084a8[_0x1128bf(0x2ac,'\x4a\x40\x4d\x51')]??process.env):null,_0x46de32=_0x31e11c?teeStreamForScan(_0x17ccc2[_0x1128bf(0x313,'\x39\x6f\x42\x76')],_0x1bd555=>_0x31e11c[_0x1128bf(0x6d1,'\x52\x23\x32\x21')](_0x1bd555),_0x5e3675=>{const _0x3daec5=_0x1128bf;if(_0x3daec5(0x671,'\x48\x42\x51\x46')!==_0x3daec5(0x288,'\x6d\x51\x71\x51'))return;else{_0x31e11c[_0x3daec5(0x4f3,'\x28\x39\x6a\x36')]();const _0x443c37=_0x31e11c[_0x3daec5(0x6c1,'\x33\x69\x21\x55')][_0x3daec5(0x95e,'\x4b\x4d\x4a\x30')]??_0x5e3675?.[_0x3daec5(0x3f7,'\x50\x25\x42\x51')]??(_0x5e3675?.[_0x3daec5(0x43b,'\x73\x53\x6c\x4e')+'\x64']?_0x3daec5(0x99e,'\x28\x74\x79\x54')+_0x3daec5(0x47c,'\x33\x28\x62\x59'):undefined),_0x3d8090=_0x31e11c[_0x3daec5(0x40d,'\x5e\x25\x6e\x55')+_0x3daec5(0x402,'\x54\x5b\x67\x52')](),_0x258ca7=_0x509d45['\x66\x69\x6e\x64'](_0x362234=>_0x362234[_0x3daec5(0x703,'\x31\x75\x65\x6f')+_0x3daec5(0x4aa,'\x48\x42\x51\x46')]===0x386*-0x2+0x2*0xc92+0x1a5*-0xb&&_0x362234[_0x3daec5(0x54c,'\x74\x31\x42\x29')+_0x3daec5(0x94f,'\x33\x53\x59\x55')]===undefined);_0x258ca7&&_0x3d8090!==undefined&&(_0x258ca7[_0x3daec5(0x46e,'\x24\x6f\x4f\x58')+_0x3daec5(0x8af,'\x7a\x46\x50\x4e')]=_0x3d8090,_0x258ca7[_0x3daec5(0x682,'\x63\x6b\x2a\x26')+_0x3daec5(0x7f1,'\x31\x75\x65\x6f')]=responseBodyIndicatesTruncation(_0x3d8090)),emitTrace(_0x2084a8,_0x536a74,_0x4459ea,{'\x73\x74\x61\x74\x75\x73':_0x17ccc2[_0x3daec5(0x4e9,'\x33\x69\x21\x55')],'\x73\x74\x72\x65\x61\x6d':!![],..._0x31e11c[_0x3daec5(0x847,'\x55\x66\x35\x74')],..._0x443c37?{'\x65\x72\x72\x6f\x72':_0x443c37}:{},..._0x3d8090!==undefined?{'\x72\x65\x73\x70\x6f\x6e\x73\x65\x42\x6f\x64\x79':_0x3d8090}:{},..._0x17ccc2['\x68\x65\x61\x64\x65\x72\x73']?{'\x72\x65\x73\x70\x6f\x6e\x73\x65\x48\x65\x61\x64\x65\x72\x73':_0x17ccc2[_0x3daec5(0x5d7,'\x28\x74\x79\x54')]}:{},..._0x17ccc2[_0x3daec5(0x2a6,'\x23\x7a\x48\x73')+_0x3daec5(0x5c6,'\x37\x4c\x29\x65')+'\x61']!==undefined?{'\x74\x72\x61\x6e\x73\x70\x6f\x72\x74\x4d\x65\x74\x61\x64\x61\x74\x61':_0x17ccc2[_0x3daec5(0x5b9,'\x4b\x50\x6f\x48')+_0x3daec5(0x517,'\x43\x6b\x7a\x5d')+'\x61']}:{}},_0x1b6547);}}):_0x17ccc2[_0x1128bf(0x390,'\x49\x56\x70\x4d')];return streamResponse({..._0x17ccc2,'\x73\x74\x72\x65\x61\x6d':_0x46de32},_0x513951);}let _0x2dc9d0='';if(_0x17ccc2[_0x1128bf(0x4d9,'\x70\x48\x33\x5a')])try{_0x2dc9d0=await Promise[_0x1128bf(0x673,'\x39\x6f\x42\x76')](_0x17ccc2[_0x1128bf(0x6dd,'\x64\x77\x74\x2a')]());}catch(_0x47e15c){const _0x19a3d3=asUpstreamError(_0x233418[_0x1128bf(0x97f,'\x64\x77\x74\x2a')],_0x47e15c);emitTrace(_0x2084a8,_0x536a74,_0x4459ea,{'\x73\x74\x61\x74\x75\x73':_0x19a3d3[_0x1128bf(0x8ea,'\x41\x45\x5a\x75')+'\x64\x65'],'\x73\x74\x72\x65\x61\x6d':![],'\x65\x72\x72\x6f\x72':_0x19a3d3[_0x1128bf(0x98d,'\x42\x6f\x57\x21')]},_0x1b6547);throw _0x19a3d3;}const _0x3f4d9b=responseToBody(_0x2dc9d0,_0x17ccc2[_0x1128bf(0x37d,'\x4b\x50\x6f\x48')],_0x17ccc2[_0x1128bf(0x430,'\x64\x77\x74\x2a')],_0x233418['\x6c\x6f\x67\x67\x65\x72'],_0x233418[_0x1128bf(0x380,'\x77\x40\x4d\x76')]+(_0x1128bf(0x6d6,'\x24\x6f\x4f\x58')+'\x6b')),_0x18b8c=_0x509d45[_0x1128bf(0x76b,'\x69\x44\x5e\x35')](_0x310d0d=>_0x310d0d['\x61\x74\x74\x65\x6d\x70\x74\x5f'+_0x1128bf(0x250,'\x63\x6b\x2a\x26')]===-0x1e37+0x115*-0x16+0x1*0x3606&&_0x310d0d[_0x1128bf(0x7ed,'\x73\x53\x6c\x4e')+_0x1128bf(0x69a,'\x57\x6d\x76\x52')]===undefined);if(_0x18b8c)_0x18b8c[_0x1128bf(0x2d2,'\x28\x74\x79\x54')+_0x1128bf(0x327,'\x66\x54\x6a\x5e')]=_0x3f4d9b;return emitTrace(_0x2084a8,_0x536a74,_0x4459ea,{'\x73\x74\x61\x74\x75\x73':_0x17ccc2[_0x1128bf(0x564,'\x50\x25\x42\x51')],'\x73\x74\x72\x65\x61\x6d':![],...providerMeta(_0x2084a8,_0x3f4d9b),'\x72\x65\x73\x70\x6f\x6e\x73\x65\x42\x6f\x64\x79':_0x3f4d9b,..._0x17ccc2[_0x1128bf(0x5ea,'\x69\x44\x5e\x35')]?{'\x72\x65\x73\x70\x6f\x6e\x73\x65\x48\x65\x61\x64\x65\x72\x73':_0x17ccc2[_0x1128bf(0x3bd,'\x37\x4c\x29\x65')]}:{},..._0x17ccc2[_0x1128bf(0x6ca,'\x73\x47\x57\x6a')+_0x1128bf(0x396,'\x52\x23\x32\x21')+'\x61']!==undefined?{'\x74\x72\x61\x6e\x73\x70\x6f\x72\x74\x4d\x65\x74\x61\x64\x61\x74\x61':_0x17ccc2[_0x1128bf(0x8e1,'\x57\x6d\x76\x52')+_0x1128bf(0x5c6,'\x37\x4c\x29\x65')+'\x61']}:{}},_0x1b6547),{'\x73\x74\x61\x74\x75\x73':_0x17ccc2[_0x1128bf(0x8c8,'\x57\x6d\x76\x52')],'\x62\x6f\x64\x79':_0x3f4d9b,'\x68\x65\x61\x64\x65\x72\x73':_0x513951};}export function parseModelAction(_0x5706cf){const _0x3ebb0c=_0x1a83f6,_0x4c6f27=_0x5706cf[_0x3ebb0c(0x7d4,'\x63\x6b\x2a\x26')+_0x3ebb0c(0x2e9,'\x5e\x25\x6e\x55')]('\x3a');if(_0x4c6f27===-(0x1a58+-0x1*0x199+-0x18be))return{'\x6d\x6f\x64\x65\x6c':_0x5706cf,'\x61\x63\x74\x69\x6f\x6e':''};return{'\x6d\x6f\x64\x65\x6c':_0x5706cf[_0x3ebb0c(0x7d2,'\x33\x69\x21\x55')](0x1e6f+-0x7f*0x2e+-0x79d*0x1,_0x4c6f27),'\x61\x63\x74\x69\x6f\x6e':_0x5706cf[_0x3ebb0c(0x4d7,'\x21\x64\x4f\x62')](_0x4c6f27+(-0x4dc+-0x147c+0x1959))};}function decodePathParam(_0x43e094,_0x5d4bf5){const _0x1631aa=_0x1a83f6;try{return decodeURIComponent(_0x43e094);}catch{throw badRequest(_0x5d4bf5+(_0x1631aa(0x66f,'\x28\x74\x79\x54')+_0x1631aa(0x2dd,'\x4a\x40\x4d\x51')+_0x1631aa(0x75a,'\x64\x77\x74\x2a')+_0x1631aa(0x334,'\x58\x31\x78\x39')+'\x6e\x67'));}}function validateDecodedPathComponent(_0x32d8e5,_0x213827){const _0x42da9c=_0x1a83f6;if(!_0x32d8e5)throw badRequest(_0x213827+(_0x42da9c(0x66c,'\x33\x69\x21\x55')+_0x42da9c(0x8d7,'\x6d\x51\x71\x51')));if(_0x32d8e5[_0x42da9c(0x878,'\x45\x31\x75\x66')]('\x2f')||_0x32d8e5[_0x42da9c(0x7aa,'\x57\x6d\x76\x52')]('\x5c'))throw badRequest(_0x213827+(_0x42da9c(0x1ff,'\x7a\x46\x50\x4e')+'\x74\x20\x63\x6f\x6e\x74\x61\x69'+'\x6e\x20\x70\x61\x74\x68\x20\x73'+_0x42da9c(0x25d,'\x28\x39\x6a\x36')+'\x73'));if(_0x32d8e5==='\x2e'||_0x32d8e5==='\x2e\x2e')throw badRequest(_0x213827+(_0x42da9c(0x45d,'\x70\x48\x33\x5a')+_0x42da9c(0x2fe,'\x55\x66\x35\x74')+'\x6f\x74\x20\x73\x65\x67\x6d\x65'+'\x6e\x74'));return _0x32d8e5;}function validatedModelAction(_0x5a8113){const _0x44c82f=_0x1a83f6,_0x3cd582=validateDecodedPathComponent(decodePathParam(_0x5a8113,_0x44c82f(0x47e,'\x57\x6d\x76\x52')+'\x69\x6f\x6e'),_0x44c82f(0x27f,'\x42\x6f\x57\x21')+_0x44c82f(0x33e,'\x4b\x40\x5b\x51')),{model:_0xac81bc,action:_0x9a9dc9}=parseModelAction(_0x3cd582);validateDecodedPathComponent(_0xac81bc,'\x6d\x6f\x64\x65\x6c');if(!GEMINI_VERTEX_ACTIONS[_0x44c82f(0x2ab,'\x26\x49\x5d\x5d')](_0x9a9dc9))throw badRequest(_0x44c82f(0x417,'\x45\x31\x75\x66')+_0x44c82f(0x4e5,'\x55\x66\x35\x74')+_0x44c82f(0x5f6,'\x4b\x50\x6f\x48')+'\x3a\x20'+(_0x9a9dc9||_0x44c82f(0x96a,'\x47\x45\x4d\x32')+'\x29'));return{'\x6d\x6f\x64\x65\x6c':_0xac81bc,'\x61\x63\x74\x69\x6f\x6e':_0x9a9dc9};}function validatedVertexProject(_0x439db7){const _0x3841b1=_0x1a83f6,_0x1d4d06=validateDecodedPathComponent(decodePathParam(_0x439db7,_0x3841b1(0x82e,'\x47\x45\x4d\x32')),_0x3841b1(0x50a,'\x6d\x69\x21\x38'));if(!/^[A-Za-z0-9_-]+$/[_0x3841b1(0x57b,'\x41\x45\x5a\x75')](_0x1d4d06))throw badRequest(_0x3841b1(0x540,'\x6d\x51\x71\x51')+'\x63\x6f\x6e\x74\x61\x69\x6e\x73'+_0x3841b1(0x741,'\x5e\x25\x6e\x55')+_0x3841b1(0x272,'\x26\x6d\x46\x41')+_0x3841b1(0x528,'\x49\x56\x70\x4d'));return _0x1d4d06;}function validatedVertexLocation(_0x5e9476){const _0x3498f0=_0x1a83f6,_0xf16929=validateDecodedPathComponent(decodePathParam(_0x5e9476,_0x3498f0(0x7ac,'\x41\x45\x5a\x75')),_0x3498f0(0x5ad,'\x64\x77\x74\x2a'));if(_0xf16929!==_0x3498f0(0x4de,'\x6d\x69\x21\x38')&&!/^[a-z][a-z0-9-]*$/['\x74\x65\x73\x74'](_0xf16929))throw badRequest('\x6c\x6f\x63\x61\x74\x69\x6f\x6e'+_0x3498f0(0x6be,'\x6d\x69\x21\x38')+_0x3498f0(0x8eb,'\x77\x40\x4d\x76')+_0x3498f0(0x593,'\x5e\x25\x6e\x55')+'\x61\x72\x61\x63\x74\x65\x72\x73');return _0xf16929;}function providerQueryString(_0x4f5819){const _0x5b4f98=_0x1a83f6;if(!_0x4f5819||Object['\x6b\x65\x79\x73'](_0x4f5819)[_0x5b4f98(0x74a,'\x50\x25\x42\x51')]===0x1*0x1802+-0x1968+-0x166*-0x1)return'';const _0x5a1074=new URLSearchParams();for(const [_0x50f929,_0x3933aa]of Object[_0x5b4f98(0x695,'\x59\x64\x43\x26')](_0x4f5819)){if(CREDENTIAL_QUERY_PARAMS[_0x5b4f98(0x891,'\x55\x66\x35\x74')](_0x50f929[_0x5b4f98(0x328,'\x49\x56\x70\x4d')+_0x5b4f98(0x220,'\x31\x75\x65\x6f')]()))continue;_0x5a1074[_0x5b4f98(0x719,'\x37\x4c\x29\x65')](_0x50f929,_0x3933aa);}const _0x3082d6=_0x5a1074['\x74\x6f\x53\x74\x72\x69\x6e\x67']();return _0x3082d6?'\x3f'+_0x3082d6:'';}function _0x515f(_0x1abcb7,_0x5b304f){_0x1abcb7=_0x1abcb7-(-0x2355+-0x315*-0x4+-0x1*-0x18f5);const _0x3d2eca=_0x5313();let _0x4a4448=_0x3d2eca[_0x1abcb7];if(_0x515f['\x77\x72\x4d\x4d\x63\x72']===undefined){var _0x236cd8=function(_0x4cd6e4){const _0x2ccb51='\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 _0x3a40b7='',_0x5786eb='';for(let _0x1307fc=0x11c+0x2043+0x215f*-0x1,_0x16b4d8,_0x2e2062,_0x144562=0xd8*-0x24+-0x11da+0x303a*0x1;_0x2e2062=_0x4cd6e4['\x63\x68\x61\x72\x41\x74'](_0x144562++);~_0x2e2062&&(_0x16b4d8=_0x1307fc%(-0x1*0x1e5d+0x1*0x3d6+-0x2d*-0x97)?_0x16b4d8*(0x1c*0xbd+0x1*0x58f+-0x19fb)+_0x2e2062:_0x2e2062,_0x1307fc++%(-0xb45+-0x141a+0x1f63*0x1))?_0x3a40b7+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0x1*0x4b1+-0x2268+0x2818&_0x16b4d8>>(-(0x636+0x2434+-0x2a68)*_0x1307fc&0x2*0x1148+-0x359*0x7+-0x1*0xb1b)):0x3*0xbdd+0x155f+0x13d*-0x2e){_0x2e2062=_0x2ccb51['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2e2062);}for(let _0x4d5b9a=-0x1ece+0x90a+-0x7*-0x31c,_0x33d007=_0x3a40b7['\x6c\x65\x6e\x67\x74\x68'];_0x4d5b9a<_0x33d007;_0x4d5b9a++){_0x5786eb+='\x25'+('\x30\x30'+_0x3a40b7['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4d5b9a)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](-0xe81+-0x24d0+0x757*0x7))['\x73\x6c\x69\x63\x65'](-(0x62d*0x3+0x968+-0x1bed*0x1));}return decodeURIComponent(_0x5786eb);};const _0x4a37eb=function(_0x16a0c3,_0x5672b0){let _0x53a2f4=[],_0x308010=-0x41*0x2c+-0x83e*0x2+0x1ba8,_0x5850df,_0x5780e7='';_0x16a0c3=_0x236cd8(_0x16a0c3);let _0x446efc;for(_0x446efc=-0x1*0x1ac9+-0x1a0a+-0x34d3*-0x1;_0x446efc<0x1d42+-0x1b6f+0x1*-0xd3;_0x446efc++){_0x53a2f4[_0x446efc]=_0x446efc;}for(_0x446efc=0x6a+0x6*-0x5df+0x22d0;_0x446efc<-0x101*-0xb+0xd57+0x92*-0x29;_0x446efc++){_0x308010=(_0x308010+_0x53a2f4[_0x446efc]+_0x5672b0['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x446efc%_0x5672b0['\x6c\x65\x6e\x67\x74\x68']))%(0x1*-0xede+0xfa6*0x1+0x38),_0x5850df=_0x53a2f4[_0x446efc],_0x53a2f4[_0x446efc]=_0x53a2f4[_0x308010],_0x53a2f4[_0x308010]=_0x5850df;}_0x446efc=-0x2648+0xad*-0x17+0x9*0x5fb,_0x308010=-0x3*0xa91+-0x102a*0x2+-0x1*-0x4007;for(let _0x54af11=-0x127c+0xe6b+-0x3*-0x15b;_0x54af11<_0x16a0c3['\x6c\x65\x6e\x67\x74\x68'];_0x54af11++){_0x446efc=(_0x446efc+(-0x307*0x2+-0x1*-0x125e+-0x17*0x89))%(-0x10fe+0x1c20+-0xa22),_0x308010=(_0x308010+_0x53a2f4[_0x446efc])%(0x1*-0x1acf+-0x1919+0x34e8*0x1),_0x5850df=_0x53a2f4[_0x446efc],_0x53a2f4[_0x446efc]=_0x53a2f4[_0x308010],_0x53a2f4[_0x308010]=_0x5850df,_0x5780e7+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x16a0c3['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x54af11)^_0x53a2f4[(_0x53a2f4[_0x446efc]+_0x53a2f4[_0x308010])%(0x2641*-0x1+0xb*0x32b+0x468)]);}return _0x5780e7;};_0x515f['\x79\x69\x78\x4f\x67\x6b']=_0x4a37eb,_0x515f['\x70\x4f\x59\x4b\x48\x72']={},_0x515f['\x77\x72\x4d\x4d\x63\x72']=!![];}const _0x51dfe1=_0x3d2eca[0x1003+0x9e6+-0x19e9],_0x2f89cc=_0x1abcb7+_0x51dfe1,_0x1f89bf=_0x515f['\x70\x4f\x59\x4b\x48\x72'][_0x2f89cc];return!_0x1f89bf?(_0x515f['\x54\x62\x4e\x79\x6a\x4b']===undefined&&(_0x515f['\x54\x62\x4e\x79\x6a\x4b']=!![]),_0x4a4448=_0x515f['\x79\x69\x78\x4f\x67\x6b'](_0x4a4448,_0x5b304f),_0x515f['\x70\x4f\x59\x4b\x48\x72'][_0x2f89cc]=_0x4a4448):_0x4a4448=_0x1f89bf,_0x4a4448;}export function detectModelsProvider(_0x228057={}){const _0xc13823=_0x1a83f6;if(_0x228057[_0xc13823(0x8e4,'\x70\x48\x33\x5a')+_0xc13823(0x665,'\x43\x6b\x7a\x5d')+'\x6e']||_0x228057['\x61\x6e\x74\x68\x72\x6f\x70\x69'+_0xc13823(0x257,'\x5b\x21\x6c\x4b')])return'\x61\x6e\x74\x68\x72\x6f\x70\x69'+'\x63';return _0xc13823(0x5bb,'\x6d\x78\x4f\x5a');}export function vertexBaseUrl(_0x30bc53,_0x5bff3b=process.env){const _0xd66d0d=_0x1a83f6,_0x5ba15f=(_0x5bff3b[_0xd66d0d(0x98c,'\x52\x23\x32\x21')+'\x45\x52\x54\x45\x58\x5f\x42\x41'+_0xd66d0d(0x545,'\x5e\x25\x6e\x55')]||'')[_0xd66d0d(0x50e,'\x5e\x25\x6e\x55')]();if(_0x5ba15f)return _0x5ba15f[_0xd66d0d(0x3e4,'\x24\x6f\x4f\x58')](/\/+$/,'');const _0x49b435=_0x30bc53[_0xd66d0d(0x4c1,'\x50\x25\x42\x51')]();if(!_0x49b435||_0x49b435===_0xd66d0d(0x679,'\x21\x64\x4f\x62'))return _0xd66d0d(0x2da,'\x28\x74\x79\x54')+_0xd66d0d(0x3aa,'\x6d\x78\x4f\x5a')+'\x72\x6d\x2e\x67\x6f\x6f\x67\x6c'+_0xd66d0d(0x750,'\x77\x40\x4d\x76')+'\x6d';const _0x27481e=validatedVertexLocation(_0x49b435);return'\x68\x74\x74\x70\x73\x3a\x2f\x2f'+_0x27481e+(_0xd66d0d(0x81d,'\x28\x39\x6a\x36')+_0xd66d0d(0x832,'\x24\x6f\x4f\x58')+_0xd66d0d(0x330,'\x28\x74\x79\x54')+'\x6f\x6d');}export function buildOpenAIResponsesHandler(_0x2e8d4e){const _0xc3d403=_0x1a83f6,_0xb34707=_0x2e8d4e[_0xc3d403(0x757,'\x4b\x4d\x4a\x30')]??console,_0x3099be=_0x2e8d4e[_0xc3d403(0x2c2,'\x51\x76\x53\x5a')]??process.env;return _0x1b4f80=>{const _0x535c8d=_0xc3d403;if('\x72\x79\x6b\x79\x4c'==='\x42\x47\x79\x4e\x4b')_0x5eea8f=_0x4ea9c1(_0x3c8c76,_0x1836f0);else{const _0x59182f=routeOpenAIRequest(_0x535c8d(0x5a6,'\x57\x6d\x76\x52')+_0x535c8d(0x57a,'\x69\x44\x5e\x35'),_0x1b4f80[_0x535c8d(0x2c9,'\x4a\x40\x4d\x51')],_0x3099be,_0xb34707);return passthrough({'\x70\x72\x6f\x78\x79':_0x2e8d4e[_0x535c8d(0x8ca,'\x39\x6f\x42\x76')+_0x535c8d(0x81c,'\x57\x6d\x76\x52')],'\x70\x72\x6f\x76\x69\x64\x65\x72':_0x535c8d(0x636,'\x23\x7a\x48\x73'),'\x72\x6f\x75\x74\x65':_0x535c8d(0x555,'\x33\x69\x21\x55')+_0x535c8d(0x641,'\x41\x45\x5a\x75'),'\x75\x70\x73\x74\x72\x65\x61\x6d\x50\x61\x74\x68':_0x535c8d(0x787,'\x33\x28\x62\x59')+'\x65\x73','\x6d\x6f\x64\x65\x6c':_0x59182f[_0x535c8d(0x83e,'\x41\x45\x5a\x75')+_0x535c8d(0x723,'\x78\x58\x46\x63')],'\x63\x68\x6f\x73\x65\x6e\x4d\x6f\x64\x65\x6c':_0x59182f[_0x535c8d(0x39e,'\x21\x64\x4f\x62')+_0x535c8d(0x495,'\x26\x49\x5d\x5d')],'\x74\x69\x65\x72':_0x59182f[_0x535c8d(0x5eb,'\x4a\x40\x4d\x51')],'\x72\x65\x61\x73\x6f\x6e':_0x59182f[_0x535c8d(0x7ba,'\x5e\x25\x6e\x55')],'\x66\x61\x6c\x6c\x62\x61\x63\x6b':_0x59182f[_0x535c8d(0x26d,'\x4a\x40\x4d\x51')],'\x72\x6f\x75\x74\x65\x72\x45\x6e\x61\x62\x6c\x65\x64':_0x59182f[_0x535c8d(0x753,'\x70\x48\x33\x5a')+'\x61\x62\x6c\x65\x64'],..._0x59182f[_0x535c8d(0x38a,'\x24\x6f\x4f\x58')]?{'\x66\x65\x61\x74\x75\x72\x65\x73':_0x59182f[_0x535c8d(0x3e6,'\x5e\x25\x6e\x55')]}:{},'\x62\x6f\x64\x79':_0x59182f[_0x535c8d(0x414,'\x5e\x25\x6e\x55')],'\x72\x65\x74\x72\x79\x42\x6f\x64\x79':_0x1b4f80[_0x535c8d(0x623,'\x73\x53\x6c\x4e')],'\x68\x65\x61\x64\x65\x72\x73':_0x1b4f80[_0x535c8d(0x7ea,'\x57\x6d\x76\x52')]??{},'\x6c\x6f\x67\x67\x65\x72':_0xb34707,..._0x2e8d4e[_0x535c8d(0x507,'\x21\x64\x4f\x62')]?{'\x6f\x6e\x54\x72\x61\x63\x65':_0x2e8d4e[_0x535c8d(0x251,'\x51\x76\x53\x5a')]}:{},..._0x2e8d4e[_0x535c8d(0x480,'\x5e\x25\x6e\x55')]?{'\x63\x6c\x6f\x63\x6b':_0x2e8d4e[_0x535c8d(0x22a,'\x44\x4a\x71\x76')]}:{},'\x65\x6e\x76':_0x3099be,'\x72\x65\x73\x70\x6f\x6e\x73\x65\x48\x65\x61\x64\x65\x72\x73':copyOpenAIResponseHeaders});}};}export function buildOpenAIChatCompletionsHandler(_0x2520d2){const _0xcedd7b=_0x1a83f6,_0x593c2c=_0x2520d2[_0xcedd7b(0x93b,'\x59\x64\x43\x26')]??console,_0x36c9ed=_0x2520d2[_0xcedd7b(0x542,'\x26\x49\x5d\x5d')]??process.env;return _0x4e7169=>{const _0x1a674d=_0xcedd7b;if(_0x1a674d(0x2e2,'\x24\x6f\x4f\x58')!==_0x1a674d(0x48a,'\x78\x5b\x47\x72')){if(!_0x320e45(_0x2d90bf))return _0x8c1e23;const _0x39789c=_0x48eb15(_0x2ab4b9,['\x69\x64',_0x1a674d(0x31b,'\x78\x58\x46\x63'),_0x1a674d(0x21e,'\x47\x45\x4d\x32'),_0x1a674d(0x809,'\x73\x53\x6c\x4e')+_0x1a674d(0x4b7,'\x5b\x21\x6c\x4b')+'\x6c\x73']),_0x73c38e=_0x2eaf12[_0x1a674d(0x7a3,'\x33\x69\x21\x55')](_0x2f62f5[_0x1a674d(0x360,'\x44\x4a\x71\x76')])?_0x223bec[_0x1a674d(0x779,'\x31\x75\x65\x6f')][_0x1a674d(0x631,'\x4b\x40\x5b\x51')](_0x5747d6=>_0x4a1e35(_0x5747d6))[_0x1a674d(0x8fa,'\x64\x77\x74\x2a')](_0xe6c638=>_0xe6c638!==_0xf1b377):[];if(_0x73c38e['\x6c\x65\x6e\x67\x74\x68']>-0x204+-0x2*0x101f+-0x5*-0x6da)_0x39789c['\x6f\x75\x74\x70\x75\x74']=_0x73c38e;if(_0x5ead87(_0x13413d[_0x1a674d(0x558,'\x43\x6b\x7a\x5d')]))_0x39789c[_0x1a674d(0x693,'\x26\x49\x5d\x5d')]=_0x4579b7(_0xe4d49['\x65\x72\x72\x6f\x72'],[_0x1a674d(0x44b,'\x57\x6d\x76\x52'),_0x1a674d(0x38b,'\x78\x58\x46\x63'),_0x1a674d(0x2db,'\x44\x4a\x71\x76')]);return _0x217bcc[_0x1a674d(0x68e,'\x23\x7a\x48\x73')](_0x39789c)[_0x1a674d(0x567,'\x23\x7a\x48\x73')]>0x1937+-0x36d*0x1+-0x15ca?_0x39789c:_0xe29e3b;}else{const _0x607ab3=routeOpenAIRequest(_0x1a674d(0x934,'\x39\x6f\x42\x76')+_0x1a674d(0x373,'\x47\x45\x4d\x32')+_0x1a674d(0x1fa,'\x55\x66\x35\x74'),_0x4e7169[_0x1a674d(0x5e6,'\x59\x64\x43\x26')],_0x36c9ed,_0x593c2c);return passthrough({'\x70\x72\x6f\x78\x79':_0x2520d2['\x6f\x70\x65\x6e\x41\x49\x50\x72'+_0x1a674d(0x3b1,'\x31\x75\x65\x6f')],'\x70\x72\x6f\x76\x69\x64\x65\x72':_0x1a674d(0x277,'\x21\x64\x4f\x62'),'\x72\x6f\x75\x74\x65':'\x2f\x76\x31\x2f\x63\x68\x61\x74'+_0x1a674d(0x20e,'\x49\x56\x70\x4d')+_0x1a674d(0x817,'\x26\x49\x5d\x5d'),'\x75\x70\x73\x74\x72\x65\x61\x6d\x50\x61\x74\x68':_0x1a674d(0x923,'\x4b\x50\x6f\x48')+_0x1a674d(0x584,'\x54\x5b\x67\x52')+'\x73','\x6d\x6f\x64\x65\x6c':_0x607ab3[_0x1a674d(0x83e,'\x41\x45\x5a\x75')+_0x1a674d(0x452,'\x28\x39\x6a\x36')],'\x63\x68\x6f\x73\x65\x6e\x4d\x6f\x64\x65\x6c':_0x607ab3[_0x1a674d(0x900,'\x33\x53\x59\x55')+_0x1a674d(0x66a,'\x66\x54\x6a\x5e')],'\x74\x69\x65\x72':_0x607ab3[_0x1a674d(0x57f,'\x6d\x51\x71\x51')],'\x72\x65\x61\x73\x6f\x6e':_0x607ab3[_0x1a674d(0x821,'\x44\x4a\x71\x76')],'\x66\x61\x6c\x6c\x62\x61\x63\x6b':_0x607ab3[_0x1a674d(0x7f4,'\x31\x75\x65\x6f')],'\x72\x6f\x75\x74\x65\x72\x45\x6e\x61\x62\x6c\x65\x64':_0x607ab3[_0x1a674d(0x2ba,'\x26\x6d\x46\x41')+_0x1a674d(0x32f,'\x44\x4a\x71\x76')],..._0x607ab3[_0x1a674d(0x875,'\x70\x48\x33\x5a')]?{'\x66\x65\x61\x74\x75\x72\x65\x73':_0x607ab3[_0x1a674d(0x3db,'\x57\x6d\x76\x52')]}:{},'\x62\x6f\x64\x79':_0x607ab3[_0x1a674d(0x575,'\x55\x66\x35\x74')],'\x72\x65\x74\x72\x79\x42\x6f\x64\x79':_0x4e7169[_0x1a674d(0x550,'\x6d\x51\x71\x51')],'\x68\x65\x61\x64\x65\x72\x73':_0x4e7169[_0x1a674d(0x8a0,'\x55\x66\x35\x74')]??{},'\x6c\x6f\x67\x67\x65\x72':_0x593c2c,..._0x2520d2[_0x1a674d(0x91f,'\x63\x6b\x2a\x26')]?{'\x6f\x6e\x54\x72\x61\x63\x65':_0x2520d2[_0x1a674d(0x208,'\x6d\x78\x4f\x5a')]}:{},..._0x2520d2['\x63\x6c\x6f\x63\x6b']?{'\x63\x6c\x6f\x63\x6b':_0x2520d2[_0x1a674d(0x451,'\x52\x23\x32\x21')]}:{},'\x65\x6e\x76':_0x36c9ed,'\x72\x65\x73\x70\x6f\x6e\x73\x65\x48\x65\x61\x64\x65\x72\x73':copyOpenAIResponseHeaders});}};}export function buildGeminiHandler(_0x2eb271){const _0x262a1e=_0x1a83f6,_0x3adc0b=_0x2eb271[_0x262a1e(0x619,'\x51\x76\x53\x5a')]??console,_0x253c93=_0x2eb271[_0x262a1e(0x8ce,'\x70\x48\x33\x5a')]??process.env;return async _0x1e04d5=>{const _0x2c40e3=_0x262a1e;if(_0x2c40e3(0x6ea,'\x74\x31\x42\x29')!==_0x2c40e3(0x91e,'\x42\x6f\x57\x21')){this[_0x2c40e3(0x7ed,'\x73\x53\x6c\x4e')+_0x2c40e3(0x520,'\x6d\x69\x21\x38')+_0x2c40e3(0x563,'\x6d\x69\x21\x38')]=!![];return;}else{const {model:_0x3091c8,action:_0x19259e}=validatedModelAction(_0x1e04d5[_0x2c40e3(0x3ed,'\x33\x28\x62\x59')]?.['\x6d\x6f\x64\x65\x6c\x41\x63\x74'+_0x2c40e3(0x6e7,'\x7a\x46\x50\x4e')]??''),_0xe2db17=providerQueryString(_0x1e04d5[_0x2c40e3(0x6e0,'\x74\x31\x42\x29')]);return passthrough({'\x70\x72\x6f\x78\x79':_0x2eb271['\x67\x65\x6d\x69\x6e\x69\x50\x72'+'\x6f\x78\x79'],'\x70\x72\x6f\x76\x69\x64\x65\x72':_0x2c40e3(0x49e,'\x28\x74\x79\x54'),'\x72\x6f\x75\x74\x65':_0x2c40e3(0x826,'\x57\x6d\x76\x52')+_0x2c40e3(0x344,'\x49\x56\x70\x4d')+_0x3091c8+'\x3a'+_0x19259e,'\x75\x70\x73\x74\x72\x65\x61\x6d\x50\x61\x74\x68':'\x2f\x76\x31\x62\x65\x74\x61\x2f'+_0x2c40e3(0x808,'\x33\x28\x62\x59')+encodeURIComponent(_0x3091c8)+'\x3a'+_0x19259e+_0xe2db17,'\x6d\x6f\x64\x65\x6c':_0x3091c8,'\x62\x6f\x64\x79':_0x1e04d5[_0x2c40e3(0x25e,'\x43\x6b\x7a\x5d')],'\x68\x65\x61\x64\x65\x72\x73':_0x1e04d5['\x68\x65\x61\x64\x65\x72\x73']??{},'\x6c\x6f\x67\x67\x65\x72':_0x3adc0b,..._0x2eb271[_0x2c40e3(0x407,'\x4a\x40\x4d\x51')]?{'\x6f\x6e\x54\x72\x61\x63\x65':_0x2eb271[_0x2c40e3(0x507,'\x21\x64\x4f\x62')]}:{},..._0x2eb271[_0x2c40e3(0x94b,'\x64\x77\x74\x2a')]?{'\x63\x6c\x6f\x63\x6b':_0x2eb271['\x63\x6c\x6f\x63\x6b']}:{},'\x65\x6e\x76':_0x253c93,'\x72\x65\x73\x70\x6f\x6e\x73\x65\x48\x65\x61\x64\x65\x72\x73':copyGeminiResponseHeaders});}};}export function buildOllamaHandler(_0x5a13eb){const _0x44f066=_0x1a83f6,_0x39222e=_0x5a13eb[_0x44f066(0x25f,'\x66\x54\x6a\x5e')]??console,_0x5750f7=_0x5a13eb[_0x44f066(0x3ef,'\x5b\x21\x6c\x4b')]??process.env;return _0x21416a=>passthrough({'\x70\x72\x6f\x78\x79':_0x5a13eb[_0x44f066(0x942,'\x50\x25\x42\x51')+_0x44f066(0x685,'\x4b\x50\x6f\x48')],'\x70\x72\x6f\x76\x69\x64\x65\x72':_0x44f066(0x43c,'\x23\x7a\x48\x73'),'\x72\x6f\x75\x74\x65':_0x5a13eb[_0x44f066(0x736,'\x45\x31\x75\x66')],'\x75\x70\x73\x74\x72\x65\x61\x6d\x50\x61\x74\x68':_0x5a13eb[_0x44f066(0x5b7,'\x33\x53\x59\x55')],'\x6d\x6f\x64\x65\x6c':typeof _0x21416a['\x62\x6f\x64\x79'][_0x44f066(0x316,'\x63\x6b\x2a\x26')]===_0x44f066(0x4dc,'\x63\x6b\x2a\x26')?_0x21416a[_0x44f066(0x550,'\x6d\x51\x71\x51')][_0x44f066(0x3ea,'\x7a\x46\x50\x4e')]:null,'\x62\x6f\x64\x79':_0x21416a[_0x44f066(0x7bb,'\x23\x7a\x48\x73')],'\x68\x65\x61\x64\x65\x72\x73':_0x21416a[_0x44f066(0x87d,'\x59\x64\x43\x26')]??{},'\x6c\x6f\x67\x67\x65\x72':_0x39222e,..._0x5a13eb[_0x44f066(0x541,'\x42\x6f\x57\x21')]?{'\x6f\x6e\x54\x72\x61\x63\x65':_0x5a13eb[_0x44f066(0x54f,'\x43\x6b\x7a\x5d')]}:{},..._0x5a13eb[_0x44f066(0x84c,'\x4b\x4d\x4a\x30')]?{'\x63\x6c\x6f\x63\x6b':_0x5a13eb[_0x44f066(0x5b6,'\x39\x6f\x42\x76')]}:{},'\x65\x6e\x76':_0x5750f7});}export function buildVertexHandler(_0x3ffd39){const _0x45ffed=_0x1a83f6,_0x541b94=_0x3ffd39[_0x45ffed(0x8ba,'\x28\x39\x6a\x36')]??console,_0x30e699=_0x3ffd39[_0x45ffed(0x4fc,'\x6d\x51\x71\x51')]??process.env;return async _0x43bab5=>{const _0x52fe47=_0x45ffed,_0x50858a=validatedVertexProject(_0x43bab5['\x70\x61\x72\x61\x6d\x73']?.['\x70\x72\x6f\x6a\x65\x63\x74']??''),_0x575e63=validatedVertexLocation(_0x43bab5[_0x52fe47(0x489,'\x4b\x50\x6f\x48')]?.[_0x52fe47(0x6ad,'\x28\x74\x79\x54')]??''),{model:_0x5a8868,action:_0x4abc5d}=validatedModelAction(_0x43bab5['\x70\x61\x72\x61\x6d\x73']?.[_0x52fe47(0x259,'\x24\x6f\x4f\x58')+'\x69\x6f\x6e']??''),_0x2314a6=providerQueryString(_0x43bab5[_0x52fe47(0x6e0,'\x74\x31\x42\x29')]);return passthrough({'\x70\x72\x6f\x78\x79':_0x3ffd39[_0x52fe47(0x66b,'\x39\x6f\x42\x76')+_0x52fe47(0x85b,'\x33\x53\x59\x55')],'\x70\x72\x6f\x76\x69\x64\x65\x72':_0x52fe47(0x273,'\x69\x44\x5e\x35'),'\x72\x6f\x75\x74\x65':'\x2f\x76\x31\x2f\x70\x72\x6f\x6a'+_0x52fe47(0x2bd,'\x43\x6b\x7a\x5d')+_0x50858a+(_0x52fe47(0x20f,'\x4b\x4d\x4a\x30')+_0x52fe47(0x492,'\x55\x66\x35\x74'))+_0x575e63+(_0x52fe47(0x32d,'\x33\x28\x62\x59')+_0x52fe47(0x7eb,'\x21\x64\x4f\x62')+'\x6c\x65\x2f\x6d\x6f\x64\x65\x6c'+'\x73\x2f')+_0x5a8868+'\x3a'+_0x4abc5d,'\x75\x70\x73\x74\x72\x65\x61\x6d\x50\x61\x74\x68':_0x52fe47(0x6b5,'\x33\x28\x62\x59')+_0x52fe47(0x68c,'\x49\x56\x70\x4d')+encodeURIComponent(_0x50858a)+(_0x52fe47(0x556,'\x73\x47\x57\x6a')+'\x6e\x73\x2f')+encodeURIComponent(_0x575e63)+('\x2f\x70\x75\x62\x6c\x69\x73\x68'+_0x52fe47(0x796,'\x52\x23\x32\x21')+_0x52fe47(0x5cf,'\x78\x58\x46\x63')+'\x73\x2f')+encodeURIComponent(_0x5a8868)+'\x3a'+_0x4abc5d+_0x2314a6,'\x6d\x6f\x64\x65\x6c':_0x5a8868,'\x62\x6f\x64\x79':_0x43bab5[_0x52fe47(0x253,'\x33\x28\x62\x59')],'\x68\x65\x61\x64\x65\x72\x73':_0x43bab5[_0x52fe47(0x5ea,'\x69\x44\x5e\x35')]??{},'\x6c\x6f\x67\x67\x65\x72':_0x541b94,'\x62\x61\x73\x65\x55\x72\x6c':vertexBaseUrl(_0x575e63,_0x30e699),..._0x3ffd39[_0x52fe47(0x769,'\x23\x7a\x48\x73')]?{'\x6f\x6e\x54\x72\x61\x63\x65':_0x3ffd39[_0x52fe47(0x7d6,'\x28\x74\x79\x54')]}:{},..._0x3ffd39[_0x52fe47(0x97a,'\x63\x6b\x2a\x26')]?{'\x63\x6c\x6f\x63\x6b':_0x3ffd39[_0x52fe47(0x60a,'\x28\x74\x79\x54')]}:{},'\x65\x6e\x76':_0x30e699});};}export function buildModelsHandler(_0x3a4be1){const _0x5152a9=_0x1a83f6,_0xc372e1=_0x3a4be1[_0x5152a9(0x49d,'\x39\x6f\x42\x76')]??console;return async _0x1d6455=>{const _0xeb929a=_0x5152a9;if(_0xeb929a(0x8a8,'\x4a\x40\x4d\x51')!==_0xeb929a(0x4ad,'\x73\x53\x6c\x4e')){const _0x28a731=_0x1d6455[_0xeb929a(0x231,'\x49\x56\x70\x4d')]??{},_0x364c72=detectModelsProvider(_0x28a731),_0x14ea20=_0x364c72===_0xeb929a(0x473,'\x6d\x69\x21\x38')+'\x63'?_0x3a4be1[_0xeb929a(0x629,'\x28\x74\x79\x54')+'\x63\x50\x72\x6f\x78\x79']:_0x3a4be1[_0xeb929a(0x8ca,'\x39\x6f\x42\x76')+_0xeb929a(0x497,'\x33\x69\x21\x55')],_0xf1c3b=_0x364c72===_0xeb929a(0x212,'\x66\x54\x6a\x5e')+'\x63'?_0xeb929a(0x652,'\x26\x6d\x46\x41')+'\x6c\x73':_0xeb929a(0x2b8,'\x5e\x25\x6e\x55'),_0xe4623a=await _0x14ea20(_0xf1c3b,null,{'\x6d\x65\x74\x68\x6f\x64':_0xeb929a(0x1f4,'\x42\x6f\x57\x21'),'\x69\x6e\x62\x6f\x75\x6e\x64\x48\x65\x61\x64\x65\x72\x73':_0x28a731,'\x75\x70\x73\x74\x72\x65\x61\x6d\x4d\x6f\x64\x65':_0x364c72});let _0x110ec2='';if(_0xe4623a[_0xeb929a(0x470,'\x49\x56\x70\x4d')])try{_0x110ec2=await Promise[_0xeb929a(0x64d,'\x4b\x4d\x4a\x30')](_0xe4623a[_0xeb929a(0x463,'\x52\x23\x32\x21')]());}catch{_0xeb929a(0x280,'\x6d\x51\x71\x51')===_0xeb929a(0x7f9,'\x4b\x50\x6f\x48')?this[_0xeb929a(0x337,'\x31\x75\x65\x6f')+_0xeb929a(0x427,'\x66\x54\x6a\x5e')+'\x73']-=_0x1768cc[_0xeb929a(0x543,'\x55\x66\x35\x74')+'\x74\x68'](_0x1588c8[_0xeb929a(0x844,'\x77\x40\x4d\x76')+'\x79'](_0x421f20),_0xeb929a(0x203,'\x69\x44\x5e\x35')):_0x110ec2='';}const _0x999068=responseToBody(_0x110ec2,_0xe4623a['\x73\x74\x61\x74\x75\x73'],_0xe4623a[_0xeb929a(0x231,'\x49\x56\x70\x4d')],_0xc372e1,_0xeb929a(0x8dd,'\x58\x31\x78\x39')+_0xeb929a(0x4ae,'\x78\x5b\x47\x72'));return{'\x73\x74\x61\x74\x75\x73':_0xe4623a['\x73\x74\x61\x74\x75\x73'],'\x62\x6f\x64\x79':_0x999068};}else this[_0xeb929a(0x848,'\x26\x49\x5d\x5d')+'\x54\x61\x69\x6c']=(this[_0xeb929a(0x7d8,'\x6d\x51\x71\x51')+'\x54\x61\x69\x6c']+_0x3ad991)['\x73\x6c\x69\x63\x65'](-_0x2fedc8),_0x182cc4(this[_0xeb929a(0x5f7,'\x4b\x40\x5b\x51')],_0x209d8a);};}export function buildProviderRoutes(_0x3e6971){const _0x5933b4=_0x1a83f6;return{'\x50\x4f\x53\x54\x20\x2f\x76\x31\x2f\x72\x65\x73\x70\x6f\x6e\x73\x65\x73':buildOpenAIResponsesHandler(_0x3e6971),'\x50\x4f\x53\x54\x20\x2f\x76\x31\x2f\x63\x68\x61\x74\x2f\x63\x6f\x6d\x70\x6c\x65\x74\x69\x6f\x6e\x73':buildOpenAIChatCompletionsHandler(_0x3e6971),'\x47\x45\x54\x20\x2f\x76\x31\x2f\x6d\x6f\x64\x65\x6c\x73':buildModelsHandler(_0x3e6971),'\x50\x4f\x53\x54\x20\x2f\x76\x31\x62\x65\x74\x61\x2f\x6d\x6f\x64\x65\x6c\x73\x2f\x3a\x6d\x6f\x64\x65\x6c\x41\x63\x74\x69\x6f\x6e':buildGeminiHandler(_0x3e6971),'\x50\x4f\x53\x54\x20\x2f\x61\x70\x69\x2f\x63\x68\x61\x74':buildOllamaHandler({..._0x3e6971,'\x61\x70\x69\x50\x61\x74\x68':_0x5933b4(0x5b2,'\x6d\x78\x4f\x5a')+'\x74'}),'\x50\x4f\x53\x54\x20\x2f\x61\x70\x69\x2f\x67\x65\x6e\x65\x72\x61\x74\x65':buildOllamaHandler({..._0x3e6971,'\x61\x70\x69\x50\x61\x74\x68':_0x5933b4(0x5d0,'\x73\x53\x6c\x4e')+'\x65\x72\x61\x74\x65'}),'\x50\x4f\x53\x54\x20\x2f\x76\x31\x2f\x70\x72\x6f\x6a\x65\x63\x74\x73\x2f\x3a\x70\x72\x6f\x6a\x65\x63\x74\x2f\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x73\x2f\x3a\x6c\x6f\x63\x61\x74\x69\x6f\x6e\x2f\x70\x75\x62\x6c\x69\x73\x68\x65\x72\x73\x2f\x67\x6f\x6f\x67\x6c\x65\x2f\x6d\x6f\x64\x65\x6c\x73\x2f\x3a\x6d\x6f\x64\x65\x6c\x41\x63\x74\x69\x6f\x6e':buildVertexHandler(_0x3e6971)};}