@tangle-network/sandbox 0.0.0-develop.20260610142542.1e07a05 → 0.0.0-develop.20260610200051.84d8326
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent/index.d.ts +94 -3
- package/dist/agent/index.js +1 -1
- package/dist/auth/index.js +1 -1
- package/dist/client-DNRk-fYq.js +1 -0
- package/dist/{client-jw5nS9p9.d.ts → client-DRbtd2hi.d.ts} +1 -1
- package/dist/collaboration/index.js +1 -1
- package/dist/collaboration-BxlfZ2Uh.js +1 -1
- package/dist/core.d.ts +2 -2
- package/dist/core.js +1 -1
- package/dist/errors-DZsfJUuc.js +1 -1
- package/dist/{index-DTsiJpks.d.ts → index-Bl4L_Cpm.d.ts} +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +1 -1
- package/dist/intelligence/index.js +1 -1
- package/dist/openai/index.js +1 -1
- package/dist/{sandbox-CqlT4WnD.d.ts → sandbox-BQbq1EGP.d.ts} +189 -2
- package/dist/sandbox-d6iLJeH2.js +1 -0
- package/dist/session-gateway/index.js +1 -1
- package/dist/tangle/index.d.ts +1 -1
- package/dist/tangle/index.js +1 -1
- package/dist/tangle-BrobUtQo.js +1 -0
- package/package.json +1 -1
- package/dist/client-D5O2rjSL.js +0 -1
- package/dist/sandbox-DH4Tq6fA.js +0 -1
- package/dist/tangle-_cxg7krW.js +0 -1
package/dist/agent/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as CodeLanguage, H as CodeResultPart, R as CodeExecutionOptions, n as SandboxInstance, z as CodeExecutionResult } from "../sandbox-
|
|
2
|
-
import { i as SandboxClient } from "../client-
|
|
1
|
+
import { B as CodeLanguage, H as CodeResultPart, R as CodeExecutionOptions, n as SandboxInstance, z as CodeExecutionResult } from "../sandbox-BQbq1EGP.js";
|
|
2
|
+
import { i as SandboxClient } from "../client-DRbtd2hi.js";
|
|
3
3
|
import * as _$_modelcontextprotocol_sdk_server_index_js0 from "@modelcontextprotocol/sdk/server/index.js";
|
|
4
4
|
|
|
5
5
|
//#region src/agent/tools/_specs.d.ts
|
|
@@ -67,6 +67,8 @@ declare const TOOL_SPECS: {
|
|
|
67
67
|
max_results?: number;
|
|
68
68
|
}, unknown>;
|
|
69
69
|
};
|
|
70
|
+
/** Canonical ordered list. Packs use this to emit tools in a stable order. */
|
|
71
|
+
declare const ALL_TOOL_SPECS: ToolSpec[];
|
|
70
72
|
//#endregion
|
|
71
73
|
//#region src/agent/mcp-local.d.ts
|
|
72
74
|
interface McpServerOptions {
|
|
@@ -252,6 +254,7 @@ declare const FLEET_TOOL_SPECS: {
|
|
|
252
254
|
}, unknown>;
|
|
253
255
|
};
|
|
254
256
|
type FleetToolName = keyof typeof FLEET_TOOL_SPECS;
|
|
257
|
+
declare const ALL_FLEET_TOOL_SPECS: FleetToolSpec[];
|
|
255
258
|
//#endregion
|
|
256
259
|
//#region src/agent/tools/fleet/index.d.ts
|
|
257
260
|
interface FleetToolPackOptions {
|
|
@@ -315,6 +318,94 @@ declare function openaiFleetTools(client: SandboxClient, options?: FleetToolPack
|
|
|
315
318
|
declare function vercelAiFleetTools(client: SandboxClient, options?: FleetToolPackOptions): Promise<Record<string, unknown>>;
|
|
316
319
|
declare function mastraFleetTools(client: SandboxClient, options?: FleetToolPackOptions): Promise<Record<string, unknown>>;
|
|
317
320
|
//#endregion
|
|
321
|
+
//#region src/agent/tools/lifecycle/_specs.d.ts
|
|
322
|
+
interface LifecycleToolHandlerContext {
|
|
323
|
+
client: SandboxClient;
|
|
324
|
+
}
|
|
325
|
+
interface LifecycleToolSpec<TArgs = Record<string, unknown>, TResult = unknown> {
|
|
326
|
+
name: string;
|
|
327
|
+
description: string;
|
|
328
|
+
inputSchema: ToolJSONSchema;
|
|
329
|
+
makeHandler: (ctx: LifecycleToolHandlerContext) => (args: TArgs) => Promise<TResult>;
|
|
330
|
+
}
|
|
331
|
+
declare const LIFECYCLE_TOOL_SPECS: {
|
|
332
|
+
readonly sandbox_create: LifecycleToolSpec<{
|
|
333
|
+
environment?: string;
|
|
334
|
+
name?: string;
|
|
335
|
+
}, unknown>;
|
|
336
|
+
readonly sandbox_run_command: LifecycleToolSpec<{
|
|
337
|
+
sandbox_id: string;
|
|
338
|
+
command: string;
|
|
339
|
+
cwd?: string;
|
|
340
|
+
timeout_ms?: number;
|
|
341
|
+
}, unknown>;
|
|
342
|
+
readonly sandbox_destroy: LifecycleToolSpec<{
|
|
343
|
+
sandbox_id: string;
|
|
344
|
+
}, unknown>;
|
|
345
|
+
};
|
|
346
|
+
type LifecycleToolName = keyof typeof LIFECYCLE_TOOL_SPECS;
|
|
347
|
+
declare const ALL_LIFECYCLE_TOOL_SPECS: LifecycleToolSpec[];
|
|
348
|
+
//#endregion
|
|
349
|
+
//#region src/agent/tools/lifecycle/index.d.ts
|
|
350
|
+
interface LifecycleToolPackOptions {
|
|
351
|
+
/** Which lifecycle tools to expose. Defaults to all three. */
|
|
352
|
+
allow?: LifecycleToolName[];
|
|
353
|
+
}
|
|
354
|
+
interface AnthropicLifecycleTool {
|
|
355
|
+
name: string;
|
|
356
|
+
description: string;
|
|
357
|
+
input_schema: {
|
|
358
|
+
type: "object";
|
|
359
|
+
properties: Record<string, unknown>;
|
|
360
|
+
required?: string[];
|
|
361
|
+
additionalProperties?: boolean;
|
|
362
|
+
};
|
|
363
|
+
}
|
|
364
|
+
interface AnthropicLifecycleToolPack {
|
|
365
|
+
tools: AnthropicLifecycleTool[];
|
|
366
|
+
handleToolUse(block: {
|
|
367
|
+
type: "tool_use";
|
|
368
|
+
id: string;
|
|
369
|
+
name: string;
|
|
370
|
+
input: Record<string, unknown>;
|
|
371
|
+
}): Promise<{
|
|
372
|
+
type: "tool_result";
|
|
373
|
+
tool_use_id: string;
|
|
374
|
+
content: string;
|
|
375
|
+
is_error?: boolean;
|
|
376
|
+
}>;
|
|
377
|
+
}
|
|
378
|
+
declare function anthropicLifecycleTools(client: SandboxClient, options?: LifecycleToolPackOptions): AnthropicLifecycleToolPack;
|
|
379
|
+
interface OpenAILifecycleTool {
|
|
380
|
+
type: "function";
|
|
381
|
+
function: {
|
|
382
|
+
name: string;
|
|
383
|
+
description: string;
|
|
384
|
+
parameters: {
|
|
385
|
+
type: "object";
|
|
386
|
+
properties: Record<string, unknown>;
|
|
387
|
+
required?: string[];
|
|
388
|
+
additionalProperties?: boolean;
|
|
389
|
+
};
|
|
390
|
+
};
|
|
391
|
+
}
|
|
392
|
+
interface OpenAILifecycleToolPack {
|
|
393
|
+
tools: OpenAILifecycleTool[];
|
|
394
|
+
handleToolCall(call: {
|
|
395
|
+
id: string;
|
|
396
|
+
type?: "function";
|
|
397
|
+
function: {
|
|
398
|
+
name: string;
|
|
399
|
+
arguments: string;
|
|
400
|
+
};
|
|
401
|
+
}): Promise<{
|
|
402
|
+
role: "tool";
|
|
403
|
+
tool_call_id: string;
|
|
404
|
+
content: string;
|
|
405
|
+
}>;
|
|
406
|
+
}
|
|
407
|
+
declare function openaiLifecycleTools(client: SandboxClient, options?: LifecycleToolPackOptions): OpenAILifecycleToolPack;
|
|
408
|
+
//#endregion
|
|
318
409
|
//#region src/agent/tools/mastra.d.ts
|
|
319
410
|
interface MastraToolPackOptions {
|
|
320
411
|
allow?: ToolName[];
|
|
@@ -430,4 +521,4 @@ type AnyTool = unknown;
|
|
|
430
521
|
*/
|
|
431
522
|
declare function vercelAiTools(box: SandboxInstance, options?: VercelAiToolPackOptions): Promise<Record<string, AnyTool>>;
|
|
432
523
|
//#endregion
|
|
433
|
-
export { type AnthropicFleetTool, type AnthropicFleetToolPack, type AnthropicTool, type AnthropicToolPack, type AnthropicToolPackOptions, type AnthropicToolResultBlock, type AnthropicToolUseBlock, type CodeExecutionOptions, type CodeExecutionResult, type CodeLanguage, type CodeResultPart, type FleetToolName, type FleetToolPackOptions, type MastraToolPackOptions, type McpServerHandle, type McpServerOptions, type OpenAIFleetTool, type OpenAIFleetToolPack, type OpenAITool, type OpenAIToolCall, type OpenAIToolPack, type OpenAIToolPackOptions, type OpenAIToolResultMessage, type ToolName, type VercelAiToolPackOptions, anthropicFleetTools, anthropicTools, createMcpServer, mastraFleetTools, mastraTools, openaiFleetTools, openaiTools, runCode, vercelAiFleetTools, vercelAiTools };
|
|
524
|
+
export { ALL_FLEET_TOOL_SPECS, ALL_LIFECYCLE_TOOL_SPECS, ALL_TOOL_SPECS, type AnthropicFleetTool, type AnthropicFleetToolPack, type AnthropicLifecycleTool, type AnthropicLifecycleToolPack, type AnthropicTool, type AnthropicToolPack, type AnthropicToolPackOptions, type AnthropicToolResultBlock, type AnthropicToolUseBlock, type CodeExecutionOptions, type CodeExecutionResult, type CodeLanguage, type CodeResultPart, FLEET_TOOL_SPECS, type FleetToolHandlerContext, type FleetToolName, type FleetToolPackOptions, type FleetToolSpec, LIFECYCLE_TOOL_SPECS, type LifecycleToolHandlerContext, type LifecycleToolName, type LifecycleToolPackOptions, type LifecycleToolSpec, type MastraToolPackOptions, type McpServerHandle, type McpServerOptions, type OpenAIFleetTool, type OpenAIFleetToolPack, type OpenAILifecycleTool, type OpenAILifecycleToolPack, type OpenAITool, type OpenAIToolCall, type OpenAIToolPack, type OpenAIToolPackOptions, type OpenAIToolResultMessage, TOOL_SPECS, type ToolHandlerContext, type ToolName, type ToolSpec, type VercelAiToolPackOptions, anthropicFleetTools, anthropicLifecycleTools, anthropicTools, createMcpServer, mastraFleetTools, mastraTools, openaiFleetTools, openaiLifecycleTools, openaiTools, runCode, vercelAiFleetTools, vercelAiTools };
|
package/dist/agent/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const a0_0x3f0607=a0_0x2459;(function(_0xe44400,_0x8c520e){const _0x201ab7=a0_0x2459,_0x252686=_0xe44400();while(!![]){try{const _0x192e72=parseInt(_0x201ab7(0x224))/0x1+parseInt(_0x201ab7(0x1b2))/0x2*(-parseInt(_0x201ab7(0x222))/0x3)+-parseInt(_0x201ab7(0x192))/0x4*(parseInt(_0x201ab7(0x190))/0x5)+parseInt(_0x201ab7(0x1c1))/0x6*(-parseInt(_0x201ab7(0x1ef))/0x7)+parseInt(_0x201ab7(0x1ea))/0x8*(parseInt(_0x201ab7(0x1fc))/0x9)+-parseInt(_0x201ab7(0x1f1))/0xa+-parseInt(_0x201ab7(0x1f9))/0xb*(-parseInt(_0x201ab7(0x1cc))/0xc);if(_0x192e72===_0x8c520e)break;else _0x252686['push'](_0x252686['shift']());}catch(_0x33926a){_0x252686['push'](_0x252686['shift']());}}}(a0_0x1ecd,0x1fe56));import{createRequire}from'\x6e\x6f\x64\x65\x3a\x6d\x6f\x64\x75\x6c\x65';const TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x64\x65':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x64\x65','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1d8),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x6c\x61\x6e\x67\x75\x61\x67\x65':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3),'\x65\x6e\x75\x6d':[a0_0x3f0607(0x20e),a0_0x3f0607(0x18f),a0_0x3f0607(0x1b8),'\x62\x61\x73\x68'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1af)},'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x20c)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x3f0607(0x1f4),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1e3)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x6c\x61\x6e\x67\x75\x61\x67\x65',a0_0x3f0607(0x1d3)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x32a177,sessionId:_0x4ffab8})=>async _0x3e2c32=>{const _0x2907ba=a0_0x3f0607;return await _0x32a177['\x72\x75\x6e\x43\x6f\x64\x65'](_0x3e2c32['\x6c\x61\x6e\x67\x75\x61\x67\x65'],_0x3e2c32[_0x2907ba(0x1d3)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4ffab8,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x3e2c32[_0x2907ba(0x208)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63':{'\x6e\x61\x6d\x65':a0_0x3f0607(0x207),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1c6),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1a2)},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1dd)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x3f0607(0x1f4),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1d5)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3f0607(0x205)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x238922,sessionId:_0x290f92})=>async _0x55973d=>{const _0xe33bca=a0_0x3f0607;return await _0x238922[_0xe33bca(0x21a)](_0x55973d[_0xe33bca(0x205)],{'\x63\x77\x64':_0x55973d[_0xe33bca(0x1cb)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x55973d[_0xe33bca(0x208)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x290f92});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64':{'\x6e\x61\x6d\x65':a0_0x3f0607(0x1ba),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x193),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3f0607(0x19c)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x2a7b85,sessionId:_0x12b2ba})=>async _0x153b8f=>{const _0x35432c=a0_0x3f0607;return{'\x63\x6f\x6e\x74\x65\x6e\x74':await _0x2a7b85['\x72\x65\x61\x64'](_0x153b8f[_0x35432c(0x19c)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x12b2ba})};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65':{'\x6e\x61\x6d\x65':a0_0x3f0607(0x20a),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1f3),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3)},'\x63\x6f\x6e\x74\x65\x6e\x74':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x201)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x70\x61\x74\x68',a0_0x3f0607(0x1ad)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x1e1e9d})=>async _0x378891=>{const _0x2683a4=a0_0x3f0607;return await _0x1e1e9d[_0x2683a4(0x1a5)](_0x378891[_0x2683a4(0x19c)],_0x378891[_0x2683a4(0x1ad)]),{'\x6f\x6b':!![]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74':{'\x6e\x61\x6d\x65':a0_0x3f0607(0x223),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x200),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3f0607(0x19c)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x5139f3})=>async _0x361ac2=>{const _0x447dc6=a0_0x3f0607;return{'\x65\x6e\x74\x72\x69\x65\x73':await _0x5139f3['\x66\x73'][_0x447dc6(0x1e5)](_0x361ac2[_0x447dc6(0x19c)])};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68':{'\x6e\x61\x6d\x65':a0_0x3f0607(0x1d6),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x202),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x74\x65\x72\x6e':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1a0)},'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x53\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x74\x6f\x20\x73\x65\x61\x72\x63\x68\x2e\x20\x4f\x70\x74\x69\x6f\x6e\x61\x6c\x2e'},'\x6d\x61\x78\x5f\x72\x65\x73\x75\x6c\x74\x73':{'\x74\x79\x70\x65':'\x6e\x75\x6d\x62\x65\x72','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1ce)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x70\x61\x74\x74\x65\x72\x6e'],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x3b1aaf})=>async _0x5ac7c4=>{const _0x4cd54c=a0_0x3f0607,_0x426e62=[],_0x2fde32=_0x5ac7c4[_0x4cd54c(0x1d2)]??0x64;for await(const _0x4be6cd of _0x3b1aaf[_0x4cd54c(0x1f8)](_0x5ac7c4[_0x4cd54c(0x1e4)],{'\x63\x77\x64':_0x5ac7c4[_0x4cd54c(0x19c)],'\x6d\x61\x78\x52\x65\x73\x75\x6c\x74\x73':_0x2fde32})){_0x426e62[_0x4cd54c(0x18e)](_0x4be6cd);if(_0x426e62[_0x4cd54c(0x1f5)]>=_0x2fde32)break;}return{'\x6d\x61\x74\x63\x68\x65\x73':_0x426e62};}}},ALL_TOOL_SPECS=Object[a0_0x3f0607(0x18c)](TOOL_SPECS);function selectSpecs(_0xcace4e){const _0x5b0546=a0_0x3f0607;if(!_0xcace4e||_0xcace4e[_0x5b0546(0x1f5)]===0x0)return ALL_TOOL_SPECS;const _0x2901e1=new Set(_0xcace4e);return Object[_0x5b0546(0x225)](TOOL_SPECS)['\x66\x69\x6c\x74\x65\x72'](_0x15c832=>_0x2901e1[_0x5b0546(0x1bc)](_0x15c832))[_0x5b0546(0x1c3)](_0x417aee=>TOOL_SPECS[_0x417aee]);}function serializeToolResult(_0x1f95c2){const _0x5cec23=a0_0x3f0607;if(typeof _0x1f95c2===_0x5cec23(0x1a3))return _0x1f95c2;try{return JSON[_0x5cec23(0x1b5)](_0x1f95c2,null,0x2);}catch{return String(_0x1f95c2);}}const SDK_VERSION=((()=>{const _0xce4143=a0_0x3f0607,_0x21d025={'\x52\x77\x73\x48\x70':function(_0x375089,_0x56cec7){return _0x375089(_0x56cec7);},'\x75\x68\x70\x72\x69':'\x2e\x2e\x2f\x2e\x2e\x2f\x70\x61\x63\x6b\x61\x67\x65\x2e\x6a\x73\x6f\x6e'};try{return _0x21d025[_0xce4143(0x216)](createRequire,import.meta.url)(_0x21d025[_0xce4143(0x221)])[_0xce4143(0x18a)]??_0xce4143(0x19a);}catch{return _0xce4143(0x19a);}})());async function createMcpServer(_0x263f4d,_0x5c63d4={}){const _0x5202f6=a0_0x3f0607,_0x515da6={'\x47\x56\x4f\x62\x45':'\x74\x65\x78\x74','\x78\x73\x4f\x67\x6d':_0x5202f6(0x1e6),'\x4c\x7a\x63\x58\x74':'\x74\x61\x6e\x67\x6c\x65\x2d\x73\x61\x6e\x64\x62\x6f\x78'};let _0xe7c290,_0x5df06e;try{[_0xe7c290,_0x5df06e]=await Promise[_0x5202f6(0x1fe)]([import(_0x515da6[_0x5202f6(0x1d7)]),import(_0x5202f6(0x1f6))]);}catch{throw new Error(_0x5202f6(0x211));}const _0x660251=selectSpecs(_0x5c63d4[_0x5202f6(0x20f)]),_0x4a652a={'\x62\x6f\x78':_0x263f4d,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x5c63d4[_0x5202f6(0x219)]},_0xb94556=new Map();for(const _0xaacc39 of _0x660251)_0xb94556[_0x5202f6(0x1e1)](_0xaacc39[_0x5202f6(0x1a1)],_0xaacc39['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x4a652a));const _0x48fa0d=new _0xe7c290[(_0x5202f6(0x1f0))]({'\x6e\x61\x6d\x65':_0x5c63d4['\x6e\x61\x6d\x65']??_0x515da6[_0x5202f6(0x21f)],'\x76\x65\x72\x73\x69\x6f\x6e':_0x5c63d4[_0x5202f6(0x18a)]??SDK_VERSION},{'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x69\x65\x73':{'\x74\x6f\x6f\x6c\x73':{}}});return _0x48fa0d[_0x5202f6(0x20b)](_0x5df06e[_0x5202f6(0x209)],async()=>({'\x74\x6f\x6f\x6c\x73':_0x660251[_0x5202f6(0x1c3)](_0x3d1d30=>({'\x6e\x61\x6d\x65':_0x3d1d30[_0x5202f6(0x1a1)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x3d1d30[_0x5202f6(0x197)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x3d1d30[_0x5202f6(0x1e9)]}))})),_0x48fa0d[_0x5202f6(0x20b)](_0x5df06e[_0x5202f6(0x1c4)],async _0x1ded75=>{const _0x3cdf0f=_0x5202f6,_0x2a0e67=_0x1ded75,_0x1fb924=_0xb94556[_0x3cdf0f(0x1fb)](_0x2a0e67['\x70\x61\x72\x61\x6d\x73'][_0x3cdf0f(0x1a1)]);if(!_0x1fb924)return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x515da6[_0x3cdf0f(0x191)],'\x74\x65\x78\x74':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x2a0e67['\x70\x61\x72\x61\x6d\x73']['\x6e\x61\x6d\x65']}]};try{return{'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x515da6[_0x3cdf0f(0x191)],'\x74\x65\x78\x74':serializeToolResult(await _0x1fb924(_0x2a0e67[_0x3cdf0f(0x226)][_0x3cdf0f(0x21c)]??{}))}]};}catch(_0x51ff55){return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x3cdf0f(0x1d9),'\x74\x65\x78\x74':_0x51ff55 instanceof Error?_0x51ff55[_0x3cdf0f(0x1d4)]:String(_0x51ff55)}]};}}),{'\x73\x65\x72\x76\x65\x72':_0x48fa0d,'\x63\x6f\x6e\x6e\x65\x63\x74':_0x4ec31b=>_0x48fa0d[_0x5202f6(0x1b3)](_0x4ec31b),'\x63\x6c\x6f\x73\x65':()=>_0x48fa0d[_0x5202f6(0x214)]()};}function runCode(_0x4873a1,_0x1a08e2,_0x589d2c,_0xa1f950){const _0x39ca44=a0_0x3f0607;return _0x4873a1[_0x39ca44(0x1e7)](_0x1a08e2,_0x589d2c,_0xa1f950);}function a0_0x2459(_0x1c7efe,_0x1c4ec3){_0x1c7efe=_0x1c7efe-0x18a;const _0x1ecde3=a0_0x1ecd();let _0x2459fb=_0x1ecde3[_0x1c7efe];if(a0_0x2459['\x42\x47\x52\x59\x66\x75']===undefined){var _0x142087=function(_0x940c71){const _0x2e09ed='\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 _0x32c289='',_0x53168d='';for(let _0x184578=0x0,_0x5f4fba,_0x93db3e,_0x5a0202=0x0;_0x93db3e=_0x940c71['\x63\x68\x61\x72\x41\x74'](_0x5a0202++);~_0x93db3e&&(_0x5f4fba=_0x184578%0x4?_0x5f4fba*0x40+_0x93db3e:_0x93db3e,_0x184578++%0x4)?_0x32c289+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x5f4fba>>(-0x2*_0x184578&0x6)):0x0){_0x93db3e=_0x2e09ed['\x69\x6e\x64\x65\x78\x4f\x66'](_0x93db3e);}for(let _0x234831=0x0,_0x1d9c8d=_0x32c289['\x6c\x65\x6e\x67\x74\x68'];_0x234831<_0x1d9c8d;_0x234831++){_0x53168d+='\x25'+('\x30\x30'+_0x32c289['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x234831)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x53168d);};a0_0x2459['\x61\x6b\x69\x4c\x7a\x69']=_0x142087,a0_0x2459['\x46\x75\x74\x4c\x44\x78']={},a0_0x2459['\x42\x47\x52\x59\x66\x75']=!![];}const _0x5868a9=_0x1ecde3[0x0],_0x5a844f=_0x1c7efe+_0x5868a9,_0x5833bf=a0_0x2459['\x46\x75\x74\x4c\x44\x78'][_0x5a844f];return!_0x5833bf?(_0x2459fb=a0_0x2459['\x61\x6b\x69\x4c\x7a\x69'](_0x2459fb),a0_0x2459['\x46\x75\x74\x4c\x44\x78'][_0x5a844f]=_0x2459fb):_0x2459fb=_0x5833bf,_0x2459fb;}function anthropicTools(_0x4038be,_0x36013a={}){const _0x506056=a0_0x3f0607,_0x149454={'\x5a\x6a\x55\x62\x6b':_0x506056(0x1a9),'\x58\x68\x63\x68\x59':function(_0x313bab,_0x3a28db){return _0x313bab(_0x3a28db);},'\x70\x56\x78\x41\x4f':function(_0x4cafbc,_0x34f503){return _0x4cafbc(_0x34f503);}},_0x37e5a3=_0x149454[_0x506056(0x1db)](selectSpecs,_0x36013a[_0x506056(0x20f)]),_0x5238a5={'\x62\x6f\x78':_0x4038be,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x36013a[_0x506056(0x219)]},_0x221d87=new Map();for(const _0x2a8ae7 of _0x37e5a3)_0x221d87['\x73\x65\x74'](_0x2a8ae7[_0x506056(0x1a1)],_0x2a8ae7['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x5238a5));const _0x3cb22d=_0x37e5a3['\x6d\x61\x70'](_0x2b72f6=>({'\x6e\x61\x6d\x65':_0x2b72f6[_0x506056(0x1a1)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2b72f6[_0x506056(0x197)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x2b72f6['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']}));async function _0x16e830(_0x13df07){const _0x50b3b1=_0x506056,_0x4e0e56=_0x221d87[_0x50b3b1(0x1fb)](_0x13df07['\x6e\x61\x6d\x65']);if(!_0x4e0e56)return{'\x74\x79\x70\x65':_0x149454['\x5a\x6a\x55\x62\x6b'],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x13df07['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x13df07[_0x50b3b1(0x1a1)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x1c4a08=await _0x4e0e56(_0x13df07['\x69\x6e\x70\x75\x74']);return{'\x74\x79\x70\x65':_0x50b3b1(0x1a9),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x13df07['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':toAnthropicContent(_0x1c4a08)};}catch(_0x2732fc){return{'\x74\x79\x70\x65':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x13df07['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x2732fc instanceof Error?_0x2732fc[_0x50b3b1(0x1d4)]:_0x149454['\x58\x68\x63\x68\x59'](String,_0x2732fc),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}async function _0x114abe(_0x192f69){const _0x25912f=_0x506056,_0x12f624=_0x192f69[_0x25912f(0x1d1)](_0x4c658f=>typeof _0x4c658f===_0x25912f(0x18b)&&_0x4c658f!==null&&_0x4c658f[_0x25912f(0x213)]===_0x25912f(0x220));return Promise['\x61\x6c\x6c'](_0x12f624[_0x25912f(0x1c3)](_0x16e830));}return{'\x74\x6f\x6f\x6c\x73':_0x3cb22d,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65':_0x16e830,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x114abe};}function a0_0x1ecd(){const _0x8b9be4=['\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x43\x33\x76\x49\x43\x32\x76\x30\x69\x67\x39\x4d\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x41\x77\x72\x5a\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x43\x59\x62\x30\x42\x59\x62\x48\x42\x67\x57\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x34','\x45\x67\x72\x41\x75\x33\x79','\x74\x68\x50\x4a\x77\x68\x71','\x44\x67\x39\x56\x42\x66\x39\x31\x43\x32\x75','\x44\x77\x48\x57\x43\x4d\x4b','\x6e\x4a\x71\x33\x6d\x5a\x66\x71\x45\x76\x6a\x54\x43\x75\x47','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x53\x41\x78\x6e\x30','\x6d\x4a\x75\x57\x6e\x74\x62\x6a\x7a\x33\x62\x52\x43\x33\x47','\x41\x32\x76\x35\x43\x57','\x43\x67\x66\x59\x79\x77\x31\x5a','\x7a\x4e\x6a\x56\x42\x71','\x44\x4d\x76\x59\x43\x32\x4c\x56\x42\x47','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x44\x4d\x66\x53\x44\x77\x76\x5a','\x74\x4e\x76\x54\x79\x4d\x76\x59\x69\x67\x39\x4d\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x7a\x78\x6d\x55\x69\x65\x76\x48\x79\x32\x47\x47\x41\x78\x6d\x47\x79\x4d\x4c\x53\x42\x67\x76\x4b\x69\x67\x4c\x55\x7a\x67\x76\x57\x7a\x77\x35\x4b\x7a\x77\x35\x30\x42\x68\x4b\x55','\x43\x68\x76\x5a\x41\x61','\x42\x4d\x39\x4b\x7a\x71','\x6e\x78\x50\x32\x75\x67\x31\x7a\x72\x71','\x72\x31\x7a\x70\x79\x4b\x75','\x6d\x74\x65\x58\x6e\x4a\x4b\x32\x7a\x75\x72\x32\x43\x32\x76\x74','\x75\x4d\x76\x48\x7a\x63\x62\x48\x69\x67\x7a\x50\x42\x67\x75\x47\x7a\x4e\x6a\x56\x42\x73\x62\x30\x41\x67\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x4d\x41\x77\x58\x4c\x43\x33\x4c\x5a\x44\x67\x76\x54\x6c\x49\x62\x73\x7a\x77\x58\x48\x44\x67\x4c\x32\x7a\x73\x62\x57\x79\x78\x72\x4f\x43\x59\x62\x59\x7a\x78\x6e\x56\x42\x68\x7a\x4c\x69\x67\x7a\x59\x42\x32\x30\x47\x44\x67\x48\x4c\x69\x68\x44\x56\x43\x4d\x54\x5a\x43\x67\x66\x4a\x7a\x73\x62\x59\x42\x32\x39\x30\x6f\x59\x62\x48\x79\x4e\x6e\x56\x42\x68\x76\x30\x7a\x73\x62\x57\x79\x78\x72\x4f\x43\x59\x62\x59\x7a\x77\x66\x4b\x69\x68\x72\x4f\x7a\x73\x62\x4a\x42\x32\x35\x30\x79\x77\x4c\x55\x7a\x78\x69\x47\x7a\x4d\x4c\x53\x7a\x78\x6e\x35\x43\x33\x72\x4c\x42\x73\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x53\x45\x73\x34','\x7a\x65\x76\x75\x79\x4e\x79','\x7a\x67\x4c\x5a\x43\x67\x66\x30\x79\x32\x48\x66\x45\x67\x76\x4a','\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65','\x7a\x67\x76\x5a\x79\x33\x6a\x50\x43\x68\x72\x50\x42\x32\x34','\x44\x4d\x76\x59\x79\x32\x76\x53\x71\x77\x4c\x67\x42\x67\x76\x4c\x44\x66\x72\x56\x42\x32\x58\x5a\x6b\x63\x4b\x36\x69\x68\x72\x4f\x7a\x73\x62\x47\x79\x77\x4c\x47\x69\x68\x62\x48\x79\x32\x54\x48\x7a\x32\x75\x47\x41\x78\x6d\x47\x42\x4d\x39\x30\x69\x67\x4c\x55\x43\x33\x72\x48\x42\x67\x58\x4c\x7a\x63\x34\x47\x73\x77\x35\x5a\x44\x67\x66\x53\x42\x63\x62\x32\x41\x77\x65\x47\x79\x68\x62\x55\x43\x67\x30\x47\x79\x77\x72\x4b\x69\x67\x66\x50\x79\x63\x34','\x7a\x4d\x58\x4c\x7a\x78\x72\x6a\x7a\x61','\x6d\x63\x34\x57\x6c\x4a\x61','\x7a\x4d\x58\x4c\x7a\x78\x72\x46\x41\x77\x71','\x43\x67\x66\x30\x41\x61','\x42\x77\x66\x52\x7a\x75\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x7a\x4d\x39\x59\x42\x77\x66\x30','\x44\x67\x39\x56\x42\x61','\x75\x4d\x76\x4e\x7a\x78\x47\x47\x43\x67\x66\x30\x44\x67\x76\x59\x42\x49\x34','\x42\x4d\x66\x54\x7a\x71','\x75\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x62\x53\x41\x77\x35\x4c\x6c\x47','\x43\x33\x72\x59\x41\x77\x35\x4e','\x79\x32\x39\x55\x44\x67\x76\x34\x44\x61','\x44\x33\x6a\x50\x44\x67\x75','\x79\x32\x39\x55\x44\x67\x4c\x55\x44\x77\x76\x46\x42\x32\x35\x46\x7a\x78\x6a\x59\x42\x33\x69','\x7a\x4d\x58\x4c\x7a\x78\x72\x5a','\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c','\x44\x67\x39\x56\x42\x66\x39\x59\x7a\x78\x6e\x31\x42\x68\x71','\x79\x4d\x39\x56\x42\x67\x76\x48\x42\x47','\x44\x32\x39\x59\x41\x32\x76\x59\x43\x57','\x42\x77\x66\x5a\x44\x68\x6a\x48\x72\x4d\x58\x4c\x7a\x78\x72\x75\x42\x32\x39\x53\x43\x59\x47\x50\x6f\x49\x62\x30\x41\x67\x75\x47\x79\x65\x62\x54\x79\x78\x6e\x30\x43\x4d\x65\x56\x79\x32\x39\x59\x7a\x77\x61\x47\x43\x67\x66\x4a\x41\x32\x66\x4e\x7a\x73\x62\x50\x43\x59\x62\x55\x42\x33\x71\x47\x41\x77\x35\x5a\x44\x67\x66\x53\x42\x67\x76\x4b\x6c\x49\x62\x6a\x42\x4e\x6e\x30\x79\x77\x58\x53\x69\x68\x7a\x50\x79\x73\x62\x47\x43\x67\x35\x57\x42\x73\x62\x48\x7a\x67\x71\x47\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c\x79\x63\x34','\x79\x32\x39\x55\x44\x67\x76\x55\x44\x61','\x44\x76\x44\x67\x44\x30\x47','\x73\x32\x76\x59\x42\x4d\x76\x53\x69\x67\x58\x48\x42\x4d\x44\x31\x79\x77\x44\x4c\x6c\x47','\x43\x78\x62\x4b\x77\x65\x4b','\x7a\x67\x76\x53\x7a\x78\x72\x4c','\x6d\x4e\x6e\x4a\x45\x76\x62\x6d\x75\x57','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\x74\x30\x58\x4a\x73\x4e\x47','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x7a\x4e\x76\x55\x79\x33\x72\x50\x42\x32\x34','\x77\x4c\x48\x7a\x74\x31\x43','\x44\x68\x4c\x57\x7a\x78\x6e\x4a\x43\x4d\x4c\x57\x44\x61','\x75\x68\x76\x49\x42\x67\x4c\x4a\x69\x68\x72\x4c\x42\x78\x62\x53\x79\x78\x72\x4c\x69\x68\x6e\x53\x44\x77\x43\x47\x42\x33\x69\x47\x41\x77\x71\x47\x6b\x67\x75\x55\x7a\x59\x34\x47\x6a\x33\x62\x35\x44\x67\x48\x56\x42\x49\x31\x4b\x79\x78\x72\x48\x6c\x78\x6e\x4a\x41\x77\x76\x55\x79\x32\x75\x4e\x6b\x73\x34','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x7a\x77\x66\x4b','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35','\x41\x67\x66\x5a','\x41\x78\x6e\x62\x43\x4e\x6a\x48\x45\x71','\x41\x77\x31\x48\x7a\x32\x75\x56\x43\x67\x35\x4e','\x41\x77\x31\x48\x7a\x32\x75','\x79\x78\x6a\x59\x79\x78\x4b','\x6d\x74\x48\x74\x71\x78\x44\x4b\x44\x4b\x47','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x42\x77\x66\x57','\x71\x32\x66\x53\x42\x66\x72\x56\x42\x32\x58\x73\x7a\x78\x66\x31\x7a\x78\x6e\x30\x75\x32\x6e\x4f\x7a\x77\x31\x48','\x45\x66\x62\x6f\x43\x31\x6d','\x75\x4e\x76\x55\x69\x67\x65\x47\x43\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x61\x4f\x42\x4d\x38\x47\x43\x67\x76\x59\x43\x32\x4c\x5a\x44\x67\x76\x55\x44\x63\x62\x5a\x44\x67\x66\x30\x7a\x73\x4b\x47\x41\x77\x34\x47\x44\x67\x48\x4c\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x47\x55\x69\x66\x76\x5a\x7a\x73\x62\x4d\x42\x33\x69\x47\x42\x32\x35\x4c\x6c\x78\x6e\x4f\x42\x33\x71\x47\x44\x67\x66\x5a\x41\x33\x6d\x47\x42\x67\x4c\x52\x7a\x73\x61\x4e\x43\x67\x35\x57\x42\x73\x62\x50\x42\x4e\x6e\x30\x79\x77\x58\x53\x6a\x59\x62\x56\x43\x49\x61\x4e\x42\x68\x6d\x4e\x6c\x49\x62\x67\x42\x33\x69\x47\x79\x32\x39\x4b\x7a\x73\x62\x30\x41\x67\x66\x30\x69\x68\x6e\x4f\x42\x33\x76\x53\x7a\x63\x62\x5a\x41\x67\x66\x59\x7a\x73\x62\x5a\x44\x67\x66\x30\x7a\x73\x62\x48\x79\x33\x6a\x56\x43\x33\x6d\x47\x79\x32\x66\x53\x42\x68\x6d\x53\x69\x68\x62\x59\x7a\x77\x7a\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x78\x33\x6a\x31\x42\x4c\x39\x4a\x42\x32\x72\x4c\x69\x68\x44\x50\x44\x67\x47\x47\x79\x73\x62\x5a\x7a\x78\x6e\x5a\x41\x77\x39\x55\x73\x77\x71\x55','\x72\x67\x76\x53\x7a\x78\x72\x4c\x69\x68\x72\x4f\x7a\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x48\x42\x4d\x71\x47\x7a\x78\x7a\x4c\x43\x4e\x4b\x47\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x73\x62\x50\x42\x49\x62\x50\x44\x63\x34\x47\x75\x33\x72\x56\x43\x68\x6d\x47\x79\x4d\x4c\x53\x42\x67\x4c\x55\x7a\x59\x62\x50\x42\x77\x31\x4c\x7a\x67\x4c\x48\x44\x67\x76\x53\x45\x73\x34\x47\x71\x32\x66\x53\x42\x63\x62\x30\x41\x67\x4c\x5a\x69\x68\x44\x4f\x7a\x77\x34\x47\x44\x67\x48\x4c\x69\x67\x6e\x48\x42\x78\x62\x48\x41\x77\x44\x55\x69\x67\x4c\x5a\x69\x67\x72\x56\x42\x4d\x75\x37\x69\x67\x39\x59\x43\x67\x48\x48\x42\x4d\x76\x4b\x69\x67\x7a\x53\x7a\x77\x76\x30\x43\x59\x62\x52\x7a\x77\x76\x57\x69\x67\x6a\x31\x43\x4d\x35\x50\x42\x4d\x43\x47\x79\x33\x6a\x4c\x7a\x67\x4c\x30\x43\x59\x34','\x75\x33\x62\x48\x44\x32\x34\x47\x79\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x56\x7a\x49\x62\x6f\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x48\x4c\x43\x59\x62\x4d\x43\x4d\x39\x54\x69\x67\x65\x47\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x75\x53\x69\x68\x44\x50\x44\x67\x47\x47\x79\x73\x62\x4a\x42\x32\x39\x59\x7a\x67\x4c\x55\x79\x78\x72\x56\x43\x49\x62\x57\x42\x68\x76\x5a\x69\x65\x34\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x62\x5a\x41\x67\x66\x59\x41\x77\x35\x4e\x69\x67\x65\x47\x44\x32\x39\x59\x41\x33\x6e\x57\x79\x77\x6e\x4c\x6c\x49\x62\x73\x7a\x78\x72\x31\x43\x4d\x35\x5a\x69\x68\x72\x4f\x7a\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x50\x7a\x63\x62\x48\x42\x4d\x71\x47\x44\x67\x48\x4c\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x41\x77\x72\x5a\x6c\x49\x62\x66\x79\x77\x6e\x4f\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x49\x62\x4f\x79\x78\x6d\x47\x41\x78\x72\x5a\x69\x67\x39\x33\x42\x49\x62\x57\x7a\x78\x6a\x5a\x41\x78\x6e\x30\x7a\x77\x35\x30\x69\x67\x6e\x56\x7a\x67\x75\x54\x7a\x78\x48\x4c\x79\x33\x76\x30\x41\x77\x39\x55\x69\x67\x54\x4c\x43\x4d\x35\x4c\x42\x64\x53\x47\x44\x67\x48\x4c\x69\x68\x6e\x48\x42\x77\x75\x47\x44\x32\x39\x59\x41\x33\x6e\x57\x79\x77\x6e\x4c\x69\x67\x4c\x5a\x69\x67\x31\x56\x44\x77\x35\x30\x7a\x77\x71\x47\x79\x77\x6e\x59\x42\x33\x6e\x5a\x69\x68\x72\x4f\x7a\x77\x30\x55\x69\x65\x6e\x70\x75\x31\x72\x74\x69\x66\x6e\x64\x71\x75\x58\x66\x69\x65\x58\x6a\x74\x4b\x76\x62\x75\x4b\x58\x7a\x69\x68\x44\x50\x44\x67\x47\x47\x79\x68\x44\x56\x43\x4d\x54\x4c\x43\x4e\x6e\x47\x6c\x49\x62\x76\x43\x32\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35\x69\x68\x44\x4f\x7a\x77\x34\x47\x7a\x67\x39\x55\x7a\x73\x34','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x43\x4d\x76\x5a\x44\x77\x58\x30\x43\x57','\x79\x33\x44\x4b','\x6d\x4a\x65\x34\x6e\x66\x50\x4f\x75\x4d\x76\x6f\x79\x47','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x76\x67\x39\x56\x42\x61','\x71\x32\x66\x57\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x69\x64\x65\x57\x6d\x63\x34','\x43\x67\x35\x4e','\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x76\x46\x41\x77\x71','\x7a\x4d\x4c\x53\x44\x67\x76\x59','\x42\x77\x66\x34\x78\x33\x6a\x4c\x43\x33\x76\x53\x44\x68\x6d','\x43\x32\x39\x31\x43\x4d\x6e\x4c','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x5a\x7a\x77\x66\x59\x79\x32\x47','\x45\x68\x6e\x70\x7a\x32\x30','\x72\x78\x48\x4c\x79\x33\x76\x30\x7a\x73\x62\x4a\x42\x32\x72\x4c\x69\x67\x4c\x55\x69\x67\x65\x47\x43\x67\x76\x59\x43\x32\x4c\x5a\x44\x67\x76\x55\x44\x63\x62\x53\x79\x77\x35\x4e\x44\x77\x66\x4e\x7a\x73\x62\x52\x7a\x78\x6a\x55\x7a\x77\x57\x47\x41\x77\x35\x5a\x41\x77\x72\x4c\x69\x68\x72\x4f\x7a\x73\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x6c\x49\x62\x77\x79\x78\x6a\x50\x79\x77\x6a\x53\x7a\x78\x6d\x47\x43\x67\x76\x59\x43\x32\x4c\x5a\x44\x63\x62\x48\x79\x33\x6a\x56\x43\x33\x6d\x47\x79\x32\x66\x53\x42\x68\x6d\x47\x44\x32\x4c\x30\x41\x63\x62\x30\x41\x67\x75\x47\x43\x32\x66\x54\x7a\x73\x62\x5a\x7a\x78\x6e\x5a\x41\x77\x39\x55\x6c\x49\x62\x73\x7a\x78\x72\x31\x43\x4d\x35\x5a\x69\x68\x6e\x30\x7a\x67\x39\x31\x44\x63\x57\x47\x43\x33\x72\x4b\x7a\x78\x6a\x59\x6c\x63\x62\x4c\x45\x67\x4c\x30\x69\x67\x6e\x56\x7a\x67\x75\x53\x69\x67\x66\x55\x7a\x63\x62\x48\x69\x68\x72\x35\x43\x67\x76\x4b\x69\x67\x62\x59\x7a\x78\x6e\x31\x42\x68\x72\x5a\x79\x63\x62\x48\x43\x4e\x6a\x48\x45\x73\x62\x4a\x42\x32\x35\x30\x79\x77\x4c\x55\x41\x77\x35\x4e\x69\x67\x31\x48\x44\x68\x62\x53\x42\x33\x72\x53\x41\x77\x69\x47\x7a\x4d\x4c\x4e\x44\x78\x6a\x4c\x43\x59\x61\x4f\x79\x4d\x66\x5a\x7a\x74\x79\x30\x69\x66\x62\x6f\x72\x59\x4b\x53\x69\x68\x62\x48\x42\x4d\x72\x48\x43\x59\x62\x65\x79\x78\x72\x48\x72\x4e\x6a\x48\x42\x77\x76\x5a\x6c\x63\x62\x6b\x75\x30\x39\x6f\x69\x68\x7a\x50\x79\x73\x62\x4b\x41\x78\x6e\x57\x42\x67\x66\x35\x6b\x63\x4b\x53\x69\x67\x39\x59\x69\x67\x76\x59\x43\x4d\x39\x59\x43\x59\x34\x47\x75\x68\x6a\x4c\x7a\x4d\x76\x59\x69\x68\x72\x4f\x41\x78\x6d\x47\x42\x33\x7a\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x78\x32\x76\x34\x7a\x77\x6d\x47\x7a\x4d\x39\x59\x69\x67\x66\x55\x45\x73\x62\x4a\x42\x32\x72\x4c\x69\x68\x72\x4f\x79\x78\x71\x47\x42\x4d\x76\x4c\x7a\x68\x6d\x47\x43\x33\x72\x59\x44\x77\x6e\x30\x44\x78\x6a\x4c\x7a\x63\x62\x56\x44\x78\x72\x57\x44\x78\x71\x55','\x44\x67\x76\x34\x44\x61','\x43\x67\x66\x59\x43\x32\x75','\x43\x66\x7a\x34\x71\x75\x38','\x44\x4d\x76\x59\x79\x32\x76\x53\x71\x77\x4c\x75\x42\x32\x39\x53\x43\x59\x47\x50\x6f\x49\x62\x30\x41\x67\x75\x47\x79\x67\x66\x50\x79\x63\x62\x57\x79\x77\x6e\x52\x79\x77\x44\x4c\x69\x67\x4c\x5a\x69\x67\x35\x56\x44\x63\x62\x50\x42\x4e\x6e\x30\x79\x77\x58\x53\x7a\x77\x71\x55\x69\x65\x4c\x55\x43\x33\x72\x48\x42\x67\x57\x47\x41\x78\x71\x47\x44\x4d\x4c\x48\x69\x67\x62\x57\x42\x4e\x62\x54\x69\x67\x66\x4b\x7a\x63\x62\x48\x41\x77\x61\x47\x6b\x67\x66\x55\x7a\x63\x62\x57\x41\x77\x6e\x52\x69\x67\x66\x55\x69\x67\x62\x61\x79\x77\x4b\x54\x43\x32\x72\x52\x6c\x59\x50\x47\x69\x67\x31\x56\x7a\x67\x76\x53\x69\x67\x66\x4b\x79\x78\x62\x30\x7a\x78\x69\x50\x6c\x47','\x76\x32\x39\x59\x41\x32\x4c\x55\x7a\x59\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x56\x43\x4e\x4b\x55\x69\x65\x39\x57\x44\x67\x4c\x56\x42\x4d\x66\x53\x6c\x47','\x71\x32\x39\x55\x44\x67\x4c\x55\x44\x77\x75\x47\x7a\x67\x76\x53\x7a\x78\x72\x50\x42\x4d\x43\x47\x43\x4d\x76\x54\x79\x77\x4c\x55\x41\x77\x35\x4e\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x76\x5a\x69\x67\x4c\x4d\x69\x67\x39\x55\x7a\x73\x62\x4d\x79\x77\x4c\x53\x43\x59\x34','\x41\x4e\x6e\x56\x42\x4c\x6e\x4a\x41\x67\x76\x54\x79\x71','\x74\x67\x4c\x5a\x44\x63\x62\x30\x41\x67\x75\x47\x7a\x4d\x58\x4c\x7a\x78\x71\x4e\x43\x59\x62\x54\x79\x77\x6e\x4f\x41\x77\x35\x4c\x43\x59\x62\x48\x42\x4d\x71\x47\x44\x67\x48\x4c\x41\x78\x69\x47\x43\x67\x76\x59\x6c\x77\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x43\x33\x72\x48\x44\x67\x75\x47\x6b\x68\x6a\x31\x42\x4d\x35\x50\x42\x4d\x43\x47\x6c\x59\x62\x5a\x44\x67\x39\x57\x43\x67\x76\x4b\x69\x63\x38\x47\x7a\x4d\x66\x50\x42\x67\x76\x4b\x6b\x73\x62\x57\x42\x68\x76\x5a\x69\x67\x58\x48\x43\x33\x71\x54\x44\x78\x6e\x4c\x7a\x63\x62\x30\x41\x77\x31\x4c\x43\x33\x72\x48\x42\x78\x62\x5a\x6c\x47','\x43\x32\x76\x30','\x71\x77\x72\x65\x76\x30\x71','\x75\x67\x76\x59\x6c\x77\x6e\x48\x42\x67\x57\x47\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x63\x34\x47\x6d\x63\x62\x4b\x41\x78\x6e\x48\x79\x4d\x58\x4c\x43\x59\x34\x47\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x43\x67\x66\x30\x44\x67\x76\x59\x42\x47','\x42\x67\x4c\x5a\x44\x61','\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x59\x39\x5a\x7a\x78\x6a\x32\x7a\x78\x69\x56\x41\x77\x35\x4b\x7a\x78\x47\x55\x41\x4e\x6d','\x43\x4e\x76\x55\x71\x32\x39\x4b\x7a\x71','\x75\x31\x76\x64\x71\x30\x47','\x41\x77\x35\x57\x44\x78\x72\x74\x79\x32\x48\x4c\x42\x77\x65','\x6d\x74\x43\x30\x6d\x74\x75\x57\x6e\x67\x54\x56\x79\x77\x50\x49\x44\x57','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x5a\x43\x67\x66\x33\x42\x47','\x41\x4e\x62\x4c\x7a\x57','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x4b\x41\x78\x6e\x57\x79\x78\x72\x4a\x41\x61','\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65\x47\x43\x33\x72\x48\x42\x78\x62\x4c\x7a\x63\x62\x56\x42\x49\x62\x4c\x44\x4d\x76\x59\x45\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x54\x7a\x77\x31\x49\x7a\x78\x69\x55','\x6d\x5a\x69\x34\x6e\x64\x6d\x5a\x41\x31\x44\x66\x74\x30\x58\x76','\x75\x32\x76\x59\x44\x4d\x76\x59','\x6f\x74\x65\x34\x6d\x4a\x69\x57\x74\x75\x66\x6f\x72\x65\x39\x4c','\x41\x77\x35\x57\x44\x78\x71','\x76\x33\x6a\x50\x44\x67\x75\x47\x79\x73\x62\x4d\x41\x77\x58\x4c\x69\x67\x4c\x55\x69\x68\x72\x4f\x7a\x73\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x6c\x49\x62\x64\x43\x4d\x76\x48\x44\x67\x76\x5a\x69\x68\x62\x48\x43\x4d\x76\x55\x44\x63\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x56\x43\x4d\x4c\x4c\x43\x59\x62\x48\x43\x59\x62\x55\x7a\x77\x76\x4b\x7a\x77\x71\x55\x69\x65\x39\x32\x7a\x78\x6a\x33\x43\x4d\x4c\x30\x7a\x78\x6d\x47\x7a\x78\x48\x50\x43\x33\x72\x50\x42\x4d\x43\x47\x7a\x4d\x4c\x53\x7a\x78\x6d\x55','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x59\x39\x30\x45\x78\x62\x4c\x43\x59\x35\x51\x43\x57','\x79\x4d\x58\x4e\x79\x76\x47','\x43\x32\x76\x48\x43\x4d\x6e\x4f','\x6d\x74\x61\x59\x6e\x5a\x72\x6b\x7a\x68\x4c\x4f\x44\x75\x4b','\x43\x32\x39\x54\x7a\x71','\x7a\x32\x76\x30','\x6f\x75\x6e\x4a\x79\x75\x44\x5a\x43\x71','\x74\x4b\x72\x6e\x42\x68\x4b','\x79\x77\x58\x53','\x75\x4e\x76\x55\x69\x67\x65\x47\x43\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x62\x56\x42\x49\x62\x48\x69\x67\x7a\x53\x7a\x77\x76\x30\x6a\x33\x6d\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x62\x50\x42\x49\x62\x57\x79\x78\x6a\x48\x42\x67\x58\x4c\x42\x63\x34\x47\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x68\x6d\x47\x44\x67\x38\x47\x79\x77\x58\x53\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x4e\x6d\x37\x69\x68\x62\x48\x43\x33\x6d\x47\x79\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x76\x5a\x79\x63\x62\x30\x42\x59\x62\x30\x79\x78\x6a\x4e\x7a\x78\x71\x47\x43\x33\x62\x4c\x79\x32\x4c\x4d\x41\x77\x6d\x47\x42\x32\x35\x4c\x43\x59\x34\x47\x75\x4d\x76\x30\x44\x78\x6a\x55\x43\x59\x62\x57\x7a\x78\x69\x54\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x73\x62\x37\x42\x32\x53\x53\x69\x68\x6a\x4c\x43\x33\x76\x53\x44\x64\x38\x53\x69\x67\x76\x59\x43\x4d\x39\x59\x70\x33\x30\x47\x7a\x77\x35\x30\x43\x4d\x4c\x4c\x43\x59\x34','\x74\x67\x4c\x5a\x44\x63\x62\x4c\x42\x4e\x72\x59\x41\x77\x76\x5a\x69\x67\x4c\x55\x69\x67\x65\x47\x7a\x67\x4c\x59\x7a\x77\x6e\x30\x42\x33\x6a\x35\x69\x68\x44\x50\x44\x67\x47\x47\x43\x32\x4c\x36\x7a\x73\x57\x47\x44\x68\x4c\x57\x7a\x73\x57\x47\x79\x77\x35\x4b\x69\x67\x31\x56\x7a\x67\x75\x55','\x72\x4e\x76\x53\x42\x63\x62\x4d\x41\x77\x58\x4c\x69\x67\x6e\x56\x42\x4e\x72\x4c\x42\x4e\x72\x5a\x6c\x47','\x75\x4d\x4c\x57\x7a\x33\x6a\x4c\x43\x63\x31\x5a\x44\x68\x4c\x53\x7a\x73\x62\x4a\x42\x32\x72\x4c\x69\x68\x6e\x4c\x79\x78\x6a\x4a\x41\x63\x34\x47\x75\x4d\x76\x30\x44\x78\x6a\x55\x43\x59\x62\x54\x79\x78\x72\x4a\x41\x67\x4c\x55\x7a\x59\x62\x53\x41\x77\x35\x4c\x43\x59\x62\x33\x41\x78\x72\x4f\x69\x68\x6e\x31\x43\x4e\x6a\x56\x44\x77\x35\x4b\x41\x77\x35\x4e\x69\x67\x6e\x56\x42\x4e\x72\x4c\x45\x68\x71\x55','\x41\x30\x6e\x53\x43\x76\x4b','\x74\x30\x48\x4f\x7a\x4d\x71','\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\x75\x67\x76\x59\x6c\x77\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x63\x34\x47\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4c\x45\x67\x76\x4a','\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x66\x39\x54\x43\x57','\x74\x67\x4c\x5a\x44\x66\x72\x56\x42\x32\x58\x5a\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x66\x6e\x4a\x41\x67\x76\x54\x79\x71','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x33\x43\x4d\x4c\x30\x7a\x71','\x43\x32\x76\x30\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x65\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x75\x32\x39\x31\x43\x4d\x6e\x4c\x69\x67\x6e\x56\x7a\x67\x75\x47\x44\x67\x38\x47\x43\x4e\x76\x55\x6c\x49\x62\x6e\x44\x77\x58\x30\x41\x73\x31\x53\x41\x77\x35\x4c\x69\x68\x6e\x31\x43\x68\x62\x56\x43\x4e\x72\x4c\x7a\x63\x34','\x43\x33\x7a\x4e','\x43\x68\x4c\x30\x41\x67\x39\x55','\x79\x77\x58\x53\x42\x33\x43','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x74\x77\x6e\x57\x75\x32\x76\x59\x44\x4d\x76\x59\x6b\x63\x4b\x36\x69\x68\x72\x4f\x7a\x73\x62\x47\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x32\x61\x47\x43\x67\x66\x4a\x41\x32\x66\x4e\x7a\x73\x62\x50\x43\x59\x62\x55\x42\x33\x71\x47\x41\x77\x35\x5a\x44\x67\x66\x53\x42\x67\x76\x4b\x6c\x49\x62\x6a\x42\x4e\x6e\x30\x79\x77\x58\x53\x69\x67\x4c\x30\x69\x68\x7a\x50\x79\x73\x62\x47\x43\x67\x35\x57\x42\x73\x62\x48\x7a\x67\x71\x47\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x32\x61\x55','\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x78\x6d','\x44\x68\x4c\x57\x7a\x71','\x79\x32\x58\x56\x43\x32\x75','\x43\x33\x72\x48\x44\x68\x76\x5a','\x75\x4e\x44\x5a\x73\x68\x61','\x41\x77\x54\x34\x43\x32\x69','\x44\x32\x39\x59\x41\x32\x76\x59\x6c\x71','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x7a\x78\x48\x4c\x79\x57','\x41\x77\x31\x48\x7a\x32\x75\x56\x41\x4e\x62\x4c\x7a\x57','\x79\x78\x6a\x4e\x44\x77\x31\x4c\x42\x4e\x72\x5a'];a0_0x1ecd=function(){return _0x8b9be4;};return a0_0x1ecd();}function toAnthropicContent(_0x1bcf6e){const _0x5c1dac=a0_0x3f0607,_0xc8d584={'\x5a\x49\x64\x45\x72':function(_0x435e65,_0x2d8946){return _0x435e65(_0x2d8946);}};if(!isCodeExecutionResultWithImages(_0x1bcf6e))return serializeToolResult(_0x1bcf6e);const _0x59c97b=[],_0x547f9f={..._0x1bcf6e,'\x72\x65\x73\x75\x6c\x74\x73':_0x1bcf6e['\x72\x65\x73\x75\x6c\x74\x73']['\x66\x69\x6c\x74\x65\x72'](_0x12c24f=>_0x12c24f[_0x5c1dac(0x213)]!==_0x5c1dac(0x1bf))};_0x59c97b[_0x5c1dac(0x18e)]({'\x74\x79\x70\x65':'\x74\x65\x78\x74','\x74\x65\x78\x74':serializeToolResult(_0x547f9f)});for(const _0x205526 of _0x1bcf6e[_0x5c1dac(0x1ca)])if(_0xc8d584['\x5a\x49\x64\x45\x72'](isImagePart,_0x205526))_0x59c97b[_0x5c1dac(0x18e)]({'\x74\x79\x70\x65':_0x5c1dac(0x1bf),'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':_0x5c1dac(0x210),'\x6d\x65\x64\x69\x61\x5f\x74\x79\x70\x65':imageMediaType(_0x205526[_0x5c1dac(0x19e)]),'\x64\x61\x74\x61':_0x205526['\x64\x61\x74\x61']}});return _0x59c97b;}function isImagePart(_0x54a111){const _0x427473=a0_0x3f0607,_0x4954d2={'\x49\x6e\x6d\x62\x78':'\x69\x6d\x61\x67\x65'};return _0x54a111[_0x427473(0x213)]===_0x4954d2['\x49\x6e\x6d\x62\x78'];}function isCodeExecutionResultWithImages(_0x3633d6){const _0x139a31=a0_0x3f0607,_0x2efaa4={'\x71\x70\x64\x58\x49':function(_0x2d9bea,_0xed0a8){return _0x2d9bea!==_0xed0a8;},'\x6b\x70\x52\x75\x76':'\x6f\x62\x6a\x65\x63\x74'};if(!_0x3633d6||_0x2efaa4[_0x139a31(0x1b0)](typeof _0x3633d6,_0x2efaa4['\x6b\x70\x52\x75\x76']))return![];const _0x1322c4=_0x3633d6[_0x139a31(0x1ca)];if(!Array[_0x139a31(0x1bd)](_0x1322c4))return![];return _0x1322c4[_0x139a31(0x1fa)](_0x1996ad=>_0x1996ad&&typeof _0x1996ad==='\x6f\x62\x6a\x65\x63\x74'&&_0x1996ad[_0x139a31(0x213)]===_0x139a31(0x1bf));}function imageMediaType(_0x393e89){const _0x2e9a8a=a0_0x3f0607,_0x36e8fe={'\x53\x55\x43\x43\x48':_0x2e9a8a(0x21b),'\x4f\x48\x68\x66\x64':_0x2e9a8a(0x1be)};switch(_0x393e89){case _0x2e9a8a(0x1cf):return _0x2e9a8a(0x1be);case _0x2e9a8a(0x1ec):return _0x36e8fe[_0x2e9a8a(0x1e8)];case _0x2e9a8a(0x20d):return _0x36e8fe[_0x2e9a8a(0x204)];}}const FLEET_TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x70\x61\x77\x6e':{'\x6e\x61\x6d\x65':a0_0x3f0607(0x1eb),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1c8),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1b9)},'\x77\x6f\x72\x6b\x65\x72\x73':{'\x74\x79\x70\x65':a0_0x3f0607(0x1f4),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x18d)},'\x6d\x65\x74\x61\x64\x61\x74\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{},'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':!![],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1ee)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64',a0_0x3f0607(0x1ab)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x374326})=>async _0xba1fee=>{const _0x25a850=a0_0x3f0607,_0x5df3cb=await _0x374326[_0x25a850(0x1a7)]['\x63\x72\x65\x61\x74\x65\x57\x69\x74\x68\x43\x6f\x6f\x72\x64\x69\x6e\x61\x74\x6f\x72']({'\x64\x65\x66\x61\x75\x6c\x74\x73':{'\x70\x75\x62\x6c\x69\x63\x54\x65\x6d\x70\x6c\x61\x74\x65\x49\x64':_0xba1fee[_0x25a850(0x1d0)]},'\x77\x6f\x72\x6b\x65\x72\x73':Array[_0x25a850(0x227)]({'\x6c\x65\x6e\x67\x74\x68':_0xba1fee[_0x25a850(0x1ab)]},(_0x23c544,_0x2af01b)=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x25a850(0x218)+_0x2af01b})),'\x6d\x65\x74\x61\x64\x61\x74\x61':_0xba1fee[_0x25a850(0x196)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x5df3cb[_0x25a850(0x199)],'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64\x73':_0x5df3cb['\x69\x64\x73']};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x69\x73\x70\x61\x74\x63\x68':{'\x6e\x61\x6d\x65':a0_0x3f0607(0x1ed),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1ff),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3)},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1a2)},'\x6d\x61\x63\x68\x69\x6e\x65\x73':{'\x74\x79\x70\x65':a0_0x3f0607(0x1c0),'\x69\x74\x65\x6d\x73':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3)},'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x21d)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':'\x6e\x75\x6d\x62\x65\x72','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x206)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3f0607(0x19b),a0_0x3f0607(0x205)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x3d1d84})=>async _0xe999a9=>{const _0x19a384=a0_0x3f0607;return await(await _0x3d1d84[_0x19a384(0x1a7)]['\x6c\x69\x73\x74']({'\x66\x6c\x65\x65\x74\x49\x64':_0xe999a9['\x66\x6c\x65\x65\x74\x5f\x69\x64']}))[_0x19a384(0x195)](_0xe999a9['\x63\x6f\x6d\x6d\x61\x6e\x64'],{'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0xe999a9[_0x19a384(0x212)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0xe999a9[_0x19a384(0x208)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1e0),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3f0607(0x19b)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0xe79e1b})=>async _0x44e01c=>{const _0x261898=a0_0x3f0607,_0xd028e6=await _0xe79e1b[_0x261898(0x1a7)][_0x261898(0x1e5)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x44e01c[_0x261898(0x19b)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0xd028e6[_0x261898(0x199)],'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0xd028e6['\x69\x64\x73']['\x6d\x61\x70'](_0x2fe948=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x2fe948,'\x73\x74\x61\x74\x75\x73':_0xd028e6[_0x261898(0x1fb)](_0x2fe948)[_0x261898(0x215)]}))};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x65\x73\x74\x72\x6f\x79':{'\x6e\x61\x6d\x65':a0_0x3f0607(0x1bb),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1c7),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x3f0607(0x18b),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x3f0607(0x1a3)},'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':a0_0x3f0607(0x1aa),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x3f0607(0x1de)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x3f0607(0x19b)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x46473e})=>async _0x3d17ae=>{const _0x5e1260=a0_0x3f0607;return await(await _0x46473e[_0x5e1260(0x1a7)][_0x5e1260(0x1e5)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x3d17ae[_0x5e1260(0x19b)]}))[_0x5e1260(0x1b1)]({'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x4f\x6e\x45\x72\x72\x6f\x72':_0x3d17ae[_0x5e1260(0x1a6)]}),{'\x66\x6c\x65\x65\x74\x49\x64':_0x3d17ae[_0x5e1260(0x19b)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_FLEET_TOOL_SPECS=Object[a0_0x3f0607(0x18c)](FLEET_TOOL_SPECS);function selectFleetSpecs(_0x5bebd0){const _0x60a9e5=a0_0x3f0607;if(!_0x5bebd0||_0x5bebd0['\x6c\x65\x6e\x67\x74\x68']===0x0)return ALL_FLEET_TOOL_SPECS;const _0x5295d4=new Set(_0x5bebd0);return Object[_0x60a9e5(0x225)](FLEET_TOOL_SPECS)['\x66\x69\x6c\x74\x65\x72'](_0x17d9e7=>_0x5295d4[_0x60a9e5(0x1bc)](_0x17d9e7))[_0x60a9e5(0x1c3)](_0x4806d9=>FLEET_TOOL_SPECS[_0x4806d9]);}function anthropicFleetTools(_0x2e68e3,_0x330ef9={}){const _0x328a45=a0_0x3f0607,_0x2bb5c6={'\x5a\x58\x59\x4f\x57':function(_0x3f3d6c,_0x11f3a4){return _0x3f3d6c(_0x11f3a4);}},_0x40d008=selectFleetSpecs(_0x330ef9['\x61\x6c\x6c\x6f\x77']),_0x3b12ae=buildFleetHandlers(_0x40d008,{'\x63\x6c\x69\x65\x6e\x74':_0x2e68e3});return{'\x74\x6f\x6f\x6c\x73':_0x40d008['\x6d\x61\x70'](_0x2f963b=>({'\x6e\x61\x6d\x65':_0x2f963b[_0x328a45(0x1a1)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2f963b[_0x328a45(0x197)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x2f963b['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x1f7bf7){const _0x1b8225=_0x328a45,_0x4a8f50=_0x3b12ae[_0x1b8225(0x1fb)](_0x1f7bf7[_0x1b8225(0x1a1)]);if(!_0x4a8f50)return{'\x74\x79\x70\x65':_0x1b8225(0x1a9),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1f7bf7['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x66\x6c\x65\x65\x74\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x1f7bf7['\x6e\x61\x6d\x65'],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x47f1b4=await _0x2bb5c6[_0x1b8225(0x1b7)](_0x4a8f50,_0x1f7bf7[_0x1b8225(0x1f2)]);return{'\x74\x79\x70\x65':_0x1b8225(0x1a9),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1f7bf7['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x2bb5c6[_0x1b8225(0x1b7)](serializeToolResult,_0x47f1b4)};}catch(_0x45df3f){return{'\x74\x79\x70\x65':_0x1b8225(0x1a9),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1f7bf7['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x45df3f instanceof Error?_0x45df3f[_0x1b8225(0x1d4)]:String(_0x45df3f),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiFleetTools(_0x3d3d52,_0x198182={}){const _0x5beedb=a0_0x3f0607,_0x2255ac={'\x62\x6c\x67\x61\x58':_0x5beedb(0x18b),'\x6b\x43\x6c\x71\x59':function(_0x30af1e,_0x19918b){return _0x30af1e(_0x19918b);},'\x69\x6b\x78\x73\x62':function(_0x4b95e3,_0x5f1d0a){return _0x4b95e3(_0x5f1d0a);}},_0x3323f5=_0x2255ac[_0x5beedb(0x217)](selectFleetSpecs,_0x198182[_0x5beedb(0x20f)]),_0xcb40=buildFleetHandlers(_0x3323f5,{'\x63\x6c\x69\x65\x6e\x74':_0x3d3d52});return{'\x74\x6f\x6f\x6c\x73':_0x3323f5[_0x5beedb(0x1c3)](_0x23ae0e=>({'\x74\x79\x70\x65':'\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x23ae0e[_0x5beedb(0x1a1)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x23ae0e[_0x5beedb(0x197)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x23ae0e[_0x5beedb(0x1e9)]}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0xcf2c88){const _0x3b66e8=_0x5beedb,_0x254d50=_0xcb40['\x67\x65\x74'](_0xcf2c88[_0x3b66e8(0x1b6)][_0x3b66e8(0x1a1)]);if(!_0x254d50)return{'\x72\x6f\x6c\x65':_0x3b66e8(0x19f),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0xcf2c88['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x3b66e8(0x1b5)]({'\x65\x72\x72\x6f\x72':_0x3b66e8(0x1c9)+_0xcf2c88[_0x3b66e8(0x1b6)][_0x3b66e8(0x1a1)]})};let _0x4a3fa3={};try{const _0x32ae50=JSON[_0x3b66e8(0x1da)](_0xcf2c88[_0x3b66e8(0x1b6)][_0x3b66e8(0x21c)]||'\x7b\x7d');if(_0x32ae50&&typeof _0x32ae50===_0x2255ac[_0x3b66e8(0x1f7)])_0x4a3fa3=_0x32ae50;}catch{}try{const _0x34b649=await _0x254d50(_0x4a3fa3);return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0xcf2c88['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x34b649)};}catch(_0x48ea0e){return{'\x72\x6f\x6c\x65':_0x3b66e8(0x19f),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0xcf2c88['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x3b66e8(0x1b5)]({'\x65\x72\x72\x6f\x72':_0x48ea0e instanceof Error?_0x48ea0e[_0x3b66e8(0x1d4)]:_0x2255ac[_0x3b66e8(0x203)](String,_0x48ea0e)})};}}};}async function vercelAiFleetTools(_0x22dc95,_0xe878a7={}){const _0x4e29f5=a0_0x3f0607,_0x505b33={'\x6b\x75\x44\x77\x66':function(_0x12773b,_0x4889f6,_0x1d6d2f){return _0x12773b(_0x4889f6,_0x1d6d2f);}};let _0x34d3bb;try{_0x34d3bb=await import('\x61\x69');}catch{throw new Error(_0x4e29f5(0x198));}const _0x2ba49c=selectFleetSpecs(_0xe878a7[_0x4e29f5(0x20f)]),_0x17c3f5=_0x505b33['\x6b\x75\x44\x77\x66'](buildFleetHandlers,_0x2ba49c,{'\x63\x6c\x69\x65\x6e\x74':_0x22dc95}),_0x55ba63={};for(const _0x227b52 of _0x2ba49c)_0x55ba63[_0x227b52[_0x4e29f5(0x1a1)]]=_0x34d3bb[_0x4e29f5(0x19f)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x227b52[_0x4e29f5(0x197)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x34d3bb[_0x4e29f5(0x1df)](_0x227b52['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']),'\x65\x78\x65\x63\x75\x74\x65':async _0x4e037d=>{const _0x85abfb=_0x4e29f5,_0x1b5f99=_0x17c3f5[_0x85abfb(0x1fb)](_0x227b52['\x6e\x61\x6d\x65']);if(!_0x1b5f99)throw new Error(_0x85abfb(0x1c9)+_0x227b52['\x6e\x61\x6d\x65']);return serializeToolResult(await _0x1b5f99(_0x4e037d));}});return _0x55ba63;}async function mastraFleetTools(_0x488b27,_0x4bfd4e={}){const _0x380c07=a0_0x3f0607,_0x3b2927={'\x78\x64\x5a\x53\x76':function(_0x6ae001,_0x2e5a7c){return _0x6ae001(_0x2e5a7c);}};let _0x2466ac;try{_0x2466ac=await import('\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65');}catch{throw new Error(_0x380c07(0x1ac));}const _0x2321e4=_0x3b2927[_0x380c07(0x21e)](selectFleetSpecs,_0x4bfd4e['\x61\x6c\x6c\x6f\x77']),_0x5c0d87=buildFleetHandlers(_0x2321e4,{'\x63\x6c\x69\x65\x6e\x74':_0x488b27}),_0xaa7110={};for(const _0x42298a of _0x2321e4)_0xaa7110[_0x42298a[_0x380c07(0x1a1)]]=_0x2466ac[_0x380c07(0x1cd)]({'\x69\x64':_0x42298a[_0x380c07(0x1a1)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x42298a['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x2466ac['\x6a\x73\x6f\x6e\x53\x63\x68\x65\x6d\x61']?_0x2466ac[_0x380c07(0x1df)](_0x42298a['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']):_0x42298a[_0x380c07(0x1e9)],'\x65\x78\x65\x63\x75\x74\x65':async _0x33aade=>{const _0x508384=_0x380c07,_0x5b7f4b=_0x5c0d87[_0x508384(0x1fb)](_0x42298a[_0x508384(0x1a1)]);if(!_0x5b7f4b)throw new Error(_0x508384(0x1c9)+_0x42298a['\x6e\x61\x6d\x65']);return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0x5b7f4b(_0x33aade?.['\x63\x6f\x6e\x74\x65\x78\x74']??{}))};}});return _0xaa7110;}function buildFleetHandlers(_0x3d71d6,_0x487c52){const _0x395f6f=a0_0x3f0607,_0x5f3550=new Map();for(const _0x34ec4d of _0x3d71d6)_0x5f3550[_0x395f6f(0x1e1)](_0x34ec4d['\x6e\x61\x6d\x65'],_0x34ec4d[_0x395f6f(0x19d)](_0x487c52));return _0x5f3550;}async function mastraTools(_0x1826ad,_0x463018={}){const _0x562ba9=a0_0x3f0607,_0x3532b4={'\x41\x64\x44\x57\x44':function(_0x456a43,_0x1556a1){return _0x456a43(_0x1556a1);},'\x4e\x44\x4d\x6c\x79':_0x562ba9(0x1a8),'\x4d\x71\x62\x43\x77':'\x6d\x61\x73\x74\x72\x61\x54\x6f\x6f\x6c\x73\x28\x29\x3a\x20\x74\x68\x65\x20\x60\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65\x60\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x2e\x20\x49\x6e\x73\x74\x61\x6c\x6c\x20\x69\x74\x20\x76\x69\x61\x20\x60\x70\x6e\x70\x6d\x20\x61\x64\x64\x20\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65\x60\x2e'};let _0x4042da;try{_0x4042da=await import(_0x3532b4[_0x562ba9(0x1fd)]);}catch{throw new Error(_0x3532b4['\x4d\x71\x62\x43\x77']);}const _0xb084b4=selectSpecs(_0x463018[_0x562ba9(0x20f)]),_0x46717a={'\x62\x6f\x78':_0x1826ad,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x463018[_0x562ba9(0x219)]},_0x31730d={};for(const _0x1ed0b1 of _0xb084b4){const _0x22de80=_0x1ed0b1[_0x562ba9(0x19d)](_0x46717a);_0x31730d[_0x1ed0b1['\x6e\x61\x6d\x65']]=_0x4042da[_0x562ba9(0x1cd)]({'\x69\x64':_0x1ed0b1[_0x562ba9(0x1a1)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x1ed0b1[_0x562ba9(0x197)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x4042da[_0x562ba9(0x1df)]?_0x4042da[_0x562ba9(0x1df)](_0x1ed0b1[_0x562ba9(0x1e9)]):_0x1ed0b1[_0x562ba9(0x1e9)],'\x65\x78\x65\x63\x75\x74\x65':async _0xc50d2b=>{const _0x480de2=_0x562ba9;return{'\x72\x65\x73\x75\x6c\x74':_0x3532b4[_0x480de2(0x1e2)](serializeToolResult,await _0x22de80(_0xc50d2b?.[_0x480de2(0x1a4)]??{}))};}});}return _0x31730d;}function openaiTools(_0x4d2ce4,_0x5eb147={}){const _0xf54681=a0_0x3f0607,_0x4e44dd={'\x75\x57\x46\x77\x48':function(_0x49a300,_0x37a654){return _0x49a300===_0x37a654;},'\x4f\x4c\x63\x4a\x78':_0xf54681(0x18b),'\x78\x50\x4e\x73\x53':function(_0x498645,_0x348b77){return _0x498645!==_0x348b77;},'\x64\x45\x54\x62\x76':_0xf54681(0x19f)},_0xe5276f=selectSpecs(_0x5eb147[_0xf54681(0x20f)]),_0x3c6808={'\x62\x6f\x78':_0x4d2ce4,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x5eb147[_0xf54681(0x219)]},_0x140770=new Map();for(const _0x277f46 of _0xe5276f)_0x140770['\x73\x65\x74'](_0x277f46[_0xf54681(0x1a1)],_0x277f46[_0xf54681(0x19d)](_0x3c6808));const _0x17352c=_0xe5276f[_0xf54681(0x1c3)](_0x4a032b=>({'\x74\x79\x70\x65':_0xf54681(0x1b6),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x4a032b[_0xf54681(0x1a1)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4a032b[_0xf54681(0x197)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x4a032b[_0xf54681(0x1e9)]}}));function _0x4909c4(_0xc08054){const _0x53a748=_0xf54681;if(!_0xc08054)return{};try{const _0x4669bf=JSON['\x70\x61\x72\x73\x65'](_0xc08054);return _0x4e44dd[_0x53a748(0x1ae)](typeof _0x4669bf,_0x4e44dd[_0x53a748(0x1b4)])&&_0x4e44dd[_0x53a748(0x1c5)](_0x4669bf,null)?_0x4669bf:{};}catch{return{};}}async function _0x187c13(_0x10cd28){const _0x366d86=_0xf54681,_0x17e311=_0x140770[_0x366d86(0x1fb)](_0x10cd28[_0x366d86(0x1b6)][_0x366d86(0x1a1)]);if(!_0x17e311)return{'\x72\x6f\x6c\x65':_0x4e44dd[_0x366d86(0x194)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x10cd28['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x366d86(0x1b5)]({'\x65\x72\x72\x6f\x72':_0x366d86(0x1c2)+_0x10cd28[_0x366d86(0x1b6)][_0x366d86(0x1a1)]})};try{const _0x3e8438=await _0x17e311(_0x4909c4(_0x10cd28['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x366d86(0x21c)]));return{'\x72\x6f\x6c\x65':_0x366d86(0x19f),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x10cd28['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x3e8438)};}catch(_0x3b91a9){return{'\x72\x6f\x6c\x65':_0x4e44dd[_0x366d86(0x194)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x10cd28['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x366d86(0x1b5)]({'\x65\x72\x72\x6f\x72':_0x3b91a9 instanceof Error?_0x3b91a9['\x6d\x65\x73\x73\x61\x67\x65']:String(_0x3b91a9)})};}}async function _0x37e2d9(_0x51999b){const _0x4f2b9a=_0xf54681,_0xb32f4e=_0x51999b['\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x73']??[];return Promise[_0x4f2b9a(0x1fe)](_0xb32f4e[_0x4f2b9a(0x1c3)](_0x187c13));}return{'\x74\x6f\x6f\x6c\x73':_0x17352c,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c':_0x187c13,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x37e2d9};}async function vercelAiTools(_0xa13bd0,_0x1727c9={}){const _0x123e05=a0_0x3f0607;let _0x2ab1d2;try{_0x2ab1d2=await import('\x61\x69');}catch{throw new Error(_0x123e05(0x1dc));}const _0x152d65=selectSpecs(_0x1727c9['\x61\x6c\x6c\x6f\x77']),_0x469336={'\x62\x6f\x78':_0xa13bd0,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x1727c9[_0x123e05(0x219)]},_0x56b0a5={};for(const _0x16f90a of _0x152d65){const _0x4e9791=_0x16f90a[_0x123e05(0x19d)](_0x469336);_0x56b0a5[_0x16f90a[_0x123e05(0x1a1)]]=_0x2ab1d2[_0x123e05(0x19f)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x16f90a[_0x123e05(0x197)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x2ab1d2[_0x123e05(0x1df)](_0x16f90a[_0x123e05(0x1e9)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x56bd7e=>{return serializeToolResult(await _0x4e9791(_0x56bd7e));}});}return _0x56b0a5;}export{anthropicFleetTools,anthropicTools,createMcpServer,mastraFleetTools,mastraTools,openaiFleetTools,openaiTools,runCode,vercelAiFleetTools,vercelAiTools};
|
|
1
|
+
const a0_0x57547c=a0_0x2966;(function(_0x32ffdf,_0x388a02){const _0xc40d3=a0_0x2966,_0x3c5540=_0x32ffdf();while(!![]){try{const _0x1405a7=-parseInt(_0xc40d3(0x10e))/0x1+-parseInt(_0xc40d3(0x123))/0x2+parseInt(_0xc40d3(0x148))/0x3+-parseInt(_0xc40d3(0xe6))/0x4*(parseInt(_0xc40d3(0xa4))/0x5)+parseInt(_0xc40d3(0x12f))/0x6*(parseInt(_0xc40d3(0xe4))/0x7)+parseInt(_0xc40d3(0x135))/0x8+-parseInt(_0xc40d3(0x13b))/0x9*(parseInt(_0xc40d3(0xf7))/0xa);if(_0x1405a7===_0x388a02)break;else _0x3c5540['push'](_0x3c5540['shift']());}catch(_0x452267){_0x3c5540['push'](_0x3c5540['shift']());}}}(a0_0xca80,0xd2730));import{createRequire}from'\x6e\x6f\x64\x65\x3a\x6d\x6f\x64\x75\x6c\x65';const TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x64\x65':{'\x6e\x61\x6d\x65':a0_0x57547c(0xd6),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x45\x78\x65\x63\x75\x74\x65\x20\x63\x6f\x64\x65\x20\x69\x6e\x20\x61\x20\x70\x65\x72\x73\x69\x73\x74\x65\x6e\x74\x20\x6c\x61\x6e\x67\x75\x61\x67\x65\x20\x6b\x65\x72\x6e\x65\x6c\x20\x69\x6e\x73\x69\x64\x65\x20\x74\x68\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x2e\x20\x56\x61\x72\x69\x61\x62\x6c\x65\x73\x20\x70\x65\x72\x73\x69\x73\x74\x20\x61\x63\x72\x6f\x73\x73\x20\x63\x61\x6c\x6c\x73\x20\x77\x69\x74\x68\x20\x74\x68\x65\x20\x73\x61\x6d\x65\x20\x73\x65\x73\x73\x69\x6f\x6e\x2e\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x73\x74\x64\x6f\x75\x74\x2c\x20\x73\x74\x64\x65\x72\x72\x2c\x20\x65\x78\x69\x74\x20\x63\x6f\x64\x65\x2c\x20\x61\x6e\x64\x20\x61\x20\x74\x79\x70\x65\x64\x20\x60\x72\x65\x73\x75\x6c\x74\x73\x60\x20\x61\x72\x72\x61\x79\x20\x63\x6f\x6e\x74\x61\x69\x6e\x69\x6e\x67\x20\x6d\x61\x74\x70\x6c\x6f\x74\x6c\x69\x62\x20\x66\x69\x67\x75\x72\x65\x73\x20\x28\x62\x61\x73\x65\x36\x34\x20\x50\x4e\x47\x29\x2c\x20\x70\x61\x6e\x64\x61\x73\x20\x44\x61\x74\x61\x46\x72\x61\x6d\x65\x73\x2c\x20\x4a\x53\x4f\x4e\x20\x76\x69\x61\x20\x64\x69\x73\x70\x6c\x61\x79\x28\x29\x2c\x20\x6f\x72\x20\x65\x72\x72\x6f\x72\x73\x2e\x20\x50\x72\x65\x66\x65\x72\x20\x74\x68\x69\x73\x20\x6f\x76\x65\x72\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63\x20\x66\x6f\x72\x20\x61\x6e\x79\x20\x63\x6f\x64\x65\x20\x74\x68\x61\x74\x20\x6e\x65\x65\x64\x73\x20\x73\x74\x72\x75\x63\x74\x75\x72\x65\x64\x20\x6f\x75\x74\x70\x75\x74\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x57547c(0xf9),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x6c\x61\x6e\x67\x75\x61\x67\x65':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x65\x6e\x75\x6d':['\x70\x79\x74\x68\x6f\x6e',a0_0x57547c(0xb2),a0_0x57547c(0x143),a0_0x57547c(0xd5)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xcf)},'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xcd)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':'\x6e\x75\x6d\x62\x65\x72','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x12e)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0xfd),a0_0x57547c(0xdd)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0xee5c9f,sessionId:_0x35d1e9})=>async _0x1950ca=>{const _0x5a77be=a0_0x57547c;return await _0xee5c9f['\x72\x75\x6e\x43\x6f\x64\x65'](_0x1950ca[_0x5a77be(0xfd)],_0x1950ca['\x73\x6f\x75\x72\x63\x65'],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x35d1e9,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x1950ca['\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73']});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x65\x78\x65\x63','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x129),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xe2)},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xc7)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x57547c(0xb7),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x44\x65\x66\x61\x75\x6c\x74\x20\x36\x30\x30\x30\x30\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0xcc)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x5ceca2,sessionId:_0x126591})=>async _0x11c62b=>{const _0x189fac=a0_0x57547c;return await _0x5ceca2['\x65\x78\x65\x63'](_0x11c62b[_0x189fac(0xcc)],{'\x63\x77\x64':_0x11c62b['\x63\x77\x64'],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x11c62b[_0x189fac(0x14f)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x126591});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64':{'\x6e\x61\x6d\x65':a0_0x57547c(0xd2),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xc0),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x57547c(0xf9),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x57547c(0x134)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0x12a)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x487830,sessionId:_0x3a66d6})=>async _0x42faa7=>{const _0x2c7e18=a0_0x57547c;return{'\x63\x6f\x6e\x74\x65\x6e\x74':await _0x487830[_0x2c7e18(0xd0)](_0x42faa7[_0x2c7e18(0x12a)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x3a66d6})};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65':{'\x6e\x61\x6d\x65':a0_0x57547c(0xcb),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xff),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x57547c(0x134)},'\x63\x6f\x6e\x74\x65\x6e\x74':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xda)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0x12a),a0_0x57547c(0x11e)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x103025})=>async _0x30d3f8=>{const _0x98cc9c=a0_0x57547c;return await _0x103025[_0x98cc9c(0xe0)](_0x30d3f8[_0x98cc9c(0x12a)],_0x30d3f8[_0x98cc9c(0x11e)]),{'\x6f\x6b':!![]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74':{'\x6e\x61\x6d\x65':a0_0x57547c(0xfa),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x4c\x69\x73\x74\x20\x65\x6e\x74\x72\x69\x65\x73\x20\x69\x6e\x20\x61\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x77\x69\x74\x68\x20\x73\x69\x7a\x65\x2c\x20\x74\x79\x70\x65\x2c\x20\x61\x6e\x64\x20\x6d\x6f\x64\x65\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x57547c(0xf9),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0x12a)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x23d253})=>async _0x307f86=>{const _0x392592=a0_0x57547c;return{'\x65\x6e\x74\x72\x69\x65\x73':await _0x23d253['\x66\x73'][_0x392592(0xab)](_0x307f86['\x70\x61\x74\x68'])};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68':{'\x6e\x61\x6d\x65':a0_0x57547c(0xef),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xf4),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x74\x65\x72\x6e':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x105)},'\x70\x61\x74\x68':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x53\x75\x62\x64\x69\x72\x65\x63\x74\x6f\x72\x79\x20\x74\x6f\x20\x73\x65\x61\x72\x63\x68\x2e\x20\x4f\x70\x74\x69\x6f\x6e\x61\x6c\x2e'},'\x6d\x61\x78\x5f\x72\x65\x73\x75\x6c\x74\x73':{'\x74\x79\x70\x65':'\x6e\x75\x6d\x62\x65\x72','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x103)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0x142)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({box:_0x59427e})=>async _0xd9a0f=>{const _0x2e33ee=a0_0x57547c,_0x4536b7=[],_0x685244=_0xd9a0f['\x6d\x61\x78\x5f\x72\x65\x73\x75\x6c\x74\x73']??0x64;for await(const _0x1789f0 of _0x59427e[_0x2e33ee(0x133)](_0xd9a0f[_0x2e33ee(0x142)],{'\x63\x77\x64':_0xd9a0f[_0x2e33ee(0x12a)],'\x6d\x61\x78\x52\x65\x73\x75\x6c\x74\x73':_0x685244})){_0x4536b7[_0x2e33ee(0xb3)](_0x1789f0);if(_0x4536b7[_0x2e33ee(0x110)]>=_0x685244)break;}return{'\x6d\x61\x74\x63\x68\x65\x73':_0x4536b7};}}},ALL_TOOL_SPECS=Object[a0_0x57547c(0xfc)](TOOL_SPECS);function selectSpecs(_0x4f7331){const _0x1a8f88=a0_0x57547c;if(!_0x4f7331||_0x4f7331[_0x1a8f88(0x110)]===0x0)return ALL_TOOL_SPECS;const _0x5e95e0=new Set(_0x4f7331);return Object[_0x1a8f88(0xa9)](TOOL_SPECS)[_0x1a8f88(0x13d)](_0xb06f9f=>_0x5e95e0[_0x1a8f88(0xb0)](_0xb06f9f))[_0x1a8f88(0x114)](_0x49ed3a=>TOOL_SPECS[_0x49ed3a]);}function serializeToolResult(_0x1def44){const _0x23bbfa=a0_0x57547c;if(typeof _0x1def44===_0x23bbfa(0x134))return _0x1def44;try{return JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79'](_0x1def44,null,0x2);}catch{return String(_0x1def44);}}const SDK_VERSION=((()=>{const _0x3de2e8=a0_0x57547c,_0x4f4298={'\x58\x43\x45\x78\x6a':_0x3de2e8(0xc4),'\x71\x55\x43\x53\x72':'\x30\x2e\x30\x2e\x30'};try{return createRequire(import.meta.url)(_0x4f4298[_0x3de2e8(0xf1)])[_0x3de2e8(0xbb)]??_0x3de2e8(0x111);}catch{return _0x4f4298['\x71\x55\x43\x53\x72'];}})());async function createMcpServer(_0xe0d969,_0x2d0f56={}){const _0x194b3f=a0_0x57547c,_0xeef91a={'\x62\x48\x4c\x67\x68':_0x194b3f(0x14d),'\x50\x76\x67\x45\x6f':function(_0x541311,_0x3e2292){return _0x541311 instanceof _0x3e2292;},'\x49\x43\x56\x4d\x59':_0x194b3f(0x14a),'\x4a\x63\x5a\x4f\x6e':_0x194b3f(0xbf),'\x62\x69\x74\x50\x4c':'\x63\x72\x65\x61\x74\x65\x4d\x63\x70\x53\x65\x72\x76\x65\x72\x28\x29\x3a\x20\x74\x68\x65\x20\x60\x40\x6d\x6f\x64\x65\x6c\x63\x6f\x6e\x74\x65\x78\x74\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x2f\x73\x64\x6b\x60\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x2e\x20\x49\x6e\x73\x74\x61\x6c\x6c\x20\x69\x74\x20\x76\x69\x61\x20\x60\x70\x6e\x70\x6d\x20\x61\x64\x64\x20\x40\x6d\x6f\x64\x65\x6c\x63\x6f\x6e\x74\x65\x78\x74\x70\x72\x6f\x74\x6f\x63\x6f\x6c\x2f\x73\x64\x6b\x60\x2e','\x56\x72\x78\x42\x59':'\x74\x61\x6e\x67\x6c\x65\x2d\x73\x61\x6e\x64\x62\x6f\x78'};let _0x229514,_0x3d9945;try{[_0x229514,_0x3d9945]=await Promise[_0x194b3f(0x106)]([import(_0xeef91a[_0x194b3f(0xd3)]),import(_0xeef91a['\x4a\x63\x5a\x4f\x6e'])]);}catch{throw new Error(_0xeef91a[_0x194b3f(0x101)]);}const _0x48b834=selectSpecs(_0x2d0f56[_0x194b3f(0xce)]),_0x4efd58={'\x62\x6f\x78':_0xe0d969,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x2d0f56[_0x194b3f(0x149)]},_0x202fd1=new Map();for(const _0x25f836 of _0x48b834)_0x202fd1[_0x194b3f(0xa2)](_0x25f836[_0x194b3f(0x122)],_0x25f836['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x4efd58));const _0x2e0584=new _0x229514['\x53\x65\x72\x76\x65\x72']({'\x6e\x61\x6d\x65':_0x2d0f56[_0x194b3f(0x122)]??_0xeef91a['\x56\x72\x78\x42\x59'],'\x76\x65\x72\x73\x69\x6f\x6e':_0x2d0f56[_0x194b3f(0xbb)]??SDK_VERSION},{'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x69\x65\x73':{'\x74\x6f\x6f\x6c\x73':{}}});return _0x2e0584[_0x194b3f(0xd1)](_0x3d9945[_0x194b3f(0x116)],async()=>({'\x74\x6f\x6f\x6c\x73':_0x48b834[_0x194b3f(0x114)](_0x4178df=>({'\x6e\x61\x6d\x65':_0x4178df[_0x194b3f(0x122)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4178df['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x4178df[_0x194b3f(0x11c)]}))})),_0x2e0584[_0x194b3f(0xd1)](_0x3d9945['\x43\x61\x6c\x6c\x54\x6f\x6f\x6c\x52\x65\x71\x75\x65\x73\x74\x53\x63\x68\x65\x6d\x61'],async _0x4d0b63=>{const _0x429c16=_0x194b3f,_0x172a91=_0x4d0b63,_0x264556=_0x202fd1[_0x429c16(0xe8)](_0x172a91[_0x429c16(0x109)]['\x6e\x61\x6d\x65']);if(!_0x264556)return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0xeef91a[_0x429c16(0xb4)],'\x74\x65\x78\x74':_0x429c16(0xf2)+_0x172a91['\x70\x61\x72\x61\x6d\x73'][_0x429c16(0x122)]}]};try{return{'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0xeef91a[_0x429c16(0xb4)],'\x74\x65\x78\x74':serializeToolResult(await _0x264556(_0x172a91['\x70\x61\x72\x61\x6d\x73'][_0x429c16(0x136)]??{}))}]};}catch(_0xe85a0a){return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0xeef91a['\x62\x48\x4c\x67\x68'],'\x74\x65\x78\x74':_0xeef91a[_0x429c16(0xc6)](_0xe85a0a,Error)?_0xe85a0a[_0x429c16(0xbe)]:String(_0xe85a0a)}]};}}),{'\x73\x65\x72\x76\x65\x72':_0x2e0584,'\x63\x6f\x6e\x6e\x65\x63\x74':_0x1a481d=>_0x2e0584[_0x194b3f(0x10f)](_0x1a481d),'\x63\x6c\x6f\x73\x65':()=>_0x2e0584[_0x194b3f(0x127)]()};}function runCode(_0x187c54,_0x4fbaca,_0x540eaa,_0x153915){const _0x478cbd=a0_0x57547c;return _0x187c54[_0x478cbd(0xf0)](_0x4fbaca,_0x540eaa,_0x153915);}function anthropicTools(_0x27853e,_0x4e01a3={}){const _0x13eaac=a0_0x57547c,_0x142815={'\x74\x52\x71\x76\x76':_0x13eaac(0x125),'\x61\x54\x68\x61\x6f':function(_0x4c37be,_0xc62af5){return _0x4c37be(_0xc62af5);}},_0x409271=selectSpecs(_0x4e01a3[_0x13eaac(0xce)]),_0x43d848={'\x62\x6f\x78':_0x27853e,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4e01a3[_0x13eaac(0x149)]},_0x1745eb=new Map();for(const _0x14eddb of _0x409271)_0x1745eb[_0x13eaac(0xa2)](_0x14eddb[_0x13eaac(0x122)],_0x14eddb['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x43d848));const _0x28d110=_0x409271[_0x13eaac(0x114)](_0x215aaf=>({'\x6e\x61\x6d\x65':_0x215aaf['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x215aaf[_0x13eaac(0x117)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x215aaf[_0x13eaac(0x11c)]}));async function _0x595d0d(_0x5a2d70){const _0x61fa92=_0x13eaac,_0x5e3665=_0x1745eb[_0x61fa92(0xe8)](_0x5a2d70[_0x61fa92(0x122)]);if(!_0x5e3665)return{'\x74\x79\x70\x65':_0x142815['\x74\x52\x71\x76\x76'],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x5a2d70['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x61fa92(0xf2)+_0x5a2d70[_0x61fa92(0x122)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x58e257=await _0x142815[_0x61fa92(0xa7)](_0x5e3665,_0x5a2d70[_0x61fa92(0xa3)]);return{'\x74\x79\x70\x65':_0x142815[_0x61fa92(0xa6)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x5a2d70['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x142815[_0x61fa92(0xa7)](toAnthropicContent,_0x58e257)};}catch(_0x29aa88){return{'\x74\x79\x70\x65':_0x61fa92(0x125),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x5a2d70['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x29aa88 instanceof Error?_0x29aa88[_0x61fa92(0xbe)]:String(_0x29aa88),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}async function _0x459d52(_0x59b8df){const _0x2f0caa=_0x13eaac,_0x43e1cd=_0x59b8df[_0x2f0caa(0x13d)](_0x2987eb=>typeof _0x2987eb==='\x6f\x62\x6a\x65\x63\x74'&&_0x2987eb!==null&&_0x2987eb[_0x2f0caa(0xe3)]===_0x2f0caa(0xbc));return Promise['\x61\x6c\x6c'](_0x43e1cd[_0x2f0caa(0x114)](_0x595d0d));}return{'\x74\x6f\x6f\x6c\x73':_0x28d110,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65':_0x595d0d,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x459d52};}function toAnthropicContent(_0x4909c0){const _0x1e63c8=a0_0x57547c,_0x14635e={'\x44\x48\x48\x4b\x43':function(_0x501880,_0x2093b8){return _0x501880(_0x2093b8);},'\x57\x6a\x57\x58\x41':function(_0x551a32,_0xb1b90c){return _0x551a32(_0xb1b90c);}};if(!_0x14635e[_0x1e63c8(0xdb)](isCodeExecutionResultWithImages,_0x4909c0))return serializeToolResult(_0x4909c0);const _0x549e0b=[],_0x4aca58={..._0x4909c0,'\x72\x65\x73\x75\x6c\x74\x73':_0x4909c0[_0x1e63c8(0xed)][_0x1e63c8(0x13d)](_0x3dfc7c=>_0x3dfc7c[_0x1e63c8(0xe3)]!==_0x1e63c8(0xbd))};_0x549e0b[_0x1e63c8(0xb3)]({'\x74\x79\x70\x65':_0x1e63c8(0x14d),'\x74\x65\x78\x74':_0x14635e['\x57\x6a\x57\x58\x41'](serializeToolResult,_0x4aca58)});for(const _0x4569db of _0x4909c0['\x72\x65\x73\x75\x6c\x74\x73'])if(_0x14635e['\x57\x6a\x57\x58\x41'](isImagePart,_0x4569db))_0x549e0b['\x70\x75\x73\x68']({'\x74\x79\x70\x65':'\x69\x6d\x61\x67\x65','\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':_0x1e63c8(0xec),'\x6d\x65\x64\x69\x61\x5f\x74\x79\x70\x65':imageMediaType(_0x4569db[_0x1e63c8(0xe9)]),'\x64\x61\x74\x61':_0x4569db['\x64\x61\x74\x61']}});return _0x549e0b;}function isImagePart(_0x210d9a){const _0x5b3729=a0_0x57547c;return _0x210d9a[_0x5b3729(0xe3)]===_0x5b3729(0xbd);}function a0_0xca80(){const _0x533dd1=['\x75\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x61','\x75\x4d\x4c\x57\x7a\x33\x6a\x4c\x43\x63\x31\x5a\x44\x68\x4c\x53\x7a\x73\x62\x4a\x42\x32\x72\x4c\x69\x68\x6e\x4c\x79\x78\x6a\x4a\x41\x63\x34\x47\x75\x4d\x76\x30\x44\x78\x6a\x55\x43\x59\x62\x54\x79\x78\x72\x4a\x41\x67\x4c\x55\x7a\x59\x62\x53\x41\x77\x35\x4c\x43\x59\x62\x33\x41\x78\x72\x4f\x69\x68\x6e\x31\x43\x4e\x6a\x56\x44\x77\x35\x4b\x41\x77\x35\x4e\x69\x67\x6e\x56\x42\x4e\x72\x4c\x45\x68\x71\x55','\x79\x4d\x39\x56\x42\x67\x76\x48\x42\x47','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x50\x7a\x61','\x6e\x74\x62\x51\x41\x4c\x6a\x49\x43\x4c\x47','\x7a\x67\x4c\x5a\x43\x67\x66\x30\x79\x32\x48\x66\x45\x67\x76\x4a','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x53\x41\x78\x6e\x30','\x7a\x78\x48\x4c\x79\x57','\x44\x4d\x66\x53\x44\x77\x76\x5a','\x42\x67\x66\x55\x7a\x33\x76\x48\x7a\x32\x75','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x5a\x43\x67\x66\x33\x42\x47','\x76\x33\x6a\x50\x44\x67\x75\x47\x79\x73\x62\x4d\x41\x77\x58\x4c\x69\x67\x4c\x55\x69\x68\x72\x4f\x7a\x73\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x6c\x49\x62\x64\x43\x4d\x76\x48\x44\x67\x76\x5a\x69\x68\x62\x48\x43\x4d\x76\x55\x44\x63\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x56\x43\x4d\x4c\x4c\x43\x59\x62\x48\x43\x59\x62\x55\x7a\x77\x76\x4b\x7a\x77\x71\x55\x69\x65\x39\x32\x7a\x78\x6a\x33\x43\x4d\x4c\x30\x7a\x78\x6d\x47\x7a\x78\x48\x50\x43\x33\x72\x50\x42\x4d\x43\x47\x7a\x4d\x4c\x53\x7a\x78\x6d\x55','\x43\x31\x4c\x73\x43\x4b\x4f','\x79\x4d\x4c\x30\x75\x65\x57','\x72\x4c\x76\x4c\x77\x77\x4b','\x71\x32\x66\x57\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x69\x64\x65\x57\x6d\x63\x34','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x75\x4d\x76\x4e\x7a\x78\x47\x47\x43\x67\x66\x30\x44\x67\x76\x59\x42\x49\x34','\x79\x77\x58\x53','\x72\x67\x48\x73\x7a\x33\x4b','\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65','\x43\x67\x66\x59\x79\x77\x31\x5a','\x72\x67\x76\x53\x7a\x78\x72\x4c\x69\x67\x65\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x4a\x43\x4d\x76\x48\x44\x67\x76\x4b\x69\x68\x44\x50\x44\x67\x47\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4a\x43\x4d\x76\x48\x44\x67\x75\x55\x69\x66\x6e\x30\x42\x33\x62\x5a\x69\x67\x6a\x50\x42\x67\x58\x50\x42\x4d\x43\x47\x41\x77\x31\x54\x7a\x77\x72\x50\x79\x78\x72\x4c\x42\x68\x4b\x55\x69\x65\x6e\x48\x42\x67\x57\x47\x44\x67\x48\x50\x43\x59\x62\x56\x42\x4d\x6e\x4c\x69\x68\x72\x4f\x7a\x73\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x7a\x77\x71\x47\x44\x32\x39\x59\x41\x59\x62\x50\x43\x59\x62\x4d\x41\x77\x35\x50\x43\x32\x48\x4c\x7a\x64\x53\x47\x42\x33\x6a\x57\x41\x67\x66\x55\x7a\x77\x71\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x67\x76\x5a\x69\x67\x54\x4c\x7a\x78\x61\x47\x79\x77\x6e\x4a\x43\x4e\x76\x50\x42\x4d\x43\x47\x79\x32\x39\x5a\x44\x63\x34','\x43\x33\x72\x4b\x7a\x78\x6a\x59','\x75\x33\x62\x48\x44\x32\x34\x47\x79\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x56\x7a\x49\x62\x6f\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x48\x4c\x43\x59\x62\x4d\x43\x4d\x39\x54\x69\x67\x65\x47\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x75\x53\x69\x68\x44\x50\x44\x67\x47\x47\x79\x73\x62\x4a\x42\x32\x39\x59\x7a\x67\x4c\x55\x79\x78\x72\x56\x43\x49\x62\x57\x42\x68\x76\x5a\x69\x65\x34\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x62\x5a\x41\x67\x66\x59\x41\x77\x35\x4e\x69\x67\x65\x47\x44\x32\x39\x59\x41\x33\x6e\x57\x79\x77\x6e\x4c\x6c\x49\x62\x73\x7a\x78\x72\x31\x43\x4d\x35\x5a\x69\x68\x72\x4f\x7a\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x50\x7a\x63\x62\x48\x42\x4d\x71\x47\x44\x67\x48\x4c\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x41\x77\x72\x5a\x6c\x49\x62\x66\x79\x77\x6e\x4f\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x49\x62\x4f\x79\x78\x6d\x47\x41\x78\x72\x5a\x69\x67\x39\x33\x42\x49\x62\x57\x7a\x78\x6a\x5a\x41\x78\x6e\x30\x7a\x77\x35\x30\x69\x67\x6e\x56\x7a\x67\x75\x54\x7a\x78\x48\x4c\x79\x33\x76\x30\x41\x77\x39\x55\x69\x67\x54\x4c\x43\x4d\x35\x4c\x42\x64\x53\x47\x44\x67\x48\x4c\x69\x68\x6e\x48\x42\x77\x75\x47\x44\x32\x39\x59\x41\x33\x6e\x57\x79\x77\x6e\x4c\x69\x67\x4c\x5a\x69\x67\x31\x56\x44\x77\x35\x30\x7a\x77\x71\x47\x79\x77\x6e\x59\x42\x33\x6e\x5a\x69\x68\x72\x4f\x7a\x77\x30\x55\x69\x65\x6e\x70\x75\x31\x72\x74\x69\x66\x6e\x64\x71\x75\x58\x66\x69\x65\x58\x6a\x74\x4b\x76\x62\x75\x4b\x58\x7a\x69\x68\x44\x50\x44\x67\x47\x47\x79\x68\x44\x56\x43\x4d\x54\x4c\x43\x4e\x6e\x47\x6c\x49\x62\x76\x43\x32\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35\x69\x68\x44\x4f\x7a\x77\x34\x47\x7a\x67\x39\x55\x7a\x73\x34','\x41\x4e\x6e\x56\x42\x4c\x6e\x4a\x41\x67\x76\x54\x79\x71','\x6d\x4a\x79\x32\x6d\x5a\x65\x58\x75\x67\x50\x71\x44\x32\x7a\x33','\x79\x32\x39\x55\x42\x4d\x76\x4a\x44\x61','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x6d\x63\x34\x57\x6c\x4a\x61','\x45\x65\x35\x36\x76\x33\x4f','\x42\x77\x66\x52\x7a\x75\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x42\x77\x66\x57','\x44\x67\x39\x56\x42\x61','\x74\x67\x4c\x5a\x44\x66\x72\x56\x42\x32\x58\x5a\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x66\x6e\x4a\x41\x67\x76\x54\x79\x71','\x7a\x67\x76\x5a\x79\x33\x6a\x50\x43\x68\x72\x50\x42\x32\x34','\x44\x77\x35\x50\x44\x4d\x76\x59\x43\x32\x66\x53','\x73\x32\x72\x55\x75\x4d\x43','\x72\x68\x7a\x6c\x79\x78\x43','\x75\x75\x48\x59\x41\x32\x4f','\x41\x77\x35\x57\x44\x78\x72\x74\x79\x32\x48\x4c\x42\x77\x65','\x43\x67\x35\x4e','\x79\x32\x39\x55\x44\x67\x76\x55\x44\x61','\x7a\x78\x6a\x34\x79\x4b\x4b','\x43\x32\x39\x54\x7a\x71','\x73\x77\x71\x47\x43\x4d\x76\x30\x44\x78\x6a\x55\x7a\x77\x71\x47\x79\x4e\x4b\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4a\x43\x4d\x76\x48\x44\x67\x75\x55','\x42\x4d\x66\x54\x7a\x71','\x6d\x4a\x71\x31\x6d\x64\x43\x57\x6e\x65\x76\x4f\x7a\x67\x48\x32\x75\x47','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35','\x44\x67\x39\x56\x42\x66\x39\x59\x7a\x78\x6e\x31\x42\x68\x71','\x7a\x4d\x58\x4c\x7a\x78\x72\x6a\x7a\x61','\x79\x32\x58\x56\x43\x32\x75','\x72\x78\x48\x4c\x79\x33\x76\x30\x7a\x73\x62\x48\x69\x68\x6e\x4f\x7a\x77\x58\x53\x69\x67\x6e\x56\x42\x77\x31\x48\x42\x4d\x71\x47\x41\x77\x34\x47\x79\x73\x62\x57\x43\x4d\x76\x32\x41\x77\x39\x31\x43\x32\x58\x35\x69\x67\x6e\x59\x7a\x77\x66\x30\x7a\x77\x71\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x48\x42\x4d\x71\x47\x43\x4d\x76\x30\x44\x78\x6a\x55\x69\x68\x54\x5a\x44\x67\x72\x56\x44\x78\x71\x53\x69\x68\x6e\x30\x7a\x67\x76\x59\x43\x49\x57\x47\x7a\x78\x48\x50\x44\x65\x6e\x56\x7a\x67\x76\x39\x6c\x49\x62\x75\x41\x67\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x54\x44\x78\x6e\x30\x69\x67\x76\x34\x41\x78\x6e\x30\x69\x6f\x6b\x61\x4c\x63\x62\x4a\x43\x4d\x76\x48\x44\x67\x75\x47\x41\x78\x71\x47\x7a\x4d\x4c\x59\x43\x33\x71\x47\x44\x32\x4c\x30\x41\x63\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x78\x32\x6e\x59\x7a\x77\x66\x30\x7a\x73\x34','\x75\x4e\x76\x55\x69\x67\x65\x47\x43\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x61\x4f\x42\x4d\x38\x47\x43\x67\x76\x59\x43\x32\x4c\x5a\x44\x67\x76\x55\x44\x63\x62\x5a\x44\x67\x66\x30\x7a\x73\x4b\x47\x41\x77\x34\x47\x44\x67\x48\x4c\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x47\x55\x69\x66\x76\x5a\x7a\x73\x62\x4d\x42\x33\x69\x47\x42\x32\x35\x4c\x6c\x78\x6e\x4f\x42\x33\x71\x47\x44\x67\x66\x5a\x41\x33\x6d\x47\x42\x67\x4c\x52\x7a\x73\x61\x4e\x43\x67\x35\x57\x42\x73\x62\x50\x42\x4e\x6e\x30\x79\x77\x58\x53\x6a\x59\x62\x56\x43\x49\x61\x4e\x42\x68\x6d\x4e\x6c\x49\x62\x67\x42\x33\x69\x47\x79\x32\x39\x4b\x7a\x73\x62\x30\x41\x67\x66\x30\x69\x68\x6e\x4f\x42\x33\x76\x53\x7a\x63\x62\x5a\x41\x67\x66\x59\x7a\x73\x62\x5a\x44\x67\x66\x30\x7a\x73\x62\x48\x79\x33\x6a\x56\x43\x33\x6d\x47\x79\x32\x66\x53\x42\x68\x6d\x53\x69\x68\x62\x59\x7a\x77\x7a\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x78\x33\x6a\x31\x42\x4c\x39\x4a\x42\x32\x72\x4c\x69\x68\x44\x50\x44\x67\x47\x47\x79\x73\x62\x5a\x7a\x78\x6e\x5a\x41\x77\x39\x55\x73\x77\x71\x55','\x43\x67\x66\x30\x41\x61','\x76\x67\x4c\x54\x7a\x77\x39\x31\x44\x63\x62\x50\x42\x49\x62\x54\x41\x77\x58\x53\x41\x78\x6e\x4c\x79\x32\x39\x55\x7a\x68\x6d\x55\x69\x65\x72\x4c\x7a\x4d\x66\x31\x42\x68\x71\x47\x6e\x4a\x61\x57\x6d\x64\x61\x55','\x41\x4d\x31\x6b\x71\x78\x71','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x4b\x41\x78\x6e\x57\x79\x78\x72\x4a\x41\x61','\x75\x67\x76\x59\x6c\x77\x6e\x48\x42\x67\x57\x47\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x63\x34\x47\x6d\x63\x62\x4b\x41\x78\x6e\x48\x79\x4d\x58\x4c\x43\x59\x34\x47\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x6e\x4d\x58\x72\x42\x4d\x66\x74\x42\x57','\x7a\x4d\x58\x4c\x7a\x78\x72\x46\x41\x77\x71','\x42\x77\x66\x5a\x44\x68\x6a\x48\x76\x67\x39\x56\x42\x68\x6d\x4f\x6b\x74\x4f\x47\x44\x67\x48\x4c\x69\x67\x62\x61\x42\x77\x66\x5a\x44\x68\x6a\x48\x6c\x32\x6e\x56\x43\x4d\x76\x47\x69\x68\x62\x48\x79\x32\x54\x48\x7a\x32\x75\x47\x41\x78\x6d\x47\x42\x4d\x39\x30\x69\x67\x4c\x55\x43\x33\x72\x48\x42\x67\x58\x4c\x7a\x63\x34\x47\x73\x77\x35\x5a\x44\x67\x66\x53\x42\x63\x62\x50\x44\x63\x62\x32\x41\x77\x65\x47\x79\x68\x62\x55\x43\x67\x30\x47\x79\x77\x72\x4b\x69\x65\x62\x54\x79\x78\x6e\x30\x43\x4d\x65\x56\x79\x32\x39\x59\x7a\x77\x61\x55','\x75\x33\x4c\x4d\x42\x78\x71','\x43\x32\x76\x48\x43\x4d\x6e\x4f','\x43\x33\x72\x59\x41\x77\x35\x4e','\x6d\x74\x6d\x30\x6d\x74\x61\x59\x6e\x5a\x6a\x51\x41\x30\x6e\x52\x7a\x67\x71','\x79\x78\x6a\x4e\x44\x77\x31\x4c\x42\x4e\x72\x5a','\x75\x4e\x76\x55\x69\x67\x65\x47\x43\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x62\x56\x42\x49\x62\x48\x69\x67\x7a\x53\x7a\x77\x76\x30\x6a\x33\x6d\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x62\x50\x42\x49\x62\x57\x79\x78\x6a\x48\x42\x67\x58\x4c\x42\x63\x34\x47\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x68\x6d\x47\x44\x67\x38\x47\x79\x77\x58\x53\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x4e\x6d\x37\x69\x68\x62\x48\x43\x33\x6d\x47\x79\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x76\x5a\x79\x63\x62\x30\x42\x59\x62\x30\x79\x78\x6a\x4e\x7a\x78\x71\x47\x43\x33\x62\x4c\x79\x32\x4c\x4d\x41\x77\x6d\x47\x42\x32\x35\x4c\x43\x59\x34\x47\x75\x4d\x76\x30\x44\x78\x6a\x55\x43\x59\x62\x57\x7a\x78\x69\x54\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x73\x62\x37\x42\x32\x53\x53\x69\x68\x6a\x4c\x43\x33\x76\x53\x44\x64\x38\x53\x69\x67\x76\x59\x43\x4d\x39\x59\x70\x33\x30\x47\x7a\x77\x35\x30\x43\x4d\x4c\x4c\x43\x59\x34','\x43\x33\x7a\x4e','\x73\x30\x6a\x56\x76\x4d\x53','\x72\x33\x72\x55\x76\x4b\x34','\x6d\x74\x69\x5a\x6f\x64\x47\x59\x6d\x32\x4c\x69\x44\x77\x31\x4a\x75\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35','\x7a\x4d\x4c\x53\x44\x67\x76\x59','\x44\x4d\x76\x59\x79\x32\x76\x53\x71\x77\x4c\x75\x42\x32\x39\x53\x43\x59\x47\x50\x6f\x49\x62\x30\x41\x67\x75\x47\x79\x67\x66\x50\x79\x63\x62\x57\x79\x77\x6e\x52\x79\x77\x44\x4c\x69\x67\x4c\x5a\x69\x67\x35\x56\x44\x63\x62\x50\x42\x4e\x6e\x30\x79\x77\x58\x53\x7a\x77\x71\x55\x69\x65\x4c\x55\x43\x33\x72\x48\x42\x67\x57\x47\x41\x78\x71\x47\x44\x4d\x4c\x48\x69\x67\x62\x57\x42\x4e\x62\x54\x69\x67\x66\x4b\x7a\x63\x62\x48\x41\x77\x61\x47\x6b\x67\x66\x55\x7a\x63\x62\x57\x41\x77\x6e\x52\x69\x67\x66\x55\x69\x67\x62\x61\x79\x77\x4b\x54\x43\x32\x72\x52\x6c\x59\x50\x47\x69\x67\x31\x56\x7a\x67\x76\x53\x69\x67\x66\x4b\x79\x78\x62\x30\x7a\x78\x69\x50\x6c\x47','\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c','\x77\x75\x35\x41\x43\x78\x6d','\x43\x68\x44\x4b\x76\x75\x38','\x43\x67\x66\x30\x44\x67\x76\x59\x42\x47','\x44\x68\x4c\x57\x7a\x78\x6e\x4a\x43\x4d\x4c\x57\x44\x61','\x43\x67\x66\x59\x43\x32\x75','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4a\x43\x4d\x76\x48\x44\x67\x75','\x74\x67\x4c\x5a\x44\x63\x62\x30\x41\x67\x75\x47\x7a\x4d\x58\x4c\x7a\x78\x71\x4e\x43\x59\x62\x54\x79\x77\x6e\x4f\x41\x77\x35\x4c\x43\x59\x62\x48\x42\x4d\x71\x47\x44\x67\x48\x4c\x41\x78\x69\x47\x43\x67\x76\x59\x6c\x77\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x43\x33\x72\x48\x44\x67\x75\x47\x6b\x68\x6a\x31\x42\x4d\x35\x50\x42\x4d\x43\x47\x6c\x59\x62\x5a\x44\x67\x39\x57\x43\x67\x76\x4b\x69\x63\x38\x47\x7a\x4d\x66\x50\x42\x67\x76\x4b\x6b\x73\x62\x57\x42\x68\x76\x5a\x69\x67\x58\x48\x43\x33\x71\x54\x44\x78\x6e\x4c\x7a\x63\x62\x30\x41\x77\x31\x4c\x43\x33\x72\x48\x42\x78\x62\x5a\x6c\x47','\x7a\x4d\x58\x4c\x7a\x78\x72\x5a','\x6e\x64\x79\x58\x6d\x74\x71\x34\x7a\x76\x44\x4e\x75\x32\x35\x70','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x59\x39\x5a\x7a\x78\x6a\x32\x7a\x78\x69\x56\x41\x77\x35\x4b\x7a\x78\x47\x55\x41\x4e\x6d','\x7a\x78\x48\x50\x44\x65\x6e\x56\x7a\x67\x75','\x7a\x67\x76\x53\x7a\x78\x72\x4c','\x44\x67\x76\x34\x44\x61','\x77\x77\x31\x5a\x76\x30\x71','\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x66\x39\x54\x43\x57','\x43\x32\x76\x30','\x41\x77\x35\x57\x44\x78\x71','\x6d\x5a\x79\x32\x6e\x76\x66\x76\x72\x4e\x44\x72\x41\x61','\x41\x4b\x39\x4e\x75\x67\x38','\x44\x66\x6a\x58\x44\x4e\x79','\x79\x76\x72\x4f\x79\x77\x38','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x53\x41\x77\x7a\x4c\x79\x33\x4c\x4a\x42\x67\x75\x47\x44\x67\x39\x56\x42\x64\x4f\x47','\x41\x32\x76\x35\x43\x57','\x75\x68\x76\x49\x42\x67\x4c\x4a\x69\x68\x72\x4c\x42\x78\x62\x53\x79\x78\x72\x4c\x69\x68\x6e\x53\x44\x77\x43\x47\x42\x33\x69\x47\x41\x77\x71\x47\x6b\x67\x75\x55\x7a\x59\x34\x47\x6a\x33\x62\x35\x44\x67\x48\x56\x42\x49\x31\x4b\x79\x78\x72\x48\x6c\x78\x6e\x4a\x41\x77\x76\x55\x79\x32\x75\x4e\x6b\x73\x34','\x42\x67\x4c\x5a\x44\x61','\x79\x78\x6a\x59\x79\x78\x4b','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x44\x4d\x76\x59\x79\x32\x76\x53\x71\x77\x4c\x67\x42\x67\x76\x4c\x44\x66\x72\x56\x42\x32\x58\x5a\x6b\x63\x4b\x36\x69\x68\x72\x4f\x7a\x73\x62\x47\x79\x77\x4c\x47\x69\x68\x62\x48\x79\x32\x54\x48\x7a\x32\x75\x47\x41\x78\x6d\x47\x42\x4d\x39\x30\x69\x67\x4c\x55\x43\x33\x72\x48\x42\x67\x58\x4c\x7a\x63\x34\x47\x73\x77\x35\x5a\x44\x67\x66\x53\x42\x63\x62\x32\x41\x77\x65\x47\x79\x68\x62\x55\x43\x67\x30\x47\x79\x77\x72\x4b\x69\x67\x66\x50\x79\x63\x34','\x41\x77\x31\x48\x7a\x32\x75\x56\x41\x4e\x62\x4c\x7a\x57','\x41\x67\x66\x5a','\x41\x78\x6e\x62\x43\x4e\x6a\x48\x45\x71','\x42\x4d\x39\x4b\x7a\x71','\x43\x68\x76\x5a\x41\x61','\x79\x4b\x48\x6d\x7a\x32\x47','\x77\x78\x76\x56\x7a\x4d\x34','\x79\x33\x44\x4b','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x71\x33\x6a\x4c\x79\x78\x72\x4c\x69\x67\x66\x55\x69\x67\x4c\x5a\x42\x32\x58\x48\x44\x67\x76\x4b\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x47\x47\x7a\x77\x35\x32\x41\x78\x6a\x56\x42\x4d\x31\x4c\x42\x4e\x71\x47\x79\x77\x35\x4b\x69\x68\x6a\x4c\x44\x68\x76\x59\x42\x49\x62\x50\x44\x68\x6d\x47\x41\x77\x71\x47\x7a\x4d\x39\x59\x69\x68\x76\x5a\x7a\x73\x62\x33\x41\x78\x72\x4f\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x48\x46\x43\x4e\x76\x55\x78\x32\x6e\x56\x42\x77\x31\x48\x42\x4d\x71\x55\x69\x66\x76\x5a\x7a\x73\x62\x30\x41\x67\x4c\x5a\x69\x68\x44\x4f\x7a\x77\x34\x47\x44\x67\x48\x4c\x69\x68\x76\x5a\x7a\x78\x69\x47\x42\x4d\x76\x4c\x7a\x68\x6d\x47\x79\x32\x39\x4b\x7a\x73\x62\x4c\x45\x67\x76\x4a\x44\x78\x72\x4c\x7a\x63\x57\x47\x7a\x4d\x4c\x53\x7a\x78\x6d\x47\x79\x77\x35\x48\x42\x68\x4c\x36\x7a\x77\x71\x53\x69\x67\x39\x59\x69\x67\x6e\x56\x42\x77\x31\x48\x42\x4d\x72\x5a\x69\x68\x6a\x31\x42\x49\x62\x50\x42\x49\x62\x48\x69\x68\x6e\x4c\x79\x33\x76\x59\x7a\x73\x62\x4c\x42\x4e\x7a\x50\x43\x4d\x39\x55\x42\x77\x76\x55\x44\x63\x34\x47\x76\x67\x48\x4c\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x47\x47\x71\x4b\x4c\x6d\x74\x66\x6d\x47\x44\x77\x35\x30\x41\x77\x57\x47\x7a\x67\x76\x5a\x44\x68\x6a\x56\x45\x77\x76\x4b\x69\x6f\x6b\x61\x4c\x63\x62\x4a\x79\x77\x58\x53\x69\x68\x6e\x48\x42\x4d\x72\x49\x42\x33\x48\x46\x7a\x67\x76\x5a\x44\x68\x6a\x56\x45\x73\x62\x33\x41\x67\x76\x55\x69\x68\x72\x4f\x7a\x73\x62\x33\x42\x33\x6a\x52\x69\x67\x4c\x5a\x69\x67\x72\x56\x42\x4d\x75\x55','\x71\x32\x39\x55\x44\x67\x4c\x55\x44\x77\x75\x47\x7a\x67\x76\x53\x7a\x78\x72\x50\x42\x4d\x43\x47\x43\x4d\x76\x54\x79\x77\x4c\x55\x41\x77\x35\x4e\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x76\x5a\x69\x67\x4c\x4d\x69\x67\x39\x55\x7a\x73\x62\x4d\x79\x77\x4c\x53\x43\x59\x34','\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x7a\x67\x4c\x5a\x43\x67\x58\x48\x45\x73\x62\x55\x79\x77\x31\x4c\x69\x67\x7a\x56\x43\x49\x62\x30\x41\x67\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x34','\x44\x4d\x76\x59\x43\x32\x4c\x56\x42\x47','\x44\x67\x39\x56\x42\x66\x39\x31\x43\x32\x75','\x41\x77\x31\x48\x7a\x32\x75','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x71\x67\x31\x56\x7a\x67\x76\x53\x79\x32\x39\x55\x44\x67\x76\x34\x44\x68\x62\x59\x42\x33\x72\x56\x79\x32\x39\x53\x6c\x33\x6e\x4b\x41\x59\x39\x30\x45\x78\x62\x4c\x43\x59\x35\x51\x43\x57','\x75\x4d\x76\x48\x7a\x63\x62\x48\x69\x67\x7a\x50\x42\x67\x75\x47\x7a\x4e\x6a\x56\x42\x73\x62\x30\x41\x67\x75\x47\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x62\x4d\x41\x77\x58\x4c\x43\x33\x4c\x5a\x44\x67\x76\x54\x6c\x49\x62\x73\x7a\x77\x58\x48\x44\x67\x4c\x32\x7a\x73\x62\x57\x79\x78\x72\x4f\x43\x59\x62\x59\x7a\x78\x6e\x56\x42\x68\x7a\x4c\x69\x67\x7a\x59\x42\x32\x30\x47\x44\x67\x48\x4c\x69\x68\x44\x56\x43\x4d\x54\x5a\x43\x67\x66\x4a\x7a\x73\x62\x59\x42\x32\x39\x30\x6f\x59\x62\x48\x79\x4e\x6e\x56\x42\x68\x76\x30\x7a\x73\x62\x57\x79\x78\x72\x4f\x43\x59\x62\x59\x7a\x77\x66\x4b\x69\x68\x72\x4f\x7a\x73\x62\x4a\x42\x32\x35\x30\x79\x77\x4c\x55\x7a\x78\x69\x47\x7a\x4d\x4c\x53\x7a\x78\x6e\x35\x43\x33\x72\x4c\x42\x73\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x53\x45\x73\x34','\x77\x4b\x54\x34\x75\x65\x75','\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x43\x33\x76\x49\x43\x32\x76\x30\x69\x67\x39\x4d\x69\x67\x31\x48\x79\x32\x48\x50\x42\x4d\x75\x47\x41\x77\x72\x5a\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x43\x59\x62\x30\x42\x59\x62\x48\x42\x67\x57\x47\x44\x32\x39\x59\x41\x32\x76\x59\x43\x59\x34','\x44\x32\x39\x59\x41\x32\x76\x59\x6c\x71','\x6c\x49\x34\x56\x6c\x49\x34\x56\x43\x67\x66\x4a\x41\x32\x66\x4e\x7a\x73\x35\x51\x43\x32\x39\x55','\x79\x32\x39\x55\x44\x67\x76\x34\x44\x61','\x75\x68\x7a\x4e\x72\x77\x38','\x76\x32\x39\x59\x41\x32\x4c\x55\x7a\x59\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x56\x43\x4e\x4b\x55\x69\x65\x39\x57\x44\x67\x4c\x56\x42\x4d\x66\x53\x6c\x47','\x74\x4e\x76\x54\x79\x4d\x76\x59\x69\x67\x39\x4d\x69\x68\x44\x56\x43\x4d\x54\x4c\x43\x49\x62\x5a\x79\x77\x35\x4b\x79\x4d\x39\x34\x7a\x78\x6d\x55\x69\x65\x76\x48\x79\x32\x47\x47\x41\x78\x6d\x47\x79\x4d\x4c\x53\x42\x67\x76\x4b\x69\x67\x4c\x55\x7a\x67\x76\x57\x7a\x77\x35\x4b\x7a\x77\x35\x30\x42\x68\x4b\x55','\x42\x66\x66\x77\x76\x32\x34','\x43\x33\x72\x48\x44\x68\x76\x5a','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x33\x43\x4d\x4c\x30\x7a\x71','\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\x75\x32\x39\x31\x43\x4d\x6e\x4c\x69\x67\x6e\x56\x7a\x67\x75\x47\x44\x67\x38\x47\x43\x4e\x76\x55\x6c\x49\x62\x6e\x44\x77\x58\x30\x41\x73\x31\x53\x41\x77\x35\x4c\x69\x68\x6e\x31\x43\x68\x62\x56\x43\x4e\x72\x4c\x7a\x63\x34','\x79\x77\x58\x53\x42\x33\x43','\x73\x32\x76\x59\x42\x4d\x76\x53\x69\x67\x58\x48\x42\x4d\x44\x31\x79\x77\x44\x4c\x6c\x47','\x43\x4d\x76\x48\x7a\x61','\x43\x32\x76\x30\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x65\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x7a\x77\x66\x4b','\x73\x75\x6e\x77\x74\x76\x4b','\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x78\x6d','\x79\x4d\x66\x5a\x41\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x44\x77\x35\x46\x79\x32\x39\x4b\x7a\x71','\x77\x78\x76\x6c\x42\x68\x6d','\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x44\x32\x39\x59\x41\x32\x4c\x55\x7a\x59\x62\x4b\x41\x78\x6a\x4c\x79\x33\x72\x56\x43\x4e\x4b\x47\x7a\x4d\x39\x59\x69\x68\x72\x4f\x7a\x73\x62\x4a\x42\x32\x31\x54\x79\x77\x35\x4b\x6c\x47','\x73\x32\x54\x75\x75\x67\x69','\x72\x4e\x76\x53\x42\x63\x62\x4d\x41\x77\x58\x4c\x69\x67\x6e\x56\x42\x4e\x72\x4c\x42\x4e\x72\x5a\x6c\x47','\x72\x65\x48\x69\x73\x30\x6d','\x7a\x4e\x76\x55\x79\x33\x72\x50\x42\x32\x34','\x43\x32\x39\x31\x43\x4d\x6e\x4c','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x76\x67\x39\x56\x42\x61','\x77\x4d\x39\x30\x75\x4b\x38','\x44\x33\x6a\x50\x44\x67\x75','\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x76\x46\x41\x77\x71','\x75\x32\x48\x4c\x42\x67\x57\x47\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x63\x62\x53\x41\x77\x35\x4c\x6c\x47','\x44\x68\x4c\x57\x7a\x71','\x6d\x74\x65\x33\x6d\x4a\x61\x35\x6e\x64\x44\x35\x41\x4d\x66\x68\x74\x78\x4f','\x7a\x4e\x6a\x56\x42\x71','\x6d\x4a\x75\x59\x6e\x68\x7a\x55\x71\x4e\x4c\x56\x42\x71','\x44\x32\x39\x59\x41\x32\x76\x59\x43\x57','\x7a\x32\x76\x30','\x7a\x4d\x39\x59\x42\x77\x66\x30','\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x47\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65\x47\x43\x33\x72\x48\x42\x78\x62\x4c\x7a\x63\x62\x56\x42\x49\x62\x4c\x44\x4d\x76\x59\x45\x73\x62\x4d\x42\x67\x76\x4c\x44\x63\x62\x54\x7a\x77\x31\x49\x7a\x78\x69\x55','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x76\x32\x4c\x30\x41\x65\x6e\x56\x42\x33\x6a\x4b\x41\x77\x35\x48\x44\x67\x39\x59','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x43\x4d\x76\x5a\x44\x77\x58\x30\x43\x57','\x72\x66\x7a\x4a\x45\x68\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x5a\x7a\x77\x66\x59\x79\x32\x47','\x43\x4e\x76\x55\x71\x32\x39\x4b\x7a\x71','\x77\x65\x6e\x66\x45\x67\x4f','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x30\x42\x32\x39\x53\x6f\x49\x61'];a0_0xca80=function(){return _0x533dd1;};return a0_0xca80();}function isCodeExecutionResultWithImages(_0x2f2191){const _0x2c90d4=a0_0x57547c;if(!_0x2f2191||typeof _0x2f2191!==_0x2c90d4(0xf9))return![];const _0x27171a=_0x2f2191[_0x2c90d4(0xed)];if(!Array[_0x2c90d4(0xb1)](_0x27171a))return![];return _0x27171a[_0x2c90d4(0x120)](_0xf0f8bd=>_0xf0f8bd&&typeof _0xf0f8bd===_0x2c90d4(0xf9)&&_0xf0f8bd[_0x2c90d4(0xe3)]===_0x2c90d4(0xbd));}function imageMediaType(_0x1b62af){const _0x1a9c1e=a0_0x57547c,_0x10b4da={'\x4b\x6b\x54\x50\x62':'\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67','\x5a\x4b\x78\x50\x45':'\x6a\x70\x65\x67','\x44\x68\x52\x67\x79':_0x1a9c1e(0x138)};switch(_0x1b62af){case _0x1a9c1e(0x11d):return _0x10b4da[_0x1a9c1e(0xd9)];case _0x10b4da[_0x1a9c1e(0xc1)]:return _0x1a9c1e(0xaf);case _0x10b4da[_0x1a9c1e(0x107)]:return _0x10b4da[_0x1a9c1e(0xd9)];}}function a0_0x2966(_0x45b453,_0x4afce2){_0x45b453=_0x45b453-0xa2;const _0xca800=a0_0xca80();let _0x296615=_0xca800[_0x45b453];if(a0_0x2966['\x64\x54\x55\x51\x4a\x4a']===undefined){var _0x58ca36=function(_0x10e67d){const _0x56f2db='\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 _0x3ed648='',_0x1c022a='';for(let _0x4c44ba=0x0,_0xe2fdd8,_0x19393c,_0x280443=0x0;_0x19393c=_0x10e67d['\x63\x68\x61\x72\x41\x74'](_0x280443++);~_0x19393c&&(_0xe2fdd8=_0x4c44ba%0x4?_0xe2fdd8*0x40+_0x19393c:_0x19393c,_0x4c44ba++%0x4)?_0x3ed648+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0xe2fdd8>>(-0x2*_0x4c44ba&0x6)):0x0){_0x19393c=_0x56f2db['\x69\x6e\x64\x65\x78\x4f\x66'](_0x19393c);}for(let _0x1ff402=0x0,_0x345960=_0x3ed648['\x6c\x65\x6e\x67\x74\x68'];_0x1ff402<_0x345960;_0x1ff402++){_0x1c022a+='\x25'+('\x30\x30'+_0x3ed648['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x1ff402)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x1c022a);};a0_0x2966['\x65\x53\x6d\x77\x47\x6b']=_0x58ca36,a0_0x2966['\x6d\x6d\x48\x64\x42\x69']={},a0_0x2966['\x64\x54\x55\x51\x4a\x4a']=!![];}const _0x223caa=_0xca800[0x0],_0x2322eb=_0x45b453+_0x223caa,_0xebf92c=a0_0x2966['\x6d\x6d\x48\x64\x42\x69'][_0x2322eb];return!_0xebf92c?(_0x296615=a0_0x2966['\x65\x53\x6d\x77\x47\x6b'](_0x296615),a0_0x2966['\x6d\x6d\x48\x64\x42\x69'][_0x2322eb]=_0x296615):_0x296615=_0xebf92c,_0x296615;}const FLEET_TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x70\x61\x77\x6e':{'\x6e\x61\x6d\x65':a0_0x57547c(0xfe),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x10c),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xaa)},'\x77\x6f\x72\x6b\x65\x72\x73':{'\x74\x79\x70\x65':a0_0x57547c(0xb7),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xc8)},'\x6d\x65\x74\x61\x64\x61\x74\x61':{'\x74\x79\x70\x65':a0_0x57547c(0xf9),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{},'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':!![],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xea)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0xe1),'\x77\x6f\x72\x6b\x65\x72\x73'],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0xa98bce})=>async _0x4b22ae=>{const _0x217d20=a0_0x57547c,_0xc4f5a6=await _0xa98bce['\x66\x6c\x65\x65\x74\x73'][_0x217d20(0xeb)]({'\x64\x65\x66\x61\x75\x6c\x74\x73':{'\x70\x75\x62\x6c\x69\x63\x54\x65\x6d\x70\x6c\x61\x74\x65\x49\x64':_0x4b22ae['\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64']},'\x77\x6f\x72\x6b\x65\x72\x73':Array[_0x217d20(0xe5)]({'\x6c\x65\x6e\x67\x74\x68':_0x4b22ae[_0x217d20(0xe7)]},(_0x308cd0,_0x1185cf)=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x217d20(0xc3)+_0x1185cf})),'\x6d\x65\x74\x61\x64\x61\x74\x61':_0x4b22ae[_0x217d20(0x108)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0xc4f5a6['\x66\x6c\x65\x65\x74\x49\x64'],'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64\x73':_0xc4f5a6['\x69\x64\x73']};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x69\x73\x70\x61\x74\x63\x68':{'\x6e\x61\x6d\x65':a0_0x57547c(0x12d),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x137),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x57547c(0xf9),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67'},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xe2)},'\x6d\x61\x63\x68\x69\x6e\x65\x73':{'\x74\x79\x70\x65':a0_0x57547c(0xac),'\x69\x74\x65\x6d\x73':{'\x74\x79\x70\x65':a0_0x57547c(0x134)},'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xc2)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x57547c(0xb7),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x50\x65\x72\x2d\x6d\x61\x63\x68\x69\x6e\x65\x20\x74\x69\x6d\x65\x6f\x75\x74\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x36\x30\x30\x30\x30\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0x130),a0_0x57547c(0xcc)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x13bd3d})=>async _0x21b59b=>{const _0x26db83=a0_0x57547c;return await(await _0x13bd3d[_0x26db83(0x147)][_0x26db83(0xab)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x21b59b[_0x26db83(0x130)]}))[_0x26db83(0xf8)](_0x21b59b[_0x26db83(0xcc)],{'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x21b59b[_0x26db83(0xd4)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x21b59b[_0x26db83(0x14f)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x146),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x57547c(0xf9),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0x130)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x15db0f})=>async _0x2eb9ff=>{const _0x3b59ac=a0_0x57547c,_0x33662b=await _0x15db0f[_0x3b59ac(0x147)][_0x3b59ac(0xab)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x2eb9ff['\x66\x6c\x65\x65\x74\x5f\x69\x64']});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x33662b[_0x3b59ac(0x126)],'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x33662b['\x69\x64\x73']['\x6d\x61\x70'](_0x3603ad=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x3603ad,'\x73\x74\x61\x74\x75\x73':_0x33662b['\x67\x65\x74'](_0x3603ad)[_0x3b59ac(0xca)]}))};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x65\x73\x74\x72\x6f\x79':{'\x6e\x61\x6d\x65':a0_0x57547c(0x124),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x44\x65\x6c\x65\x74\x65\x20\x74\x68\x65\x20\x66\x6c\x65\x65\x74\x20\x61\x6e\x64\x20\x65\x76\x65\x72\x79\x20\x6d\x61\x63\x68\x69\x6e\x65\x20\x69\x6e\x20\x69\x74\x2e\x20\x53\x74\x6f\x70\x73\x20\x62\x69\x6c\x6c\x69\x6e\x67\x20\x69\x6d\x6d\x65\x64\x69\x61\x74\x65\x6c\x79\x2e\x20\x43\x61\x6c\x6c\x20\x74\x68\x69\x73\x20\x77\x68\x65\x6e\x20\x74\x68\x65\x20\x63\x61\x6d\x70\x61\x69\x67\x6e\x20\x69\x73\x20\x64\x6f\x6e\x65\x3b\x20\x6f\x72\x70\x68\x61\x6e\x65\x64\x20\x66\x6c\x65\x65\x74\x73\x20\x6b\x65\x65\x70\x20\x62\x75\x72\x6e\x69\x6e\x67\x20\x63\x72\x65\x64\x69\x74\x73\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x57547c(0xf9),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134)},'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':a0_0x57547c(0xf5),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xb9)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0x130)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x36e4da})=>async _0xb62cca=>{const _0x1be729=a0_0x57547c;return await(await _0x36e4da[_0x1be729(0x147)]['\x6c\x69\x73\x74']({'\x66\x6c\x65\x65\x74\x49\x64':_0xb62cca[_0x1be729(0x130)]}))[_0x1be729(0x14c)]({'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x4f\x6e\x45\x72\x72\x6f\x72':_0xb62cca['\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72']}),{'\x66\x6c\x65\x65\x74\x49\x64':_0xb62cca[_0x1be729(0x130)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_FLEET_TOOL_SPECS=Object[a0_0x57547c(0xfc)](FLEET_TOOL_SPECS);function selectFleetSpecs(_0x59b9f8){const _0x91f2f8=a0_0x57547c,_0x4d5457={'\x70\x43\x6e\x62\x47':function(_0x209cad,_0x1da0a2){return _0x209cad===_0x1da0a2;}};if(!_0x59b9f8||_0x4d5457['\x70\x43\x6e\x62\x47'](_0x59b9f8[_0x91f2f8(0x110)],0x0))return ALL_FLEET_TOOL_SPECS;const _0x10fcf7=new Set(_0x59b9f8);return Object[_0x91f2f8(0xa9)](FLEET_TOOL_SPECS)['\x66\x69\x6c\x74\x65\x72'](_0x5a9aaf=>_0x10fcf7[_0x91f2f8(0xb0)](_0x5a9aaf))[_0x91f2f8(0x114)](_0x4f7f7a=>FLEET_TOOL_SPECS[_0x4f7f7a]);}function anthropicFleetTools(_0xe1cc6d,_0x1d7cdc={}){const _0x3c3e0a=a0_0x57547c,_0x4765f0={'\x76\x46\x42\x71\x76':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x59\x75\x4b\x6c\x73':function(_0x2681b1,_0x191177){return _0x2681b1(_0x191177);},'\x48\x56\x6c\x49\x45':function(_0x5e2e9b,_0x50b3f2){return _0x5e2e9b(_0x50b3f2);}},_0xf82411=_0x4765f0['\x48\x56\x6c\x49\x45'](selectFleetSpecs,_0x1d7cdc[_0x3c3e0a(0xce)]),_0x1a6988=buildFleetHandlers(_0xf82411,{'\x63\x6c\x69\x65\x6e\x74':_0xe1cc6d});return{'\x74\x6f\x6f\x6c\x73':_0xf82411[_0x3c3e0a(0x114)](_0x55f035=>({'\x6e\x61\x6d\x65':_0x55f035['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x55f035[_0x3c3e0a(0x117)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x55f035[_0x3c3e0a(0x11c)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x3c2a03){const _0x44c12b=_0x3c3e0a,_0x5baba6=_0x1a6988['\x67\x65\x74'](_0x3c2a03[_0x44c12b(0x122)]);if(!_0x5baba6)return{'\x74\x79\x70\x65':_0x44c12b(0x125),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3c2a03['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x66\x6c\x65\x65\x74\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x3c2a03[_0x44c12b(0x122)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x16a70c=await _0x5baba6(_0x3c2a03[_0x44c12b(0xa3)]);return{'\x74\x79\x70\x65':_0x4765f0['\x76\x46\x42\x71\x76'],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3c2a03['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x4765f0[_0x44c12b(0xd7)](serializeToolResult,_0x16a70c)};}catch(_0x25e721){return{'\x74\x79\x70\x65':_0x44c12b(0x125),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3c2a03['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x25e721 instanceof Error?_0x25e721['\x6d\x65\x73\x73\x61\x67\x65']:String(_0x25e721),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiFleetTools(_0x370270,_0x472fe5={}){const _0x31ec75=a0_0x57547c,_0x2176b1={'\x6a\x4f\x67\x50\x6f':_0x31ec75(0x115),'\x56\x4f\x6c\x71\x77':function(_0x17ce1a,_0x56b02f){return _0x17ce1a(_0x56b02f);},'\x59\x75\x6f\x66\x6e':function(_0x1e19d1,_0xfbc555){return _0x1e19d1(_0xfbc555);},'\x53\x79\x66\x6d\x74':function(_0x28710b,_0x12e1f9,_0x56e78f){return _0x28710b(_0x12e1f9,_0x56e78f);}},_0x2d92ee=_0x2176b1[_0x31ec75(0xb5)](selectFleetSpecs,_0x472fe5['\x61\x6c\x6c\x6f\x77']),_0x4a9204=_0x2176b1[_0x31ec75(0x132)](buildFleetHandlers,_0x2d92ee,{'\x63\x6c\x69\x65\x6e\x74':_0x370270});return{'\x74\x6f\x6f\x6c\x73':_0x2d92ee[_0x31ec75(0x114)](_0x33d5bb=>({'\x74\x79\x70\x65':_0x31ec75(0xdc),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x33d5bb[_0x31ec75(0x122)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x33d5bb['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x33d5bb[_0x31ec75(0x11c)]}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x4ce77f){const _0x2958d8=_0x31ec75,_0x1e1e91=_0x4a9204['\x67\x65\x74'](_0x4ce77f[_0x2958d8(0xdc)]['\x6e\x61\x6d\x65']);if(!_0x1e1e91)return{'\x72\x6f\x6c\x65':_0x2958d8(0x115),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x4ce77f['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':_0x2958d8(0x104)+_0x4ce77f['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x2958d8(0x122)]})};let _0x355d4a={};try{const _0x42f63b=JSON[_0x2958d8(0x144)](_0x4ce77f[_0x2958d8(0xdc)][_0x2958d8(0x136)]||'\x7b\x7d');if(_0x42f63b&&typeof _0x42f63b==='\x6f\x62\x6a\x65\x63\x74')_0x355d4a=_0x42f63b;}catch{}try{const _0x38566d=await _0x1e1e91(_0x355d4a);return{'\x72\x6f\x6c\x65':_0x2176b1[_0x2958d8(0xa5)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x4ce77f['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x2176b1['\x56\x4f\x6c\x71\x77'](serializeToolResult,_0x38566d)};}catch(_0xc2926e){return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x4ce77f['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x2958d8(0xad)]({'\x65\x72\x72\x6f\x72':_0xc2926e instanceof Error?_0xc2926e['\x6d\x65\x73\x73\x61\x67\x65']:String(_0xc2926e)})};}}};}async function vercelAiFleetTools(_0x5a1131,_0x269428={}){const _0x545df1=a0_0x57547c,_0x2406f6={'\x73\x59\x52\x72\x4a':_0x545df1(0xae)};let _0x3e117c;try{_0x3e117c=await import('\x61\x69');}catch{throw new Error(_0x2406f6[_0x545df1(0x100)]);}const _0x2b5198=selectFleetSpecs(_0x269428[_0x545df1(0xce)]),_0x192c37=buildFleetHandlers(_0x2b5198,{'\x63\x6c\x69\x65\x6e\x74':_0x5a1131}),_0x2a25dc={};for(const _0x4b0428 of _0x2b5198)_0x2a25dc[_0x4b0428[_0x545df1(0x122)]]=_0x3e117c['\x74\x6f\x6f\x6c']({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4b0428[_0x545df1(0x117)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x3e117c[_0x545df1(0x10d)](_0x4b0428[_0x545df1(0x11c)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x162854=>{const _0x45c6f5=_0x545df1,_0x463714=_0x192c37[_0x45c6f5(0xe8)](_0x4b0428['\x6e\x61\x6d\x65']);if(!_0x463714)throw new Error(_0x45c6f5(0x104)+_0x4b0428[_0x45c6f5(0x122)]);return serializeToolResult(await _0x463714(_0x162854));}});return _0x2a25dc;}async function mastraFleetTools(_0x5c2f11,_0x34914d={}){const _0x5202a3=a0_0x57547c,_0x227650={'\x4b\x64\x6e\x52\x67':function(_0x3adafd,_0x225f2c){return _0x3adafd(_0x225f2c);},'\x5a\x6f\x74\x52\x4f':_0x5202a3(0x13f),'\x78\x4e\x7a\x57\x7a':function(_0x519f84,_0x22f235,_0xbbe529){return _0x519f84(_0x22f235,_0xbbe529);}};let _0x328a98;try{_0x328a98=await import(_0x227650[_0x5202a3(0xdf)]);}catch{throw new Error('\x6d\x61\x73\x74\x72\x61\x46\x6c\x65\x65\x74\x54\x6f\x6f\x6c\x73\x28\x29\x3a\x20\x74\x68\x65\x20\x60\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65\x60\x20\x70\x61\x63\x6b\x61\x67\x65\x20\x69\x73\x20\x6e\x6f\x74\x20\x69\x6e\x73\x74\x61\x6c\x6c\x65\x64\x2e\x20\x49\x6e\x73\x74\x61\x6c\x6c\x20\x76\x69\x61\x20\x60\x70\x6e\x70\x6d\x20\x61\x64\x64\x20\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65\x60\x2e');}const _0x5a8fab=selectFleetSpecs(_0x34914d[_0x5202a3(0xce)]),_0x5dc558=_0x227650[_0x5202a3(0x112)](buildFleetHandlers,_0x5a8fab,{'\x63\x6c\x69\x65\x6e\x74':_0x5c2f11}),_0x389c36={};for(const _0x43bc64 of _0x5a8fab)_0x389c36[_0x43bc64[_0x5202a3(0x122)]]=_0x328a98[_0x5202a3(0xde)]({'\x69\x64':_0x43bc64['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x43bc64[_0x5202a3(0x117)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x328a98[_0x5202a3(0x10d)]?_0x328a98[_0x5202a3(0x10d)](_0x43bc64[_0x5202a3(0x11c)]):_0x43bc64[_0x5202a3(0x11c)],'\x65\x78\x65\x63\x75\x74\x65':async _0x2037eb=>{const _0x1533ae=_0x5202a3,_0x1ad5b0=_0x5dc558[_0x1533ae(0xe8)](_0x43bc64[_0x1533ae(0x122)]);if(!_0x1ad5b0)throw new Error(_0x1533ae(0x104)+_0x43bc64[_0x1533ae(0x122)]);return{'\x72\x65\x73\x75\x6c\x74':_0x227650[_0x1533ae(0x119)](serializeToolResult,await _0x1ad5b0(_0x2037eb?.[_0x1533ae(0xc5)]??{}))};}});return _0x389c36;}function buildFleetHandlers(_0x2092ee,_0x4c37bd){const _0x5b610f=a0_0x57547c,_0x25ebc6=new Map();for(const _0x3e3c18 of _0x2092ee)_0x25ebc6[_0x5b610f(0xa2)](_0x3e3c18[_0x5b610f(0x122)],_0x3e3c18[_0x5b610f(0x113)](_0x4c37bd));return _0x25ebc6;}const LIFECYCLE_TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x63\x72\x65\x61\x74\x65':{'\x6e\x61\x6d\x65':a0_0x57547c(0x145),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xb8),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x45\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x6e\x61\x6d\x65\x20\x28\x65\x2e\x67\x2e\x20\x27\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x27\x20\x66\x6f\x72\x20\x6d\x75\x6c\x74\x69\x2d\x6c\x61\x6e\x67\x75\x61\x67\x65\x20\x4e\x6f\x64\x65\x2f\x50\x79\x74\x68\x6f\x6e\x29\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x27\x75\x6e\x69\x76\x65\x72\x73\x61\x6c\x27\x2e'},'\x6e\x61\x6d\x65':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xba)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x4a2abb})=>async _0x521193=>{const _0x18bc64=a0_0x57547c,_0x791393=await _0x4a2abb['\x63\x72\x65\x61\x74\x65']({'\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74':_0x521193['\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74']??_0x18bc64(0x118),'\x6e\x61\x6d\x65':_0x521193[_0x18bc64(0x122)]});return{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x791393['\x69\x64'],'\x73\x74\x61\x74\x75\x73':_0x791393[_0x18bc64(0xca)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x6d\x6d\x61\x6e\x64','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x128),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x49\x64\x20\x72\x65\x74\x75\x72\x6e\x65\x64\x20\x62\x79\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x63\x72\x65\x61\x74\x65\x2e'},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xe2)},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0xd8)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x57547c(0xb7),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x12b)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x57547c(0xf6),a0_0x57547c(0xcc)],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x45b427})=>async _0x40fce0=>{const _0xb42331=a0_0x57547c,_0xfbd0d2=await _0x45b427[_0xb42331(0xe8)](_0x40fce0[_0xb42331(0xf6)]);if(!_0xfbd0d2)throw new Error(_0xb42331(0xf3)+_0x40fce0[_0xb42331(0xf6)]+'\x20\x6e\x6f\x74\x20\x66\x6f\x75\x6e\x64\x2e\x20\x43\x72\x65\x61\x74\x65\x20\x69\x74\x20\x66\x69\x72\x73\x74\x20\x77\x69\x74\x68\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x63\x72\x65\x61\x74\x65\x2e');const _0x4bb02f=await _0xfbd0d2[_0xb42331(0xfb)](_0x40fce0[_0xb42331(0xcc)],{'\x63\x77\x64':_0x40fce0[_0xb42331(0xb6)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x40fce0[_0xb42331(0x14f)]??0xea60});return{'\x73\x74\x64\x6f\x75\x74':_0x4bb02f['\x73\x74\x64\x6f\x75\x74'],'\x73\x74\x64\x65\x72\x72':_0x4bb02f[_0xb42331(0x10b)],'\x65\x78\x69\x74\x43\x6f\x64\x65':_0x4bb02f[_0xb42331(0x14b)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x64\x65\x73\x74\x72\x6f\x79':{'\x6e\x61\x6d\x65':a0_0x57547c(0x13c),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x10a),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x57547c(0x134),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x57547c(0x121)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64'],'\x61\x64\x64\x69\x74\x69\x6f\x6e\x61\x6c\x50\x72\x6f\x70\x65\x72\x74\x69\x65\x73':![]},'\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72':({client:_0x171969})=>async _0x153a18=>{const _0x5e4c54=a0_0x57547c,_0x24a67e=await _0x171969[_0x5e4c54(0xe8)](_0x153a18['\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64']);if(!_0x24a67e)return{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x153a18[_0x5e4c54(0xf6)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};return await _0x24a67e['\x64\x65\x6c\x65\x74\x65'](),{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x153a18[_0x5e4c54(0xf6)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_LIFECYCLE_TOOL_SPECS=Object[a0_0x57547c(0xfc)](LIFECYCLE_TOOL_SPECS);function selectLifecycleSpecs(_0x1f91a5){const _0x2e6d61=a0_0x57547c,_0x387ef3={'\x6c\x51\x56\x57\x6e':function(_0x4523b5,_0x4553bf){return _0x4523b5===_0x4553bf;}};if(!_0x1f91a5||_0x387ef3[_0x2e6d61(0xc9)](_0x1f91a5[_0x2e6d61(0x110)],0x0))return ALL_LIFECYCLE_TOOL_SPECS;const _0x5cb3d5=new Set(_0x1f91a5);return Object['\x6b\x65\x79\x73'](LIFECYCLE_TOOL_SPECS)[_0x2e6d61(0x13d)](_0x27c6c4=>_0x5cb3d5[_0x2e6d61(0xb0)](_0x27c6c4))[_0x2e6d61(0x114)](_0x46e2ba=>LIFECYCLE_TOOL_SPECS[_0x46e2ba]);}function anthropicLifecycleTools(_0xecb28b,_0x1265c9={}){const _0x249cf8=a0_0x57547c,_0xce3140={'\x46\x55\x65\x59\x69':function(_0x1c3b0c,_0x2dfbac){return _0x1c3b0c(_0x2dfbac);},'\x64\x63\x64\x54\x6d':_0x249cf8(0x125),'\x75\x77\x6e\x76\x6f':function(_0x17f2ef,_0x15d8cc){return _0x17f2ef instanceof _0x15d8cc;},'\x44\x56\x63\x78\x70':function(_0xa6ddc9,_0x629d33,_0xb5eb74){return _0xa6ddc9(_0x629d33,_0xb5eb74);}},_0x56cde1=selectLifecycleSpecs(_0x1265c9[_0x249cf8(0xce)]),_0x59b88a=_0xce3140[_0x249cf8(0xee)](buildLifecycleHandlers,_0x56cde1,{'\x63\x6c\x69\x65\x6e\x74':_0xecb28b});return{'\x74\x6f\x6f\x6c\x73':_0x56cde1[_0x249cf8(0x114)](_0x15a49a=>({'\x6e\x61\x6d\x65':_0x15a49a[_0x249cf8(0x122)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x15a49a[_0x249cf8(0x117)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x15a49a['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x4d6060){const _0x6a1f53=_0x249cf8,_0x2d3740=_0x59b88a[_0x6a1f53(0xe8)](_0x4d6060[_0x6a1f53(0x122)]);if(!_0x2d3740)return{'\x74\x79\x70\x65':_0x6a1f53(0x125),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x4d6060['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x6a1f53(0xa8)+_0x4d6060[_0x6a1f53(0x122)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x4b126c=await _0xce3140[_0x6a1f53(0x102)](_0x2d3740,_0x4d6060['\x69\x6e\x70\x75\x74']);return{'\x74\x79\x70\x65':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x4d6060['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x4b126c)};}catch(_0x384c35){return{'\x74\x79\x70\x65':_0xce3140['\x64\x63\x64\x54\x6d'],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x4d6060['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0xce3140['\x75\x77\x6e\x76\x6f'](_0x384c35,Error)?_0x384c35[_0x6a1f53(0xbe)]:_0xce3140[_0x6a1f53(0x102)](String,_0x384c35),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiLifecycleTools(_0x8b83d7,_0x3dd50e={}){const _0x2b96b3=a0_0x57547c,_0x2c8117={'\x65\x72\x78\x62\x49':function(_0x5afd5f,_0x1a02a4){return _0x5afd5f===_0x1a02a4;},'\x59\x6d\x73\x57\x44':function(_0x3fa5a5,_0x4d9cb9){return _0x3fa5a5(_0x4d9cb9);},'\x6a\x6d\x4a\x41\x74':function(_0x14a4ff,_0x4de3c7,_0xcf9123){return _0x14a4ff(_0x4de3c7,_0xcf9123);}},_0x3aa53f=selectLifecycleSpecs(_0x3dd50e[_0x2b96b3(0xce)]),_0x5a66c4=_0x2c8117[_0x2b96b3(0x12c)](buildLifecycleHandlers,_0x3aa53f,{'\x63\x6c\x69\x65\x6e\x74':_0x8b83d7});return{'\x74\x6f\x6f\x6c\x73':_0x3aa53f[_0x2b96b3(0x114)](_0x2f836e=>({'\x74\x79\x70\x65':_0x2b96b3(0xdc),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x2f836e[_0x2b96b3(0x122)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2f836e[_0x2b96b3(0x117)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x2f836e[_0x2b96b3(0x11c)]}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x553d8e){const _0x10496f=_0x2b96b3,_0xf34995=_0x5a66c4['\x67\x65\x74'](_0x553d8e[_0x10496f(0xdc)][_0x10496f(0x122)]);if(!_0xf34995)return{'\x72\x6f\x6c\x65':_0x10496f(0x115),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x553d8e['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x10496f(0xad)]({'\x65\x72\x72\x6f\x72':_0x10496f(0xa8)+_0x553d8e[_0x10496f(0xdc)]['\x6e\x61\x6d\x65']})};let _0x8b5aa4={};try{const _0x44a37b=JSON[_0x10496f(0x144)](_0x553d8e[_0x10496f(0xdc)][_0x10496f(0x136)]||'\x7b\x7d');if(_0x44a37b&&_0x2c8117[_0x10496f(0x11f)](typeof _0x44a37b,_0x10496f(0xf9)))_0x8b5aa4=_0x44a37b;}catch{}try{const _0x355dc3=await _0x2c8117[_0x10496f(0x14e)](_0xf34995,_0x8b5aa4);return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x553d8e['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x355dc3)};}catch(_0x65b2af){return{'\x72\x6f\x6c\x65':_0x10496f(0x115),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x553d8e['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x10496f(0xad)]({'\x65\x72\x72\x6f\x72':_0x65b2af instanceof Error?_0x65b2af[_0x10496f(0xbe)]:String(_0x65b2af)})};}}};}function buildLifecycleHandlers(_0x37f5e1,_0x31b9d4){const _0x48e751=a0_0x57547c,_0x3db953=new Map();for(const _0x12d2b8 of _0x37f5e1)_0x3db953[_0x48e751(0xa2)](_0x12d2b8[_0x48e751(0x122)],_0x12d2b8[_0x48e751(0x113)](_0x31b9d4));return _0x3db953;}async function mastraTools(_0x414055,_0xe2a4cd={}){const _0x55420e=a0_0x57547c,_0x34d492={'\x75\x58\x64\x5a\x58':function(_0x347cec,_0x80574c){return _0x347cec(_0x80574c);},'\x44\x76\x4b\x61\x77':function(_0x56f45f,_0x572193){return _0x56f45f(_0x572193);}};let _0x38135b;try{_0x38135b=await import(_0x55420e(0x13f));}catch{throw new Error(_0x55420e(0x131));}const _0x48401e=_0x34d492[_0x55420e(0x11a)](selectSpecs,_0xe2a4cd[_0x55420e(0xce)]),_0x323a49={'\x62\x6f\x78':_0x414055,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0xe2a4cd[_0x55420e(0x149)]},_0x33f3ef={};for(const _0x3bcddf of _0x48401e){const _0x19e23c=_0x3bcddf['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x323a49);_0x33f3ef[_0x3bcddf['\x6e\x61\x6d\x65']]=_0x38135b[_0x55420e(0xde)]({'\x69\x64':_0x3bcddf[_0x55420e(0x122)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x3bcddf[_0x55420e(0x117)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x38135b[_0x55420e(0x10d)]?_0x38135b[_0x55420e(0x10d)](_0x3bcddf['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']):_0x3bcddf[_0x55420e(0x11c)],'\x65\x78\x65\x63\x75\x74\x65':async _0x4acd00=>{const _0x2fabeb=_0x55420e;return{'\x72\x65\x73\x75\x6c\x74':_0x34d492['\x75\x58\x64\x5a\x58'](serializeToolResult,await _0x34d492[_0x2fabeb(0x11a)](_0x19e23c,_0x4acd00?.[_0x2fabeb(0xc5)]??{}))};}});}return _0x33f3ef;}function openaiTools(_0x487f0e,_0x28f2a9={}){const _0x28c59b=a0_0x57547c,_0x5ddc33={'\x49\x51\x4e\x4e\x4d':function(_0x255c01,_0x3e23ce){return _0x255c01===_0x3e23ce;},'\x59\x4e\x5a\x71\x73':function(_0x4e14c6,_0x1c677b){return _0x4e14c6(_0x1c677b);},'\x51\x48\x72\x6b\x6a':function(_0x2695f1,_0xc833d4){return _0x2695f1(_0xc833d4);},'\x70\x77\x64\x55\x4f':'\x74\x6f\x6f\x6c'},_0x27c332=selectSpecs(_0x28f2a9['\x61\x6c\x6c\x6f\x77']),_0x25dd25={'\x62\x6f\x78':_0x487f0e,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x28f2a9[_0x28c59b(0x149)]},_0x2b41c1=new Map();for(const _0x516acf of _0x27c332)_0x2b41c1[_0x28c59b(0xa2)](_0x516acf[_0x28c59b(0x122)],_0x516acf['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x25dd25));const _0x11fb08=_0x27c332[_0x28c59b(0x114)](_0x1b7d87=>({'\x74\x79\x70\x65':_0x28c59b(0xdc),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x1b7d87[_0x28c59b(0x122)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x1b7d87[_0x28c59b(0x117)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x1b7d87[_0x28c59b(0x11c)]}}));function _0x5ae15e(_0x318b06){const _0x40f3ca=_0x28c59b;if(!_0x318b06)return{};try{const _0x381cca=JSON[_0x40f3ca(0x144)](_0x318b06);return _0x5ddc33['\x49\x51\x4e\x4e\x4d'](typeof _0x381cca,_0x40f3ca(0xf9))&&_0x381cca!==null?_0x381cca:{};}catch{return{};}}async function _0x4f64d3(_0x314d80){const _0x315f5a=_0x28c59b,_0x3fb90c=_0x2b41c1[_0x315f5a(0xe8)](_0x314d80[_0x315f5a(0xdc)][_0x315f5a(0x122)]);if(!_0x3fb90c)return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x314d80['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x315f5a(0xad)]({'\x65\x72\x72\x6f\x72':_0x315f5a(0xf2)+_0x314d80[_0x315f5a(0xdc)][_0x315f5a(0x122)]})};try{const _0x5648d4=await _0x5ddc33[_0x315f5a(0x140)](_0x3fb90c,_0x5ddc33[_0x315f5a(0x11b)](_0x5ae15e,_0x314d80[_0x315f5a(0xdc)][_0x315f5a(0x136)]));return{'\x72\x6f\x6c\x65':_0x5ddc33[_0x315f5a(0x141)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x314d80['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x5648d4)};}catch(_0x382a12){return{'\x72\x6f\x6c\x65':_0x5ddc33[_0x315f5a(0x141)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x314d80['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':_0x382a12 instanceof Error?_0x382a12[_0x315f5a(0xbe)]:_0x5ddc33[_0x315f5a(0x11b)](String,_0x382a12)})};}}async function _0x4f20f3(_0x26201f){const _0x22d654=_0x28c59b,_0x375e24=_0x26201f['\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x73']??[];return Promise[_0x22d654(0x106)](_0x375e24[_0x22d654(0x114)](_0x4f64d3));}return{'\x74\x6f\x6f\x6c\x73':_0x11fb08,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c':_0x4f64d3,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x4f20f3};}async function vercelAiTools(_0x5cf159,_0x31e2e9={}){const _0x552370=a0_0x57547c,_0x27234f={'\x4b\x42\x6f\x56\x6b':_0x552370(0x13e),'\x47\x74\x6e\x56\x4e':function(_0x3272f7,_0x14918c){return _0x3272f7(_0x14918c);}};let _0x2bbe4f;try{_0x2bbe4f=await import('\x61\x69');}catch{throw new Error(_0x27234f[_0x552370(0x139)]);}const _0x553abe=_0x27234f[_0x552370(0x13a)](selectSpecs,_0x31e2e9[_0x552370(0xce)]),_0x25bac9={'\x62\x6f\x78':_0x5cf159,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x31e2e9[_0x552370(0x149)]},_0x38e5ce={};for(const _0x1ed2e3 of _0x553abe){const _0x1baef0=_0x1ed2e3[_0x552370(0x113)](_0x25bac9);_0x38e5ce[_0x1ed2e3['\x6e\x61\x6d\x65']]=_0x2bbe4f[_0x552370(0x115)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x1ed2e3[_0x552370(0x117)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x2bbe4f[_0x552370(0x10d)](_0x1ed2e3[_0x552370(0x11c)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x2d8c72=>{return serializeToolResult(await _0x1baef0(_0x2d8c72));}});}return _0x38e5ce;}export{ALL_FLEET_TOOL_SPECS,ALL_LIFECYCLE_TOOL_SPECS,ALL_TOOL_SPECS,FLEET_TOOL_SPECS,LIFECYCLE_TOOL_SPECS,TOOL_SPECS,anthropicFleetTools,anthropicLifecycleTools,anthropicTools,createMcpServer,mastraFleetTools,mastraTools,openaiFleetTools,openaiLifecycleTools,openaiTools,runCode,vercelAiFleetTools,vercelAiTools};
|
package/dist/auth/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const a0_0x38aa5d=a0_0x12ad;function a0_0x40c2(){const _0x537cce=['\x6e\x74\x61\x31\x7a\x4d\x72\x48\x76\x4b\x4c\x49','\x6d\x4a\x69\x32\x6d\x78\x4c\x7a\x72\x77\x39\x75\x76\x57','\x41\x33\x44\x30\x44\x4b\x6d','\x73\x66\x6d\x59\x6e\x74\x79','\x43\x4d\x76\x57\x7a\x77\x66\x30','\x6d\x4a\x69\x58\x6f\x64\x72\x48\x75\x78\x48\x6a\x44\x4c\x47','\x73\x77\x35\x6b\x45\x78\x6d','\x79\x32\x35\x67\x45\x77\x47','\x73\x4b\x35\x70\x45\x65\x30','\x6d\x5a\x75\x59\x6d\x64\x43\x58\x43\x66\x62\x34\x71\x4d\x4c\x31','\x42\x4d\x39\x33','\x41\x68\x4c\x4a\x76\x78\x69','\x71\x30\x54\x6a\x42\x65\x34','\x73\x4c\x44\x75','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x6d\x74\x65\x32\x6d\x5a\x71\x31\x6d\x4b\x44\x58\x7a\x67\x48\x52\x79\x71','\x79\x77\x58\x4e','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x76\x67\x39\x50\x76\x75\x69','\x43\x4d\x76\x48\x7a\x61','\x6e\x64\x79\x34\x6e\x74\x75\x59\x6e\x33\x4c\x41\x42\x30\x66\x6e\x41\x47','\x44\x78\x6e\x4c\x43\x4b\x4c\x4b','\x43\x33\x62\x53\x41\x78\x71','\x6e\x4b\x66\x51\x72\x65\x54\x64\x76\x57','\x43\x4d\x35\x49\x7a\x67\x57','\x44\x67\x4c\x4c\x43\x47','\x79\x77\x6e\x4a\x7a\x78\x6e\x5a','\x44\x78\x62\x4b\x79\x78\x72\x4c','\x7a\x67\x39\x4a\x44\x77\x31\x4c\x42\x4e\x72\x6a\x7a\x61','\x7a\x4e\x6a\x56\x42\x71','\x41\x78\x6e\x5a\x44\x77\x75','\x7a\x4e\x6a\x4c\x7a\x71','\x41\x4d\x6a\x54\x41\x4d\x4f','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43','\x79\x4d\x48\x77\x44\x77\x4b','\x6d\x5a\x79\x58\x6e\x5a\x72\x41\x71\x4c\x6e\x69\x45\x4d\x65','\x42\x65\x4c\x4d\x43\x78\x69','\x75\x67\x4c\x71\x73\x4b\x4b','\x7a\x78\x48\x57','\x6d\x74\x69\x57\x43\x76\x66\x54\x44\x33\x6a\x30','\x7a\x4d\x58\x56\x42\x33\x69','\x45\x76\x66\x6d\x7a\x78\x65','\x43\x33\x72\x59\x41\x77\x35\x4e','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x6d\x74\x61\x5a\x6d\x64\x6d\x57\x6e\x78\x6a\x76\x74\x32\x39\x62\x7a\x71','\x43\x32\x48\x48\x6d\x4a\x75\x32','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x7a\x77\x35\x30\x7a\x78\x6a\x57\x43\x4d\x4c\x5a\x7a\x71','\x43\x4d\x76\x57\x42\x67\x66\x4a\x7a\x71','\x6d\x74\x4b\x33\x6d\x74\x4b\x32\x79\x76\x72\x63\x41\x4b\x31\x33','\x43\x32\x4c\x4e\x42\x4d\x4c\x55\x7a\x31\x6e\x4c\x79\x33\x6a\x4c\x44\x61','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x44\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x7a\x67\x4c\x4e\x7a\x78\x6e\x30','\x79\x4c\x44\x63\x77\x4d\x47','\x75\x4e\x4c\x4f\x76\x65\x38','\x75\x4c\x4c\x34\x77\x67\x69','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x43\x68\x6a\x56\x7a\x68\x76\x4a\x44\x65\x4c\x4b','\x43\x67\x66\x59\x43\x32\x75','\x42\x77\x66\x34','\x7a\x32\x76\x30\x76\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x79\x32\x39\x53\x42\x67\x66\x49\x42\x33\x6a\x48\x44\x67\x4c\x56\x42\x47','\x45\x75\x76\x64\x45\x4d\x57','\x79\x32\x58\x56\x79\x32\x54\x74\x41\x32\x76\x33\x75\x32\x76\x4a\x42\x32\x35\x4b\x43\x57','\x41\x78\x6e\x5a\x44\x77\x76\x64\x42\x32\x58\x53\x79\x77\x6a\x56\x43\x4d\x66\x30\x41\x77\x39\x55','\x72\x4c\x6a\x6b\x42\x30\x71'];a0_0x40c2=function(){return _0x537cce;};return a0_0x40c2();}(function(_0x485503,_0x523913){const _0x27908a=a0_0x12ad,_0x510c85=_0x485503();while(!![]){try{const _0xbb02b1=parseInt(_0x27908a(0x7b))/0x1*(parseInt(_0x27908a(0x95))/0x2)+-parseInt(_0x27908a(0x90))/0x3+-parseInt(_0x27908a(0x73))/0x4+-parseInt(_0x27908a(0xa7))/0x5*(-parseInt(_0x27908a(0x87))/0x6)+parseInt(_0x27908a(0xa8))/0x7*(parseInt(_0x27908a(0xac))/0x8)+-parseInt(_0x27908a(0xb0))/0x9*(parseInt(_0x27908a(0x8b))/0xa)+-parseInt(_0x27908a(0x78))/0xb;if(_0xbb02b1===_0x523913)break;else _0x510c85['push'](_0x510c85['shift']());}catch(_0x48d11b){_0x510c85['push'](_0x510c85['shift']());}}}(a0_0x40c2,0x8a4f1));import{createHmac,timingSafeEqual}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';function base64UrlEncode(_0x5877ef){const _0x23d4ae=a0_0x12ad,_0xdad3e={'\x79\x51\x4c\x65\x71':function(_0x17a3a6,_0x477c86){return _0x17a3a6===_0x477c86;}};return(_0xdad3e[_0x23d4ae(0x8d)](typeof _0x5877ef,_0x23d4ae(0x8e))?Buffer[_0x23d4ae(0x81)](_0x5877ef):_0x5877ef)[_0x23d4ae(0x85)](_0x23d4ae(0x97))[_0x23d4ae(0x94)](/\+/g,'\x2d')[_0x23d4ae(0x94)](/\//g,'\x5f')[_0x23d4ae(0x94)](/=+$/,'');}function decodeBase64UrlToBuffer(_0xd84f25){const _0x5217cc=a0_0x12ad,_0x2a4562={'\x4b\x4f\x61\x73\x64':function(_0x44075e,_0x128a9b){return _0x44075e-_0x128a9b;}};if(!/^[A-Za-z0-9_-]*$/['\x74\x65\x73\x74'](_0xd84f25))return null;const _0x608345=_0xd84f25+'\x3d'['\x72\x65\x70\x65\x61\x74'](_0x2a4562['\x4b\x4f\x61\x73\x64'](0x4,_0xd84f25[_0x5217cc(0x9d)]%0x4)%0x4);return Buffer['\x66\x72\x6f\x6d'](_0x608345['\x72\x65\x70\x6c\x61\x63\x65'](/-/g,'\x2b')['\x72\x65\x70\x6c\x61\x63\x65'](/_/g,'\x2f'),_0x5217cc(0x97));}function createSignature(_0x37f2dd,_0x58409c){const _0x3f0ae2=a0_0x12ad,_0x322751={'\x54\x6f\x69\x55\x42':function(_0x3092de,_0x53f2f0,_0x11fa2a){return _0x3092de(_0x53f2f0,_0x11fa2a);},'\x43\x4b\x49\x6c\x4e':_0x3f0ae2(0x91)};return base64UrlEncode(_0x322751[_0x3f0ae2(0x76)](createHmac,_0x322751[_0x3f0ae2(0xb3)],_0x58409c)[_0x3f0ae2(0x7f)](_0x37f2dd)[_0x3f0ae2(0x99)]());}const JWT_HEADER=base64UrlEncode(JSON[a0_0x38aa5d(0xb5)]({'\x61\x6c\x67':a0_0x38aa5d(0xaa),'\x74\x79\x70':a0_0x38aa5d(0xb4)}));function issueToken(_0x3359d3,_0x377efc,_0x362e75){const _0x68a414=a0_0x38aa5d,_0x254ce5={'\x63\x6e\x46\x79\x68':function(_0x43389c,_0xc6c23e){return _0x43389c(_0xc6c23e);},'\x50\x69\x50\x4a\x49':function(_0x29dbba,_0x2b913d,_0x16073b){return _0x29dbba(_0x2b913d,_0x16073b);}},_0x35bb98=Math[_0x68a414(0x8c)](Date['\x6e\x6f\x77']()/0x3e8),_0x296c1b={..._0x377efc,'\x69\x61\x74':_0x35bb98,'\x65\x78\x70':_0x35bb98+_0x362e75*0x3c},_0x1a2ed4=JWT_HEADER+'\x2e'+_0x254ce5[_0x68a414(0xae)](base64UrlEncode,JSON[_0x68a414(0xb5)](_0x296c1b));return _0x1a2ed4+'\x2e'+_0x254ce5[_0x68a414(0x89)](createSignature,_0x1a2ed4,_0x3359d3);}function issueReadToken(_0x5a5ce0,_0x2f0dba,_0x2c75d8){const _0x4a42f3=a0_0x38aa5d;return issueToken(_0x5a5ce0,{..._0x2f0dba,'\x74\x79\x70':_0x4a42f3(0x77)},_0x2c75d8);}function issueSessionScopedToken(_0x314957,_0x21b565,_0x75d0e2){return issueReadToken(_0x314957,_0x21b565,_0x75d0e2);}function issueProjectScopedToken(_0x35feb9,_0xd59ae2,_0x19c1c7){return issueReadToken(_0x35feb9,_0xd59ae2,_0x19c1c7);}function issueBatchScopedToken(_0x4db1a9,_0x27d9d7,_0x2446e9){return issueReadToken(_0x4db1a9,_0x27d9d7,_0x2446e9);}function issueCollaborationToken(_0x40794b,_0x4b00d5,_0xb14f08){const _0x4596bf=a0_0x38aa5d,_0x11dcbf={'\x52\x79\x68\x54\x4f':function(_0x15a735,_0x26e539,_0x458ff9,_0x2819dc){return _0x15a735(_0x26e539,_0x458ff9,_0x2819dc);},'\x49\x6e\x4a\x79\x73':_0x4596bf(0xa2)};return _0x11dcbf[_0x4596bf(0x9b)](issueToken,_0x40794b,{'\x73\x75\x62':_0x4b00d5[_0x4596bf(0x79)],'\x73\x69\x64':_0x4b00d5['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x70\x69\x64':_0x4b00d5['\x70\x72\x6f\x64\x75\x63\x74\x49\x64'],'\x63\x69\x64':_0x4b00d5[_0x4596bf(0x92)],'\x74\x79\x70':_0x11dcbf[_0x4596bf(0xad)],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x4b00d5['\x70\x72\x6f\x6a\x65\x63\x74\x49\x64'],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x4b00d5['\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64'],'\x61\x63\x63\x65\x73\x73':_0x4b00d5[_0x4596bf(0x7e)]},_0xb14f08);}function unsafeDecodeToken(_0xa9a512){const _0xbc550f=a0_0x38aa5d;try{const _0x28aef6=_0xa9a512['\x73\x70\x6c\x69\x74']('\x2e');if(_0x28aef6[_0xbc550f(0x9d)]!==0x3)return null;const _0x18ab3c=_0x28aef6[0x1]+'\x3d'[_0xbc550f(0xab)]((0x4-_0x28aef6[0x1]['\x6c\x65\x6e\x67\x74\x68']%0x4)%0x4),_0x3e6f22=Buffer[_0xbc550f(0x81)](_0x18ab3c['\x72\x65\x70\x6c\x61\x63\x65'](/-/g,'\x2b')[_0xbc550f(0x94)](/_/g,'\x2f'),_0xbc550f(0x97))[_0xbc550f(0x85)]();return JSON[_0xbc550f(0x9f)](_0x3e6f22);}catch{return null;}}function verifyToken(_0x28d569,_0x538aea,_0x35bfab={}){const _0x315cfc=a0_0x38aa5d,_0x2706c9={'\x6b\x77\x74\x76\x43':_0x315cfc(0xaa),'\x68\x79\x63\x55\x72':function(_0x1a6484,_0x339aa2,_0x10d163){return _0x1a6484(_0x339aa2,_0x10d163);},'\x6a\x62\x6d\x6a\x6a':function(_0x185a7c,_0x5d3703){return _0x185a7c(_0x5d3703);},'\x6b\x67\x78\x68\x63':function(_0x1aa051,_0x46b726){return _0x1aa051(_0x46b726);},'\x46\x52\x4a\x6f\x44':function(_0x39c548,_0x50a9ae){return _0x39c548||_0x50a9ae;},'\x72\x6e\x62\x64\x6c':function(_0x5033e6,_0x867d7){return _0x5033e6/_0x867d7;},'\x52\x59\x78\x58\x62':function(_0x4bd6bf,_0x4d7188){return _0x4bd6bf<_0x4d7188;}};try{const _0x2938b6=_0x28d569[_0x315cfc(0x7a)]('\x2e');if(_0x2938b6[_0x315cfc(0x9d)]!==0x3)return null;const [_0x465aee,_0x5e45d5,_0x5026ec]=_0x2938b6;if(!_0x465aee||!_0x5e45d5||!_0x5026ec)return null;let _0x5a5e3b;try{const _0x5baf44=_0x465aee+'\x3d'[_0x315cfc(0xab)]((0x4-_0x465aee['\x6c\x65\x6e\x67\x74\x68']%0x4)%0x4),_0xae9d84=Buffer[_0x315cfc(0x81)](_0x5baf44[_0x315cfc(0x94)](/-/g,'\x2b')['\x72\x65\x70\x6c\x61\x63\x65'](/_/g,'\x2f'),_0x315cfc(0x97))['\x74\x6f\x53\x74\x72\x69\x6e\x67']();_0x5a5e3b=JSON[_0x315cfc(0x9f)](_0xae9d84);}catch{return null;}if(_0x5a5e3b[_0x315cfc(0x74)]!==_0x2706c9[_0x315cfc(0xa9)])return null;const _0x4ff260=_0x2706c9[_0x315cfc(0xb2)](createSignature,_0x465aee+'\x2e'+_0x5e45d5,_0x538aea),_0x511ee1=_0x2706c9[_0x315cfc(0x84)](decodeBase64UrlToBuffer,_0x5026ec),_0x51b407=_0x2706c9['\x6b\x67\x78\x68\x63'](decodeBase64UrlToBuffer,_0x4ff260);if(_0x2706c9[_0x315cfc(0xa6)](!_0x511ee1,!_0x51b407))return null;if(_0x511ee1['\x6c\x65\x6e\x67\x74\x68']!==_0x51b407['\x6c\x65\x6e\x67\x74\x68'])return null;if(!timingSafeEqual(_0x511ee1,_0x51b407))return null;const _0xfc237c=unsafeDecodeToken(_0x28d569);if(!_0xfc237c)return null;const _0x1b424b=Math[_0x315cfc(0x8c)](_0x2706c9[_0x315cfc(0x7c)](Date[_0x315cfc(0xb1)](),0x3e8)),_0x52108e=Math[_0x315cfc(0xa0)](0x0,_0x35bfab[_0x315cfc(0xa4)]??0x0);if(typeof _0xfc237c[_0x315cfc(0x8a)]!==_0x315cfc(0x8f)||_0x2706c9[_0x315cfc(0x9c)](_0xfc237c[_0x315cfc(0x8a)]+_0x52108e,_0x1b424b))return null;return _0xfc237c;}catch{return null;}}function a0_0x12ad(_0x32385f,_0x174446){_0x32385f=_0x32385f-0x73;const _0x40c285=a0_0x40c2();let _0x12adef=_0x40c285[_0x32385f];if(a0_0x12ad['\x75\x66\x6d\x4a\x58\x44']===undefined){var _0x322c9a=function(_0x2f7368){const _0x5e5c07='\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 _0x3da3f5='',_0x80171f='';for(let _0x34b527=0x0,_0xb682c4,_0x2aa8b8,_0x51ac16=0x0;_0x2aa8b8=_0x2f7368['\x63\x68\x61\x72\x41\x74'](_0x51ac16++);~_0x2aa8b8&&(_0xb682c4=_0x34b527%0x4?_0xb682c4*0x40+_0x2aa8b8:_0x2aa8b8,_0x34b527++%0x4)?_0x3da3f5+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0xb682c4>>(-0x2*_0x34b527&0x6)):0x0){_0x2aa8b8=_0x5e5c07['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2aa8b8);}for(let _0x5a0a7a=0x0,_0x1439d9=_0x3da3f5['\x6c\x65\x6e\x67\x74\x68'];_0x5a0a7a<_0x1439d9;_0x5a0a7a++){_0x80171f+='\x25'+('\x30\x30'+_0x3da3f5['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x5a0a7a)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x80171f);};a0_0x12ad['\x56\x75\x59\x46\x49\x6c']=_0x322c9a,a0_0x12ad['\x50\x58\x77\x44\x53\x50']={},a0_0x12ad['\x75\x66\x6d\x4a\x58\x44']=!![];}const _0x4bfd4c=_0x40c285[0x0],_0x19aad4=_0x32385f+_0x4bfd4c,_0x4b60b0=a0_0x12ad['\x50\x58\x77\x44\x53\x50'][_0x19aad4];return!_0x4b60b0?(_0x12adef=a0_0x12ad['\x56\x75\x59\x46\x49\x6c'](_0x12adef),a0_0x12ad['\x50\x58\x77\x44\x53\x50'][_0x19aad4]=_0x12adef):_0x12adef=_0x4b60b0,_0x12adef;}function getTokenTTL(_0x597e5e){const _0x24523c=a0_0x38aa5d,_0x17ec7b=Math[_0x24523c(0x8c)](Date[_0x24523c(0xb1)]()/0x3e8);return _0x597e5e[_0x24523c(0x8a)]-_0x17ec7b;}function isTokenExpiringSoon(_0x34da4a,_0x2abffa=0x3c){const _0x4a93ee=a0_0x38aa5d,_0x200fe8={'\x4a\x4e\x4f\x78\x4d':function(_0x30fff1,_0x3965d9){return _0x30fff1<=_0x3965d9;}};return _0x200fe8[_0x4a93ee(0xaf)](getTokenTTL(_0x34da4a),_0x2abffa);}var ProductTokenIssuer=class{['\x70\x72\x6f\x64\x75\x63\x74\x49\x64'];[a0_0x38aa5d(0x96)];['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'];constructor(_0x3882e6){const _0x3a0bab=a0_0x38aa5d;this['\x70\x72\x6f\x64\x75\x63\x74\x49\x64']=_0x3882e6[_0x3a0bab(0x9e)],this['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74']=_0x3882e6['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74'],this[_0x3a0bab(0x98)]={'\x66\x72\x65\x65':_0x3882e6['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']?.[_0x3a0bab(0x83)]??0xf,'\x70\x72\x6f':_0x3882e6[_0x3a0bab(0x98)]?.['\x70\x72\x6f']??0xf0,'\x65\x6e\x74\x65\x72\x70\x72\x69\x73\x65':_0x3882e6[_0x3a0bab(0x98)]?.[_0x3a0bab(0x93)]??0x1e0};}[a0_0x38aa5d(0x82)](_0x333c32){const _0x5b04bb=a0_0x38aa5d,_0x10f3b3={'\x79\x45\x43\x7a\x6c':function(_0xf76ad6,_0x28f9a8){return _0xf76ad6+_0x28f9a8;},'\x7a\x4d\x6c\x6f\x7a':function(_0x33b124,_0x270beb){return _0x33b124/_0x270beb;},'\x62\x57\x42\x5a\x68':function(_0x5f333e,_0x5a21f8){return _0x5f333e*_0x5a21f8;}},_0x1beeab=_0x333c32[_0x5b04bb(0x7d)]??_0x5b04bb(0x83),_0x52300b=this[_0x5b04bb(0x98)][_0x1beeab]??this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x5b04bb(0x83)];return{'\x74\x6f\x6b\x65\x6e':issueReadToken(this[_0x5b04bb(0x96)],{'\x73\x75\x62':_0x333c32[_0x5b04bb(0x79)],'\x73\x69\x64':_0x333c32[_0x5b04bb(0x75)],'\x70\x69\x64':this[_0x5b04bb(0x9e)],'\x63\x69\x64':_0x333c32[_0x5b04bb(0x92)]},_0x52300b),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x10f3b3[_0x5b04bb(0xa3)](Math[_0x5b04bb(0x8c)](_0x10f3b3['\x7a\x4d\x6c\x6f\x7a'](Date['\x6e\x6f\x77'](),0x3e8)),_0x10f3b3[_0x5b04bb(0x9a)](_0x52300b,0x3c))};}[a0_0x38aa5d(0xa5)](_0x4b31a7){const _0x4d5c8a=a0_0x38aa5d,_0x2daa43={'\x62\x68\x56\x75\x69':function(_0x93369d,_0x3d329b,_0x915ae2,_0x11dfef){return _0x93369d(_0x3d329b,_0x915ae2,_0x11dfef);},'\x6c\x49\x66\x71\x72':function(_0x15e250,_0x183310){return _0x15e250+_0x183310;}},_0x19d586=_0x4b31a7['\x74\x69\x65\x72']??'\x66\x72\x65\x65',_0x862d39=this[_0x4d5c8a(0x98)][_0x19d586]??this[_0x4d5c8a(0x98)]['\x66\x72\x65\x65'];return{'\x74\x6f\x6b\x65\x6e':_0x2daa43[_0x4d5c8a(0x86)](issueCollaborationToken,this['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74'],{'\x75\x73\x65\x72\x49\x64':_0x4b31a7[_0x4d5c8a(0x79)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4b31a7[_0x4d5c8a(0x75)],'\x70\x72\x6f\x64\x75\x63\x74\x49\x64':this['\x70\x72\x6f\x64\x75\x63\x74\x49\x64'],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x4b31a7['\x70\x72\x6f\x6a\x65\x63\x74\x49\x64'],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x4b31a7[_0x4d5c8a(0x80)],'\x61\x63\x63\x65\x73\x73':_0x4b31a7[_0x4d5c8a(0x7e)],'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x4b31a7[_0x4d5c8a(0x92)]},_0x862d39),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':_0x2daa43[_0x4d5c8a(0x88)](Math[_0x4d5c8a(0x8c)](Date[_0x4d5c8a(0xb1)]()/0x3e8),_0x862d39*0x3c)};}[a0_0x38aa5d(0xa1)](_0x31e3c5='\x66\x72\x65\x65'){const _0x139f25=a0_0x38aa5d;return this[_0x139f25(0x98)][_0x31e3c5]??this[_0x139f25(0x98)]['\x66\x72\x65\x65'];}};export{ProductTokenIssuer,getTokenTTL,isTokenExpiringSoon,issueBatchScopedToken,issueCollaborationToken,issueProjectScopedToken,issueReadToken,issueSessionScopedToken,unsafeDecodeToken,verifyToken};
|
|
1
|
+
const a0_0xbe7b03=a0_0x44b9;(function(_0x55ea6b,_0xe2b4b1){const _0x345dc2=a0_0x44b9,_0x4edc6a=_0x55ea6b();while(!![]){try{const _0x53e974=parseInt(_0x345dc2(0x207))/0x1+-parseInt(_0x345dc2(0x210))/0x2+-parseInt(_0x345dc2(0x228))/0x3+-parseInt(_0x345dc2(0x1f9))/0x4*(parseInt(_0x345dc2(0x21b))/0x5)+parseInt(_0x345dc2(0x1f6))/0x6+-parseInt(_0x345dc2(0x1f0))/0x7*(parseInt(_0x345dc2(0x216))/0x8)+parseInt(_0x345dc2(0x21e))/0x9;if(_0x53e974===_0xe2b4b1)break;else _0x4edc6a['push'](_0x4edc6a['shift']());}catch(_0xa9c5e5){_0x4edc6a['push'](_0x4edc6a['shift']());}}}(a0_0x20cb,0x5bde8));import{createHmac,timingSafeEqual}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';function a0_0x20cb(){const _0x511033=['\x43\x68\x6a\x56\x41\x4d\x76\x4a\x44\x65\x4c\x4b','\x79\x32\x39\x53\x42\x67\x66\x49\x42\x33\x6a\x48\x44\x67\x4c\x56\x42\x47','\x44\x78\x6e\x4c\x43\x4b\x4c\x4b','\x7a\x32\x76\x30\x76\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x43\x33\x62\x53\x41\x78\x71','\x43\x4d\x76\x48\x7a\x61','\x44\x67\x4c\x4c\x43\x47','\x41\x78\x6e\x5a\x44\x77\x75','\x43\x32\x4c\x4e\x42\x4d\x4c\x55\x7a\x31\x6e\x4c\x79\x33\x6a\x4c\x44\x61','\x7a\x4e\x6a\x4c\x7a\x71','\x6e\x4a\x61\x35\x6f\x64\x6d\x31\x74\x76\x50\x35\x43\x75\x39\x74','\x79\x30\x48\x4a\x71\x75\x34','\x73\x66\x6d\x59\x6e\x74\x79','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x79\x4e\x44\x78\x79\x30\x57','\x7a\x30\x72\x59\x75\x67\x4b','\x72\x75\x48\x59\x7a\x4d\x34','\x43\x4d\x76\x57\x42\x67\x66\x4a\x7a\x71','\x73\x67\x50\x53\x44\x31\x6d','\x6d\x74\x61\x34\x6d\x5a\x61\x59\x6d\x67\x6a\x63\x42\x33\x62\x30\x45\x71','\x79\x33\x6e\x76\x41\x76\x69','\x73\x4c\x44\x75','\x72\x68\x66\x66\x73\x78\x61','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x44\x65\x31\x49\x43\x32\x57','\x6d\x4a\x72\x53\x41\x77\x6a\x4c\x44\x4d\x47','\x42\x31\x7a\x34\x75\x4e\x65','\x43\x68\x6a\x56\x7a\x68\x76\x4a\x44\x65\x4c\x4b','\x74\x65\x4c\x6e\x75\x32\x57','\x77\x65\x6a\x4f\x42\x68\x4f','\x6d\x74\x62\x6f\x79\x32\x6a\x75\x77\x77\x6d','\x44\x67\x58\x32\x75\x4e\x6d','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x6d\x74\x75\x58\x6d\x74\x47\x57\x6f\x74\x6a\x41\x72\x76\x7a\x68\x42\x32\x79','\x43\x32\x48\x48\x6d\x4a\x75\x32','\x43\x67\x66\x59\x43\x32\x75','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x7a\x77\x35\x30\x7a\x78\x6a\x57\x43\x4d\x4c\x5a\x7a\x71','\x42\x4d\x39\x33','\x7a\x4d\x58\x56\x42\x33\x69','\x43\x68\x6a\x56','\x44\x67\x76\x5a\x44\x61','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43','\x6d\x4a\x61\x33\x6d\x5a\x6d\x57\x6f\x77\x4c\x6b\x73\x67\x48\x74\x71\x71','\x7a\x78\x48\x57','\x44\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x6d\x74\x75\x5a\x6d\x74\x6d\x34\x6d\x31\x7a\x68\x73\x31\x44\x48\x75\x57','\x79\x77\x6e\x4a\x7a\x78\x6e\x5a','\x41\x75\x44\x76\x7a\x68\x4f','\x7a\x4e\x6a\x56\x42\x71','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x71\x31\x6a\x4f\x41\x75\x65','\x6e\x5a\x75\x5a\x6d\x64\x7a\x4d\x73\x75\x58\x33\x44\x4b\x38','\x74\x4d\x58\x67\x77\x67\x4f','\x45\x67\x31\x6d\x74\x77\x71','\x6e\x5a\x6d\x35\x6d\x74\x7a\x35\x74\x66\x48\x72\x73\x4d\x38','\x7a\x67\x39\x4a\x44\x77\x31\x4c\x42\x4e\x72\x6a\x7a\x61','\x79\x77\x58\x4e','\x43\x4d\x76\x57\x7a\x77\x66\x30'];a0_0x20cb=function(){return _0x511033;};return a0_0x20cb();}function base64UrlEncode(_0x14faf7){const _0x1cef35=a0_0x44b9,_0x108a67={'\x4c\x63\x48\x6d\x69':'\x73\x74\x72\x69\x6e\x67','\x74\x4d\x62\x73\x6c':'\x62\x61\x73\x65\x36\x34'};return(typeof _0x14faf7===_0x108a67['\x4c\x63\x48\x6d\x69']?Buffer[_0x1cef35(0x1f3)](_0x14faf7):_0x14faf7)[_0x1cef35(0x227)](_0x108a67[_0x1cef35(0x215)])[_0x1cef35(0x20e)](/\+/g,'\x2d')[_0x1cef35(0x20e)](/\//g,'\x5f')[_0x1cef35(0x20e)](/=+$/,'');}function decodeBase64UrlToBuffer(_0x34c9c2){const _0x295159=a0_0x44b9,_0x121735={'\x74\x6c\x76\x52\x73':function(_0x3aed8c,_0x1154a1){return _0x3aed8c%_0x1154a1;}};if(!/^[A-Za-z0-9_-]*$/[_0x295159(0x226)](_0x34c9c2))return null;const _0x22ebf5=_0x34c9c2+'\x3d'[_0x295159(0x1fc)]((0x4-_0x121735[_0x295159(0x21c)](_0x34c9c2[_0x295159(0x1f4)],0x4))%0x4);return Buffer[_0x295159(0x1f3)](_0x22ebf5['\x72\x65\x70\x6c\x61\x63\x65'](/-/g,'\x2b')[_0x295159(0x20e)](/_/g,'\x2f'),_0x295159(0x1ef));}function createSignature(_0x887347,_0x638932){const _0x4e8f06=a0_0x44b9,_0x82d50e={'\x44\x71\x45\x49\x70':function(_0x442d12,_0x5c4904,_0x3f8483){return _0x442d12(_0x5c4904,_0x3f8483);},'\x67\x44\x72\x50\x69':_0x4e8f06(0x21f)};return base64UrlEncode(_0x82d50e[_0x4e8f06(0x213)](createHmac,_0x82d50e[_0x4e8f06(0x20c)],_0x638932)['\x75\x70\x64\x61\x74\x65'](_0x887347)['\x64\x69\x67\x65\x73\x74']());}const JWT_HEADER=base64UrlEncode(JSON[a0_0xbe7b03(0x221)]({'\x61\x6c\x67':a0_0xbe7b03(0x209),'\x74\x79\x70':a0_0xbe7b03(0x212)}));function issueToken(_0x5b36d4,_0x54b0bd,_0x1fa3d1){const _0x5ae4c9=a0_0xbe7b03,_0x1e115b={'\x6f\x56\x78\x52\x71':function(_0x212246,_0x3c9c96){return _0x212246/_0x3c9c96;},'\x70\x73\x76\x7a\x49':function(_0x4bef36,_0xbdc0a7){return _0x4bef36+_0xbdc0a7;}},_0x2cec80=Math[_0x5ae4c9(0x224)](_0x1e115b[_0x5ae4c9(0x217)](Date[_0x5ae4c9(0x223)](),0x3e8)),_0x321069={..._0x54b0bd,'\x69\x61\x74':_0x2cec80,'\x65\x78\x70':_0x1e115b['\x70\x73\x76\x7a\x49'](_0x2cec80,_0x1fa3d1*0x3c)},_0x132db7=JWT_HEADER+'\x2e'+base64UrlEncode(JSON[_0x5ae4c9(0x221)](_0x321069));return _0x132db7+'\x2e'+createSignature(_0x132db7,_0x5b36d4);}function issueReadToken(_0x197d32,_0x493b52,_0x130299){const _0x2a1b19=a0_0xbe7b03;return issueToken(_0x197d32,{..._0x493b52,'\x74\x79\x70':_0x2a1b19(0x202)},_0x130299);}function issueSessionScopedToken(_0x58d130,_0x288e5e,_0x41c001){return issueReadToken(_0x58d130,_0x288e5e,_0x41c001);}function issueProjectScopedToken(_0x4f68b3,_0x595fa3,_0x311fe8){const _0xd07ea0={'\x7a\x66\x58\x48\x70':function(_0x3c3c7e,_0x57b732,_0xa2140f,_0x30cf52){return _0x3c3c7e(_0x57b732,_0xa2140f,_0x30cf52);}};return _0xd07ea0['\x7a\x66\x58\x48\x70'](issueReadToken,_0x4f68b3,_0x595fa3,_0x311fe8);}function issueBatchScopedToken(_0xc4ee11,_0x12042a,_0x5bc728){return issueReadToken(_0xc4ee11,_0x12042a,_0x5bc728);}function issueCollaborationToken(_0x4d0e5a,_0x34a320,_0x568ea2){const _0x55887c=a0_0xbe7b03,_0x3d133c={'\x73\x52\x4f\x58\x67':function(_0x1d9ae9,_0x2b498b,_0x45787d,_0x115d9e){return _0x1d9ae9(_0x2b498b,_0x45787d,_0x115d9e);},'\x47\x4a\x62\x65\x58':_0x55887c(0x1fe)};return _0x3d133c['\x73\x52\x4f\x58\x67'](issueToken,_0x4d0e5a,{'\x73\x75\x62':_0x34a320['\x75\x73\x65\x72\x49\x64'],'\x73\x69\x64':_0x34a320['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x70\x69\x64':_0x34a320[_0x55887c(0x218)],'\x63\x69\x64':_0x34a320[_0x55887c(0x20a)],'\x74\x79\x70':_0x3d133c['\x47\x4a\x62\x65\x58'],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x34a320[_0x55887c(0x1fd)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x34a320[_0x55887c(0x1fa)],'\x61\x63\x63\x65\x73\x73':_0x34a320[_0x55887c(0x1f1)]},_0x568ea2);}function unsafeDecodeToken(_0x40ea12){const _0x2a56b0=a0_0xbe7b03,_0x255916={'\x43\x52\x68\x69\x41':function(_0x2b57f5,_0x228ea9){return _0x2b57f5!==_0x228ea9;},'\x75\x61\x41\x57\x72':function(_0x204b43,_0x59075e){return _0x204b43+_0x59075e;},'\x69\x47\x55\x64\x7a':function(_0xa37a57,_0x5ede5b){return _0xa37a57%_0x5ede5b;},'\x62\x77\x57\x63\x4c':_0x2a56b0(0x1ef)};try{const _0x4a146b=_0x40ea12[_0x2a56b0(0x201)]('\x2e');if(_0x255916[_0x2a56b0(0x1f5)](_0x4a146b['\x6c\x65\x6e\x67\x74\x68'],0x3))return null;const _0x415929=_0x255916['\x75\x61\x41\x57\x72'](_0x4a146b[0x1],'\x3d'[_0x2a56b0(0x1fc)]((0x4-_0x255916[_0x2a56b0(0x1f2)](_0x4a146b[0x1][_0x2a56b0(0x1f4)],0x4))%0x4)),_0x17f565=Buffer['\x66\x72\x6f\x6d'](_0x415929[_0x2a56b0(0x20e)](/-/g,'\x2b')[_0x2a56b0(0x20e)](/_/g,'\x2f'),_0x255916[_0x2a56b0(0x20b)])[_0x2a56b0(0x227)]();return JSON[_0x2a56b0(0x220)](_0x17f565);}catch{return null;}}function verifyToken(_0x1d4c78,_0x235022,_0x1281ce={}){const _0x2f0e67=a0_0xbe7b03,_0x5b03e4={'\x78\x6d\x4c\x4d\x64':function(_0x1d7f8e,_0xd65deb){return _0x1d7f8e||_0xd65deb;},'\x58\x42\x68\x6c\x7a':function(_0x124ed4,_0x1a046f){return _0x124ed4%_0x1a046f;},'\x4c\x49\x4d\x53\x6c':'\x62\x61\x73\x65\x36\x34','\x63\x73\x55\x69\x52':function(_0x109ce9,_0x4c9649,_0x2002e4){return _0x109ce9(_0x4c9649,_0x2002e4);},'\x63\x48\x63\x41\x4e':function(_0x3f742f,_0x45eaac){return _0x3f742f(_0x45eaac);},'\x4e\x6c\x46\x58\x6a':function(_0x592a58,_0x3bc3e4){return _0x592a58!==_0x3bc3e4;}};try{const _0x1f2b0c=_0x1d4c78[_0x2f0e67(0x201)]('\x2e');if(_0x1f2b0c[_0x2f0e67(0x1f4)]!==0x3)return null;const [_0x5dd9be,_0x58d329,_0xbc131]=_0x1f2b0c;if(_0x5b03e4[_0x2f0e67(0x1f8)](!_0x5dd9be,!_0x58d329)||!_0xbc131)return null;let _0x554fd9;try{const _0x197865=_0x5dd9be+'\x3d'[_0x2f0e67(0x1fc)](_0x5b03e4['\x58\x42\x68\x6c\x7a'](0x4-_0x5b03e4[_0x2f0e67(0x21a)](_0x5dd9be[_0x2f0e67(0x1f4)],0x4),0x4)),_0x5b2ac2=Buffer[_0x2f0e67(0x1f3)](_0x197865['\x72\x65\x70\x6c\x61\x63\x65'](/-/g,'\x2b')['\x72\x65\x70\x6c\x61\x63\x65'](/_/g,'\x2f'),_0x5b03e4[_0x2f0e67(0x219)])[_0x2f0e67(0x227)]();_0x554fd9=JSON[_0x2f0e67(0x220)](_0x5b2ac2);}catch{return null;}if(_0x554fd9[_0x2f0e67(0x1fb)]!=='\x48\x53\x32\x35\x36')return null;const _0x2fd546=_0x5b03e4[_0x2f0e67(0x211)](createSignature,_0x5dd9be+'\x2e'+_0x58d329,_0x235022),_0xef4224=_0x5b03e4['\x63\x48\x63\x41\x4e'](decodeBase64UrlToBuffer,_0xbc131),_0x444199=_0x5b03e4[_0x2f0e67(0x208)](decodeBase64UrlToBuffer,_0x2fd546);if(!_0xef4224||!_0x444199)return null;if(_0xef4224[_0x2f0e67(0x1f4)]!==_0x444199[_0x2f0e67(0x1f4)])return null;if(!timingSafeEqual(_0xef4224,_0x444199))return null;const _0x8b2c9e=unsafeDecodeToken(_0x1d4c78);if(!_0x8b2c9e)return null;const _0x1dfbdc=Math[_0x2f0e67(0x224)](Date[_0x2f0e67(0x223)]()/0x3e8),_0x55ed21=Math['\x6d\x61\x78'](0x0,_0x1281ce['\x63\x6c\x6f\x63\x6b\x53\x6b\x65\x77\x53\x65\x63\x6f\x6e\x64\x73']??0x0);if(_0x5b03e4[_0x2f0e67(0x1f7)](typeof _0x8b2c9e[_0x2f0e67(0x229)],_0x2f0e67(0x21d))||_0x8b2c9e[_0x2f0e67(0x229)]+_0x55ed21<_0x1dfbdc)return null;return _0x8b2c9e;}catch{return null;}}function getTokenTTL(_0x313e67){const _0x2d251a=a0_0xbe7b03,_0x2d8202=Math['\x66\x6c\x6f\x6f\x72'](Date['\x6e\x6f\x77']()/0x3e8);return _0x313e67[_0x2d251a(0x229)]-_0x2d8202;}function a0_0x44b9(_0x476e2b,_0x3bc238){_0x476e2b=_0x476e2b-0x1ee;const _0x20cb6c=a0_0x20cb();let _0x44b90b=_0x20cb6c[_0x476e2b];if(a0_0x44b9['\x58\x46\x6a\x65\x45\x4d']===undefined){var _0x3546a8=function(_0x22bb7b){const _0x3f3e9d='\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 _0x3157ca='',_0x1b9794='';for(let _0x121e78=0x0,_0x11465a,_0x46dc36,_0x4d525a=0x0;_0x46dc36=_0x22bb7b['\x63\x68\x61\x72\x41\x74'](_0x4d525a++);~_0x46dc36&&(_0x11465a=_0x121e78%0x4?_0x11465a*0x40+_0x46dc36:_0x46dc36,_0x121e78++%0x4)?_0x3157ca+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x11465a>>(-0x2*_0x121e78&0x6)):0x0){_0x46dc36=_0x3f3e9d['\x69\x6e\x64\x65\x78\x4f\x66'](_0x46dc36);}for(let _0x73931a=0x0,_0xcfd164=_0x3157ca['\x6c\x65\x6e\x67\x74\x68'];_0x73931a<_0xcfd164;_0x73931a++){_0x1b9794+='\x25'+('\x30\x30'+_0x3157ca['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x73931a)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x1b9794);};a0_0x44b9['\x4d\x4a\x76\x6e\x51\x50']=_0x3546a8,a0_0x44b9['\x59\x71\x74\x52\x64\x57']={},a0_0x44b9['\x58\x46\x6a\x65\x45\x4d']=!![];}const _0x18e73c=_0x20cb6c[0x0],_0x1d04ba=_0x476e2b+_0x18e73c,_0x332d2f=a0_0x44b9['\x59\x71\x74\x52\x64\x57'][_0x1d04ba];return!_0x332d2f?(_0x44b90b=a0_0x44b9['\x4d\x4a\x76\x6e\x51\x50'](_0x44b90b),a0_0x44b9['\x59\x71\x74\x52\x64\x57'][_0x1d04ba]=_0x44b90b):_0x44b90b=_0x332d2f,_0x44b90b;}function isTokenExpiringSoon(_0x3e3a26,_0x2caed8=0x3c){const _0xa59934=a0_0xbe7b03,_0x1c35c0={'\x48\x6a\x6c\x77\x53':function(_0x2ef852,_0x183238){return _0x2ef852(_0x183238);}};return _0x1c35c0[_0xa59934(0x20f)](getTokenTTL,_0x3e3a26)<=_0x2caed8;}var ProductTokenIssuer=class{['\x70\x72\x6f\x64\x75\x63\x74\x49\x64'];[a0_0xbe7b03(0x205)];[a0_0xbe7b03(0x1ee)];constructor(_0x3d398a){const _0x55022e=a0_0xbe7b03;this[_0x55022e(0x218)]=_0x3d398a[_0x55022e(0x218)],this[_0x55022e(0x205)]=_0x3d398a[_0x55022e(0x205)],this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']={'\x66\x72\x65\x65':_0x3d398a[_0x55022e(0x1ee)]?.[_0x55022e(0x206)]??0xf,'\x70\x72\x6f':_0x3d398a[_0x55022e(0x1ee)]?.[_0x55022e(0x225)]??0xf0,'\x65\x6e\x74\x65\x72\x70\x72\x69\x73\x65':_0x3d398a['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']?.[_0x55022e(0x222)]??0x1e0};}[a0_0xbe7b03(0x204)](_0x3abc83){const _0x24cff1=a0_0xbe7b03,_0x29af62={'\x45\x48\x72\x66\x6e':function(_0x260eb5,_0x4cdd9a){return _0x260eb5*_0x4cdd9a;}},_0x4f5685=_0x3abc83[_0x24cff1(0x203)]??_0x24cff1(0x206),_0x5b57a1=this[_0x24cff1(0x1ee)][_0x4f5685]??this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']['\x66\x72\x65\x65'];return{'\x74\x6f\x6b\x65\x6e':issueReadToken(this[_0x24cff1(0x205)],{'\x73\x75\x62':_0x3abc83[_0x24cff1(0x1ff)],'\x73\x69\x64':_0x3abc83[_0x24cff1(0x214)],'\x70\x69\x64':this[_0x24cff1(0x218)],'\x63\x69\x64':_0x3abc83[_0x24cff1(0x20a)]},_0x5b57a1),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':Math['\x66\x6c\x6f\x6f\x72'](Date['\x6e\x6f\x77']()/0x3e8)+_0x29af62[_0x24cff1(0x20d)](_0x5b57a1,0x3c)};}['\x69\x73\x73\x75\x65\x43\x6f\x6c\x6c\x61\x62\x6f\x72\x61\x74\x69\x6f\x6e'](_0x357b6d){const _0x40cba5=a0_0xbe7b03,_0x4148a2=_0x357b6d[_0x40cba5(0x203)]??_0x40cba5(0x206),_0x48973c=this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x4148a2]??this[_0x40cba5(0x1ee)]['\x66\x72\x65\x65'];return{'\x74\x6f\x6b\x65\x6e':issueCollaborationToken(this[_0x40cba5(0x205)],{'\x75\x73\x65\x72\x49\x64':_0x357b6d[_0x40cba5(0x1ff)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x357b6d['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x70\x72\x6f\x64\x75\x63\x74\x49\x64':this[_0x40cba5(0x218)],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x357b6d['\x70\x72\x6f\x6a\x65\x63\x74\x49\x64'],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x357b6d[_0x40cba5(0x1fa)],'\x61\x63\x63\x65\x73\x73':_0x357b6d[_0x40cba5(0x1f1)],'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x357b6d[_0x40cba5(0x20a)]},_0x48973c),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':Math[_0x40cba5(0x224)](Date[_0x40cba5(0x223)]()/0x3e8)+_0x48973c*0x3c};}[a0_0xbe7b03(0x200)](_0x56bc03=a0_0xbe7b03(0x206)){const _0x42f9f6=a0_0xbe7b03;return this[_0x42f9f6(0x1ee)][_0x56bc03]??this[_0x42f9f6(0x1ee)][_0x42f9f6(0x206)];}};export{ProductTokenIssuer,getTokenTTL,isTokenExpiringSoon,issueBatchScopedToken,issueCollaborationToken,issueProjectScopedToken,issueReadToken,issueSessionScopedToken,unsafeDecodeToken,verifyToken};
|