@tangle-network/sandbox 0.6.1 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +51 -6
- package/dist/agent/index.d.ts +2 -2
- package/dist/agent/index.js +1 -1
- package/dist/auth/index.js +1 -1
- package/dist/client-BHXFOQqN.js +1 -0
- package/dist/{client-DRbtd2hi.d.ts → client-DaEmraU2.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-Bl4L_Cpm.d.ts → index-B3gwbLZb.d.ts} +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/intelligence/index.js +1 -1
- package/dist/openai/index.js +1 -1
- package/dist/{sandbox-BQbq1EGP.d.ts → sandbox-Cjubo8Gy.d.ts} +12 -5
- package/dist/sandbox-_OdJnMqn.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-BjH4gMSm.js +1 -0
- package/package.json +17 -3
- package/dist/client-DNRk-fYq.js +0 -1
- package/dist/sandbox-d6iLJeH2.js +0 -1
- package/dist/tangle-BrobUtQo.js +0 -1
package/README.md
CHANGED
|
@@ -1,9 +1,55 @@
|
|
|
1
1
|
# @tangle-network/sandbox
|
|
2
2
|
|
|
3
|
-
TypeScript SDK for
|
|
3
|
+
TypeScript SDK for creating and driving Tangle sandboxes: isolated dev
|
|
4
|
+
containers with files, shell commands, persistent code kernels, snapshots,
|
|
5
|
+
agent tool adapters, streaming sessions, and trace intelligence.
|
|
4
6
|
|
|
5
7
|
A separate CLI is published as `@tangle-network/sandbox-cli`.
|
|
6
8
|
|
|
9
|
+
## Agent quick start
|
|
10
|
+
|
|
11
|
+
Use this path when an AI coding agent needs real compute before editing code,
|
|
12
|
+
running tests, or executing user-provided programs.
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm install @tangle-network/sandbox
|
|
16
|
+
export TANGLE_API_KEY=sk-tan-...
|
|
17
|
+
export SANDBOX_BASE_URL=https://sandbox.tangle.tools
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
```typescript
|
|
21
|
+
import { Sandbox } from "@tangle-network/sandbox";
|
|
22
|
+
|
|
23
|
+
const client = new Sandbox({
|
|
24
|
+
apiKey: process.env.TANGLE_API_KEY!,
|
|
25
|
+
baseUrl: process.env.SANDBOX_BASE_URL ?? "https://sandbox.tangle.tools",
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
const box = await client.create({
|
|
29
|
+
image: "universal",
|
|
30
|
+
name: "agent-smoke",
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
try {
|
|
34
|
+
const result = await box.exec("node --version && npm --version");
|
|
35
|
+
console.log(result.stdout);
|
|
36
|
+
} finally {
|
|
37
|
+
await box.delete();
|
|
38
|
+
}
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Discovery calls that are safe to run before creating a sandbox:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
curl -fsS https://sandbox.tangle.tools/health
|
|
45
|
+
curl -fsS https://sandbox.tangle.tools/v1/public-templates
|
|
46
|
+
curl -fsS https://sandbox.tangle.tools/v1/public-templates/featured
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
If sandbox creation hangs or times out, do not generate fallback code that
|
|
50
|
+
pretends to have run in a sandbox. Surface the failure, keep the `sandboxId` or
|
|
51
|
+
request id, and retry with the same idempotency key when available.
|
|
52
|
+
|
|
7
53
|
## Installation
|
|
8
54
|
|
|
9
55
|
```bash
|
|
@@ -19,10 +65,9 @@ yarn add @tangle-network/sandbox
|
|
|
19
65
|
```typescript
|
|
20
66
|
import { Sandbox } from "@tangle-network/sandbox";
|
|
21
67
|
|
|
22
|
-
// Initialize the client
|
|
23
68
|
const client = new Sandbox({
|
|
24
|
-
apiKey:
|
|
25
|
-
baseUrl: "https://
|
|
69
|
+
apiKey: process.env.TANGLE_API_KEY!,
|
|
70
|
+
baseUrl: process.env.SANDBOX_BASE_URL ?? "https://sandbox.tangle.tools",
|
|
26
71
|
});
|
|
27
72
|
|
|
28
73
|
// Create a sandbox
|
|
@@ -284,8 +329,8 @@ pending -> provisioning -> running -> stopped -> deleted
|
|
|
284
329
|
import { Sandbox } from "@tangle-network/sandbox";
|
|
285
330
|
|
|
286
331
|
const client = new Sandbox({
|
|
287
|
-
apiKey:
|
|
288
|
-
baseUrl: "https://
|
|
332
|
+
apiKey: process.env.TANGLE_API_KEY!,
|
|
333
|
+
baseUrl: process.env.SANDBOX_BASE_URL ?? "https://sandbox.tangle.tools", // required
|
|
289
334
|
timeoutMs: 30000, // optional
|
|
290
335
|
});
|
|
291
336
|
```
|
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-Cjubo8Gy.js";
|
|
2
|
+
import { i as SandboxClient } from "../client-DaEmraU2.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
|
package/dist/agent/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const a0_0x226894=a0_0x1f6e;(function(_0x2ec8c7,_0x1e8484){const _0x5e9fc5=a0_0x1f6e,_0x242912=_0x2ec8c7();while(!![]){try{const _0x121011=-parseInt(_0x5e9fc5(0x243))/0x1*(parseInt(_0x5e9fc5(0x236))/0x2)+parseInt(_0x5e9fc5(0x24e))/0x3*(parseInt(_0x5e9fc5(0x241))/0x4)+parseInt(_0x5e9fc5(0x216))/0x5*(-parseInt(_0x5e9fc5(0x1fa))/0x6)+parseInt(_0x5e9fc5(0x213))/0x7*(-parseInt(_0x5e9fc5(0x264))/0x8)+parseInt(_0x5e9fc5(0x239))/0x9+-parseInt(_0x5e9fc5(0x205))/0xa+parseInt(_0x5e9fc5(0x235))/0xb;if(_0x121011===_0x1e8484)break;else _0x242912['push'](_0x242912['shift']());}catch(_0x5ad5b7){_0x242912['push'](_0x242912['shift']());}}}(a0_0x4643,0xe8851));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':'\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_0x226894(0x27d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x6c\x61\x6e\x67\x75\x61\x67\x65':{'\x74\x79\x70\x65':a0_0x226894(0x215),'\x65\x6e\x75\x6d':[a0_0x226894(0x1e3),'\x6e\x6f\x64\x65',a0_0x226894(0x1f7),a0_0x226894(0x261)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x203)},'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':a0_0x226894(0x215),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x279)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x226894(0x23f),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x274)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x226894(0x1dc),a0_0x226894(0x240)],'\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:_0x12ccd0,sessionId:_0x43b961})=>async _0x1319f0=>{const _0x314c30=a0_0x226894;return await _0x12ccd0[_0x314c30(0x233)](_0x1319f0[_0x314c30(0x1dc)],_0x1319f0[_0x314c30(0x240)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x43b961,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x1319f0['\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':'\x52\x75\x6e\x20\x61\x20\x73\x68\x65\x6c\x6c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x28\x6e\x6f\x20\x70\x65\x72\x73\x69\x73\x74\x65\x6e\x74\x20\x73\x74\x61\x74\x65\x29\x20\x69\x6e\x20\x74\x68\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x2e\x20\x55\x73\x65\x20\x66\x6f\x72\x20\x6f\x6e\x65\x2d\x73\x68\x6f\x74\x20\x74\x61\x73\x6b\x73\x20\x6c\x69\x6b\x65\x20\x27\x70\x6e\x70\x6d\x20\x69\x6e\x73\x74\x61\x6c\x6c\x27\x20\x6f\x72\x20\x27\x6c\x73\x27\x2e\x20\x46\x6f\x72\x20\x63\x6f\x64\x65\x20\x74\x68\x61\x74\x20\x73\x68\x6f\x75\x6c\x64\x20\x73\x68\x61\x72\x65\x20\x73\x74\x61\x74\x65\x20\x61\x63\x72\x6f\x73\x73\x20\x63\x61\x6c\x6c\x73\x2c\x20\x70\x72\x65\x66\x65\x72\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x64\x65\x20\x77\x69\x74\x68\x20\x61\x20\x73\x65\x73\x73\x69\x6f\x6e\x49\x64\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x226894(0x27d),'\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_0x226894(0x270)},'\x63\x77\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x282)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x226894(0x23f),'\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':['\x63\x6f\x6d\x6d\x61\x6e\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':({box:_0x5d3a97,sessionId:_0x2dc250})=>async _0x53f162=>{const _0x189b0f=a0_0x226894;return await _0x5d3a97[_0x189b0f(0x1df)](_0x53f162[_0x189b0f(0x1f0)],{'\x63\x77\x64':_0x53f162[_0x189b0f(0x22e)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x53f162['\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73'],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x2dc250});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64':{'\x6e\x61\x6d\x65':a0_0x226894(0x1f3),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x52\x65\x61\x64\x20\x61\x20\x66\x69\x6c\x65\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x20\x66\x69\x6c\x65\x73\x79\x73\x74\x65\x6d\x2e\x20\x52\x65\x6c\x61\x74\x69\x76\x65\x20\x70\x61\x74\x68\x73\x20\x72\x65\x73\x6f\x6c\x76\x65\x20\x66\x72\x6f\x6d\x20\x74\x68\x65\x20\x77\x6f\x72\x6b\x73\x70\x61\x63\x65\x20\x72\x6f\x6f\x74\x3b\x20\x61\x62\x73\x6f\x6c\x75\x74\x65\x20\x70\x61\x74\x68\x73\x20\x72\x65\x61\x64\x20\x74\x68\x65\x20\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72\x20\x66\x69\x6c\x65\x73\x79\x73\x74\x65\x6d\x20\x64\x69\x72\x65\x63\x74\x6c\x79\x2e','\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_0x226894(0x215)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x70\x61\x74\x68'],'\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:_0x55589c,sessionId:_0x88d233})=>async _0x29ef40=>{const _0x34d414=a0_0x226894;return{'\x63\x6f\x6e\x74\x65\x6e\x74':await _0x55589c[_0x34d414(0x220)](_0x29ef40['\x70\x61\x74\x68'],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x88d233})};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65':{'\x6e\x61\x6d\x65':a0_0x226894(0x27b),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x57\x72\x69\x74\x65\x20\x61\x20\x66\x69\x6c\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x2e\x20\x43\x72\x65\x61\x74\x65\x73\x20\x70\x61\x72\x65\x6e\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x61\x73\x20\x6e\x65\x65\x64\x65\x64\x2e\x20\x4f\x76\x65\x72\x77\x72\x69\x74\x65\x73\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x66\x69\x6c\x65\x73\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x226894(0x27d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x226894(0x215)},'\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_0x226894(0x253)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x226894(0x252),a0_0x226894(0x27e)],'\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:_0x1fbef5})=>async _0x1d761a=>{const _0x1c17c7=a0_0x226894;return await _0x1fbef5[_0x1c17c7(0x255)](_0x1d761a['\x70\x61\x74\x68'],_0x1d761a[_0x1c17c7(0x27e)]),{'\x6f\x6b':!![]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74':{'\x6e\x61\x6d\x65':a0_0x226894(0x24d),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x272),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x226894(0x27d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x226894(0x215)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x226894(0x252)],'\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:_0x583af5})=>async _0x245328=>{const _0x437046=a0_0x226894;return{'\x65\x6e\x74\x72\x69\x65\x73':await _0x583af5['\x66\x73']['\x6c\x69\x73\x74'](_0x245328[_0x437046(0x252)])};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x251),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x226894(0x27d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x74\x65\x72\x6e':{'\x74\x79\x70\x65':a0_0x226894(0x215),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x52\x65\x67\x65\x78\x20\x70\x61\x74\x74\x65\x72\x6e\x2e'},'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0x226894(0x215),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x23d)},'\x6d\x61\x78\x5f\x72\x65\x73\x75\x6c\x74\x73':{'\x74\x79\x70\x65':a0_0x226894(0x23f),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x210)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x226894(0x22a)],'\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:_0x47f9e7})=>async _0x584e87=>{const _0x5520a2=a0_0x226894,_0x35c14f={'\x68\x75\x78\x4a\x45':function(_0x2d3c70,_0x446051){return _0x2d3c70>=_0x446051;}},_0x44d50f=[],_0x6c69e=_0x584e87['\x6d\x61\x78\x5f\x72\x65\x73\x75\x6c\x74\x73']??0x64;for await(const _0x25aec6 of _0x47f9e7[_0x5520a2(0x1e9)](_0x584e87[_0x5520a2(0x22a)],{'\x63\x77\x64':_0x584e87[_0x5520a2(0x252)],'\x6d\x61\x78\x52\x65\x73\x75\x6c\x74\x73':_0x6c69e})){_0x44d50f['\x70\x75\x73\x68'](_0x25aec6);if(_0x35c14f[_0x5520a2(0x266)](_0x44d50f[_0x5520a2(0x262)],_0x6c69e))break;}return{'\x6d\x61\x74\x63\x68\x65\x73':_0x44d50f};}}},ALL_TOOL_SPECS=Object[a0_0x226894(0x209)](TOOL_SPECS);function selectSpecs(_0x9a3d2f){const _0x48317e=a0_0x226894,_0x3f9097={'\x4b\x44\x44\x66\x43':function(_0x60ac03,_0x6d57f8){return _0x60ac03===_0x6d57f8;}};if(!_0x9a3d2f||_0x3f9097[_0x48317e(0x224)](_0x9a3d2f[_0x48317e(0x262)],0x0))return ALL_TOOL_SPECS;const _0xbbe404=new Set(_0x9a3d2f);return Object[_0x48317e(0x25f)](TOOL_SPECS)[_0x48317e(0x257)](_0x200af0=>_0xbbe404[_0x48317e(0x281)](_0x200af0))['\x6d\x61\x70'](_0x3bc276=>TOOL_SPECS[_0x3bc276]);}function a0_0x4643(){const _0x4540dd=['\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35','\x6d\x4a\x61\x35\x6d\x64\x47\x5a\x6e\x77\x39\x63\x79\x30\x50\x4b\x71\x47','\x7a\x4d\x58\x4c\x7a\x78\x72\x5a','\x45\x76\x66\x4d\x44\x75\x69','\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c','\x75\x33\x76\x49\x7a\x67\x4c\x59\x7a\x77\x6e\x30\x42\x33\x6a\x35\x69\x68\x72\x56\x69\x68\x6e\x4c\x79\x78\x6a\x4a\x41\x63\x34\x47\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x55','\x72\x4b\x44\x50\x72\x66\x79','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x43\x32\x39\x31\x43\x4d\x6e\x4c','\x6e\x68\x44\x79\x76\x31\x72\x68\x76\x61','\x42\x67\x4c\x53\x7a\x78\x65','\x6e\x66\x6e\x65\x45\x4e\x7a\x59\x75\x71','\x7a\x4d\x58\x4c\x7a\x78\x72\x46\x41\x77\x71','\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','\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','\x7a\x30\x76\x69\x73\x65\x38','\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','\x42\x4d\x66\x54\x7a\x71','\x44\x68\x4c\x57\x7a\x71','\x44\x32\x31\x53\x72\x67\x4f','\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','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x53\x41\x78\x6e\x30','\x6e\x74\x69\x33\x6e\x4a\x65\x35\x7a\x32\x39\x34\x45\x65\x6e\x62','\x41\x77\x31\x48\x7a\x32\x75','\x44\x32\x39\x59\x41\x32\x76\x59\x43\x57','\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','\x43\x67\x66\x30\x41\x61','\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','\x77\x4d\x4c\x79\x77\x68\x6d','\x44\x33\x6a\x50\x44\x67\x75','\x43\x67\x66\x59\x43\x32\x75','\x7a\x4d\x4c\x53\x44\x67\x76\x59','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\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\x30\x42\x32\x39\x53\x6f\x49\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\x30\x45\x78\x62\x4c\x43\x59\x35\x51\x43\x57','\x44\x4e\x62\x6f\x71\x75\x6d','\x44\x67\x76\x54\x43\x67\x58\x48\x44\x67\x76\x46\x41\x77\x71','\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','\x41\x32\x76\x35\x43\x57','\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\x4d\x66\x5a\x41\x61','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x6f\x68\x76\x78\x45\x4d\x58\x4d\x45\x61','\x42\x77\x66\x52\x7a\x75\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x41\x68\x76\x34\x73\x4b\x75','\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','\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','\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','\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','\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','\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','\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\x33\x6a\x4c\x79\x78\x72\x4c','\x79\x32\x39\x55\x44\x67\x4c\x55\x44\x77\x76\x46\x42\x32\x35\x46\x7a\x78\x6a\x59\x42\x33\x69','\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','\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','\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','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\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','\x7a\x67\x76\x53\x7a\x78\x72\x4c','\x42\x67\x4c\x5a\x44\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x44\x77\x35\x46\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x50\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','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x33\x43\x4d\x4c\x30\x7a\x71','\x43\x32\x39\x54\x7a\x71','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x79\x32\x39\x55\x44\x67\x76\x55\x44\x61','\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','\x6d\x63\x34\x57\x6c\x4a\x61','\x41\x67\x66\x5a','\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','\x79\x77\x58\x53\x42\x33\x43','\x44\x30\x76\x70\x41\x66\x69','\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\x68\x66\x74\x44\x75\x4b','\x44\x75\x35\x4c\x74\x4e\x61','\x43\x67\x66\x59\x79\x77\x31\x5a','\x44\x67\x39\x56\x42\x61','\x72\x65\x7a\x51\x75\x31\x4b','\x7a\x4d\x58\x4c\x7a\x78\x72\x6a\x7a\x61','\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','\x42\x67\x66\x55\x7a\x33\x76\x48\x7a\x32\x75','\x76\x31\x66\x6c\x74\x66\x4f','\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x78\x6d','\x7a\x78\x48\x4c\x79\x57','\x75\x32\x76\x59\x44\x4d\x76\x59','\x41\x77\x35\x57\x44\x78\x71','\x44\x67\x66\x55\x7a\x32\x58\x4c\x6c\x78\x6e\x48\x42\x4d\x72\x49\x42\x33\x47','\x43\x68\x4c\x30\x41\x67\x39\x55','\x42\x77\x66\x57','\x43\x33\x72\x48\x44\x68\x76\x5a','\x44\x67\x39\x56\x42\x66\x39\x31\x43\x32\x75','\x73\x76\x76\x4f\x74\x4b\x71','\x75\x4e\x48\x50\x44\x66\x79','\x43\x32\x76\x48\x43\x4d\x6e\x4f','\x43\x68\x76\x5a\x41\x61','\x73\x32\x6e\x63\x42\x30\x4f','\x41\x78\x6e\x62\x43\x4e\x6a\x48\x45\x71','\x72\x67\x4c\x53\x77\x65\x69','\x41\x77\x31\x48\x7a\x32\x75\x56\x41\x4e\x62\x4c\x7a\x57','\x7a\x32\x76\x30','\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\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','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x7a\x77\x66\x4b','\x43\x32\x76\x30','\x73\x4e\x66\x32\x45\x75\x57','\x75\x32\x6e\x33\x42\x33\x75','\x44\x68\x4c\x57\x7a\x78\x6e\x4a\x43\x4d\x4c\x57\x44\x61','\x41\x65\x39\x6b\x76\x30\x47','\x44\x30\x54\x7a\x74\x4c\x4f','\x6d\x5a\x7a\x72\x42\x31\x7a\x7a\x43\x77\x38','\x43\x33\x7a\x4e','\x41\x77\x31\x64\x41\x77\x65','\x43\x4d\x76\x5a\x44\x77\x58\x30\x43\x57','\x41\x77\x35\x57\x44\x78\x72\x74\x79\x32\x48\x4c\x42\x77\x65','\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','\x7a\x67\x66\x30\x79\x71','\x43\x67\x35\x4e','\x7a\x4e\x6a\x56\x42\x71','\x73\x32\x76\x59\x42\x4d\x76\x53\x69\x67\x58\x48\x42\x4d\x44\x31\x79\x77\x44\x4c\x6c\x47','\x69\x67\x35\x56\x44\x63\x62\x4d\x42\x33\x76\x55\x7a\x63\x34\x47\x71\x33\x6a\x4c\x79\x78\x72\x4c\x69\x67\x4c\x30\x69\x67\x7a\x50\x43\x4e\x6e\x30\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','\x6e\x4a\x69\x35\x6e\x74\x6d\x57\x6d\x66\x76\x6b\x42\x4c\x6a\x59\x79\x57','\x44\x67\x39\x56\x42\x66\x39\x4a\x79\x77\x58\x53\x43\x57','\x41\x77\x72\x5a','\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\x66\x53\x44\x77\x76\x5a','\x44\x77\x35\x50\x44\x4d\x76\x59\x43\x32\x66\x53','\x74\x65\x39\x4f\x73\x4e\x71','\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','\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x66\x39\x54\x43\x57','\x73\x67\x31\x6f\x41\x4b\x57','\x41\x77\x31\x48\x7a\x32\x75\x56\x43\x67\x35\x4e','\x71\x32\x66\x57\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x69\x64\x65\x57\x6d\x63\x34','\x76\x65\x31\x31\x71\x4c\x6d','\x41\x4e\x62\x4c\x7a\x57','\x6d\x74\x69\x58\x6d\x64\x69\x34\x6e\x5a\x72\x35\x74\x30\x7a\x49\x44\x78\x75','\x6c\x49\x34\x56\x6c\x49\x34\x56\x43\x67\x66\x4a\x41\x32\x66\x4e\x7a\x73\x35\x51\x43\x32\x39\x55','\x43\x33\x72\x59\x41\x77\x35\x4e','\x6d\x74\x61\x5a\x6d\x4a\x65\x31\x43\x33\x48\x77\x79\x77\x6e\x55','\x79\x78\x6a\x4e\x44\x77\x31\x4c\x42\x4e\x72\x5a','\x79\x78\x6a\x59\x79\x78\x4b','\x7a\x4d\x39\x59\x42\x77\x66\x30','\x44\x67\x39\x56\x42\x66\x39\x59\x7a\x78\x6e\x31\x42\x68\x71','\x43\x33\x72\x4b\x42\x33\x76\x30','\x7a\x67\x76\x5a\x79\x33\x6a\x50\x43\x68\x72\x50\x42\x32\x34','\x43\x33\x72\x4b\x7a\x78\x6a\x59','\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','\x44\x77\x48\x31\x7a\x4d\x79','\x43\x4d\x76\x48\x7a\x61','\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','\x44\x4d\x76\x59\x43\x32\x4c\x56\x42\x47','\x79\x77\x4c\x32\x41\x65\x34','\x73\x30\x72\x65\x7a\x4b\x6d','\x44\x77\x58\x67\x41\x32\x4f','\x7a\x4e\x76\x55\x79\x33\x72\x50\x42\x32\x34','\x41\x77\x35\x70\x45\x78\x69','\x77\x65\x35\x58\x43\x32\x38','\x44\x67\x76\x34\x44\x61','\x43\x67\x66\x30\x44\x67\x76\x59\x42\x47','\x41\x33\x44\x69\x79\x33\x4b','\x7a\x78\x48\x50\x44\x65\x6e\x56\x7a\x67\x75','\x41\x4e\x6e\x56\x42\x4c\x6e\x4a\x41\x67\x76\x54\x79\x71','\x79\x33\x44\x4b','\x79\x32\x39\x55\x44\x67\x76\x34\x44\x61','\x43\x32\x76\x30\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x65\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\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\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4a\x43\x4d\x76\x48\x44\x67\x75','\x43\x4e\x76\x55\x71\x32\x39\x4b\x7a\x71','\x79\x32\x58\x56\x43\x32\x75','\x6e\x64\x61\x35\x6d\x64\x65\x33\x6e\x5a\x6e\x4c\x45\x4d\x31\x4b\x44\x4d\x34','\x6d\x5a\x71\x31\x6f\x64\x47\x57\x76\x32\x58\x7a\x43\x4b\x54\x4f','\x42\x4c\x66\x62\x76\x4c\x71'];a0_0x4643=function(){return _0x4540dd;};return a0_0x4643();}function serializeToolResult(_0x3d8a21){const _0x519715=a0_0x226894,_0x307682={'\x4b\x63\x42\x6f\x4a':function(_0x38a5b7,_0x5af09e){return _0x38a5b7===_0x5af09e;},'\x6a\x50\x52\x63\x56':_0x519715(0x215)};if(_0x307682[_0x519715(0x1eb)](typeof _0x3d8a21,_0x307682['\x6a\x50\x52\x63\x56']))return _0x3d8a21;try{return JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79'](_0x3d8a21,null,0x2);}catch{return String(_0x3d8a21);}}const SDK_VERSION=((()=>{const _0x5b7064=a0_0x226894,_0x3126dc={'\x6e\x51\x41\x56\x54':_0x5b7064(0x214),'\x68\x4f\x4a\x57\x48':_0x5b7064(0x280)};try{return createRequire(import.meta.url)(_0x3126dc[_0x5b7064(0x237)])[_0x5b7064(0x222)]??_0x3126dc[_0x5b7064(0x1f8)];}catch{return _0x3126dc[_0x5b7064(0x1f8)];}})());async function createMcpServer(_0x1f3291,_0x1483c9={}){const _0x3045df=a0_0x226894,_0x485fae={'\x75\x4e\x65\x4e\x70':_0x3045df(0x229),'\x52\x78\x69\x74\x56':function(_0x35f992,_0x54a4fa){return _0x35f992(_0x54a4fa);},'\x65\x67\x6a\x44\x6e':function(_0x24015f,_0x839acf){return _0x24015f(_0x839acf);},'\x44\x46\x6a\x53\x59':_0x3045df(0x246),'\x6b\x77\x48\x63\x79':function(_0x3de7f8,_0x44682d){return _0x3de7f8(_0x44682d);}};let _0x19acbb,_0x19a093;try{[_0x19acbb,_0x19a093]=await Promise['\x61\x6c\x6c']([import('\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\x2f\x73\x65\x72\x76\x65\x72\x2f\x69\x6e\x64\x65\x78\x2e\x6a\x73'),import(_0x3045df(0x25b))]);}catch{throw new Error(_0x485fae[_0x3045df(0x1d9)]);}const _0x307e8e=_0x485fae[_0x3045df(0x22b)](selectSpecs,_0x1483c9[_0x3045df(0x283)]),_0x2a56da={'\x62\x6f\x78':_0x1f3291,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x1483c9[_0x3045df(0x1f2)]},_0x29ad0a=new Map();for(const _0x3fbe43 of _0x307e8e)_0x29ad0a[_0x3045df(0x1f4)](_0x3fbe43[_0x3045df(0x249)],_0x3fbe43[_0x3045df(0x265)](_0x2a56da));const _0x3098d3=new _0x19acbb[(_0x3045df(0x1e0))]({'\x6e\x61\x6d\x65':_0x1483c9[_0x3045df(0x249)]??_0x3045df(0x1e2),'\x76\x65\x72\x73\x69\x6f\x6e':_0x1483c9['\x76\x65\x72\x73\x69\x6f\x6e']??SDK_VERSION},{'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x69\x65\x73':{'\x74\x6f\x6f\x6c\x73':{}}});return _0x3098d3[_0x3045df(0x230)](_0x19a093[_0x3045df(0x268)],async()=>({'\x74\x6f\x6f\x6c\x73':_0x307e8e[_0x3045df(0x1e4)](_0x3f36d9=>({'\x6e\x61\x6d\x65':_0x3f36d9[_0x3045df(0x249)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x3f36d9[_0x3045df(0x21c)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x3f36d9[_0x3045df(0x1fe)]}))})),_0x3098d3[_0x3045df(0x230)](_0x19a093[_0x3045df(0x267)],async _0x14b923=>{const _0x3b4a61=_0x3045df,_0x37f50f=_0x14b923,_0x2ffe08=_0x29ad0a['\x67\x65\x74'](_0x37f50f[_0x3b4a61(0x288)]['\x6e\x61\x6d\x65']);if(!_0x2ffe08)return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x485fae[_0x3b4a61(0x287)],'\x74\x65\x78\x74':_0x3b4a61(0x25a)+_0x37f50f['\x70\x61\x72\x61\x6d\x73']['\x6e\x61\x6d\x65']}]};try{return{'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x485fae[_0x3b4a61(0x287)],'\x74\x65\x78\x74':_0x485fae[_0x3b4a61(0x1e8)](serializeToolResult,await _0x2ffe08(_0x37f50f[_0x3b4a61(0x288)]['\x61\x72\x67\x75\x6d\x65\x6e\x74\x73']??{}))}]};}catch(_0x32865e){return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x485fae['\x75\x4e\x65\x4e\x70'],'\x74\x65\x78\x74':_0x32865e instanceof Error?_0x32865e[_0x3b4a61(0x258)]:_0x485fae['\x65\x67\x6a\x44\x6e'](String,_0x32865e)}]};}}),{'\x73\x65\x72\x76\x65\x72':_0x3098d3,'\x63\x6f\x6e\x6e\x65\x63\x74':_0x254377=>_0x3098d3['\x63\x6f\x6e\x6e\x65\x63\x74'](_0x254377),'\x63\x6c\x6f\x73\x65':()=>_0x3098d3[_0x3045df(0x234)]()};}function runCode(_0xdd52c2,_0x19455d,_0x1b83cb,_0x4e0cdc){const _0x184164=a0_0x226894;return _0xdd52c2[_0x184164(0x233)](_0x19455d,_0x1b83cb,_0x4e0cdc);}function a0_0x1f6e(_0x1fabbb,_0x1fb04e){_0x1fabbb=_0x1fabbb-0x1d8;const _0x464390=a0_0x4643();let _0x1f6e2e=_0x464390[_0x1fabbb];if(a0_0x1f6e['\x66\x41\x59\x55\x75\x59']===undefined){var _0x392658=function(_0x248cd7){const _0x3daea4='\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 _0x2aaa37='',_0x5ba45d='';for(let _0x1f68e7=0x0,_0xcad16e,_0x464df4,_0x19204f=0x0;_0x464df4=_0x248cd7['\x63\x68\x61\x72\x41\x74'](_0x19204f++);~_0x464df4&&(_0xcad16e=_0x1f68e7%0x4?_0xcad16e*0x40+_0x464df4:_0x464df4,_0x1f68e7++%0x4)?_0x2aaa37+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0xcad16e>>(-0x2*_0x1f68e7&0x6)):0x0){_0x464df4=_0x3daea4['\x69\x6e\x64\x65\x78\x4f\x66'](_0x464df4);}for(let _0x494d9e=0x0,_0x529dfd=_0x2aaa37['\x6c\x65\x6e\x67\x74\x68'];_0x494d9e<_0x529dfd;_0x494d9e++){_0x5ba45d+='\x25'+('\x30\x30'+_0x2aaa37['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x494d9e)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x5ba45d);};a0_0x1f6e['\x55\x6f\x79\x6e\x70\x6e']=_0x392658,a0_0x1f6e['\x4a\x67\x69\x64\x6a\x4c']={},a0_0x1f6e['\x66\x41\x59\x55\x75\x59']=!![];}const _0x4765ae=_0x464390[0x0],_0x1b1b8e=_0x1fabbb+_0x4765ae,_0x404443=a0_0x1f6e['\x4a\x67\x69\x64\x6a\x4c'][_0x1b1b8e];return!_0x404443?(_0x1f6e2e=a0_0x1f6e['\x55\x6f\x79\x6e\x70\x6e'](_0x1f6e2e),a0_0x1f6e['\x4a\x67\x69\x64\x6a\x4c'][_0x1b1b8e]=_0x1f6e2e):_0x1f6e2e=_0x404443,_0x1f6e2e;}function anthropicTools(_0x4a8ee2,_0x340b0d={}){const _0x5598fc=a0_0x226894,_0xa2e8fc={'\x79\x51\x66\x75\x42':_0x5598fc(0x21a),'\x48\x71\x53\x75\x49':function(_0x1f1c8a,_0x1daf39){return _0x1f1c8a(_0x1daf39);},'\x6c\x69\x6c\x65\x71':function(_0x46efcb,_0x3ce6ac){return _0x46efcb instanceof _0x3ce6ac;},'\x48\x6d\x4e\x6a\x4c':function(_0x861e1e,_0x4fccc2){return _0x861e1e(_0x4fccc2);}},_0x537af6=_0xa2e8fc[_0x5598fc(0x20e)](selectSpecs,_0x340b0d[_0x5598fc(0x283)]),_0x5d2a12={'\x62\x6f\x78':_0x4a8ee2,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x340b0d[_0x5598fc(0x1f2)]},_0x547d78=new Map();for(const _0x57b3b9 of _0x537af6)_0x547d78[_0x5598fc(0x1f4)](_0x57b3b9[_0x5598fc(0x249)],_0x57b3b9[_0x5598fc(0x265)](_0x5d2a12));const _0x55581a=_0x537af6[_0x5598fc(0x1e4)](_0x2b52f8=>({'\x6e\x61\x6d\x65':_0x2b52f8['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x2b52f8[_0x5598fc(0x21c)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x2b52f8[_0x5598fc(0x1fe)]}));async function _0x5b3ac6(_0x1c0a7f){const _0x16b204=_0x5598fc,_0x294078=_0x547d78[_0x16b204(0x1ef)](_0x1c0a7f[_0x16b204(0x249)]);if(!_0x294078)return{'\x74\x79\x70\x65':_0xa2e8fc['\x79\x51\x66\x75\x42'],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1c0a7f['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x16b204(0x25a)+_0x1c0a7f[_0x16b204(0x249)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x5800d8=await _0x294078(_0x1c0a7f[_0x16b204(0x1e1)]);return{'\x74\x79\x70\x65':_0xa2e8fc[_0x16b204(0x23b)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1c0a7f['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0xa2e8fc[_0x16b204(0x286)](toAnthropicContent,_0x5800d8)};}catch(_0xf1ee1c){return{'\x74\x79\x70\x65':_0x16b204(0x21a),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x1c0a7f['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0xa2e8fc[_0x16b204(0x242)](_0xf1ee1c,Error)?_0xf1ee1c[_0x16b204(0x258)]:String(_0xf1ee1c),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}async function _0x5baf87(_0x134ba1){const _0x10b677=_0x5598fc,_0x40e1d5=_0x134ba1[_0x10b677(0x257)](_0x5393e6=>typeof _0x5393e6===_0x10b677(0x27d)&&_0x5393e6!==null&&_0x5393e6[_0x10b677(0x24a)]===_0x10b677(0x1e6));return Promise['\x61\x6c\x6c'](_0x40e1d5[_0x10b677(0x1e4)](_0x5b3ac6));}return{'\x74\x6f\x6f\x6c\x73':_0x55581a,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65':_0x5b3ac6,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x5baf87};}function toAnthropicContent(_0x51c538){const _0x519e47=a0_0x226894,_0x830a1a={'\x5a\x61\x67\x50\x78':_0x519e47(0x273)};if(!isCodeExecutionResultWithImages(_0x51c538))return serializeToolResult(_0x51c538);const _0x49e9c0=[],_0x2f8f0c={..._0x51c538,'\x72\x65\x73\x75\x6c\x74\x73':_0x51c538[_0x519e47(0x1fd)][_0x519e47(0x257)](_0xb066c=>_0xb066c[_0x519e47(0x24a)]!==_0x519e47(0x24f))};_0x49e9c0[_0x519e47(0x1ea)]({'\x74\x79\x70\x65':_0x519e47(0x229),'\x74\x65\x78\x74':serializeToolResult(_0x2f8f0c)});for(const _0x5f0a73 of _0x51c538[_0x519e47(0x1fd)])if(isImagePart(_0x5f0a73))_0x49e9c0[_0x519e47(0x1ea)]({'\x74\x79\x70\x65':'\x69\x6d\x61\x67\x65','\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':_0x830a1a['\x5a\x61\x67\x50\x78'],'\x6d\x65\x64\x69\x61\x5f\x74\x79\x70\x65':imageMediaType(_0x5f0a73[_0x519e47(0x219)]),'\x64\x61\x74\x61':_0x5f0a73[_0x519e47(0x200)]}});return _0x49e9c0;}function isImagePart(_0x2f4a6a){const _0x363bdb=a0_0x226894,_0x1c1fac={'\x4e\x77\x51\x42\x62':function(_0x4d5437,_0x59e2d0){return _0x4d5437===_0x59e2d0;},'\x76\x70\x4e\x41\x43':_0x363bdb(0x24f)};return _0x1c1fac['\x4e\x77\x51\x42\x62'](_0x2f4a6a[_0x363bdb(0x24a)],_0x1c1fac[_0x363bdb(0x25c)]);}function isCodeExecutionResultWithImages(_0x4b93ca){const _0x489c55=a0_0x226894,_0x2707df={'\x57\x51\x4b\x4c\x5a':_0x489c55(0x27d)};if(!_0x4b93ca||typeof _0x4b93ca!==_0x2707df[_0x489c55(0x1dd)])return![];const _0x27fb16=_0x4b93ca[_0x489c55(0x1fd)];if(!Array[_0x489c55(0x1ec)](_0x27fb16))return![];return _0x27fb16[_0x489c55(0x27c)](_0x5ed144=>_0x5ed144&&typeof _0x5ed144===_0x489c55(0x27d)&&_0x5ed144[_0x489c55(0x24a)]===_0x489c55(0x24f));}function imageMediaType(_0x152375){const _0x3959f0=a0_0x226894,_0x53f06e={'\x75\x6c\x46\x6b\x6a':_0x3959f0(0x20f),'\x46\x47\x69\x44\x56':_0x3959f0(0x212)};switch(_0x152375){case _0x3959f0(0x201):return _0x53f06e[_0x3959f0(0x225)];case _0x53f06e[_0x3959f0(0x23e)]:return _0x3959f0(0x1ee);case _0x3959f0(0x1fb):return _0x53f06e[_0x3959f0(0x225)];}}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':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x70\x61\x77\x6e','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x259),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x226894(0x27d),'\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_0x226894(0x215),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x26a)},'\x77\x6f\x72\x6b\x65\x72\x73':{'\x74\x79\x70\x65':a0_0x226894(0x23f),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x245)},'\x6d\x65\x74\x61\x64\x61\x74\x61':{'\x74\x79\x70\x65':'\x6f\x62\x6a\x65\x63\x74','\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_0x226894(0x260)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x226894(0x25d),a0_0x226894(0x250)],'\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:_0x5556c6})=>async _0x22cc0e=>{const _0x49766b=a0_0x226894,_0x262ead=await _0x5556c6[_0x49766b(0x23a)][_0x49766b(0x26d)]({'\x64\x65\x66\x61\x75\x6c\x74\x73':{'\x70\x75\x62\x6c\x69\x63\x54\x65\x6d\x70\x6c\x61\x74\x65\x49\x64':_0x22cc0e[_0x49766b(0x25d)]},'\x77\x6f\x72\x6b\x65\x72\x73':Array[_0x49766b(0x202)]({'\x6c\x65\x6e\x67\x74\x68':_0x22cc0e[_0x49766b(0x250)]},(_0x2abece,_0x3a0baa)=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':'\x77\x6f\x72\x6b\x65\x72\x2d'+_0x3a0baa})),'\x6d\x65\x74\x61\x64\x61\x74\x61':_0x22cc0e['\x6d\x65\x74\x61\x64\x61\x74\x61']});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x262ead[_0x49766b(0x1da)],'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64\x73':_0x262ead['\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_0x226894(0x1ff),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x21e),'\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':{'\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':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x53\x68\x65\x6c\x6c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x6c\x69\x6e\x65\x2e'},'\x6d\x61\x63\x68\x69\x6e\x65\x73':{'\x74\x79\x70\x65':a0_0x226894(0x218),'\x69\x74\x65\x6d\x73':{'\x74\x79\x70\x65':a0_0x226894(0x215)},'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x26b)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x226894(0x23f),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x269)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x226894(0x244),a0_0x226894(0x1f0)],'\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:_0x2da28d})=>async _0x4faedc=>{const _0x2f1baa=a0_0x226894;return await(await _0x2da28d[_0x2f1baa(0x23a)][_0x2f1baa(0x276)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x4faedc[_0x2f1baa(0x244)]}))['\x64\x69\x73\x70\x61\x74\x63\x68\x45\x78\x65\x63'](_0x4faedc['\x63\x6f\x6d\x6d\x61\x6e\x64'],{'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x4faedc[_0x2f1baa(0x1de)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x4faedc[_0x2f1baa(0x20d)]});}},'\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_0x226894(0x248),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x226894(0x27d),'\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_0x226894(0x244)],'\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:_0x9f837b})=>async _0x3f3769=>{const _0x489237=a0_0x226894,_0x2b9824=await _0x9f837b[_0x489237(0x23a)][_0x489237(0x276)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x3f3769['\x66\x6c\x65\x65\x74\x5f\x69\x64']});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x2b9824['\x66\x6c\x65\x65\x74\x49\x64'],'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x2b9824[_0x489237(0x207)][_0x489237(0x1e4)](_0x299aaa=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x299aaa,'\x73\x74\x61\x74\x75\x73':_0x2b9824['\x67\x65\x74'](_0x299aaa)[_0x489237(0x1e5)]}))};}},'\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':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x65\x73\x74\x72\x6f\x79','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x25e),'\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':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0x226894(0x215)},'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':'\x62\x6f\x6f\x6c\x65\x61\x6e','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x43\x6f\x6e\x74\x69\x6e\x75\x65\x20\x64\x65\x6c\x65\x74\x69\x6e\x67\x20\x72\x65\x6d\x61\x69\x6e\x69\x6e\x67\x20\x6d\x61\x63\x68\x69\x6e\x65\x73\x20\x69\x66\x20\x6f\x6e\x65\x20\x66\x61\x69\x6c\x73\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x226894(0x244)],'\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:_0x3cba9b})=>async _0x52f416=>{const _0x2817ab=a0_0x226894;return await(await _0x3cba9b[_0x2817ab(0x23a)][_0x2817ab(0x276)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x52f416['\x66\x6c\x65\x65\x74\x5f\x69\x64']}))[_0x2817ab(0x275)]({'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x4f\x6e\x45\x72\x72\x6f\x72':_0x52f416[_0x2817ab(0x26f)]}),{'\x66\x6c\x65\x65\x74\x49\x64':_0x52f416['\x66\x6c\x65\x65\x74\x5f\x69\x64'],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_FLEET_TOOL_SPECS=Object['\x76\x61\x6c\x75\x65\x73'](FLEET_TOOL_SPECS);function selectFleetSpecs(_0x14a44f){const _0xf523e3=a0_0x226894;if(!_0x14a44f||_0x14a44f[_0xf523e3(0x262)]===0x0)return ALL_FLEET_TOOL_SPECS;const _0x263e99=new Set(_0x14a44f);return Object['\x6b\x65\x79\x73'](FLEET_TOOL_SPECS)[_0xf523e3(0x257)](_0x18bd7b=>_0x263e99[_0xf523e3(0x281)](_0x18bd7b))[_0xf523e3(0x1e4)](_0xe4bee3=>FLEET_TOOL_SPECS[_0xe4bee3]);}function anthropicFleetTools(_0x347f7b,_0x2e6655={}){const _0x4d6bf3=a0_0x226894,_0x3c89c3={'\x4c\x4f\x68\x4a\x74':_0x4d6bf3(0x21a),'\x49\x67\x57\x70\x76':function(_0x26131d,_0x460c48){return _0x26131d(_0x460c48);},'\x6f\x4e\x4b\x51\x76':function(_0x26faa0,_0x441a43,_0x229274){return _0x26faa0(_0x441a43,_0x229274);}},_0x2027ef=_0x3c89c3['\x49\x67\x57\x70\x76'](selectFleetSpecs,_0x2e6655[_0x4d6bf3(0x283)]),_0x1c69d5=_0x3c89c3['\x6f\x4e\x4b\x51\x76'](buildFleetHandlers,_0x2027ef,{'\x63\x6c\x69\x65\x6e\x74':_0x347f7b});return{'\x74\x6f\x6f\x6c\x73':_0x2027ef[_0x4d6bf3(0x1e4)](_0x43c05e=>({'\x6e\x61\x6d\x65':_0x43c05e[_0x4d6bf3(0x249)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x43c05e['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x43c05e[_0x4d6bf3(0x1fe)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x186848){const _0xea81f8=_0x4d6bf3,_0x4d5b2d=_0x1c69d5[_0xea81f8(0x1ef)](_0x186848['\x6e\x61\x6d\x65']);if(!_0x4d5b2d)return{'\x74\x79\x70\x65':_0xea81f8(0x21a),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x186848['\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'+_0x186848[_0xea81f8(0x249)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x29290b=await _0x4d5b2d(_0x186848[_0xea81f8(0x1e1)]);return{'\x74\x79\x70\x65':_0x3c89c3[_0xea81f8(0x20b)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x186848['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x29290b)};}catch(_0x44f184){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':_0x186848['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x44f184 instanceof Error?_0x44f184['\x6d\x65\x73\x73\x61\x67\x65']:String(_0x44f184),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiFleetTools(_0x1d0f0a,_0x16665e={}){const _0x104918=a0_0x226894,_0x18bb5e={'\x77\x6d\x6c\x44\x6a':function(_0x41b001,_0xae116a){return _0x41b001(_0xae116a);},'\x49\x55\x68\x4e\x44':'\x74\x6f\x6f\x6c','\x48\x4a\x72\x54\x7a':function(_0x251c90,_0x1c140e){return _0x251c90 instanceof _0x1c140e;},'\x57\x47\x49\x72\x62':function(_0xfada19,_0x210295){return _0xfada19(_0x210295);}},_0x52e74e=_0x18bb5e['\x57\x47\x49\x72\x62'](selectFleetSpecs,_0x16665e[_0x104918(0x283)]),_0x57138f=buildFleetHandlers(_0x52e74e,{'\x63\x6c\x69\x65\x6e\x74':_0x1d0f0a});return{'\x74\x6f\x6f\x6c\x73':_0x52e74e['\x6d\x61\x70'](_0x44e46c=>({'\x74\x79\x70\x65':'\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x44e46c[_0x104918(0x249)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x44e46c[_0x104918(0x21c)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x44e46c[_0x104918(0x1fe)]}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x84cb1){const _0x5615f1=_0x104918,_0x3e7f0b=_0x57138f[_0x5615f1(0x1ef)](_0x84cb1[_0x5615f1(0x226)][_0x5615f1(0x249)]);if(!_0x3e7f0b)return{'\x72\x6f\x6c\x65':_0x5615f1(0x1d8),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x84cb1['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x66\x6c\x65\x65\x74\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x84cb1[_0x5615f1(0x226)][_0x5615f1(0x249)]})};let _0xbad353={};try{const _0x4618b0=JSON[_0x5615f1(0x256)](_0x84cb1['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x5615f1(0x217)]||'\x7b\x7d');if(_0x4618b0&&typeof _0x4618b0===_0x5615f1(0x27d))_0xbad353=_0x4618b0;}catch{}try{const _0x475596=await _0x18bb5e[_0x5615f1(0x24b)](_0x3e7f0b,_0xbad353);return{'\x72\x6f\x6c\x65':_0x18bb5e[_0x5615f1(0x1e7)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x84cb1['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x475596)};}catch(_0x113263){return{'\x72\x6f\x6c\x65':_0x5615f1(0x1d8),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x84cb1['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x5615f1(0x263)]({'\x65\x72\x72\x6f\x72':_0x18bb5e['\x48\x4a\x72\x54\x7a'](_0x113263,Error)?_0x113263[_0x5615f1(0x258)]:String(_0x113263)})};}}};}async function vercelAiFleetTools(_0x29450a,_0x5ae3c4={}){const _0x4cc363=a0_0x226894,_0x35ec32={'\x4a\x71\x76\x79\x4c':function(_0x1c683b,_0x54aff2){return _0x1c683b(_0x54aff2);},'\x52\x66\x4b\x6b\x6b':function(_0x235a9f,_0x52b397){return _0x235a9f(_0x52b397);},'\x70\x4a\x52\x76\x75':'\x76\x65\x72\x63\x65\x6c\x41\x69\x46\x6c\x65\x65\x74\x54\x6f\x6f\x6c\x73\x28\x29\x3a\x20\x74\x68\x65\x20\x60\x61\x69\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\x61\x69\x60\x2e'};let _0x1eabb9;try{_0x1eabb9=await import('\x61\x69');}catch{throw new Error(_0x35ec32['\x70\x4a\x52\x76\x75']);}const _0x246ca8=selectFleetSpecs(_0x5ae3c4[_0x4cc363(0x283)]),_0x223943=buildFleetHandlers(_0x246ca8,{'\x63\x6c\x69\x65\x6e\x74':_0x29450a}),_0xa5654={};for(const _0x10643c of _0x246ca8)_0xa5654[_0x10643c[_0x4cc363(0x249)]]=_0x1eabb9[_0x4cc363(0x1d8)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x10643c[_0x4cc363(0x21c)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x1eabb9[_0x4cc363(0x22d)](_0x10643c[_0x4cc363(0x1fe)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x348ee7=>{const _0x13ff7a=_0x4cc363,_0x55d326=_0x223943[_0x13ff7a(0x1ef)](_0x10643c[_0x13ff7a(0x249)]);if(!_0x55d326)throw new Error('\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x66\x6c\x65\x65\x74\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x10643c['\x6e\x61\x6d\x65']);return _0x35ec32[_0x13ff7a(0x1f5)](serializeToolResult,await _0x35ec32['\x52\x66\x4b\x6b\x6b'](_0x55d326,_0x348ee7));}});return _0xa5654;}async function mastraFleetTools(_0x38c293,_0x3cb25b={}){const _0x1ebedd=a0_0x226894,_0xad88af={'\x69\x6d\x43\x69\x61':function(_0x3f4a88,_0x1f7494){return _0x3f4a88(_0x1f7494);},'\x53\x63\x77\x6f\x75':_0x1ebedd(0x1f1),'\x61\x69\x76\x68\x4e':function(_0x38a1b6,_0x4557fd){return _0x38a1b6(_0x4557fd);}};let _0x3b2331;try{_0x3b2331=await import('\x40\x6d\x61\x73\x74\x72\x61\x2f\x63\x6f\x72\x65');}catch{throw new Error(_0xad88af[_0x1ebedd(0x1f6)]);}const _0x3ee441=_0xad88af[_0x1ebedd(0x223)](selectFleetSpecs,_0x3cb25b[_0x1ebedd(0x283)]),_0x581a4a=buildFleetHandlers(_0x3ee441,{'\x63\x6c\x69\x65\x6e\x74':_0x38c293}),_0xf0aab4={};for(const _0x54292f of _0x3ee441)_0xf0aab4[_0x54292f[_0x1ebedd(0x249)]]=_0x3b2331['\x63\x72\x65\x61\x74\x65\x54\x6f\x6f\x6c']({'\x69\x64':_0x54292f[_0x1ebedd(0x249)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x54292f[_0x1ebedd(0x21c)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x3b2331[_0x1ebedd(0x22d)]?_0x3b2331[_0x1ebedd(0x22d)](_0x54292f[_0x1ebedd(0x1fe)]):_0x54292f[_0x1ebedd(0x1fe)],'\x65\x78\x65\x63\x75\x74\x65':async _0x3d3161=>{const _0xd45353=_0x1ebedd,_0x36edbe=_0x581a4a[_0xd45353(0x1ef)](_0x54292f[_0xd45353(0x249)]);if(!_0x36edbe)throw new Error(_0xd45353(0x231)+_0x54292f['\x6e\x61\x6d\x65']);return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0xad88af[_0xd45353(0x1fc)](_0x36edbe,_0x3d3161?.[_0xd45353(0x22f)]??{}))};}});return _0xf0aab4;}function buildFleetHandlers(_0x3b30c9,_0x26c03b){const _0x463e44=a0_0x226894,_0x481341=new Map();for(const _0x5af937 of _0x3b30c9)_0x481341[_0x463e44(0x1f4)](_0x5af937['\x6e\x61\x6d\x65'],_0x5af937[_0x463e44(0x265)](_0x26c03b));return _0x481341;}const LIFECYCLE_TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x63\x72\x65\x61\x74\x65':{'\x6e\x61\x6d\x65':a0_0x226894(0x232),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x1db),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x226894(0x27d),'\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_0x226894(0x215),'\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':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x208)}},'\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:_0x1b8b3c})=>async _0x41cf38=>{const _0x169383=a0_0x226894,_0x7a0650={'\x69\x6e\x4f\x79\x72':_0x169383(0x20a)},_0xba0c91=await _0x1b8b3c[_0x169383(0x26e)]({'\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74':_0x41cf38['\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74']??_0x7a0650[_0x169383(0x227)],'\x6e\x61\x6d\x65':_0x41cf38[_0x169383(0x249)]});return{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0xba0c91['\x69\x64'],'\x73\x74\x61\x74\x75\x73':_0xba0c91[_0x169383(0x1e5)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x6e\x61\x6d\x65':a0_0x226894(0x277),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x45\x78\x65\x63\x75\x74\x65\x20\x61\x20\x73\x68\x65\x6c\x6c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x69\x6e\x20\x61\x20\x70\x72\x65\x76\x69\x6f\x75\x73\x6c\x79\x20\x63\x72\x65\x61\x74\x65\x64\x20\x73\x61\x6e\x64\x62\x6f\x78\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x7b\x73\x74\x64\x6f\x75\x74\x2c\x20\x73\x74\x64\x65\x72\x72\x2c\x20\x65\x78\x69\x74\x43\x6f\x64\x65\x7d\x2e\x20\x54\x68\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x20\x6d\x75\x73\x74\x20\x65\x78\x69\x73\x74\x20\u2014\x20\x63\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','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x226894(0x27d),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x73\x61\x6e\x64\x62\x6f\x78\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_0x226894(0x27f)},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0x226894(0x215),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x270)},'\x63\x77\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x285)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0x226894(0x23f),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x20c)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x226894(0x278),a0_0x226894(0x1f0)],'\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:_0x56bc2c})=>async _0x38c769=>{const _0x390d07=a0_0x226894,_0x3402c9=await _0x56bc2c[_0x390d07(0x1ef)](_0x38c769[_0x390d07(0x278)]);if(!_0x3402c9)throw new Error('\x53\x61\x6e\x64\x62\x6f\x78\x20'+_0x38c769[_0x390d07(0x278)]+_0x390d07(0x204));const _0xb21f3f=await _0x3402c9[_0x390d07(0x1df)](_0x38c769['\x63\x6f\x6d\x6d\x61\x6e\x64'],{'\x63\x77\x64':_0x38c769[_0x390d07(0x22e)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x38c769[_0x390d07(0x20d)]??0xea60});return{'\x73\x74\x64\x6f\x75\x74':_0xb21f3f[_0x390d07(0x21b)],'\x73\x74\x64\x65\x72\x72':_0xb21f3f[_0x390d07(0x21d)],'\x65\x78\x69\x74\x43\x6f\x64\x65':_0xb21f3f[_0x390d07(0x22c)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x64\x65\x73\x74\x72\x6f\x79':{'\x6e\x61\x6d\x65':a0_0x226894(0x238),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0x226894(0x271),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0x226894(0x27d),'\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_0x226894(0x215),'\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'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0x226894(0x278)],'\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:_0x538976})=>async _0xa1a9e5=>{const _0x5f3043=a0_0x226894,_0x5ea42a=await _0x538976[_0x5f3043(0x1ef)](_0xa1a9e5[_0x5f3043(0x278)]);if(!_0x5ea42a)return{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0xa1a9e5[_0x5f3043(0x278)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};return await _0x5ea42a[_0x5f3043(0x275)](),{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0xa1a9e5[_0x5f3043(0x278)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_LIFECYCLE_TOOL_SPECS=Object[a0_0x226894(0x209)](LIFECYCLE_TOOL_SPECS);function selectLifecycleSpecs(_0x406d81){const _0x2d86ab=a0_0x226894;if(!_0x406d81||_0x406d81[_0x2d86ab(0x262)]===0x0)return ALL_LIFECYCLE_TOOL_SPECS;const _0x5113fe=new Set(_0x406d81);return Object[_0x2d86ab(0x25f)](LIFECYCLE_TOOL_SPECS)[_0x2d86ab(0x257)](_0xc71a9b=>_0x5113fe[_0x2d86ab(0x281)](_0xc71a9b))[_0x2d86ab(0x1e4)](_0x3cadbb=>LIFECYCLE_TOOL_SPECS[_0x3cadbb]);}function anthropicLifecycleTools(_0x4bf4eb,_0x398664={}){const _0x284f33=a0_0x226894,_0x32890c={'\x77\x45\x4f\x68\x52':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x5a\x69\x58\x58\x73':function(_0x1cd303,_0x212d30){return _0x1cd303(_0x212d30);},'\x44\x69\x6c\x58\x42':function(_0x31c251,_0x5a0e74){return _0x31c251 instanceof _0x5a0e74;}},_0x5ba906=selectLifecycleSpecs(_0x398664[_0x284f33(0x283)]),_0x89110d=buildLifecycleHandlers(_0x5ba906,{'\x63\x6c\x69\x65\x6e\x74':_0x4bf4eb});return{'\x74\x6f\x6f\x6c\x73':_0x5ba906[_0x284f33(0x1e4)](_0x545dc2=>({'\x6e\x61\x6d\x65':_0x545dc2[_0x284f33(0x249)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x545dc2[_0x284f33(0x21c)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x545dc2[_0x284f33(0x1fe)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x3ce694){const _0x4c39ac=_0x284f33,_0x4ee7c5=_0x89110d['\x67\x65\x74'](_0x3ce694[_0x4c39ac(0x249)]);if(!_0x4ee7c5)return{'\x74\x79\x70\x65':_0x4c39ac(0x21a),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3ce694['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x4c39ac(0x24c)+_0x3ce694[_0x4c39ac(0x249)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x3e23aa=await _0x4ee7c5(_0x3ce694[_0x4c39ac(0x1e1)]);return{'\x74\x79\x70\x65':_0x32890c[_0x4c39ac(0x284)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3ce694['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x32890c[_0x4c39ac(0x254)](serializeToolResult,_0x3e23aa)};}catch(_0x3e67c2){return{'\x74\x79\x70\x65':_0x4c39ac(0x21a),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x3ce694['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x32890c[_0x4c39ac(0x1ed)](_0x3e67c2,Error)?_0x3e67c2[_0x4c39ac(0x258)]:_0x32890c[_0x4c39ac(0x254)](String,_0x3e67c2),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiLifecycleTools(_0x104764,_0x5867a4={}){const _0x1763b7=a0_0x226894,_0x3af742={'\x58\x4e\x71\x73\x6f':_0x1763b7(0x1d8)},_0x593605=selectLifecycleSpecs(_0x5867a4[_0x1763b7(0x283)]),_0x1f9537=buildLifecycleHandlers(_0x593605,{'\x63\x6c\x69\x65\x6e\x74':_0x104764});return{'\x74\x6f\x6f\x6c\x73':_0x593605[_0x1763b7(0x1e4)](_0x12c1e0=>({'\x74\x79\x70\x65':'\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x12c1e0['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x12c1e0[_0x1763b7(0x21c)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x12c1e0[_0x1763b7(0x1fe)]}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x4f5038){const _0x2101d0=_0x1763b7,_0x2891d7=_0x1f9537[_0x2101d0(0x1ef)](_0x4f5038['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x2101d0(0x249)]);if(!_0x2891d7)return{'\x72\x6f\x6c\x65':_0x3af742['\x58\x4e\x71\x73\x6f'],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x4f5038['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':_0x2101d0(0x24c)+_0x4f5038[_0x2101d0(0x226)][_0x2101d0(0x249)]})};let _0x2f3262={};try{const _0x5abcf7=JSON[_0x2101d0(0x256)](_0x4f5038[_0x2101d0(0x226)][_0x2101d0(0x217)]||'\x7b\x7d');if(_0x5abcf7&&typeof _0x5abcf7===_0x2101d0(0x27d))_0x2f3262=_0x5abcf7;}catch{}try{const _0x40ce77=await _0x2891d7(_0x2f3262);return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x4f5038['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x40ce77)};}catch(_0x6d4981){return{'\x72\x6f\x6c\x65':_0x3af742[_0x2101d0(0x228)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x4f5038['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x2101d0(0x263)]({'\x65\x72\x72\x6f\x72':_0x6d4981 instanceof Error?_0x6d4981[_0x2101d0(0x258)]:String(_0x6d4981)})};}}};}function buildLifecycleHandlers(_0x592e69,_0x451edd){const _0x8fda5b=a0_0x226894,_0x4e00ea=new Map();for(const _0x233c41 of _0x592e69)_0x4e00ea['\x73\x65\x74'](_0x233c41[_0x8fda5b(0x249)],_0x233c41[_0x8fda5b(0x265)](_0x451edd));return _0x4e00ea;}async function mastraTools(_0x3b3cb1,_0x4e205a={}){const _0x59aaed=a0_0x226894,_0x1e8c0d={'\x75\x68\x75\x66\x66':function(_0x2ba35b,_0xc0231b){return _0x2ba35b(_0xc0231b);}};let _0x910b02;try{_0x910b02=await import(_0x59aaed(0x23c));}catch{throw new Error(_0x59aaed(0x26c));}const _0x5f0b84=selectSpecs(_0x4e205a[_0x59aaed(0x283)]),_0x5a2ba1={'\x62\x6f\x78':_0x3b3cb1,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x4e205a[_0x59aaed(0x1f2)]},_0x30c1d1={};for(const _0x72e48e of _0x5f0b84){const _0x5d5f02=_0x72e48e[_0x59aaed(0x265)](_0x5a2ba1);_0x30c1d1[_0x72e48e['\x6e\x61\x6d\x65']]=_0x910b02['\x63\x72\x65\x61\x74\x65\x54\x6f\x6f\x6c']({'\x69\x64':_0x72e48e[_0x59aaed(0x249)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x72e48e['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x910b02[_0x59aaed(0x22d)]?_0x910b02['\x6a\x73\x6f\x6e\x53\x63\x68\x65\x6d\x61'](_0x72e48e[_0x59aaed(0x1fe)]):_0x72e48e[_0x59aaed(0x1fe)],'\x65\x78\x65\x63\x75\x74\x65':async _0x287367=>{const _0x4f1788=_0x59aaed;return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0x1e8c0d[_0x4f1788(0x21f)](_0x5d5f02,_0x287367?.[_0x4f1788(0x22f)]??{}))};}});}return _0x30c1d1;}function openaiTools(_0x34874a,_0x3a653c={}){const _0x61aba3=a0_0x226894,_0x1f381b={'\x77\x4b\x59\x4e\x5a':_0x61aba3(0x27d),'\x6a\x79\x5a\x73\x53':function(_0x300f72,_0x1ca37a){return _0x300f72(_0x1ca37a);},'\x4e\x68\x73\x4d\x68':_0x61aba3(0x1d8),'\x67\x45\x48\x48\x4f':function(_0xe6b699,_0x199f3a){return _0xe6b699(_0x199f3a);},'\x54\x4d\x75\x42\x53':function(_0x27cb25,_0x215a71){return _0x27cb25 instanceof _0x215a71;},'\x64\x6f\x71\x78\x66':function(_0x727304,_0x293cdb){return _0x727304(_0x293cdb);}},_0x173353=_0x1f381b[_0x61aba3(0x247)](selectSpecs,_0x3a653c[_0x61aba3(0x283)]),_0x15caee={'\x62\x6f\x78':_0x34874a,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x3a653c[_0x61aba3(0x1f2)]},_0xb4b49f=new Map();for(const _0x1b0d28 of _0x173353)_0xb4b49f[_0x61aba3(0x1f4)](_0x1b0d28[_0x61aba3(0x249)],_0x1b0d28['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x15caee));const _0x4884e2=_0x173353['\x6d\x61\x70'](_0x152fae=>({'\x74\x79\x70\x65':_0x61aba3(0x226),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x152fae['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x152fae[_0x61aba3(0x21c)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x152fae['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']}}));function _0x485a81(_0x451239){const _0x598a6b=_0x61aba3;if(!_0x451239)return{};try{const _0x84fcb3=JSON['\x70\x61\x72\x73\x65'](_0x451239);return typeof _0x84fcb3===_0x1f381b[_0x598a6b(0x1f9)]&&_0x84fcb3!==null?_0x84fcb3:{};}catch{return{};}}async function _0xe3ede6(_0x52f66f){const _0x52a468=_0x61aba3,_0x55b20f=_0xb4b49f[_0x52a468(0x1ef)](_0x52f66f['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x52a468(0x249)]);if(!_0x55b20f)return{'\x72\x6f\x6c\x65':_0x52a468(0x1d8),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x52f66f['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':_0x52a468(0x25a)+_0x52f66f[_0x52a468(0x226)]['\x6e\x61\x6d\x65']})};try{const _0x2a9a39=await _0x55b20f(_0x1f381b['\x6a\x79\x5a\x73\x53'](_0x485a81,_0x52f66f[_0x52a468(0x226)][_0x52a468(0x217)]));return{'\x72\x6f\x6c\x65':_0x1f381b['\x4e\x68\x73\x4d\x68'],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x52f66f['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x1f381b['\x67\x45\x48\x48\x4f'](serializeToolResult,_0x2a9a39)};}catch(_0x5880ce){return{'\x72\x6f\x6c\x65':_0x52a468(0x1d8),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x52f66f['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x52a468(0x263)]({'\x65\x72\x72\x6f\x72':_0x1f381b[_0x52a468(0x211)](_0x5880ce,Error)?_0x5880ce['\x6d\x65\x73\x73\x61\x67\x65']:_0x1f381b['\x64\x6f\x71\x78\x66'](String,_0x5880ce)})};}}async function _0x1208da(_0x53a2e3){const _0x34dc9a=_0x61aba3,_0x1210c6=_0x53a2e3[_0x34dc9a(0x206)]??[];return Promise[_0x34dc9a(0x27a)](_0x1210c6[_0x34dc9a(0x1e4)](_0xe3ede6));}return{'\x74\x6f\x6f\x6c\x73':_0x4884e2,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c':_0xe3ede6,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x1208da};}async function vercelAiTools(_0x3ff074,_0x1bab75={}){const _0x3f5bc1=a0_0x226894;let _0x5b2f15;try{_0x5b2f15=await import('\x61\x69');}catch{throw new Error(_0x3f5bc1(0x221));}const _0x5dad0d=selectSpecs(_0x1bab75['\x61\x6c\x6c\x6f\x77']),_0x4c818c={'\x62\x6f\x78':_0x3ff074,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x1bab75[_0x3f5bc1(0x1f2)]},_0x23e73a={};for(const _0x5df622 of _0x5dad0d){const _0x662f32=_0x5df622['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x4c818c);_0x23e73a[_0x5df622[_0x3f5bc1(0x249)]]=_0x5b2f15['\x74\x6f\x6f\x6c']({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x5df622[_0x3f5bc1(0x21c)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x5b2f15[_0x3f5bc1(0x22d)](_0x5df622[_0x3f5bc1(0x1fe)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x162862=>{return serializeToolResult(await _0x662f32(_0x162862));}});}return _0x23e73a;}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};
|
|
1
|
+
const a0_0xf68993=a0_0x18c0;(function(_0x4c537b,_0x1496f8){const _0x46e317=a0_0x18c0,_0xe3b983=_0x4c537b();while(!![]){try{const _0x27800f=-parseInt(_0x46e317(0xe0))/0x1+parseInt(_0x46e317(0x87))/0x2*(parseInt(_0x46e317(0xb9))/0x3)+parseInt(_0x46e317(0xc4))/0x4+-parseInt(_0x46e317(0x95))/0x5+-parseInt(_0x46e317(0xe2))/0x6+-parseInt(_0x46e317(0xff))/0x7*(parseInt(_0x46e317(0xb1))/0x8)+parseInt(_0x46e317(0xaa))/0x9*(parseInt(_0x46e317(0x118))/0xa);if(_0x27800f===_0x1496f8)break;else _0xe3b983['push'](_0xe3b983['shift']());}catch(_0x3fdfe8){_0xe3b983['push'](_0xe3b983['shift']());}}}(a0_0x59a1,0xa5edc));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_0xf68993(0x98),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0x7d),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xf68993(0xcd),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x6c\x61\x6e\x67\x75\x61\x67\x65':{'\x74\x79\x70\x65':a0_0xf68993(0xdf),'\x65\x6e\x75\x6d':[a0_0xf68993(0xdb),a0_0xf68993(0xf8),'\x74\x79\x70\x65\x73\x63\x72\x69\x70\x74',a0_0xf68993(0x122)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0xe7)},'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':a0_0xf68993(0xdf),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x53\x6f\x75\x72\x63\x65\x20\x63\x6f\x64\x65\x20\x74\x6f\x20\x72\x75\x6e\x2e\x20\x4d\x75\x6c\x74\x69\x2d\x6c\x69\x6e\x65\x20\x73\x75\x70\x70\x6f\x72\x74\x65\x64\x2e'},'\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_0xf68993(0xbd)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0xf68993(0x84),a0_0xf68993(0x9a)],'\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:_0x4f23fe,sessionId:_0x2fecfd})=>async _0x29491c=>{const _0x3d43b2=a0_0xf68993;return await _0x4f23fe[_0x3d43b2(0xc0)](_0x29491c[_0x3d43b2(0x84)],_0x29491c[_0x3d43b2(0x9a)],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x2fecfd,'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x29491c[_0x3d43b2(0x10e)]});}},'\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_0xf68993(0x104),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xf68993(0xcd),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0xf68993(0xdf),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0xb3)},'\x63\x77\x64':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0x108)},'\x74\x69\x6d\x65\x6f\x75\x74\x5f\x6d\x73':{'\x74\x79\x70\x65':a0_0xf68993(0x120),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0xad)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0xf68993(0x10a)],'\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:_0x2915,sessionId:_0x489003})=>async _0x40c0ba=>{const _0x38f887=a0_0xf68993;return await _0x2915[_0x38f887(0x111)](_0x40c0ba[_0x38f887(0x10a)],{'\x63\x77\x64':_0x40c0ba[_0x38f887(0x86)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x40c0ba[_0x38f887(0x10e)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x489003});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x65\x61\x64':{'\x6e\x61\x6d\x65':a0_0xf68993(0x116),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0x94),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xf68993(0xcd),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0xf68993(0xdf)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0xf68993(0xe6)],'\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:_0x181e86,sessionId:_0x3b4dd0})=>async _0x263955=>{const _0x3d7eb8=a0_0xf68993;return{'\x63\x6f\x6e\x74\x65\x6e\x74':await _0x181e86[_0x3d7eb8(0x9c)](_0x263955['\x70\x61\x74\x68'],{'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x3b4dd0})};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x77\x72\x69\x74\x65':{'\x6e\x61\x6d\x65':a0_0xf68993(0xe1),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x57\x72\x69\x74\x65\x20\x61\x20\x66\x69\x6c\x65\x20\x69\x6e\x20\x74\x68\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x2e\x20\x43\x72\x65\x61\x74\x65\x73\x20\x70\x61\x72\x65\x6e\x74\x20\x64\x69\x72\x65\x63\x74\x6f\x72\x69\x65\x73\x20\x61\x73\x20\x6e\x65\x65\x64\x65\x64\x2e\x20\x4f\x76\x65\x72\x77\x72\x69\x74\x65\x73\x20\x65\x78\x69\x73\x74\x69\x6e\x67\x20\x66\x69\x6c\x65\x73\x2e','\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_0xf68993(0xdf)},'\x63\x6f\x6e\x74\x65\x6e\x74':{'\x74\x79\x70\x65':a0_0xf68993(0xdf),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0xfb)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0xf68993(0xe6),a0_0xf68993(0xba)],'\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:_0x1e5d87})=>async _0x1e1db3=>{const _0x575d6b=a0_0xf68993;return await _0x1e5d87[_0x575d6b(0xbf)](_0x1e1db3[_0x575d6b(0xe6)],_0x1e1db3['\x63\x6f\x6e\x74\x65\x6e\x74']),{'\x6f\x6b':!![]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x6c\x69\x73\x74','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0xb5),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xf68993(0xcd),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0xf68993(0xdf)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0xf68993(0xe6)],'\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:_0x3f50d3})=>async _0x3a9a0b=>{const _0x1da61f=a0_0xf68993;return{'\x65\x6e\x74\x72\x69\x65\x73':await _0x3f50d3['\x66\x73'][_0x1da61f(0x89)](_0x3a9a0b[_0x1da61f(0xe6)])};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68':{'\x6e\x61\x6d\x65':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x73\x65\x61\x72\x63\x68','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x52\x69\x70\x67\x72\x65\x70\x2d\x73\x74\x79\x6c\x65\x20\x63\x6f\x64\x65\x20\x73\x65\x61\x72\x63\x68\x2e\x20\x52\x65\x74\x75\x72\x6e\x73\x20\x6d\x61\x74\x63\x68\x69\x6e\x67\x20\x6c\x69\x6e\x65\x73\x20\x77\x69\x74\x68\x20\x73\x75\x72\x72\x6f\x75\x6e\x64\x69\x6e\x67\x20\x63\x6f\x6e\x74\x65\x78\x74\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xf68993(0xcd),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x70\x61\x74\x74\x65\x72\x6e':{'\x74\x79\x70\x65':'\x73\x74\x72\x69\x6e\x67','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x52\x65\x67\x65\x78\x20\x70\x61\x74\x74\x65\x72\x6e\x2e'},'\x70\x61\x74\x68':{'\x74\x79\x70\x65':a0_0xf68993(0xdf),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0x78)},'\x6d\x61\x78\x5f\x72\x65\x73\x75\x6c\x74\x73':{'\x74\x79\x70\x65':a0_0xf68993(0x120),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x43\x61\x70\x2e\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x31\x30\x30\x2e'}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0xf68993(0xa3)],'\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:_0x2bc8e1})=>async _0x2a1ebd=>{const _0x151fd7=a0_0xf68993,_0x5aa8ac=[],_0x1d84e2=_0x2a1ebd['\x6d\x61\x78\x5f\x72\x65\x73\x75\x6c\x74\x73']??0x64;for await(const _0x40ae4e of _0x2bc8e1['\x73\x65\x61\x72\x63\x68'](_0x2a1ebd[_0x151fd7(0xa3)],{'\x63\x77\x64':_0x2a1ebd[_0x151fd7(0xe6)],'\x6d\x61\x78\x52\x65\x73\x75\x6c\x74\x73':_0x1d84e2})){_0x5aa8ac[_0x151fd7(0x7c)](_0x40ae4e);if(_0x5aa8ac[_0x151fd7(0x10d)]>=_0x1d84e2)break;}return{'\x6d\x61\x74\x63\x68\x65\x73':_0x5aa8ac};}}},ALL_TOOL_SPECS=Object[a0_0xf68993(0xea)](TOOL_SPECS);function selectSpecs(_0x3e4456){const _0x582574=a0_0xf68993,_0x291284={'\x6a\x74\x6a\x66\x4a':function(_0xf50e3d,_0x4244a6){return _0xf50e3d===_0x4244a6;}};if(!_0x3e4456||_0x291284[_0x582574(0xcc)](_0x3e4456[_0x582574(0x10d)],0x0))return ALL_TOOL_SPECS;const _0x39f39f=new Set(_0x3e4456);return Object[_0x582574(0x9f)](TOOL_SPECS)[_0x582574(0x8a)](_0x1db669=>_0x39f39f[_0x582574(0x109)](_0x1db669))[_0x582574(0xf6)](_0x3880f8=>TOOL_SPECS[_0x3880f8]);}function serializeToolResult(_0x275a00){const _0x132325=a0_0xf68993,_0xdd1e14={'\x75\x43\x59\x4e\x50':'\x73\x74\x72\x69\x6e\x67'};if(typeof _0x275a00===_0xdd1e14[_0x132325(0xf1)])return _0x275a00;try{return JSON[_0x132325(0x107)](_0x275a00,null,0x2);}catch{return String(_0x275a00);}}const SDK_VERSION=((()=>{const _0x2cd1ea=a0_0xf68993,_0x362f31={'\x75\x56\x59\x47\x76':'\x2e\x2e\x2f\x2e\x2e\x2f\x70\x61\x63\x6b\x61\x67\x65\x2e\x6a\x73\x6f\x6e','\x74\x45\x6c\x56\x62':_0x2cd1ea(0xf7)};try{return createRequire(import.meta.url)(_0x362f31[_0x2cd1ea(0x8c)])[_0x2cd1ea(0xd3)]??_0x362f31['\x74\x45\x6c\x56\x62'];}catch{return _0x362f31[_0x2cd1ea(0x88)];}})());async function createMcpServer(_0x53ce4b,_0x1689f1={}){const _0x5e8377=a0_0xf68993,_0x512787={'\x42\x6b\x6c\x53\x77':_0x5e8377(0xd9),'\x4f\x64\x54\x53\x63':function(_0x58f204,_0x1f4820){return _0x58f204 instanceof _0x1f4820;},'\x41\x65\x75\x4f\x71':function(_0x35c268,_0x1bad09){return _0x35c268(_0x1bad09);}};let _0x37dfa5,_0x50599b;try{[_0x37dfa5,_0x50599b]=await Promise[_0x5e8377(0xb6)]([import('\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\x2f\x73\x65\x72\x76\x65\x72\x2f\x69\x6e\x64\x65\x78\x2e\x6a\x73'),import(_0x5e8377(0xfc))]);}catch{throw new Error(_0x5e8377(0xa6));}const _0x273cc3=_0x512787[_0x5e8377(0x11e)](selectSpecs,_0x1689f1[_0x5e8377(0xd1)]),_0x56aa77={'\x62\x6f\x78':_0x53ce4b,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x1689f1['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64']},_0x3501eb=new Map();for(const _0x9fc187 of _0x273cc3)_0x3501eb['\x73\x65\x74'](_0x9fc187[_0x5e8377(0xa9)],_0x9fc187['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x56aa77));const _0x2f537d=new _0x37dfa5[(_0x5e8377(0x80))]({'\x6e\x61\x6d\x65':_0x1689f1[_0x5e8377(0xa9)]??_0x5e8377(0xb8),'\x76\x65\x72\x73\x69\x6f\x6e':_0x1689f1[_0x5e8377(0xd3)]??SDK_VERSION},{'\x63\x61\x70\x61\x62\x69\x6c\x69\x74\x69\x65\x73':{'\x74\x6f\x6f\x6c\x73':{}}});return _0x2f537d['\x73\x65\x74\x52\x65\x71\x75\x65\x73\x74\x48\x61\x6e\x64\x6c\x65\x72'](_0x50599b[_0x5e8377(0xa1)],async()=>({'\x74\x6f\x6f\x6c\x73':_0x273cc3['\x6d\x61\x70'](_0x4a35f1=>({'\x6e\x61\x6d\x65':_0x4a35f1['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4a35f1[_0x5e8377(0x105)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x4a35f1[_0x5e8377(0x117)]}))})),_0x2f537d['\x73\x65\x74\x52\x65\x71\x75\x65\x73\x74\x48\x61\x6e\x64\x6c\x65\x72'](_0x50599b['\x43\x61\x6c\x6c\x54\x6f\x6f\x6c\x52\x65\x71\x75\x65\x73\x74\x53\x63\x68\x65\x6d\x61'],async _0xb36686=>{const _0x23726e=_0x5e8377,_0x59670d=_0xb36686,_0xa9f12a=_0x3501eb[_0x23726e(0x9b)](_0x59670d['\x70\x61\x72\x61\x6d\x73'][_0x23726e(0xa9)]);if(!_0xa9f12a)return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x512787['\x42\x6b\x6c\x53\x77'],'\x74\x65\x78\x74':_0x23726e(0xec)+_0x59670d[_0x23726e(0xf5)]['\x6e\x61\x6d\x65']}]};try{return{'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x23726e(0xd9),'\x74\x65\x78\x74':serializeToolResult(await _0xa9f12a(_0x59670d[_0x23726e(0xf5)][_0x23726e(0x81)]??{}))}]};}catch(_0x250d3b){return{'\x69\x73\x45\x72\x72\x6f\x72':!![],'\x63\x6f\x6e\x74\x65\x6e\x74':[{'\x74\x79\x70\x65':_0x512787['\x42\x6b\x6c\x53\x77'],'\x74\x65\x78\x74':_0x512787[_0x23726e(0x93)](_0x250d3b,Error)?_0x250d3b[_0x23726e(0xa8)]:String(_0x250d3b)}]};}}),{'\x73\x65\x72\x76\x65\x72':_0x2f537d,'\x63\x6f\x6e\x6e\x65\x63\x74':_0x278fef=>_0x2f537d['\x63\x6f\x6e\x6e\x65\x63\x74'](_0x278fef),'\x63\x6c\x6f\x73\x65':()=>_0x2f537d['\x63\x6c\x6f\x73\x65']()};}function runCode(_0x520022,_0x4a8713,_0x279f46,_0xa19036){const _0x98ac8f=a0_0xf68993;return _0x520022[_0x98ac8f(0xc0)](_0x4a8713,_0x279f46,_0xa19036);}function anthropicTools(_0x55201c,_0x2dc6a5={}){const _0x3a1cb9=a0_0xf68993,_0x15cf26={'\x44\x78\x64\x4e\x56':'\x74\x6f\x6f\x6c\x5f\x72\x65\x73\x75\x6c\x74','\x51\x55\x78\x57\x59':function(_0x22669e,_0x4a7bbe){return _0x22669e(_0x4a7bbe);},'\x57\x41\x44\x7a\x67':function(_0x4b9595,_0x25ba93){return _0x4b9595 instanceof _0x25ba93;},'\x55\x42\x73\x73\x49':function(_0x9a594b,_0x5cb804){return _0x9a594b(_0x5cb804);}},_0x1fd651=selectSpecs(_0x2dc6a5['\x61\x6c\x6c\x6f\x77']),_0xa41e21={'\x62\x6f\x78':_0x55201c,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x2dc6a5['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64']},_0x422f4d=new Map();for(const _0x10baa5 of _0x1fd651)_0x422f4d['\x73\x65\x74'](_0x10baa5[_0x3a1cb9(0xa9)],_0x10baa5['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0xa41e21));const _0x33d099=_0x1fd651[_0x3a1cb9(0xf6)](_0x4264ea=>({'\x6e\x61\x6d\x65':_0x4264ea[_0x3a1cb9(0xa9)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4264ea['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x4264ea[_0x3a1cb9(0x117)]}));async function _0x451fb8(_0x423c43){const _0x4e2d9b=_0x3a1cb9,_0xdca173=_0x422f4d[_0x4e2d9b(0x9b)](_0x423c43[_0x4e2d9b(0xa9)]);if(!_0xdca173)return{'\x74\x79\x70\x65':_0x15cf26[_0x4e2d9b(0x112)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x423c43['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x4e2d9b(0xec)+_0x423c43['\x6e\x61\x6d\x65'],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x280728=await _0x15cf26[_0x4e2d9b(0xb7)](_0xdca173,_0x423c43['\x69\x6e\x70\x75\x74']);return{'\x74\x79\x70\x65':_0x4e2d9b(0xc5),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x423c43['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':toAnthropicContent(_0x280728)};}catch(_0xd4a19f){return{'\x74\x79\x70\x65':_0x4e2d9b(0xc5),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x423c43['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x15cf26['\x57\x41\x44\x7a\x67'](_0xd4a19f,Error)?_0xd4a19f[_0x4e2d9b(0xa8)]:_0x15cf26['\x55\x42\x73\x73\x49'](String,_0xd4a19f),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}async function _0x17544d(_0x173948){const _0x4d8dc1=_0x3a1cb9,_0x4f08eb=_0x173948[_0x4d8dc1(0x8a)](_0x2e3746=>typeof _0x2e3746===_0x4d8dc1(0xcd)&&_0x2e3746!==null&&_0x2e3746[_0x4d8dc1(0xc3)]===_0x4d8dc1(0x82));return Promise[_0x4d8dc1(0xb6)](_0x4f08eb[_0x4d8dc1(0xf6)](_0x451fb8));}return{'\x74\x6f\x6f\x6c\x73':_0x33d099,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65':_0x451fb8,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x17544d};}function toAnthropicContent(_0x3ed3bc){const _0x1e2a58=a0_0xf68993,_0x54a160={'\x52\x50\x48\x48\x47':_0x1e2a58(0xd9),'\x79\x43\x47\x69\x4d':_0x1e2a58(0xca)};if(!isCodeExecutionResultWithImages(_0x3ed3bc))return serializeToolResult(_0x3ed3bc);const _0x311352=[],_0x4cdf14={..._0x3ed3bc,'\x72\x65\x73\x75\x6c\x74\x73':_0x3ed3bc[_0x1e2a58(0xe5)][_0x1e2a58(0x8a)](_0x1e4f05=>_0x1e4f05[_0x1e2a58(0xc3)]!=='\x69\x6d\x61\x67\x65')};_0x311352[_0x1e2a58(0x7c)]({'\x74\x79\x70\x65':_0x54a160[_0x1e2a58(0xf4)],'\x74\x65\x78\x74':serializeToolResult(_0x4cdf14)});for(const _0x439a58 of _0x3ed3bc[_0x1e2a58(0xe5)])if(isImagePart(_0x439a58))_0x311352[_0x1e2a58(0x7c)]({'\x74\x79\x70\x65':_0x1e2a58(0xf0),'\x73\x6f\x75\x72\x63\x65':{'\x74\x79\x70\x65':_0x54a160[_0x1e2a58(0xd5)],'\x6d\x65\x64\x69\x61\x5f\x74\x79\x70\x65':imageMediaType(_0x439a58[_0x1e2a58(0xd2)]),'\x64\x61\x74\x61':_0x439a58['\x64\x61\x74\x61']}});return _0x311352;}function isImagePart(_0x121731){const _0x2a8c83=a0_0xf68993,_0x6ba62f={'\x72\x63\x66\x55\x51':function(_0x34a2d4,_0x5090dd){return _0x34a2d4===_0x5090dd;},'\x64\x6e\x6a\x59\x59':_0x2a8c83(0xf0)};return _0x6ba62f[_0x2a8c83(0x11f)](_0x121731['\x74\x79\x70\x65'],_0x6ba62f[_0x2a8c83(0x8d)]);}function isCodeExecutionResultWithImages(_0x2f6e9b){const _0x4f0177=a0_0xf68993,_0x17c090={'\x46\x4e\x63\x62\x72':_0x4f0177(0xcd)};if(!_0x2f6e9b||typeof _0x2f6e9b!==_0x17c090[_0x4f0177(0xa0)])return![];const _0xb2f5af=_0x2f6e9b[_0x4f0177(0xe5)];if(!Array[_0x4f0177(0xdc)](_0xb2f5af))return![];return _0xb2f5af[_0x4f0177(0xdd)](_0x342af5=>_0x342af5&&typeof _0x342af5===_0x4f0177(0xcd)&&_0x342af5['\x74\x79\x70\x65']===_0x4f0177(0xf0));}function imageMediaType(_0x3a6240){const _0x2edff4=a0_0xf68993,_0x2cffe0={'\x6a\x7a\x6b\x44\x4d':'\x70\x6e\x67','\x48\x51\x43\x65\x4d':_0x2edff4(0x114),'\x79\x46\x7a\x68\x74':_0x2edff4(0x106)};switch(_0x3a6240){case _0x2cffe0[_0x2edff4(0x11d)]:return _0x2edff4(0x106);case _0x2edff4(0xfa):return _0x2cffe0['\x48\x51\x43\x65\x4d'];case _0x2edff4(0x115):return _0x2cffe0[_0x2edff4(0x90)];}}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_0xf68993(0x119),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0xd4),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xf68993(0xcd),'\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_0xf68993(0xda)},'\x77\x6f\x72\x6b\x65\x72\x73':{'\x74\x79\x70\x65':a0_0xf68993(0x120),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x4e\x75\x6d\x62\x65\x72\x20\x6f\x66\x20\x77\x6f\x72\x6b\x65\x72\x20\x73\x61\x6e\x64\x62\x6f\x78\x65\x73\x2e\x20\x45\x61\x63\x68\x20\x69\x73\x20\x62\x69\x6c\x6c\x65\x64\x20\x69\x6e\x64\x65\x70\x65\x6e\x64\x65\x6e\x74\x6c\x79\x2e'},'\x6d\x65\x74\x61\x64\x61\x74\x61':{'\x74\x79\x70\x65':a0_0xf68993(0xcd),'\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_0xf68993(0x100)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x74\x65\x6d\x70\x6c\x61\x74\x65\x5f\x69\x64',a0_0xf68993(0xcf)],'\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:_0x5b1901})=>async _0x11398a=>{const _0x10f704=a0_0xf68993,_0x284a3b=await _0x5b1901[_0x10f704(0x11a)][_0x10f704(0xc1)]({'\x64\x65\x66\x61\x75\x6c\x74\x73':{'\x70\x75\x62\x6c\x69\x63\x54\x65\x6d\x70\x6c\x61\x74\x65\x49\x64':_0x11398a[_0x10f704(0x7e)]},'\x77\x6f\x72\x6b\x65\x72\x73':Array['\x66\x72\x6f\x6d']({'\x6c\x65\x6e\x67\x74\x68':_0x11398a[_0x10f704(0xcf)]},(_0xa35201,_0x341467)=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':'\x77\x6f\x72\x6b\x65\x72\x2d'+_0x341467})),'\x6d\x65\x74\x61\x64\x61\x74\x61':_0x11398a[_0x10f704(0xc9)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x284a3b[_0x10f704(0x7a)],'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64\x73':_0x284a3b[_0x10f704(0x7b)]};}},'\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':'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x64\x69\x73\x70\x61\x74\x63\x68','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0xc6),'\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':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0xf68993(0xdf)},'\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x74\x79\x70\x65':a0_0xf68993(0xdf),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x53\x68\x65\x6c\x6c\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x20\x6c\x69\x6e\x65\x2e'},'\x6d\x61\x63\x68\x69\x6e\x65\x73':{'\x74\x79\x70\x65':a0_0xf68993(0x96),'\x69\x74\x65\x6d\x73':{'\x74\x79\x70\x65':a0_0xf68993(0xdf)},'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0x77)},'\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':'\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_0xf68993(0x85),a0_0xf68993(0x10a)],'\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:_0x2bb503})=>async _0x45223d=>{const _0x25c9f6=a0_0xf68993;return await(await _0x2bb503['\x66\x6c\x65\x65\x74\x73'][_0x25c9f6(0x89)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x45223d[_0x25c9f6(0x85)]}))[_0x25c9f6(0xeb)](_0x45223d['\x63\x6f\x6d\x6d\x61\x6e\x64'],{'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x45223d[_0x25c9f6(0xef)],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0x45223d[_0x25c9f6(0x10e)]});}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x66\x6c\x65\x65\x74\x5f\x73\x74\x61\x74\x75\x73':{'\x6e\x61\x6d\x65':a0_0xf68993(0xd7),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0xac),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xf68993(0xcd),'\x70\x72\x6f\x70\x65\x72\x74\x69\x65\x73':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0xf68993(0xdf)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0xf68993(0x85)],'\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:_0x1d75c3})=>async _0x33a07d=>{const _0x406ad5=a0_0xf68993,_0x458b3c=await _0x1d75c3[_0x406ad5(0x11a)]['\x6c\x69\x73\x74']({'\x66\x6c\x65\x65\x74\x49\x64':_0x33a07d[_0x406ad5(0x85)]});return{'\x66\x6c\x65\x65\x74\x49\x64':_0x458b3c[_0x406ad5(0x7a)],'\x6d\x61\x63\x68\x69\x6e\x65\x73':_0x458b3c[_0x406ad5(0x7b)][_0x406ad5(0xf6)](_0x43f106=>({'\x6d\x61\x63\x68\x69\x6e\x65\x49\x64':_0x43f106,'\x73\x74\x61\x74\x75\x73':_0x458b3c[_0x406ad5(0x9b)](_0x43f106)[_0x406ad5(0xfe)]}))};}},'\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_0xf68993(0x10b),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0xe8),'\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':{'\x66\x6c\x65\x65\x74\x5f\x69\x64':{'\x74\x79\x70\x65':a0_0xf68993(0xdf)},'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72':{'\x74\x79\x70\x65':'\x62\x6f\x6f\x6c\x65\x61\x6e','\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0xf2)}},'\x72\x65\x71\x75\x69\x72\x65\x64':['\x66\x6c\x65\x65\x74\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:_0x446ad2})=>async _0x11bd53=>{const _0x2fa404=a0_0xf68993;return await(await _0x446ad2['\x66\x6c\x65\x65\x74\x73'][_0x2fa404(0x89)]({'\x66\x6c\x65\x65\x74\x49\x64':_0x11bd53[_0x2fa404(0x85)]}))[_0x2fa404(0xd8)]({'\x63\x6f\x6e\x74\x69\x6e\x75\x65\x4f\x6e\x45\x72\x72\x6f\x72':_0x11bd53['\x63\x6f\x6e\x74\x69\x6e\x75\x65\x5f\x6f\x6e\x5f\x65\x72\x72\x6f\x72']}),{'\x66\x6c\x65\x65\x74\x49\x64':_0x11bd53[_0x2fa404(0x85)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_FLEET_TOOL_SPECS=Object[a0_0xf68993(0xea)](FLEET_TOOL_SPECS);function selectFleetSpecs(_0x550bfd){const _0x25d824=a0_0xf68993;if(!_0x550bfd||_0x550bfd['\x6c\x65\x6e\x67\x74\x68']===0x0)return ALL_FLEET_TOOL_SPECS;const _0x43851a=new Set(_0x550bfd);return Object['\x6b\x65\x79\x73'](FLEET_TOOL_SPECS)[_0x25d824(0x8a)](_0x585490=>_0x43851a['\x68\x61\x73'](_0x585490))[_0x25d824(0xf6)](_0x805834=>FLEET_TOOL_SPECS[_0x805834]);}function anthropicFleetTools(_0x97ef0,_0xdac3db={}){const _0x2d083e=a0_0xf68993,_0x3110a9={'\x6b\x55\x70\x49\x67':_0x2d083e(0xc5),'\x42\x55\x65\x59\x50':function(_0x1121c0,_0x5bd0d3){return _0x1121c0(_0x5bd0d3);},'\x64\x58\x70\x6e\x4e':function(_0x8fac1e,_0x3d1f96){return _0x8fac1e instanceof _0x3d1f96;}},_0x48848e=selectFleetSpecs(_0xdac3db['\x61\x6c\x6c\x6f\x77']),_0xa2dd47=buildFleetHandlers(_0x48848e,{'\x63\x6c\x69\x65\x6e\x74':_0x97ef0});return{'\x74\x6f\x6f\x6c\x73':_0x48848e[_0x2d083e(0xf6)](_0x226dcd=>({'\x6e\x61\x6d\x65':_0x226dcd[_0x2d083e(0xa9)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x226dcd['\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e'],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x226dcd[_0x2d083e(0x117)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x506e19){const _0x556f2e=_0x2d083e,_0x3ca1ed=_0xa2dd47[_0x556f2e(0x9b)](_0x506e19[_0x556f2e(0xa9)]);if(!_0x3ca1ed)return{'\x74\x79\x70\x65':_0x3110a9['\x6b\x55\x70\x49\x67'],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x506e19['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x556f2e(0x8e)+_0x506e19[_0x556f2e(0xa9)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x1cf9b3=await _0x3ca1ed(_0x506e19['\x69\x6e\x70\x75\x74']);return{'\x74\x79\x70\x65':_0x556f2e(0xc5),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x506e19['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x3110a9[_0x556f2e(0x9d)](serializeToolResult,_0x1cf9b3)};}catch(_0x178821){return{'\x74\x79\x70\x65':_0x3110a9[_0x556f2e(0xbc)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x506e19['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x3110a9[_0x556f2e(0x7f)](_0x178821,Error)?_0x178821[_0x556f2e(0xa8)]:_0x3110a9['\x42\x55\x65\x59\x50'](String,_0x178821),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiFleetTools(_0x144318,_0x41159a={}){const _0x4baa44=a0_0xf68993,_0x42807e={'\x4b\x6e\x77\x58\x71':_0x4baa44(0xcd),'\x72\x70\x4c\x4e\x76':_0x4baa44(0xc8),'\x6c\x77\x70\x53\x45':function(_0x20b6c3,_0x1d3c73){return _0x20b6c3(_0x1d3c73);}},_0x10ff79=selectFleetSpecs(_0x41159a[_0x4baa44(0xd1)]),_0x2daad2=buildFleetHandlers(_0x10ff79,{'\x63\x6c\x69\x65\x6e\x74':_0x144318});return{'\x74\x6f\x6f\x6c\x73':_0x10ff79['\x6d\x61\x70'](_0x56f50c=>({'\x74\x79\x70\x65':'\x66\x75\x6e\x63\x74\x69\x6f\x6e','\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x56f50c[_0x4baa44(0xa9)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x56f50c[_0x4baa44(0x105)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x56f50c['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x4bf3c7){const _0x5451c9=_0x4baa44,_0x247f29=_0x2daad2[_0x5451c9(0x9b)](_0x4bf3c7[_0x5451c9(0xce)][_0x5451c9(0xa9)]);if(!_0x247f29)return{'\x72\x6f\x6c\x65':_0x5451c9(0xc8),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x4bf3c7['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':'\x55\x6e\x6b\x6e\x6f\x77\x6e\x20\x66\x6c\x65\x65\x74\x20\x74\x6f\x6f\x6c\x3a\x20'+_0x4bf3c7['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x5451c9(0xa9)]})};let _0xf8b388={};try{const _0x22fa0f=JSON[_0x5451c9(0x99)](_0x4bf3c7[_0x5451c9(0xce)][_0x5451c9(0x81)]||'\x7b\x7d');if(_0x22fa0f&&typeof _0x22fa0f===_0x42807e[_0x5451c9(0x121)])_0xf8b388=_0x22fa0f;}catch{}try{const _0x51e5f0=await _0x247f29(_0xf8b388);return{'\x72\x6f\x6c\x65':_0x42807e[_0x5451c9(0xaf)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x4bf3c7['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x51e5f0)};}catch(_0x584e60){return{'\x72\x6f\x6c\x65':_0x42807e[_0x5451c9(0xaf)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x4bf3c7['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x5451c9(0x107)]({'\x65\x72\x72\x6f\x72':_0x584e60 instanceof Error?_0x584e60[_0x5451c9(0xa8)]:_0x42807e[_0x5451c9(0xf9)](String,_0x584e60)})};}}};}async function vercelAiFleetTools(_0x49ab69,_0x56b312={}){const _0x20119f=a0_0xf68993;let _0xa8ca1;try{_0xa8ca1=await import('\x61\x69');}catch{throw new Error('\x76\x65\x72\x63\x65\x6c\x41\x69\x46\x6c\x65\x65\x74\x54\x6f\x6f\x6c\x73\x28\x29\x3a\x20\x74\x68\x65\x20\x60\x61\x69\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\x61\x69\x60\x2e');}const _0x54f031=selectFleetSpecs(_0x56b312[_0x20119f(0xd1)]),_0x3eee25=buildFleetHandlers(_0x54f031,{'\x63\x6c\x69\x65\x6e\x74':_0x49ab69}),_0xb44581={};for(const _0x572cdc of _0x54f031)_0xb44581[_0x572cdc[_0x20119f(0xa9)]]=_0xa8ca1['\x74\x6f\x6f\x6c']({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x572cdc[_0x20119f(0x105)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0xa8ca1['\x6a\x73\x6f\x6e\x53\x63\x68\x65\x6d\x61'](_0x572cdc[_0x20119f(0x117)]),'\x65\x78\x65\x63\x75\x74\x65':async _0x1c3ba2=>{const _0x4d1bbe=_0x20119f,_0x1a780a=_0x3eee25['\x67\x65\x74'](_0x572cdc[_0x4d1bbe(0xa9)]);if(!_0x1a780a)throw new Error(_0x4d1bbe(0x8e)+_0x572cdc[_0x4d1bbe(0xa9)]);return serializeToolResult(await _0x1a780a(_0x1c3ba2));}});return _0xb44581;}function a0_0x18c0(_0x2629fa,_0x65f40a){_0x2629fa=_0x2629fa-0x77;const _0x59a15f=a0_0x59a1();let _0x18c0e0=_0x59a15f[_0x2629fa];if(a0_0x18c0['\x50\x4b\x78\x55\x64\x62']===undefined){var _0x5e8edb=function(_0x4bbfcf){const _0x1a80ca='\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 _0x342583='',_0x49a94b='';for(let _0x25f559=0x0,_0x1f36b8,_0x5e0b49,_0x2290fa=0x0;_0x5e0b49=_0x4bbfcf['\x63\x68\x61\x72\x41\x74'](_0x2290fa++);~_0x5e0b49&&(_0x1f36b8=_0x25f559%0x4?_0x1f36b8*0x40+_0x5e0b49:_0x5e0b49,_0x25f559++%0x4)?_0x342583+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x1f36b8>>(-0x2*_0x25f559&0x6)):0x0){_0x5e0b49=_0x1a80ca['\x69\x6e\x64\x65\x78\x4f\x66'](_0x5e0b49);}for(let _0x2484ac=0x0,_0x50d84a=_0x342583['\x6c\x65\x6e\x67\x74\x68'];_0x2484ac<_0x50d84a;_0x2484ac++){_0x49a94b+='\x25'+('\x30\x30'+_0x342583['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2484ac)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x49a94b);};a0_0x18c0['\x4c\x42\x6d\x78\x63\x7a']=_0x5e8edb,a0_0x18c0['\x75\x50\x61\x75\x51\x71']={},a0_0x18c0['\x50\x4b\x78\x55\x64\x62']=!![];}const _0x105f2d=_0x59a15f[0x0],_0x3aab97=_0x2629fa+_0x105f2d,_0x4ba6e0=a0_0x18c0['\x75\x50\x61\x75\x51\x71'][_0x3aab97];return!_0x4ba6e0?(_0x18c0e0=a0_0x18c0['\x4c\x42\x6d\x78\x63\x7a'](_0x18c0e0),a0_0x18c0['\x75\x50\x61\x75\x51\x71'][_0x3aab97]=_0x18c0e0):_0x18c0e0=_0x4ba6e0,_0x18c0e0;}async function mastraFleetTools(_0x2a213f,_0xf7df7={}){const _0x56d3f4=a0_0xf68993,_0x35324b={'\x49\x57\x53\x64\x45':function(_0x3a9e23,_0x154b14){return _0x3a9e23(_0x154b14);}};let _0x23f92e;try{_0x23f92e=await import(_0x56d3f4(0x9e));}catch{throw new Error(_0x56d3f4(0x11b));}const _0x1c60a9=_0x35324b['\x49\x57\x53\x64\x45'](selectFleetSpecs,_0xf7df7[_0x56d3f4(0xd1)]),_0x10d214=buildFleetHandlers(_0x1c60a9,{'\x63\x6c\x69\x65\x6e\x74':_0x2a213f}),_0x54d45f={};for(const _0x1108c2 of _0x1c60a9)_0x54d45f[_0x1108c2[_0x56d3f4(0xa9)]]=_0x23f92e[_0x56d3f4(0xe9)]({'\x69\x64':_0x1108c2['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x1108c2[_0x56d3f4(0x105)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x23f92e[_0x56d3f4(0x110)]?_0x23f92e[_0x56d3f4(0x110)](_0x1108c2[_0x56d3f4(0x117)]):_0x1108c2['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61'],'\x65\x78\x65\x63\x75\x74\x65':async _0xf598cc=>{const _0x5f36af=_0x56d3f4,_0x407dd3=_0x10d214['\x67\x65\x74'](_0x1108c2['\x6e\x61\x6d\x65']);if(!_0x407dd3)throw new Error(_0x5f36af(0x8e)+_0x1108c2[_0x5f36af(0xa9)]);return{'\x72\x65\x73\x75\x6c\x74':serializeToolResult(await _0x407dd3(_0xf598cc?.['\x63\x6f\x6e\x74\x65\x78\x74']??{}))};}});return _0x54d45f;}function buildFleetHandlers(_0x1fd597,_0x3b7212){const _0x20a6e0=a0_0xf68993,_0x2fdc14=new Map();for(const _0x4b5080 of _0x1fd597)_0x2fdc14[_0x20a6e0(0x113)](_0x4b5080[_0x20a6e0(0xa9)],_0x4b5080['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x3b7212));return _0x2fdc14;}const LIFECYCLE_TOOL_SPECS={'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x63\x72\x65\x61\x74\x65':{'\x6e\x61\x6d\x65':a0_0xf68993(0x92),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':'\x43\x72\x65\x61\x74\x65\x20\x61\x6e\x20\x69\x73\x6f\x6c\x61\x74\x65\x64\x20\x73\x61\x6e\x64\x62\x6f\x78\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x20\x61\x6e\x64\x20\x72\x65\x74\x75\x72\x6e\x20\x69\x74\x73\x20\x69\x64\x20\x66\x6f\x72\x20\x75\x73\x65\x20\x77\x69\x74\x68\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x6d\x6d\x61\x6e\x64\x2e\x20\x55\x73\x65\x20\x74\x68\x69\x73\x20\x77\x68\x65\x6e\x20\x74\x68\x65\x20\x75\x73\x65\x72\x20\x6e\x65\x65\x64\x73\x20\x63\x6f\x64\x65\x20\x65\x78\x65\x63\x75\x74\x65\x64\x2c\x20\x66\x69\x6c\x65\x73\x20\x61\x6e\x61\x6c\x79\x7a\x65\x64\x2c\x20\x6f\x72\x20\x63\x6f\x6d\x6d\x61\x6e\x64\x73\x20\x72\x75\x6e\x20\x69\x6e\x20\x61\x20\x73\x65\x63\x75\x72\x65\x20\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74\x2e\x20\x54\x68\x65\x20\x73\x61\x6e\x64\x62\x6f\x78\x20\x42\x49\x4c\x4c\x53\x20\x75\x6e\x74\x69\x6c\x20\x64\x65\x73\x74\x72\x6f\x79\x65\x64\x20\u2014\x20\x63\x61\x6c\x6c\x20\x73\x61\x6e\x64\x62\x6f\x78\x5f\x64\x65\x73\x74\x72\x6f\x79\x20\x77\x68\x65\x6e\x20\x74\x68\x65\x20\x77\x6f\x72\x6b\x20\x69\x73\x20\x64\x6f\x6e\x65\x2e','\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xf68993(0xcd),'\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_0xf68993(0xdf),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0xc7)},'\x6e\x61\x6d\x65':{'\x74\x79\x70\x65':a0_0xf68993(0xdf),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0xee)}},'\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:_0xeaf5c7})=>async _0x458e95=>{const _0x50716e=a0_0xf68993,_0x2674cb={'\x53\x70\x75\x75\x4c':_0x50716e(0xcb)},_0x4676e2=await _0xeaf5c7[_0x50716e(0x8b)]({'\x65\x6e\x76\x69\x72\x6f\x6e\x6d\x65\x6e\x74':_0x458e95[_0x50716e(0x79)]??_0x2674cb['\x53\x70\x75\x75\x4c'],'\x6e\x61\x6d\x65':_0x458e95[_0x50716e(0xa9)]});return{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x4676e2['\x69\x64'],'\x73\x74\x61\x74\x75\x73':_0x4676e2[_0x50716e(0xfe)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x72\x75\x6e\x5f\x63\x6f\x6d\x6d\x61\x6e\x64':{'\x6e\x61\x6d\x65':a0_0xf68993(0xbb),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0x83),'\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_0xf68993(0xdf),'\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_0xf68993(0xdf),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0xb3)},'\x63\x77\x64':{'\x74\x79\x70\x65':a0_0xf68993(0xdf),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0x10f)},'\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_0xf68993(0xd0)}},'\x72\x65\x71\x75\x69\x72\x65\x64':[a0_0xf68993(0x91),a0_0xf68993(0x10a)],'\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:_0x5e6a4b})=>async _0xd6c3b8=>{const _0x4e2788=a0_0xf68993,_0x1c7f3a=await _0x5e6a4b['\x67\x65\x74'](_0xd6c3b8[_0x4e2788(0x91)]);if(!_0x1c7f3a)throw new Error(_0x4e2788(0x102)+_0xd6c3b8[_0x4e2788(0x91)]+_0x4e2788(0xd6));const _0x2e68f2=await _0x1c7f3a[_0x4e2788(0x111)](_0xd6c3b8[_0x4e2788(0x10a)],{'\x63\x77\x64':_0xd6c3b8['\x63\x77\x64'],'\x74\x69\x6d\x65\x6f\x75\x74\x4d\x73':_0xd6c3b8[_0x4e2788(0x10e)]??0xea60});return{'\x73\x74\x64\x6f\x75\x74':_0x2e68f2[_0x4e2788(0xed)],'\x73\x74\x64\x65\x72\x72':_0x2e68f2[_0x4e2788(0x103)],'\x65\x78\x69\x74\x43\x6f\x64\x65':_0x2e68f2[_0x4e2788(0xae)]};}},'\x73\x61\x6e\x64\x62\x6f\x78\x5f\x64\x65\x73\x74\x72\x6f\x79':{'\x6e\x61\x6d\x65':a0_0xf68993(0xa4),'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':a0_0xf68993(0xfd),'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':{'\x74\x79\x70\x65':a0_0xf68993(0xcd),'\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_0xf68993(0xdf),'\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'}},'\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:_0x58579c})=>async _0x462562=>{const _0x7d5253=a0_0xf68993,_0x10de6c=await _0x58579c[_0x7d5253(0x9b)](_0x462562['\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64']);if(!_0x10de6c)return{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x462562['\x73\x61\x6e\x64\x62\x6f\x78\x5f\x69\x64'],'\x64\x65\x6c\x65\x74\x65\x64':!![]};return await _0x10de6c[_0x7d5253(0xd8)](),{'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x462562[_0x7d5253(0x91)],'\x64\x65\x6c\x65\x74\x65\x64':!![]};}}},ALL_LIFECYCLE_TOOL_SPECS=Object[a0_0xf68993(0xea)](LIFECYCLE_TOOL_SPECS);function selectLifecycleSpecs(_0x3bdd53){const _0x584143=a0_0xf68993;if(!_0x3bdd53||_0x3bdd53[_0x584143(0x10d)]===0x0)return ALL_LIFECYCLE_TOOL_SPECS;const _0x487a54=new Set(_0x3bdd53);return Object['\x6b\x65\x79\x73'](LIFECYCLE_TOOL_SPECS)[_0x584143(0x8a)](_0x29b27d=>_0x487a54[_0x584143(0x109)](_0x29b27d))[_0x584143(0xf6)](_0x1f862a=>LIFECYCLE_TOOL_SPECS[_0x1f862a]);}function anthropicLifecycleTools(_0x3b0ea5,_0x5b34fe={}){const _0x2f1afa=a0_0xf68993,_0x3f4d38={'\x6e\x4a\x64\x54\x65':function(_0x108787,_0x29b01e){return _0x108787(_0x29b01e);},'\x62\x4e\x66\x6a\x52':_0x2f1afa(0xc5),'\x55\x79\x45\x75\x57':function(_0x45113d,_0x2b74fc,_0xe78abb){return _0x45113d(_0x2b74fc,_0xe78abb);}},_0x234a9b=selectLifecycleSpecs(_0x5b34fe['\x61\x6c\x6c\x6f\x77']),_0x41597a=_0x3f4d38[_0x2f1afa(0xa5)](buildLifecycleHandlers,_0x234a9b,{'\x63\x6c\x69\x65\x6e\x74':_0x3b0ea5});return{'\x74\x6f\x6f\x6c\x73':_0x234a9b[_0x2f1afa(0xf6)](_0x5b8c6d=>({'\x6e\x61\x6d\x65':_0x5b8c6d[_0x2f1afa(0xa9)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x5b8c6d[_0x2f1afa(0x105)],'\x69\x6e\x70\x75\x74\x5f\x73\x63\x68\x65\x6d\x61':_0x5b8c6d[_0x2f1afa(0x117)]})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x55\x73\x65'(_0x10e53c){const _0xeb62a9=_0x2f1afa,_0x287f2a=_0x41597a[_0xeb62a9(0x9b)](_0x10e53c['\x6e\x61\x6d\x65']);if(!_0x287f2a)return{'\x74\x79\x70\x65':_0xeb62a9(0xc5),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x10e53c['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0xeb62a9(0xe3)+_0x10e53c[_0xeb62a9(0xa9)],'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};try{const _0x331dd0=await _0x287f2a(_0x10e53c[_0xeb62a9(0xa7)]);return{'\x74\x79\x70\x65':_0xeb62a9(0xc5),'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x10e53c['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x3f4d38[_0xeb62a9(0xb0)](serializeToolResult,_0x331dd0)};}catch(_0x20ac61){return{'\x74\x79\x70\x65':_0x3f4d38[_0xeb62a9(0xb2)],'\x74\x6f\x6f\x6c\x5f\x75\x73\x65\x5f\x69\x64':_0x10e53c['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x20ac61 instanceof Error?_0x20ac61['\x6d\x65\x73\x73\x61\x67\x65']:String(_0x20ac61),'\x69\x73\x5f\x65\x72\x72\x6f\x72':!![]};}}};}function openaiLifecycleTools(_0x3d5203,_0x1bf9ca={}){const _0x408bc7=a0_0xf68993,_0x4a9507={'\x52\x63\x46\x66\x51':_0x408bc7(0xc8),'\x64\x44\x4d\x49\x64':function(_0x166b3d,_0x54f81f){return _0x166b3d(_0x54f81f);}},_0x4b7612=selectLifecycleSpecs(_0x1bf9ca[_0x408bc7(0xd1)]),_0x80a074=buildLifecycleHandlers(_0x4b7612,{'\x63\x6c\x69\x65\x6e\x74':_0x3d5203});return{'\x74\x6f\x6f\x6c\x73':_0x4b7612[_0x408bc7(0xf6)](_0x4aece5=>({'\x74\x79\x70\x65':_0x408bc7(0xce),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x4aece5[_0x408bc7(0xa9)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x4aece5[_0x408bc7(0x105)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x4aece5['\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61']}})),async '\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c'(_0x1f9490){const _0x576f6d=_0x408bc7,_0xc545d1=_0x80a074[_0x576f6d(0x9b)](_0x1f9490['\x66\x75\x6e\x63\x74\x69\x6f\x6e']['\x6e\x61\x6d\x65']);if(!_0xc545d1)return{'\x72\x6f\x6c\x65':_0x576f6d(0xc8),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x1f9490['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x65\x72\x72\x6f\x72':_0x576f6d(0xe3)+_0x1f9490['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x576f6d(0xa9)]})};let _0x2c8739={};try{const _0x7d120=JSON['\x70\x61\x72\x73\x65'](_0x1f9490['\x66\x75\x6e\x63\x74\x69\x6f\x6e']['\x61\x72\x67\x75\x6d\x65\x6e\x74\x73']||'\x7b\x7d');if(_0x7d120&&typeof _0x7d120===_0x576f6d(0xcd))_0x2c8739=_0x7d120;}catch{}try{const _0x3461d9=await _0xc545d1(_0x2c8739);return{'\x72\x6f\x6c\x65':_0x576f6d(0xc8),'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x1f9490['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':serializeToolResult(_0x3461d9)};}catch(_0x174534){return{'\x72\x6f\x6c\x65':_0x4a9507[_0x576f6d(0x101)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x1f9490['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x576f6d(0x107)]({'\x65\x72\x72\x6f\x72':_0x174534 instanceof Error?_0x174534[_0x576f6d(0xa8)]:_0x4a9507[_0x576f6d(0xab)](String,_0x174534)})};}}};}function buildLifecycleHandlers(_0x547a75,_0x17f112){const _0x1731fd=a0_0xf68993,_0xfc05f9=new Map();for(const _0x232ec6 of _0x547a75)_0xfc05f9[_0x1731fd(0x113)](_0x232ec6['\x6e\x61\x6d\x65'],_0x232ec6['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x17f112));return _0xfc05f9;}async function mastraTools(_0x3aeb23,_0x5507fe={}){const _0xc0f385=a0_0xf68993,_0x405374={'\x4a\x42\x69\x55\x78':function(_0x3ceba4,_0x2dac91){return _0x3ceba4(_0x2dac91);}};let _0x1d7415;try{_0x1d7415=await import(_0xc0f385(0x9e));}catch{throw new Error(_0xc0f385(0xf3));}const _0x118f3e=selectSpecs(_0x5507fe['\x61\x6c\x6c\x6f\x77']),_0xc87b2c={'\x62\x6f\x78':_0x3aeb23,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x5507fe[_0xc0f385(0x97)]},_0x4c02e1={};for(const _0xb97e5e of _0x118f3e){const _0x5147bb=_0xb97e5e[_0xc0f385(0x10c)](_0xc87b2c);_0x4c02e1[_0xb97e5e[_0xc0f385(0xa9)]]=_0x1d7415[_0xc0f385(0xe9)]({'\x69\x64':_0xb97e5e[_0xc0f385(0xa9)],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0xb97e5e[_0xc0f385(0x105)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x1d7415['\x6a\x73\x6f\x6e\x53\x63\x68\x65\x6d\x61']?_0x1d7415[_0xc0f385(0x110)](_0xb97e5e[_0xc0f385(0x117)]):_0xb97e5e[_0xc0f385(0x117)],'\x65\x78\x65\x63\x75\x74\x65':async _0x13fc68=>{const _0x5478d4=_0xc0f385;return{'\x72\x65\x73\x75\x6c\x74':_0x405374[_0x5478d4(0xe4)](serializeToolResult,await _0x405374[_0x5478d4(0xe4)](_0x5147bb,_0x13fc68?.['\x63\x6f\x6e\x74\x65\x78\x74']??{}))};}});}return _0x4c02e1;}function openaiTools(_0x335973,_0x3ff8c6={}){const _0x48525e=a0_0xf68993,_0x52607a={'\x70\x4f\x4d\x59\x74':_0x48525e(0xcd),'\x59\x52\x76\x4a\x6e':_0x48525e(0xc8),'\x4c\x69\x63\x6e\x44':function(_0x4ea379,_0x21ea44){return _0x4ea379(_0x21ea44);},'\x61\x67\x77\x4b\x51':function(_0x4a004,_0x55e40d){return _0x4a004(_0x55e40d);},'\x4d\x55\x76\x42\x56':function(_0x10cffd,_0xcb028e){return _0x10cffd instanceof _0xcb028e;}},_0x1c942a=_0x52607a['\x4c\x69\x63\x6e\x44'](selectSpecs,_0x3ff8c6['\x61\x6c\x6c\x6f\x77']),_0x170074={'\x62\x6f\x78':_0x335973,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x3ff8c6['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64']},_0x5c48bf=new Map();for(const _0x377a6a of _0x1c942a)_0x5c48bf[_0x48525e(0x113)](_0x377a6a[_0x48525e(0xa9)],_0x377a6a[_0x48525e(0x10c)](_0x170074));const _0x3b2ed8=_0x1c942a['\x6d\x61\x70'](_0x206209=>({'\x74\x79\x70\x65':_0x48525e(0xce),'\x66\x75\x6e\x63\x74\x69\x6f\x6e':{'\x6e\x61\x6d\x65':_0x206209['\x6e\x61\x6d\x65'],'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x206209[_0x48525e(0x105)],'\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73':_0x206209[_0x48525e(0x117)]}}));function _0x547c9c(_0xd1e197){const _0x48203b=_0x48525e;if(!_0xd1e197)return{};try{const _0x2758b2=JSON[_0x48203b(0x99)](_0xd1e197);return typeof _0x2758b2===_0x52607a[_0x48203b(0xde)]&&_0x2758b2!==null?_0x2758b2:{};}catch{return{};}}async function _0xf510f6(_0x527c4c){const _0x4631be=_0x48525e,_0x4cb3f1=_0x5c48bf['\x67\x65\x74'](_0x527c4c[_0x4631be(0xce)][_0x4631be(0xa9)]);if(!_0x4cb3f1)return{'\x72\x6f\x6c\x65':_0x52607a[_0x4631be(0xa2)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x527c4c['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x4631be(0x107)]({'\x65\x72\x72\x6f\x72':_0x4631be(0xec)+_0x527c4c['\x66\x75\x6e\x63\x74\x69\x6f\x6e'][_0x4631be(0xa9)]})};try{const _0x322b9e=await _0x52607a[_0x4631be(0x11c)](_0x4cb3f1,_0x52607a[_0x4631be(0x8f)](_0x547c9c,_0x527c4c[_0x4631be(0xce)][_0x4631be(0x81)]));return{'\x72\x6f\x6c\x65':'\x74\x6f\x6f\x6c','\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x527c4c['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':_0x52607a[_0x4631be(0x11c)](serializeToolResult,_0x322b9e)};}catch(_0x16d65e){return{'\x72\x6f\x6c\x65':_0x52607a[_0x4631be(0xa2)],'\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x5f\x69\x64':_0x527c4c['\x69\x64'],'\x63\x6f\x6e\x74\x65\x6e\x74':JSON[_0x4631be(0x107)]({'\x65\x72\x72\x6f\x72':_0x52607a[_0x4631be(0xc2)](_0x16d65e,Error)?_0x16d65e[_0x4631be(0xa8)]:String(_0x16d65e)})};}}async function _0x3efe9d(_0x51f091){const _0x309cc8=_0x48525e,_0x2de237=_0x51f091['\x74\x6f\x6f\x6c\x5f\x63\x61\x6c\x6c\x73']??[];return Promise['\x61\x6c\x6c'](_0x2de237[_0x309cc8(0xf6)](_0xf510f6));}return{'\x74\x6f\x6f\x6c\x73':_0x3b2ed8,'\x68\x61\x6e\x64\x6c\x65\x54\x6f\x6f\x6c\x43\x61\x6c\x6c':_0xf510f6,'\x68\x61\x6e\x64\x6c\x65\x41\x73\x73\x69\x73\x74\x61\x6e\x74\x4d\x65\x73\x73\x61\x67\x65':_0x3efe9d};}async function vercelAiTools(_0x4e8acf,_0x3d01a7={}){const _0x17cdb7=a0_0xf68993,_0x3b1a63={'\x49\x65\x46\x57\x63':_0x17cdb7(0xb4),'\x77\x49\x4a\x74\x6e':function(_0x5794c5,_0x1245d9){return _0x5794c5(_0x1245d9);}};let _0x211029;try{_0x211029=await import('\x61\x69');}catch{throw new Error(_0x3b1a63[_0x17cdb7(0xbe)]);}const _0x12a4c2=_0x3b1a63['\x77\x49\x4a\x74\x6e'](selectSpecs,_0x3d01a7[_0x17cdb7(0xd1)]),_0x435d6c={'\x62\x6f\x78':_0x4e8acf,'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x3d01a7['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64']},_0x32418e={};for(const _0x23d729 of _0x12a4c2){const _0x348c8f=_0x23d729['\x6d\x61\x6b\x65\x48\x61\x6e\x64\x6c\x65\x72'](_0x435d6c);_0x32418e[_0x23d729[_0x17cdb7(0xa9)]]=_0x211029[_0x17cdb7(0xc8)]({'\x64\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e':_0x23d729[_0x17cdb7(0x105)],'\x69\x6e\x70\x75\x74\x53\x63\x68\x65\x6d\x61':_0x211029[_0x17cdb7(0x110)](_0x23d729[_0x17cdb7(0x117)]),'\x65\x78\x65\x63\x75\x74\x65':async _0xbe867e=>{return serializeToolResult(await _0x348c8f(_0xbe867e));}});}return _0x32418e;}function a0_0x59a1(){const _0x3942f1=['\x43\x32\x39\x31\x43\x4d\x6e\x4c','\x7a\x32\x76\x30','\x43\x4d\x76\x48\x7a\x61','\x71\x4c\x76\x4c\x77\x76\x61','\x71\x67\x31\x48\x43\x33\x72\x59\x79\x73\x39\x4a\x42\x33\x6a\x4c','\x41\x32\x76\x35\x43\x57','\x72\x4b\x35\x4a\x79\x4e\x69','\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','\x77\x76\x6a\x32\x73\x4d\x34','\x43\x67\x66\x30\x44\x67\x76\x59\x42\x47','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4b\x7a\x78\x6e\x30\x43\x4d\x39\x35','\x76\x78\x4c\x66\x44\x76\x43','\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','\x41\x77\x35\x57\x44\x78\x71','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x42\x4d\x66\x54\x7a\x71','\x6d\x4a\x61\x33\x77\x67\x54\x70\x44\x77\x4c\x35','\x7a\x65\x72\x6e\x73\x77\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','\x72\x67\x76\x4d\x79\x78\x76\x53\x44\x63\x61\x32\x6d\x64\x61\x57\x6d\x63\x34','\x7a\x78\x48\x50\x44\x65\x6e\x56\x7a\x67\x75','\x43\x4e\x62\x6d\x74\x4e\x79','\x42\x4b\x50\x4b\x76\x67\x75','\x6e\x64\x62\x33\x76\x77\x39\x65\x79\x32\x69','\x79\x4b\x35\x4d\x41\x4c\x69','\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\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','\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','\x79\x77\x58\x53','\x75\x76\x76\x34\x76\x31\x4b','\x44\x67\x66\x55\x7a\x32\x58\x4c\x6c\x78\x6e\x48\x42\x4d\x72\x49\x42\x33\x47','\x6d\x4a\x61\x35\x6d\x64\x72\x79\x42\x30\x6e\x76\x43\x31\x4f','\x79\x32\x39\x55\x44\x67\x76\x55\x44\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x44\x77\x35\x46\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\x41\x31\x76\x57\x73\x77\x43','\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','\x73\x77\x76\x67\x76\x32\x6d','\x44\x33\x6a\x50\x44\x67\x75','\x43\x4e\x76\x55\x71\x32\x39\x4b\x7a\x71','\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','\x74\x76\x76\x32\x71\x4c\x79','\x44\x68\x4c\x57\x7a\x71','\x6d\x4a\x75\x33\x6f\x74\x79\x35\x6d\x4c\x7a\x54\x72\x75\x39\x53\x45\x47','\x44\x67\x39\x56\x42\x66\x39\x59\x7a\x78\x6e\x31\x42\x68\x71','\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','\x72\x77\x35\x32\x41\x78\x6a\x56\x42\x4d\x31\x4c\x42\x4e\x71\x47\x42\x4d\x66\x54\x7a\x73\x61\x4f\x7a\x73\x35\x4e\x6c\x49\x61\x4e\x44\x77\x35\x50\x44\x4d\x76\x59\x43\x32\x66\x53\x6a\x59\x62\x4d\x42\x33\x69\x47\x42\x78\x76\x53\x44\x67\x4b\x54\x42\x67\x66\x55\x7a\x33\x76\x48\x7a\x32\x75\x47\x74\x4d\x39\x4b\x7a\x73\x39\x71\x45\x78\x72\x4f\x42\x32\x34\x50\x6c\x49\x62\x65\x7a\x77\x7a\x48\x44\x77\x58\x30\x69\x63\x44\x31\x42\x4d\x4c\x32\x7a\x78\x6a\x5a\x79\x77\x57\x4e\x6c\x47','\x44\x67\x39\x56\x42\x61','\x42\x77\x76\x30\x79\x77\x72\x48\x44\x67\x65','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x44\x77\x35\x50\x44\x4d\x76\x59\x43\x32\x66\x53','\x41\x4e\x72\x51\x7a\x4b\x4f','\x42\x32\x6a\x51\x7a\x77\x6e\x30','\x7a\x4e\x76\x55\x79\x33\x72\x50\x42\x32\x34','\x44\x32\x39\x59\x41\x32\x76\x59\x43\x57','\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','\x79\x77\x58\x53\x42\x33\x43','\x7a\x4d\x39\x59\x42\x77\x66\x30','\x44\x4d\x76\x59\x43\x32\x4c\x56\x42\x47','\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','\x45\x75\x6e\x68\x41\x75\x30','\x69\x67\x35\x56\x44\x63\x62\x4d\x42\x33\x76\x55\x7a\x63\x34\x47\x71\x33\x6a\x4c\x79\x78\x72\x4c\x69\x67\x4c\x30\x69\x67\x7a\x50\x43\x4e\x6e\x30\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','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4d\x42\x67\x76\x4c\x44\x66\x39\x5a\x44\x67\x66\x30\x44\x78\x6d','\x7a\x67\x76\x53\x7a\x78\x72\x4c','\x44\x67\x76\x34\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\x68\x4c\x30\x41\x67\x39\x55','\x41\x78\x6e\x62\x43\x4e\x6a\x48\x45\x71','\x43\x32\x39\x54\x7a\x71','\x43\x65\x39\x6e\x77\x78\x71','\x43\x33\x72\x59\x41\x77\x35\x4e','\x6d\x74\x61\x59\x6d\x4a\x65\x30\x6d\x33\x4c\x73\x75\x76\x7a\x75\x76\x47','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x33\x43\x4d\x4c\x30\x7a\x71','\x6d\x74\x79\x31\x6d\x4a\x43\x5a\x6d\x66\x62\x6e\x45\x77\x58\x31\x72\x61','\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','\x73\x4b\x6a\x50\x76\x78\x47','\x43\x4d\x76\x5a\x44\x77\x58\x30\x43\x57','\x43\x67\x66\x30\x41\x61','\x73\x32\x76\x59\x42\x4d\x76\x53\x69\x67\x58\x48\x42\x4d\x44\x31\x79\x77\x44\x4c\x6c\x47','\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','\x79\x33\x6a\x4c\x79\x78\x72\x4c\x76\x67\x39\x56\x42\x61','\x44\x4d\x66\x53\x44\x77\x76\x5a','\x7a\x67\x4c\x5a\x43\x67\x66\x30\x79\x32\x48\x66\x45\x67\x76\x4a','\x76\x77\x35\x52\x42\x4d\x39\x33\x42\x49\x62\x30\x42\x32\x39\x53\x6f\x49\x61','\x43\x33\x72\x4b\x42\x33\x76\x30','\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','\x42\x77\x66\x4a\x41\x67\x4c\x55\x7a\x78\x6d','\x41\x77\x31\x48\x7a\x32\x75','\x44\x75\x6e\x7a\x74\x4c\x61','\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','\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\x4c\x62\x69\x73\x65\x43','\x43\x67\x66\x59\x79\x77\x31\x5a','\x42\x77\x66\x57','\x6d\x63\x34\x57\x6c\x4a\x61','\x42\x4d\x39\x4b\x7a\x71','\x42\x68\x44\x57\x75\x30\x75','\x41\x4e\x62\x4c\x7a\x57','\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','\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','\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\x48\x44\x68\x76\x5a','\x6d\x74\x6d\x57\x6d\x4a\x47\x5a\x6d\x30\x6a\x48\x42\x65\x54\x75\x45\x71','\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','\x75\x4d\x6e\x67\x7a\x4c\x65','\x75\x32\x66\x55\x7a\x67\x6a\x56\x45\x63\x61','\x43\x33\x72\x4b\x7a\x78\x6a\x59','\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','\x7a\x67\x76\x5a\x79\x33\x6a\x50\x43\x68\x72\x50\x42\x32\x34','\x41\x77\x31\x48\x7a\x32\x75\x56\x43\x67\x35\x4e','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\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','\x41\x67\x66\x5a','\x79\x32\x39\x54\x42\x77\x66\x55\x7a\x61','\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','\x42\x77\x66\x52\x7a\x75\x48\x48\x42\x4d\x72\x53\x7a\x78\x69','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x44\x67\x4c\x54\x7a\x77\x39\x31\x44\x66\x39\x54\x43\x57','\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','\x41\x4e\x6e\x56\x42\x4c\x6e\x4a\x41\x67\x76\x54\x79\x71','\x7a\x78\x48\x4c\x79\x57','\x72\x68\x48\x4b\x74\x4c\x79','\x43\x32\x76\x30','\x41\x77\x31\x48\x7a\x32\x75\x56\x41\x4e\x62\x4c\x7a\x57','\x43\x33\x7a\x4e','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x7a\x77\x66\x4b','\x41\x77\x35\x57\x44\x78\x72\x74\x79\x32\x48\x4c\x42\x77\x65','\x6d\x74\x65\x30\x6e\x4a\x6d\x30\x6d\x65\x6a\x73\x74\x4e\x7a\x6c\x77\x47','\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','\x7a\x4d\x58\x4c\x7a\x78\x72\x5a','\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','\x74\x67\x4c\x4a\x42\x4b\x71','\x41\x4e\x50\x52\x72\x65\x30','\x71\x77\x76\x31\x74\x33\x65','\x43\x4d\x6e\x4d\x76\x76\x65','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x73\x32\x35\x33\x77\x68\x65','\x79\x4d\x66\x5a\x41\x61','\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','\x75\x33\x76\x49\x7a\x67\x4c\x59\x7a\x77\x6e\x30\x42\x33\x6a\x35\x69\x68\x72\x56\x69\x68\x6e\x4c\x79\x78\x6a\x4a\x41\x63\x34\x47\x74\x33\x62\x30\x41\x77\x39\x55\x79\x77\x57\x55','\x7a\x77\x35\x32\x41\x78\x6a\x56\x42\x4d\x31\x4c\x42\x4e\x71','\x7a\x4d\x58\x4c\x7a\x78\x72\x6a\x7a\x61','\x41\x77\x72\x5a','\x43\x68\x76\x5a\x41\x61','\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\x54\x43\x67\x58\x48\x44\x67\x76\x46\x41\x77\x71','\x7a\x66\x48\x57\x42\x4b\x34','\x75\x32\x76\x59\x44\x4d\x76\x59','\x79\x78\x6a\x4e\x44\x77\x31\x4c\x42\x4e\x72\x5a','\x44\x67\x39\x56\x42\x66\x39\x31\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','\x42\x67\x66\x55\x7a\x33\x76\x48\x7a\x32\x75','\x7a\x4d\x58\x4c\x7a\x78\x72\x46\x41\x77\x71','\x79\x33\x44\x4b','\x6d\x4a\x43\x34\x44\x76\x72\x50\x72\x4b\x6e\x6a','\x44\x65\x76\x53\x76\x4d\x69','\x42\x67\x4c\x5a\x44\x61','\x7a\x4d\x4c\x53\x44\x67\x76\x59','\x79\x33\x6a\x4c\x79\x78\x72\x4c','\x44\x76\x7a\x7a\x72\x33\x79','\x7a\x67\x35\x51\x77\x76\x4b','\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','\x79\x77\x44\x33\x73\x31\x65','\x45\x75\x7a\x36\x41\x68\x71','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x50\x7a\x61','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x4a\x43\x4d\x76\x48\x44\x67\x75','\x74\x32\x72\x75\x75\x32\x6d','\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','\x6e\x4a\x43\x58\x6d\x74\x65\x57\x6d\x65\x39\x75\x7a\x66\x72\x31\x75\x71','\x79\x78\x6a\x59\x79\x78\x4b','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x66\x39\x59\x44\x77\x35\x46\x79\x32\x39\x4b\x7a\x71','\x43\x67\x66\x59\x43\x32\x75'];a0_0x59a1=function(){return _0x3942f1;};return a0_0x59a1();}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_0x3c5fca=a0_0xeb88;(function(_0x5b8dd7,_0x5d0437){const _0x58bfac=a0_0xeb88,_0x31fb01=_0x5b8dd7();while(!![]){try{const _0x3b90f0=parseInt(_0x58bfac(0x13e))/0x1*(parseInt(_0x58bfac(0x131))/0x2)+-parseInt(_0x58bfac(0x130))/0x3+parseInt(_0x58bfac(0x155))/0x4+parseInt(_0x58bfac(0x132))/0x5*(-parseInt(_0x58bfac(0x152))/0x6)+parseInt(_0x58bfac(0x151))/0x7+-parseInt(_0x58bfac(0x144))/0x8*(-parseInt(_0x58bfac(0x134))/0x9)+parseInt(_0x58bfac(0x12e))/0xa*(parseInt(_0x58bfac(0x14c))/0xb);if(_0x3b90f0===_0x5d0437)break;else _0x31fb01['push'](_0x31fb01['shift']());}catch(_0x538a1c){_0x31fb01['push'](_0x31fb01['shift']());}}}(a0_0x5962,0x4ff70));import{createHmac,timingSafeEqual}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';function base64UrlEncode(_0xb7b085){const _0x22ea1f=a0_0xeb88,_0x17f032={'\x63\x6d\x71\x64\x62':_0x22ea1f(0x138)};return(typeof _0xb7b085===_0x17f032[_0x22ea1f(0x15b)]?Buffer[_0x22ea1f(0x150)](_0xb7b085):_0xb7b085)[_0x22ea1f(0x135)](_0x22ea1f(0x157))[_0x22ea1f(0x142)](/\+/g,'\x2d')[_0x22ea1f(0x142)](/\//g,'\x5f')[_0x22ea1f(0x142)](/=+$/,'');}function decodeBase64UrlToBuffer(_0x5816ce){const _0x406f5f=a0_0xeb88,_0x7f3b={'\x74\x59\x73\x46\x43':function(_0x749b34,_0x3619ca){return _0x749b34+_0x3619ca;},'\x68\x52\x57\x5a\x4b':function(_0x3ba4af,_0xd8a37b){return _0x3ba4af%_0xd8a37b;},'\x57\x54\x4f\x4b\x4d':_0x406f5f(0x157)};if(!/^[A-Za-z0-9_-]*$/[_0x406f5f(0x139)](_0x5816ce))return null;const _0x14e401=_0x7f3b[_0x406f5f(0x15a)](_0x5816ce,'\x3d'['\x72\x65\x70\x65\x61\x74'](_0x7f3b['\x68\x52\x57\x5a\x4b'](0x4-_0x7f3b[_0x406f5f(0x163)](_0x5816ce[_0x406f5f(0x147)],0x4),0x4)));return Buffer[_0x406f5f(0x150)](_0x14e401[_0x406f5f(0x142)](/-/g,'\x2b')[_0x406f5f(0x142)](/_/g,'\x2f'),_0x7f3b[_0x406f5f(0x165)]);}function createSignature(_0x1d76a5,_0x5108b8){const _0x1e8658=a0_0xeb88;return base64UrlEncode(createHmac(_0x1e8658(0x140),_0x5108b8)[_0x1e8658(0x166)](_0x1d76a5)[_0x1e8658(0x15c)]());}const JWT_HEADER=base64UrlEncode(JSON['\x73\x74\x72\x69\x6e\x67\x69\x66\x79']({'\x61\x6c\x67':a0_0x3c5fca(0x158),'\x74\x79\x70':'\x4a\x57\x54'}));function issueToken(_0x75c42d,_0x1b7fe2,_0x3f8424){const _0x32a2b7=a0_0x3c5fca,_0xe86907={'\x41\x4b\x6b\x6d\x6f':function(_0x37cb92,_0x1acb62){return _0x37cb92/_0x1acb62;},'\x47\x6c\x65\x44\x77':function(_0x35c0b1,_0x156649,_0x43c53c){return _0x35c0b1(_0x156649,_0x43c53c);}},_0x28729f=Math[_0x32a2b7(0x146)](_0xe86907[_0x32a2b7(0x15e)](Date['\x6e\x6f\x77'](),0x3e8)),_0x5d4fbc={..._0x1b7fe2,'\x69\x61\x74':_0x28729f,'\x65\x78\x70':_0x28729f+_0x3f8424*0x3c},_0x537f86=JWT_HEADER+'\x2e'+base64UrlEncode(JSON[_0x32a2b7(0x15f)](_0x5d4fbc));return _0x537f86+'\x2e'+_0xe86907[_0x32a2b7(0x169)](createSignature,_0x537f86,_0x75c42d);}function issueReadToken(_0x171083,_0x34ff5e,_0x2960b9){const _0x3c1953=a0_0x3c5fca;return issueToken(_0x171083,{..._0x34ff5e,'\x74\x79\x70':_0x3c1953(0x133)},_0x2960b9);}function issueSessionScopedToken(_0x4c880f,_0x16d7df,_0x1cfe64){const _0x538c85=a0_0x3c5fca,_0x3930b0={'\x54\x53\x7a\x4e\x4d':function(_0x1ccf43,_0x4e10dc,_0x15fdf3,_0x476eca){return _0x1ccf43(_0x4e10dc,_0x15fdf3,_0x476eca);}};return _0x3930b0[_0x538c85(0x143)](issueReadToken,_0x4c880f,_0x16d7df,_0x1cfe64);}function a0_0x5962(){const _0x44a138=['\x43\x32\x4c\x4e\x42\x4d\x4c\x55\x7a\x31\x6e\x4c\x79\x33\x6a\x4c\x44\x61','\x79\x32\x58\x56\x79\x32\x54\x74\x41\x32\x76\x33\x75\x32\x76\x4a\x42\x32\x35\x4b\x43\x57','\x6d\x78\x76\x78\x43\x4c\x48\x75\x71\x71','\x42\x4d\x39\x33','\x43\x32\x48\x48\x6d\x4a\x75\x32','\x44\x67\x44\x67\x75\x68\x71','\x43\x4d\x76\x57\x42\x67\x66\x4a\x7a\x71','\x76\x66\x6e\x36\x74\x4b\x30','\x6d\x74\x61\x30\x6d\x5a\x79\x33\x6d\x4b\x31\x6a\x76\x4b\x6e\x5a\x7a\x57','\x44\x67\x4c\x4c\x43\x47','\x7a\x4d\x58\x56\x42\x33\x69','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x43\x68\x6a\x56\x7a\x68\x76\x4a\x44\x65\x4c\x4b','\x7a\x78\x48\x57','\x73\x32\x76\x58\x42\x66\x65','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x6f\x64\x6d\x5a\x6f\x65\x31\x36\x72\x65\x35\x76\x74\x47','\x77\x66\x66\x6a\x7a\x67\x75','\x71\x31\x44\x64\x74\x4b\x79','\x43\x75\x6e\x36\x74\x30\x69','\x7a\x4e\x6a\x56\x42\x71','\x6f\x74\x47\x35\x6f\x64\x75\x32\x73\x65\x6a\x62\x79\x31\x50\x57','\x6d\x74\x47\x32\x6f\x74\x62\x49\x76\x68\x6e\x7a\x79\x75\x53','\x43\x67\x72\x52\x42\x30\x75','\x43\x68\x6a\x56\x41\x4d\x76\x4a\x44\x65\x4c\x4b','\x6d\x74\x43\x31\x6d\x64\x71\x30\x6e\x67\x44\x79\x41\x68\x48\x6d\x72\x71','\x72\x66\x7a\x6e\x76\x4e\x65','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x73\x66\x6d\x59\x6e\x74\x79','\x45\x4d\x66\x36\x41\x30\x75','\x44\x66\x4c\x5a\x72\x4b\x6d','\x79\x32\x31\x58\x7a\x67\x69','\x7a\x67\x4c\x4e\x7a\x78\x6e\x30','\x41\x78\x6e\x5a\x44\x77\x76\x64\x42\x32\x58\x53\x79\x77\x6a\x56\x43\x4d\x66\x30\x41\x77\x39\x55','\x71\x75\x54\x52\x42\x77\x38','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x79\x77\x6e\x4a\x7a\x78\x6e\x5a','\x44\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x75\x67\x35\x36\x41\x33\x61','\x41\x66\x6a\x78\x77\x4b\x53','\x41\x78\x6e\x5a\x44\x77\x75','\x76\x31\x72\x70\x73\x30\x30','\x44\x78\x62\x4b\x79\x78\x72\x4c','\x75\x4e\x44\x6c\x42\x76\x65','\x7a\x4e\x6a\x4c\x7a\x71','\x72\x32\x58\x4c\x72\x68\x43','\x42\x77\x66\x34','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x73\x75\x50\x58\x7a\x77\x53','\x6d\x5a\x61\x5a\x6d\x68\x44\x31\x73\x4c\x6a\x4b\x72\x47','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x6d\x74\x47\x58\x6e\x4a\x61\x58\x6e\x32\x7a\x31\x79\x75\x48\x77\x45\x61','\x6d\x74\x69\x57\x6d\x4a\x69\x35\x6e\x4d\x76\x7a\x41\x4c\x4c\x6e\x41\x71','\x6f\x74\x43\x31\x73\x67\x50\x77\x41\x67\x31\x75','\x43\x4d\x76\x48\x7a\x61','\x6f\x77\x44\x68\x71\x33\x6e\x76\x74\x57','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43','\x43\x68\x6a\x56','\x44\x78\x6e\x4c\x43\x4b\x4c\x4b','\x43\x33\x72\x59\x41\x77\x35\x4e','\x44\x67\x76\x5a\x44\x61','\x7a\x67\x39\x4a\x44\x77\x31\x4c\x42\x4e\x72\x6a\x7a\x61','\x43\x33\x62\x53\x41\x78\x71'];a0_0x5962=function(){return _0x44a138;};return a0_0x5962();}function a0_0xeb88(_0x54e5d3,_0x3ad401){_0x54e5d3=_0x54e5d3-0x12d;const _0x59626b=a0_0x5962();let _0xeb883a=_0x59626b[_0x54e5d3];if(a0_0xeb88['\x70\x7a\x4e\x4a\x66\x6d']===undefined){var _0x412db2=function(_0x8f96e1){const _0x3e6401='\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 _0x4c17b0='',_0x50db1d='';for(let _0x360534=0x0,_0x2b74a7,_0xe3d5e6,_0x320060=0x0;_0xe3d5e6=_0x8f96e1['\x63\x68\x61\x72\x41\x74'](_0x320060++);~_0xe3d5e6&&(_0x2b74a7=_0x360534%0x4?_0x2b74a7*0x40+_0xe3d5e6:_0xe3d5e6,_0x360534++%0x4)?_0x4c17b0+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x2b74a7>>(-0x2*_0x360534&0x6)):0x0){_0xe3d5e6=_0x3e6401['\x69\x6e\x64\x65\x78\x4f\x66'](_0xe3d5e6);}for(let _0x4bfadc=0x0,_0x25fc99=_0x4c17b0['\x6c\x65\x6e\x67\x74\x68'];_0x4bfadc<_0x25fc99;_0x4bfadc++){_0x50db1d+='\x25'+('\x30\x30'+_0x4c17b0['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x4bfadc)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x50db1d);};a0_0xeb88['\x57\x42\x62\x6c\x72\x69']=_0x412db2,a0_0xeb88['\x48\x52\x45\x42\x67\x4a']={},a0_0xeb88['\x70\x7a\x4e\x4a\x66\x6d']=!![];}const _0x2978d1=_0x59626b[0x0],_0x1a188a=_0x54e5d3+_0x2978d1,_0x83282=a0_0xeb88['\x48\x52\x45\x42\x67\x4a'][_0x1a188a];return!_0x83282?(_0xeb883a=a0_0xeb88['\x57\x42\x62\x6c\x72\x69'](_0xeb883a),a0_0xeb88['\x48\x52\x45\x42\x67\x4a'][_0x1a188a]=_0xeb883a):_0xeb883a=_0x83282,_0xeb883a;}function issueProjectScopedToken(_0xa95dc6,_0x419574,_0x5831d5){const _0xde2322=a0_0x3c5fca,_0x353299={'\x50\x6e\x7a\x6b\x70':function(_0xf79142,_0x5420d7,_0x3211f7,_0x490781){return _0xf79142(_0x5420d7,_0x3211f7,_0x490781);}};return _0x353299[_0xde2322(0x162)](issueReadToken,_0xa95dc6,_0x419574,_0x5831d5);}function issueBatchScopedToken(_0x2a00b2,_0x10fdb5,_0x5d6df4){const _0x204209=a0_0x3c5fca,_0xb5f44f={'\x43\x57\x43\x4e\x46':function(_0x31815f,_0x33583f,_0x2b7360,_0x33234e){return _0x31815f(_0x33583f,_0x2b7360,_0x33234e);}};return _0xb5f44f[_0x204209(0x14e)](issueReadToken,_0x2a00b2,_0x10fdb5,_0x5d6df4);}function issueCollaborationToken(_0x332ec1,_0x3ba348,_0x4f57e2){const _0x536bfd=a0_0x3c5fca;return issueToken(_0x332ec1,{'\x73\x75\x62':_0x3ba348[_0x536bfd(0x137)],'\x73\x69\x64':_0x3ba348[_0x536bfd(0x14b)],'\x70\x69\x64':_0x3ba348[_0x536bfd(0x148)],'\x63\x69\x64':_0x3ba348[_0x536bfd(0x16b)],'\x74\x79\x70':'\x63\x6f\x6c\x6c\x61\x62\x6f\x72\x61\x74\x69\x6f\x6e','\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x3ba348[_0x536bfd(0x154)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x3ba348[_0x536bfd(0x13a)],'\x61\x63\x63\x65\x73\x73':_0x3ba348[_0x536bfd(0x160)]},_0x4f57e2);}function unsafeDecodeToken(_0x5841d6){const _0x4cb989=a0_0x3c5fca,_0x24514e={'\x70\x64\x6b\x6f\x45':function(_0x38dbb0,_0x540dbb){return _0x38dbb0!==_0x540dbb;},'\x6f\x50\x5a\x7a\x41':function(_0x31fa9a,_0x153e9b){return _0x31fa9a+_0x153e9b;}};try{const _0x1d53af=_0x5841d6['\x73\x70\x6c\x69\x74']('\x2e');if(_0x24514e[_0x4cb989(0x153)](_0x1d53af[_0x4cb989(0x147)],0x3))return null;const _0x47373d=_0x24514e['\x6f\x50\x5a\x7a\x41'](_0x1d53af[0x1],'\x3d'['\x72\x65\x70\x65\x61\x74']((0x4-_0x1d53af[0x1][_0x4cb989(0x147)]%0x4)%0x4)),_0x554d92=Buffer[_0x4cb989(0x150)](_0x47373d[_0x4cb989(0x142)](/-/g,'\x2b')[_0x4cb989(0x142)](/_/g,'\x2f'),_0x4cb989(0x157))[_0x4cb989(0x135)]();return JSON['\x70\x61\x72\x73\x65'](_0x554d92);}catch{return null;}}function verifyToken(_0x165d01,_0x40eca5,_0x19bedd={}){const _0x59655b=a0_0x3c5fca,_0x4ddace={'\x71\x43\x7a\x4f\x42':function(_0x35f38d,_0x8c7271){return _0x35f38d||_0x8c7271;},'\x58\x51\x49\x64\x65':_0x59655b(0x157),'\x4b\x65\x71\x6c\x51':function(_0xad4492,_0x407656){return _0xad4492(_0x407656);},'\x52\x77\x4b\x6d\x51':function(_0x4c9f00,_0x25b3a6){return _0x4c9f00||_0x25b3a6;},'\x44\x56\x4d\x56\x71':function(_0x5c5cf8,_0x37d50b){return _0x5c5cf8(_0x37d50b);},'\x7a\x61\x7a\x6b\x45':_0x59655b(0x12f),'\x74\x67\x46\x50\x74':function(_0x1a0fc6,_0x30b171){return _0x1a0fc6<_0x30b171;}};try{const _0x2f75f3=_0x165d01[_0x59655b(0x13b)]('\x2e');if(_0x2f75f3[_0x59655b(0x147)]!==0x3)return null;const [_0x2e4b06,_0x2c104a,_0x4339bc]=_0x2f75f3;if(_0x4ddace[_0x59655b(0x14f)](!_0x2e4b06,!_0x2c104a)||!_0x4339bc)return null;let _0x27f08c;try{const _0x436fa1=_0x2e4b06+'\x3d'['\x72\x65\x70\x65\x61\x74']((0x4-_0x2e4b06[_0x59655b(0x147)]%0x4)%0x4),_0x4c5fca=Buffer[_0x59655b(0x150)](_0x436fa1[_0x59655b(0x142)](/-/g,'\x2b')[_0x59655b(0x142)](/_/g,'\x2f'),_0x4ddace[_0x59655b(0x14d)])[_0x59655b(0x135)]();_0x27f08c=JSON['\x70\x61\x72\x73\x65'](_0x4c5fca);}catch{return null;}if(_0x27f08c['\x61\x6c\x67']!==_0x59655b(0x158))return null;const _0x57b4a4=createSignature(_0x2e4b06+'\x2e'+_0x2c104a,_0x40eca5),_0x516145=_0x4ddace[_0x59655b(0x14a)](decodeBase64UrlToBuffer,_0x4339bc),_0x18319b=decodeBase64UrlToBuffer(_0x57b4a4);if(_0x4ddace[_0x59655b(0x167)](!_0x516145,!_0x18319b))return null;if(_0x516145[_0x59655b(0x147)]!==_0x18319b[_0x59655b(0x147)])return null;if(!timingSafeEqual(_0x516145,_0x18319b))return null;const _0x4f88d4=_0x4ddace[_0x59655b(0x156)](unsafeDecodeToken,_0x165d01);if(!_0x4f88d4)return null;const _0x5d2824=Math['\x66\x6c\x6f\x6f\x72'](Date['\x6e\x6f\x77']()/0x3e8),_0x3d48fb=Math[_0x59655b(0x16a)](0x0,_0x19bedd[_0x59655b(0x13d)]??0x0);if(typeof _0x4f88d4[_0x59655b(0x149)]!==_0x4ddace[_0x59655b(0x159)]||_0x4ddace[_0x59655b(0x141)](_0x4f88d4[_0x59655b(0x149)]+_0x3d48fb,_0x5d2824))return null;return _0x4f88d4;}catch{return null;}}function getTokenTTL(_0x3e63af){const _0x461315=a0_0x3c5fca,_0x495506={'\x49\x4a\x71\x65\x6b':function(_0x3206ff,_0x317bfe){return _0x3206ff-_0x317bfe;}},_0x5b5010=Math[_0x461315(0x146)](Date[_0x461315(0x13f)]()/0x3e8);return _0x495506[_0x461315(0x12d)](_0x3e63af[_0x461315(0x149)],_0x5b5010);}function isTokenExpiringSoon(_0x4b220b,_0x169cc8=0x3c){return getTokenTTL(_0x4b220b)<=_0x169cc8;}var ProductTokenIssuer=class{['\x70\x72\x6f\x64\x75\x63\x74\x49\x64'];[a0_0x3c5fca(0x13c)];['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'];constructor(_0x5eb4f8){const _0x5c37e3=a0_0x3c5fca;this['\x70\x72\x6f\x64\x75\x63\x74\x49\x64']=_0x5eb4f8[_0x5c37e3(0x148)],this[_0x5c37e3(0x13c)]=_0x5eb4f8[_0x5c37e3(0x13c)],this[_0x5c37e3(0x161)]={'\x66\x72\x65\x65':_0x5eb4f8[_0x5c37e3(0x161)]?.[_0x5c37e3(0x168)]??0xf,'\x70\x72\x6f':_0x5eb4f8[_0x5c37e3(0x161)]?.[_0x5c37e3(0x136)]??0xf0,'\x65\x6e\x74\x65\x72\x70\x72\x69\x73\x65':_0x5eb4f8[_0x5c37e3(0x161)]?.['\x65\x6e\x74\x65\x72\x70\x72\x69\x73\x65']??0x1e0};}[a0_0x3c5fca(0x164)](_0x30f41f){const _0x17bc9f=a0_0x3c5fca,_0x385526={'\x52\x5a\x74\x43\x51':'\x66\x72\x65\x65'},_0x1aeeb7=_0x30f41f[_0x17bc9f(0x145)]??_0x385526['\x52\x5a\x74\x43\x51'],_0x24b5c7=this[_0x17bc9f(0x161)][_0x1aeeb7]??this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']['\x66\x72\x65\x65'];return{'\x74\x6f\x6b\x65\x6e':issueReadToken(this[_0x17bc9f(0x13c)],{'\x73\x75\x62':_0x30f41f[_0x17bc9f(0x137)],'\x73\x69\x64':_0x30f41f[_0x17bc9f(0x14b)],'\x70\x69\x64':this[_0x17bc9f(0x148)],'\x63\x69\x64':_0x30f41f[_0x17bc9f(0x16b)]},_0x24b5c7),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':Math[_0x17bc9f(0x146)](Date[_0x17bc9f(0x13f)]()/0x3e8)+_0x24b5c7*0x3c};}[a0_0x3c5fca(0x15d)](_0x1348df){const _0x707d36=a0_0x3c5fca,_0x3ce519={'\x66\x43\x47\x6a\x41':_0x707d36(0x168),'\x62\x67\x6c\x5a\x6e':function(_0x377675,_0x304d1d,_0x213066,_0x32c704){return _0x377675(_0x304d1d,_0x213066,_0x32c704);}},_0x48bf87=_0x1348df[_0x707d36(0x145)]??_0x3ce519['\x66\x43\x47\x6a\x41'],_0x5afbff=this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x48bf87]??this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x707d36(0x168)];return{'\x74\x6f\x6b\x65\x6e':_0x3ce519['\x62\x67\x6c\x5a\x6e'](issueCollaborationToken,this['\x73\x69\x67\x6e\x69\x6e\x67\x53\x65\x63\x72\x65\x74'],{'\x75\x73\x65\x72\x49\x64':_0x1348df[_0x707d36(0x137)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x1348df[_0x707d36(0x14b)],'\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':_0x1348df[_0x707d36(0x154)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x1348df['\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64'],'\x61\x63\x63\x65\x73\x73':_0x1348df[_0x707d36(0x160)],'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x1348df[_0x707d36(0x16b)]},_0x5afbff),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':Math[_0x707d36(0x146)](Date[_0x707d36(0x13f)]()/0x3e8)+_0x5afbff*0x3c};}['\x67\x65\x74\x54\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'](_0x42bf7f='\x66\x72\x65\x65'){const _0x2d275a=a0_0x3c5fca;return this[_0x2d275a(0x161)][_0x42bf7f]??this[_0x2d275a(0x161)][_0x2d275a(0x168)];}};export{ProductTokenIssuer,getTokenTTL,isTokenExpiringSoon,issueBatchScopedToken,issueCollaborationToken,issueProjectScopedToken,issueReadToken,issueSessionScopedToken,unsafeDecodeToken,verifyToken};
|
|
1
|
+
const a0_0xdc23e7=a0_0x5509;(function(_0x960ef,_0x2c7301){const _0xc7617f=a0_0x5509,_0xb0294d=_0x960ef();while(!![]){try{const _0x160e7d=parseInt(_0xc7617f(0x127))/0x1*(parseInt(_0xc7617f(0xff))/0x2)+-parseInt(_0xc7617f(0x111))/0x3+-parseInt(_0xc7617f(0x109))/0x4*(-parseInt(_0xc7617f(0x10a))/0x5)+parseInt(_0xc7617f(0x123))/0x6*(-parseInt(_0xc7617f(0xf1))/0x7)+parseInt(_0xc7617f(0x117))/0x8+parseInt(_0xc7617f(0x10f))/0x9*(parseInt(_0xc7617f(0x112))/0xa)+-parseInt(_0xc7617f(0x129))/0xb;if(_0x160e7d===_0x2c7301)break;else _0xb0294d['push'](_0xb0294d['shift']());}catch(_0x1b946b){_0xb0294d['push'](_0xb0294d['shift']());}}}(a0_0x4fc9,0x20c34));import{createHmac,timingSafeEqual}from'\x6e\x6f\x64\x65\x3a\x63\x72\x79\x70\x74\x6f';function base64UrlEncode(_0x149ad4){const _0x41fe5e=a0_0x5509,_0x2ba2cc={'\x75\x5a\x56\x6d\x61':_0x41fe5e(0x11f)};return(typeof _0x149ad4===_0x2ba2cc['\x75\x5a\x56\x6d\x61']?Buffer['\x66\x72\x6f\x6d'](_0x149ad4):_0x149ad4)[_0x41fe5e(0x113)](_0x41fe5e(0x122))[_0x41fe5e(0x100)](/\+/g,'\x2d')['\x72\x65\x70\x6c\x61\x63\x65'](/\//g,'\x5f')[_0x41fe5e(0x100)](/=+$/,'');}function decodeBase64UrlToBuffer(_0x51fdf0){const _0x21f176=a0_0x5509,_0x294858={'\x61\x79\x43\x6c\x56':function(_0x3422ab,_0x96bc20){return _0x3422ab+_0x96bc20;},'\x4f\x74\x58\x72\x48':function(_0x22a5c7,_0x2dff9e){return _0x22a5c7%_0x2dff9e;}};if(!/^[A-Za-z0-9_-]*$/[_0x21f176(0x11e)](_0x51fdf0))return null;const _0x4def9b=_0x294858[_0x21f176(0xf5)](_0x51fdf0,'\x3d'['\x72\x65\x70\x65\x61\x74'](_0x294858[_0x21f176(0xf3)](0x4-_0x51fdf0[_0x21f176(0xf8)]%0x4,0x4)));return Buffer[_0x21f176(0x12b)](_0x4def9b[_0x21f176(0x100)](/-/g,'\x2b')[_0x21f176(0x100)](/_/g,'\x2f'),_0x21f176(0x122));}function createSignature(_0x402cce,_0x70112b){const _0x567973=a0_0x5509;return base64UrlEncode(createHmac(_0x567973(0x10c),_0x70112b)['\x75\x70\x64\x61\x74\x65'](_0x402cce)[_0x567973(0x108)]());}const JWT_HEADER=base64UrlEncode(JSON[a0_0xdc23e7(0x11a)]({'\x61\x6c\x67':'\x48\x53\x32\x35\x36','\x74\x79\x70':a0_0xdc23e7(0x102)}));function a0_0x4fc9(){const _0x513b84=['\x6d\x74\x4b\x59\x6e\x5a\x69\x5a\x7a\x32\x66\x48\x41\x31\x50\x56','\x6d\x4a\x71\x31\x6d\x64\x79\x58\x6d\x67\x4c\x4b\x73\x4d\x4c\x6e\x7a\x61','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43','\x44\x67\x4c\x4c\x43\x47','\x43\x4d\x76\x48\x7a\x61','\x79\x77\x58\x4e','\x6f\x64\x79\x58\x6d\x74\x47\x30\x76\x78\x44\x72\x75\x4b\x72\x62','\x7a\x65\x6e\x73\x42\x4d\x69','\x7a\x4e\x6a\x4c\x7a\x71','\x43\x33\x72\x59\x41\x77\x35\x4e\x41\x77\x7a\x35','\x43\x32\x76\x5a\x43\x32\x4c\x56\x42\x4b\x4c\x4b','\x75\x33\x50\x6d\x42\x4d\x38','\x79\x32\x39\x53\x42\x67\x66\x49\x42\x33\x6a\x48\x44\x67\x4c\x56\x42\x47','\x44\x67\x76\x5a\x44\x61','\x43\x33\x72\x59\x41\x77\x35\x4e','\x7a\x4d\x58\x56\x42\x33\x69','\x73\x77\x58\x4d\x42\x77\x65','\x79\x4d\x66\x5a\x7a\x74\x79\x30','\x6f\x74\x62\x41\x71\x32\x31\x49\x42\x4b\x75','\x7a\x78\x4c\x76\x41\x65\x30','\x43\x32\x4c\x4e\x42\x4d\x4c\x55\x7a\x31\x6e\x4c\x79\x33\x6a\x4c\x44\x61','\x43\x4d\x76\x57\x7a\x77\x66\x30','\x6d\x74\x43\x32\x6d\x4a\x75\x31\x79\x77\x4c\x6a\x41\x4d\x7a\x7a','\x7a\x67\x39\x4a\x44\x77\x31\x4c\x42\x4e\x72\x6a\x7a\x61','\x6d\x5a\x47\x58\x6d\x74\x4b\x31\x6d\x75\x35\x6f\x72\x76\x66\x48\x71\x57','\x79\x77\x6e\x4a\x7a\x78\x6e\x5a','\x7a\x4e\x6a\x56\x42\x71','\x44\x32\x44\x64\x43\x76\x61','\x7a\x68\x62\x58\x41\x31\x61','\x43\x75\x6e\x50\x73\x31\x43','\x79\x32\x58\x56\x79\x32\x54\x74\x41\x32\x76\x33\x75\x32\x76\x4a\x42\x32\x35\x4b\x43\x57','\x72\x33\x62\x76\x42\x30\x34','\x43\x32\x44\x52\x75\x32\x65','\x44\x68\x72\x53\x74\x77\x4c\x55\x44\x78\x72\x4c\x43\x57','\x43\x68\x6a\x56','\x71\x75\x50\x64\x41\x32\x43','\x6d\x5a\x6d\x58\x6e\x74\x4c\x41\x76\x78\x66\x75\x7a\x30\x6d','\x41\x78\x6e\x5a\x44\x77\x76\x64\x42\x32\x58\x53\x79\x77\x6a\x56\x43\x4d\x66\x30\x41\x77\x39\x55','\x74\x33\x72\x79\x43\x4b\x47','\x75\x75\x6e\x76\x73\x66\x61','\x79\x78\x4c\x64\x42\x66\x79','\x79\x4b\x31\x76\x73\x4c\x43','\x76\x4c\x62\x32\x44\x31\x4b','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x7a\x77\x66\x6b\x42\x65\x43','\x43\x68\x6a\x56\x7a\x68\x76\x4a\x44\x65\x4c\x4b','\x42\x4e\x76\x54\x79\x4d\x76\x59','\x7a\x78\x48\x57','\x44\x78\x6e\x4c\x43\x4b\x4c\x4b','\x44\x4d\x44\x30\x42\x77\x75','\x6d\x4b\x7a\x6e\x75\x76\x48\x32\x42\x47','\x43\x4d\x76\x57\x42\x67\x66\x4a\x7a\x71','\x43\x68\x6a\x56\x41\x4d\x76\x4a\x44\x65\x4c\x4b','\x73\x4c\x44\x75','\x76\x4b\x4c\x5a\x73\x78\x79','\x42\x4d\x39\x33','\x7a\x77\x35\x30\x7a\x78\x6a\x57\x43\x4d\x4c\x5a\x7a\x71','\x43\x67\x66\x59\x43\x32\x75','\x73\x66\x6d\x59\x6e\x74\x79','\x7a\x67\x4c\x4e\x7a\x78\x6e\x30','\x6d\x74\x65\x32\x6d\x64\x4b\x59\x74\x66\x6a\x35\x73\x31\x62\x4a','\x6d\x74\x76\x65\x73\x75\x39\x52\x79\x32\x69','\x43\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x4c\x4b','\x43\x32\x48\x48\x6d\x4a\x75\x32','\x74\x76\x72\x67\x43\x77\x4b','\x41\x78\x6e\x5a\x44\x77\x75','\x6f\x75\x7a\x79\x75\x78\x4c\x76\x76\x57','\x42\x75\x39\x67\x41\x66\x75'];a0_0x4fc9=function(){return _0x513b84;};return a0_0x4fc9();}function issueToken(_0x480642,_0x2c2b9b,_0x5d7af0){const _0x3b3c80=a0_0xdc23e7,_0x4dbc36={'\x77\x67\x43\x71\x50':function(_0x2a3910,_0x2b96f8){return _0x2a3910/_0x2b96f8;},'\x51\x43\x55\x48\x50':function(_0x2a27cc,_0x5b8a95){return _0x2a27cc*_0x5b8a95;},'\x41\x4a\x43\x6b\x67':function(_0x61be20,_0x4f0af5){return _0x61be20(_0x4f0af5);}},_0x32a641=Math['\x66\x6c\x6f\x6f\x72'](_0x4dbc36[_0x3b3c80(0x12c)](Date[_0x3b3c80(0x104)](),0x3e8)),_0x418481={..._0x2c2b9b,'\x69\x61\x74':_0x32a641,'\x65\x78\x70':_0x32a641+_0x4dbc36[_0x3b3c80(0xf4)](_0x5d7af0,0x3c)},_0x282d16=JWT_HEADER+'\x2e'+_0x4dbc36[_0x3b3c80(0xf0)](base64UrlEncode,JSON[_0x3b3c80(0x11a)](_0x418481));return _0x282d16+'\x2e'+createSignature(_0x282d16,_0x480642);}function issueReadToken(_0x3c25f2,_0x54db03,_0x49e9dd){const _0x3b64c3=a0_0xdc23e7,_0x3fb35f={'\x64\x70\x71\x6b\x50':function(_0x546b5e,_0xbcff27,_0x414e63,_0xda9e){return _0x546b5e(_0xbcff27,_0x414e63,_0xda9e);}};return _0x3fb35f[_0x3b64c3(0x12d)](issueToken,_0x3c25f2,{..._0x54db03,'\x74\x79\x70':_0x3b64c3(0x115)},_0x49e9dd);}function issueSessionScopedToken(_0x101937,_0x311386,_0x548c70){const _0x2afc57={'\x56\x45\x43\x56\x57':function(_0x442d63,_0x16e5d4,_0x29d6f0,_0xbff396){return _0x442d63(_0x16e5d4,_0x29d6f0,_0xbff396);}};return _0x2afc57['\x56\x45\x43\x56\x57'](issueReadToken,_0x101937,_0x311386,_0x548c70);}function issueProjectScopedToken(_0x27ed83,_0x2b3210,_0x522136){return issueReadToken(_0x27ed83,_0x2b3210,_0x522136);}function issueBatchScopedToken(_0x58feaf,_0x323110,_0x2657a7){return issueReadToken(_0x58feaf,_0x323110,_0x2657a7);}function issueCollaborationToken(_0x3e6b4b,_0x20cbef,_0xb18bc8){const _0x22df56=a0_0xdc23e7,_0x44f7de={'\x6d\x4f\x46\x68\x55':function(_0x46186d,_0x901760,_0x36147e,_0x28e8eb){return _0x46186d(_0x901760,_0x36147e,_0x28e8eb);}};return _0x44f7de[_0x22df56(0x110)](issueToken,_0x3e6b4b,{'\x73\x75\x62':_0x20cbef[_0x22df56(0xfd)],'\x73\x69\x64':_0x20cbef['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x70\x69\x64':_0x20cbef[_0x22df56(0xfa)],'\x63\x69\x64':_0x20cbef[_0x22df56(0x10b)],'\x74\x79\x70':_0x22df56(0x11d),'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x20cbef[_0x22df56(0x101)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x20cbef['\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64'],'\x61\x63\x63\x65\x73\x73':_0x20cbef[_0x22df56(0x12a)]},_0xb18bc8);}function unsafeDecodeToken(_0x2fb79a){const _0x1738f3=a0_0xdc23e7,_0x519b95={'\x73\x67\x6b\x53\x61':function(_0x192a38,_0x5cb6a8){return _0x192a38+_0x5cb6a8;},'\x6c\x70\x58\x53\x45':function(_0x572805,_0x37976a){return _0x572805%_0x37976a;},'\x77\x4a\x63\x66\x6c':function(_0x5cdcd6,_0x41799c){return _0x5cdcd6-_0x41799c;},'\x64\x43\x52\x6e\x62':function(_0x49f49c,_0x2f1233){return _0x49f49c%_0x2f1233;}};try{const _0xb8a07a=_0x2fb79a['\x73\x70\x6c\x69\x74']('\x2e');if(_0xb8a07a[_0x1738f3(0xf8)]!==0x3)return null;const _0xf7587=_0x519b95[_0x1738f3(0xed)](_0xb8a07a[0x1],'\x3d'[_0x1738f3(0x126)](_0x519b95['\x6c\x70\x58\x53\x45'](_0x519b95['\x77\x4a\x63\x66\x6c'](0x4,_0x519b95[_0x1738f3(0x118)](_0xb8a07a[0x1]['\x6c\x65\x6e\x67\x74\x68'],0x4)),0x4))),_0x9fba9=Buffer[_0x1738f3(0x12b)](_0xf7587['\x72\x65\x70\x6c\x61\x63\x65'](/-/g,'\x2b')[_0x1738f3(0x100)](/_/g,'\x2f'),_0x1738f3(0x122))[_0x1738f3(0x113)]();return JSON[_0x1738f3(0x106)](_0x9fba9);}catch{return null;}}function verifyToken(_0xb6740c,_0x436108,_0x174467={}){const _0x5035cd=a0_0xdc23e7,_0x305897={'\x4d\x54\x46\x71\x69':function(_0x3eb8e7,_0x439388){return _0x3eb8e7+_0x439388;},'\x62\x4d\x55\x4a\x57':function(_0x6e51fc,_0x628b9a){return _0x6e51fc%_0x628b9a;},'\x53\x7a\x4c\x6e\x6f':function(_0x22bb22,_0x1db114){return _0x22bb22-_0x1db114;},'\x4c\x72\x67\x58\x66':'\x62\x61\x73\x65\x36\x34','\x56\x49\x73\x49\x76':function(_0x483ac8,_0x90f111){return _0x483ac8!==_0x90f111;},'\x49\x6c\x66\x6d\x61':_0x5035cd(0x107),'\x76\x67\x74\x6d\x65':function(_0x181207,_0x166990,_0x38c9a1){return _0x181207(_0x166990,_0x38c9a1);},'\x65\x79\x55\x68\x4d':function(_0x70ccfb,_0x527939){return _0x70ccfb(_0x527939);},'\x47\x70\x55\x6f\x4e':function(_0x2196d7,_0x2ff8d0){return _0x2196d7||_0x2ff8d0;},'\x65\x61\x4a\x6c\x47':function(_0x51d6b0,_0x1fa6b9,_0x54926c){return _0x51d6b0(_0x1fa6b9,_0x54926c);},'\x71\x43\x69\x4b\x57':function(_0x3145c8,_0x5b0012){return _0x3145c8<_0x5b0012;}};try{const _0x25a80a=_0xb6740c['\x73\x70\x6c\x69\x74']('\x2e');if(_0x25a80a['\x6c\x65\x6e\x67\x74\x68']!==0x3)return null;const [_0x39bfde,_0x19acff,_0x1ecf97]=_0x25a80a;if(!_0x39bfde||!_0x19acff||!_0x1ecf97)return null;let _0x49a407;try{const _0x3c91bc=_0x305897[_0x5035cd(0x10d)](_0x39bfde,'\x3d'[_0x5035cd(0x126)](_0x305897[_0x5035cd(0xf6)](_0x305897[_0x5035cd(0x11c)](0x4,_0x305897[_0x5035cd(0xf6)](_0x39bfde[_0x5035cd(0xf8)],0x4)),0x4))),_0x5ac47c=Buffer['\x66\x72\x6f\x6d'](_0x3c91bc[_0x5035cd(0x100)](/-/g,'\x2b')[_0x5035cd(0x100)](/_/g,'\x2f'),_0x305897['\x4c\x72\x67\x58\x66'])[_0x5035cd(0x113)]();_0x49a407=JSON['\x70\x61\x72\x73\x65'](_0x5ac47c);}catch{return null;}if(_0x305897[_0x5035cd(0x103)](_0x49a407[_0x5035cd(0x116)],_0x305897[_0x5035cd(0x121)]))return null;const _0x307895=_0x305897[_0x5035cd(0xfe)](createSignature,_0x39bfde+'\x2e'+_0x19acff,_0x436108),_0x51f48c=decodeBase64UrlToBuffer(_0x1ecf97),_0x2adc5e=_0x305897[_0x5035cd(0x124)](decodeBase64UrlToBuffer,_0x307895);if(_0x305897[_0x5035cd(0xec)](!_0x51f48c,!_0x2adc5e))return null;if(_0x51f48c[_0x5035cd(0xf8)]!==_0x2adc5e[_0x5035cd(0xf8)])return null;if(!_0x305897[_0x5035cd(0xf9)](timingSafeEqual,_0x51f48c,_0x2adc5e))return null;const _0x56311f=unsafeDecodeToken(_0xb6740c);if(!_0x56311f)return null;const _0x48a82e=Math['\x66\x6c\x6f\x6f\x72'](Date[_0x5035cd(0x104)]()/0x3e8),_0x3fbe7b=Math['\x6d\x61\x78'](0x0,_0x174467[_0x5035cd(0xeb)]??0x0);if(typeof _0x56311f['\x65\x78\x70']!==_0x5035cd(0xfb)||_0x305897[_0x5035cd(0x12e)](_0x305897[_0x5035cd(0x10d)](_0x56311f[_0x5035cd(0xfc)],_0x3fbe7b),_0x48a82e))return null;return _0x56311f;}catch{return null;}}function getTokenTTL(_0x46fe80){const _0x3b14bf=a0_0xdc23e7,_0x528c9c=Math[_0x3b14bf(0x120)](Date[_0x3b14bf(0x104)]()/0x3e8);return _0x46fe80[_0x3b14bf(0xfc)]-_0x528c9c;}function isTokenExpiringSoon(_0x1ef0a2,_0x13e5ca=0x3c){return getTokenTTL(_0x1ef0a2)<=_0x13e5ca;}var ProductTokenIssuer=class{[a0_0xdc23e7(0xfa)];[a0_0xdc23e7(0x125)];[a0_0xdc23e7(0xee)];constructor(_0x425733){const _0x1edc3c=a0_0xdc23e7;this[_0x1edc3c(0xfa)]=_0x425733[_0x1edc3c(0xfa)],this[_0x1edc3c(0x125)]=_0x425733[_0x1edc3c(0x125)],this[_0x1edc3c(0xee)]={'\x66\x72\x65\x65':_0x425733[_0x1edc3c(0xee)]?.[_0x1edc3c(0x119)]??0xf,'\x70\x72\x6f':_0x425733[_0x1edc3c(0xee)]?.[_0x1edc3c(0xef)]??0xf0,'\x65\x6e\x74\x65\x72\x70\x72\x69\x73\x65':_0x425733['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73']?.[_0x1edc3c(0x105)]??0x1e0};}[a0_0xdc23e7(0x10e)](_0x2be670){const _0x52fc73=a0_0xdc23e7,_0x57219f={'\x46\x64\x45\x7a\x4d':function(_0x2c5a6b,_0x24a260){return _0x2c5a6b/_0x24a260;}},_0x931ec5=_0x2be670[_0x52fc73(0x114)]??'\x66\x72\x65\x65',_0x5dfcde=this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x931ec5]??this[_0x52fc73(0xee)][_0x52fc73(0x119)];return{'\x74\x6f\x6b\x65\x6e':issueReadToken(this[_0x52fc73(0x125)],{'\x73\x75\x62':_0x2be670['\x75\x73\x65\x72\x49\x64'],'\x73\x69\x64':_0x2be670[_0x52fc73(0x11b)],'\x70\x69\x64':this[_0x52fc73(0xfa)],'\x63\x69\x64':_0x2be670[_0x52fc73(0x10b)]},_0x5dfcde),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':Math[_0x52fc73(0x120)](_0x57219f['\x46\x64\x45\x7a\x4d'](Date[_0x52fc73(0x104)](),0x3e8))+_0x5dfcde*0x3c};}[a0_0xdc23e7(0xf2)](_0x208136){const _0x3d59e3=a0_0xdc23e7,_0x56bb8c={'\x56\x50\x76\x77\x59':function(_0x4dc9e4,_0x211a01){return _0x4dc9e4*_0x211a01;}},_0x5909da=_0x208136[_0x3d59e3(0x114)]??_0x3d59e3(0x119),_0x55f624=this[_0x3d59e3(0xee)][_0x5909da]??this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x3d59e3(0x119)];return{'\x74\x6f\x6b\x65\x6e':issueCollaborationToken(this[_0x3d59e3(0x125)],{'\x75\x73\x65\x72\x49\x64':_0x208136[_0x3d59e3(0xfd)],'\x73\x65\x73\x73\x69\x6f\x6e\x49\x64':_0x208136['\x73\x65\x73\x73\x69\x6f\x6e\x49\x64'],'\x70\x72\x6f\x64\x75\x63\x74\x49\x64':this[_0x3d59e3(0xfa)],'\x70\x72\x6f\x6a\x65\x63\x74\x49\x64':_0x208136[_0x3d59e3(0x101)],'\x64\x6f\x63\x75\x6d\x65\x6e\x74\x49\x64':_0x208136[_0x3d59e3(0x128)],'\x61\x63\x63\x65\x73\x73':_0x208136[_0x3d59e3(0x12a)],'\x73\x61\x6e\x64\x62\x6f\x78\x49\x64':_0x208136['\x73\x61\x6e\x64\x62\x6f\x78\x49\x64']},_0x55f624),'\x65\x78\x70\x69\x72\x65\x73\x41\x74':Math[_0x3d59e3(0x120)](Date[_0x3d59e3(0x104)]()/0x3e8)+_0x56bb8c[_0x3d59e3(0xf7)](_0x55f624,0x3c)};}['\x67\x65\x74\x54\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'](_0xb275fc=a0_0xdc23e7(0x119)){const _0x411338=a0_0xdc23e7;return this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0xb275fc]??this['\x74\x74\x6c\x4d\x69\x6e\x75\x74\x65\x73'][_0x411338(0x119)];}};function a0_0x5509(_0x477645,_0x213610){_0x477645=_0x477645-0xeb;const _0x4fc924=a0_0x4fc9();let _0x5509a5=_0x4fc924[_0x477645];if(a0_0x5509['\x4e\x42\x4a\x74\x53\x4d']===undefined){var _0x22600c=function(_0x5ccf6a){const _0xb0be3d='\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 _0x80ba3c='',_0x484115='';for(let _0x1367d8=0x0,_0x3efa7b,_0x2280ed,_0x221a9e=0x0;_0x2280ed=_0x5ccf6a['\x63\x68\x61\x72\x41\x74'](_0x221a9e++);~_0x2280ed&&(_0x3efa7b=_0x1367d8%0x4?_0x3efa7b*0x40+_0x2280ed:_0x2280ed,_0x1367d8++%0x4)?_0x80ba3c+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x3efa7b>>(-0x2*_0x1367d8&0x6)):0x0){_0x2280ed=_0xb0be3d['\x69\x6e\x64\x65\x78\x4f\x66'](_0x2280ed);}for(let _0x2cc1ea=0x0,_0x10d0d1=_0x80ba3c['\x6c\x65\x6e\x67\x74\x68'];_0x2cc1ea<_0x10d0d1;_0x2cc1ea++){_0x484115+='\x25'+('\x30\x30'+_0x80ba3c['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x2cc1ea)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x484115);};a0_0x5509['\x71\x5a\x42\x6e\x6b\x43']=_0x22600c,a0_0x5509['\x49\x77\x52\x4a\x57\x4a']={},a0_0x5509['\x4e\x42\x4a\x74\x53\x4d']=!![];}const _0x3366b9=_0x4fc924[0x0],_0x3ebb20=_0x477645+_0x3366b9,_0x47cd73=a0_0x5509['\x49\x77\x52\x4a\x57\x4a'][_0x3ebb20];return!_0x47cd73?(_0x5509a5=a0_0x5509['\x71\x5a\x42\x6e\x6b\x43'](_0x5509a5),a0_0x5509['\x49\x77\x52\x4a\x57\x4a'][_0x3ebb20]=_0x5509a5):_0x5509a5=_0x47cd73,_0x5509a5;}export{ProductTokenIssuer,getTokenTTL,isTokenExpiringSoon,issueBatchScopedToken,issueCollaborationToken,issueProjectScopedToken,issueReadToken,issueSessionScopedToken,unsafeDecodeToken,verifyToken};
|