@tangle-network/sandbox 0.1.1 → 0.2.1
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 +490 -2
- package/dist/auth/index.d.ts +2 -2
- package/dist/auth/index.js +271 -1
- package/dist/client-Uve6A5C6.js +2280 -0
- package/dist/collaboration/index.d.ts +1 -1
- package/dist/collaboration/index.js +2 -1
- package/dist/collaboration-CRyb5e8F.js +201 -0
- package/dist/core.d.ts +3 -3
- package/dist/core.js +4 -1
- package/dist/errors-BI75IXOM.d.ts +1177 -0
- package/dist/errors-CljiGR__.js +262 -0
- package/dist/{index-BuS8nl3b.d.ts → index-CCsA3S0D.d.ts} +6 -1
- package/dist/{index-t7xkzv0U.d.ts → index-DhNGZ0h4.d.ts} +3 -3
- package/dist/{index-gA-oRjOi.d.ts → index-Dpj1oB5i.d.ts} +35 -4
- package/dist/index.d.ts +109 -62
- package/dist/index.js +825 -1
- package/dist/openai/index.d.ts +642 -0
- package/dist/openai/index.js +1721 -0
- package/dist/platform-integrations.d.ts +2 -0
- package/dist/platform-integrations.js +2 -0
- package/dist/{sandbox-BvZ0-Iv7.d.ts → sandbox-aBpWqler.d.ts} +1528 -41
- package/dist/sandbox-ksXTNlo-.js +3394 -0
- package/dist/session-gateway/index.js +667 -1
- package/dist/tangle/index.d.ts +1 -1
- package/dist/tangle/index.js +2 -1
- package/dist/tangle-DQ05paN7.js +826 -0
- package/package.json +93 -34
- package/LICENSE +0 -11
- package/dist/client-Bi0PeV_x.js +0 -1
- package/dist/collaboration-CVvhPU8M.js +0 -1
- package/dist/errors-AIT8qikt.d.ts +0 -491
- package/dist/errors-CdMTv7uG.js +0 -1
- package/dist/sandbox-D1JnQIJx.js +0 -1
- package/dist/tangle-CSb9rjAh.js +0 -1
|
@@ -1,491 +0,0 @@
|
|
|
1
|
-
import { Et as SecretsManager, Ut as UsageInfo, W as ListSandboxOptions, b as CreateSandboxOptions, d as BatchEvent, f as BatchOptions, gt as SandboxEnvironment, jt as SubscriptionInfo, m as BatchTask, mt as SandboxClientConfig, n as SandboxInstance, p as BatchResult, t as HttpClient } from "./sandbox-BvZ0-Iv7.js";
|
|
2
|
-
|
|
3
|
-
//#region src/client.d.ts
|
|
4
|
-
/**
|
|
5
|
-
* Client for the Tangle Sandbox platform.
|
|
6
|
-
*
|
|
7
|
-
* @example
|
|
8
|
-
* ```typescript
|
|
9
|
-
* import { Sandbox } from "@tangle-network/sandbox";
|
|
10
|
-
*
|
|
11
|
-
* const client = new Sandbox({
|
|
12
|
-
* apiKey: "sk_sandbox_...",
|
|
13
|
-
* baseUrl: "https://your-sandbox-api.example.com",
|
|
14
|
-
* });
|
|
15
|
-
*
|
|
16
|
-
* // Create a sandbox
|
|
17
|
-
* const box = await client.create({
|
|
18
|
-
* name: "my-project",
|
|
19
|
-
* sshEnabled: true,
|
|
20
|
-
* });
|
|
21
|
-
*
|
|
22
|
-
* // Execute commands
|
|
23
|
-
* const result = await box.exec("npm install");
|
|
24
|
-
*
|
|
25
|
-
* // Clean up
|
|
26
|
-
* await box.delete();
|
|
27
|
-
* ```
|
|
28
|
-
*/
|
|
29
|
-
declare class SandboxClient implements HttpClient {
|
|
30
|
-
private readonly baseUrl;
|
|
31
|
-
private readonly apiKey;
|
|
32
|
-
private readonly timeoutMs;
|
|
33
|
-
private _secrets;
|
|
34
|
-
constructor(config: SandboxClientConfig);
|
|
35
|
-
/**
|
|
36
|
-
* Access the secrets manager for storing and retrieving encrypted secrets.
|
|
37
|
-
*
|
|
38
|
-
* @example
|
|
39
|
-
* ```typescript
|
|
40
|
-
* // Create a secret
|
|
41
|
-
* await client.secrets.create("HF_TOKEN", "hf_xxx");
|
|
42
|
-
*
|
|
43
|
-
* // List secrets (names only)
|
|
44
|
-
* const secrets = await client.secrets.list();
|
|
45
|
-
*
|
|
46
|
-
* // Get secret value
|
|
47
|
-
* const value = await client.secrets.get("HF_TOKEN");
|
|
48
|
-
*
|
|
49
|
-
* // Update secret
|
|
50
|
-
* await client.secrets.update("HF_TOKEN", "hf_new_value");
|
|
51
|
-
*
|
|
52
|
-
* // Delete secret
|
|
53
|
-
* await client.secrets.delete("HF_TOKEN");
|
|
54
|
-
* ```
|
|
55
|
-
*/
|
|
56
|
-
get secrets(): SecretsManager;
|
|
57
|
-
private _environments;
|
|
58
|
-
/**
|
|
59
|
-
* Access available development environments.
|
|
60
|
-
*
|
|
61
|
-
* @example
|
|
62
|
-
* ```typescript
|
|
63
|
-
* const envs = await client.environments.list();
|
|
64
|
-
* // → [{ id: "universal", description: "Universal environment with all toolchains via Nix", ... }]
|
|
65
|
-
*
|
|
66
|
-
* const sandbox = await client.create({ environment: "universal" });
|
|
67
|
-
* ```
|
|
68
|
-
*/
|
|
69
|
-
get environments(): EnvironmentsClient;
|
|
70
|
-
private _teams;
|
|
71
|
-
/**
|
|
72
|
-
* Access team management (collaboration groups, invitations,
|
|
73
|
-
* member roles). Teams scope shared sandboxes — pass `teamId` to
|
|
74
|
-
* `client.create()` to create a sandbox accessible to a team's
|
|
75
|
-
* members.
|
|
76
|
-
*
|
|
77
|
-
* @example
|
|
78
|
-
* ```typescript
|
|
79
|
-
* const teams = await client.teams.list();
|
|
80
|
-
* const invite = await client.teams.invite(teams[0].id, {
|
|
81
|
-
* email: "alice@example.com",
|
|
82
|
-
* role: "member",
|
|
83
|
-
* });
|
|
84
|
-
* ```
|
|
85
|
-
*/
|
|
86
|
-
get teams(): TeamsClient;
|
|
87
|
-
/**
|
|
88
|
-
* Create a new sandbox.
|
|
89
|
-
*
|
|
90
|
-
* @param options - Configuration for the new sandbox
|
|
91
|
-
* @returns A SandboxInstance representing the created sandbox
|
|
92
|
-
*
|
|
93
|
-
* @example
|
|
94
|
-
* ```typescript
|
|
95
|
-
* const box = await client.create({
|
|
96
|
-
* name: "my-project",
|
|
97
|
-
* environment: "universal",
|
|
98
|
-
* sshEnabled: true,
|
|
99
|
-
* env: { NODE_ENV: "development" },
|
|
100
|
-
* });
|
|
101
|
-
* ```
|
|
102
|
-
*/
|
|
103
|
-
create(options?: CreateSandboxOptions): Promise<SandboxInstance>;
|
|
104
|
-
/**
|
|
105
|
-
* List all sandboxes.
|
|
106
|
-
*
|
|
107
|
-
* @param options - Filtering and pagination options
|
|
108
|
-
* @returns Array of SandboxInstance objects
|
|
109
|
-
*
|
|
110
|
-
* @example
|
|
111
|
-
* ```typescript
|
|
112
|
-
* // List all running sandboxes
|
|
113
|
-
* const running = await client.list({ status: "running" });
|
|
114
|
-
*
|
|
115
|
-
* // List with pagination
|
|
116
|
-
* const page = await client.list({ limit: 10, offset: 0 });
|
|
117
|
-
* ```
|
|
118
|
-
*/
|
|
119
|
-
list(options?: ListSandboxOptions): Promise<SandboxInstance[]>;
|
|
120
|
-
/**
|
|
121
|
-
* Get a sandbox by ID.
|
|
122
|
-
*
|
|
123
|
-
* @param id - The sandbox ID
|
|
124
|
-
* @returns A SandboxInstance or null if not found
|
|
125
|
-
*
|
|
126
|
-
* @example
|
|
127
|
-
* ```typescript
|
|
128
|
-
* const box = await client.get("sandbox_abc123");
|
|
129
|
-
* if (box) {
|
|
130
|
-
* console.log(box.status);
|
|
131
|
-
* }
|
|
132
|
-
* ```
|
|
133
|
-
*/
|
|
134
|
-
get(id: string): Promise<SandboxInstance | null>;
|
|
135
|
-
/**
|
|
136
|
-
* Get usage information for the account.
|
|
137
|
-
*
|
|
138
|
-
* @returns Usage statistics for the current billing period
|
|
139
|
-
*
|
|
140
|
-
* @example
|
|
141
|
-
* ```typescript
|
|
142
|
-
* const usage = await client.usage();
|
|
143
|
-
* console.log(`Active sandboxes: ${usage.activeSandboxes}`);
|
|
144
|
-
* console.log(`Compute minutes: ${usage.computeMinutes}`);
|
|
145
|
-
* ```
|
|
146
|
-
*/
|
|
147
|
-
usage(): Promise<UsageInfo>;
|
|
148
|
-
/**
|
|
149
|
-
* Get subscription and billing information for the account.
|
|
150
|
-
*
|
|
151
|
-
* @returns Subscription details including plan, credits, and limits
|
|
152
|
-
*
|
|
153
|
-
* @example
|
|
154
|
-
* ```typescript
|
|
155
|
-
* const sub = await client.subscription();
|
|
156
|
-
* console.log(`Plan: ${sub.plan}`);
|
|
157
|
-
* console.log(`Credits: $${sub.creditsAvailableUsd.toFixed(2)}`);
|
|
158
|
-
* ```
|
|
159
|
-
*/
|
|
160
|
-
subscription(): Promise<SubscriptionInfo>;
|
|
161
|
-
/**
|
|
162
|
-
* Check if the Sandbox API is available.
|
|
163
|
-
*
|
|
164
|
-
* @returns true if the API is healthy, false otherwise
|
|
165
|
-
*/
|
|
166
|
-
health(): Promise<boolean>;
|
|
167
|
-
/**
|
|
168
|
-
* Check if CRIU checkpointing is available on the platform.
|
|
169
|
-
*
|
|
170
|
-
* CRIU enables memory preservation for true pause/resume and fork operations.
|
|
171
|
-
* It requires specific host configuration.
|
|
172
|
-
*
|
|
173
|
-
* @returns CRIU availability status
|
|
174
|
-
*
|
|
175
|
-
* @example
|
|
176
|
-
* ```typescript
|
|
177
|
-
* const status = await client.criuStatus();
|
|
178
|
-
* if (status.available) {
|
|
179
|
-
* console.log(`CRIU ${status.criuVersion} available`);
|
|
180
|
-
* } else {
|
|
181
|
-
* console.log(`CRIU not available: ${status.reason}`);
|
|
182
|
-
* }
|
|
183
|
-
* ```
|
|
184
|
-
*/
|
|
185
|
-
criuStatus(): Promise<{
|
|
186
|
-
available: boolean;
|
|
187
|
-
criuVersion?: string;
|
|
188
|
-
reason?: string;
|
|
189
|
-
requirements?: {
|
|
190
|
-
kernel: boolean;
|
|
191
|
-
criu: boolean;
|
|
192
|
-
storageDriver: boolean;
|
|
193
|
-
experimental: boolean;
|
|
194
|
-
};
|
|
195
|
-
}>;
|
|
196
|
-
/**
|
|
197
|
-
* Run multiple tasks in parallel across sandboxes.
|
|
198
|
-
* Returns the aggregated results after all tasks complete.
|
|
199
|
-
*
|
|
200
|
-
* @param tasks - Array of tasks to execute
|
|
201
|
-
* @param options - Batch execution options
|
|
202
|
-
* @returns Aggregated batch results
|
|
203
|
-
*
|
|
204
|
-
* @throws {@link TimeoutError} if the server hasn't begun responding
|
|
205
|
-
* before the deadline (pre-stream timeout).
|
|
206
|
-
* @throws {@link ValidationError} / {@link QuotaError} / other typed
|
|
207
|
-
* SDK errors if the server rejects the request before streaming.
|
|
208
|
-
* @throws `DOMException` with `name === "AbortError"` if
|
|
209
|
-
* `options.signal` fires OR the safety-valve deadline fires
|
|
210
|
-
* AFTER streaming has begun — parseSSEStream can't distinguish
|
|
211
|
-
* the source mid-stream. Callers that need to tell cancel from
|
|
212
|
-
* timeout should check `options.signal?.aborted` in their catch.
|
|
213
|
-
* @throws `Error` with the server message if the stream emits a
|
|
214
|
-
* `batch.failed` event.
|
|
215
|
-
*
|
|
216
|
-
* @example
|
|
217
|
-
* ```typescript
|
|
218
|
-
* const result = await client.runBatch([
|
|
219
|
-
* { id: "task-1", message: "Analyze this file" },
|
|
220
|
-
* { id: "task-2", message: "Generate a summary" },
|
|
221
|
-
* ]);
|
|
222
|
-
* console.log(`Success rate: ${result.successRate}%`);
|
|
223
|
-
* ```
|
|
224
|
-
*/
|
|
225
|
-
runBatch(tasks: BatchTask[], options?: BatchOptions): Promise<BatchResult>;
|
|
226
|
-
/**
|
|
227
|
-
* Stream events from a batch execution.
|
|
228
|
-
* Use this for real-time progress updates during batch processing.
|
|
229
|
-
*
|
|
230
|
-
* @param tasks - Array of tasks to execute
|
|
231
|
-
* @param options - Batch execution options
|
|
232
|
-
*
|
|
233
|
-
* @throws {@link TimeoutError} if the server hasn't begun responding
|
|
234
|
-
* before the deadline (pre-stream timeout).
|
|
235
|
-
* @throws {@link ValidationError} / {@link QuotaError} / other typed
|
|
236
|
-
* SDK errors if the server rejects the request before streaming.
|
|
237
|
-
* @throws `DOMException` with `name === "AbortError"` if
|
|
238
|
-
* `options.signal` fires OR the safety-valve deadline fires
|
|
239
|
-
* AFTER streaming has begun. Distinguish via
|
|
240
|
-
* `options.signal?.aborted` in the consumer's catch.
|
|
241
|
-
*
|
|
242
|
-
* @example
|
|
243
|
-
* ```typescript
|
|
244
|
-
* for await (const event of client.streamBatch(tasks)) {
|
|
245
|
-
* if (event.type === "task.completed") {
|
|
246
|
-
* console.log(`Task ${event.data.taskId} completed`);
|
|
247
|
-
* }
|
|
248
|
-
* }
|
|
249
|
-
* ```
|
|
250
|
-
*/
|
|
251
|
-
streamBatch(tasks: BatchTask[], options?: BatchOptions): AsyncGenerator<BatchEvent>;
|
|
252
|
-
/**
|
|
253
|
-
* Make an authenticated HTTP request to the API.
|
|
254
|
-
* This is exposed for use by SandboxInstance.
|
|
255
|
-
*/
|
|
256
|
-
fetch(path: string, options?: RequestInit): Promise<Response>;
|
|
257
|
-
private parseInfo;
|
|
258
|
-
}
|
|
259
|
-
/**
|
|
260
|
-
* Client for browsing available development environments.
|
|
261
|
-
*/
|
|
262
|
-
declare class EnvironmentsClient {
|
|
263
|
-
private readonly client;
|
|
264
|
-
constructor(client: SandboxClient);
|
|
265
|
-
/**
|
|
266
|
-
* List available development environments.
|
|
267
|
-
*
|
|
268
|
-
* @returns Array of available environments with metadata
|
|
269
|
-
*
|
|
270
|
-
* @example
|
|
271
|
-
* ```typescript
|
|
272
|
-
* const envs = await client.environments.list();
|
|
273
|
-
* for (const env of envs) {
|
|
274
|
-
* console.log(`${env.id}: ${env.description}`);
|
|
275
|
-
* }
|
|
276
|
-
* ```
|
|
277
|
-
*/
|
|
278
|
-
list(): Promise<SandboxEnvironment[]>;
|
|
279
|
-
/**
|
|
280
|
-
* Get details for a specific environment.
|
|
281
|
-
*
|
|
282
|
-
* @param id - Environment identifier (e.g., "universal")
|
|
283
|
-
*/
|
|
284
|
-
get(id: string): Promise<SandboxEnvironment | null>;
|
|
285
|
-
}
|
|
286
|
-
/**
|
|
287
|
-
* Team (collaboration group) record as returned from the API.
|
|
288
|
-
*/
|
|
289
|
-
interface Team {
|
|
290
|
-
id: string;
|
|
291
|
-
name: string;
|
|
292
|
-
ownerCustomerId: string;
|
|
293
|
-
orgId: string | null;
|
|
294
|
-
memberCount: number;
|
|
295
|
-
currentUserRole: "owner" | "admin" | "member" | "viewer";
|
|
296
|
-
createdAt: string;
|
|
297
|
-
updatedAt: string;
|
|
298
|
-
}
|
|
299
|
-
interface TeamMember {
|
|
300
|
-
id: string;
|
|
301
|
-
teamId: string;
|
|
302
|
-
customerId: string;
|
|
303
|
-
customerEmail: string;
|
|
304
|
-
customerName: string | null;
|
|
305
|
-
role: "owner" | "admin" | "member" | "viewer";
|
|
306
|
-
status: "active" | "pending" | "removed";
|
|
307
|
-
joinedAt: string | null;
|
|
308
|
-
createdAt: string;
|
|
309
|
-
}
|
|
310
|
-
interface TeamInvitation {
|
|
311
|
-
id: string;
|
|
312
|
-
teamId: string;
|
|
313
|
-
email: string;
|
|
314
|
-
invitedBy: string;
|
|
315
|
-
invitedByEmail: string | null;
|
|
316
|
-
role: "admin" | "member" | "viewer";
|
|
317
|
-
token: string;
|
|
318
|
-
status: "pending" | "accepted" | "expired" | "revoked";
|
|
319
|
-
expiresAt: string;
|
|
320
|
-
createdAt: string;
|
|
321
|
-
}
|
|
322
|
-
interface TeamInvitationPreview {
|
|
323
|
-
email: string;
|
|
324
|
-
role: "admin" | "member" | "viewer";
|
|
325
|
-
status: "pending" | "accepted" | "expired" | "revoked";
|
|
326
|
-
expiresAt: string;
|
|
327
|
-
teamName: string;
|
|
328
|
-
invitedByEmail: string | null;
|
|
329
|
-
}
|
|
330
|
-
interface TeamSecretRecord {
|
|
331
|
-
name: string;
|
|
332
|
-
updatedAt: string;
|
|
333
|
-
updatedBy: string;
|
|
334
|
-
}
|
|
335
|
-
interface CreateTeamOptions {
|
|
336
|
-
name: string;
|
|
337
|
-
orgId?: string;
|
|
338
|
-
}
|
|
339
|
-
interface InviteTeamMemberOptions {
|
|
340
|
-
email: string;
|
|
341
|
-
role: "admin" | "member" | "viewer";
|
|
342
|
-
/** Lifetime of the invitation in hours (default 168 = 7 days). */
|
|
343
|
-
ttlHours?: number;
|
|
344
|
-
}
|
|
345
|
-
/**
|
|
346
|
-
* Client for managing teams and team-scoped sharing.
|
|
347
|
-
*
|
|
348
|
-
* Team resources are scoped to the authenticated user's membership —
|
|
349
|
-
* the client never needs to pass an org id explicitly.
|
|
350
|
-
*/
|
|
351
|
-
declare class TeamsClient {
|
|
352
|
-
private readonly client;
|
|
353
|
-
constructor(client: SandboxClient);
|
|
354
|
-
list(): Promise<Team[]>;
|
|
355
|
-
create(options: CreateTeamOptions): Promise<Team>;
|
|
356
|
-
get(teamId: string): Promise<Team>;
|
|
357
|
-
update(teamId: string, updates: {
|
|
358
|
-
name?: string;
|
|
359
|
-
}): Promise<Team>;
|
|
360
|
-
delete(teamId: string): Promise<void>;
|
|
361
|
-
leave(teamId: string): Promise<void>;
|
|
362
|
-
transferOwnership(teamId: string, newOwnerCustomerId: string): Promise<void>;
|
|
363
|
-
listMembers(teamId: string): Promise<TeamMember[]>;
|
|
364
|
-
updateMember(teamId: string, memberId: string, updates: {
|
|
365
|
-
role?: "admin" | "member" | "viewer";
|
|
366
|
-
status?: "active" | "removed";
|
|
367
|
-
}): Promise<TeamMember>;
|
|
368
|
-
removeMember(teamId: string, memberId: string): Promise<void>;
|
|
369
|
-
listInvitations(teamId: string): Promise<TeamInvitation[]>;
|
|
370
|
-
invite(teamId: string, options: InviteTeamMemberOptions): Promise<TeamInvitation>;
|
|
371
|
-
revokeInvitation(invitationId: string): Promise<void>;
|
|
372
|
-
acceptInvitation(token: string): Promise<TeamMember>;
|
|
373
|
-
getInvitation(token: string): Promise<TeamInvitationPreview>;
|
|
374
|
-
listSecrets(teamId: string): Promise<TeamSecretRecord[]>;
|
|
375
|
-
upsertSecret(teamId: string, name: string, value: string): Promise<TeamSecretRecord>;
|
|
376
|
-
deleteSecret(teamId: string, name: string): Promise<void>;
|
|
377
|
-
revealSecret(teamId: string, name: string): Promise<{
|
|
378
|
-
name: string;
|
|
379
|
-
value: string;
|
|
380
|
-
}>;
|
|
381
|
-
}
|
|
382
|
-
/**
|
|
383
|
-
* Alias for SandboxClient for cleaner imports.
|
|
384
|
-
*/
|
|
385
|
-
//#endregion
|
|
386
|
-
//#region src/errors.d.ts
|
|
387
|
-
/**
|
|
388
|
-
* Sandbox SDK Errors
|
|
389
|
-
*
|
|
390
|
-
* Error classes for the Sandbox client SDK.
|
|
391
|
-
*/
|
|
392
|
-
/**
|
|
393
|
-
* Base error class for all Sandbox SDK errors.
|
|
394
|
-
*/
|
|
395
|
-
declare class SandboxError extends Error {
|
|
396
|
-
/** HTTP status code if applicable */
|
|
397
|
-
readonly status?: number;
|
|
398
|
-
/** Error code for programmatic handling */
|
|
399
|
-
readonly code: string;
|
|
400
|
-
/** Best-effort origin of the failing request */
|
|
401
|
-
readonly origin?: SandboxErrorOrigin;
|
|
402
|
-
/** Request path or endpoint when known */
|
|
403
|
-
readonly endpoint?: string;
|
|
404
|
-
/** Retry-after duration in ms when surfaced by the upstream */
|
|
405
|
-
readonly retryAfterMs?: number;
|
|
406
|
-
/** Sidecar version when the runtime emitted it */
|
|
407
|
-
readonly sidecarVersion?: string;
|
|
408
|
-
/** Sidecar image/tag/sha when the runtime emitted it */
|
|
409
|
-
readonly containerImage?: string;
|
|
410
|
-
constructor(message: string, code: string, status?: number, metadata?: SandboxErrorMetadata);
|
|
411
|
-
}
|
|
412
|
-
type SandboxErrorOrigin = "sidecar" | "sandbox-api" | "control-plane" | "runtime" | "unknown";
|
|
413
|
-
interface SandboxErrorMetadata {
|
|
414
|
-
origin?: SandboxErrorOrigin;
|
|
415
|
-
endpoint?: string;
|
|
416
|
-
retryAfterMs?: number;
|
|
417
|
-
sidecarVersion?: string;
|
|
418
|
-
containerImage?: string;
|
|
419
|
-
}
|
|
420
|
-
/**
|
|
421
|
-
* Authentication failed or API key is invalid.
|
|
422
|
-
*/
|
|
423
|
-
declare class AuthError extends SandboxError {
|
|
424
|
-
constructor(message?: string, metadata?: SandboxErrorMetadata);
|
|
425
|
-
}
|
|
426
|
-
/**
|
|
427
|
-
* The requested resource was not found.
|
|
428
|
-
*/
|
|
429
|
-
declare class NotFoundError extends SandboxError {
|
|
430
|
-
/** The resource type that was not found */
|
|
431
|
-
readonly resourceType: string;
|
|
432
|
-
/** The resource ID that was not found */
|
|
433
|
-
readonly resourceId: string;
|
|
434
|
-
constructor(resourceType: string, resourceId: string, metadata?: SandboxErrorMetadata);
|
|
435
|
-
}
|
|
436
|
-
/**
|
|
437
|
-
* Account quota or rate limit exceeded.
|
|
438
|
-
*/
|
|
439
|
-
declare class QuotaError extends SandboxError {
|
|
440
|
-
/** The type of quota that was exceeded */
|
|
441
|
-
readonly quotaType: string;
|
|
442
|
-
/** Current usage */
|
|
443
|
-
readonly current?: number;
|
|
444
|
-
/** Maximum allowed */
|
|
445
|
-
readonly limit?: number;
|
|
446
|
-
/** Suggested retry-after duration in ms */
|
|
447
|
-
readonly retryAfterMs?: number;
|
|
448
|
-
constructor(quotaType: string, message?: string, current?: number, limit?: number, metadata?: SandboxErrorMetadata);
|
|
449
|
-
}
|
|
450
|
-
/**
|
|
451
|
-
* The request was invalid or malformed.
|
|
452
|
-
*/
|
|
453
|
-
declare class ValidationError extends SandboxError {
|
|
454
|
-
/** Field-level validation errors */
|
|
455
|
-
readonly fields?: Record<string, string>;
|
|
456
|
-
constructor(message: string, fields?: Record<string, string>, metadata?: SandboxErrorMetadata);
|
|
457
|
-
}
|
|
458
|
-
/**
|
|
459
|
-
* The sandbox is not in a valid state for the requested operation.
|
|
460
|
-
*/
|
|
461
|
-
declare class StateError extends SandboxError {
|
|
462
|
-
/** Current state of the sandbox */
|
|
463
|
-
readonly currentState: string;
|
|
464
|
-
/** Required state for the operation */
|
|
465
|
-
readonly requiredState?: string;
|
|
466
|
-
constructor(message: string, currentState: string, requiredState?: string, metadata?: SandboxErrorMetadata);
|
|
467
|
-
}
|
|
468
|
-
/**
|
|
469
|
-
* The request timed out.
|
|
470
|
-
*/
|
|
471
|
-
declare class TimeoutError extends SandboxError {
|
|
472
|
-
/** Timeout duration in milliseconds */
|
|
473
|
-
readonly timeoutMs: number;
|
|
474
|
-
constructor(timeoutMs: number, message?: string, metadata?: SandboxErrorMetadata);
|
|
475
|
-
}
|
|
476
|
-
/**
|
|
477
|
-
* A network or connection error occurred.
|
|
478
|
-
*/
|
|
479
|
-
declare class NetworkError extends SandboxError {
|
|
480
|
-
/** The underlying error */
|
|
481
|
-
readonly cause?: Error;
|
|
482
|
-
constructor(message: string, causeOrMetadata?: Error | SandboxErrorMetadata, metadata?: SandboxErrorMetadata);
|
|
483
|
-
}
|
|
484
|
-
/**
|
|
485
|
-
* The server returned an unexpected error.
|
|
486
|
-
*/
|
|
487
|
-
declare class ServerError extends SandboxError {
|
|
488
|
-
constructor(message: string, status?: number, metadata?: SandboxErrorMetadata);
|
|
489
|
-
}
|
|
490
|
-
//#endregion
|
|
491
|
-
export { SandboxError as a, TimeoutError as c, InviteTeamMemberOptions as d, SandboxClient as f, TeamMember as h, QuotaError as i, ValidationError as l, TeamInvitation as m, NetworkError as n, ServerError as o, Team as p, NotFoundError as r, StateError as s, AuthError as t, CreateTeamOptions as u };
|
package/dist/errors-CdMTv7uG.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
const a0_0x576bf7=a0_0x20e3;(function(_0xdf0e5d,_0x50f3fd){const _0x602c13=a0_0x20e3,_0x4e8c7c=_0xdf0e5d();while(!![]){try{const _0x263840=-parseInt(_0x602c13(0x89))/0x1*(parseInt(_0x602c13(0x13d))/0x2)+parseInt(_0x602c13(0xe3))/0x3*(-parseInt(_0x602c13(0xef))/0x4)+parseInt(_0x602c13(0x9e))/0x5+-parseInt(_0x602c13(0xea))/0x6*(-parseInt(_0x602c13(0x8e))/0x7)+-parseInt(_0x602c13(0xd4))/0x8+parseInt(_0x602c13(0x8a))/0x9+parseInt(_0x602c13(0x11e))/0xa;if(_0x263840===_0x50f3fd)break;else _0x4e8c7c['push'](_0x4e8c7c['shift']());}catch(_0x2bb807){_0x4e8c7c['push'](_0x4e8c7c['shift']());}}}(a0_0x5046,0x451ed));function a0_0x2f24(){const _0x203e1b=a0_0x20e3,_0x13196e={'\x46\x72\x7a\x52\x70':'\x42\x4e\x6e\x6d\x74\x4d\x34','\x59\x79\x6b\x47\x62':_0x203e1b(0xf6),'\x68\x6a\x6e\x61\x70':'\x43\x33\x72\x48\x43\x4e\x72\x5a\x76\x32\x4c\x30\x41\x61','\x55\x55\x4d\x63\x76':'\x43\x4b\x44\x36\x43\x4d\x38','\x6e\x54\x66\x76\x6c':_0x203e1b(0x78),'\x47\x56\x52\x76\x45':_0x203e1b(0x6c),'\x51\x4b\x78\x53\x6b':_0x203e1b(0x10b),'\x64\x6f\x76\x6f\x58':_0x203e1b(0x91),'\x6d\x4e\x63\x41\x45':_0x203e1b(0x125),'\x50\x52\x63\x6d\x41':_0x203e1b(0x127),'\x6d\x52\x55\x58\x53':'\x73\x75\x35\x77\x71\x75\x58\x6a\x72\x66\x39\x74\x76\x65\x66\x75\x72\x71','\x6b\x50\x73\x78\x4a':_0x203e1b(0xe0),'\x65\x45\x79\x71\x6c':_0x203e1b(0xf2),'\x4f\x59\x6c\x48\x53':_0x203e1b(0xbe),'\x66\x72\x6e\x69\x6a':'\x75\x78\x76\x56\x44\x67\x65\x47\x7a\x78\x48\x4a\x7a\x77\x76\x4b\x7a\x77\x71\x36\x69\x61','\x4d\x66\x44\x69\x6c':_0x203e1b(0x90),'\x69\x46\x6f\x4e\x6b':_0x203e1b(0x96),'\x76\x45\x78\x69\x77':_0x203e1b(0x120),'\x53\x48\x4f\x41\x78':_0x203e1b(0x13a),'\x71\x50\x5a\x61\x50':_0x203e1b(0x9b),'\x67\x6d\x70\x4f\x58':_0x203e1b(0xc0),'\x79\x70\x48\x57\x44':_0x203e1b(0xda),'\x76\x70\x57\x51\x6b':'\x42\x75\x50\x74\x41\x32\x6d','\x54\x55\x4e\x71\x58':'\x7a\x77\x35\x4b\x43\x67\x39\x50\x42\x4e\x71','\x70\x76\x49\x5a\x44':_0x203e1b(0xdd),'\x52\x5a\x61\x79\x6d':_0x203e1b(0x85),'\x65\x79\x51\x70\x63':_0x203e1b(0xc5),'\x4a\x6f\x53\x4a\x42':_0x203e1b(0xba),'\x6d\x6a\x44\x55\x4c':_0x203e1b(0xfe),'\x54\x54\x59\x51\x6e':_0x203e1b(0xf3),'\x68\x43\x47\x43\x69':_0x203e1b(0x9d),'\x78\x6d\x4e\x74\x70':_0x203e1b(0x118),'\x57\x47\x6f\x49\x66':_0x203e1b(0x112),'\x58\x7a\x6f\x67\x41':_0x203e1b(0x108),'\x4a\x51\x6f\x74\x51':_0x203e1b(0xa7),'\x56\x7a\x4c\x53\x78':_0x203e1b(0xf7),'\x76\x69\x63\x67\x79':'\x42\x4d\x66\x54\x7a\x71','\x4a\x77\x69\x71\x4b':_0x203e1b(0x86),'\x57\x63\x79\x6b\x63':_0x203e1b(0xf1),'\x55\x76\x4c\x55\x73':_0x203e1b(0x116)},_0x45f8b0=[_0x203e1b(0x104),_0x13196e['\x46\x72\x7a\x52\x70'],_0x203e1b(0x138),_0x203e1b(0x83),'\x42\x32\x6a\x51\x7a\x77\x6e\x30',_0x203e1b(0x130),'\x41\x78\x6e\x67\x41\x77\x35\x50\x44\x67\x75',_0x203e1b(0xc6),_0x203e1b(0xc7),_0x13196e[_0x203e1b(0x105)],'\x42\x65\x44\x74\x41\x66\x4f',_0x13196e['\x68\x6a\x6e\x61\x70'],_0x203e1b(0xa6),_0x13196e['\x55\x55\x4d\x63\x76'],_0x13196e[_0x203e1b(0x98)],'\x74\x4b\x39\x75\x78\x30\x4c\x6e\x75\x65\x58\x66\x74\x75\x76\x6f\x76\x65\x76\x65',_0x203e1b(0xf8),_0x203e1b(0xd6),_0x13196e[_0x203e1b(0x70)],'\x43\x67\x66\x30\x41\x61',_0x203e1b(0x10c),'\x6c\x33\x6e\x50\x7a\x67\x76\x4a\x79\x78\x6a\x5a','\x75\x32\x76\x59\x44\x4d\x76\x59\x72\x78\x6a\x59\x42\x33\x69','\x41\x31\x66\x74\x7a\x76\x69',_0x203e1b(0x107),_0x13196e[_0x203e1b(0xd3)],_0x13196e[_0x203e1b(0xa0)],_0x13196e['\x6d\x4e\x63\x41\x45'],_0x203e1b(0xe8),_0x13196e['\x50\x52\x63\x6d\x41'],_0x13196e[_0x203e1b(0xdc)],'\x76\x30\x44\x4f\x75\x76\x4f',_0x203e1b(0x13c),_0x203e1b(0xde),_0x13196e[_0x203e1b(0xee)],_0x203e1b(0x122),'\x75\x32\x66\x55\x7a\x67\x6a\x56\x45\x65\x76\x59\x43\x4d\x39\x59',_0x13196e[_0x203e1b(0x101)],_0x13196e[_0x203e1b(0xa4)],_0x13196e[_0x203e1b(0xbb)],_0x13196e[_0x203e1b(0xcc)],_0x203e1b(0x115),'\x44\x65\x58\x6f\x44\x67\x30',_0x203e1b(0x103),_0x13196e['\x69\x46\x6f\x4e\x6b'],_0x13196e['\x76\x45\x78\x69\x77'],_0x13196e['\x53\x48\x4f\x41\x78'],_0x203e1b(0xa9),_0x13196e[_0x203e1b(0x71)],_0x13196e[_0x203e1b(0x7c)],_0x203e1b(0x121),_0x13196e[_0x203e1b(0xdb)],_0x203e1b(0xd7),'\x43\x33\x72\x59\x41\x77\x35\x4e',_0x203e1b(0x11c),_0x203e1b(0x8f),_0x203e1b(0xbd),_0x203e1b(0xe6),_0x13196e[_0x203e1b(0xbf)],_0x203e1b(0xa8),_0x13196e['\x54\x55\x4e\x71\x58'],_0x203e1b(0x109),_0x203e1b(0xe7),'\x6d\x4a\x65\x30\x6d\x4a\x71\x58\x6e\x4e\x62\x58\x77\x4b\x44\x6b\x45\x71',_0x13196e[_0x203e1b(0x12c)],'\x43\x4d\x76\x5a\x42\x33\x76\x59\x79\x32\x76\x6a\x7a\x61',_0x13196e[_0x203e1b(0xa2)],_0x203e1b(0xd0),_0x13196e[_0x203e1b(0x9c)],_0x13196e[_0x203e1b(0xb6)],_0x13196e[_0x203e1b(0x11f)],_0x203e1b(0x7e),_0x203e1b(0x10a),_0x13196e['\x54\x54\x59\x51\x6e'],_0x13196e[_0x203e1b(0x6f)],'\x71\x78\x76\x30\x41\x67\x76\x55\x44\x67\x4c\x4a\x79\x78\x72\x50\x42\x32\x34\x47\x7a\x4d\x66\x50\x42\x67\x76\x4b',_0x203e1b(0x13f),_0x13196e['\x78\x6d\x4e\x74\x70'],_0x13196e[_0x203e1b(0x13b)],_0x203e1b(0x11a),_0x13196e[_0x203e1b(0x134)],_0x203e1b(0x87),_0x13196e['\x4a\x51\x6f\x74\x51'],'\x45\x63\x31\x5a\x41\x77\x72\x4c\x79\x32\x66\x59\x6c\x78\x7a\x4c\x43\x4e\x6e\x50\x42\x32\x34','\x7a\x68\x66\x6b\x42\x75\x69',_0x203e1b(0x7a),_0x203e1b(0x82),_0x203e1b(0xe5),_0x13196e['\x56\x7a\x4c\x53\x78'],_0x203e1b(0xf5),_0x13196e[_0x203e1b(0x10f)],_0x203e1b(0xc9),_0x13196e[_0x203e1b(0xed)],_0x203e1b(0xe2),_0x13196e[_0x203e1b(0x81)],_0x13196e['\x55\x76\x4c\x55\x73'],_0x203e1b(0x106),'\x6d\x5a\x6d\x33\x6e\x5a\x4b\x35\x6e\x30\x54\x32\x79\x33\x66\x4e\x74\x57',_0x203e1b(0xb3)];return a0_0x2f24=function(){return _0x45f8b0;},a0_0x2f24();}function a0_0x5046(){const _0x1aa79f=['\x43\x32\x48\x50\x7a\x4e\x71','\x43\x75\x35\x41\x44\x33\x61','\x44\x67\x58\x64\x79\x4b\x47','\x45\x68\x48\x4a\x76\x66\x6d','\x71\x4e\x44\x32\x6d\x65\x66\x4e\x6f\x75\x53','\x72\x67\x66\x54\x72\x67\x75','\x42\x68\x44\x69\x72\x31\x43','\x73\x4d\x39\x74\x73\x4b\x69','\x44\x67\x39\x74\x44\x68\x6a\x50\x42\x4d\x43','\x45\x78\x72\x57\x76\x75\x4b','\x69\x67\x35\x56\x44\x63\x62\x4d\x42\x33\x76\x55\x7a\x64\x4f\x47','\x42\x78\x72\x31\x6e\x67\x31\x30\x42\x76\x4c\x56\x7a\x74\x4c\x50\x43\x33\x44\x4d\x74\x68\x4c\x68','\x7a\x4e\x6a\x55\x41\x77\x4f','\x77\x4b\x48\x52\x42\x77\x65','\x44\x65\x30\x35\x6d\x68\x6a\x6e\x6f\x74\x66\x63\x74\x78\x6a\x4d\x71\x30\x35\x51\x76\x4b\x6e\x68','\x71\x30\x31\x4d\x6d\x68\x50\x32\x6f\x76\x6e\x62\x44\x5a\x66\x71\x72\x67\x65','\x44\x4e\x62\x78\x75\x77\x53','\x45\x4e\x48\x51\x77\x75\x69\x5a\x41\x71','\x73\x4b\x58\x33\x7a\x75\x66\x6e','\x73\x75\x58\x48\x41\x76\x4f','\x74\x67\x31\x5a\x71\x4d\x57','\x79\x32\x48\x48\x43\x4b\x6e\x56\x7a\x67\x76\x62\x44\x61','\x71\x4a\x6e\x51\x75\x68\x4f\x59\x74\x66\x75','\x71\x5a\x6a\x4d\x76\x78\x50\x4e\x41\x4c\x7a\x66\x79\x5a\x66\x69\x71\x32\x44\x6c','\x71\x5a\x6e\x59\x73\x65\x72\x4f\x44\x4c\x4f','\x75\x4d\x76\x5a\x42\x33\x76\x59\x79\x32\x75','\x71\x30\x35\x32\x76\x75\x72\x4e\x74\x66\x72\x36\x43\x71','\x72\x32\x72\x73\x71\x4b\x38','\x41\x4d\x35\x36\x74\x30\x71','\x74\x77\x7a\x65\x41\x77\x57','\x45\x65\x58\x49\x73\x4c\x4f','\x73\x67\x44\x56\x7a\x77\x34','\x77\x4c\x6e\x68\x43\x4c\x71','\x44\x65\x35\x69\x75\x65\x76\x6f\x74\x57','\x43\x67\x66\x30\x41\x61','\x76\x65\x4c\x6e\x72\x75\x39\x76\x76\x61','\x75\x75\x54\x34\x75\x32\x53','\x6e\x64\x69\x57\x6d\x5a\x71\x34\x6f\x66\x6a\x4b\x43\x33\x6e\x76\x75\x57','\x76\x4c\x62\x51\x43\x4e\x69','\x71\x30\x31\x32\x77\x4b\x69\x5a\x44\x4c\x4c\x35\x6d\x4e\x7a\x31\x72\x78\x48\x49\x74\x61','\x44\x77\x48\x49\x41\x30\x72\x4d\x79\x71','\x77\x78\x62\x30\x76\x68\x47','\x79\x31\x50\x67\x76\x31\x71','\x72\x77\x6d\x58\x6d\x68\x4c\x33\x6e\x75\x35\x63\x7a\x33\x76\x75\x71\x30\x31\x32\x77\x65\x72\x33\x44\x4c\x50\x65\x79\x5a\x66\x78\x45\x78\x48\x59\x74\x57','\x45\x78\x62\x69\x76\x30\x71','\x42\x76\x6a\x76\x77\x66\x6d','\x44\x64\x6a\x59\x7a\x68\x65\x57\x72\x57','\x44\x4d\x44\x6d\x76\x68\x50\x33\x6f\x74\x66\x65\x7a\x78\x7a\x7a\x71\x30\x30\x35\x77\x71','\x45\x4e\x4c\x52\x75\x32\x69','\x44\x77\x44\x65\x43\x30\x6e\x31\x72\x57','\x43\x32\x48\x5a\x43\x4c\x69','\x45\x74\x6e\x32\x77\x75\x6e\x6e\x44\x4c\x76\x65\x7a\x4d\x34\x57\x45\x78\x48\x59\x74\x61','\x6e\x4e\x6e\x69\x44\x75\x50\x6d\x71\x47','\x73\x4c\x72\x53\x45\x4c\x6d','\x45\x74\x6e\x32\x77\x75\x6e\x6e\x44\x4c\x76\x65\x79\x71','\x45\x74\x69\x35\x73\x33\x50\x58','\x71\x4b\x30\x35\x6d\x57','\x72\x67\x44\x6d\x76\x68\x50\x33\x6f\x74\x66\x65\x7a\x74\x66\x41','\x44\x4d\x58\x69\x7a\x4b\x38','\x6d\x74\x6a\x74\x43\x33\x44\x7a\x43\x32\x75','\x73\x4e\x4c\x76\x77\x4d\x65','\x72\x75\x39\x74\x7a\x32\x34','\x73\x4e\x44\x50\x43\x75\x53','\x41\x31\x62\x5a\x45\x65\x4f','\x6d\x5a\x43\x5a\x6d\x74\x69\x30\x75\x78\x4c\x55\x77\x77\x39\x75','\x42\x67\x4c\x30\x44\x65\x4f','\x43\x78\x7a\x32\x44\x78\x6e\x4d\x6f\x77\x7a\x31\x74\x67\x50\x57\x44\x75\x43','\x42\x78\x72\x4c\x6d\x32\x35\x41\x45\x74\x6a\x54\x7a\x32\x7a\x53\x45\x4e\x76\x32\x75\x78\x44\x58','\x45\x4b\x54\x59\x43\x78\x44\x32\x72\x57','\x41\x68\x66\x74\x7a\x75\x4f','\x45\x74\x69\x35\x76\x75\x72\x4f\x41\x4c\x7a\x63\x79\x5a\x66\x78\x71\x4d\x44\x4d\x76\x78\x50\x58','\x42\x78\x72\x4c\x6e\x67\x31\x4b\x79\x76\x4c\x56\x44\x68\x50\x79\x44\x77\x48\x6d\x42\x78\x6e\x31\x42\x71','\x71\x4d\x44\x32\x76\x78\x4f\x5a\x43\x4b\x38','\x42\x74\x6e\x65\x7a\x4b\x6e\x31\x42\x4c\x4c\x31\x79\x71','\x43\x4d\x76\x5a\x42\x33\x76\x59\x79\x32\x76\x6a\x7a\x61','\x7a\x4e\x6a\x56\x42\x75\x6e\x4f\x79\x78\x6a\x64\x42\x32\x72\x4c','\x75\x4d\x76\x58\x44\x77\x76\x5a\x44\x63\x62\x30\x41\x77\x31\x4c\x7a\x63\x62\x56\x44\x78\x71\x47\x79\x77\x7a\x30\x7a\x78\x69\x47','\x45\x4e\x66\x49\x79\x33\x65','\x75\x33\x44\x35\x79\x4b\x30','\x71\x5a\x6a\x6d\x73\x33\x50\x33\x42\x4b\x48\x64\x74\x68\x50\x6d\x71\x30\x35\x55\x75\x65\x69\x59\x6e\x61','\x77\x77\x35\x71\x72\x65\x79','\x77\x76\x44\x48\x43\x75\x65','\x7a\x75\x76\x35\x43\x77\x57','\x7a\x4e\x62\x33\x73\x4b\x57','\x44\x33\x48\x51\x43\x4e\x76\x34\x71\x57','\x71\x32\x48\x49\x6d\x68\x4f\x57\x6e\x61','\x77\x78\x4c\x52\x72\x32\x69','\x72\x77\x6d\x58\x77\x4b\x66\x33\x43\x4b\x58\x35\x6d\x4d\x7a\x7a\x42\x68\x44\x6d\x76\x68\x4c\x33\x72\x65\x57','\x42\x4b\x35\x69\x6d\x4b\x65\x59\x77\x65\x66\x36\x79\x71','\x71\x4d\x44\x6d\x76\x65\x66\x34\x43\x71','\x44\x65\x35\x65\x45\x65\x6a\x34\x74\x57','\x71\x32\x44\x4d\x77\x75\x6d\x59\x44\x71','\x44\x78\x48\x32\x76\x4b\x72\x4e\x7a\x4d\x7a\x64\x74\x4d\x50\x77\x71\x30\x43','\x71\x77\x44\x4d\x77\x47','\x7a\x68\x50\x59\x41\x4e\x4f','\x74\x68\x50\x33\x44\x4b\x53','\x44\x4d\x4c\x4a\x7a\x33\x4b','\x43\x4d\x76\x30\x43\x4e\x4b\x54\x79\x77\x7a\x30\x7a\x78\x69','\x79\x32\x48\x48\x43\x4b\x66\x30','\x42\x4d\x72\x64\x6d\x32\x35\x4b\x7a\x74\x76\x62\x6d\x75\x72\x71\x45\x4e\x48\x59\x41\x47','\x43\x68\x76\x5a\x41\x61','\x43\x78\x66\x68\x42\x30\x57','\x44\x78\x7a\x65\x44\x33\x6e\x6c\x42\x71','\x44\x65\x53\x35\x44\x78\x47\x57\x45\x4e\x62\x32\x44\x74\x76\x4c','\x76\x4b\x66\x6d\x73\x75\x72\x62\x76\x65\x4c\x70\x74\x4c\x39\x66\x75\x4c\x6a\x70\x75\x47','\x71\x4e\x44\x32\x77\x4b\x6d\x59\x7a\x4b\x35\x36\x43\x71','\x76\x4c\x76\x7a\x43\x31\x69','\x71\x4d\x44\x4d\x77\x4e\x72\x31\x74\x57','\x7a\x30\x35\x55\x73\x31\x4b','\x44\x65\x54\x32\x44\x78\x79\x57\x6f\x78\x6e\x5a\x6d\x74\x4c\x4d\x44\x75\x58\x51\x43\x68\x76\x68','\x76\x4d\x66\x53\x41\x77\x72\x48\x44\x67\x4c\x56\x42\x4b\x76\x59\x43\x4d\x39\x59','\x6d\x74\x65\x34\x6d\x74\x4b\x35\x6d\x5a\x62\x5a\x76\x4d\x50\x33\x45\x68\x65','\x42\x77\x50\x65\x76\x75\x57','\x45\x74\x6a\x6d\x6d\x68\x6e\x4c\x75\x57','\x42\x78\x72\x49\x7a\x4b\x65\x57\x77\x67\x76\x64\x6d\x78\x65','\x72\x77\x6d\x58\x76\x4b\x6e\x6e\x42\x4b\x39\x36\x45\x67\x34\x57\x71\x30\x31\x4d\x6d\x65\x69\x5a\x41\x76\x72\x65\x74\x78\x7a\x7a\x71\x5a\x6a\x6d\x76\x4b\x6a\x68','\x43\x77\x35\x33\x71\x30\x34','\x72\x30\x44\x57\x73\x67\x69','\x44\x74\x6e\x71\x75\x33\x6e\x6c\x74\x57','\x43\x4d\x76\x5a\x42\x33\x76\x59\x79\x32\x76\x75\x45\x78\x62\x4c','\x71\x5a\x6a\x6d\x73\x33\x50\x33\x42\x4b\x48\x64\x72\x57','\x71\x77\x58\x41\x75\x4d\x4b','\x73\x32\x35\x4d\x75\x32\x75','\x43\x4d\x76\x30\x43\x4e\x4c\x62\x7a\x4e\x72\x4c\x43\x4b\x31\x5a','\x7a\x77\x35\x6e\x79\x4e\x4b','\x43\x68\x7a\x6a\x77\x4b\x71','\x43\x67\x31\x63\x7a\x67\x57','\x77\x4d\x72\x7a\x76\x77\x65','\x43\x32\x4c\x4b\x7a\x77\x6e\x48\x43\x4c\x7a\x4c\x43\x4e\x6e\x50\x42\x32\x34','\x72\x65\x54\x79\x76\x33\x4f\x59\x45\x71','\x45\x63\x31\x5a\x41\x77\x72\x4c\x79\x32\x66\x59\x6c\x77\x4c\x54\x79\x77\x44\x4c\x6c\x78\x72\x48\x7a\x57','\x44\x31\x50\x49\x73\x30\x38','\x75\x76\x6a\x4c\x74\x31\x61','\x77\x68\x50\x56\x7a\x30\x65','\x41\x67\x66\x5a','\x45\x75\x58\x34\x7a\x75\x34','\x44\x4d\x44\x41\x73\x68\x4b','\x71\x30\x31\x32\x6d\x65\x6e\x6f\x74\x67\x6a\x36\x74\x4e\x6a\x6d\x71\x30\x53\x58\x77\x47','\x42\x67\x4c\x54\x41\x78\x71','\x42\x64\x6a\x6d\x76\x75\x6d\x5a\x43\x4b\x48\x63\x74\x77\x35\x6d\x71\x31\x43','\x76\x30\x44\x56\x73\x77\x79','\x45\x4e\x76\x79\x76\x65\x6a\x6c\x6d\x61','\x6d\x74\x71\x34\x6e\x4a\x6a\x73\x42\x31\x44\x30\x79\x30\x43','\x43\x67\x7a\x6f\x79\x4d\x38','\x45\x4a\x6a\x32\x6d\x61','\x43\x75\x58\x78\x72\x30\x53','\x76\x75\x48\x70\x42\x4c\x69','\x71\x30\x31\x32\x77\x65\x72\x33\x74\x66\x4c\x36\x44\x33\x6a\x30\x72\x67\x44\x4d\x6d\x68\x50\x58','\x42\x77\x76\x5a\x43\x32\x66\x4e\x7a\x71','\x44\x77\x6a\x64\x71\x4c\x61','\x41\x65\x6e\x68\x71\x32\x4b','\x72\x31\x7a\x73\x44\x4b\x75','\x43\x76\x62\x41\x79\x76\x61','\x7a\x30\x54\x54\x42\x78\x4f','\x42\x30\x4c\x59\x71\x31\x79','\x75\x76\x6a\x78\x43\x31\x6d','\x42\x77\x66\x34','\x76\x67\x48\x79\x7a\x30\x71','\x71\x4e\x4c\x59\x42\x66\x4f','\x72\x67\x48\x51\x75\x65\x6a\x58','\x76\x66\x44\x48\x43\x68\x43','\x42\x78\x72\x31\x6d\x4d\x35\x30\x43\x4e\x66\x66\x7a\x31\x48\x33\x44\x4a\x6e\x50','\x76\x78\x6e\x6f\x74\x76\x61','\x7a\x32\x31\x57\x74\x31\x47','\x79\x4b\x66\x4a\x45\x66\x6d','\x45\x74\x6a\x4d\x41\x68\x6a\x4d\x72\x57','\x42\x33\x6a\x50\x7a\x32\x4c\x55','\x7a\x77\x35\x4b\x43\x67\x39\x50\x42\x4e\x71','\x76\x32\x6e\x35\x41\x32\x6d','\x71\x4e\x44\x4d\x6e\x61','\x71\x33\x48\x32\x76\x4b\x72\x4e\x7a\x4e\x76\x66\x45\x67\x6a\x6d','\x43\x4c\x4c\x33\x79\x75\x76\x77','\x44\x74\x62\x32\x43\x33\x7a\x6c\x44\x4e\x6e\x34\x6d\x68\x7a\x5a\x44\x75\x53\x35\x43\x57','\x45\x4d\x44\x32\x6d\x68\x4c\x33\x74\x66\x6e\x64\x76\x57','\x45\x74\x69\x35\x76\x75\x72\x4e\x7a\x4c\x62\x63\x74\x78\x7a\x7a\x43\x33\x43\x58\x73\x68\x4f\x59\x44\x71','\x41\x78\x6e\x67\x41\x77\x35\x50\x44\x67\x75','\x6e\x74\x6e\x67\x42\x65\x72\x79\x71\x32\x4f','\x6d\x4a\x79\x57\x6e\x64\x6d\x5a\x76\x32\x4c\x75\x76\x77\x76\x67','\x42\x4c\x4c\x57\x74\x67\x43','\x74\x75\x44\x66\x77\x78\x47','\x79\x4b\x50\x64\x75\x32\x34','\x6e\x64\x71\x33\x6e\x4a\x61\x58\x74\x78\x76\x4d\x75\x4b\x6e\x58','\x44\x74\x6e\x59\x73\x65\x72\x4e\x44\x4d\x7a\x64\x74\x4d\x50\x77\x71\x30\x43','\x71\x4b\x35\x32\x76\x68\x4c\x6e\x44\x4c\x4b','\x71\x32\x75\x31\x45\x78\x6a\x6c\x72\x57','\x42\x67\x76\x55\x7a\x33\x72\x4f','\x43\x67\x35\x31\x41\x4c\x69','\x79\x30\x31\x4e\x45\x4c\x43','\x74\x65\x58\x6c\x72\x4d\x43','\x72\x67\x44\x32\x77\x4b\x72\x48','\x71\x75\x58\x34\x71\x75\x31\x74','\x42\x4c\x72\x4d\x44\x4d\x57','\x75\x76\x76\x70\x76\x65\x66\x46\x72\x76\x48\x64\x72\x75\x76\x65\x72\x75\x71','\x42\x65\x39\x51\x77\x77\x6d','\x44\x4e\x43\x31\x75\x4b\x6a\x6e\x6f\x74\x6e\x63\x73\x77\x6a\x6d\x71\x30\x35\x51\x76\x4b\x6e\x68','\x7a\x78\x4c\x72\x43\x67\x6d','\x72\x77\x6d\x58\x77\x4b\x66\x33\x43\x4b\x58\x35\x6d\x4d\x7a\x7a\x42\x68\x44\x6d\x76\x68\x4c\x33\x72\x65\x58\x53\x45\x68\x6a\x69\x45\x4c\x43','\x6d\x4a\x75\x57\x6e\x5a\x65\x57\x79\x4e\x50\x65\x41\x4e\x44\x54','\x7a\x32\x66\x48\x44\x4d\x71','\x7a\x67\x39\x32\x42\x31\x47','\x44\x67\x76\x5a\x44\x61','\x75\x4c\x50\x48\x45\x77\x30','\x43\x33\x76\x68\x44\x77\x75','\x74\x31\x4c\x53\x73\x66\x6d','\x45\x63\x31\x30\x79\x77\x35\x4e\x42\x67\x75\x54\x43\x4d\x76\x58\x44\x77\x76\x5a\x44\x63\x31\x57\x79\x78\x72\x4f','\x42\x64\x6e\x35\x77\x67\x58\x78','\x72\x68\x43\x31\x75\x4b\x6a\x6e\x6f\x74\x6e\x63\x72\x57','\x45\x74\x6a\x4d\x6d\x75\x6d\x59\x44\x71','\x45\x4b\x31\x6d\x74\x65\x6a\x4e\x43\x4c\x4f','\x41\x78\x6e\x6f\x79\x75\x34','\x75\x68\x6e\x6c\x43\x33\x69','\x74\x67\x66\x63\x73\x30\x34','\x45\x4c\x62\x63\x75\x76\x79','\x45\x77\x50\x52\x41\x76\x6d'];a0_0x5046=function(){return _0x1aa79f;};return a0_0x5046();}const a0_0x1c5d27=a0_0x41d1;(function(_0x1db75c,_0x49ebd8){const _0x72cba9=a0_0x20e3,_0x3cda64={'\x5a\x48\x6b\x6d\x61':function(_0x3714f6,_0x2d8a69){return _0x3714f6+_0x2d8a69;},'\x7a\x79\x6b\x53\x62':function(_0x3b6979,_0x322243){return _0x3b6979+_0x322243;},'\x4a\x54\x6c\x7a\x53':function(_0x4dc89a,_0x467487){return _0x4dc89a/_0x467487;},'\x71\x6e\x77\x43\x4e':function(_0x1fec9f,_0x2c08f0){return _0x1fec9f(_0x2c08f0);},'\x76\x67\x5a\x48\x79':function(_0x4db1b3,_0x25d19b){return _0x4db1b3/_0x25d19b;},'\x73\x68\x73\x72\x52':function(_0xe27e67,_0x745ed3){return _0xe27e67(_0x745ed3);},'\x6a\x69\x62\x69\x4b':function(_0x35ce4f,_0x30889d){return _0x35ce4f(_0x30889d);},'\x67\x4b\x6d\x6d\x7a':function(_0x763c22,_0x463388){return _0x763c22/_0x463388;},'\x47\x6c\x5a\x58\x4e':function(_0x481135,_0x103014){return _0x481135(_0x103014);},'\x47\x64\x52\x42\x4f':function(_0x4c3fce,_0x359cc3){return _0x4c3fce*_0x359cc3;},'\x42\x79\x72\x6c\x5a':function(_0x414500,_0x224526){return _0x414500(_0x224526);},'\x63\x75\x52\x42\x63':function(_0x57b62e,_0x2189db){return _0x57b62e(_0x2189db);},'\x6b\x6e\x6a\x75\x6f':_0x72cba9(0xaf),'\x75\x62\x43\x42\x50':_0x72cba9(0x113)},_0x38b666=a0_0x41d1,_0xe3f3ad=_0x1db75c();while(!![]){try{const _0x1c1977=_0x3cda64[_0x72cba9(0xbc)](_0x3cda64[_0x72cba9(0xbc)](_0x3cda64[_0x72cba9(0xdf)](_0x3cda64[_0x72cba9(0xe4)](-_0x3cda64['\x71\x6e\x77\x43\x4e'](parseInt,_0x38b666(0xbf)),0x1),_0x3cda64[_0x72cba9(0x137)](_0x3cda64[_0x72cba9(0x123)](parseInt,_0x38b666(0xc6)),0x2)*_0x3cda64[_0x72cba9(0xe4)](parseInt(_0x3cda64[_0x72cba9(0xe1)](_0x38b666,0xe4)),0x3))+parseInt(_0x38b666(0xb6))/0x4,-parseInt(_0x38b666(0x96))/0x5)+_0x3cda64['\x4a\x54\x6c\x7a\x53'](parseInt(_0x38b666(0xec)),0x6)*(-_0x3cda64['\x6a\x69\x62\x69\x4b'](parseInt,_0x38b666(0xd2))/0x7)+_0x3cda64[_0x72cba9(0x72)](-_0x3cda64[_0x72cba9(0x123)](parseInt,_0x3cda64['\x47\x6c\x5a\x58\x4e'](_0x38b666,0xb0)),0x8),_0x3cda64[_0x72cba9(0xca)](_0x3cda64[_0x72cba9(0x72)](parseInt(_0x3cda64[_0x72cba9(0x77)](_0x38b666,0xdd)),0x9),_0x3cda64['\x63\x75\x52\x42\x63'](parseInt,_0x38b666(0xa3))/0xa));if(_0x1c1977===_0x49ebd8)break;else _0xe3f3ad[_0x72cba9(0x113)](_0xe3f3ad[_0x3cda64['\x6b\x6e\x6a\x75\x6f']]());}catch(_0x4437ae){_0xe3f3ad[_0x3cda64[_0x72cba9(0x6e)]](_0xe3f3ad[_0x72cba9(0xaf)]());}}}(a0_0x2f24,0x3d463));function a0_0x20e3(_0x2ffc55,_0x151cf4){_0x2ffc55=_0x2ffc55-0x6a;const _0x5046de=a0_0x5046();let _0x20e390=_0x5046de[_0x2ffc55];if(a0_0x20e3['\x71\x63\x54\x58\x51\x6c']===undefined){var _0x2dc8f1=function(_0x22f995){const _0x5bc85a='\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 _0x400239='',_0x1f753b='';for(let _0x564a29=0x0,_0x5b9d6f,_0xce10c5,_0x152d1e=0x0;_0xce10c5=_0x22f995['\x63\x68\x61\x72\x41\x74'](_0x152d1e++);~_0xce10c5&&(_0x5b9d6f=_0x564a29%0x4?_0x5b9d6f*0x40+_0xce10c5:_0xce10c5,_0x564a29++%0x4)?_0x400239+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0x5b9d6f>>(-0x2*_0x564a29&0x6)):0x0){_0xce10c5=_0x5bc85a['\x69\x6e\x64\x65\x78\x4f\x66'](_0xce10c5);}for(let _0x497c4f=0x0,_0x1a33fd=_0x400239['\x6c\x65\x6e\x67\x74\x68'];_0x497c4f<_0x1a33fd;_0x497c4f++){_0x1f753b+='\x25'+('\x30\x30'+_0x400239['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x497c4f)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x1f753b);};a0_0x20e3['\x5a\x62\x70\x5a\x56\x75']=_0x2dc8f1,a0_0x20e3['\x5a\x4b\x74\x52\x50\x73']={},a0_0x20e3['\x71\x63\x54\x58\x51\x6c']=!![];}const _0x1637c4=_0x5046de[0x0],_0x186a0f=_0x2ffc55+_0x1637c4,_0x3bd444=a0_0x20e3['\x5a\x4b\x74\x52\x50\x73'][_0x186a0f];return!_0x3bd444?(_0x20e390=a0_0x20e3['\x5a\x62\x70\x5a\x56\x75'](_0x20e390),a0_0x20e3['\x5a\x4b\x74\x52\x50\x73'][_0x186a0f]=_0x20e390):_0x20e390=_0x3bd444,_0x20e390;}function a0_0x41d1(_0x20b4a6,_0x529db5){const _0x5c212b=a0_0x20e3,_0x58bba3={'\x62\x4a\x43\x53\x6e':function(_0x1970c0,_0x5a741f){return _0x1970c0%_0x5a741f;},'\x41\x68\x78\x76\x44':function(_0xd31869,_0x3f72c6){return _0xd31869+_0x3f72c6;},'\x55\x67\x6e\x49\x43':_0x5c212b(0xfa),'\x53\x77\x79\x62\x4d':function(_0x3610b4,_0x5dfc17){return _0x3610b4>>_0x5dfc17;},'\x59\x70\x74\x54\x78':function(_0x372496,_0x31d668){return _0x372496*_0x31d668;},'\x59\x6e\x50\x44\x46':_0x5c212b(0x92),'\x74\x6c\x43\x62\x48':function(_0x4b822e,_0x243adf){return _0x4b822e+_0x243adf;},'\x63\x4d\x67\x7a\x57':function(_0x5f4841,_0x2a3608){return _0x5f4841-_0x2a3608;},'\x49\x4c\x61\x69\x5a':function(_0x5399c2,_0x13d954){return _0x5399c2===_0x13d954;},'\x5a\x53\x47\x72\x54':_0x5c212b(0x84)};_0x20b4a6=_0x58bba3[_0x5c212b(0x94)](_0x20b4a6,0x91);const _0x5e4b20=a0_0x2f24();let _0x3ef594=_0x5e4b20[_0x20b4a6];if(_0x58bba3[_0x5c212b(0xc2)](a0_0x41d1[_0x58bba3[_0x5c212b(0xcf)]],undefined)){var _0x5f29a7=function(_0x157eae){const _0x3305c1=_0x5c212b,_0x44dcd3='\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 _0x235152='',_0x1517b8='';for(let _0x19cc0d=0x0,_0x2e4c17,_0x10347c,_0x22e4f3=0x0;_0x10347c=_0x157eae[_0x3305c1(0x111)](_0x22e4f3++);~_0x10347c&&(_0x2e4c17=_0x58bba3['\x62\x4a\x43\x53\x6e'](_0x19cc0d,0x4)?_0x58bba3['\x41\x68\x78\x76\x44'](_0x2e4c17*0x40,_0x10347c):_0x10347c,_0x58bba3[_0x3305c1(0x8d)](_0x19cc0d++,0x4))?_0x235152+=String[_0x58bba3['\x55\x67\x6e\x49\x43']](0xff&_0x58bba3[_0x3305c1(0xfd)](_0x2e4c17,_0x58bba3[_0x3305c1(0xd8)](-0x2,_0x19cc0d)&0x6)):0x0){_0x10347c=_0x44dcd3['\x69\x6e\x64\x65\x78\x4f\x66'](_0x10347c);}for(let _0x334a4e=0x0,_0x15cf12=_0x235152[_0x58bba3[_0x3305c1(0xff)]];_0x334a4e<_0x15cf12;_0x334a4e++){_0x1517b8+='\x25'+_0x58bba3[_0x3305c1(0xb1)]('\x30\x30',_0x235152[_0x3305c1(0xc4)](_0x334a4e)[_0x3305c1(0xb7)](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x1517b8);};a0_0x41d1['\x4a\x4c\x77\x65\x41\x4d']=_0x5f29a7,a0_0x41d1['\x41\x4c\x78\x41\x4d\x53']={},a0_0x41d1[_0x5c212b(0x84)]=!![];}const _0x1b2efa=_0x5e4b20[0x0],_0x2280ea=_0x20b4a6+_0x1b2efa,_0x2d7b53=a0_0x41d1['\x41\x4c\x78\x41\x4d\x53'][_0x2280ea];return!_0x2d7b53?(_0x3ef594=a0_0x41d1[_0x5c212b(0xc1)](_0x3ef594),a0_0x41d1[_0x5c212b(0x97)][_0x2280ea]=_0x3ef594):_0x3ef594=_0x2d7b53,_0x3ef594;}var SandboxError=class extends Error{['\x73\x74\x61\x74\x75\x73'];[a0_0x1c5d27(0xaa)];[a0_0x576bf7(0x7f)];[a0_0x576bf7(0x80)];[a0_0x576bf7(0x12a)];[a0_0x576bf7(0x12f)];[a0_0x1c5d27(0xc2)];constructor(_0x2a64e1,_0x377ac2,_0x4cceca,_0x1bff52){const _0x3b9d36=a0_0x576bf7,_0x3d51fc={'\x6f\x49\x72\x43\x56':function(_0x42faf4,_0x4c9199){return _0x42faf4(_0x4c9199);},'\x52\x5a\x6d\x46\x6f':function(_0x5e0a2c,_0x570cf7){return _0x5e0a2c(_0x570cf7);},'\x65\x4d\x6e\x62\x58':function(_0x14b2db,_0x360805){return _0x14b2db(_0x360805);},'\x51\x52\x57\x73\x53':_0x3b9d36(0x7f),'\x67\x61\x61\x76\x64':function(_0x464e4b,_0x13dd9e){return _0x464e4b(_0x13dd9e);}},_0x1aadc5=a0_0x1c5d27,_0x112df3={'\x51\x57\x56\x4a\x43':_0x3d51fc[_0x3b9d36(0x73)](_0x1aadc5,0x95)};super(_0x2a64e1),this[_0x3d51fc['\x52\x5a\x6d\x46\x6f'](_0x1aadc5,0xcb)]=_0x112df3[_0x3d51fc['\x65\x4d\x6e\x62\x58'](_0x1aadc5,0x9a)],this[_0x1aadc5(0xaa)]=_0x377ac2,this[_0x1aadc5(0xdc)]=_0x4cceca,this[_0x1aadc5(0xb5)]=_0x1bff52?.[_0x3d51fc[_0x3b9d36(0x74)]],this[_0x1aadc5(0xad)]=_0x1bff52?.[_0x3b9d36(0x80)],this[_0x1aadc5(0xd6)]=_0x1bff52?.[_0x3b9d36(0x12a)],this[_0x1aadc5(0xb7)]=_0x1bff52?.[_0x3d51fc['\x67\x61\x61\x76\x64'](_0x1aadc5,0xb7)],this[_0x3d51fc[_0x3b9d36(0x9f)](_0x1aadc5,0xc2)]=_0x1bff52?.[_0x1aadc5(0xc2)];}},AuthError=class extends SandboxError{constructor(_0x4f3955=a0_0x1c5d27(0xbc),_0xae9680){const _0x4b9f7d=a0_0x576bf7,_0x1a4b81={'\x64\x7a\x72\x6a\x7a':function(_0x15e1ff,_0x400379){return _0x15e1ff(_0x400379);},'\x71\x4c\x57\x47\x4b':function(_0x3b6f2d,_0x249c65){return _0x3b6f2d(_0x249c65);},'\x4c\x4c\x4b\x46\x67':'\x41\x75\x74\x68\x45\x72\x72\x6f\x72'},_0x586173=a0_0x1c5d27,_0x55842e={'\x64\x71\x4a\x6d\x42':_0x1a4b81[_0x4b9f7d(0x10d)](_0x586173,0xcf)};super(_0x4f3955,_0x55842e[_0x586173(0xc5)],0x191,_0xae9680),this[_0x1a4b81[_0x4b9f7d(0x6a)](_0x586173,0xcb)]=_0x1a4b81[_0x4b9f7d(0x95)];}},NotFoundError=class extends SandboxError{[a0_0x1c5d27(0xe5)];[a0_0x576bf7(0xf9)];constructor(_0x23e868,_0x4f0e98,_0x59211c){const _0x5a9855=a0_0x576bf7,_0x53f671={'\x68\x71\x53\x65\x4a':function(_0x5552e1,_0x321bed){return _0x5552e1+_0x321bed;},'\x67\x4e\x6e\x4b\x59':function(_0x5477fc,_0x416099){return _0x5477fc+_0x416099;},'\x4a\x79\x55\x5a\x61':function(_0x4f3b94,_0x54b53b){return _0x4f3b94(_0x54b53b);}},_0x311c9c=a0_0x1c5d27,_0x537054={'\x76\x4c\x70\x67\x66':_0x311c9c(0xd0)};super(_0x53f671[_0x5a9855(0xf4)](_0x53f671[_0x5a9855(0x11b)](_0x23e868,_0x5a9855(0xb9)),_0x4f0e98),_0x537054[_0x311c9c(0xd9)],0x194,_0x59211c),this[_0x53f671[_0x5a9855(0xeb)](_0x311c9c,0xcb)]=_0x311c9c(0xa9),this[_0x5a9855(0x126)]=_0x23e868,this[_0x53f671[_0x5a9855(0xeb)](_0x311c9c,0xb2)]=_0x4f0e98;}},QuotaError=class extends SandboxError{[a0_0x1c5d27(0xd7)];[a0_0x1c5d27(0xc8)];[a0_0x1c5d27(0xc1)];[a0_0x1c5d27(0xd6)];constructor(_0x1f7168,_0x270bb2,_0x4a9bb0,_0x242278,_0x220d6d){const _0x188b15=a0_0x576bf7,_0x1783bb={'\x78\x4c\x62\x4a\x5a':_0x188b15(0x99),'\x74\x6e\x77\x5a\x52':function(_0x5a1f7b,_0x1d8338){return _0x5a1f7b+_0x1d8338;},'\x56\x55\x59\x73\x52':function(_0x2fb433,_0xe74918){return _0x2fb433(_0xe74918);}},_0x2e684a=a0_0x1c5d27,_0x539116={'\x53\x7a\x6c\x4a\x4a':_0x1783bb[_0x188b15(0xcd)]};super(_0x270bb2??_0x1783bb['\x74\x6e\x77\x5a\x52'](_0x2e684a(0x98),_0x1f7168),_0x539116[_0x2e684a(0xef)],0x1ad,_0x220d6d),this[_0x1783bb[_0x188b15(0x119)](_0x2e684a,0xcb)]=_0x2e684a(0xed),this[_0x2e684a(0xd7)]=_0x1f7168,this[_0x2e684a(0xc8)]=_0x4a9bb0,this[_0x2e684a(0xc1)]=_0x242278,this[_0x1783bb[_0x188b15(0x119)](_0x2e684a,0xd6)]=_0x220d6d?.[_0x1783bb[_0x188b15(0x119)](_0x2e684a,0xd6)];}},ValidationError=class extends SandboxError{[a0_0x1c5d27(0xa0)];constructor(_0x10ee69,_0x39aaa7,_0x3ae8fb){const _0x1fb9cc=a0_0x576bf7,_0x4e5610={'\x41\x6c\x5a\x52\x69':_0x1fb9cc(0x117),'\x51\x52\x65\x4f\x50':_0x1fb9cc(0x11d),'\x66\x70\x77\x4a\x4c':function(_0x30c042,_0xcccd8b){return _0x30c042(_0xcccd8b);},'\x6d\x51\x53\x4e\x70':_0x1fb9cc(0x93),'\x7a\x71\x62\x63\x71':'\x66\x69\x65\x6c\x64\x73'},_0x1241b7=a0_0x1c5d27,_0x469901={'\x59\x72\x51\x51\x77':_0x4e5610[_0x1fb9cc(0x128)],'\x70\x6e\x75\x6a\x52':_0x4e5610[_0x1fb9cc(0x133)]};super(_0x10ee69,_0x469901[_0x4e5610[_0x1fb9cc(0x102)](_0x1241b7,0x9c)],0x190,_0x3ae8fb),this['\x6e\x61\x6d\x65']=_0x469901[_0x4e5610['\x6d\x51\x53\x4e\x70']],this[_0x4e5610[_0x1fb9cc(0xfc)]]=_0x39aaa7;}},StateError=class extends SandboxError{[a0_0x1c5d27(0xce)];[a0_0x1c5d27(0xe6)];constructor(_0x416ad5,_0x1e81ee,_0x4b0ed0,_0x27b4b6){const _0x22753d=a0_0x576bf7,_0x23525c={'\x55\x73\x4e\x4d\x50':function(_0xa3554c,_0x2c247c){return _0xa3554c(_0x2c247c);},'\x59\x57\x61\x71\x41':function(_0x325b14,_0x218c95){return _0x325b14(_0x218c95);}},_0x32de75=a0_0x1c5d27,_0x319679={'\x74\x4c\x4e\x74\x6d':_0x32de75(0xf2),'\x6b\x51\x53\x65\x52':_0x23525c[_0x22753d(0x7b)](_0x32de75,0xa8)};super(_0x416ad5,_0x319679[_0x23525c[_0x22753d(0x7b)](_0x32de75,0x9b)],0x199,_0x27b4b6),this[_0x32de75(0xcb)]=_0x319679[_0x23525c[_0x22753d(0x7b)](_0x32de75,0xeb)],this[_0x32de75(0xce)]=_0x1e81ee,this[_0x23525c[_0x22753d(0x100)](_0x32de75,0xe6)]=_0x4b0ed0;}},TimeoutError=class extends SandboxError{[a0_0x1c5d27(0xf0)];constructor(_0x3e1715,_0x3a1fc4,_0x384e58){const _0x322400=a0_0x576bf7,_0x83c670={'\x79\x4c\x78\x65\x4e':function(_0x192a6a,_0x5d02a7){return _0x192a6a+_0x5d02a7;},'\x4b\x41\x66\x69\x54':function(_0x519e11,_0x383d7f){return _0x519e11(_0x383d7f);},'\x66\x69\x51\x70\x49':function(_0x56cf43,_0x572df3){return _0x56cf43(_0x572df3);}},_0x2aa2c1=a0_0x1c5d27,_0x123350={'\x63\x61\x47\x44\x58':_0x322400(0xd2),'\x50\x70\x4a\x74\x50':_0x2aa2c1(0x92)};super(_0x3a1fc4??_0x83c670[_0x322400(0x136)](_0x322400(0xfb)+_0x3e1715,'\x6d\x73'),_0x123350[_0x2aa2c1(0xb8)],0x198,_0x384e58),this['\x6e\x61\x6d\x65']=_0x123350[_0x83c670['\x4b\x41\x66\x69\x54'](_0x2aa2c1,0xa5)],this[_0x83c670['\x66\x69\x51\x70\x49'](_0x2aa2c1,0xf0)]=_0x3e1715;}},NetworkError=class extends SandboxError{[a0_0x1c5d27(0xac)];constructor(_0x40c256,_0x311000,_0x5675dd){const _0x489752=a0_0x576bf7,_0x5ba0d4={'\x5a\x64\x59\x55\x61':function(_0x3e707f,_0x9c8374){return _0x3e707f(_0x9c8374);}},_0x19ed06=a0_0x1c5d27,_0x486f59={'\x72\x47\x7a\x72\x6f':function(_0x1947d3,_0x419e04){return _0x1947d3 instanceof _0x419e04;},'\x66\x44\x50\x59\x58':_0x19ed06(0xa7)},_0x3cd02c=_0x486f59[_0x19ed06(0xe1)](_0x311000,Error)?_0x311000:void 0x0,_0x2ce8dd=_0x311000 instanceof Error?_0x5675dd:_0x311000??_0x5675dd;super(_0x40c256,_0x486f59[_0x5ba0d4[_0x489752(0x12e)](_0x19ed06,0xba)],void 0x0,_0x2ce8dd),this[_0x5ba0d4[_0x489752(0x12e)](_0x19ed06,0xcb)]='\x4e\x65\x74\x77\x6f\x72\x6b\x45\x72\x72\x6f\x72',this[_0x19ed06(0xac)]=_0x3cd02c;}},ServerError=class extends SandboxError{constructor(_0x622741,_0x1dfee0=0x1f4,_0x119f87){const _0x3edeee=a0_0x576bf7,_0x2b2741={'\x70\x66\x4e\x62\x6f':function(_0xa458b6,_0x1fb966){return _0xa458b6(_0x1fb966);}},_0x18a48b=a0_0x1c5d27,_0x43112d={'\x70\x4e\x58\x46\x48':_0x2b2741[_0x3edeee(0x13e)](_0x18a48b,0xea)};super(_0x622741,_0x18a48b(0xb3),_0x1dfee0,_0x119f87),this[_0x2b2741[_0x3edeee(0x13e)](_0x18a48b,0xcb)]=_0x43112d[_0x2b2741[_0x3edeee(0x13e)](_0x18a48b,0xee)];}};function parseRetryAfterMs(_0x188f11,_0x3a0521){const _0x4b6191=a0_0x576bf7,_0xfb2b7c={'\x62\x41\x63\x78\x53':function(_0x32220f,_0x20f8db){return _0x32220f*_0x20f8db;},'\x42\x45\x57\x63\x71':function(_0x45586b,_0x229538){return _0x45586b(_0x229538);},'\x50\x68\x4c\x79\x58':function(_0xde726f,_0x1eb460){return _0xde726f(_0x1eb460);},'\x45\x4f\x53\x67\x6e':_0x4b6191(0xaa),'\x48\x67\x6f\x65\x6e':function(_0x4ad29b,_0x2eb8f3){return _0x4ad29b(_0x2eb8f3);},'\x4a\x61\x7a\x6a\x70':function(_0x5e2b37,_0x452b58){return _0x5e2b37-_0x452b58;}},_0x478191=a0_0x1c5d27,_0x11fce9={'\x46\x65\x6e\x4b\x7a':function(_0x5d7e21,_0x2356f2){const _0xc8ac79=_0x4b6191;return _0xfb2b7c[_0xc8ac79(0x7d)](_0x5d7e21,_0x2356f2);}};if(typeof _0x3a0521[_0x478191(0xd6)]===_0x478191(0x99)&&Number[_0x4b6191(0x88)](_0x3a0521[_0x478191(0xd6)]))return Math[_0x478191(0xc7)](0x0,_0x3a0521[_0xfb2b7c['\x42\x45\x57\x63\x71'](_0x478191,0xd6)]);if(!_0x188f11)return void 0x0;const _0x103190=_0x188f11[_0x478191(0xe2)]();if(!_0x103190)return void 0x0;const _0x364a0b=Number(_0x103190);if(Number[_0xfb2b7c['\x50\x68\x4c\x79\x58'](_0x478191,0xda)](_0x364a0b))return _0x11fce9['\x46\x65\x6e\x4b\x7a'](Math[_0x4b6191(0x75)](0x0,_0x364a0b),0x3e8);const _0x5a6d83=Date[_0x478191(0xb9)](_0x103190);if(!Number[_0xfb2b7c[_0x4b6191(0xec)]](_0x5a6d83))return Math[_0xfb2b7c[_0x4b6191(0xce)](_0x478191,0xc7)](0x0,_0xfb2b7c['\x4a\x61\x7a\x6a\x70'](_0x5a6d83,Date[_0x478191(0xaf)]()));}function inferOrigin(_0x175ae4,_0x13a979){const _0x4ccd99=a0_0x576bf7,_0x1b14af={'\x6e\x59\x70\x4c\x67':function(_0x2d900d,_0x441f58){return _0x2d900d(_0x441f58);},'\x50\x73\x4b\x73\x72':function(_0x41e533,_0x34cd86){return _0x41e533(_0x34cd86);},'\x7a\x50\x42\x51\x56':function(_0x10e574,_0x2c5c87){return _0x10e574(_0x2c5c87);},'\x4d\x47\x45\x59\x78':_0x4ccd99(0x6b)},_0x4faf34=a0_0x1c5d27,_0x2b5de3={'\x6c\x61\x73\x4d\x4a':_0x4faf34(0xe9),'\x55\x48\x4f\x6e\x52':_0x4faf34(0x9f),'\x63\x69\x74\x48\x4b':_0x4faf34(0xcc)},_0x585579=_0x13a979?.[_0x1b14af[_0x4ccd99(0x8b)](_0x4faf34,0xe7)]??_0x175ae4?.[_0x4faf34(0xbd)](_0x4faf34(0xa4))??void 0x0;if(!_0x175ae4)return _0x13a979?.[_0x4faf34(0xe7)]?_0x4faf34(0xdb):void 0x0;if(_0x175ae4[_0x1b14af[_0x4ccd99(0x8b)](_0x4faf34,0xe8)](_0x1b14af[_0x4ccd99(0x8b)](_0x4faf34,0xc4))||_0x175ae4[_0x4faf34(0xe8)](_0x4faf34(0xd1))||_0x175ae4[_0x4ccd99(0x135)](_0x4faf34(0xbb)))return _0x4faf34(0xf1);if(_0x175ae4[_0x1b14af[_0x4ccd99(0xab)](_0x4faf34,0xe8)](_0x1b14af['\x50\x73\x4b\x73\x72'](_0x4faf34,0x94)))return _0x1b14af[_0x4ccd99(0x8b)](_0x4faf34,0xca);if(_0x585579?.[_0x4faf34(0xdf)](_0x4faf34(0xe0)))return _0x4faf34(0xdb);if(_0x585579){if(_0x585579[_0x1b14af['\x7a\x50\x42\x51\x56'](_0x4faf34,0xdf)]('\x2f\x70\x72\x6f\x6a\x65\x63\x74\x73')||_0x585579[_0x4faf34(0xdf)](_0x2b5de3[_0x4faf34(0xc0)])||_0x585579[_0x1b14af[_0x4ccd99(0xad)](_0x4faf34,0xdf)](_0x2b5de3[_0x1b14af[_0x4ccd99(0x8c)]]))return _0x1b14af['\x6e\x59\x70\x4c\x67'](_0x4faf34,0xca);return _0x2b5de3[_0x1b14af[_0x4ccd99(0xab)](_0x4faf34,0x9e)];}return _0x4faf34(0xc3);}function parseErrorResponse(_0x11a6b8,_0x39b1d8,_0x266e5c,_0x1b0494){const _0x2bf7ef=a0_0x576bf7,_0x44382a={'\x77\x5a\x62\x4b\x4f':function(_0x386988,_0x1b372d){return _0x386988===_0x1b372d;},'\x65\x6e\x4d\x62\x79':function(_0x58e303,_0x2780f5){return _0x58e303>_0x2780f5;},'\x6c\x69\x74\x74\x4a':function(_0x10d15a,_0x973ab6){return _0x10d15a(_0x973ab6);},'\x58\x50\x49\x6f\x62':_0x2bf7ef(0x110),'\x79\x48\x42\x6d\x73':_0x2bf7ef(0x131),'\x47\x47\x70\x48\x62':function(_0x206ddd,_0x312c77){return _0x206ddd(_0x312c77);},'\x70\x6d\x42\x64\x6c':'\x63\x5a\x46\x57\x54','\x71\x71\x47\x6f\x4c':function(_0x22e4ba,_0x1a2209){return _0x22e4ba(_0x1a2209);},'\x4c\x7a\x77\x76\x4b':_0x2bf7ef(0x6d),'\x76\x52\x66\x63\x72':function(_0x2e80ee,_0x455481){return _0x2e80ee(_0x455481);},'\x54\x68\x58\x67\x44':function(_0x4f1da1,_0xdad600){return _0x4f1da1(_0xdad600);},'\x6a\x6e\x7a\x4f\x44':function(_0x1486da,_0x352324){return _0x1486da(_0x352324);},'\x4f\x6a\x6c\x75\x79':function(_0x4aed6e,_0x1b789f){return _0x4aed6e!==_0x1b789f;},'\x79\x74\x70\x55\x49':function(_0x1e7331,_0x3784b2){return _0x1e7331(_0x3784b2);},'\x44\x61\x6d\x44\x65':_0x2bf7ef(0xa1),'\x78\x77\x44\x55\x74':function(_0x28fb54,_0xbb342f){return _0x28fb54+_0xbb342f;},'\x6c\x4f\x6a\x59\x63':_0x2bf7ef(0xa3),'\x4c\x6d\x73\x42\x6c':function(_0x3ad944,_0x2255c2,_0x1452c8){return _0x3ad944(_0x2255c2,_0x1452c8);},'\x79\x6a\x6b\x69\x53':function(_0x1ccb08,_0x2739df){return _0x1ccb08(_0x2739df);},'\x4c\x61\x42\x4b\x4e':function(_0x2efd4c,_0x58bba0){return _0x2efd4c(_0x58bba0);},'\x4b\x6e\x66\x53\x65':function(_0x44af66,_0x14123d){return _0x44af66(_0x14123d);},'\x6c\x77\x48\x47\x57':function(_0x20cddb,_0xc33298){return _0x20cddb(_0xc33298);},'\x6e\x47\x75\x51\x56':function(_0x46bbd6,_0x465a14){return _0x46bbd6(_0x465a14);},'\x55\x61\x52\x79\x59':function(_0xc1ff46,_0x40c857){return _0xc1ff46(_0x40c857);},'\x78\x78\x63\x54\x53':function(_0x46d097,_0x3094fe){return _0x46d097||_0x3094fe;},'\x71\x4e\x5a\x77\x70':'\x55\x4e\x4b\x4e\x4f\x57\x4e\x5f\x45\x52\x52\x4f\x52'},_0x1d5d45=a0_0x1c5d27,_0x2708e8={'\x4f\x64\x43\x43\x48':function(_0x847c4c,_0x57eb56){return _0x847c4c===_0x57eb56;},'\x4a\x6f\x41\x74\x49':_0x44382a['\x6c\x69\x74\x74\x4a'](_0x1d5d45,0xd8),'\x63\x5a\x46\x57\x54':function(_0x32018c,_0x49c601){return _0x32018c!==_0x49c601;},'\x57\x47\x68\x51\x5a':function(_0xf4989a,_0x120c3c){const _0x5edc20=_0x2bf7ef;return _0x44382a[_0x5edc20(0x132)](_0xf4989a,_0x120c3c);},'\x50\x67\x52\x71\x48':_0x44382a['\x6c\x69\x74\x74\x4a'](_0x1d5d45,0xa6),'\x76\x6c\x48\x66\x4f':function(_0x5e181d,_0x42f340){const _0x4abcc0=_0x2bf7ef;return _0x44382a[_0x4abcc0(0x12b)](_0x5e181d,_0x42f340);},'\x70\x70\x74\x67\x4e':function(_0x5148cb,_0x2b799a){const _0x3512c9=_0x2bf7ef;return _0x44382a[_0x3512c9(0x132)](_0x5148cb,_0x2b799a);},'\x54\x57\x61\x70\x77':function(_0x533a3f,_0xc16d77,_0x3d15f4){return _0x533a3f(_0xc16d77,_0x3d15f4);},'\x73\x75\x47\x75\x65':_0x2bf7ef(0xa5),'\x65\x4c\x6d\x6e\x4d':_0x44382a['\x58\x50\x49\x6f\x62'],'\x4e\x78\x69\x7a\x7a':_0x1d5d45(0xc4),'\x6d\x4a\x53\x6b\x63':_0x44382a['\x79\x48\x42\x6d\x73'],'\x4e\x77\x57\x6d\x7a':_0x2bf7ef(0xc8),'\x6c\x47\x53\x68\x5a':_0x44382a[_0x2bf7ef(0x124)](_0x1d5d45,0xc3),'\x6e\x73\x4c\x4e\x6e':_0x44382a[_0x2bf7ef(0xf0)](_0x1d5d45,0x97),'\x56\x50\x6a\x72\x72':function(_0x5cecc6,_0x395553){return _0x5cecc6>=_0x395553;}};let _0x49a456;try{_0x49a456=JSON[_0x1d5d45(0xb9)](_0x39b1d8);}catch{_0x49a456={'\x6d\x65\x73\x73\x61\x67\x65':_0x39b1d8};}const _0x3faa2d=_0x49a456[_0x1d5d45(0xa2)],_0x59d38a=_0x2708e8[_0x44382a['\x47\x47\x70\x48\x62'](_0x1d5d45,0xb1)](typeof _0x3faa2d,_0x2708e8['\x4a\x6f\x41\x74\x49'])&&_0x2708e8[_0x44382a[_0x2bf7ef(0x12d)]](_0x3faa2d,null)?_0x3faa2d[_0x1d5d45(0xbe)]:void 0x0,_0x2c3233=typeof _0x3faa2d===_0x1d5d45(0xd8)&&_0x2708e8[_0x2bf7ef(0xd9)](_0x3faa2d,null)?_0x3faa2d[_0x44382a['\x71\x71\x47\x6f\x4c'](_0x1d5d45,0xaa)]:void 0x0,_0x3ce614=_0x49a456[_0x44382a[_0x2bf7ef(0x10e)]]||_0x59d38a||(_0x2708e8[_0x1d5d45(0xf3)](typeof _0x3faa2d,_0x2708e8[_0x1d5d45(0x93)])?_0x3faa2d:void 0x0)||_0x39b1d8||_0x1d5d45(0xa1),_0x3c57dc=_0x44382a[_0x2bf7ef(0x132)](typeof _0x49a456[_0x44382a[_0x2bf7ef(0xf0)](_0x1d5d45,0xcd)],_0x44382a['\x76\x52\x66\x63\x72'](_0x1d5d45,0xa6))&&_0x2708e8[_0x2bf7ef(0xe9)](_0x49a456[_0x44382a[_0x2bf7ef(0x76)](_0x1d5d45,0xcd)][_0x44382a[_0x2bf7ef(0xcb)](_0x1d5d45,0xe2)]()[_0x1d5d45(0xc9)],0x0)?_0x49a456[_0x44382a[_0x2bf7ef(0x114)](_0x1d5d45,0xcd)][_0x1d5d45(0xe2)]():void 0x0,_0x4c9773=!!_0x3c57dc&&_0x44382a['\x4f\x6a\x6c\x75\x79'](_0x3c57dc,_0x3ce614)&&(_0x2708e8[_0x44382a[_0x2bf7ef(0xcb)](_0x1d5d45,0xd4)](_0x3ce614,_0x44382a[_0x2bf7ef(0xb8)](_0x1d5d45,0xa1))||/^failed\b/i[_0x1d5d45(0x9d)](_0x3ce614)||/^provision failed\b/i[_0x44382a['\x6c\x69\x74\x74\x4a'](_0x1d5d45,0x9d)](_0x3ce614)||/^deprovision failed\b/i[_0x44382a[_0x2bf7ef(0xb4)]](_0x3ce614)),_0x5aa708=_0x49a456[_0x1d5d45(0xaa)]||_0x2c3233,_0x4d53a1=''+(_0x266e5c?(_0x266e5c[_0x1d5d45(0xd3)]??'\x52\x45\x51\x55\x45\x53\x54')+'\x20'+(_0x266e5c[_0x1d5d45(0xe7)]??'')+'\x3a\x20':'')+(_0x4c9773?_0x44382a['\x78\x77\x44\x55\x74'](_0x3ce614,'\x3a\x20')+_0x3c57dc:_0x3ce614),_0x505ca9={'\x6f\x72\x69\x67\x69\x6e':_0x2708e8[_0x2bf7ef(0x79)](inferOrigin,_0x1b0494,_0x266e5c),'\x65\x6e\x64\x70\x6f\x69\x6e\x74':_0x266e5c?.[_0x2bf7ef(0xd1)]??_0x1b0494?.[_0x44382a[_0x2bf7ef(0xb8)](_0x1d5d45,0xbd)](_0x2708e8[_0x44382a[_0x2bf7ef(0x9a)]])??void 0x0,'\x72\x65\x74\x72\x79\x41\x66\x74\x65\x72\x4d\x73':_0x44382a[_0x2bf7ef(0xc3)](parseRetryAfterMs,_0x1b0494?.[_0x1d5d45(0xbd)](_0x2708e8[_0x44382a[_0x2bf7ef(0xae)](_0x1d5d45,0x91)])??void 0x0,_0x49a456),'\x73\x69\x64\x65\x63\x61\x72\x56\x65\x72\x73\x69\x6f\x6e':_0x1b0494?.[_0x44382a[_0x2bf7ef(0xac)](_0x1d5d45,0xbd)](_0x2708e8[_0x1d5d45(0xb4)])??void 0x0,'\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72\x49\x6d\x61\x67\x65':_0x1b0494?.[_0x1d5d45(0xbd)](_0x44382a[_0x2bf7ef(0xae)](_0x1d5d45,0xd1))??_0x1b0494?.[_0x44382a[_0x2bf7ef(0xcb)](_0x1d5d45,0xbd)](_0x2708e8[_0x44382a[_0x2bf7ef(0x124)](_0x1d5d45,0xab)])??void 0x0};switch(_0x11a6b8){case 0x190:return new ValidationError(_0x4d53a1,_0x49a456[_0x1d5d45(0xa0)],_0x505ca9);case 0x191:return new AuthError(_0x4d53a1,_0x505ca9);case 0x194:return new NotFoundError(_0x49a456[_0x44382a[_0x2bf7ef(0x129)](_0x1d5d45,0xe5)]||_0x2708e8[_0x44382a[_0x2bf7ef(0xb5)](_0x1d5d45,0xae)],_0x49a456[_0x1d5d45(0xb2)]||_0x2708e8[_0x44382a['\x6e\x47\x75\x51\x56'](_0x1d5d45,0xde)],_0x505ca9);case 0x198:return new TimeoutError(_0x49a456[_0x1d5d45(0xf0)]||0x7530,_0x4d53a1,_0x505ca9);case 0x199:return new StateError(_0x4d53a1,_0x49a456[_0x1d5d45(0xce)]||_0x44382a[_0x2bf7ef(0xcb)](_0x1d5d45,0xc3),_0x49a456[_0x1d5d45(0xe6)],_0x505ca9);case 0x1ad:return new QuotaError(_0x49a456[_0x1d5d45(0xd7)]||_0x2708e8[_0x44382a['\x55\x61\x52\x79\x59'](_0x1d5d45,0xd5)],_0x4d53a1,_0x49a456['\x63\x75\x72\x72\x65\x6e\x74'],_0x49a456[_0x2bf7ef(0x139)],_0x505ca9);case 0x1f5:return new SandboxError(_0x4d53a1,_0x5aa708||_0x44382a[_0x2bf7ef(0xb8)](_0x1d5d45,0xe3),_0x11a6b8,_0x505ca9);default:if(_0x2708e8[_0x2bf7ef(0xd5)](_0x11a6b8,0x1f4))return new ServerError(_0x4d53a1,_0x11a6b8,_0x505ca9);return new SandboxError(_0x4d53a1,_0x44382a[_0x2bf7ef(0xb2)](_0x5aa708,_0x44382a[_0x2bf7ef(0xb0)]),_0x11a6b8,_0x505ca9);}}export{SandboxError as a,TimeoutError as c,QuotaError as i,ValidationError as l,NetworkError as n,ServerError as o,NotFoundError as r,StateError as s,AuthError as t,parseErrorResponse as u};
|