@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,514 +1 @@
1
- // Real upstream for the LLM proxy handlers. Anthropic /v1/messages keeps the v1 token-mediation behavior;
2
- // OpenAI-compatible routes use daemon-owned OpenAI credentials so the local proxy bearer token never goes
3
- // upstream as provider auth.
4
- //
5
- // Header policy (token mediation, same as v1): forward ONLY x-api-key, anthropic-version and anthropic-*
6
- // from the inbound request. Everything else — host, cookie, content-length and crucially `authorization`
7
- // (consumed by the local server as proxy self-auth) — is dropped so the proxy token never leaks upstream.
8
- // When the client sent no x-api-key, the proxy substitutes its own env credential per request (hot-swappable
9
- // without restart): EVOMAP_ANTHROPIC_API_KEY / ANTHROPIC_API_KEY → x-api-key, else an upstream auth token.
10
- import { ReadableStream } from 'node:stream/web';
11
- import { canonicalizeForBedrock, resolveBedrockAliases, supportsAdaptiveThinking } from '../router/messagesRoute.js';
12
- export const DEFAULT_UPSTREAM_URL = 'https://api.anthropic.com';
13
- export const DEFAULT_OPENAI_UPSTREAM_URL = 'https://api.openai.com/v1';
14
- export const DEFAULT_GEMINI_UPSTREAM_URL = 'https://generativelanguage.googleapis.com';
15
- export const DEFAULT_OLLAMA_UPSTREAM_URL = 'http://127.0.0.1:11434';
16
- /** Time allowed for upstream RESPONSE HEADERS to arrive. Never applied to the body: a healthy SSE stream
17
- * routinely outlives any fixed deadline, so an AbortSignal.timeout-style cap on the whole fetch would kill
18
- * long generations mid-stream (a real v1 hazard). Body lifetime is bounded by the client connection instead. */
19
- export const DEFAULT_HEADERS_TIMEOUT_MS = 120_000;
20
- let defaultBedrockRuntime = null;
21
- async function loadDefaultBedrockRuntime() {
22
- if (!defaultBedrockRuntime) {
23
- const mod = await import('@aws-sdk/client-bedrock-runtime');
24
- defaultBedrockRuntime = {
25
- createClient: (args) => new mod.BedrockRuntimeClient(args),
26
- createInvokeModelCommand: (input) => new mod.InvokeModelCommand(input),
27
- createInvokeModelWithResponseStreamCommand: (input) => new mod.InvokeModelWithResponseStreamCommand(input),
28
- };
29
- }
30
- return defaultBedrockRuntime;
31
- }
32
- function isOpenAiMode(upstreamMode) {
33
- return upstreamMode === 'openai';
34
- }
35
- /**
36
- * Detect deprecated OPENAI_COMPATIBLE_BASE_URLS env var (#671).
37
- * V1 multi-base lists are ignored for routing; V2 OpenAI base must pass *.api.openai.com/v1 allowlist
38
- * via EVOLVER_LLM_OPENAI_BASE_URL / EVOMAP_OPENAI_BASE_URL / OPENAI_BASE_URL.
39
- * Warn once per process to avoid per-request spam.
40
- */
41
- let warnedDeprecatedOpenAICompatible = false;
42
- function warnDeprecatedOpenAICompatible(env) {
43
- const deprecatedValue = env['EVOMAP_OPENAI_COMPATIBLE_BASE_URLS'] || env['EVOLVER_OPENAI_COMPATIBLE_BASE_URLS'];
44
- if (!deprecatedValue || warnedDeprecatedOpenAICompatible)
45
- return;
46
- warnedDeprecatedOpenAICompatible = true;
47
- console.warn('[proxy] DEPRECATED: EVOMAP_OPENAI_COMPATIBLE_BASE_URLS / EVOLVER_OPENAI_COMPATIBLE_BASE_URLS is ignored for routing. ' +
48
- 'V2 accepts only https://*.api.openai.com/v1 via EVOLVER_LLM_OPENAI_BASE_URL, EVOMAP_OPENAI_BASE_URL, or OPENAI_BASE_URL. ' +
49
- 'LiteLLM / OpenRouter / Azure OpenAI-compatible hosts are not accepted on this OpenAI path — use a reverse proxy in front of api.openai.com or a non-OpenAI provider mode. ' +
50
- 'Remove the deprecated multi-base env var.');
51
- }
52
- /** Test helper: reset once-warn latch (unit tests only). */
53
- function resetDeprecatedOpenAICompatibleWarning() {
54
- warnedDeprecatedOpenAICompatible = false;
55
- }
56
- function isAllowedOpenAIHostname(hostname) {
57
- const h = hostname.toLowerCase();
58
- return h === 'api.openai.com' || h.endsWith('.api.openai.com');
59
- }
60
- function normalizeOpenAIBaseUrl(raw) {
61
- const value = raw.replace(/\/+$/, '');
62
- let parsed;
63
- try {
64
- parsed = new URL(value);
65
- }
66
- catch {
67
- throw new Error('[proxy] OpenAI base URL is not a valid URL');
68
- }
69
- if (parsed.protocol !== 'https:'
70
- || !isAllowedOpenAIHostname(parsed.hostname)
71
- || parsed.pathname !== '/v1'
72
- || parsed.username
73
- || parsed.password
74
- || parsed.search
75
- || parsed.hash) {
76
- throw new Error('[proxy] OpenAI base URL must be an OpenAI https://*.api.openai.com/v1 endpoint');
77
- }
78
- return value;
79
- }
80
- export function resolveOpenAIUpstreamUrl(env = process.env) {
81
- warnDeprecatedOpenAICompatible(env);
82
- return normalizeOpenAIBaseUrl(env['EVOLVER_LLM_OPENAI_BASE_URL'] || env['EVOMAP_OPENAI_BASE_URL'] || env['OPENAI_BASE_URL'] || DEFAULT_OPENAI_UPSTREAM_URL);
83
- }
84
- function pathForOpenAIBase(path) {
85
- if (path === '/v1')
86
- return '';
87
- if (path.startsWith('/v1/'))
88
- return path.slice('/v1'.length);
89
- return path.startsWith('/') ? path : `/${path}`;
90
- }
91
- /**
92
- * Validate an operator-configured upstream URL (#197): must parse as an http(s) URL with no embedded credentials.
93
- * Scheme-only on purpose — NO host allowlist — so legit localhost (ollama) and internal gateways keep working,
94
- * while file:/gopher:/data: schemes and userinfo-based SSRF tricks (user:pass@host) are refused. Returns trimmed.
95
- */
96
- function assertHttpUrl(raw, label) {
97
- let parsed;
98
- try {
99
- parsed = new URL(raw);
100
- }
101
- catch {
102
- throw new Error(`[proxy] ${label} is not a valid URL`);
103
- }
104
- if (parsed.protocol !== 'http:' && parsed.protocol !== 'https:')
105
- throw new Error(`[proxy] ${label} must use http(s)`);
106
- if (parsed.username || parsed.password)
107
- throw new Error(`[proxy] ${label} must not embed credentials`);
108
- return raw.replace(/\/+$/, '');
109
- }
110
- /** Resolve the upstream base URL. OpenAI-compatible routes never inherit the Anthropic-wide override. */
111
- export function resolveUpstreamUrl(env = process.env, upstreamMode = 'anthropic') {
112
- if (isOpenAiMode(upstreamMode))
113
- return resolveOpenAIUpstreamUrl(env);
114
- const raw = env['EVOLVER_LLM_UPSTREAM_URL'] || env['ANTHROPIC_BASE_URL'] || DEFAULT_UPSTREAM_URL;
115
- return assertHttpUrl(raw, 'Anthropic upstream URL');
116
- }
117
- export function resolveGeminiUpstreamUrl(env = process.env) {
118
- const raw = env['EVOMAP_GEMINI_BASE_URL'] || DEFAULT_GEMINI_UPSTREAM_URL;
119
- return assertHttpUrl(raw, 'Gemini base URL');
120
- }
121
- export function resolveOllamaUpstreamUrl(env = process.env) {
122
- const raw = env['EVOMAP_OLLAMA_BASE_URL'] || DEFAULT_OLLAMA_UPSTREAM_URL;
123
- return assertHttpUrl(raw, 'Ollama base URL');
124
- }
125
- export function buildForwardHeaders(inbound, env, upstreamMode = 'anthropic') {
126
- const fwd = { 'content-type': 'application/json' };
127
- if (isOpenAiMode(upstreamMode)) {
128
- for (const [k, v] of Object.entries(inbound)) {
129
- if (v === undefined || v === null)
130
- continue;
131
- const lk = k.toLowerCase();
132
- if (lk === 'openai-organization' || lk === 'openai-project' || lk === 'openai-beta' || lk.startsWith('x-stainless-') || lk === 'idempotency-key') {
133
- fwd[lk] = String(v);
134
- }
135
- }
136
- const apiKey = env['EVOLVER_LLM_OPENAI_API_KEY'] || env['EVOMAP_OPENAI_API_KEY'] || env['OPENAI_API_KEY'];
137
- if (apiKey)
138
- fwd['authorization'] = `Bearer ${apiKey}`;
139
- }
140
- else {
141
- for (const [k, v] of Object.entries(inbound)) {
142
- if (v === undefined || v === null)
143
- continue;
144
- const lk = k.toLowerCase();
145
- if (lk === 'x-api-key' || lk === 'anthropic-version' || lk.startsWith('anthropic-'))
146
- fwd[lk] = String(v);
147
- }
148
- if (!fwd['x-api-key']) {
149
- if (env['EVOMAP_ANTHROPIC_API_KEY'])
150
- fwd['x-api-key'] = env['EVOMAP_ANTHROPIC_API_KEY'];
151
- else if (env['ANTHROPIC_API_KEY'])
152
- fwd['x-api-key'] = env['ANTHROPIC_API_KEY'];
153
- else if (env['EVOMAP_ANTHROPIC_AUTH_TOKEN'])
154
- fwd['authorization'] = `Bearer ${env['EVOMAP_ANTHROPIC_AUTH_TOKEN']}`;
155
- else if (env['EVOMAP_PROXY_AUTO_INJECTED'] !== '1' && env['ANTHROPIC_AUTH_TOKEN']) {
156
- fwd['authorization'] = `Bearer ${env['ANTHROPIC_AUTH_TOKEN']}`;
157
- }
158
- }
159
- }
160
- return fwd;
161
- }
162
- function safeHeaderValue(value) {
163
- if (value === undefined || value === null)
164
- return null;
165
- const s = String(value);
166
- if (/[\r\n]/.test(s))
167
- return null;
168
- return s;
169
- }
170
- export function buildOpenAIHeaders(inbound, env) {
171
- const fwd = { 'content-type': 'application/json' };
172
- for (const [k, v] of Object.entries(inbound)) {
173
- const lk = k.toLowerCase();
174
- if (lk !== 'openai-organization' && lk !== 'openai-project' && lk !== 'openai-beta' && !lk.startsWith('x-stainless-'))
175
- continue;
176
- const hv = safeHeaderValue(v);
177
- if (hv !== null)
178
- fwd[lk] = hv;
179
- }
180
- const upstreamKey = env['EVOLVER_LLM_OPENAI_API_KEY'] || env['EVOMAP_OPENAI_API_KEY'] || env['OPENAI_API_KEY'];
181
- if (!upstreamKey)
182
- throw Object.assign(new Error('openai api key required'), { statusCode: 401 });
183
- fwd.authorization = `Bearer ${upstreamKey}`;
184
- return fwd;
185
- }
186
- export function buildGeminiHeaders(inbound, env) {
187
- const fwd = { 'content-type': 'application/json' };
188
- for (const [k, v] of Object.entries(inbound)) {
189
- const lk = k.toLowerCase();
190
- if (lk !== 'x-goog-user-project' && lk !== 'x-goog-api-client' && !lk.startsWith('x-goog-request-'))
191
- continue;
192
- const hv = safeHeaderValue(v);
193
- if (hv !== null)
194
- fwd[lk] = hv;
195
- }
196
- const upstreamKey = env['EVOMAP_GEMINI_API_KEY'] || env['GEMINI_API_KEY'] || env['GOOGLE_API_KEY'];
197
- if (!upstreamKey)
198
- throw Object.assign(new Error('gemini api key required'), { statusCode: 401 });
199
- fwd['x-goog-api-key'] = upstreamKey;
200
- return fwd;
201
- }
202
- export function buildOllamaHeaders(env) {
203
- const fwd = { 'content-type': 'application/json' };
204
- const upstreamKey = env['EVOMAP_OLLAMA_API_KEY'];
205
- if (upstreamKey)
206
- fwd.authorization = `Bearer ${upstreamKey}`;
207
- return fwd;
208
- }
209
- export function buildVertexHeaders(env) {
210
- const token = env['EVOMAP_VERTEX_ACCESS_TOKEN'];
211
- if (!token)
212
- throw Object.assign(new Error('vertex access token required'), { statusCode: 401 });
213
- return { 'content-type': 'application/json', authorization: `Bearer ${token}` };
214
- }
215
- function providerGatewayError(provider, err, fallbackStatus = 502) {
216
- const name = err && typeof err === 'object' && 'name' in err ? String(err.name) : '';
217
- const isTimeout = name === 'TimeoutError' || name === 'AbortError';
218
- return Object.assign(new Error(isTimeout ? `${provider} upstream timed out` : `${provider} upstream request failed`), {
219
- statusCode: isTimeout ? 504 : fallbackStatus,
220
- cause: err,
221
- });
222
- }
223
- async function fetchUpstream(endpoint, body, opts, headers, fetchImpl, headersTimeoutMs, provider, streamDetector) {
224
- const method = (opts.method || 'POST').toUpperCase();
225
- const controller = new AbortController();
226
- const timeoutErr = new Error(`${provider} upstream timed out`);
227
- timeoutErr.name = 'TimeoutError';
228
- const timer = setTimeout(() => controller.abort(timeoutErr), headersTimeoutMs);
229
- let res;
230
- try {
231
- const init = { method, headers, signal: controller.signal };
232
- if (method !== 'GET' && method !== 'HEAD')
233
- init.body = JSON.stringify(body ?? {});
234
- res = await fetchImpl(endpoint, init);
235
- }
236
- catch (err) {
237
- clearTimeout(timer);
238
- throw providerGatewayError(provider, err);
239
- }
240
- finally {
241
- clearTimeout(timer);
242
- }
243
- const resHeaders = {};
244
- for (const [k, v] of res.headers.entries())
245
- resHeaders[k.toLowerCase()] = v;
246
- const isStream = streamDetector(resHeaders, endpoint, body);
247
- return {
248
- status: res.status,
249
- headers: resHeaders,
250
- stream: isStream ? res.body : null,
251
- text: isStream ? undefined : () => res.text().catch((err) => { throw providerGatewayError(provider, err); }),
252
- };
253
- }
254
- const contentTypeIncludes = (headers, token) => (headers['content-type'] || '').toLowerCase().includes(token);
255
- function jsonResult(status, body) {
256
- const text = JSON.stringify(body);
257
- return {
258
- status,
259
- headers: { 'content-type': 'application/json' },
260
- stream: null,
261
- text: () => text,
262
- };
263
- }
264
- function bodyRecord(body) {
265
- if (!body || typeof body !== 'object' || Array.isArray(body))
266
- return {};
267
- return body;
268
- }
269
- function textFromBytes(value) {
270
- if (typeof value === 'string')
271
- return value;
272
- if (value instanceof Uint8Array)
273
- return Buffer.from(value).toString('utf8');
274
- if (value instanceof ArrayBuffer)
275
- return Buffer.from(value).toString('utf8');
276
- return '';
277
- }
278
- function bedrockErrorResult(err) {
279
- const e = err && typeof err === 'object' ? err : {};
280
- const metadata = e['$metadata'] && typeof e['$metadata'] === 'object' ? e['$metadata'] : {};
281
- const name = typeof e['name'] === 'string' ? e['name'] : 'upstream_error';
282
- const message = typeof e['message'] === 'string' ? e['message'] : String(err);
283
- const httpStatus = typeof metadata['httpStatusCode'] === 'number' ? metadata['httpStatusCode'] : undefined;
284
- const status = name === 'TimeoutError' || name === 'AbortError' ? 504 : httpStatus ?? 500;
285
- return jsonResult(status, { type: 'error', error: { type: name, message } });
286
- }
287
- function normalizeBedrockBody(body, env) {
288
- const source = bodyRecord(body);
289
- const rawModel = typeof source['model'] === 'string' ? source['model'] : null;
290
- const canonicalModel = rawModel ? canonicalizeForBedrock(rawModel, resolveBedrockAliases(env)) : null;
291
- const modelId = typeof canonicalModel === 'string' && canonicalModel.length > 0 ? canonicalModel : null;
292
- if (!modelId) {
293
- return jsonResult(400, {
294
- type: 'error',
295
- error: { type: 'invalid_request_error', message: 'body.model required for Bedrock upstream' },
296
- });
297
- }
298
- const upstreamBody = { ...source };
299
- delete upstreamBody['model'];
300
- if (!upstreamBody['anthropic_version'])
301
- upstreamBody['anthropic_version'] = 'bedrock-2023-05-31';
302
- const wantsStream = upstreamBody['stream'] === true;
303
- delete upstreamBody['stream'];
304
- const modelSupportsAdaptiveThinking = supportsAdaptiveThinking(modelId);
305
- const thinking = upstreamBody['thinking'];
306
- if (!modelSupportsAdaptiveThinking && thinking && typeof thinking === 'object' && !Array.isArray(thinking)) {
307
- const thinkingRecord = thinking;
308
- if (thinkingRecord['type'] === 'adaptive') {
309
- const maxTokens = typeof upstreamBody['max_tokens'] === 'number' ? upstreamBody['max_tokens'] : 8192;
310
- const budget = thinkingRecord['budget_tokens'];
311
- // Legacy `enabled` thinking requires 1024 <= budget_tokens < max_tokens (Bedrock rejects anything else).
312
- // If max_tokens leaves no room for a >=1024 budget, thinking cannot be enabled at all → disable, even when an
313
- // inbound budget_tokens is present. Otherwise CLAMP the requested (or a derived) budget into [1024, maxTokens-1]
314
- // so a sub-1024 or too-large inbound budget can't reach Bedrock verbatim and fail strict validation (Bugbot).
315
- if (maxTokens <= 1024) {
316
- upstreamBody['thinking'] = { type: 'disabled' };
317
- }
318
- else {
319
- const desired = typeof budget === 'number' ? budget : Math.floor(maxTokens / 2);
320
- const clamped = Math.min(Math.max(1024, desired), maxTokens - 1);
321
- upstreamBody['thinking'] = { ...thinkingRecord, type: 'enabled', budget_tokens: clamped };
322
- }
323
- }
324
- }
325
- delete upstreamBody['context_management'];
326
- if (!modelSupportsAdaptiveThinking)
327
- delete upstreamBody['output_config'];
328
- return { modelId, upstreamBody, wantsStream };
329
- }
330
- function bedrockException(event) {
331
- return event.internalServerException
332
- ?? event.modelStreamErrorException
333
- ?? event.throttlingException
334
- ?? event.validationException
335
- ?? event.modelTimeoutException
336
- ?? event.serviceUnavailableException
337
- ?? null;
338
- }
339
- function bedrockChunkFrame(bytes) {
340
- const data = textFromBytes(bytes);
341
- if (!data)
342
- return '';
343
- try {
344
- const parsed = JSON.parse(data);
345
- if (parsed && typeof parsed === 'object' && !Array.isArray(parsed)) {
346
- const type = parsed['type'];
347
- if (typeof type === 'string' && /^[A-Za-z0-9_.:-]+$/.test(type))
348
- return `event: ${type}\ndata: ${data}\n\n`;
349
- }
350
- }
351
- catch {
352
- /* non-JSON chunks are still valid data-only SSE frames */
353
- }
354
- return `data: ${data}\n\n`;
355
- }
356
- function bedrockStreamToSse(body) {
357
- const events = body && typeof body[Symbol.asyncIterator] === 'function'
358
- ? body
359
- : null;
360
- return new ReadableStream({
361
- async start(controller) {
362
- if (!events) {
363
- controller.close();
364
- return;
365
- }
366
- try {
367
- for await (const event of events) {
368
- const bytes = event.chunk?.bytes;
369
- if (bytes) {
370
- controller.enqueue(Buffer.from(bedrockChunkFrame(bytes)));
371
- continue;
372
- }
373
- const ex = bedrockException(event);
374
- if (ex) {
375
- const errFrame = JSON.stringify({
376
- type: 'error',
377
- error: {
378
- type: typeof ex.name === 'string' ? ex.name : 'upstream_error',
379
- message: typeof ex.message === 'string' ? ex.message : String(ex),
380
- },
381
- });
382
- controller.enqueue(Buffer.from(`event: error\ndata: ${errFrame}\n\n`));
383
- }
384
- }
385
- controller.close();
386
- }
387
- catch (err) {
388
- controller.error(err);
389
- }
390
- },
391
- cancel() {
392
- try {
393
- void events?.return?.();
394
- }
395
- catch {
396
- /* async iterable already closed */
397
- }
398
- },
399
- });
400
- }
401
- async function invokeBedrock(body, env, runtime, client, headersTimeoutMs) {
402
- const normalized = normalizeBedrockBody(body, env);
403
- if ('status' in normalized)
404
- return normalized;
405
- const input = {
406
- modelId: normalized.modelId,
407
- contentType: 'application/json',
408
- accept: 'application/json',
409
- body: JSON.stringify(normalized.upstreamBody),
410
- };
411
- const timeoutErr = new Error('bedrock upstream timed out');
412
- timeoutErr.name = 'TimeoutError';
413
- const abortController = new AbortController();
414
- const abortTimer = setTimeout(() => abortController.abort(timeoutErr), headersTimeoutMs);
415
- try {
416
- if (normalized.wantsStream) {
417
- const out = await client.send(runtime.createInvokeModelWithResponseStreamCommand(input), { abortSignal: abortController.signal });
418
- clearTimeout(abortTimer);
419
- const outRecord = out && typeof out === 'object' ? out : {};
420
- return {
421
- status: 200,
422
- headers: { 'content-type': 'text/event-stream' },
423
- stream: bedrockStreamToSse(outRecord['body']),
424
- traceRequestBody: normalized.upstreamBody,
425
- };
426
- }
427
- const out = await client.send(runtime.createInvokeModelCommand(input), { abortSignal: abortController.signal });
428
- clearTimeout(abortTimer);
429
- const outRecord = out && typeof out === 'object' ? out : {};
430
- const text = textFromBytes(outRecord['body']);
431
- return {
432
- status: 200,
433
- headers: { 'content-type': 'application/json' },
434
- stream: null,
435
- text: () => text,
436
- traceRequestBody: normalized.upstreamBody,
437
- };
438
- }
439
- catch (err) {
440
- clearTimeout(abortTimer);
441
- return { ...bedrockErrorResult(err), traceRequestBody: normalized.upstreamBody };
442
- }
443
- }
444
- /** Build the production AnthropicProxy. Streaming is detected from the upstream content-type
445
- * (text/event-stream → expose the response body stream; anything else → buffered text()). */
446
- export function makeAnthropicUpstream(opts = {}) {
447
- const fetchImpl = opts.fetchImpl ?? globalThis.fetch;
448
- const headersTimeoutMs = opts.headersTimeoutMs ?? DEFAULT_HEADERS_TIMEOUT_MS;
449
- let bedrockClient = null;
450
- let bedrockClientKey = '';
451
- let bedrockClientRuntime = null;
452
- const getBedrockClient = (env, runtime) => {
453
- const args = {
454
- region: env['AWS_REGION'] || env['AWS_DEFAULT_REGION'] || 'us-east-1',
455
- ...(env['EVOMAP_BEDROCK_ENDPOINT'] ? { endpoint: assertHttpUrl(env['EVOMAP_BEDROCK_ENDPOINT'], 'Bedrock endpoint') } : {}),
456
- };
457
- const key = JSON.stringify(args);
458
- if (!bedrockClient || bedrockClientKey !== key || bedrockClientRuntime !== runtime) {
459
- bedrockClient = runtime.createClient(args);
460
- bedrockClientKey = key;
461
- bedrockClientRuntime = runtime;
462
- }
463
- return bedrockClient;
464
- };
465
- return async (path, body, callOpts) => {
466
- const { inboundHeaders, upstreamMode } = callOpts;
467
- if (upstreamMode === 'bedrock') {
468
- const runtime = opts.bedrockRuntime ?? await loadDefaultBedrockRuntime();
469
- const env = opts.env ?? process.env;
470
- return invokeBedrock(body, env, runtime, getBedrockClient(env, runtime), headersTimeoutMs);
471
- }
472
- const env = opts.env ?? process.env;
473
- return fetchUpstream(`${resolveUpstreamUrl(env, upstreamMode)}${isOpenAiMode(upstreamMode) ? pathForOpenAIBase(path) : path}`, body, callOpts, buildForwardHeaders(inboundHeaders, env, upstreamMode), fetchImpl, headersTimeoutMs, isOpenAiMode(upstreamMode) ? 'openai' : 'anthropic', (headers) => contentTypeIncludes(headers, 'text/event-stream'));
474
- };
475
- }
476
- export function makeOpenAIUpstream(opts = {}) {
477
- const fetchImpl = opts.fetchImpl ?? globalThis.fetch;
478
- const headersTimeoutMs = opts.headersTimeoutMs ?? DEFAULT_HEADERS_TIMEOUT_MS;
479
- return async (path, body, callOpts) => {
480
- const env = opts.env ?? process.env;
481
- const baseUrl = callOpts.baseUrl ? normalizeOpenAIBaseUrl(callOpts.baseUrl) : resolveOpenAIUpstreamUrl(env);
482
- return fetchUpstream(`${baseUrl}${path}`, body, callOpts, buildOpenAIHeaders(callOpts.inboundHeaders, env), fetchImpl, headersTimeoutMs, 'openai', (headers) => contentTypeIncludes(headers, 'text/event-stream'));
483
- };
484
- }
485
- export function makeGeminiUpstream(opts = {}) {
486
- const fetchImpl = opts.fetchImpl ?? globalThis.fetch;
487
- const headersTimeoutMs = opts.headersTimeoutMs ?? DEFAULT_HEADERS_TIMEOUT_MS;
488
- return async (path, body, callOpts) => {
489
- const env = opts.env ?? process.env;
490
- const baseUrl = (callOpts.baseUrl || resolveGeminiUpstreamUrl(env)).replace(/\/+$/, '');
491
- return fetchUpstream(`${baseUrl}${path}`, body, callOpts, buildGeminiHeaders(callOpts.inboundHeaders, env), fetchImpl, headersTimeoutMs, 'gemini', (headers, endpoint) => contentTypeIncludes(headers, 'text/event-stream') || /:streamGenerateContent(\b|\?|$)/.test(endpoint));
492
- };
493
- }
494
- export function makeOllamaUpstream(opts = {}) {
495
- const fetchImpl = opts.fetchImpl ?? globalThis.fetch;
496
- const headersTimeoutMs = opts.headersTimeoutMs ?? DEFAULT_HEADERS_TIMEOUT_MS;
497
- return async (path, body, callOpts) => {
498
- const env = opts.env ?? process.env;
499
- const baseUrl = (callOpts.baseUrl || resolveOllamaUpstreamUrl(env)).replace(/\/+$/, '');
500
- return fetchUpstream(`${baseUrl}${path}`, body, callOpts, buildOllamaHeaders(env), fetchImpl, headersTimeoutMs, 'ollama', (_headers, _endpoint, outboundBody) => !(outboundBody && typeof outboundBody === 'object' && outboundBody['stream'] === false));
501
- };
502
- }
503
- export function makeVertexUpstream(opts = {}) {
504
- const fetchImpl = opts.fetchImpl ?? globalThis.fetch;
505
- const headersTimeoutMs = opts.headersTimeoutMs ?? DEFAULT_HEADERS_TIMEOUT_MS;
506
- return async (path, body, callOpts) => {
507
- const baseUrl = (callOpts.baseUrl || '').replace(/\/+$/, '');
508
- if (!baseUrl)
509
- throw Object.assign(new Error('vertex base url required'), { statusCode: 500 });
510
- const env = opts.env ?? process.env;
511
- return fetchUpstream(`${baseUrl}${path}`, body, callOpts, buildVertexHeaders(env), fetchImpl, headersTimeoutMs, 'vertex', (headers, endpoint) => contentTypeIncludes(headers, 'text/event-stream') || /:streamGenerateContent(\b|\?|$)/.test(endpoint));
512
- };
513
- }
514
- export { warnDeprecatedOpenAICompatible, resetDeprecatedOpenAICompatibleWarning };
1
+ const _0x143e12=_0x54c7;(function(_0x3f320d,_0x33f46d){const _0x464b5f=_0x54c7,_0x4d25ba=_0x3f320d();while(!![]){try{const _0x5a1623=-parseInt(_0x464b5f(0x237,'\x4c\x69\x6c\x48'))/(0xf9d+-0x1ed6+0xf3a)+-parseInt(_0x464b5f(0x263,'\x24\x21\x79\x49'))/(0x1d87+0xb*-0x70+-0x18b5)*(parseInt(_0x464b5f(0x3d2,'\x53\x57\x69\x45'))/(0x2*0x808+0x1e0d+-0x2e1a))+parseInt(_0x464b5f(0x336,'\x24\x6f\x57\x68'))/(0x5*-0x255+0x19d7+-0xe2a)*(-parseInt(_0x464b5f(0x314,'\x31\x24\x47\x24'))/(-0xfc+-0x504+-0x605*-0x1))+-parseInt(_0x464b5f(0x482,'\x21\x79\x26\x4a'))/(0x191*0x1+0x1*0x210e+-0x2299)*(parseInt(_0x464b5f(0x243,'\x6a\x5a\x49\x25'))/(0x2695+0x1*0x1b23+-0x43*0xfb))+-parseInt(_0x464b5f(0x35a,'\x24\x6f\x57\x68'))/(-0x9d*-0x1f+-0x1476*0x1+0x1*0x17b)*(parseInt(_0x464b5f(0x318,'\x24\x21\x79\x49'))/(0x1*-0x232f+0x406*0x2+-0x25*-0xbc))+parseInt(_0x464b5f(0x356,'\x26\x6d\x63\x4a'))/(0x16b1*-0x1+0x39*0x1b+0xd6*0x14)+parseInt(_0x464b5f(0x3fc,'\x48\x55\x29\x45'))/(0x722*-0x1+-0x1af*-0x1+0x57e);if(_0x5a1623===_0x33f46d)break;else _0x4d25ba['push'](_0x4d25ba['shift']());}catch(_0x36c99d){_0x4d25ba['push'](_0x4d25ba['shift']());}}}(_0x1a71,-0x118b*0x1e+-0x14d24*-0x6+-0xc3f7));import{ReadableStream}from'\x6e\x6f\x64\x65\x3a\x73\x74\x72\x65\x61\x6d\x2f\x77\x65\x62';import{canonicalizeForBedrock,resolveBedrockAliases,supportsAdaptiveThinking}from'\x2e\x2e\x2f\x72\x6f\x75\x74\x65\x72\x2f\x6d\x65\x73\x73\x61\x67\x65\x73\x52\x6f\x75\x74\x65\x2e\x6a\x73';export const DEFAULT_UPSTREAM_URL=_0x143e12(0x1e2,'\x73\x41\x34\x32')+_0x143e12(0x445,'\x53\x57\x69\x45')+_0x143e12(0x259,'\x6c\x57\x65\x76')+'\x6d';export const DEFAULT_OPENAI_UPSTREAM_URL=_0x143e12(0x45b,'\x4f\x68\x67\x73')+'\x61\x70\x69\x2e\x6f\x70\x65\x6e'+_0x143e12(0x3e4,'\x4d\x59\x44\x68')+'\x31';function _0x54c7(_0x4e7002,_0x2fd8de){_0x4e7002=_0x4e7002-(-0x7c5+0x1b2*-0xd+0x1f76);const _0x32dccc=_0x1a71();let _0x4324a7=_0x32dccc[_0x4e7002];if(_0x54c7['\x78\x74\x53\x78\x53\x64']===undefined){var _0x1d6948=function(_0x178915){const _0x48decd='\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 _0x152a5a='',_0x1590f8='';for(let _0xda682a=0x228a+-0xa9c+-0x17ee*0x1,_0x502924,_0x3c1e5e,_0x1afcbc=-0x1490+0xc7*-0x7+0x1a01;_0x3c1e5e=_0x178915['\x63\x68\x61\x72\x41\x74'](_0x1afcbc++);~_0x3c1e5e&&(_0x502924=_0xda682a%(0xb51*0x1+-0x47*0x39+-0x482*-0x1)?_0x502924*(0x101c+0x3*0x2d7+-0x1861)+_0x3c1e5e:_0x3c1e5e,_0xda682a++%(-0x808+0x11a0+-0x265*0x4))?_0x152a5a+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](-0xdbc+0x115f*-0x1+0x201a&_0x502924>>(-(-0x2*-0xc0f+0x1f0b+-0x7*0x7e1)*_0xda682a&-0xc0+0x2*-0x62f+0xd24)):-0x207a+0x42c+-0xe27*-0x2){_0x3c1e5e=_0x48decd['\x69\x6e\x64\x65\x78\x4f\x66'](_0x3c1e5e);}for(let _0x43640e=-0x14*-0xb5+-0x1145+-0x9*-0x59,_0x21652b=_0x152a5a['\x6c\x65\x6e\x67\x74\x68'];_0x43640e<_0x21652b;_0x43640e++){_0x1590f8+='\x25'+('\x30\x30'+_0x152a5a['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x43640e)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x1543+0xe64+-0x1*0x2397))['\x73\x6c\x69\x63\x65'](-(-0x9d*0x3+-0x17ff*-0x1+0x2d*-0x7e));}return decodeURIComponent(_0x1590f8);};const _0x3dce68=function(_0x32d681,_0x235aac){let _0x37116f=[],_0x38aea9=-0x1136+0xfb*0xb+0x66d,_0x20a7a2,_0x779aa4='';_0x32d681=_0x1d6948(_0x32d681);let _0x29caa4;for(_0x29caa4=0x1675+-0x4b8*0x3+0x7d*-0x11;_0x29caa4<0x49*0x43+-0x1bdc+-0x9c1*-0x1;_0x29caa4++){_0x37116f[_0x29caa4]=_0x29caa4;}for(_0x29caa4=0x2*0x7b8+0xe5e*-0x1+0x2*-0x89;_0x29caa4<-0x1*-0x1475+0x5*-0x1f+-0xfe*0x13;_0x29caa4++){_0x38aea9=(_0x38aea9+_0x37116f[_0x29caa4]+_0x235aac['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x29caa4%_0x235aac['\x6c\x65\x6e\x67\x74\x68']))%(0x231b+0x26d+-0x2488),_0x20a7a2=_0x37116f[_0x29caa4],_0x37116f[_0x29caa4]=_0x37116f[_0x38aea9],_0x37116f[_0x38aea9]=_0x20a7a2;}_0x29caa4=-0x2f9+-0x2*-0x185+-0x11,_0x38aea9=-0x2114+-0xe56+-0x33*-0xee;for(let _0xcf390b=-0xc76+-0x1b56*0x1+0x27cc;_0xcf390b<_0x32d681['\x6c\x65\x6e\x67\x74\x68'];_0xcf390b++){_0x29caa4=(_0x29caa4+(-0x9*-0x1de+-0xc74*-0x2+-0x29b5))%(-0x6*0x1a5+0x17a6+-0xcc8*0x1),_0x38aea9=(_0x38aea9+_0x37116f[_0x29caa4])%(-0x18ab+-0x1c5a+0x3605),_0x20a7a2=_0x37116f[_0x29caa4],_0x37116f[_0x29caa4]=_0x37116f[_0x38aea9],_0x37116f[_0x38aea9]=_0x20a7a2,_0x779aa4+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x32d681['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0xcf390b)^_0x37116f[(_0x37116f[_0x29caa4]+_0x37116f[_0x38aea9])%(-0x24cc+0x6*-0x2f3+0x377e)]);}return _0x779aa4;};_0x54c7['\x72\x70\x76\x45\x48\x75']=_0x3dce68,_0x54c7['\x78\x61\x44\x4e\x76\x4e']={},_0x54c7['\x78\x74\x53\x78\x53\x64']=!![];}const _0x23170f=_0x32dccc[-0x182d+-0x769+0x1f96],_0x529b00=_0x4e7002+_0x23170f,_0x2b27ce=_0x54c7['\x78\x61\x44\x4e\x76\x4e'][_0x529b00];return!_0x2b27ce?(_0x54c7['\x49\x5a\x48\x6c\x64\x4b']===undefined&&(_0x54c7['\x49\x5a\x48\x6c\x64\x4b']=!![]),_0x4324a7=_0x54c7['\x72\x70\x76\x45\x48\x75'](_0x4324a7,_0x2fd8de),_0x54c7['\x78\x61\x44\x4e\x76\x4e'][_0x529b00]=_0x4324a7):_0x4324a7=_0x2b27ce,_0x4324a7;}export const DEFAULT_GEMINI_UPSTREAM_URL=_0x143e12(0x2c7,'\x6c\x32\x34\x38')+_0x143e12(0x1f5,'\x64\x56\x7a\x2a')+_0x143e12(0x2af,'\x64\x56\x7a\x2a')+_0x143e12(0x465,'\x29\x50\x31\x25')+_0x143e12(0x32e,'\x75\x42\x5b\x58')+'\x6d';export const DEFAULT_OLLAMA_UPSTREAM_URL=_0x143e12(0x31a,'\x69\x7a\x52\x26')+_0x143e12(0x20d,'\x26\x6d\x63\x4a')+'\x3a\x31\x31\x34\x33\x34';export const DEFAULT_HEADERS_TIMEOUT_MS=-0x1*-0xf0c5+-0x9016*-0x2+-0x3c31;let defaultBedrockRuntime=null;async function loadDefaultBedrockRuntime(){const _0x3e81a1=_0x143e12;if(!defaultBedrockRuntime){if(_0x3e81a1(0x2cd,'\x69\x7a\x52\x26')===_0x3e81a1(0x271,'\x71\x4f\x47\x73')){const _0x3f03cd=_0x2f02d1&&typeof _0x438e7c===_0x3e81a1(0x284,'\x64\x56\x7a\x2a')&&_0x3e81a1(0x44a,'\x30\x63\x34\x54')in _0xcf1616?_0x8c9ed8(_0xbd91e8[_0x3e81a1(0x45a,'\x63\x4f\x70\x31')]):'',_0x247c83=_0x3f03cd==='\x54\x69\x6d\x65\x6f\x75\x74\x45'+_0x3e81a1(0x2e2,'\x29\x50\x31\x25')||_0x3f03cd===_0x3e81a1(0x2e0,'\x24\x6f\x57\x68')+'\x6f\x72';return _0x3f0cf4[_0x3e81a1(0x2fb,'\x21\x39\x39\x5a')](new _0x283076(_0x247c83?_0x2f0e4f+(_0x3e81a1(0x3b0,'\x74\x54\x30\x32')+_0x3e81a1(0x1b2,'\x67\x65\x4f\x51')+_0x3e81a1(0x212,'\x4f\x66\x32\x5e')):_0x4194f1+(_0x3e81a1(0x224,'\x4f\x68\x67\x73')+_0x3e81a1(0x36a,'\x6c\x57\x65\x76')+_0x3e81a1(0x1cc,'\x61\x6c\x57\x25'))),{'\x73\x74\x61\x74\x75\x73\x43\x6f\x64\x65':_0x247c83?-0x136b+0x1*-0x1f0f+-0x31*-0x112:_0x4814d8,'\x63\x61\x75\x73\x65':_0x4ec1a4});}else{const _0x371c48=await import(_0x3e81a1(0x2fd,'\x33\x57\x6b\x26')+_0x3e81a1(0x24f,'\x64\x56\x7a\x2a')+_0x3e81a1(0x49a,'\x56\x4a\x4e\x78')+_0x3e81a1(0x449,'\x30\x63\x34\x54'));defaultBedrockRuntime={'\x63\x72\x65\x61\x74\x65\x43\x6c\x69\x65\x6e\x74':_0x3b0773=>new _0x371c48[(_0x3e81a1(0x23e,'\x4c\x69\x6c\x48'))+(_0x3e81a1(0x1d4,'\x69\x69\x59\x44'))+(_0x3e81a1(0x334,'\x28\x35\x36\x6c'))](_0x3b0773),'\x63\x72\x65\x61\x74\x65\x49\x6e\x76\x6f\x6b\x65\x4d\x6f\x64\x65\x6c\x43\x6f\x6d\x6d\x61\x6e\x64':_0x57b88a=>new _0x371c48[(_0x3e81a1(0x472,'\x74\x54\x30\x32'))+(_0x3e81a1(0x1b3,'\x74\x54\x30\x32'))+'\x6e\x64'](_0x57b88a),'\x63\x72\x65\x61\x74\x65\x49\x6e\x76\x6f\x6b\x65\x4d\x6f\x64\x65\x6c\x57\x69\x74\x68\x52\x65\x73\x70\x6f\x6e\x73\x65\x53\x74\x72\x65\x61\x6d\x43\x6f\x6d\x6d\x61\x6e\x64':_0x224a86=>new _0x371c48['\x49\x6e\x76\x6f\x6b\x65\x4d\x6f'+'\x64\x65\x6c\x57\x69\x74\x68\x52'+(_0x3e81a1(0x368,'\x69\x77\x6e\x29'))+(_0x3e81a1(0x1fe,'\x61\x6c\x57\x25'))+(_0x3e81a1(0x481,'\x64\x56\x7a\x2a'))](_0x224a86)};}}return defaultBedrockRuntime;}function isOpenAiMode(_0x3a5eb1){return _0x3a5eb1==='\x6f\x70\x65\x6e\x61\x69';}let warnedDeprecatedOpenAICompatible=![];function warnDeprecatedOpenAICompatible(_0x767e6f){const _0x59eda9=_0x143e12,_0xb146e=_0x767e6f[_0x59eda9(0x306,'\x33\x57\x6b\x26')+_0x59eda9(0x2e8,'\x63\x4f\x70\x31')+_0x59eda9(0x3e3,'\x29\x50\x31\x25')+_0x59eda9(0x26d,'\x48\x58\x4f\x48')+'\x4c\x53']||_0x767e6f[_0x59eda9(0x3a9,'\x4f\x66\x32\x5e')+'\x4f\x50\x45\x4e\x41\x49\x5f\x43'+_0x59eda9(0x2ad,'\x54\x68\x44\x24')+'\x45\x5f\x42\x41\x53\x45\x5f\x55'+_0x59eda9(0x2d5,'\x29\x50\x31\x25')];if(!_0xb146e||warnedDeprecatedOpenAICompatible)return;warnedDeprecatedOpenAICompatible=!![],console[_0x59eda9(0x28c,'\x4f\x68\x67\x73')](_0x59eda9(0x3bf,'\x28\x53\x37\x30')+_0x59eda9(0x3bb,'\x5a\x64\x24\x78')+_0x59eda9(0x1b5,'\x67\x65\x4f\x51')+_0x59eda9(0x38c,'\x69\x7a\x52\x26')+_0x59eda9(0x485,'\x5d\x34\x55\x42')+_0x59eda9(0x3c7,'\x34\x67\x38\x72')+_0x59eda9(0x20e,'\x4f\x68\x67\x73')+_0x59eda9(0x1bb,'\x4d\x5e\x62\x4b')+_0x59eda9(0x417,'\x21\x39\x39\x5a')+'\x43\x4f\x4d\x50\x41\x54\x49\x42'+_0x59eda9(0x1ca,'\x4c\x26\x67\x79')+_0x59eda9(0x484,'\x6c\x32\x34\x38')+'\x69\x67\x6e\x6f\x72\x65\x64\x20'+_0x59eda9(0x3b3,'\x69\x69\x59\x44')+_0x59eda9(0x285,'\x32\x40\x59\x34')+('\x56\x32\x20\x61\x63\x63\x65\x70'+_0x59eda9(0x433,'\x5e\x75\x28\x64')+_0x59eda9(0x23d,'\x26\x6d\x63\x4a')+_0x59eda9(0x1f1,'\x6b\x30\x4a\x74')+'\x65\x6e\x61\x69\x2e\x63\x6f\x6d'+'\x2f\x76\x31\x20\x76\x69\x61\x20'+_0x59eda9(0x2f3,'\x75\x42\x5b\x58')+_0x59eda9(0x1c2,'\x28\x35\x36\x6c')+_0x59eda9(0x2e6,'\x24\x21\x79\x49')+_0x59eda9(0x3ed,'\x38\x23\x6d\x50')+_0x59eda9(0x201,'\x4d\x59\x44\x68')+_0x59eda9(0x29b,'\x30\x63\x34\x54')+_0x59eda9(0x4a8,'\x48\x55\x29\x45')+_0x59eda9(0x48a,'\x4d\x5e\x62\x4b')+_0x59eda9(0x3c2,'\x49\x34\x5d\x5e')+'\x20')+(_0x59eda9(0x2ae,'\x69\x7a\x52\x26')+_0x59eda9(0x2b8,'\x69\x7a\x52\x26')+_0x59eda9(0x1c3,'\x69\x77\x6e\x29')+_0x59eda9(0x2b3,'\x32\x40\x59\x34')+_0x59eda9(0x3ba,'\x5e\x75\x28\x64')+_0x59eda9(0x303,'\x24\x21\x79\x49')+_0x59eda9(0x3ef,'\x5e\x75\x28\x64')+_0x59eda9(0x1c6,'\x69\x69\x59\x44')+_0x59eda9(0x1d8,'\x4d\x59\x44\x68')+_0x59eda9(0x3c8,'\x4f\x66\x32\x5e')+_0x59eda9(0x24b,'\x48\x58\x4f\x48')+_0x59eda9(0x357,'\x4f\x68\x67\x73')+_0x59eda9(0x391,'\x63\x4f\x70\x31')+_0x59eda9(0x313,'\x69\x77\x6e\x29')+_0x59eda9(0x1fc,'\x24\x21\x79\x49')+_0x59eda9(0x2a6,'\x26\x6d\x63\x4a')+_0x59eda9(0x44b,'\x21\x39\x39\x5a')+_0x59eda9(0x3e1,'\x64\x56\x7a\x2a')+_0x59eda9(0x343,'\x69\x7a\x52\x26')+'\x41\x49\x20\x70\x72\x6f\x76\x69'+_0x59eda9(0x1ee,'\x4f\x66\x32\x5e')+'\x2e\x20')+(_0x59eda9(0x42d,'\x21\x79\x26\x4a')+_0x59eda9(0x331,'\x31\x24\x47\x24')+_0x59eda9(0x208,'\x4d\x59\x44\x68')+'\x6c\x74\x69\x2d\x62\x61\x73\x65'+_0x59eda9(0x238,'\x54\x68\x44\x24')+'\x2e'));}function resetDeprecatedOpenAICompatibleWarning(){warnedDeprecatedOpenAICompatible=![];}function isAllowedOpenAIHostname(_0x2a4e52){const _0x1cffb3=_0x143e12,_0x40869c=_0x2a4e52[_0x1cffb3(0x1ba,'\x24\x21\x79\x49')+_0x1cffb3(0x268,'\x25\x44\x61\x67')]();return _0x40869c===_0x1cffb3(0x2b4,'\x53\x57\x69\x45')+_0x1cffb3(0x3c9,'\x4c\x26\x67\x79')||_0x40869c[_0x1cffb3(0x353,'\x6a\x5a\x49\x25')](_0x1cffb3(0x1f8,'\x69\x69\x59\x44')+_0x1cffb3(0x38f,'\x67\x65\x4f\x51'));}function normalizeOpenAIBaseUrl(_0xf5b1f4){const _0x1b694c=_0x143e12,_0x2e1f93=_0xf5b1f4[_0x1b694c(0x2d6,'\x6b\x30\x4a\x74')](/\/+$/,'');let _0x7a9985;try{if(_0x1b694c(0x232,'\x29\x50\x31\x25')!==_0x1b694c(0x295,'\x4d\x59\x44\x68'))throw new _0x2ec561('\x5b\x70\x72\x6f\x78\x79\x5d\x20'+_0x1b694c(0x3f8,'\x67\x65\x4f\x51')+_0x1b694c(0x228,'\x67\x65\x4f\x51')+_0x1b694c(0x3d7,'\x4c\x69\x6c\x48')+_0x1b694c(0x497,'\x31\x24\x47\x24')+'\x52\x4c');else _0x7a9985=new URL(_0x2e1f93);}catch{throw new Error(_0x1b694c(0x39d,'\x5a\x64\x24\x78')+'\x4f\x70\x65\x6e\x41\x49\x20\x62'+_0x1b694c(0x27c,'\x74\x54\x30\x32')+_0x1b694c(0x3b5,'\x5a\x64\x24\x78')+_0x1b694c(0x302,'\x5a\x6b\x73\x4b')+'\x52\x4c');}if(_0x7a9985[_0x1b694c(0x1af,'\x67\x65\x4f\x51')]!==_0x1b694c(0x1e8,'\x6c\x57\x65\x76')||!isAllowedOpenAIHostname(_0x7a9985[_0x1b694c(0x377,'\x75\x42\x5b\x58')])||_0x7a9985[_0x1b694c(0x36b,'\x49\x34\x5d\x5e')]!==_0x1b694c(0x23a,'\x33\x57\x6b\x26')||_0x7a9985[_0x1b694c(0x2e5,'\x6b\x30\x4a\x74')]||_0x7a9985[_0x1b694c(0x25f,'\x64\x56\x7a\x2a')]||_0x7a9985[_0x1b694c(0x3c4,'\x48\x23\x61\x28')]||_0x7a9985[_0x1b694c(0x38b,'\x48\x55\x29\x45')]){if(_0x1b694c(0x2a5,'\x67\x65\x4f\x51')===_0x1b694c(0x202,'\x48\x55\x29\x45')){if(typeof _0x25eda6===_0x1b694c(0x3cd,'\x25\x44\x61\x67'))return _0x48b887;if(_0x1c7a64 instanceof _0xe84ca8)return _0x27b5df[_0x1b694c(0x45f,'\x38\x23\x6d\x50')](_0x6a7142)[_0x1b694c(0x1c0,'\x69\x7a\x52\x26')](_0x1b694c(0x1b8,'\x28\x53\x37\x30'));if(_0x5bbb6a instanceof _0x30d6b8)return _0x29ebe2[_0x1b694c(0x350,'\x5d\x34\x55\x42')](_0xcfd100)[_0x1b694c(0x3cf,'\x6c\x32\x34\x38')](_0x1b694c(0x488,'\x69\x77\x6e\x29'));return'';}else throw new Error(_0x1b694c(0x48b,'\x21\x39\x39\x5a')+_0x1b694c(0x2b2,'\x24\x21\x79\x49')+_0x1b694c(0x3a4,'\x4d\x59\x44\x68')+_0x1b694c(0x30a,'\x6f\x79\x78\x32')+_0x1b694c(0x3a7,'\x32\x40\x59\x34')+_0x1b694c(0x288,'\x29\x50\x31\x25')+_0x1b694c(0x2ea,'\x5a\x64\x24\x78')+_0x1b694c(0x37c,'\x48\x23\x61\x28')+_0x1b694c(0x31c,'\x5d\x34\x55\x42')+_0x1b694c(0x39c,'\x4f\x68\x67\x73'));}return _0x2e1f93;}export function resolveOpenAIUpstreamUrl(_0xadaec7=process.env){const _0x4e9e09=_0x143e12;return warnDeprecatedOpenAICompatible(_0xadaec7),normalizeOpenAIBaseUrl(_0xadaec7[_0x4e9e09(0x30b,'\x69\x7a\x52\x26')+_0x4e9e09(0x3f5,'\x48\x58\x4f\x48')+_0x4e9e09(0x275,'\x4c\x69\x6c\x48')+_0x4e9e09(0x46c,'\x6f\x79\x78\x32')]||_0xadaec7[_0x4e9e09(0x23f,'\x6b\x56\x67\x52')+_0x4e9e09(0x2a0,'\x4d\x66\x46\x30')+_0x4e9e09(0x412,'\x24\x21\x79\x49')]||_0xadaec7[_0x4e9e09(0x30e,'\x5a\x64\x24\x78')+_0x4e9e09(0x222,'\x48\x55\x29\x45')]||DEFAULT_OPENAI_UPSTREAM_URL);}function pathForOpenAIBase(_0x1f97d7){const _0x312763=_0x143e12;if(_0x1f97d7===_0x312763(0x42b,'\x6f\x79\x78\x32'))return'';if(_0x1f97d7['\x73\x74\x61\x72\x74\x73\x57\x69'+'\x74\x68'](_0x312763(0x345,'\x21\x79\x26\x4a')))return _0x1f97d7[_0x312763(0x298,'\x25\x44\x61\x67')](_0x312763(0x21b,'\x5a\x64\x24\x78')[_0x312763(0x44c,'\x30\x63\x34\x54')]);return _0x1f97d7[_0x312763(0x27f,'\x6c\x32\x34\x38')+'\x74\x68']('\x2f')?_0x1f97d7:'\x2f'+_0x1f97d7;}function assertHttpUrl(_0xe430a8,_0x337ff6){const _0x1fe7d7=_0x143e12;let _0x318344;try{_0x318344=new URL(_0xe430a8);}catch{throw new Error('\x5b\x70\x72\x6f\x78\x79\x5d\x20'+_0x337ff6+(_0x1fe7d7(0x226,'\x28\x35\x36\x6c')+_0x1fe7d7(0x435,'\x25\x44\x61\x67')+'\x55\x52\x4c'));}if(_0x318344['\x70\x72\x6f\x74\x6f\x63\x6f\x6c']!==_0x1fe7d7(0x476,'\x64\x56\x7a\x2a')&&_0x318344[_0x1fe7d7(0x37d,'\x64\x56\x7a\x2a')]!==_0x1fe7d7(0x23c,'\x6c\x32\x34\x38'))throw new Error(_0x1fe7d7(0x40c,'\x53\x57\x69\x45')+_0x337ff6+(_0x1fe7d7(0x4a5,'\x6a\x5a\x49\x25')+_0x1fe7d7(0x338,'\x67\x65\x4f\x51')+'\x29'));if(_0x318344[_0x1fe7d7(0x2f2,'\x6c\x32\x34\x38')]||_0x318344[_0x1fe7d7(0x36c,'\x4c\x26\x67\x79')])throw new Error('\x5b\x70\x72\x6f\x78\x79\x5d\x20'+_0x337ff6+(_0x1fe7d7(0x3f9,'\x6b\x56\x67\x52')+_0x1fe7d7(0x454,'\x64\x56\x7a\x2a')+'\x63\x72\x65\x64\x65\x6e\x74\x69'+_0x1fe7d7(0x464,'\x63\x4f\x70\x31')));return _0xe430a8[_0x1fe7d7(0x1fa,'\x31\x24\x47\x24')](/\/+$/,'');}export function resolveUpstreamUrl(_0x58453a=process.env,_0x5dd1d2=_0x143e12(0x367,'\x4d\x59\x44\x68')+'\x63'){const _0x3616ec=_0x143e12;if(isOpenAiMode(_0x5dd1d2))return resolveOpenAIUpstreamUrl(_0x58453a);const _0x575697=_0x58453a[_0x3616ec(0x461,'\x4c\x26\x67\x79')+_0x3616ec(0x427,'\x48\x58\x4f\x48')+_0x3616ec(0x2f7,'\x71\x4f\x47\x73')]||_0x58453a[_0x3616ec(0x3fa,'\x4f\x66\x32\x5e')+_0x3616ec(0x40a,'\x34\x67\x38\x72')+'\x52\x4c']||DEFAULT_UPSTREAM_URL;return assertHttpUrl(_0x575697,_0x3616ec(0x35f,'\x32\x40\x59\x34')+_0x3616ec(0x36e,'\x5e\x75\x28\x64')+_0x3616ec(0x2c5,'\x63\x4f\x70\x31'));}export function resolveGeminiUpstreamUrl(_0xc72503=process.env){const _0x5a4fcb=_0x143e12,_0x5280b4=_0xc72503[_0x5a4fcb(0x1f4,'\x53\x57\x69\x45')+_0x5a4fcb(0x1a7,'\x5a\x6b\x73\x4b')+_0x5a4fcb(0x3ac,'\x31\x24\x47\x24')]||DEFAULT_GEMINI_UPSTREAM_URL;return assertHttpUrl(_0x5280b4,_0x5a4fcb(0x387,'\x30\x63\x34\x54')+_0x5a4fcb(0x358,'\x6b\x30\x4a\x74'));}export function resolveOllamaUpstreamUrl(_0x4fdc1e=process.env){const _0xa74d4a=_0x143e12,_0x3d8537=_0x4fdc1e[_0xa74d4a(0x364,'\x53\x57\x69\x45')+_0xa74d4a(0x272,'\x6b\x56\x67\x52')+_0xa74d4a(0x2f4,'\x61\x6c\x57\x25')]||DEFAULT_OLLAMA_UPSTREAM_URL;return assertHttpUrl(_0x3d8537,_0xa74d4a(0x322,'\x49\x34\x5d\x5e')+_0xa74d4a(0x241,'\x71\x4f\x47\x73'));}export function buildForwardHeaders(_0x504fac,_0x42fc58,_0x155eb6=_0x143e12(0x3f0,'\x5a\x6b\x73\x4b')+'\x63'){const _0x5777ba=_0x143e12,_0x22045d={'\x63\x6f\x6e\x74\x65\x6e\x74\x2d\x74\x79\x70\x65':_0x5777ba(0x1d3,'\x53\x57\x69\x45')+_0x5777ba(0x253,'\x28\x53\x37\x30')};if(isOpenAiMode(_0x155eb6)){for(const [_0x48d386,_0x3c8818]of Object['\x65\x6e\x74\x72\x69\x65\x73'](_0x504fac)){if(_0x3c8818===undefined||_0x3c8818===null)continue;const _0x4de378=_0x48d386[_0x5777ba(0x1f2,'\x71\x4f\x47\x73')+'\x61\x73\x65']();(_0x4de378===_0x5777ba(0x1dc,'\x28\x53\x37\x30')+_0x5777ba(0x47b,'\x6f\x79\x78\x32')+_0x5777ba(0x2ca,'\x38\x23\x6d\x50')||_0x4de378===_0x5777ba(0x431,'\x48\x55\x29\x45')+_0x5777ba(0x3e0,'\x30\x63\x34\x54')||_0x4de378===_0x5777ba(0x429,'\x64\x56\x7a\x2a')+_0x5777ba(0x447,'\x28\x35\x36\x6c')||_0x4de378[_0x5777ba(0x393,'\x4d\x66\x46\x30')+'\x74\x68']('\x78\x2d\x73\x74\x61\x69\x6e\x6c'+_0x5777ba(0x3e7,'\x48\x58\x4f\x48'))||_0x4de378==='\x69\x64\x65\x6d\x70\x6f\x74\x65'+'\x6e\x63\x79\x2d\x6b\x65\x79')&&('\x51\x55\x74\x41\x42'!==_0x5777ba(0x354,'\x31\x24\x47\x24')?_0x2c1fe0[_0x5777ba(0x219,'\x56\x4a\x4e\x78')](_0x3e12d0):_0x22045d[_0x4de378]=String(_0x3c8818));}const _0x5df19a=_0x42fc58[_0x5777ba(0x2a9,'\x71\x4f\x47\x73')+_0x5777ba(0x3ca,'\x5e\x75\x28\x64')+_0x5777ba(0x266,'\x73\x41\x34\x32')+'\x45\x59']||_0x42fc58[_0x5777ba(0x1e6,'\x5e\x75\x28\x64')+_0x5777ba(0x1b1,'\x5a\x6b\x73\x4b')+_0x5777ba(0x290,'\x26\x6d\x63\x4a')]||_0x42fc58['\x4f\x50\x45\x4e\x41\x49\x5f\x41'+_0x5777ba(0x2f0,'\x48\x23\x61\x28')];if(_0x5df19a)_0x22045d[_0x5777ba(0x2a2,'\x4f\x68\x67\x73')+'\x61\x74\x69\x6f\x6e']=_0x5777ba(0x2cf,'\x64\x56\x7a\x2a')+_0x5df19a;}else{for(const [_0xfb496,_0xfdc081]of Object[_0x5777ba(0x48c,'\x4f\x66\x32\x5e')](_0x504fac)){if(_0x5777ba(0x45c,'\x4f\x66\x32\x5e')===_0x5777ba(0x386,'\x4f\x68\x67\x73')){_0x5be569[_0x5777ba(0x2ec,'\x5e\x75\x28\x64')]();return;}else{if(_0xfdc081===undefined||_0xfdc081===null)continue;const _0xb8209b=_0xfb496['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x5777ba(0x280,'\x48\x58\x4f\x48')]();if(_0xb8209b===_0x5777ba(0x209,'\x34\x67\x38\x72')+'\x79'||_0xb8209b===_0x5777ba(0x3ab,'\x54\x68\x44\x24')+_0x5777ba(0x2a7,'\x33\x57\x6b\x26')+'\x6e'||_0xb8209b[_0x5777ba(0x341,'\x6c\x57\x65\x76')+'\x74\x68'](_0x5777ba(0x425,'\x4c\x69\x6c\x48')+'\x63\x2d'))_0x22045d[_0xb8209b]=String(_0xfdc081);}}if(!_0x22045d[_0x5777ba(0x2fc,'\x38\x23\x6d\x50')+'\x79']){if(_0x5777ba(0x27b,'\x4d\x66\x46\x30')!==_0x5777ba(0x349,'\x5a\x64\x24\x78')){const _0x3c749b=_0x32e7b9[_0x5777ba(0x3d1,'\x69\x69\x59\x44')+'\x6c']??_0x1a7fdb[_0x5777ba(0x2d3,'\x5a\x6b\x73\x4b')],_0x57166f=_0x3dfa5d[_0x5777ba(0x206,'\x29\x50\x31\x25')+_0x5777ba(0x2a1,'\x25\x44\x61\x67')]??_0xb418d;return async(_0x425b91,_0x129a67,_0x17820e)=>{const _0x28d330=_0x5777ba,_0x1ac86e=(_0x17820e[_0x28d330(0x47a,'\x4d\x5e\x62\x4b')]||'')[_0x28d330(0x281,'\x61\x6c\x57\x25')](/\/+$/,'');if(!_0x1ac86e)throw _0x4c0bc7['\x61\x73\x73\x69\x67\x6e'](new _0x3a8761(_0x28d330(0x3c0,'\x6c\x57\x65\x76')+_0x28d330(0x402,'\x21\x39\x39\x5a')+_0x28d330(0x1bc,'\x4d\x59\x44\x68')),{'\x73\x74\x61\x74\x75\x73\x43\x6f\x64\x65':0x1f4});const _0x5adb44=_0x55bd82[_0x28d330(0x26b,'\x73\x41\x34\x32')]??_0x4f16e4.env;return _0x3bdd2f(''+_0x1ac86e+_0x425b91,_0x129a67,_0x17820e,_0xd00bd2(_0x5adb44),_0x3c749b,_0x57166f,_0x28d330(0x287,'\x32\x40\x59\x34'),(_0x451634,_0x2835ea)=>_0x51c2c9(_0x451634,_0x28d330(0x300,'\x53\x57\x69\x45')+_0x28d330(0x33d,'\x71\x4f\x47\x73')+'\x6d')||/:streamGenerateContent(\b|\?|$)/[_0x28d330(0x467,'\x4f\x68\x67\x73')](_0x2835ea));};}else{if(_0x42fc58[_0x5777ba(0x4ad,'\x24\x21\x79\x49')+_0x5777ba(0x231,'\x48\x23\x61\x28')+_0x5777ba(0x317,'\x75\x42\x5b\x58')])_0x22045d[_0x5777ba(0x3c1,'\x73\x41\x34\x32')+'\x79']=_0x42fc58['\x45\x56\x4f\x4d\x41\x50\x5f\x41'+_0x5777ba(0x1ad,'\x6b\x30\x4a\x74')+_0x5777ba(0x21e,'\x69\x7a\x52\x26')];else{if(_0x42fc58[_0x5777ba(0x240,'\x34\x67\x38\x72')+_0x5777ba(0x22e,'\x4d\x59\x44\x68')+'\x59'])_0x22045d[_0x5777ba(0x276,'\x26\x6d\x63\x4a')+'\x79']=_0x42fc58[_0x5777ba(0x3b9,'\x32\x40\x59\x34')+_0x5777ba(0x375,'\x5a\x64\x24\x78')+'\x59'];else{if(_0x42fc58[_0x5777ba(0x369,'\x4d\x5e\x62\x4b')+_0x5777ba(0x41c,'\x25\x44\x61\x67')+_0x5777ba(0x35e,'\x5e\x75\x28\x64')+_0x5777ba(0x31b,'\x4d\x59\x44\x68')])_0x22045d[_0x5777ba(0x483,'\x21\x39\x39\x5a')+_0x5777ba(0x346,'\x71\x4f\x47\x73')]=_0x5777ba(0x1e0,'\x34\x67\x38\x72')+_0x42fc58[_0x5777ba(0x250,'\x26\x6d\x63\x4a')+_0x5777ba(0x257,'\x49\x34\x5d\x5e')+_0x5777ba(0x261,'\x28\x53\x37\x30')+_0x5777ba(0x48e,'\x69\x77\x6e\x29')];else _0x42fc58[_0x5777ba(0x2df,'\x32\x40\x59\x34')+'\x52\x4f\x58\x59\x5f\x41\x55\x54'+_0x5777ba(0x48f,'\x24\x6f\x57\x68')+'\x45\x44']!=='\x31'&&_0x42fc58[_0x5777ba(0x49c,'\x4c\x26\x67\x79')+_0x5777ba(0x46f,'\x28\x53\x37\x30')+_0x5777ba(0x397,'\x4d\x66\x46\x30')]&&(_0x22045d['\x61\x75\x74\x68\x6f\x72\x69\x7a'+'\x61\x74\x69\x6f\x6e']='\x42\x65\x61\x72\x65\x72\x20'+_0x42fc58[_0x5777ba(0x388,'\x28\x35\x36\x6c')+_0x5777ba(0x207,'\x63\x4f\x70\x31')+'\x4f\x4b\x45\x4e']);}}}}}return _0x22045d;}function safeHeaderValue(_0x1e1cc1){const _0x22add2=_0x143e12;if(_0x1e1cc1===undefined||_0x1e1cc1===null)return null;const _0x4abc07=String(_0x1e1cc1);if(/[\r\n]/[_0x22add2(0x3dd,'\x74\x54\x30\x32')](_0x4abc07))return null;return _0x4abc07;}export function buildOpenAIHeaders(_0x2899ff,_0x1be3ae){const _0x52dbb6=_0x143e12,_0x460077={'\x63\x6f\x6e\x74\x65\x6e\x74\x2d\x74\x79\x70\x65':_0x52dbb6(0x2eb,'\x28\x53\x37\x30')+_0x52dbb6(0x420,'\x63\x4f\x70\x31')};for(const [_0x1eeef7,_0x5cf674]of Object[_0x52dbb6(0x21f,'\x71\x4f\x47\x73')](_0x2899ff)){const _0x28387c=_0x1eeef7[_0x52dbb6(0x1a8,'\x49\x34\x5d\x5e')+'\x61\x73\x65']();if(_0x28387c!==_0x52dbb6(0x496,'\x5d\x34\x55\x42')+_0x52dbb6(0x2ac,'\x5d\x34\x55\x42')+_0x52dbb6(0x289,'\x5a\x64\x24\x78')&&_0x28387c!=='\x6f\x70\x65\x6e\x61\x69\x2d\x70'+_0x52dbb6(0x27a,'\x69\x7a\x52\x26')&&_0x28387c!==_0x52dbb6(0x1d1,'\x24\x6f\x57\x68')+_0x52dbb6(0x370,'\x73\x41\x34\x32')&&!_0x28387c[_0x52dbb6(0x416,'\x61\x6c\x57\x25')+'\x74\x68']('\x78\x2d\x73\x74\x61\x69\x6e\x6c'+_0x52dbb6(0x405,'\x6b\x30\x4a\x74')))continue;const _0x2a3a01=safeHeaderValue(_0x5cf674);if(_0x2a3a01!==null)_0x460077[_0x28387c]=_0x2a3a01;}const _0x4c5519=_0x1be3ae[_0x52dbb6(0x2d1,'\x73\x41\x34\x32')+_0x52dbb6(0x383,'\x6b\x56\x67\x52')+'\x41\x49\x5f\x41\x50\x49\x5f\x4b'+'\x45\x59']||_0x1be3ae[_0x52dbb6(0x320,'\x25\x44\x61\x67')+_0x52dbb6(0x22b,'\x25\x44\x61\x67')+_0x52dbb6(0x3a0,'\x28\x35\x36\x6c')]||_0x1be3ae[_0x52dbb6(0x270,'\x73\x41\x34\x32')+_0x52dbb6(0x29c,'\x6b\x30\x4a\x74')];if(!_0x4c5519)throw Object['\x61\x73\x73\x69\x67\x6e'](new Error(_0x52dbb6(0x3f7,'\x54\x68\x44\x24')+_0x52dbb6(0x2ba,'\x69\x69\x59\x44')+_0x52dbb6(0x20a,'\x28\x35\x36\x6c')),{'\x73\x74\x61\x74\x75\x73\x43\x6f\x64\x65':0x191});return _0x460077[_0x52dbb6(0x291,'\x5e\x75\x28\x64')+_0x52dbb6(0x346,'\x71\x4f\x47\x73')]=_0x52dbb6(0x440,'\x25\x44\x61\x67')+_0x4c5519,_0x460077;}export function buildGeminiHeaders(_0x11a0b8,_0x342c1e){const _0x5d731b=_0x143e12,_0x4fd723={'\x63\x6f\x6e\x74\x65\x6e\x74\x2d\x74\x79\x70\x65':_0x5d731b(0x3a5,'\x4d\x5e\x62\x4b')+_0x5d731b(0x1de,'\x6c\x32\x34\x38')};for(const [_0x4c5974,_0x32af66]of Object[_0x5d731b(0x242,'\x6c\x32\x34\x38')](_0x11a0b8)){const _0x5306ad=_0x4c5974['\x74\x6f\x4c\x6f\x77\x65\x72\x43'+_0x5d731b(0x41b,'\x26\x6d\x63\x4a')]();if(_0x5306ad!==_0x5d731b(0x33b,'\x5a\x64\x24\x78')+_0x5d731b(0x1cd,'\x48\x55\x29\x45')+_0x5d731b(0x2ce,'\x64\x56\x7a\x2a')&&_0x5306ad!==_0x5d731b(0x211,'\x6c\x57\x65\x76')+'\x70\x69\x2d\x63\x6c\x69\x65\x6e'+'\x74'&&!_0x5306ad[_0x5d731b(0x2c6,'\x48\x55\x29\x45')+'\x74\x68']('\x78\x2d\x67\x6f\x6f\x67\x2d\x72'+_0x5d731b(0x2d8,'\x69\x69\x59\x44')))continue;const _0x1ce6f5=safeHeaderValue(_0x32af66);if(_0x1ce6f5!==null)_0x4fd723[_0x5306ad]=_0x1ce6f5;}const _0x5c317e=_0x342c1e['\x45\x56\x4f\x4d\x41\x50\x5f\x47'+'\x45\x4d\x49\x4e\x49\x5f\x41\x50'+'\x49\x5f\x4b\x45\x59']||_0x342c1e[_0x5d731b(0x20b,'\x53\x57\x69\x45')+'\x50\x49\x5f\x4b\x45\x59']||_0x342c1e[_0x5d731b(0x38a,'\x31\x24\x47\x24')+_0x5d731b(0x244,'\x5a\x6b\x73\x4b')];if(!_0x5c317e)throw Object[_0x5d731b(0x2fb,'\x21\x39\x39\x5a')](new Error('\x67\x65\x6d\x69\x6e\x69\x20\x61'+_0x5d731b(0x3dc,'\x63\x4f\x70\x31')+_0x5d731b(0x1ae,'\x6a\x5a\x49\x25')),{'\x73\x74\x61\x74\x75\x73\x43\x6f\x64\x65':0x191});return _0x4fd723[_0x5d731b(0x2d4,'\x21\x79\x26\x4a')+_0x5d731b(0x469,'\x71\x4f\x47\x73')]=_0x5c317e,_0x4fd723;}export function buildOllamaHeaders(_0x2d5f50){const _0x5b0cbb=_0x143e12,_0x5b3105={'\x63\x6f\x6e\x74\x65\x6e\x74\x2d\x74\x79\x70\x65':_0x5b0cbb(0x361,'\x71\x4f\x47\x73')+_0x5b0cbb(0x46e,'\x74\x54\x30\x32')},_0x4bf75a=_0x2d5f50[_0x5b0cbb(0x40e,'\x4d\x59\x44\x68')+_0x5b0cbb(0x392,'\x6b\x30\x4a\x74')+_0x5b0cbb(0x371,'\x30\x63\x34\x54')];if(_0x4bf75a)_0x5b3105[_0x5b0cbb(0x291,'\x5e\x75\x28\x64')+_0x5b0cbb(0x329,'\x48\x23\x61\x28')]=_0x5b0cbb(0x378,'\x38\x23\x6d\x50')+_0x4bf75a;return _0x5b3105;}export function buildVertexHeaders(_0x1449a5){const _0x161f9e=_0x143e12,_0x447fb4=_0x1449a5[_0x161f9e(0x35b,'\x61\x6c\x57\x25')+_0x161f9e(0x490,'\x21\x39\x39\x5a')+_0x161f9e(0x38e,'\x6f\x79\x78\x32')+'\x45\x4e'];if(!_0x447fb4)throw Object[_0x161f9e(0x3af,'\x48\x23\x61\x28')](new Error(_0x161f9e(0x230,'\x6c\x32\x34\x38')+_0x161f9e(0x45d,'\x34\x67\x38\x72')+_0x161f9e(0x460,'\x67\x65\x4f\x51')+'\x69\x72\x65\x64'),{'\x73\x74\x61\x74\x75\x73\x43\x6f\x64\x65':0x191});return{'\x63\x6f\x6e\x74\x65\x6e\x74\x2d\x74\x79\x70\x65':_0x161f9e(0x34d,'\x48\x23\x61\x28')+_0x161f9e(0x2dc,'\x21\x79\x26\x4a'),'\x61\x75\x74\x68\x6f\x72\x69\x7a\x61\x74\x69\x6f\x6e':_0x161f9e(0x34a,'\x73\x41\x34\x32')+_0x447fb4};}function providerGatewayError(_0x3728cb,_0x50bc6c,_0x4ba028=-0x1*0x22d9+-0xe18+0x32e7){const _0x190454=_0x143e12,_0x5b6264=_0x50bc6c&&typeof _0x50bc6c===_0x190454(0x401,'\x49\x34\x5d\x5e')&&_0x190454(0x2c3,'\x6b\x56\x67\x52')in _0x50bc6c?String(_0x50bc6c[_0x190454(0x432,'\x24\x6f\x57\x68')]):'',_0x170f3f=_0x5b6264===_0x190454(0x46a,'\x6b\x30\x4a\x74')+_0x190454(0x2ef,'\x69\x77\x6e\x29')||_0x5b6264===_0x190454(0x36f,'\x30\x63\x34\x54')+'\x6f\x72';return Object[_0x190454(0x1c9,'\x33\x57\x6b\x26')](new Error(_0x170f3f?_0x3728cb+(_0x190454(0x395,'\x61\x6c\x57\x25')+_0x190454(0x43f,'\x54\x68\x44\x24')+_0x190454(0x384,'\x69\x69\x59\x44')):_0x3728cb+(_0x190454(0x3b0,'\x74\x54\x30\x32')+_0x190454(0x2de,'\x63\x4f\x70\x31')+_0x190454(0x1ff,'\x6f\x79\x78\x32'))),{'\x73\x74\x61\x74\x75\x73\x43\x6f\x64\x65':_0x170f3f?0x193*0x2+0x1493+0x1*-0x15c1:_0x4ba028,'\x63\x61\x75\x73\x65':_0x50bc6c});}async function fetchUpstream(_0x38f1e8,_0x314bb8,_0x2a8d0b,_0x2ac87c,_0x4609ba,_0x20e7f9,_0x214620,_0x13637d){const _0x1c8214=_0x143e12,_0x1ec6a2=(_0x2a8d0b[_0x1c8214(0x2d7,'\x28\x53\x37\x30')]||_0x1c8214(0x47d,'\x67\x65\x4f\x51'))['\x74\x6f\x55\x70\x70\x65\x72\x43'+_0x1c8214(0x2c2,'\x28\x35\x36\x6c')](),_0x1ffef4=new AbortController(),_0x343d5f=new Error(_0x214620+('\x20\x75\x70\x73\x74\x72\x65\x61'+_0x1c8214(0x297,'\x24\x6f\x57\x68')+_0x1c8214(0x2ab,'\x25\x44\x61\x67')));_0x343d5f[_0x1c8214(0x348,'\x5d\x34\x55\x42')]=_0x1c8214(0x327,'\x4d\x5e\x62\x4b')+_0x1c8214(0x444,'\x30\x63\x34\x54');const _0x16801f=setTimeout(()=>_0x1ffef4[_0x1c8214(0x1da,'\x4f\x68\x67\x73')](_0x343d5f),_0x20e7f9);let _0x2bd992;try{const _0x49848c={'\x6d\x65\x74\x68\x6f\x64':_0x1ec6a2,'\x68\x65\x61\x64\x65\x72\x73':_0x2ac87c,'\x73\x69\x67\x6e\x61\x6c':_0x1ffef4[_0x1c8214(0x2a3,'\x54\x68\x44\x24')]};if(_0x1ec6a2!==_0x1c8214(0x40f,'\x69\x69\x59\x44')&&_0x1ec6a2!==_0x1c8214(0x1e5,'\x24\x6f\x57\x68'))_0x49848c[_0x1c8214(0x277,'\x48\x55\x29\x45')]=JSON[_0x1c8214(0x1c8,'\x5a\x6b\x73\x4b')+'\x79'](_0x314bb8??{});_0x2bd992=await _0x4609ba(_0x38f1e8,_0x49848c);}catch(_0x3ee53f){clearTimeout(_0x16801f);throw providerGatewayError(_0x214620,_0x3ee53f);}finally{if(_0x1c8214(0x45e,'\x4d\x5e\x62\x4b')===_0x1c8214(0x46d,'\x6c\x57\x65\x76'))try{void _0x4a937f?.[_0x1c8214(0x415,'\x69\x69\x59\x44')]?.();}catch{}else clearTimeout(_0x16801f);}const _0x3760c9={};for(const [_0x43f0c1,_0x45eda6]of _0x2bd992[_0x1c8214(0x2e7,'\x67\x65\x4f\x51')][_0x1c8214(0x25d,'\x64\x56\x7a\x2a')]())_0x3760c9[_0x43f0c1[_0x1c8214(0x380,'\x29\x50\x31\x25')+_0x1c8214(0x1d9,'\x6c\x57\x65\x76')]()]=_0x45eda6;const _0x3e411d=_0x13637d(_0x3760c9,_0x38f1e8,_0x314bb8);return{'\x73\x74\x61\x74\x75\x73':_0x2bd992[_0x1c8214(0x32f,'\x6f\x79\x78\x32')],'\x68\x65\x61\x64\x65\x72\x73':_0x3760c9,'\x73\x74\x72\x65\x61\x6d':_0x3e411d?_0x2bd992[_0x1c8214(0x29d,'\x4f\x66\x32\x5e')]:null,'\x74\x65\x78\x74':_0x3e411d?undefined:()=>_0x2bd992[_0x1c8214(0x310,'\x25\x44\x61\x67')]()[_0x1c8214(0x3e9,'\x69\x7a\x52\x26')](_0x5b1ad2=>{const _0x3e261c=_0x1c8214;if(_0x3e261c(0x3bc,'\x24\x6f\x57\x68')!==_0x3e261c(0x400,'\x31\x24\x47\x24'))return _0x3a44f6(_0xc10a02),{..._0xa9fbc5(_0x21a005),'\x74\x72\x61\x63\x65\x52\x65\x71\x75\x65\x73\x74\x42\x6f\x64\x79':_0x3201f9[_0x3e261c(0x1bd,'\x29\x50\x31\x25')+_0x3e261c(0x305,'\x54\x68\x44\x24')]};else throw providerGatewayError(_0x214620,_0x5b1ad2);})};}const contentTypeIncludes=(_0x27038b,_0xdd9318)=>(_0x27038b[_0x143e12(0x2e3,'\x4c\x26\x67\x79')+_0x143e12(0x258,'\x49\x34\x5d\x5e')]||'')[_0x143e12(0x20c,'\x69\x77\x6e\x29')+_0x143e12(0x47e,'\x5d\x34\x55\x42')]()[_0x143e12(0x2fe,'\x6b\x56\x67\x52')](_0xdd9318);function jsonResult(_0x2c3457,_0x5f48db){const _0x25b1b5=_0x143e12,_0x4dec0e=JSON[_0x25b1b5(0x385,'\x38\x23\x6d\x50')+'\x79'](_0x5f48db);return{'\x73\x74\x61\x74\x75\x73':_0x2c3457,'\x68\x65\x61\x64\x65\x72\x73':{'\x63\x6f\x6e\x74\x65\x6e\x74\x2d\x74\x79\x70\x65':_0x25b1b5(0x3ea,'\x4c\x26\x67\x79')+_0x25b1b5(0x2b6,'\x69\x69\x59\x44')},'\x73\x74\x72\x65\x61\x6d':null,'\x74\x65\x78\x74':()=>_0x4dec0e};}function bodyRecord(_0x501bf5){const _0x370a1f=_0x143e12;if(!_0x501bf5||typeof _0x501bf5!==_0x370a1f(0x1be,'\x53\x57\x69\x45')||Array[_0x370a1f(0x3e8,'\x6f\x79\x78\x32')](_0x501bf5))return{};return _0x501bf5;}function textFromBytes(_0x5b4452){const _0x4e6ba0=_0x143e12;if(typeof _0x5b4452==='\x73\x74\x72\x69\x6e\x67')return _0x5b4452;if(_0x5b4452 instanceof Uint8Array)return Buffer['\x66\x72\x6f\x6d'](_0x5b4452)[_0x4e6ba0(0x213,'\x56\x4a\x4e\x78')](_0x4e6ba0(0x1dd,'\x5a\x6b\x73\x4b'));if(_0x5b4452 instanceof ArrayBuffer)return Buffer[_0x4e6ba0(0x22f,'\x28\x53\x37\x30')](_0x5b4452)[_0x4e6ba0(0x3fd,'\x4d\x59\x44\x68')](_0x4e6ba0(0x339,'\x69\x69\x59\x44'));return'';}function bedrockErrorResult(_0x3242be){const _0x4f68b9=_0x143e12,_0x5ea611=_0x3242be&&typeof _0x3242be===_0x4f68b9(0x3a1,'\x73\x41\x34\x32')?_0x3242be:{},_0xd4ece=_0x5ea611[_0x4f68b9(0x246,'\x21\x79\x26\x4a')+'\x61']&&typeof _0x5ea611[_0x4f68b9(0x1ec,'\x30\x63\x34\x54')+'\x61']===_0x4f68b9(0x29f,'\x26\x6d\x63\x4a')?_0x5ea611[_0x4f68b9(0x2f9,'\x6f\x79\x78\x32')+'\x61']:{},_0x5dd65c=typeof _0x5ea611[_0x4f68b9(0x473,'\x48\x58\x4f\x48')]===_0x4f68b9(0x452,'\x48\x58\x4f\x48')?_0x5ea611[_0x4f68b9(0x25a,'\x25\x44\x61\x67')]:_0x4f68b9(0x33f,'\x74\x54\x30\x32')+_0x4f68b9(0x42f,'\x28\x35\x36\x6c'),_0x3ef669=typeof _0x5ea611[_0x4f68b9(0x382,'\x24\x21\x79\x49')]===_0x4f68b9(0x223,'\x73\x41\x34\x32')?_0x5ea611[_0x4f68b9(0x251,'\x21\x79\x26\x4a')]:String(_0x3242be),_0x10d7f7=typeof _0xd4ece[_0x4f68b9(0x2e4,'\x30\x63\x34\x54')+_0x4f68b9(0x44f,'\x75\x42\x5b\x58')]===_0x4f68b9(0x308,'\x28\x53\x37\x30')?_0xd4ece[_0x4f68b9(0x3ff,'\x69\x7a\x52\x26')+_0x4f68b9(0x422,'\x48\x58\x4f\x48')]:undefined,_0x50019f=_0x5dd65c===_0x4f68b9(0x335,'\x21\x79\x26\x4a')+_0x4f68b9(0x293,'\x6c\x32\x34\x38')||_0x5dd65c===_0x4f68b9(0x282,'\x6f\x79\x78\x32')+'\x6f\x72'?-0x31e*0x5+0x16a9*0x1+-0x51b:_0x10d7f7??-0x2b9*0xa+0x24b*-0xd+0x1*0x3afd;return jsonResult(_0x50019f,{'\x74\x79\x70\x65':_0x4f68b9(0x499,'\x63\x4f\x70\x31'),'\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':_0x5dd65c,'\x6d\x65\x73\x73\x61\x67\x65':_0x3ef669}});}function normalizeBedrockBody(_0xbaddfb,_0x469a7c){const _0x1e75b2=_0x143e12,_0x51200f=bodyRecord(_0xbaddfb),_0x393484=typeof _0x51200f[_0x1e75b2(0x247,'\x4f\x66\x32\x5e')]===_0x1e75b2(0x41f,'\x30\x63\x34\x54')?_0x51200f[_0x1e75b2(0x37a,'\x73\x41\x34\x32')]:null,_0xb2ec34=_0x393484?canonicalizeForBedrock(_0x393484,resolveBedrockAliases(_0x469a7c)):null,_0x183040=typeof _0xb2ec34===_0x1e75b2(0x3b6,'\x48\x23\x61\x28')&&_0xb2ec34[_0x1e75b2(0x462,'\x32\x40\x59\x34')]>0x1f34+0x1f4a+-0x1a5*0x26?_0xb2ec34:null;if(!_0x183040){if(_0x1e75b2(0x1b4,'\x4c\x26\x67\x79')!==_0x1e75b2(0x43e,'\x6c\x57\x65\x76'))return jsonResult(0x61*0x2e+-0xc5*-0x5+-0x13b7,{'\x74\x79\x70\x65':_0x1e75b2(0x2ee,'\x21\x39\x39\x5a'),'\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':'\x69\x6e\x76\x61\x6c\x69\x64\x5f'+_0x1e75b2(0x4a0,'\x61\x6c\x57\x25')+_0x1e75b2(0x333,'\x49\x34\x5d\x5e'),'\x6d\x65\x73\x73\x61\x67\x65':_0x1e75b2(0x448,'\x26\x6d\x63\x4a')+_0x1e75b2(0x22a,'\x4f\x66\x32\x5e')+'\x72\x65\x64\x20\x66\x6f\x72\x20'+_0x1e75b2(0x2bb,'\x73\x41\x34\x32')+_0x1e75b2(0x2be,'\x6c\x57\x65\x76')}});else{const _0x2e0310=(_0x1c5de0[_0x1e75b2(0x3d4,'\x64\x56\x7a\x2a')]||'')[_0x1e75b2(0x1d6,'\x24\x6f\x57\x68')](/\/+$/,'');if(!_0x2e0310)throw _0x29c225[_0x1e75b2(0x4a7,'\x31\x24\x47\x24')](new _0x368a8e(_0x1e75b2(0x3e5,'\x48\x23\x61\x28')+_0x1e75b2(0x493,'\x5d\x34\x55\x42')+_0x1e75b2(0x278,'\x4d\x5e\x62\x4b')),{'\x73\x74\x61\x74\x75\x73\x43\x6f\x64\x65':0x1f4});const _0x40fb95=_0x50fa23[_0x1e75b2(0x477,'\x71\x4f\x47\x73')]??_0x1ad13f.env;return _0x3298bb(''+_0x2e0310+_0x9964af,_0xfbee3e,_0x46d30a,_0x25aa72(_0x40fb95),_0x34ef21,_0x3848ca,_0x1e75b2(0x1c5,'\x49\x34\x5d\x5e'),(_0x30764a,_0x51dfcc)=>_0x1a4765(_0x30764a,_0x1e75b2(0x39f,'\x6a\x5a\x49\x25')+_0x1e75b2(0x1d5,'\x61\x6c\x57\x25')+'\x6d')||/:streamGenerateContent(\b|\?|$)/[_0x1e75b2(0x436,'\x6c\x32\x34\x38')](_0x51dfcc));}}const _0x5ea527={..._0x51200f};delete _0x5ea527[_0x1e75b2(0x2b9,'\x4d\x66\x46\x30')];if(!_0x5ea527[_0x1e75b2(0x4ae,'\x4c\x26\x67\x79')+_0x1e75b2(0x225,'\x75\x42\x5b\x58')+'\x6e'])_0x5ea527[_0x1e75b2(0x3ab,'\x54\x68\x44\x24')+_0x1e75b2(0x1fd,'\x4d\x66\x46\x30')+'\x6e']=_0x1e75b2(0x205,'\x63\x4f\x70\x31')+_0x1e75b2(0x23b,'\x4f\x66\x32\x5e')+'\x33\x31';const _0x35b5f4=_0x5ea527[_0x1e75b2(0x47c,'\x33\x57\x6b\x26')]===!![];delete _0x5ea527[_0x1e75b2(0x25c,'\x56\x4a\x4e\x78')];const _0x38c19e=supportsAdaptiveThinking(_0x183040),_0x67c23d=_0x5ea527[_0x1e75b2(0x3ad,'\x31\x24\x47\x24')];if(!_0x38c19e&&_0x67c23d&&typeof _0x67c23d===_0x1e75b2(0x3b8,'\x30\x63\x34\x54')&&!Array[_0x1e75b2(0x2d2,'\x75\x42\x5b\x58')](_0x67c23d)){if(_0x1e75b2(0x3df,'\x29\x50\x31\x25')===_0x1e75b2(0x498,'\x32\x40\x59\x34')){const _0x2bd90c=_0x67c23d;if(_0x2bd90c[_0x1e75b2(0x2dd,'\x6f\x79\x78\x32')]===_0x1e75b2(0x248,'\x74\x54\x30\x32')){const _0x5c7822=typeof _0x5ea527['\x6d\x61\x78\x5f\x74\x6f\x6b\x65'+'\x6e\x73']==='\x6e\x75\x6d\x62\x65\x72'?_0x5ea527[_0x1e75b2(0x233,'\x48\x55\x29\x45')+'\x6e\x73']:-0x206a+0x2aaf+-0x15bb*-0x1,_0x56c4d2=_0x2bd90c[_0x1e75b2(0x39e,'\x5d\x34\x55\x42')+_0x1e75b2(0x1fb,'\x31\x24\x47\x24')];if(_0x5c7822<=0xcf1+-0x14f7+-0x51*-0x26)_0x5ea527[_0x1e75b2(0x218,'\x54\x68\x44\x24')]={'\x74\x79\x70\x65':_0x1e75b2(0x44d,'\x4f\x68\x67\x73')};else{if(_0x1e75b2(0x2d0,'\x4c\x69\x6c\x48')!==_0x1e75b2(0x1c1,'\x21\x79\x26\x4a')){const _0x302284=typeof _0x56c4d2===_0x1e75b2(0x3ae,'\x4c\x69\x6c\x48')?_0x56c4d2:Math[_0x1e75b2(0x323,'\x4c\x26\x67\x79')](_0x5c7822/(0x2*-0x28f+0x913+-0x3f3)),_0x575e02=Math[_0x1e75b2(0x355,'\x24\x21\x79\x49')](Math[_0x1e75b2(0x48d,'\x5a\x64\x24\x78')](-0x19ba+-0x11*-0x1d9+-0x1af,_0x302284),_0x5c7822-(0x1*0x2504+0x19d9+0x1f6e*-0x2));_0x5ea527['\x74\x68\x69\x6e\x6b\x69\x6e\x67']={..._0x2bd90c,'\x74\x79\x70\x65':_0x1e75b2(0x252,'\x6f\x79\x78\x32'),'\x62\x75\x64\x67\x65\x74\x5f\x74\x6f\x6b\x65\x6e\x73':_0x575e02};}else _0x1ad8c4[_0x1e75b2(0x32c,'\x6c\x32\x34\x38')]={'\x74\x79\x70\x65':'\x64\x69\x73\x61\x62\x6c\x65\x64'};}}}else{_0xec0792(_0x352a8b);throw _0x26fb47(_0x492dec,_0x32bbe6);}}delete _0x5ea527[_0x1e75b2(0x43c,'\x29\x50\x31\x25')+'\x6d\x61\x6e\x61\x67\x65\x6d\x65'+'\x6e\x74'];if(!_0x38c19e)delete _0x5ea527[_0x1e75b2(0x3a2,'\x49\x34\x5d\x5e')+_0x1e75b2(0x44e,'\x5a\x64\x24\x78')];return{'\x6d\x6f\x64\x65\x6c\x49\x64':_0x183040,'\x75\x70\x73\x74\x72\x65\x61\x6d\x42\x6f\x64\x79':_0x5ea527,'\x77\x61\x6e\x74\x73\x53\x74\x72\x65\x61\x6d':_0x35b5f4};}function _0x1a71(){const _0x36cbaf=['\x57\x50\x61\x73\x57\x52\x5a\x63\x53\x33\x4a\x63\x54\x53\x6f\x59\x61\x57','\x74\x74\x52\x63\x4d\x43\x6b\x75','\x79\x53\x6f\x48\x79\x66\x76\x51\x73\x62\x69\x76','\x46\x43\x6f\x33\x57\x4f\x52\x64\x54\x75\x61\x78\x70\x47','\x57\x35\x58\x75\x57\x37\x4e\x64\x4c\x77\x56\x63\x55\x43\x6b\x4b\x6c\x57','\x57\x36\x4a\x64\x4f\x76\x56\x64\x4d\x48\x75','\x57\x51\x5a\x64\x4d\x53\x6b\x2b','\x57\x52\x31\x6a\x57\x37\x6c\x64\x52\x71\x61\x77\x79\x4c\x56\x64\x4d\x4d\x33\x63\x47\x6d\x6b\x65\x57\x35\x79','\x70\x72\x37\x49\x47\x41\x61\x36\x71\x38\x6b\x42\x57\x35\x6c\x63\x4d\x47','\x57\x34\x68\x63\x52\x72\x53\x35\x72\x43\x6f\x77\x57\x36\x47','\x57\x37\x53\x77\x57\x51\x74\x63\x52\x76\x66\x59\x6a\x4c\x4b','\x57\x36\x78\x64\x4a\x73\x4f\x73\x6f\x31\x78\x63\x4c\x5a\x56\x63\x4b\x4b\x75\x62\x67\x43\x6f\x63','\x57\x50\x78\x63\x54\x4a\x47\x71\x42\x38\x6b\x6a\x57\x37\x56\x63\x4b\x47','\x57\x52\x44\x44\x57\x4f\x75','\x6a\x53\x6f\x75\x72\x4e\x2f\x63\x53\x5a\x30','\x6a\x73\x4c\x62\x57\x34\x47\x65\x57\x51\x64\x63\x48\x31\x4b','\x6f\x43\x6b\x72\x57\x50\x50\x6d\x57\x51\x37\x64\x56\x53\x6f\x50\x68\x47','\x57\x50\x75\x63\x6d\x5a\x56\x64\x49\x33\x4f','\x64\x30\x4b\x56\x57\x50\x33\x63\x4d\x73\x37\x64\x51\x59\x61','\x57\x36\x4e\x64\x53\x38\x6f\x42\x45\x65\x71','\x6f\x43\x6f\x6d\x57\x52\x30\x6d\x57\x36\x37\x63\x4b\x31\x64\x63\x4f\x61','\x57\x35\x44\x72\x57\x37\x33\x64\x51\x64\x78\x64\x53\x48\x6c\x63\x4e\x57','\x79\x62\x39\x52\x6a\x66\x34\x69\x61\x6d\x6b\x4e','\x57\x52\x4f\x46\x57\x35\x74\x64\x50\x71','\x57\x35\x4a\x64\x56\x75\x53\x6d\x79\x53\x6b\x49\x57\x36\x5a\x63\x4e\x47','\x57\x35\x4f\x76\x57\x34\x7a\x71\x68\x38\x6b\x64\x57\x36\x64\x63\x55\x57','\x74\x38\x6f\x59\x57\x52\x72\x4a\x63\x63\x5a\x63\x4d\x53\x6f\x49','\x76\x43\x6f\x78\x65\x4d\x31\x34\x6e\x74\x70\x63\x52\x57','\x6e\x4a\x46\x63\x4c\x6d\x6f\x76\x78\x62\x58\x4b\x44\x47','\x57\x37\x52\x63\x50\x43\x6b\x4b\x76\x68\x37\x63\x56\x66\x56\x64\x50\x71','\x57\x35\x58\x75\x57\x37\x4e\x64\x4c\x4c\x70\x63\x55\x43\x6b\x2b\x6d\x57','\x67\x75\x48\x48\x57\x36\x57\x2f\x57\x4f\x56\x63\x4f\x78\x6d','\x57\x50\x61\x75\x57\x37\x2f\x64\x51\x43\x6b\x79\x57\x50\x31\x6c\x74\x57','\x69\x30\x71\x78','\x57\x50\x47\x50\x57\x35\x56\x64\x4e\x53\x6b\x31','\x76\x53\x6b\x4e\x57\x52\x70\x64\x51\x62\x37\x63\x4f\x53\x6b\x6d\x66\x71','\x57\x51\x6d\x63\x57\x51\x78\x63\x54\x67\x68\x63\x4f\x43\x6b\x37\x64\x71','\x62\x31\x44\x2f\x57\x50\x46\x63\x47\x49\x6c\x64\x50\x63\x61','\x57\x50\x5a\x63\x54\x43\x6f\x61\x6e\x38\x6b\x6a\x57\x34\x7a\x57\x57\x34\x6d','\x57\x37\x54\x51\x57\x35\x46\x64\x49\x47\x68\x64\x4c\x47\x64\x63\x4f\x57','\x70\x53\x6f\x6f\x57\x36\x34\x78\x57\x37\x6c\x64\x4b\x4c\x5a\x64\x50\x71','\x57\x4f\x70\x64\x50\x53\x6b\x6d\x6b\x32\x31\x59\x42\x61','\x45\x53\x6f\x33\x57\x50\x33\x64\x54\x77\x43\x77','\x6b\x31\x38\x73\x68\x33\x53','\x57\x36\x70\x64\x4c\x75\x6a\x55\x66\x53\x6b\x44\x57\x37\x70\x63\x53\x66\x44\x36\x6f\x57','\x57\x37\x38\x44\x62\x5a\x71\x68\x57\x50\x64\x64\x47\x38\x6b\x37','\x57\x51\x71\x6d\x57\x35\x42\x64\x54\x62\x57\x37\x42\x6d\x6b\x4c','\x78\x43\x6b\x50\x57\x51\x37\x63\x4f\x49\x68\x63\x4f\x38\x6b\x70','\x57\x52\x44\x50\x44\x68\x72\x4e\x57\x4f\x76\x57\x57\x52\x6d','\x57\x37\x44\x4c\x57\x52\x48\x68\x76\x78\x33\x64\x4e\x4a\x6d','\x57\x35\x5a\x64\x56\x75\x4b','\x57\x51\x5a\x64\x4c\x53\x6b\x4a\x57\x50\x7a\x51\x57\x4f\x61\x47','\x75\x38\x6f\x41\x57\x52\x74\x64\x4a\x31\x4f\x31\x66\x31\x53','\x6c\x5a\x52\x64\x55\x57','\x57\x52\x6c\x64\x54\x38\x6b\x46\x6d\x67\x7a\x4e\x6a\x43\x6f\x32','\x6a\x77\x38\x68\x79\x31\x4f','\x57\x50\x79\x74\x57\x37\x33\x64\x53\x53\x6b\x63\x57\x52\x65\x7a\x78\x57','\x57\x51\x75\x4d\x69\x53\x6b\x51\x44\x61\x68\x63\x4c\x43\x6f\x64','\x67\x53\x6b\x59\x6d\x38\x6b\x70\x57\x4f\x4f\x4c\x57\x51\x65\x66','\x57\x37\x37\x64\x55\x32\x64\x64\x4e\x62\x53\x68\x57\x52\x76\x6b','\x66\x48\x61\x6f\x57\x36\x69','\x79\x38\x6b\x47\x69\x59\x5a\x63\x54\x53\x6b\x42\x72\x47\x57','\x57\x34\x33\x63\x55\x57\x31\x51\x43\x43\x6f\x4a\x57\x34\x65','\x57\x4f\x65\x59\x57\x4f\x6c\x63\x4a\x31\x68\x63\x48\x38\x6b\x44\x70\x61','\x57\x4f\x30\x67\x6b\x67\x68\x64\x4a\x77\x33\x63\x51\x47','\x69\x74\x6d\x38\x57\x35\x4e\x63\x4d\x4d\x6e\x2b\x57\x34\x61','\x57\x52\x52\x63\x51\x4c\x2f\x63\x51\x32\x2f\x64\x54\x65\x2f\x64\x4e\x57','\x57\x36\x5a\x63\x4b\x4a\x39\x75\x75\x43\x6f\x42\x57\x36\x78\x64\x56\x47','\x57\x4f\x4b\x6b\x6e\x33\x72\x65\x57\x36\x46\x64\x47\x71\x69','\x57\x36\x6d\x43\x57\x51\x56\x63\x55\x4c\x66\x74\x69\x78\x38','\x57\x37\x64\x63\x4c\x71\x43\x55\x77\x53\x6b\x52\x57\x34\x68\x63\x50\x71','\x64\x75\x75\x6f\x77\x57\x46\x63\x48\x6d\x6b\x4e\x57\x52\x57','\x57\x52\x75\x31\x65\x30\x47','\x46\x43\x6b\x4f\x69\x4b\x4c\x41\x62\x71\x4e\x63\x49\x71','\x61\x48\x35\x47\x6b\x71','\x79\x61\x4f\x4c\x75\x47','\x57\x4f\x4a\x64\x4d\x43\x6b\x58\x6c\x73\x52\x63\x4b\x43\x6f\x49\x73\x73\x72\x52\x57\x51\x4c\x2f\x62\x61','\x6d\x75\x34\x42\x43\x31\x4a\x63\x4e\x61','\x57\x4f\x74\x63\x4d\x53\x6f\x5a\x63\x6d\x6b\x34\x57\x36\x62\x4d\x57\x51\x79','\x73\x74\x33\x63\x4b\x53\x6b\x45\x41\x32\x6a\x4f\x67\x47','\x57\x34\x31\x46\x57\x36\x78\x64\x4b\x48\x70\x63\x54\x43\x6b\x4d\x69\x47','\x57\x51\x30\x33\x70\x43\x6b\x4e\x46\x57','\x6b\x76\x69\x43\x68\x33\x71\x47','\x6b\x73\x70\x63\x4c\x6d\x6f\x6e\x72\x57\x4c\x77\x43\x61','\x42\x68\x4a\x63\x47\x43\x6f\x6e\x77\x31\x6e\x4d\x79\x57','\x57\x35\x4a\x64\x4f\x66\x50\x65\x72\x43\x6b\x46\x57\x35\x64\x64\x4c\x57','\x41\x38\x6f\x75\x57\x4f\x54\x63\x69\x62\x2f\x63\x50\x6d\x6f\x78','\x61\x59\x37\x63\x47\x38\x6f\x79\x71\x47\x4c\x47\x46\x61','\x67\x43\x6b\x72\x57\x34\x35\x52\x57\x51\x5a\x64\x54\x6d\x6f\x33\x6e\x47','\x57\x52\x6c\x64\x50\x65\x2f\x63\x4f\x77\x5a\x64\x56\x31\x4e\x64\x50\x61','\x75\x30\x50\x71\x57\x50\x72\x76\x57\x4f\x33\x64\x4e\x53\x6b\x4e','\x6d\x38\x6f\x6f\x57\x36\x47\x78\x57\x35\x4e\x64\x49\x31\x6c\x64\x50\x71','\x63\x6d\x6b\x4f\x6e\x43\x6b\x6f\x57\x50\x79\x54\x57\x52\x47\x6b','\x57\x36\x52\x64\x53\x78\x64\x64\x4a\x47\x75\x6f','\x57\x34\x33\x64\x4e\x65\x42\x64\x54\x74\x57\x52\x57\x4f\x72\x53','\x67\x74\x4a\x63\x55\x4b\x61\x76\x76\x47','\x57\x37\x65\x45\x65\x74\x6d\x62\x57\x50\x43','\x71\x4a\x37\x64\x49\x66\x42\x63\x49\x38\x6f\x63\x57\x35\x61\x51','\x57\x35\x6d\x77\x57\x52\x72\x30\x57\x34\x6c\x64\x55\x33\x7a\x72','\x45\x43\x6f\x71\x57\x4f\x4c\x68\x6a\x58\x53','\x6a\x49\x64\x64\x56\x73\x78\x63\x56\x68\x33\x64\x48\x30\x71','\x6a\x73\x68\x64\x55\x71','\x57\x52\x42\x63\x4d\x43\x6b\x48\x63\x43\x6b\x56\x57\x36\x30\x42\x57\x36\x43','\x57\x36\x6d\x7a\x65\x64\x6d\x69\x57\x50\x34','\x62\x53\x6b\x4b\x6b\x38\x6b\x64\x57\x4f\x43\x32','\x57\x52\x34\x75\x57\x37\x52\x64\x56\x53\x6b\x70\x57\x51\x57','\x6f\x43\x6b\x58\x57\x52\x50\x53\x57\x4f\x37\x64\x4e\x53\x6f\x6a\x70\x47','\x66\x63\x4c\x44\x57\x52\x65\x56\x57\x50\x64\x63\x56\x4d\x79','\x57\x50\x56\x63\x52\x38\x6f\x72\x6e\x43\x6b\x66\x57\x35\x50\x36\x57\x35\x69','\x57\x50\x33\x63\x54\x78\x48\x73\x76\x71','\x57\x51\x66\x68\x57\x4f\x68\x64\x4e\x53\x6b\x38\x73\x57','\x64\x72\x71\x74\x57\x36\x34','\x67\x57\x66\x32\x70\x57\x79\x71\x70\x53\x6f\x4b','\x74\x53\x6b\x73\x65\x4e\x58\x53\x6f\x68\x42\x63\x56\x47','\x70\x48\x30\x78\x63\x4e\x35\x35\x65\x73\x79','\x62\x57\x78\x63\x50\x43\x6f\x49\x7a\x59\x39\x66\x70\x71','\x57\x37\x62\x4c\x57\x35\x37\x64\x51\x78\x68\x63\x47\x6d\x6b\x72\x65\x57','\x57\x36\x6d\x69\x61\x59\x47\x66\x57\x50\x65','\x71\x59\x33\x63\x4c\x38\x6b\x44\x41\x32\x72\x65\x6f\x47','\x57\x50\x65\x4f\x57\x37\x42\x64\x4a\x74\x69\x69\x78\x6d\x6b\x67','\x67\x53\x6f\x34\x46\x4c\x70\x63\x47\x72\x52\x64\x4b\x53\x6f\x44','\x6e\x4d\x48\x33\x57\x52\x66\x57\x57\x36\x4a\x64\x47\x38\x6b\x69','\x57\x36\x56\x63\x52\x43\x6f\x35\x72\x67\x42\x63\x56\x47','\x6e\x49\x72\x7a\x57\x34\x6d\x64\x57\x51\x2f\x63\x4c\x4c\x47','\x57\x35\x65\x6a\x57\x35\x47\x73\x70\x53\x6b\x61\x57\x36\x64\x63\x48\x47','\x62\x31\x79\x58','\x57\x37\x5a\x64\x4f\x53\x6f\x44\x43\x4b\x6c\x64\x48\x47','\x6d\x4c\x75\x6f\x64\x4a\x47\x58\x64\x63\x79','\x57\x51\x7a\x43\x57\x51\x64\x64\x47\x38\x6b\x47\x72\x76\x31\x65','\x57\x37\x56\x64\x4d\x30\x56\x64\x4f\x47','\x6a\x49\x52\x64\x55\x32\x42\x63\x50\x4c\x56\x64\x4e\x30\x61','\x57\x51\x43\x57\x57\x35\x2f\x64\x51\x58\x2f\x64\x47\x63\x5a\x63\x47\x61','\x57\x50\x75\x55\x57\x36\x42\x64\x4a\x59\x6d\x44\x74\x43\x6b\x69','\x57\x52\x79\x46\x57\x34\x52\x64\x50\x73\x79\x51\x42\x57','\x57\x50\x48\x68\x65\x78\x58\x32\x57\x4f\x39\x32\x57\x51\x34','\x68\x43\x6b\x72\x57\x50\x47','\x68\x4a\x37\x64\x54\x30\x57\x46\x75\x6d\x6b\x56\x61\x57','\x57\x35\x78\x63\x4e\x43\x6f\x48\x6e\x68\x2f\x64\x49\x43\x6b\x4a\x78\x71','\x57\x52\x54\x45\x57\x50\x42\x64\x4d\x6d\x6b\x4e\x77\x68\x35\x71','\x57\x52\x42\x63\x4e\x67\x62\x64\x77\x72\x37\x64\x49\x71','\x66\x4a\x4a\x63\x4d\x65\x52\x63\x4b\x43\x6f\x43\x57\x34\x58\x52','\x57\x51\x56\x64\x4f\x57\x33\x63\x50\x78\x5a\x64\x51\x62\x33\x64\x4e\x47','\x66\x49\x37\x64\x49\x31\x65','\x75\x38\x6f\x74\x57\x51\x42\x64\x4b\x4c\x71\x32\x66\x30\x4f','\x57\x36\x66\x6c\x57\x51\x31\x46\x44\x47','\x57\x51\x6d\x7a\x57\x37\x52\x64\x56\x53\x6b\x70\x57\x51\x57','\x57\x52\x53\x74\x57\x50\x4e\x64\x52\x57\x66\x34\x79\x53\x6f\x50','\x57\x35\x42\x64\x48\x65\x52\x64\x54\x74\x79\x52','\x57\x34\x35\x41\x57\x52\x76\x38\x41\x31\x52\x64\x4f\x64\x75','\x57\x35\x4a\x64\x55\x48\x65\x68\x46\x38\x6b\x47\x57\x52\x70\x63\x47\x71','\x57\x36\x79\x69\x65\x63\x34\x64\x57\x4f\x68\x64\x4a\x43\x6b\x36','\x66\x73\x5a\x63\x50\x65\x43\x4c\x76\x53\x6f\x4a','\x57\x52\x58\x39\x71\x49\x65','\x57\x51\x53\x65\x57\x50\x64\x63\x52\x4e\x5a\x63\x53\x53\x6b\x52','\x71\x43\x6b\x72\x63\x61\x64\x63\x4a\x47','\x57\x36\x56\x63\x54\x6d\x6b\x4e\x73\x32\x64\x63\x53\x65\x4a\x64\x54\x71','\x77\x74\x52\x63\x4d\x43\x6b\x6c','\x7a\x6d\x6f\x4c\x57\x52\x69\x64\x6b\x48\x70\x63\x51\x6d\x6f\x74','\x57\x50\x74\x64\x4b\x43\x6b\x48\x44\x73\x48\x66\x67\x53\x6f\x46','\x74\x38\x6b\x46\x67\x61\x42\x63\x49\x53\x6b\x6e\x46\x64\x38','\x66\x72\x54\x47\x57\x36\x39\x53\x57\x50\x37\x63\x4f\x78\x6d','\x78\x53\x6b\x4d\x57\x51\x4e\x63\x52\x57\x42\x63\x56\x53\x6b\x74\x65\x47','\x57\x35\x56\x64\x53\x4b\x57\x62\x72\x43\x6b\x2f\x57\x37\x61','\x70\x5a\x35\x42\x57\x35\x65\x6e\x57\x51\x2f\x63\x4a\x66\x71','\x42\x57\x64\x63\x55\x53\x6b\x47\x45\x47','\x63\x53\x6b\x41\x57\x50\x50\x72\x57\x51\x37\x64\x56\x57','\x57\x50\x76\x63\x46\x66\x6e\x6c\x57\x52\x62\x66\x57\x4f\x4b','\x72\x74\x5a\x64\x4d\x38\x6b\x6b\x45\x4d\x72\x73\x64\x57','\x62\x53\x6b\x32\x6a\x6d\x6b\x69\x57\x4f\x75\x52\x57\x36\x47\x63','\x57\x51\x57\x78\x6a\x63\x68\x64\x52\x30\x56\x64\x50\x38\x6b\x45','\x70\x38\x6f\x37\x57\x4f\x5a\x64\x4f\x32\x66\x66\x70\x68\x4f','\x76\x31\x6a\x6c\x57\x50\x62\x72\x57\x4f\x46\x64\x4e\x6d\x6b\x58','\x57\x37\x46\x64\x53\x68\x2f\x64\x4c\x62\x34\x6d\x57\x52\x34','\x74\x30\x6e\x66\x57\x52\x37\x64\x50\x57\x47\x73\x57\x51\x43\x4f\x57\x50\x68\x63\x55\x53\x6f\x4a\x63\x59\x57','\x57\x34\x33\x64\x56\x67\x57\x71\x79\x53\x6b\x4b\x57\x37\x6c\x63\x4b\x61','\x6d\x4a\x70\x63\x4d\x6d\x6f\x6a\x68\x72\x48\x2f\x44\x47','\x73\x53\x6b\x65\x63\x62\x70\x63\x54\x43\x6b\x51\x41\x74\x4b','\x57\x37\x64\x64\x56\x65\x74\x64\x52\x57\x34','\x6b\x74\x74\x63\x49\x53\x6f\x79\x75\x71\x4b','\x57\x35\x4a\x63\x4d\x53\x6f\x54\x6f\x77\x4a\x64\x4d\x53\x6b\x38\x67\x61','\x57\x52\x31\x64\x57\x50\x42\x64\x4d\x43\x6b\x5a\x72\x71','\x57\x52\x33\x63\x48\x43\x6f\x4c\x68\x47','\x57\x34\x78\x63\x52\x71\x30\x30','\x69\x5a\x4a\x63\x4c\x47','\x6c\x31\x38\x79','\x72\x6d\x6b\x76\x63\x61\x64\x63\x4a\x53\x6b\x78\x7a\x74\x30','\x57\x52\x52\x63\x4d\x53\x6f\x31\x61\x53\x6b\x4b\x57\x52\x4c\x75\x57\x36\x47','\x65\x6d\x6f\x4c\x43\x66\x46\x63\x4a\x72\x33\x64\x4a\x6d\x6f\x42','\x57\x51\x44\x64\x57\x4f\x64\x64\x47\x38\x6b\x47\x73\x76\x6a\x6f','\x57\x34\x4c\x33\x57\x34\x64\x64\x49\x47\x5a\x64\x4d\x58\x64\x64\x53\x61','\x74\x49\x42\x63\x4c\x38\x6b\x71\x69\x68\x76\x79\x61\x57','\x57\x37\x5a\x64\x48\x78\x61\x50\x75\x43\x6b\x44\x57\x34\x70\x63\x55\x61','\x62\x57\x52\x64\x4d\x57','\x57\x52\x38\x79\x62\x6d\x6b\x6e\x78\x4a\x46\x63\x4d\x6d\x6b\x51','\x57\x51\x79\x6e\x65\x53\x6b\x71\x73\x73\x33\x63\x52\x53\x6b\x51','\x57\x50\x6c\x64\x54\x53\x6b\x70\x57\x52\x62\x7a\x57\x51\x53','\x63\x49\x37\x64\x4d\x75\x68\x63\x4d\x53\x6f\x63\x57\x34\x79\x46','\x57\x51\x74\x64\x4b\x53\x6b\x39\x57\x51\x7a\x4b\x57\x4f\x4f\x4f\x57\x50\x43','\x6d\x49\x52\x64\x55\x33\x64\x63\x56\x68\x57','\x57\x51\x70\x63\x4c\x62\x79\x56\x77\x53\x6b\x51\x57\x37\x70\x63\x52\x71','\x57\x36\x42\x63\x50\x53\x6f\x79\x78\x66\x70\x64\x51\x43\x6b\x7a\x7a\x57','\x78\x73\x4e\x63\x4d\x53\x6b\x71\x41\x4e\x44\x64\x62\x57','\x43\x38\x6f\x5a\x46\x75\x54\x4e\x75\x48\x43\x42','\x76\x47\x61\x35\x78\x30\x33\x63\x4a\x38\x6b\x64\x57\x52\x79','\x57\x36\x4f\x6b\x57\x51\x38','\x57\x34\x68\x64\x47\x53\x6f\x4e\x73\x77\x70\x64\x53\x43\x6f\x77\x43\x71','\x62\x72\x4e\x64\x47\x65\x4e\x63\x4d\x66\x46\x64\x4f\x67\x38','\x57\x35\x54\x7a\x57\x51\x62\x4a\x57\x34\x68\x64\x4b\x68\x53\x64','\x57\x51\x69\x63\x57\x36\x6c\x64\x53\x53\x6b\x63\x57\x52\x38','\x57\x52\x6c\x64\x50\x75\x70\x64\x4f\x78\x70\x64\x4f\x4c\x6c\x64\x47\x47','\x64\x62\x71\x6e\x57\x36\x42\x63\x56\x4c\x39\x6f','\x57\x51\x58\x39\x43\x4d\x6e\x47\x57\x4f\x75','\x68\x43\x6b\x4a\x6d\x53\x6b\x73','\x45\x53\x6f\x47\x57\x50\x5a\x64\x56\x4d\x66\x46\x43\x4e\x61','\x66\x49\x70\x63\x4f\x30\x4f\x63\x73\x38\x6f\x2f\x63\x57','\x41\x6d\x6f\x33\x57\x50\x46\x64\x50\x67\x79\x32\x6a\x4d\x43','\x57\x50\x76\x63\x46\x66\x6e\x72\x57\x52\x62\x74\x57\x50\x6d','\x6d\x31\x53\x61\x45\x76\x37\x63\x4f\x43\x6f\x41\x57\x34\x4f','\x57\x52\x53\x6f\x57\x35\x5a\x64\x52\x48\x69\x58\x6c\x53\x6b\x52','\x57\x50\x48\x68\x42\x4b\x35\x66\x57\x52\x6e\x66\x57\x50\x47','\x57\x36\x30\x62\x57\x36\x61','\x78\x53\x6b\x73\x66\x67\x54\x48','\x79\x6d\x6f\x62\x71\x33\x54\x76\x43\x4e\x65\x55','\x74\x6d\x6b\x72\x63\x47\x6c\x63\x4a\x38\x6b\x59\x41\x73\x38','\x57\x52\x53\x6e\x62\x6d\x6b\x71\x73\x74\x57','\x57\x51\x4e\x64\x54\x43\x6b\x35\x57\x52\x76\x63','\x65\x71\x65\x79\x57\x36\x74\x63\x56\x4c\x75\x67\x57\x36\x69','\x57\x52\x52\x63\x4e\x68\x35\x64','\x64\x48\x53\x30\x57\x37\x6d\x49\x57\x50\x70\x63\x51\x4a\x79','\x57\x35\x48\x6a\x57\x36\x74\x64\x49\x66\x2f\x63\x4d\x43\x6b\x4b\x69\x47','\x57\x36\x37\x63\x54\x53\x6f\x7a\x45\x4b\x64\x64\x49\x6d\x6f\x37\x65\x47','\x57\x51\x7a\x77\x57\x4f\x64\x64\x47\x57','\x6b\x48\x78\x63\x4a\x38\x6f\x71\x78\x58\x58\x4e\x44\x57','\x79\x57\x35\x6d\x6b\x71\x6c\x64\x4e\x38\x6b\x68\x57\x34\x4f\x4e\x7a\x68\x46\x63\x47\x6d\x6f\x36','\x67\x58\x61\x71\x57\x34\x2f\x63\x52\x75\x35\x65\x57\x36\x61','\x57\x50\x30\x42\x6f\x32\x39\x45\x57\x37\x30','\x57\x50\x74\x63\x50\x73\x43\x70\x41\x38\x6b\x41\x57\x36\x78\x63\x4b\x61','\x57\x36\x62\x4c\x57\x50\x50\x43\x72\x32\x64\x64\x4d\x63\x38','\x79\x53\x6b\x65\x34\x4f\x6f\x56\x64\x4a\x57\x70\x57\x51\x64\x63\x47\x57','\x78\x43\x6b\x42\x67\x75\x72\x51','\x62\x6d\x6f\x4d\x6e\x43\x6b\x70\x57\x4f\x4b\x4e\x57\x51\x58\x64','\x57\x34\x33\x64\x53\x38\x6f\x6f\x41\x75\x4e\x64\x4b\x38\x6b\x2f','\x62\x63\x74\x64\x49\x47\x78\x63\x4a\x43\x6f\x46\x57\x34\x61\x2f','\x62\x38\x6b\x59\x42\x6d\x6b\x76\x57\x50\x61\x57\x57\x51\x30\x63','\x6d\x30\x53\x41\x45\x75\x6c\x63\x47\x43\x6f\x79\x57\x35\x71','\x57\x51\x6d\x65\x57\x37\x2f\x64\x51\x71','\x57\x37\x6e\x33\x57\x35\x56\x63\x49\x58\x78\x64\x4a\x64\x4e\x63\x55\x61','\x6f\x43\x6f\x64\x57\x37\x43\x67\x57\x37\x2f\x64\x48\x57','\x57\x4f\x65\x43\x66\x57','\x57\x36\x4b\x77\x57\x51\x37\x63\x50\x58\x50\x6d\x70\x75\x38','\x57\x51\x6d\x64\x57\x37\x37\x64\x52\x38\x6b\x66\x57\x52\x76\x43','\x57\x52\x38\x78\x57\x37\x33\x64\x56\x47','\x57\x35\x42\x63\x4d\x43\x6f\x54\x44\x33\x5a\x64\x47\x43\x6f\x2b\x77\x57','\x57\x52\x30\x74\x57\x37\x37\x64\x56\x6d\x6b\x79\x57\x52\x61','\x6d\x76\x43\x68\x45\x31\x74\x63\x48\x6d\x6f\x73\x57\x35\x34','\x57\x52\x64\x63\x48\x6d\x6f\x4e\x64\x53\x6b\x4e','\x69\x38\x6f\x73\x57\x35\x34\x6d\x57\x37\x4a\x64\x4c\x47','\x44\x53\x6f\x69\x57\x36\x35\x64\x57\x37\x6c\x64\x4e\x65\x78\x63\x4f\x61','\x57\x35\x4f\x68\x57\x35\x6a\x41\x61\x38\x6b\x64','\x57\x51\x50\x36\x71\x32\x76\x51\x57\x4f\x43','\x57\x52\x79\x74\x57\x37\x33\x64\x53\x53\x6b\x63\x57\x52\x65','\x57\x51\x62\x45\x57\x35\x5a\x64\x52\x72\x65\x39\x7a\x38\x6f\x50','\x6a\x72\x39\x47\x69\x62\x65\x61\x64\x43\x6b\x57','\x57\x37\x30\x64\x57\x35\x6a\x6e\x68\x53\x6b\x74\x57\x36\x37\x64\x49\x61','\x57\x35\x38\x47\x6d\x48\x53\x59\x57\x52\x64\x63\x52\x38\x6b\x75','\x6b\x30\x65\x38\x57\x50\x74\x63\x47\x64\x4e\x64\x4f\x5a\x53','\x57\x50\x78\x63\x51\x4b\x62\x35\x78\x49\x4e\x64\x4f\x47\x6d','\x57\x52\x78\x64\x51\x30\x64\x63\x51\x57','\x70\x75\x4f\x61\x41\x4b\x78\x64\x4b\x53\x6b\x79\x57\x50\x75','\x78\x76\x66\x72\x57\x52\x66\x6c','\x6d\x6d\x6f\x7a\x76\x32\x78\x63\x52\x78\x4a\x64\x50\x38\x6f\x48','\x46\x6d\x6f\x49\x57\x4f\x31\x6d\x69\x47','\x57\x51\x46\x64\x53\x43\x6b\x63\x6e\x61','\x57\x4f\x47\x63\x6c\x32\x2f\x64\x4e\x67\x46\x63\x54\x53\x6b\x6a','\x57\x34\x2f\x63\x4b\x53\x6b\x79\x41\x31\x2f\x63\x4c\x4e\x56\x64\x4e\x47','\x66\x6d\x6b\x41\x57\x4f\x62\x64\x57\x51\x4a\x64\x55\x71','\x75\x53\x6b\x4e\x57\x52\x4e\x63\x4f\x48\x4a\x63\x48\x43\x6b\x6b\x66\x47','\x57\x52\x52\x64\x50\x4c\x34','\x57\x36\x72\x56\x57\x35\x50\x70\x74\x78\x46\x64\x49\x58\x57','\x6c\x63\x52\x64\x49\x4e\x33\x63\x52\x78\x46\x64\x47\x4b\x71','\x69\x76\x53\x68\x42\x47','\x57\x4f\x44\x48\x57\x52\x38','\x68\x4c\x62\x59\x57\x50\x52\x63\x4c\x74\x71','\x57\x37\x74\x63\x54\x58\x6e\x38\x46\x38\x6f\x58\x57\x35\x64\x64\x51\x57','\x57\x37\x78\x64\x55\x43\x6f\x37\x73\x77\x34','\x57\x50\x43\x4c\x57\x50\x30','\x42\x43\x6b\x43\x63\x4d\x6a\x56','\x63\x59\x74\x64\x4c\x47\x52\x63\x4c\x43\x6f\x64\x57\x35\x4f\x4c','\x61\x59\x35\x66\x62\x73\x4f\x48\x70\x6d\x6b\x71','\x57\x37\x34\x4f\x57\x36\x6a\x33\x69\x38\x6b\x2f\x57\x35\x78\x63\x4f\x71','\x57\x50\x75\x73\x6f\x4d\x44\x44\x57\x37\x75','\x6b\x59\x78\x64\x4a\x4b\x52\x63\x4c\x6d\x6f\x76\x57\x37\x47\x4b','\x57\x52\x44\x56\x78\x67\x4b','\x70\x38\x6f\x70\x57\x36\x4b\x67\x57\x36\x37\x64\x4e\x76\x64\x64\x52\x61','\x57\x37\x5a\x63\x52\x43\x6f\x41\x76\x4c\x37\x64\x4f\x38\x6b\x70\x46\x71','\x57\x52\x57\x6b\x57\x34\x33\x64\x53\x65\x4b','\x63\x31\x43\x50','\x57\x51\x79\x42\x57\x34\x4e\x64\x52\x62\x69\x37\x7a\x47','\x57\x37\x5a\x64\x53\x38\x6f\x44\x42\x75\x78\x64\x47\x53\x6f\x36\x7a\x57','\x41\x6d\x6f\x66\x57\x4f\x48\x6c\x68\x61\x37\x63\x51\x71','\x57\x52\x61\x71\x57\x52\x64\x63\x53\x4d\x46\x63\x51\x43\x6b\x5a\x61\x57','\x57\x34\x30\x6e\x57\x51\x6a\x30\x57\x34\x2f\x64\x48\x71','\x57\x52\x6d\x4f\x65\x48\x53','\x73\x4a\x56\x63\x4b\x57','\x57\x51\x33\x64\x50\x76\x5a\x63\x4a\x33\x57','\x57\x36\x64\x64\x55\x6d\x6f\x51\x79\x30\x2f\x64\x48\x6d\x6f\x56\x72\x47','\x57\x52\x4b\x46\x57\x35\x46\x64\x50\x61','\x61\x43\x6b\x75\x67\x63\x57\x74\x6a\x77\x6d\x73\x6f\x32\x56\x64\x51\x4a\x46\x63\x52\x61','\x57\x35\x4a\x63\x4e\x6d\x6f\x38\x43\x78\x6c\x64\x4d\x53\x6b\x35\x71\x47','\x57\x4f\x44\x48\x57\x52\x2f\x64\x50\x6d\x6f\x59\x72\x75\x61\x64','\x79\x48\x46\x63\x54\x43\x6b\x32\x71\x30\x7a\x32\x6f\x47','\x57\x52\x4a\x63\x48\x72\x79\x35\x73\x38\x6b\x52\x57\x35\x46\x63\x4b\x61','\x57\x34\x52\x64\x50\x31\x34\x71\x7a\x43\x6b\x2b','\x57\x34\x4f\x73\x57\x35\x61\x68','\x78\x43\x6b\x58\x57\x51\x4e\x63\x4f\x47\x43','\x72\x43\x6f\x30\x57\x52\x35\x47\x63\x64\x78\x63\x4d\x53\x6f\x48','\x57\x36\x6c\x63\x4d\x43\x6f\x36\x44\x4d\x78\x64\x4b\x43\x6b\x6e\x67\x61','\x43\x33\x6a\x52\x57\x51\x50\x51\x57\x51\x33\x64\x56\x57','\x57\x52\x6c\x63\x49\x38\x6f\x35','\x57\x37\x71\x4a\x57\x37\x47','\x57\x50\x56\x63\x4f\x4c\x50\x4f\x72\x49\x4e\x64\x50\x48\x34','\x57\x37\x5a\x63\x55\x38\x6f\x43\x78\x65\x78\x64\x54\x38\x6b\x72\x45\x57','\x57\x4f\x75\x63\x6e\x73\x5a\x64\x48\x47','\x57\x36\x30\x50\x57\x36\x56\x64\x4f\x73\x53\x38\x71\x71','\x73\x4a\x56\x63\x4b\x38\x6f\x7a\x45\x32\x72\x42\x74\x47','\x66\x49\x46\x64\x56\x75\x46\x63\x55\x71','\x57\x52\x54\x52\x76\x78\x35\x52\x57\x4f\x6e\x52\x57\x36\x43','\x72\x64\x4a\x63\x4b\x38\x6b\x78\x42\x33\x38\x41\x61\x71','\x57\x50\x4e\x64\x47\x4b\x37\x64\x54\x5a\x34\x4d\x57\x34\x50\x45','\x67\x53\x6b\x2b\x57\x52\x44\x74\x57\x4f\x47','\x57\x52\x37\x64\x55\x66\x2f\x63\x4f\x77\x53','\x71\x61\x61\x4c\x77\x71\x33\x63\x49\x43\x6b\x45\x57\x37\x34','\x57\x51\x66\x46\x75\x67\x58\x76\x57\x34\x4a\x63\x51\x38\x6b\x56\x57\x36\x4c\x6a\x57\x4f\x75\x79','\x57\x34\x56\x63\x49\x53\x6b\x64\x42\x31\x56\x63\x4e\x68\x4e\x64\x49\x61','\x61\x6d\x6b\x50\x6c\x57','\x42\x6d\x6f\x62\x57\x4f\x39\x6e\x69\x71','\x57\x34\x52\x64\x50\x30\x30\x62\x43\x43\x6b\x47','\x57\x51\x6c\x63\x48\x71\x79\x4f\x73\x38\x6b\x51\x57\x35\x64\x63\x4d\x57','\x45\x53\x6f\x71\x57\x50\x6a\x62\x6a\x57','\x57\x34\x5a\x64\x48\x66\x5a\x64\x52\x59\x75\x4e\x57\x4f\x54\x4d','\x71\x61\x71\x59\x74\x4a\x46\x63\x4d\x6d\x6b\x7a','\x57\x50\x70\x64\x4a\x38\x6b\x2b','\x57\x50\x4c\x78\x57\x36\x4a\x64\x4c\x75\x4a\x64\x53\x6d\x6b\x4c\x6e\x61','\x79\x4e\x6d\x31\x45\x77\x46\x63\x47\x43\x6f\x35','\x57\x35\x4a\x64\x48\x31\x5a\x64\x53\x4a\x61\x53','\x6b\x59\x6d\x58\x57\x51\x42\x64\x56\x31\x6e\x7a\x57\x52\x69','\x57\x36\x37\x64\x52\x4d\x4e\x63\x4d\x65\x4e\x64\x56\x33\x4b','\x6b\x71\x31\x4d\x57\x36\x4f\x50\x57\x4f\x33\x63\x4c\x4d\x34','\x69\x6d\x6f\x6f\x57\x37\x79\x67\x57\x35\x68\x64\x4e\x66\x78\x64\x50\x71','\x57\x51\x64\x63\x4d\x67\x62\x73','\x57\x4f\x74\x64\x50\x43\x6b\x46\x57\x51\x48\x6b\x57\x52\x43\x41\x57\x52\x43','\x57\x36\x56\x63\x51\x53\x6b\x4a\x74\x33\x56\x63\x56\x66\x4e\x64\x51\x61','\x45\x53\x6b\x66\x57\x50\x74\x63\x49\x74\x33\x63\x4a\x53\x6b\x48\x6f\x47','\x6d\x4a\x4e\x63\x52\x6d\x6f\x73\x72\x72\x48\x37\x75\x61','\x57\x35\x5a\x64\x4d\x4c\x4b','\x57\x50\x78\x64\x4a\x4e\x33\x63\x47\x76\x64\x64\x4e\x32\x4b','\x57\x37\x46\x63\x52\x43\x6f\x79\x76\x4c\x74\x64\x50\x53\x6b\x65','\x69\x74\x34\x54\x57\x34\x2f\x63\x4b\x78\x31\x49\x57\x34\x30','\x57\x36\x37\x63\x49\x4a\x7a\x6c\x78\x38\x6f\x75\x57\x36\x33\x64\x52\x71','\x57\x35\x58\x6c\x57\x36\x4a\x64\x4a\x30\x37\x63\x54\x43\x6b\x30','\x57\x50\x6d\x76\x6c\x4a\x56\x64\x47\x77\x68\x63\x51\x6d\x6b\x71','\x63\x53\x6b\x41\x57\x50\x35\x69\x57\x52\x33\x64\x53\x53\x6f\x38','\x42\x38\x6b\x6e\x57\x50\x70\x63\x48\x4a\x33\x63\x4a\x53\x6b\x49\x6b\x57','\x57\x4f\x35\x68\x6e\x73\x42\x64\x47\x32\x46\x63\x4f\x38\x6f\x43','\x62\x49\x37\x64\x4c\x67\x42\x63\x4b\x6d\x6f\x44\x57\x35\x47\x51','\x57\x36\x64\x63\x4e\x53\x6b\x30\x71\x4b\x30','\x57\x51\x79\x4a\x45\x32\x2f\x64\x51\x31\x74\x63\x49\x6d\x6b\x58','\x6f\x4e\x71\x77\x57\x51\x64\x63\x53\x47','\x57\x37\x50\x62\x57\x35\x56\x64\x54\x74\x30','\x6e\x71\x76\x49\x41\x61','\x57\x36\x70\x63\x51\x38\x6b\x35','\x57\x52\x78\x64\x4e\x6d\x6b\x43\x57\x4f\x50\x38\x57\x4f\x69\x33\x57\x52\x75','\x6b\x53\x6f\x48\x57\x51\x31\x48\x62\x73\x52\x63\x47\x6d\x6f\x58','\x57\x34\x56\x64\x54\x4b\x34\x72\x45\x43\x6b\x2f\x57\x37\x4e\x63\x4b\x57','\x57\x37\x7a\x36\x57\x4f\x44\x43\x75\x68\x33\x64\x4a\x72\x30','\x57\x37\x31\x4c\x57\x35\x4a\x64\x47\x62\x46\x64\x4c\x47','\x42\x6d\x6f\x5a\x57\x4f\x56\x64\x50\x4e\x57\x67\x6e\x30\x61','\x76\x53\x6b\x46\x6c\x58\x46\x63\x4c\x6d\x6b\x33\x7a\x49\x4f','\x44\x43\x6f\x4c\x45\x67\x6a\x62','\x57\x51\x47\x4b\x6f\x38\x6b\x39\x41\x72\x37\x63\x47\x6d\x6f\x65','\x57\x34\x4f\x73\x57\x35\x6e\x6e\x75\x43\x6f\x46\x57\x51\x78\x63\x51\x71','\x74\x38\x6b\x76\x64\x58\x64\x63\x48\x38\x6b\x35\x42\x71','\x6d\x64\x70\x63\x4b\x53\x6f\x6a\x76\x57\x75','\x79\x63\x68\x64\x4f\x68\x68\x64\x52\x4e\x70\x64\x4b\x76\x6d','\x44\x75\x4f\x43\x43\x30\x78\x64\x49\x6d\x6f\x34\x57\x34\x4f','\x74\x6d\x6b\x38\x57\x51\x2f\x63\x52\x48\x52\x63\x54\x53\x6b\x6b\x68\x71','\x57\x35\x38\x6b\x57\x51\x6e\x34\x57\x34\x4e\x64\x48\x47','\x57\x34\x42\x63\x47\x43\x6b\x69\x7a\x75\x4a\x63\x47\x67\x5a\x64\x4e\x47','\x6b\x32\x38\x71\x57\x52\x5a\x63\x53\x72\x33\x64\x4c\x72\x79','\x57\x51\x74\x64\x47\x62\x65\x38\x72\x38\x6b\x31\x57\x34\x68\x63\x4f\x61','\x64\x72\x71\x70\x57\x51\x46\x63\x52\x30\x35\x65\x57\x37\x47','\x57\x52\x56\x64\x48\x53\x6b\x49\x57\x4f\x61\x52\x57\x51\x47\x31\x57\x50\x6d','\x57\x50\x75\x50\x57\x36\x52\x64\x4e\x59\x65\x44\x72\x6d\x6b\x61','\x65\x31\x7a\x33\x68\x31\x74\x64\x4d\x6d\x6f\x6e\x57\x51\x78\x64\x51\x38\x6f\x57\x57\x50\x4a\x63\x53\x43\x6f\x61','\x57\x52\x56\x63\x4a\x78\x7a\x69\x42\x71\x78\x63\x49\x63\x47','\x66\x49\x37\x64\x47\x66\x68\x64\x4b\x6d\x6f\x76\x57\x34\x6d\x55','\x57\x37\x6e\x33\x57\x34\x6c\x64\x49\x72\x33\x64\x47\x73\x5a\x63\x50\x61','\x6e\x73\x68\x64\x55\x32\x5a\x63\x4f\x33\x46\x64\x53\x76\x57','\x57\x52\x37\x63\x4c\x66\x4f\x55\x77\x53\x6b\x52\x57\x34\x68\x63\x50\x71','\x57\x51\x42\x63\x4d\x67\x6e\x6b\x42\x71\x2f\x64\x47\x61','\x57\x51\x74\x64\x52\x43\x6b\x43\x6c\x67\x31\x31\x6b\x71','\x57\x35\x5a\x64\x4f\x30\x53\x62\x44\x6d\x6f\x54\x57\x37\x70\x63\x4d\x71','\x77\x43\x6b\x65\x62\x71','\x6e\x66\x57\x42\x41\x65\x69','\x57\x36\x66\x4c\x57\x50\x62\x72','\x6c\x57\x66\x48\x70\x48\x38\x61\x74\x53\x6b\x52','\x73\x53\x6b\x38\x57\x52\x56\x64\x56\x57','\x57\x52\x54\x43\x57\x50\x33\x63\x4d\x6d\x6b\x34\x78\x31\x58\x6e','\x57\x51\x53\x62\x57\x50\x37\x63\x55\x30\x47','\x65\x43\x6f\x46\x75\x32\x74\x63\x55\x59\x52\x63\x53\x57','\x75\x31\x72\x59\x57\x52\x31\x32','\x6c\x4b\x71\x63\x63\x4d\x72\x55\x76\x77\x57','\x57\x35\x5a\x63\x48\x38\x6f\x2b','\x57\x51\x56\x64\x51\x31\x2f\x63\x56\x78\x57','\x57\x50\x5a\x63\x55\x66\x6a\x49','\x70\x5a\x35\x42\x57\x35\x65\x6e\x57\x51\x2f\x63\x4a\x66\x4b','\x57\x35\x44\x42\x57\x36\x56\x64\x48\x31\x78\x63\x56\x6d\x6b\x58\x6a\x71','\x75\x6d\x6b\x64\x66\x68\x48\x36\x45\x47','\x57\x36\x5a\x64\x53\x38\x6f\x46\x42\x30\x78\x64\x4a\x53\x6f\x58','\x46\x6d\x6f\x2b\x57\x4f\x5a\x64\x56\x4e\x34','\x57\x52\x74\x64\x53\x6d\x6f\x61\x70\x67\x4c\x5a\x6f\x6d\x6b\x39','\x57\x37\x75\x42\x57\x37\x78\x64\x52\x38\x6b\x6e\x57\x52\x58\x79\x73\x71','\x6f\x53\x6b\x4d\x57\x52\x31\x4a\x57\x52\x61','\x43\x4e\x4c\x54\x57\x37\x48\x55\x57\x51\x46\x64\x51\x6d\x6b\x44','\x57\x37\x56\x64\x52\x30\x70\x63\x55\x64\x4e\x64\x50\x31\x5a\x64\x4e\x47','\x71\x43\x6f\x71\x78\x68\x31\x6e\x43\x64\x47\x38','\x57\x4f\x52\x64\x53\x62\x39\x50\x45\x43\x6b\x51\x57\x34\x56\x64\x4e\x47','\x67\x4c\x79\x74\x57\x50\x37\x63\x48\x59\x4a\x64\x55\x62\x43','\x45\x78\x62\x5a\x57\x52\x4c\x55\x57\x51\x4b','\x57\x35\x44\x72\x57\x37\x33\x64\x51\x64\x78\x64\x53\x48\x6c\x63\x4c\x57','\x57\x52\x6d\x42\x57\x35\x46\x64\x50\x71\x65\x35\x44\x38\x6b\x47','\x57\x51\x46\x64\x4c\x53\x6b\x4b\x57\x4f\x7a\x4a\x57\x51\x34\x4f\x57\x4f\x79','\x78\x38\x6f\x32\x57\x52\x43\x63\x41\x72\x70\x63\x54\x38\x6b\x64','\x42\x49\x37\x64\x56\x32\x5a\x64\x4f\x68\x33\x64\x47\x4c\x75','\x57\x51\x75\x74\x57\x36\x70\x64\x52\x57','\x57\x34\x56\x64\x4b\x76\x2f\x64\x54\x5a\x79\x48\x57\x4f\x38','\x57\x35\x42\x64\x4e\x30\x52\x64\x54\x73\x71','\x57\x51\x4a\x64\x4e\x43\x6f\x57\x57\x4f\x6e\x35\x57\x4f\x47\x52\x57\x4f\x69','\x57\x50\x4b\x48\x69\x67\x6e\x63\x57\x36\x46\x64\x56\x57\x71','\x57\x51\x74\x63\x4b\x48\x69\x38\x71\x38\x6b\x41\x57\x34\x56\x63\x51\x71','\x57\x52\x7a\x78\x57\x52\x46\x63\x56\x77\x46\x63\x56\x38\x6b\x33\x65\x57','\x57\x37\x56\x64\x50\x75\x56\x64\x52\x4e\x4a\x64\x4f\x76\x74\x63\x47\x47','\x57\x37\x74\x64\x4b\x4d\x38\x37\x78\x38\x6b\x44\x57\x35\x4e\x63\x55\x71','\x6a\x61\x6d\x55\x57\x37\x33\x63\x50\x57','\x75\x72\x65\x5a\x71\x47\x5a\x63\x4a\x43\x6b\x43\x57\x52\x75','\x6a\x57\x70\x64\x4c\x75\x64\x63\x49\x47','\x57\x52\x4e\x64\x52\x30\x4e\x63\x56\x68\x42\x64\x53\x4c\x42\x63\x47\x71','\x57\x36\x54\x56\x57\x50\x76\x6d\x72\x32\x52\x64\x4e\x59\x71','\x57\x50\x4a\x64\x4c\x77\x5a\x63\x4d\x30\x33\x64\x4d\x77\x6c\x64\x55\x61','\x57\x35\x52\x64\x53\x4b\x53\x62\x44\x6d\x6f\x54\x57\x37\x68\x63\x47\x47','\x6b\x38\x6b\x78\x75\x32\x42\x63\x54\x33\x78\x64\x55\x6d\x6f\x52','\x57\x4f\x65\x7a\x61\x38\x6b\x6c\x76\x63\x56\x63\x4f\x71','\x57\x35\x76\x63\x57\x37\x2f\x64\x52\x64\x52\x64\x51\x58\x6c\x63\x4b\x71','\x57\x34\x53\x6a\x57\x37\x50\x71\x62\x53\x6b\x76\x57\x37\x46\x63\x51\x57','\x57\x52\x4c\x6f\x57\x36\x74\x64\x52\x48\x4f\x72\x46\x62\x4f','\x65\x67\x65\x48\x73\x68\x52\x63\x55\x38\x6b\x78\x57\x50\x75','\x57\x37\x34\x6a\x57\x52\x4e\x63\x51\x4b\x7a\x65\x6d\x30\x79','\x57\x36\x4b\x79\x57\x52\x4e\x63\x55\x32\x66\x74\x70\x47','\x71\x6d\x6f\x41\x62\x32\x44\x4d\x6a\x33\x56\x63\x56\x71','\x45\x77\x4c\x52','\x76\x47\x4f\x73\x78\x58\x64\x63\x47\x38\x6b\x42\x57\x52\x71','\x57\x35\x50\x77\x57\x37\x6c\x64\x4c\x76\x4b','\x78\x53\x6b\x73\x66\x67\x54\x48\x63\x74\x56\x63\x52\x61','\x57\x52\x58\x56\x76\x77\x4c\x32\x57\x50\x6d','\x44\x59\x79\x2f','\x68\x43\x6b\x55\x6b\x6d\x6b\x69\x57\x4f\x38\x52\x57\x51\x79\x65','\x72\x58\x43\x5a\x72\x62\x61','\x74\x71\x43\x52\x74\x47\x68\x63\x4e\x47','\x57\x37\x64\x63\x4e\x6d\x6b\x57','\x6c\x47\x75\x50\x69\x57\x4f\x42\x62\x53\x6b\x4c','\x69\x72\x48\x4d\x57\x37\x6d\x30\x57\x4f\x42\x63\x4a\x4a\x79','\x46\x43\x6b\x58\x6c\x63\x52\x63\x55\x43\x6b\x76\x74\x72\x71','\x63\x31\x43\x52\x57\x4f\x70\x63\x4d\x73\x4a\x64\x55\x71','\x57\x51\x53\x71\x57\x52\x2f\x63\x53\x33\x5a\x63\x54\x53\x6b\x32\x76\x57','\x57\x51\x74\x64\x52\x43\x6b\x42','\x70\x59\x69\x34\x57\x35\x78\x63\x49\x4d\x35\x4e','\x6e\x75\x71\x65\x65\x33\x4b\x5a','\x44\x75\x53\x65\x41\x75\x6c\x63\x4d\x53\x6f\x73\x57\x35\x53','\x6e\x43\x6f\x2b\x57\x36\x53\x67\x57\x36\x37\x64\x47\x66\x4a\x64\x52\x57','\x57\x34\x71\x62\x62\x43\x6f\x63\x73\x63\x68\x63\x53\x43\x6b\x51','\x57\x37\x47\x6e\x57\x52\x4a\x63\x54\x31\x50\x67\x6f\x30\x30','\x57\x4f\x69\x75\x6a\x67\x2f\x64\x55\x31\x64\x63\x49\x38\x6f\x43','\x6a\x6d\x6b\x77\x61\x6d\x6b\x59\x57\x51\x30\x61\x57\x4f\x71\x4d','\x43\x33\x61\x2f\x57\x51\x50\x4d\x57\x52\x4e\x64\x55\x43\x6b\x72','\x57\x35\x2f\x64\x4b\x38\x6f\x48\x77\x4d\x78\x64\x56\x53\x6f\x45\x79\x47','\x57\x37\x58\x2b\x57\x34\x2f\x64\x51\x78\x2f\x63\x4d\x38\x6b\x70\x61\x47','\x57\x35\x39\x7a\x57\x51\x7a\x57\x57\x34\x6c\x64\x47\x77\x79\x64','\x57\x37\x52\x64\x4a\x68\x34\x30\x77\x43\x6b\x73\x57\x35\x46\x63\x53\x47','\x6a\x47\x6e\x52\x70\x71','\x57\x51\x72\x77\x57\x4f\x68\x64\x47\x38\x6b\x33\x76\x62\x6e\x63','\x57\x35\x34\x35\x6b\x47\x47\x50\x57\x51\x4e\x63\x50\x6d\x6b\x42','\x57\x35\x6e\x68\x57\x52\x35\x4b\x74\x71','\x65\x58\x61\x66\x57\x35\x78\x63\x51\x31\x6e\x61\x57\x37\x43','\x65\x38\x6f\x2b\x57\x34\x47\x58\x57\x35\x64\x64\x4f\x62\x68\x63\x52\x57','\x57\x52\x2f\x63\x4b\x57\x6d\x55\x64\x53\x6b\x34\x57\x35\x42\x63\x4f\x71','\x57\x52\x47\x42\x57\x37\x78\x64\x54\x6d\x6b\x7a\x57\x51\x58\x30\x74\x47','\x72\x4e\x2f\x64\x50\x72\x72\x64\x66\x43\x6f\x6a\x66\x77\x37\x64\x4d\x30\x6e\x53','\x73\x43\x6b\x4a\x6c\x38\x6b\x71\x57\x34\x71\x30\x57\x51\x4b\x72','\x6e\x38\x6f\x73\x57\x37\x48\x64\x57\x36\x4e\x64\x47\x76\x33\x63\x4f\x61','\x57\x50\x65\x70\x57\x36\x65','\x6a\x63\x57\x54\x57\x36\x53\x55\x57\x37\x4a\x63\x55\x43\x6f\x76','\x57\x52\x50\x68\x57\x4f\x46\x64\x48\x38\x6b\x48\x66\x47','\x57\x36\x6d\x6e\x57\x52\x37\x63\x52\x4b\x43\x42\x46\x71\x71','\x6e\x73\x4a\x63\x53\x31\x61\x46\x72\x38\x6f\x4b\x6d\x61','\x77\x53\x6f\x61\x57\x52\x42\x64\x4e\x76\x71\x31\x64\x76\x4f','\x65\x53\x6f\x30\x7a\x4c\x37\x63\x4a\x62\x46\x64\x47\x38\x6f\x68','\x64\x30\x4f\x36\x57\x35\x68\x63\x50\x72\x2f\x64\x48\x47','\x57\x52\x44\x44\x57\x4f\x46\x64\x48\x43\x6b\x37\x73\x75\x61','\x57\x4f\x35\x33\x57\x35\x5a\x64\x48\x77\x33\x63\x55\x43\x6b\x45','\x42\x38\x6b\x62\x57\x4f\x6c\x63\x4a\x64\x68\x63\x49\x61','\x63\x5a\x4a\x64\x55\x76\x46\x63\x4a\x43\x6f\x72\x57\x34\x57','\x66\x53\x6f\x6a\x73\x32\x62\x63\x43\x5a\x61\x55','\x45\x33\x6e\x37\x57\x52\x31\x56','\x61\x59\x2f\x64\x4d\x76\x78\x63\x49\x38\x6f\x7a\x57\x34\x6d\x55','\x57\x52\x44\x36\x68\x68\x39\x57\x57\x50\x6a\x4c\x57\x51\x79','\x77\x53\x6b\x4d\x57\x50\x5a\x63\x4a\x4c\x74\x63\x4f\x43\x6b\x63\x64\x57','\x57\x52\x58\x47\x43\x65\x75\x4b\x57\x50\x62\x48\x57\x52\x6d','\x6a\x73\x74\x63\x48\x43\x6f\x43\x72\x48\x48\x61\x46\x71','\x79\x38\x6f\x6b\x57\x4f\x39\x6c\x6f\x58\x6c\x63\x50\x6d\x6f\x70','\x75\x38\x6f\x75\x78\x4e\x48\x6b\x44\x64\x61\x55','\x57\x37\x53\x44\x57\x35\x78\x64\x51\x72\x79\x32\x44\x38\x6f\x4b','\x57\x34\x34\x56\x57\x4f\x78\x63\x4b\x33\x76\x58\x64\x77\x4f','\x78\x38\x6f\x62\x78\x77\x44\x63\x43\x64\x71','\x57\x51\x43\x7a\x57\x52\x64\x63\x56\x4d\x6c\x63\x54\x53\x6b\x32','\x6b\x72\x35\x51\x46\x58\x71\x41\x64\x6d\x6b\x51','\x57\x34\x57\x79\x57\x51\x72\x2b\x57\x35\x57','\x69\x66\x75\x63\x67\x78\x38\x44\x66\x5a\x6d','\x57\x37\x6d\x51\x57\x37\x54\x47\x70\x53\x6b\x47\x57\x34\x64\x63\x50\x47','\x63\x61\x6c\x63\x51\x6d\x6f\x56\x46\x73\x31\x61\x75\x61','\x6d\x49\x2f\x63\x4b\x6d\x6f\x79','\x73\x53\x6b\x79\x65\x67\x66\x51\x42\x4a\x78\x63\x53\x57','\x57\x36\x68\x64\x54\x38\x6f\x63\x46\x47','\x79\x32\x58\x53\x57\x51\x58\x58\x57\x51\x33\x64\x52\x43\x6b\x76','\x75\x72\x65\x5a\x74\x47\x70\x63\x48\x57','\x57\x52\x65\x71\x57\x34\x33\x64\x53\x48\x4f\x39\x43\x61','\x64\x38\x6b\x45\x57\x50\x58\x6b','\x57\x51\x71\x46\x57\x34\x52\x64\x53\x57\x71\x33\x43\x43\x6b\x54','\x73\x6d\x6f\x6c\x57\x50\x39\x78','\x68\x5a\x62\x72\x62\x64\x79\x32\x6e\x38\x6b\x6c','\x57\x4f\x6d\x47\x57\x4f\x6c\x63\x47\x30\x52\x63\x4c\x53\x6b\x75\x6e\x47','\x57\x37\x6c\x63\x48\x53\x6f\x4c\x57\x35\x79\x5a\x57\x51\x6d\x73\x57\x4f\x6c\x64\x50\x53\x6b\x72\x57\x4f\x38','\x57\x37\x4f\x57\x57\x36\x58\x70\x69\x57','\x57\x51\x58\x38\x57\x34\x75\x69\x76\x68\x68\x64\x4a\x76\x61','\x62\x33\x4b\x50\x6f\x30\x43\x44\x6a\x71\x47','\x68\x49\x64\x63\x53\x4b\x30\x66\x75\x6d\x6f\x63\x65\x71','\x57\x36\x37\x64\x50\x43\x6f\x6b','\x57\x4f\x65\x4b\x57\x4f\x6c\x63\x4d\x4c\x71','\x63\x53\x6b\x6e\x57\x4f\x66\x77\x57\x35\x42\x64\x54\x43\x6f\x34\x61\x57','\x69\x31\x34\x61','\x57\x35\x2f\x63\x4c\x53\x6b\x42\x44\x63\x4e\x63\x55\x4c\x52\x63\x4f\x71','\x57\x4f\x7a\x6d\x43\x66\x39\x62\x57\x52\x39\x76\x57\x50\x75','\x77\x53\x6b\x77\x65\x32\x31\x43\x6d\x4a\x4f','\x73\x49\x52\x63\x4d\x43\x6b\x6c\x45\x47','\x63\x77\x61\x5a\x6e\x66\x79\x44\x6a\x71\x69','\x70\x31\x38\x53\x57\x50\x42\x63\x47\x61','\x75\x38\x6f\x41\x57\x52\x4a\x64\x4e\x76\x71\x36\x65\x66\x71','\x64\x75\x53\x36\x57\x50\x64\x63\x48\x63\x4a\x64\x49\x74\x47','\x57\x50\x54\x62\x57\x51\x78\x64\x4e\x43\x6b\x38','\x6e\x47\x74\x63\x49\x67\x61\x58\x44\x38\x6f\x6b\x70\x71','\x57\x37\x6e\x75\x57\x51\x56\x63\x52\x4c\x30\x6d\x6f\x75\x34','\x68\x62\x34\x7a\x57\x37\x6d','\x45\x6d\x6f\x62\x57\x4f\x50\x42\x69\x61\x37\x63\x4f\x6d\x6f\x68','\x72\x4e\x2f\x64\x52\x58\x7a\x69\x65\x6d\x6b\x32\x76\x31\x64\x64\x56\x78\x7a\x6d\x42\x38\x6f\x58','\x75\x6d\x6b\x46\x66\x47\x42\x63\x48\x43\x6b\x51','\x57\x50\x69\x67\x6f\x78\x35\x4e','\x61\x5a\x4a\x64\x4e\x71\x78\x63\x51\x53\x6f\x49\x57\x37\x4c\x52','\x71\x49\x46\x63\x4d\x61','\x71\x58\x65\x4f\x72\x61\x57','\x57\x51\x66\x68\x57\x50\x6c\x64\x48\x43\x6b\x4d\x78\x32\x72\x6b','\x57\x52\x48\x39\x76\x61','\x57\x51\x6c\x63\x48\x71\x43\x58\x74\x38\x6b\x36\x57\x34\x65','\x57\x4f\x6d\x76\x57\x52\x37\x63\x52\x4e\x52\x63\x4c\x53\x6b\x47\x62\x71','\x6c\x31\x75\x79\x64\x47','\x57\x52\x53\x43\x57\x35\x70\x64\x50\x72\x61\x53','\x65\x43\x6b\x72\x57\x4f\x4b\x6b\x57\x37\x57','\x57\x4f\x5a\x63\x50\x66\x69\x51\x45\x38\x6b\x56\x57\x37\x33\x63\x50\x57','\x64\x53\x6b\x41\x57\x50\x58\x71\x57\x52\x4e\x64\x51\x71','\x57\x34\x4f\x51\x57\x50\x58\x43\x76\x4d\x4a\x64\x4e\x30\x4f','\x57\x52\x42\x63\x48\x43\x6f\x56','\x76\x47\x30\x5a\x72\x62\x42\x63\x4e\x53\x6b\x7a\x57\x52\x4f','\x57\x36\x56\x64\x53\x38\x6f\x44\x6f\x30\x68\x64\x4a\x53\x6f\x37\x76\x57','\x69\x4c\x38\x67\x44\x61','\x67\x63\x2f\x63\x56\x75\x43\x74\x75\x61','\x57\x50\x37\x64\x4e\x67\x6c\x63\x47\x31\x4a\x64\x47\x77\x6c\x64\x52\x47','\x66\x43\x6f\x2b\x57\x35\x57\x32\x57\x34\x4a\x64\x55\x32\x37\x64\x4c\x61','\x57\x34\x69\x4d\x57\x4f\x68\x63\x4d\x32\x30','\x67\x58\x31\x47\x57\x37\x71\x4a\x57\x4f\x33\x63\x55\x4d\x57','\x57\x51\x56\x63\x47\x53\x6f\x5a\x63\x6d\x6b\x30\x57\x36\x31\x78\x57\x36\x38','\x57\x51\x62\x62\x57\x50\x5a\x64\x48\x71','\x57\x52\x4e\x63\x4a\x58\x4c\x59\x72\x6d\x6b\x51\x57\x34\x56\x63\x51\x47','\x57\x36\x4e\x64\x4e\x4e\x75\x4f\x46\x57','\x69\x65\x4f\x72\x41\x62\x42\x64\x48\x38\x6b\x78\x57\x37\x53','\x57\x52\x4e\x64\x4e\x77\x44\x70\x79\x71\x4e\x64\x47\x77\x4f','\x57\x37\x5a\x64\x55\x53\x6f\x67\x45\x65\x4b','\x57\x37\x58\x2b\x57\x51\x46\x63\x48\x4e\x4e\x63\x48\x53\x6b\x46\x63\x47','\x57\x37\x69\x69\x62\x49\x47\x6a\x57\x50\x52\x63\x48\x47','\x57\x50\x61\x2f\x57\x34\x2f\x64\x4d\x43\x6b\x54\x57\x4f\x54\x38\x79\x47','\x57\x37\x64\x63\x4c\x59\x66\x73\x76\x43\x6f\x44','\x44\x68\x6e\x37\x57\x51\x65','\x68\x49\x70\x63\x54\x75\x30\x66\x73\x53\x6f\x52\x6b\x47','\x57\x36\x71\x42\x57\x51\x64\x63\x55\x31\x44\x76','\x57\x51\x4f\x37\x67\x65\x44\x35\x57\x34\x56\x64\x4c\x63\x4f','\x57\x36\x42\x64\x55\x38\x6f\x6b\x44\x66\x4e\x64\x4c\x43\x6f\x73\x71\x71','\x6e\x65\x53\x61\x43\x4c\x4e\x63\x4d\x53\x6f\x45\x57\x34\x61','\x67\x53\x6b\x56\x6a\x53\x6b\x69\x57\x4f\x75\x55','\x75\x53\x6b\x4e\x57\x52\x4e\x63\x4f\x48\x4a\x63\x4d\x6d\x6b\x68','\x57\x51\x69\x54\x62\x74\x56\x64\x47\x71','\x57\x51\x53\x77\x57\x51\x5a\x64\x56\x4c\x76\x72\x6f\x57\x75','\x57\x35\x31\x75\x57\x51\x7a\x30\x57\x35\x5a\x64\x4d\x32\x54\x6d','\x68\x43\x6b\x4a\x6f\x43\x6b\x73\x57\x34\x53\x4e\x57\x52\x34\x67','\x6b\x32\x38\x71\x57\x52\x33\x63\x50\x47\x4a\x64\x4d\x61\x53','\x57\x35\x58\x42\x57\x37\x4e\x64\x47\x30\x37\x63\x4f\x57','\x57\x36\x64\x64\x4f\x38\x6f\x42','\x77\x73\x2f\x63\x4c\x38\x6b\x78\x7a\x32\x58\x77\x67\x47','\x6a\x53\x6b\x6c\x65\x43\x6b\x4e\x57\x52\x61\x6c\x57\x4f\x4f\x56','\x42\x53\x6b\x7a\x63\x61\x42\x63\x51\x53\x6b\x73\x72\x77\x30','\x57\x51\x69\x42\x57\x35\x78\x64\x4f\x72\x30\x2f\x44\x53\x6b\x4f','\x69\x78\x69\x41\x57\x52\x38','\x57\x4f\x52\x63\x4f\x57\x4c\x43\x69\x6d\x6f\x2f\x57\x51\x37\x63\x56\x38\x6b\x69\x67\x75\x6d\x54\x57\x52\x34','\x57\x4f\x37\x64\x47\x38\x6b\x31\x57\x4f\x54\x6b\x57\x51\x35\x4c\x57\x50\x71','\x61\x53\x6b\x6b\x57\x50\x58\x62\x57\x37\x5a\x64\x4e\x53\x6f\x50\x65\x47','\x57\x37\x6e\x33\x57\x35\x56\x63\x49\x58\x56\x64\x4b\x49\x4a\x63\x56\x47','\x61\x48\x42\x64\x4e\x65\x6c\x63\x4f\x47','\x6b\x73\x64\x64\x4f\x73\x52\x63\x50\x67\x68\x64\x4e\x76\x34','\x70\x66\x61\x74\x6e\x62\x79','\x64\x43\x6f\x71\x6d\x58\x70\x63\x47\x38\x6b\x57\x77\x49\x69','\x57\x50\x43\x72\x6d\x4d\x6e\x43','\x6d\x63\x42\x63\x52\x32\x37\x63\x51\x32\x56\x63\x4b\x4b\x69','\x62\x66\x75\x73\x63\x68\x47\x33\x65\x77\x6d','\x75\x53\x6f\x78\x57\x51\x4e\x64\x4a\x31\x4f\x31\x66\x31\x53','\x57\x35\x5a\x64\x4c\x75\x6c\x64\x4e\x49\x75\x57\x57\x4f\x76\x35','\x74\x43\x6b\x68\x65\x33\x58\x37\x6a\x74\x46\x63\x53\x71','\x57\x34\x34\x56\x57\x50\x64\x63\x52\x4d\x79','\x57\x52\x53\x54\x65\x31\x4c\x4c\x57\x34\x42\x64\x4d\x4b\x75','\x57\x51\x42\x63\x4a\x58\x57\x34\x79\x38\x6b\x32\x57\x34\x64\x63\x4f\x71','\x57\x4f\x75\x42\x65\x57','\x43\x43\x6f\x33\x57\x50\x74\x64\x54\x71','\x57\x52\x78\x63\x4a\x4d\x62\x70\x41\x57\x69','\x57\x52\x52\x64\x50\x57\x33\x63\x4d\x30\x56\x64\x4e\x71','\x64\x71\x75\x43\x57\x37\x4a\x63\x51\x30\x39\x38\x57\x37\x53','\x57\x52\x50\x68\x57\x4f\x46\x64\x48\x38\x6b\x48\x66\x48\x57\x6d','\x57\x35\x68\x63\x4e\x43\x6f\x38\x41\x77\x37\x63\x4b\x53\x6f\x2f\x66\x57','\x57\x34\x33\x64\x4b\x76\x5a\x64\x52\x57','\x57\x51\x4a\x64\x52\x6d\x6b\x64','\x57\x35\x5a\x64\x4d\x31\x52\x64\x52\x58\x69\x36\x57\x4f\x4c\x55','\x57\x35\x75\x34\x57\x35\x72\x6a\x71\x78\x56\x64\x49\x71\x61','\x43\x38\x6b\x4a\x6b\x4a\x70\x63\x4a\x71','\x57\x52\x65\x44\x57\x34\x30','\x57\x50\x79\x42\x57\x35\x4a\x64\x53\x48\x79\x51\x69\x57','\x66\x62\x33\x63\x4d\x68\x4f\x6b','\x61\x32\x79\x35\x6e\x4b\x65\x72\x6b\x62\x57','\x70\x38\x6f\x73\x57\x35\x57\x72\x57\x36\x37\x64\x4b\x4b\x47','\x77\x43\x6b\x54\x57\x51\x4e\x63\x50\x62\x57','\x73\x53\x6b\x6a\x73\x78\x54\x6d\x43\x68\x57\x37','\x57\x35\x66\x67\x57\x51\x43','\x57\x35\x6c\x63\x55\x57\x35\x31\x43\x43\x6f\x4e\x57\x34\x65','\x6c\x72\x72\x57\x6f\x62\x65\x6e','\x6a\x74\x37\x64\x55\x4d\x64\x63\x56\x77\x42\x63\x4e\x57','\x69\x38\x6f\x72\x57\x36\x34\x78\x57\x36\x37\x64\x4c\x4c\x64\x64\x52\x71','\x62\x71\x56\x64\x4e\x75\x52\x63\x4a\x76\x4e\x64\x52\x78\x75','\x57\x52\x68\x63\x49\x33\x7a\x69\x45\x66\x42\x63\x48\x71','\x77\x38\x6f\x6c\x71\x64\x54\x6a\x7a\x64\x34\x30','\x57\x52\x79\x6f\x57\x51\x68\x63\x55\x71','\x57\x52\x42\x63\x51\x4c\x2f\x63\x51\x32\x4a\x64\x50\x66\x4a\x64\x4e\x57','\x70\x43\x6b\x50\x57\x51\x66\x50\x57\x50\x33\x64\x47\x43\x6f\x67\x6a\x57','\x57\x50\x78\x63\x4e\x33\x58\x75\x45\x63\x4e\x64\x4c\x5a\x47','\x57\x35\x38\x6a\x57\x51\x62\x39\x57\x34\x46\x64\x49\x32\x6e\x78','\x57\x37\x66\x34\x57\x50\x54\x41','\x57\x36\x4e\x63\x51\x38\x6b\x35\x75\x32\x5a\x63\x56\x76\x33\x63\x52\x61','\x57\x52\x4b\x63\x57\x36\x74\x64\x51\x38\x6b\x2f\x57\x51\x58\x79\x73\x71','\x57\x35\x78\x63\x52\x72\x54\x52\x46\x53\x6f\x4c\x57\x34\x4e\x64\x49\x57','\x57\x4f\x64\x64\x55\x53\x6b\x70\x57\x51\x44\x6b\x57\x52\x71\x61\x57\x51\x4b','\x57\x4f\x53\x63\x69\x63\x56\x64\x49\x33\x64\x63\x54\x61','\x57\x4f\x56\x64\x4a\x32\x70\x63\x4a\x31\x64\x64\x4a\x4e\x37\x64\x4f\x57','\x57\x4f\x78\x63\x53\x4a\x54\x58\x64\x53\x6b\x43\x57\x37\x6c\x63\x49\x57','\x57\x37\x64\x64\x48\x43\x6b\x52\x73\x43\x6b\x48\x57\x36\x4c\x73\x57\x51\x47','\x69\x71\x66\x30\x70\x62\x43\x6b\x61\x53\x6b\x57','\x67\x71\x72\x37\x57\x36\x38\x50','\x6b\x65\x72\x42\x63\x77\x6d\x4d\x68\x59\x69','\x57\x35\x5a\x63\x4d\x38\x6f\x36\x44\x4d\x38','\x57\x34\x30\x75\x57\x35\x4c\x6e','\x57\x34\x61\x4b\x70\x72\x65\x4a\x57\x51\x61','\x57\x52\x30\x42\x57\x35\x46\x64\x54\x61','\x57\x51\x44\x61\x57\x50\x42\x64\x48\x43\x6b\x38\x74\x76\x35\x67','\x65\x38\x6f\x33\x57\x35\x69\x56\x57\x34\x52\x64\x54\x4d\x70\x64\x4e\x57','\x57\x4f\x70\x63\x50\x73\x47\x69\x46\x6d\x6b\x76','\x57\x35\x50\x46\x57\x36\x33\x64\x4b\x4c\x78\x63\x56\x38\x6b\x2b','\x7a\x71\x5a\x63\x50\x53\x6b\x32\x72\x31\x48\x4a','\x70\x68\x57\x45\x57\x52\x5a\x63\x52\x58\x4a\x64\x4d\x62\x47','\x65\x57\x44\x36','\x57\x36\x79\x41\x57\x52\x74\x63\x51\x67\x2f\x63\x54\x38\x6b\x5a\x61\x57','\x57\x50\x47\x42\x6d\x4e\x72\x46\x57\x37\x46\x64\x56\x74\x4b','\x57\x35\x4a\x63\x4d\x53\x6f\x37\x43\x68\x52\x64\x48\x47','\x57\x52\x4e\x63\x52\x53\x6b\x6d\x6b\x77\x65\x54\x6a\x38\x6f\x31','\x57\x37\x34\x79\x57\x51\x44\x49\x57\x4f\x70\x64\x4d\x32\x7a\x69','\x44\x53\x6f\x34\x57\x50\x52\x64\x56\x67\x61\x62\x6e\x32\x79','\x63\x43\x6f\x65\x57\x36\x38\x72\x57\x37\x70\x64\x47\x71','\x57\x36\x7a\x49\x57\x34\x52\x64\x4b\x76\x56\x64\x48\x5a\x56\x63\x54\x71','\x57\x4f\x6c\x64\x4a\x6d\x6b\x47\x63\x75\x4c\x75\x62\x43\x6f\x73','\x68\x38\x6b\x2b\x57\x52\x5a\x63\x51\x58\x33\x63\x54\x43\x6f\x64\x6c\x47','\x57\x51\x64\x64\x48\x38\x6b\x35\x57\x4f\x44\x4e\x57\x4f\x6a\x4c\x57\x50\x34','\x75\x6d\x6b\x34\x57\x52\x4a\x63\x51\x72\x78\x63\x55\x6d\x6f\x6e\x67\x61','\x6b\x38\x6b\x50\x6a\x43\x6b\x46','\x57\x37\x53\x56\x57\x50\x39\x43\x57\x36\x2f\x64\x55\x66\x31\x53','\x57\x35\x52\x64\x4f\x76\x4f\x66\x7a\x6d\x6b\x4f\x57\x35\x78\x63\x4d\x71','\x6c\x47\x72\x50\x6d\x48\x53\x42','\x57\x4f\x30\x66\x65\x38\x6b\x6e\x75\x5a\x52\x63\x49\x6d\x6f\x35','\x57\x51\x38\x63\x57\x51\x6c\x63\x51\x63\x37\x63\x53\x43\x6b\x33\x76\x57','\x7a\x38\x6b\x4d\x6d\x59\x2f\x63\x53\x6d\x6b\x42\x77\x48\x69','\x57\x50\x58\x79\x46\x4b\x66\x66\x57\x52\x62\x46\x57\x4f\x75','\x57\x52\x57\x7a\x57\x37\x74\x64\x56\x53\x6b\x61\x57\x4f\x58\x71\x75\x61','\x57\x50\x64\x63\x55\x53\x6f\x65\x6b\x43\x6b\x62\x57\x35\x62\x4b\x57\x34\x71','\x57\x36\x34\x6c\x57\x52\x4a\x63\x53\x75\x79','\x57\x37\x56\x64\x53\x38\x6f\x78\x42\x57','\x6a\x49\x52\x64\x55\x32\x42\x63\x50\x47','\x57\x34\x2f\x63\x52\x48\x54\x33\x43\x43\x6f\x54','\x57\x35\x50\x67\x57\x34\x7a\x6e\x68\x53\x6b\x69\x57\x37\x5a\x64\x49\x61','\x57\x4f\x5a\x64\x4b\x67\x56\x64\x4a\x71\x43\x53\x57\x51\x34','\x57\x4f\x78\x64\x53\x53\x6f\x6f\x42\x30\x33\x63\x4d\x38\x6b\x2f','\x57\x4f\x74\x64\x50\x43\x6b\x46\x57\x51\x4c\x44\x57\x51\x69\x78\x57\x51\x4b','\x63\x43\x6f\x47\x57\x34\x30\x51\x57\x34\x70\x64\x55\x68\x74\x64\x4d\x71','\x57\x37\x4a\x64\x50\x6d\x6b\x63\x57\x4f\x72\x74\x57\x4f\x6d\x68','\x6a\x76\x57\x7a\x63\x78\x69','\x73\x53\x6b\x65\x63\x62\x70\x64\x4e\x6d\x6f\x58\x6a\x33\x57','\x57\x37\x6c\x64\x4c\x4e\x65','\x72\x63\x78\x64\x4d\x43\x6b\x70\x70\x5a\x7a\x73\x61\x61','\x57\x36\x43\x43\x57\x4f\x2f\x63\x50\x4c\x44\x65\x69\x4c\x38','\x77\x58\x68\x63\x4d\x53\x6b\x4a\x76\x57','\x67\x61\x6d\x73\x57\x36\x43','\x57\x34\x52\x64\x47\x6d\x6f\x47\x76\x4d\x33\x64\x53\x43\x6f\x61\x46\x71','\x66\x61\x4c\x35\x57\x37\x4b','\x63\x74\x52\x63\x4a\x6d\x6f\x43\x78\x58\x57\x50\x43\x71','\x57\x36\x5a\x63\x51\x6d\x6b\x34\x73\x68\x53','\x57\x36\x6a\x36\x57\x4f\x72\x65\x73\x33\x56\x64\x4a\x71\x71','\x62\x5a\x4e\x64\x49\x4b\x52\x63\x4a\x71','\x6f\x61\x31\x31\x57\x36\x34\x50\x57\x4f\x33\x64\x53\x57','\x78\x53\x6f\x6e\x57\x50\x7a\x6c\x6a\x47\x4e\x63\x53\x43\x6f\x4d','\x57\x52\x6d\x74\x57\x4f\x68\x64\x4b\x53\x6b\x4b\x73\x75\x66\x71','\x57\x37\x65\x7a\x63\x5a\x75\x69','\x57\x35\x43\x78\x57\x52\x6a\x2b\x57\x35\x56\x64\x48\x4d\x7a\x52','\x74\x6d\x6b\x73\x67\x68\x57\x4d\x6a\x73\x64\x63\x55\x71','\x57\x51\x7a\x42\x57\x50\x52\x64\x4d\x43\x6b\x35\x72\x76\x31\x65','\x76\x6d\x6b\x72\x65\x61\x52\x63\x47\x53\x6b\x2f\x46\x63\x71','\x6d\x38\x6f\x61\x57\x36\x30\x6b\x57\x36\x2f\x63\x4e\x76\x6c\x64\x52\x57','\x57\x52\x65\x64\x57\x52\x64\x63\x51\x68\x56\x63\x4f\x61','\x57\x35\x4f\x68\x57\x35\x53','\x57\x35\x68\x64\x4b\x71\x2f\x64\x56\x5a\x69\x59\x57\x50\x48\x55','\x61\x49\x61\x78\x7a\x63\x37\x63\x56\x6d\x6b\x57\x57\x4f\x65','\x69\x59\x74\x63\x4b\x53\x6f\x73\x71\x61','\x57\x4f\x30\x6e\x67\x6d\x6b\x77','\x7a\x53\x6f\x6e\x71\x33\x66\x6d\x79\x49\x75\x46','\x57\x36\x78\x64\x4a\x49\x75\x73\x6f\x4c\x37\x63\x4e\x74\x5a\x63\x47\x4b\x75\x46\x68\x43\x6f\x41','\x57\x34\x52\x64\x54\x4c\x65\x61','\x57\x4f\x7a\x68\x6b\x74\x56\x64\x4d\x4e\x6c\x64\x52\x38\x6b\x70','\x6e\x74\x56\x64\x51\x74\x30','\x57\x50\x30\x46\x57\x36\x74\x64\x56\x53\x6b\x47\x57\x50\x72\x30\x68\x71','\x57\x51\x46\x64\x48\x38\x6f\x4d\x63\x6d\x6b\x56\x57\x37\x34\x77\x57\x37\x6d','\x6d\x73\x65\x34\x57\x34\x74\x63\x4e\x4e\x76\x30\x57\x35\x65','\x61\x65\x31\x59\x57\x4f\x6c\x63\x48\x64\x2f\x64\x52\x5a\x75','\x57\x37\x75\x64\x66\x61','\x66\x5a\x56\x64\x49\x31\x68\x63\x4a\x43\x6f\x76\x57\x35\x71\x4d','\x64\x43\x6b\x70\x57\x50\x31\x71\x57\x51\x37\x64\x54\x6d\x6f\x34\x67\x47','\x73\x38\x6b\x64\x61\x78\x50\x39\x6d\x57\x68\x63\x54\x71','\x7a\x77\x48\x54\x57\x52\x31\x49\x57\x51\x75','\x74\x6d\x6b\x46\x65\x4b\x37\x63\x51\x43\x6b\x55\x42\x73\x6d','\x43\x38\x6f\x6f\x77\x33\x56\x63\x55\x5a\x5a\x63\x53\x38\x6f\x48','\x68\x43\x6f\x73\x68\x5a\x53','\x64\x30\x30\x32\x57\x50\x37\x63\x4e\x47','\x44\x59\x4b\x76\x44\x64\x64\x63\x52\x38\x6b\x59\x57\x50\x4f','\x72\x73\x4e\x63\x4d\x38\x6b\x43','\x57\x52\x46\x63\x4b\x53\x6f\x55\x68\x38\x6b\x78','\x62\x66\x75\x78\x63\x68\x69\x4d\x77\x47','\x57\x52\x4e\x63\x4a\x48\x75\x59\x77\x38\x6b\x33\x57\x34\x64\x63\x4a\x61','\x57\x35\x68\x64\x4b\x75\x37\x64\x56\x5a\x69\x57\x57\x50\x4c\x46','\x57\x37\x65\x44\x65\x4a\x79\x70\x57\x50\x52\x63\x4a\x6d\x6b\x53','\x44\x53\x6f\x53\x79\x4b\x31\x78'];_0x1a71=function(){return _0x36cbaf;};return _0x1a71();}function bedrockException(_0x3f95f6){const _0x2cc58e=_0x143e12;return _0x3f95f6[_0x2cc58e(0x24d,'\x4d\x5e\x62\x4b')+_0x2cc58e(0x4aa,'\x5e\x75\x28\x64')+_0x2cc58e(0x2f5,'\x6a\x5a\x49\x25')]??_0x3f95f6[_0x2cc58e(0x3b1,'\x33\x57\x6b\x26')+_0x2cc58e(0x439,'\x48\x55\x29\x45')+_0x2cc58e(0x3a6,'\x49\x34\x5d\x5e')+'\x6e']??_0x3f95f6[_0x2cc58e(0x292,'\x5a\x64\x24\x78')+'\x6e\x67\x45\x78\x63\x65\x70\x74'+_0x2cc58e(0x2f8,'\x5e\x75\x28\x64')]??_0x3f95f6[_0x2cc58e(0x418,'\x5d\x34\x55\x42')+'\x6f\x6e\x45\x78\x63\x65\x70\x74'+_0x2cc58e(0x407,'\x73\x41\x34\x32')]??_0x3f95f6[_0x2cc58e(0x463,'\x5a\x6b\x73\x4b')+_0x2cc58e(0x2cb,'\x31\x24\x47\x24')+_0x2cc58e(0x4a1,'\x4d\x5e\x62\x4b')]??_0x3f95f6[_0x2cc58e(0x479,'\x25\x44\x61\x67')+_0x2cc58e(0x1e7,'\x6a\x5a\x49\x25')+_0x2cc58e(0x466,'\x69\x69\x59\x44')+_0x2cc58e(0x49d,'\x54\x68\x44\x24')]??null;}function bedrockChunkFrame(_0x3f7403){const _0x570505=_0x143e12,_0x39e787=textFromBytes(_0x3f7403);if(!_0x39e787)return'';try{const _0x5d407e=JSON[_0x570505(0x1e4,'\x63\x4f\x70\x31')](_0x39e787);if(_0x5d407e&&typeof _0x5d407e===_0x570505(0x28d,'\x4c\x69\x6c\x48')&&!Array[_0x570505(0x2d2,'\x75\x42\x5b\x58')](_0x5d407e)){const _0x4ff5c2=_0x5d407e['\x74\x79\x70\x65'];if(typeof _0x4ff5c2===_0x570505(0x3bd,'\x6c\x32\x34\x38')&&/^[A-Za-z0-9_.:-]+$/[_0x570505(0x2c9,'\x31\x24\x47\x24')](_0x4ff5c2))return _0x570505(0x2db,'\x24\x6f\x57\x68')+_0x4ff5c2+_0x570505(0x315,'\x25\x44\x61\x67')+_0x39e787+'\x0a\x0a';}}catch{}return'\x64\x61\x74\x61\x3a\x20'+_0x39e787+'\x0a\x0a';}function bedrockStreamToSse(_0x2d88b7){const _0x423479=_0x143e12,_0x4a5d05=_0x2d88b7&&typeof _0x2d88b7[Symbol[_0x423479(0x434,'\x6a\x5a\x49\x25')+_0x423479(0x254,'\x33\x57\x6b\x26')]]===_0x423479(0x443,'\x4f\x68\x67\x73')?_0x2d88b7:null;return new ReadableStream({async '\x73\x74\x61\x72\x74'(_0xc9b804){const _0x51c750=_0x423479;if(!_0x4a5d05){if(_0x51c750(0x47f,'\x63\x4f\x70\x31')===_0x51c750(0x46b,'\x25\x44\x61\x67'))return _0x5a587e[_0x51c750(0x474,'\x75\x42\x5b\x58')+'\x53\x65\x72\x76\x65\x72\x45\x78'+_0x51c750(0x1e9,'\x25\x44\x61\x67')]??_0x3a5970[_0x51c750(0x3ee,'\x69\x7a\x52\x26')+_0x51c750(0x2bd,'\x31\x24\x47\x24')+_0x51c750(0x458,'\x71\x4f\x47\x73')+'\x6e']??_0x5f21ae[_0x51c750(0x28a,'\x56\x4a\x4e\x78')+_0x51c750(0x37f,'\x48\x58\x4f\x48')+_0x51c750(0x27d,'\x5d\x34\x55\x42')]??_0x260e43[_0x51c750(0x32d,'\x69\x7a\x52\x26')+_0x51c750(0x480,'\x25\x44\x61\x67')+_0x51c750(0x3cc,'\x71\x4f\x47\x73')]??_0x2d9f51[_0x51c750(0x30d,'\x30\x63\x34\x54')+_0x51c750(0x3aa,'\x75\x42\x5b\x58')+'\x70\x74\x69\x6f\x6e']??_0x1659c7[_0x51c750(0x1bf,'\x6b\x56\x67\x52')+_0x51c750(0x42e,'\x69\x7a\x52\x26')+_0x51c750(0x31d,'\x26\x6d\x63\x4a')+_0x51c750(0x1b9,'\x4c\x26\x67\x79')]??null;else{_0xc9b804[_0x51c750(0x214,'\x6a\x5a\x49\x25')]();return;}}try{for await(const _0xc50abe of _0x4a5d05){if(_0x51c750(0x34e,'\x21\x79\x26\x4a')!==_0x51c750(0x3f3,'\x5d\x34\x55\x42')){const _0x4026ba=_0x5ce793['\x66\x65\x74\x63\x68\x49\x6d\x70'+'\x6c']??_0x462137[_0x51c750(0x311,'\x69\x69\x59\x44')],_0x1dbb33=_0x17a1af[_0x51c750(0x413,'\x74\x54\x30\x32')+_0x51c750(0x267,'\x4c\x69\x6c\x48')]??_0x197d2b;return async(_0x4dd3dc,_0x3feacd,_0x146a7b)=>{const _0x92b6dc=_0x51c750,_0x5978c6=_0x3dbd3b[_0x92b6dc(0x1a9,'\x31\x24\x47\x24')]??_0x453787.env,_0x5c7363=(_0x146a7b[_0x92b6dc(0x26e,'\x6c\x57\x65\x76')]||_0x4d8005(_0x5978c6))[_0x92b6dc(0x421,'\x48\x55\x29\x45')](/\/+$/,'');return _0x5d1f88(''+_0x5c7363+_0x4dd3dc,_0x3feacd,_0x146a7b,_0x22969a(_0x5978c6),_0x4026ba,_0x1dbb33,_0x92b6dc(0x1f3,'\x4f\x66\x32\x5e'),(_0x341c05,_0x1801c7,_0x973d75)=>!(_0x973d75&&typeof _0x973d75===_0x92b6dc(0x446,'\x75\x42\x5b\x58')&&_0x973d75[_0x92b6dc(0x342,'\x4f\x66\x32\x5e')]===![]));};}else{const _0x3b1a57=_0xc50abe[_0x51c750(0x1ea,'\x6b\x56\x67\x52')]?.[_0x51c750(0x489,'\x5a\x6b\x73\x4b')];if(_0x3b1a57){_0xc9b804[_0x51c750(0x1d7,'\x38\x23\x6d\x50')](Buffer[_0x51c750(0x31f,'\x48\x55\x29\x45')](bedrockChunkFrame(_0x3b1a57)));continue;}const _0x344d9d=bedrockException(_0xc50abe);if(_0x344d9d){const _0x5787f2=JSON[_0x51c750(0x1f0,'\x21\x79\x26\x4a')+'\x79']({'\x74\x79\x70\x65':_0x51c750(0x30f,'\x26\x6d\x63\x4a'),'\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':typeof _0x344d9d[_0x51c750(0x321,'\x5e\x75\x28\x64')]===_0x51c750(0x3b2,'\x4d\x5e\x62\x4b')?_0x344d9d['\x6e\x61\x6d\x65']:_0x51c750(0x25b,'\x4f\x66\x32\x5e')+_0x51c750(0x2ff,'\x75\x42\x5b\x58'),'\x6d\x65\x73\x73\x61\x67\x65':typeof _0x344d9d[_0x51c750(0x1c4,'\x69\x7a\x52\x26')]==='\x73\x74\x72\x69\x6e\x67'?_0x344d9d[_0x51c750(0x38d,'\x6b\x30\x4a\x74')]:String(_0x344d9d)}});_0xc9b804['\x65\x6e\x71\x75\x65\x75\x65'](Buffer['\x66\x72\x6f\x6d'](_0x51c750(0x424,'\x6b\x56\x67\x52')+_0x51c750(0x26a,'\x32\x40\x59\x34')+_0x51c750(0x217,'\x4f\x66\x32\x5e')+_0x5787f2+'\x0a\x0a'));}}}_0xc9b804[_0x51c750(0x319,'\x73\x41\x34\x32')]();}catch(_0x28050c){_0xc9b804[_0x51c750(0x325,'\x74\x54\x30\x32')](_0x28050c);}},'\x63\x61\x6e\x63\x65\x6c'(){const _0x5e9f44=_0x423479;if('\x68\x53\x58\x43\x71'!=='\x56\x6d\x79\x51\x7a')try{if('\x4d\x50\x53\x54\x7a'===_0x5e9f44(0x1b6,'\x71\x4f\x47\x73')){const _0x1d245d=_0x408db6[_0x5e9f44(0x33e,'\x48\x23\x61\x28')]??_0x277b04.env,_0x1020fb=(_0xbfe400[_0x5e9f44(0x352,'\x6b\x56\x67\x52')]||_0x43f707(_0x1d245d))['\x72\x65\x70\x6c\x61\x63\x65'](/\/+$/,'');return _0x2d5a36(''+_0x1020fb+_0x2564a9,_0x4693e7,_0x505293,_0xbf0645(_0x48cfe0[_0x5e9f44(0x3a8,'\x63\x4f\x70\x31')+_0x5e9f44(0x2aa,'\x6a\x5a\x49\x25')],_0x1d245d),_0x40fad3,_0x5075bc,_0x5e9f44(0x43a,'\x4d\x66\x46\x30'),(_0x4db37b,_0x5c1249)=>_0x4b3049(_0x4db37b,_0x5e9f44(0x32b,'\x6c\x57\x65\x76')+_0x5e9f44(0x3f6,'\x5d\x34\x55\x42')+'\x6d')||/:streamGenerateContent(\b|\?|$)/[_0x5e9f44(0x4ac,'\x24\x6f\x57\x68')](_0x5c1249));}else void _0x4a5d05?.[_0x5e9f44(0x3f4,'\x32\x40\x59\x34')]?.();}catch{}else{const _0x4af962=_0x29ce39[_0x5e9f44(0x406,'\x49\x34\x5d\x5e')]??_0x152180.env,_0x5730d0=_0x5e047a[_0x5e9f44(0x210,'\x26\x6d\x63\x4a')]?_0xf4763f(_0x4e2a60[_0x5e9f44(0x3da,'\x24\x6f\x57\x68')]):_0x25756a(_0x4af962);return _0x2178cc(''+_0x5730d0+_0x70051d,_0x50a0de,_0x21f45d,_0x93a0a(_0x4b7028[_0x5e9f44(0x32a,'\x33\x57\x6b\x26')+_0x5e9f44(0x216,'\x48\x58\x4f\x48')],_0x4af962),_0x5b0857,_0x454864,_0x5e9f44(0x403,'\x6c\x32\x34\x38'),_0x3fe595=>_0x1d974f(_0x3fe595,_0x5e9f44(0x2a8,'\x54\x68\x44\x24')+_0x5e9f44(0x249,'\x48\x58\x4f\x48')+'\x6d'));}}});}async function invokeBedrock(_0x304d13,_0x341aca,_0x2e01eb,_0x347540,_0x13a7c6){const _0x103bd9=_0x143e12,_0x276f82=normalizeBedrockBody(_0x304d13,_0x341aca);if(_0x103bd9(0x487,'\x4d\x59\x44\x68')in _0x276f82)return _0x276f82;const _0x53951b={'\x6d\x6f\x64\x65\x6c\x49\x64':_0x276f82[_0x103bd9(0x2a4,'\x5a\x6b\x73\x4b')],'\x63\x6f\x6e\x74\x65\x6e\x74\x54\x79\x70\x65':_0x103bd9(0x24e,'\x21\x79\x26\x4a')+_0x103bd9(0x372,'\x5a\x6b\x73\x4b'),'\x61\x63\x63\x65\x70\x74':_0x103bd9(0x2e1,'\x33\x57\x6b\x26')+'\x69\x6f\x6e\x2f\x6a\x73\x6f\x6e','\x62\x6f\x64\x79':JSON[_0x103bd9(0x227,'\x26\x6d\x63\x4a')+'\x79'](_0x276f82[_0x103bd9(0x40b,'\x6c\x32\x34\x38')+_0x103bd9(0x3d0,'\x31\x24\x47\x24')])},_0x1eaa15=new Error(_0x103bd9(0x495,'\x48\x58\x4f\x48')+_0x103bd9(0x2d9,'\x75\x42\x5b\x58')+_0x103bd9(0x344,'\x34\x67\x38\x72')+'\x75\x74');_0x1eaa15[_0x103bd9(0x366,'\x64\x56\x7a\x2a')]=_0x103bd9(0x327,'\x4d\x5e\x62\x4b')+_0x103bd9(0x3eb,'\x5d\x34\x55\x42');const _0x25111d=new AbortController(),_0x2126ef=setTimeout(()=>_0x25111d[_0x103bd9(0x26f,'\x5d\x34\x55\x42')](_0x1eaa15),_0x13a7c6);try{if(_0x103bd9(0x2bf,'\x26\x6d\x63\x4a')!==_0x103bd9(0x264,'\x69\x77\x6e\x29'))_0x54f0d1=_0x13b574['\x63\x72\x65\x61\x74\x65\x43\x6c'+_0x103bd9(0x283,'\x73\x41\x34\x32')](_0x3ece71),_0x4f417d=_0xf0cebc,_0x119ece=_0x5de306;else{if(_0x276f82[_0x103bd9(0x426,'\x6b\x56\x67\x52')+_0x103bd9(0x330,'\x69\x77\x6e\x29')]){const _0x2e5047=await _0x347540[_0x103bd9(0x3be,'\x48\x55\x29\x45')](_0x2e01eb[_0x103bd9(0x307,'\x4d\x59\x44\x68')+_0x103bd9(0x2c1,'\x61\x6c\x57\x25')+'\x6c\x57\x69\x74\x68\x52\x65\x73'+_0x103bd9(0x359,'\x26\x6d\x63\x4a')+_0x103bd9(0x414,'\x24\x21\x79\x49')+'\x6e\x64'](_0x53951b),{'\x61\x62\x6f\x72\x74\x53\x69\x67\x6e\x61\x6c':_0x25111d['\x73\x69\x67\x6e\x61\x6c']});clearTimeout(_0x2126ef);const _0x477cd2=_0x2e5047&&typeof _0x2e5047===_0x103bd9(0x21a,'\x56\x4a\x4e\x78')?_0x2e5047:{};return{'\x73\x74\x61\x74\x75\x73':0xc8,'\x68\x65\x61\x64\x65\x72\x73':{'\x63\x6f\x6e\x74\x65\x6e\x74\x2d\x74\x79\x70\x65':_0x103bd9(0x1d2,'\x74\x54\x30\x32')+_0x103bd9(0x3f6,'\x5d\x34\x55\x42')+'\x6d'},'\x73\x74\x72\x65\x61\x6d':bedrockStreamToSse(_0x477cd2[_0x103bd9(0x1db,'\x29\x50\x31\x25')]),'\x74\x72\x61\x63\x65\x52\x65\x71\x75\x65\x73\x74\x42\x6f\x64\x79':_0x276f82[_0x103bd9(0x340,'\x32\x40\x59\x34')+_0x103bd9(0x39a,'\x56\x4a\x4e\x78')]};}const _0xed3c4e=await _0x347540[_0x103bd9(0x337,'\x4d\x59\x44\x68')](_0x2e01eb[_0x103bd9(0x24c,'\x49\x34\x5d\x5e')+_0x103bd9(0x4ab,'\x75\x42\x5b\x58')+_0x103bd9(0x437,'\x49\x34\x5d\x5e')](_0x53951b),{'\x61\x62\x6f\x72\x74\x53\x69\x67\x6e\x61\x6c':_0x25111d['\x73\x69\x67\x6e\x61\x6c']});clearTimeout(_0x2126ef);const _0x156636=_0xed3c4e&&typeof _0xed3c4e==='\x6f\x62\x6a\x65\x63\x74'?_0xed3c4e:{},_0x165701=textFromBytes(_0x156636[_0x103bd9(0x404,'\x5a\x64\x24\x78')]);return{'\x73\x74\x61\x74\x75\x73':0xc8,'\x68\x65\x61\x64\x65\x72\x73':{'\x63\x6f\x6e\x74\x65\x6e\x74\x2d\x74\x79\x70\x65':_0x103bd9(0x324,'\x29\x50\x31\x25')+_0x103bd9(0x294,'\x61\x6c\x57\x25')},'\x73\x74\x72\x65\x61\x6d':null,'\x74\x65\x78\x74':()=>_0x165701,'\x74\x72\x61\x63\x65\x52\x65\x71\x75\x65\x73\x74\x42\x6f\x64\x79':_0x276f82[_0x103bd9(0x20f,'\x26\x6d\x63\x4a')+_0x103bd9(0x399,'\x28\x53\x37\x30')]};}}catch(_0x2e87d0){return clearTimeout(_0x2126ef),{...bedrockErrorResult(_0x2e87d0),'\x74\x72\x61\x63\x65\x52\x65\x71\x75\x65\x73\x74\x42\x6f\x64\x79':_0x276f82[_0x103bd9(0x4a2,'\x31\x24\x47\x24')+_0x103bd9(0x260,'\x4d\x5e\x62\x4b')]};}}export function makeAnthropicUpstream(_0x555dbd={}){const _0xf68d40=_0x143e12,_0x219359=_0x555dbd[_0xf68d40(0x255,'\x73\x41\x34\x32')+'\x6c']??globalThis[_0xf68d40(0x362,'\x25\x44\x61\x67')],_0x297657=_0x555dbd[_0xf68d40(0x486,'\x61\x6c\x57\x25')+_0xf68d40(0x3d9,'\x6c\x32\x34\x38')]??DEFAULT_HEADERS_TIMEOUT_MS;let _0xba17a8=null,_0x13481d='',_0x22a46a=null;const _0x572400=(_0x23432c,_0x9e144f)=>{const _0x1e4160=_0xf68d40;if(_0x1e4160(0x2b5,'\x69\x69\x59\x44')===_0x1e4160(0x1ed,'\x32\x40\x59\x34')){const _0xb056e0={'\x72\x65\x67\x69\x6f\x6e':_0x23432c[_0x1e4160(0x459,'\x24\x6f\x57\x68')+'\x4f\x4e']||_0x23432c[_0x1e4160(0x262,'\x6f\x79\x78\x32')+_0x1e4160(0x347,'\x56\x4a\x4e\x78')+'\x4f\x4e']||_0x1e4160(0x1eb,'\x38\x23\x6d\x50')+'\x31',..._0x23432c[_0x1e4160(0x28e,'\x63\x4f\x70\x31')+_0x1e4160(0x22c,'\x6a\x5a\x49\x25')+_0x1e4160(0x1aa,'\x63\x4f\x70\x31')]?{'\x65\x6e\x64\x70\x6f\x69\x6e\x74':assertHttpUrl(_0x23432c[_0x1e4160(0x30c,'\x48\x58\x4f\x48')+_0x1e4160(0x475,'\x21\x39\x39\x5a')+_0x1e4160(0x2f6,'\x5d\x34\x55\x42')],_0x1e4160(0x456,'\x69\x77\x6e\x29')+_0x1e4160(0x36d,'\x6a\x5a\x49\x25'))}:{}},_0x4675bc=JSON[_0x1e4160(0x203,'\x56\x4a\x4e\x78')+'\x79'](_0xb056e0);return(!_0xba17a8||_0x13481d!==_0x4675bc||_0x22a46a!==_0x9e144f)&&(_0x1e4160(0x204,'\x74\x54\x30\x32')!==_0x1e4160(0x1e1,'\x4f\x66\x32\x5e')?_0x152a5a[_0x1e4160(0x373,'\x6f\x79\x78\x32')+_0x1e4160(0x27e,'\x56\x4a\x4e\x78')]=_0x1e4160(0x326,'\x5e\x75\x28\x64')+_0x1590f8[_0x1e4160(0x470,'\x69\x77\x6e\x29')+_0x1e4160(0x28f,'\x75\x42\x5b\x58')+_0x1e4160(0x2b0,'\x71\x4f\x47\x73')]:(_0xba17a8=_0x9e144f[_0x1e4160(0x273,'\x71\x4f\x47\x73')+'\x69\x65\x6e\x74'](_0xb056e0),_0x13481d=_0x4675bc,_0x22a46a=_0x9e144f)),_0xba17a8;}else{const _0x35a711={'\x72\x65\x67\x69\x6f\x6e':_0x52aec5[_0x1e4160(0x1cf,'\x64\x56\x7a\x2a')+'\x4f\x4e']||_0xf290e0[_0x1e4160(0x419,'\x21\x79\x26\x4a')+'\x55\x4c\x54\x5f\x52\x45\x47\x49'+'\x4f\x4e']||'\x75\x73\x2d\x65\x61\x73\x74\x2d'+'\x31',..._0x2b14e4[_0x1e4160(0x1cb,'\x71\x4f\x47\x73')+'\x45\x44\x52\x4f\x43\x4b\x5f\x45'+_0x1e4160(0x3fb,'\x31\x24\x47\x24')]?{'\x65\x6e\x64\x70\x6f\x69\x6e\x74':_0x2f329c(_0x87495f[_0x1e4160(0x3f2,'\x5e\x75\x28\x64')+_0x1e4160(0x2da,'\x69\x69\x59\x44')+_0x1e4160(0x1ab,'\x21\x39\x39\x5a')],_0x1e4160(0x411,'\x28\x35\x36\x6c')+_0x1e4160(0x455,'\x28\x53\x37\x30'))}:{}},_0x748d15=_0x166ed3[_0x1e4160(0x389,'\x54\x68\x44\x24')+'\x79'](_0x35a711);return(!_0x5300f7||_0x1e00c6!==_0x748d15||_0x3cdd3c!==_0x5ef389)&&(_0x290edd=_0x559cc1['\x63\x72\x65\x61\x74\x65\x43\x6c'+_0x1e4160(0x2f1,'\x64\x56\x7a\x2a')](_0x35a711),_0x3ae586=_0x748d15,_0x288b0e=_0x3c3c88),_0x38f3c5;}};return async(_0x266dc0,_0x1f105e,_0x218df8)=>{const _0x24a02a=_0xf68d40,{inboundHeaders:_0xc50d69,upstreamMode:_0x2df6e7}=_0x218df8;if(_0x2df6e7===_0x24a02a(0x29a,'\x48\x23\x61\x28')){const _0x376f86=_0x555dbd[_0x24a02a(0x2fa,'\x4d\x66\x46\x30')+_0x24a02a(0x35d,'\x34\x67\x38\x72')]??await loadDefaultBedrockRuntime(),_0x255dcc=_0x555dbd[_0x24a02a(0x3d6,'\x32\x40\x59\x34')]??process.env;return invokeBedrock(_0x1f105e,_0x255dcc,_0x376f86,_0x572400(_0x255dcc,_0x376f86),_0x297657);}const _0x17eeef=_0x555dbd[_0x24a02a(0x221,'\x38\x23\x6d\x50')]??process.env;return fetchUpstream(''+resolveUpstreamUrl(_0x17eeef,_0x2df6e7)+(isOpenAiMode(_0x2df6e7)?pathForOpenAIBase(_0x266dc0):_0x266dc0),_0x1f105e,_0x218df8,buildForwardHeaders(_0xc50d69,_0x17eeef,_0x2df6e7),_0x219359,_0x297657,isOpenAiMode(_0x2df6e7)?_0x24a02a(0x312,'\x6b\x30\x4a\x74'):'\x61\x6e\x74\x68\x72\x6f\x70\x69'+'\x63',_0x5afd66=>contentTypeIncludes(_0x5afd66,_0x24a02a(0x2a8,'\x54\x68\x44\x24')+_0x24a02a(0x2ed,'\x73\x41\x34\x32')+'\x6d'));};}export function makeOpenAIUpstream(_0x26a3e7={}){const _0x140bc5=_0x143e12,_0x19eee7=_0x26a3e7[_0x140bc5(0x215,'\x6c\x57\x65\x76')+'\x6c']??globalThis['\x66\x65\x74\x63\x68'],_0x507958=_0x26a3e7[_0x140bc5(0x394,'\x26\x6d\x63\x4a')+_0x140bc5(0x376,'\x53\x57\x69\x45')]??DEFAULT_HEADERS_TIMEOUT_MS;return async(_0x230ea7,_0x55a9f3,_0x5798fa)=>{const _0x3504b9=_0x140bc5;if(_0x3504b9(0x1df,'\x6f\x79\x78\x32')===_0x3504b9(0x494,'\x69\x69\x59\x44'))throw new _0x2ef2fe(_0x3504b9(0x21d,'\x5e\x75\x28\x64')+_0x3266ef+(_0x3504b9(0x450,'\x75\x42\x5b\x58')+_0x3504b9(0x22d,'\x33\x57\x6b\x26')+_0x3504b9(0x468,'\x6c\x32\x34\x38')));else{const _0x16fd5c=_0x26a3e7[_0x3504b9(0x381,'\x4d\x59\x44\x68')]??process.env,_0x5cb87b=_0x5798fa[_0x3504b9(0x3e6,'\x4c\x69\x6c\x48')]?normalizeOpenAIBaseUrl(_0x5798fa[_0x3504b9(0x4a3,'\x56\x4a\x4e\x78')]):resolveOpenAIUpstreamUrl(_0x16fd5c);return fetchUpstream(''+_0x5cb87b+_0x230ea7,_0x55a9f3,_0x5798fa,buildOpenAIHeaders(_0x5798fa[_0x3504b9(0x29e,'\x4c\x69\x6c\x48')+_0x3504b9(0x379,'\x6b\x56\x67\x52')],_0x16fd5c),_0x19eee7,_0x507958,_0x3504b9(0x3e2,'\x31\x24\x47\x24'),_0x209412=>contentTypeIncludes(_0x209412,_0x3504b9(0x3ce,'\x73\x41\x34\x32')+_0x3504b9(0x442,'\x54\x68\x44\x24')+'\x6d'));}};}export function makeGeminiUpstream(_0x511ff6={}){const _0x1a7e92=_0x143e12,_0x3bc3db=_0x511ff6[_0x1a7e92(0x1f6,'\x24\x21\x79\x49')+'\x6c']??globalThis[_0x1a7e92(0x42c,'\x6c\x57\x65\x76')],_0x33d94b=_0x511ff6[_0x1a7e92(0x34c,'\x31\x24\x47\x24')+_0x1a7e92(0x236,'\x30\x63\x34\x54')]??DEFAULT_HEADERS_TIMEOUT_MS;return async(_0x8e29f4,_0xa5f596,_0x587acb)=>{const _0x35378a=_0x1a7e92;if(_0x35378a(0x430,'\x24\x21\x79\x49')===_0x35378a(0x1b7,'\x53\x57\x69\x45')){const _0x5363dc=_0x511ff6[_0x35378a(0x3b4,'\x69\x69\x59\x44')]??process.env,_0x4ab13d=(_0x587acb[_0x35378a(0x3f1,'\x4d\x59\x44\x68')]||resolveGeminiUpstreamUrl(_0x5363dc))[_0x35378a(0x1b0,'\x32\x40\x59\x34')](/\/+$/,'');return fetchUpstream(''+_0x4ab13d+_0x8e29f4,_0xa5f596,_0x587acb,buildGeminiHeaders(_0x587acb[_0x35378a(0x34b,'\x61\x6c\x57\x25')+_0x35378a(0x451,'\x69\x77\x6e\x29')],_0x5363dc),_0x3bc3db,_0x33d94b,_0x35378a(0x453,'\x30\x63\x34\x54'),(_0x481e6e,_0x96ec4a)=>contentTypeIncludes(_0x481e6e,_0x35378a(0x41a,'\x56\x4a\x4e\x78')+_0x35378a(0x3f6,'\x5d\x34\x55\x42')+'\x6d')||/:streamGenerateContent(\b|\?|$)/[_0x35378a(0x423,'\x54\x68\x44\x24')](_0x96ec4a));}else{if(!_0x3bc834||typeof _0x9add6e!==_0x35378a(0x21a,'\x56\x4a\x4e\x78')||_0x2f7227[_0x35378a(0x245,'\x74\x54\x30\x32')](_0x493b7a))return{};return _0x441ae6;}};}export function makeOllamaUpstream(_0x455ff0={}){const _0x14e8b7=_0x143e12,_0x2eda44=_0x455ff0[_0x14e8b7(0x408,'\x69\x7a\x52\x26')+'\x6c']??globalThis[_0x14e8b7(0x49e,'\x4d\x5e\x62\x4b')],_0x3957dd=_0x455ff0['\x68\x65\x61\x64\x65\x72\x73\x54'+'\x69\x6d\x65\x6f\x75\x74\x4d\x73']??DEFAULT_HEADERS_TIMEOUT_MS;return async(_0x33ad84,_0x289c7b,_0x5cda4e)=>{const _0x2d5302=_0x14e8b7;if(_0x2d5302(0x269,'\x6f\x79\x78\x32')===_0x2d5302(0x274,'\x6c\x32\x34\x38')){const _0x2b3860=_0x234b3d[_0x2d5302(0x3c6,'\x64\x56\x7a\x2a')+_0x2d5302(0x351,'\x21\x79\x26\x4a')+_0x2d5302(0x229,'\x54\x68\x44\x24')+_0x2d5302(0x390,'\x48\x55\x29\x45')+'\x4c\x53']||_0x3d8016[_0x2d5302(0x41d,'\x69\x69\x59\x44')+_0x2d5302(0x33c,'\x48\x55\x29\x45')+_0x2d5302(0x457,'\x48\x23\x61\x28')+_0x2d5302(0x398,'\x6c\x57\x65\x76')+_0x2d5302(0x4a4,'\x38\x23\x6d\x50')];if(!_0x2b3860||_0x1c6538)return;_0x3e2e74=!![],_0x4ac276[_0x2d5302(0x25e,'\x32\x40\x59\x34')](_0x2d5302(0x410,'\x28\x35\x36\x6c')+_0x2d5302(0x43b,'\x61\x6c\x57\x25')+_0x2d5302(0x299,'\x6a\x5a\x49\x25')+_0x2d5302(0x3d3,'\x64\x56\x7a\x2a')+_0x2d5302(0x3c3,'\x6a\x5a\x49\x25')+'\x49\x42\x4c\x45\x5f\x42\x41\x53'+_0x2d5302(0x234,'\x75\x42\x5b\x58')+_0x2d5302(0x332,'\x56\x4a\x4e\x78')+_0x2d5302(0x1ac,'\x48\x55\x29\x45')+_0x2d5302(0x301,'\x38\x23\x6d\x50')+_0x2d5302(0x3de,'\x6b\x56\x67\x52')+_0x2d5302(0x26c,'\x4c\x26\x67\x79')+_0x2d5302(0x220,'\x6f\x79\x78\x32')+_0x2d5302(0x441,'\x74\x54\x30\x32')+_0x2d5302(0x2b7,'\x4f\x68\x67\x73')+(_0x2d5302(0x2cc,'\x29\x50\x31\x25')+_0x2d5302(0x3db,'\x74\x54\x30\x32')+_0x2d5302(0x2c8,'\x21\x39\x39\x5a')+_0x2d5302(0x3a3,'\x49\x34\x5d\x5e')+_0x2d5302(0x40d,'\x5d\x34\x55\x42')+_0x2d5302(0x265,'\x29\x50\x31\x25')+_0x2d5302(0x316,'\x24\x21\x79\x49')+_0x2d5302(0x256,'\x69\x77\x6e\x29')+'\x41\x49\x5f\x42\x41\x53\x45\x5f'+_0x2d5302(0x2e9,'\x61\x6c\x57\x25')+_0x2d5302(0x2bc,'\x6b\x56\x67\x52')+_0x2d5302(0x42a,'\x48\x58\x4f\x48')+_0x2d5302(0x1f7,'\x4d\x5e\x62\x4b')+'\x4f\x50\x45\x4e\x41\x49\x5f\x42'+_0x2d5302(0x2c0,'\x4d\x66\x46\x30')+'\x20')+(_0x2d5302(0x33a,'\x30\x63\x34\x54')+_0x2d5302(0x396,'\x56\x4a\x4e\x78')+_0x2d5302(0x296,'\x4f\x68\x67\x73')+_0x2d5302(0x1ce,'\x24\x21\x79\x49')+_0x2d5302(0x3ec,'\x4d\x5e\x62\x4b')+'\x61\x74\x69\x62\x6c\x65\x20\x68'+_0x2d5302(0x235,'\x61\x6c\x57\x25')+_0x2d5302(0x365,'\x28\x53\x37\x30')+_0x2d5302(0x409,'\x5a\x64\x24\x78')+_0x2d5302(0x1c7,'\x4f\x68\x67\x73')+_0x2d5302(0x24a,'\x5a\x6b\x73\x4b')+_0x2d5302(0x43d,'\x4d\x5e\x62\x4b')+_0x2d5302(0x328,'\x6c\x32\x34\x38')+_0x2d5302(0x41e,'\x33\x57\x6b\x26')+_0x2d5302(0x374,'\x71\x4f\x47\x73')+_0x2d5302(0x200,'\x63\x4f\x70\x31')+_0x2d5302(0x304,'\x5a\x6b\x73\x4b')+_0x2d5302(0x363,'\x75\x42\x5b\x58')+_0x2d5302(0x3cb,'\x69\x77\x6e\x29')+_0x2d5302(0x3d5,'\x48\x58\x4f\x48')+_0x2d5302(0x28b,'\x25\x44\x61\x67')+'\x2e\x20')+(_0x2d5302(0x34f,'\x6f\x79\x78\x32')+_0x2d5302(0x331,'\x31\x24\x47\x24')+'\x63\x61\x74\x65\x64\x20\x6d\x75'+_0x2d5302(0x3d8,'\x21\x39\x39\x5a')+_0x2d5302(0x1ef,'\x63\x4f\x70\x31')+'\x2e'));}else{const _0x29f08a=_0x455ff0[_0x2d5302(0x1e3,'\x21\x39\x39\x5a')]??process.env,_0x2daa7a=(_0x5cda4e[_0x2d5302(0x3d4,'\x64\x56\x7a\x2a')]||resolveOllamaUpstreamUrl(_0x29f08a))[_0x2d5302(0x478,'\x64\x56\x7a\x2a')](/\/+$/,'');return fetchUpstream(''+_0x2daa7a+_0x33ad84,_0x289c7b,_0x5cda4e,buildOllamaHeaders(_0x29f08a),_0x2eda44,_0x3957dd,_0x2d5302(0x471,'\x4d\x66\x46\x30'),(_0x304e3b,_0x3720a9,_0x23c20c)=>!(_0x23c20c&&typeof _0x23c20c===_0x2d5302(0x3b7,'\x54\x68\x44\x24')&&_0x23c20c[_0x2d5302(0x49f,'\x4d\x59\x44\x68')]===![]));}};}export function makeVertexUpstream(_0xb3679f={}){const _0x21be69=_0x143e12,_0x36e7ad=_0xb3679f[_0x21be69(0x428,'\x4f\x68\x67\x73')+'\x6c']??globalThis[_0x21be69(0x491,'\x67\x65\x4f\x51')],_0x36241d=_0xb3679f[_0x21be69(0x3c5,'\x5d\x34\x55\x42')+_0x21be69(0x309,'\x28\x35\x36\x6c')]??DEFAULT_HEADERS_TIMEOUT_MS;return async(_0x1b54d1,_0xe1897d,_0x122a53)=>{const _0x2f3bc6=_0x21be69;if(_0x2f3bc6(0x31e,'\x5d\x34\x55\x42')!=='\x42\x6a\x70\x7a\x64'){const _0x1e2509=(_0x122a53[_0x2f3bc6(0x37e,'\x5a\x6b\x73\x4b')]||'')[_0x2f3bc6(0x421,'\x48\x55\x29\x45')](/\/+$/,'');if(!_0x1e2509)throw Object[_0x2f3bc6(0x2c4,'\x24\x6f\x57\x68')](new Error('\x76\x65\x72\x74\x65\x78\x20\x62'+_0x2f3bc6(0x239,'\x75\x42\x5b\x58')+'\x72\x65\x71\x75\x69\x72\x65\x64'),{'\x73\x74\x61\x74\x75\x73\x43\x6f\x64\x65':0x1f4});const _0x464eb2=_0xb3679f[_0x2f3bc6(0x35c,'\x6c\x32\x34\x38')]??process.env;return fetchUpstream(''+_0x1e2509+_0x1b54d1,_0xe1897d,_0x122a53,buildVertexHeaders(_0x464eb2),_0x36e7ad,_0x36241d,_0x2f3bc6(0x360,'\x67\x65\x4f\x51'),(_0x539862,_0x4cf14a)=>contentTypeIncludes(_0x539862,_0x2f3bc6(0x3fe,'\x49\x34\x5d\x5e')+_0x2f3bc6(0x21c,'\x28\x53\x37\x30')+'\x6d')||/:streamGenerateContent(\b|\?|$)/[_0x2f3bc6(0x1f9,'\x30\x63\x34\x54')](_0x4cf14a));}else _0x370b85(_0x13c59a);};}export{warnDeprecatedOpenAICompatible,resetDeprecatedOpenAICompatibleWarning};