@intentic/sandbox-contract 1.238.1 → 1.240.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/contracts/agent.contract.d.ts +49 -30
- package/dist/contracts/agent.contract.d.ts.map +1 -1
- package/dist/contracts/agent.contract.js +1 -1
- package/dist/contracts/agent.contract.js.map +1 -1
- package/dist/contracts/agents.contract.d.ts +474 -0
- package/dist/contracts/agents.contract.d.ts.map +1 -1
- package/dist/contracts/runner.contract.d.ts +40 -30
- package/dist/contracts/runner.contract.d.ts.map +1 -1
- package/dist/contracts/sessions.contract.d.ts +474 -0
- package/dist/contracts/sessions.contract.d.ts.map +1 -1
- package/dist/contracts/system.contract.d.ts +474 -0
- package/dist/contracts/system.contract.d.ts.map +1 -1
- package/dist/events.d.ts +2546 -123
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +122 -61
- package/dist/events.js.map +1 -1
- package/dist/index.d.ts +1607 -165
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas/engines.d.ts +157 -0
- package/dist/schemas/engines.d.ts.map +1 -0
- package/dist/schemas/engines.js +70 -0
- package/dist/schemas/engines.js.map +1 -0
- package/dist/schemas/plan-limits.d.ts +19 -0
- package/dist/schemas/plan-limits.d.ts.map +1 -1
- package/dist/schemas/plan-limits.js +8 -1
- package/dist/schemas/plan-limits.js.map +1 -1
- package/dist/workspace-state.d.ts +5 -0
- package/dist/workspace-state.d.ts.map +1 -1
- package/dist/workspace-state.js +1 -0
- package/dist/workspace-state.js.map +1 -1
- package/package.json +4 -4
- package/src/contracts/agent.contract.ts +1 -1
- package/src/events.test.ts +14 -0
- package/src/events.ts +250 -104
- package/src/index.ts +1 -0
- package/src/schemas/engines.ts +129 -0
- package/src/schemas/plan-limits.ts +31 -12
- package/src/workspace-state.test.ts +5 -0
- package/src/workspace-state.ts +12 -0
|
@@ -278,7 +278,6 @@ export declare const agentContract: {
|
|
|
278
278
|
preTokens?: number | undefined;
|
|
279
279
|
postTokens?: number | undefined;
|
|
280
280
|
} | {
|
|
281
|
-
kind: "plan";
|
|
282
281
|
requestId: string;
|
|
283
282
|
text: string;
|
|
284
283
|
document?: {
|
|
@@ -288,8 +287,8 @@ export declare const agentContract: {
|
|
|
288
287
|
truncated?: boolean | undefined;
|
|
289
288
|
plan?: boolean | undefined;
|
|
290
289
|
} | undefined;
|
|
290
|
+
kind: "plan";
|
|
291
291
|
} | {
|
|
292
|
-
kind: "question";
|
|
293
292
|
requestId: string;
|
|
294
293
|
questions: {
|
|
295
294
|
question: string;
|
|
@@ -308,6 +307,7 @@ export declare const agentContract: {
|
|
|
308
307
|
truncated?: boolean | undefined;
|
|
309
308
|
plan?: boolean | undefined;
|
|
310
309
|
} | undefined;
|
|
310
|
+
kind: "question";
|
|
311
311
|
} | {
|
|
312
312
|
toolName: string;
|
|
313
313
|
title?: string | undefined;
|
|
@@ -326,21 +326,20 @@ export declare const agentContract: {
|
|
|
326
326
|
}[];
|
|
327
327
|
} | undefined;
|
|
328
328
|
explain?: string | undefined;
|
|
329
|
-
kind: "permission";
|
|
330
329
|
requestId: string;
|
|
330
|
+
kind: "permission";
|
|
331
331
|
} | {
|
|
332
|
-
kind: "browser_help";
|
|
333
332
|
requestId: string;
|
|
334
333
|
session: string;
|
|
335
334
|
account: string;
|
|
336
335
|
message: string;
|
|
336
|
+
kind: "browser_help";
|
|
337
337
|
} | {
|
|
338
|
-
kind: "terminal_help";
|
|
339
338
|
requestId: string;
|
|
340
339
|
session: string;
|
|
341
340
|
message: string;
|
|
341
|
+
kind: "terminal_help";
|
|
342
342
|
} | {
|
|
343
|
-
kind: "service_offer";
|
|
344
343
|
requestId: string;
|
|
345
344
|
offer: {
|
|
346
345
|
slug: string;
|
|
@@ -357,6 +356,7 @@ export declare const agentContract: {
|
|
|
357
356
|
request: string;
|
|
358
357
|
why?: string | undefined;
|
|
359
358
|
};
|
|
359
|
+
kind: "service_offer";
|
|
360
360
|
} | {
|
|
361
361
|
kind: "service_event";
|
|
362
362
|
requestId: string;
|
|
@@ -368,26 +368,25 @@ export declare const agentContract: {
|
|
|
368
368
|
data: unknown;
|
|
369
369
|
};
|
|
370
370
|
} | {
|
|
371
|
-
kind: "service_receipt";
|
|
372
|
-
requestId: string;
|
|
373
371
|
outcome: "ok" | "refunded" | "refused";
|
|
374
372
|
credits: number;
|
|
375
373
|
remaining?: number | undefined;
|
|
374
|
+
kind: "service_receipt";
|
|
375
|
+
requestId: string;
|
|
376
376
|
} | {
|
|
377
|
-
kind: "capability_offer";
|
|
378
377
|
requestId: string;
|
|
379
378
|
offer: {
|
|
380
379
|
card: string;
|
|
381
380
|
name: string;
|
|
382
381
|
why?: string | undefined;
|
|
383
382
|
};
|
|
383
|
+
kind: "capability_offer";
|
|
384
384
|
} | {
|
|
385
|
-
kind: "capability_outcome";
|
|
386
|
-
requestId: string;
|
|
387
385
|
outcome: "connected" | "unfinished";
|
|
388
386
|
id?: string | undefined;
|
|
387
|
+
kind: "capability_outcome";
|
|
388
|
+
requestId: string;
|
|
389
389
|
} | {
|
|
390
|
-
kind: "payment_offer";
|
|
391
390
|
requestId: string;
|
|
392
391
|
offer: {
|
|
393
392
|
url: string;
|
|
@@ -401,13 +400,14 @@ export declare const agentContract: {
|
|
|
401
400
|
dailyCapUsd: string;
|
|
402
401
|
why?: string | undefined;
|
|
403
402
|
};
|
|
403
|
+
kind: "payment_offer";
|
|
404
404
|
} | {
|
|
405
|
-
kind: "payment_receipt";
|
|
406
|
-
requestId: string;
|
|
407
405
|
outcome: "failed" | "paid";
|
|
408
406
|
amountUsd: string;
|
|
409
407
|
transaction?: string | undefined;
|
|
410
408
|
network?: string | undefined;
|
|
409
|
+
kind: "payment_receipt";
|
|
410
|
+
requestId: string;
|
|
411
411
|
} | {
|
|
412
412
|
kind: "resolved";
|
|
413
413
|
requestId: string;
|
|
@@ -459,7 +459,12 @@ export declare const agentContract: {
|
|
|
459
459
|
} | {
|
|
460
460
|
kind: "error";
|
|
461
461
|
message: string;
|
|
462
|
-
code?: "agent-busy" | "claude-not-entitled" | "claude-reauth" | "claude-token-refused" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "context-window-too-small" | "grok-model-invalid" | "harness-incomplete" | "provider-outage" | "rate_limit" | "sandbox-memory-low" | "session-not-found" | "subscription-required" | "trial-exhausted" | "trial-model-unavailable" | "trial-unavailable" | "turn-cap" | "unknown-command" | undefined;
|
|
462
|
+
code?: "agent-busy" | "claude-not-entitled" | "claude-reauth" | "claude-token-refused" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "context-window-too-small" | "engine-version-floor" | "grok-model-invalid" | "harness-incomplete" | "provider-outage" | "rate_limit" | "sandbox-memory-low" | "session-not-found" | "subscription-required" | "trial-exhausted" | "trial-model-unavailable" | "trial-unavailable" | "turn-cap" | "unknown-command" | undefined;
|
|
463
|
+
engine?: {
|
|
464
|
+
id: string;
|
|
465
|
+
running?: string | undefined;
|
|
466
|
+
floor: string;
|
|
467
|
+
} | undefined;
|
|
463
468
|
resetsAt?: number | undefined;
|
|
464
469
|
autoResume?: "available" | "scheduled" | undefined;
|
|
465
470
|
held?: {
|
|
@@ -688,7 +693,6 @@ export declare const agentContract: {
|
|
|
688
693
|
preTokens?: number | undefined;
|
|
689
694
|
postTokens?: number | undefined;
|
|
690
695
|
} | {
|
|
691
|
-
kind: "plan";
|
|
692
696
|
requestId: string;
|
|
693
697
|
text: string;
|
|
694
698
|
document?: {
|
|
@@ -698,8 +702,8 @@ export declare const agentContract: {
|
|
|
698
702
|
truncated?: boolean | undefined;
|
|
699
703
|
plan?: boolean | undefined;
|
|
700
704
|
} | undefined;
|
|
705
|
+
kind: "plan";
|
|
701
706
|
} | {
|
|
702
|
-
kind: "question";
|
|
703
707
|
requestId: string;
|
|
704
708
|
questions: {
|
|
705
709
|
question: string;
|
|
@@ -718,6 +722,7 @@ export declare const agentContract: {
|
|
|
718
722
|
truncated?: boolean | undefined;
|
|
719
723
|
plan?: boolean | undefined;
|
|
720
724
|
} | undefined;
|
|
725
|
+
kind: "question";
|
|
721
726
|
} | {
|
|
722
727
|
toolName: string;
|
|
723
728
|
title?: string | undefined;
|
|
@@ -736,21 +741,20 @@ export declare const agentContract: {
|
|
|
736
741
|
}[];
|
|
737
742
|
} | undefined;
|
|
738
743
|
explain?: string | undefined;
|
|
739
|
-
kind: "permission";
|
|
740
744
|
requestId: string;
|
|
745
|
+
kind: "permission";
|
|
741
746
|
} | {
|
|
742
|
-
kind: "browser_help";
|
|
743
747
|
requestId: string;
|
|
744
748
|
session: string;
|
|
745
749
|
account: string;
|
|
746
750
|
message: string;
|
|
751
|
+
kind: "browser_help";
|
|
747
752
|
} | {
|
|
748
|
-
kind: "terminal_help";
|
|
749
753
|
requestId: string;
|
|
750
754
|
session: string;
|
|
751
755
|
message: string;
|
|
756
|
+
kind: "terminal_help";
|
|
752
757
|
} | {
|
|
753
|
-
kind: "service_offer";
|
|
754
758
|
requestId: string;
|
|
755
759
|
offer: {
|
|
756
760
|
slug: string;
|
|
@@ -767,6 +771,7 @@ export declare const agentContract: {
|
|
|
767
771
|
request: string;
|
|
768
772
|
why?: string | undefined;
|
|
769
773
|
};
|
|
774
|
+
kind: "service_offer";
|
|
770
775
|
} | {
|
|
771
776
|
kind: "service_event";
|
|
772
777
|
requestId: string;
|
|
@@ -778,26 +783,25 @@ export declare const agentContract: {
|
|
|
778
783
|
data: unknown;
|
|
779
784
|
};
|
|
780
785
|
} | {
|
|
781
|
-
kind: "service_receipt";
|
|
782
|
-
requestId: string;
|
|
783
786
|
outcome: "ok" | "refunded" | "refused";
|
|
784
787
|
credits: number;
|
|
785
788
|
remaining?: number | undefined;
|
|
789
|
+
kind: "service_receipt";
|
|
790
|
+
requestId: string;
|
|
786
791
|
} | {
|
|
787
|
-
kind: "capability_offer";
|
|
788
792
|
requestId: string;
|
|
789
793
|
offer: {
|
|
790
794
|
card: string;
|
|
791
795
|
name: string;
|
|
792
796
|
why?: string | undefined;
|
|
793
797
|
};
|
|
798
|
+
kind: "capability_offer";
|
|
794
799
|
} | {
|
|
795
|
-
kind: "capability_outcome";
|
|
796
|
-
requestId: string;
|
|
797
800
|
outcome: "connected" | "unfinished";
|
|
798
801
|
id?: string | undefined;
|
|
802
|
+
kind: "capability_outcome";
|
|
803
|
+
requestId: string;
|
|
799
804
|
} | {
|
|
800
|
-
kind: "payment_offer";
|
|
801
805
|
requestId: string;
|
|
802
806
|
offer: {
|
|
803
807
|
url: string;
|
|
@@ -811,13 +815,14 @@ export declare const agentContract: {
|
|
|
811
815
|
dailyCapUsd: string;
|
|
812
816
|
why?: string | undefined;
|
|
813
817
|
};
|
|
818
|
+
kind: "payment_offer";
|
|
814
819
|
} | {
|
|
815
|
-
kind: "payment_receipt";
|
|
816
|
-
requestId: string;
|
|
817
820
|
outcome: "failed" | "paid";
|
|
818
821
|
amountUsd: string;
|
|
819
822
|
transaction?: string | undefined;
|
|
820
823
|
network?: string | undefined;
|
|
824
|
+
kind: "payment_receipt";
|
|
825
|
+
requestId: string;
|
|
821
826
|
} | {
|
|
822
827
|
kind: "resolved";
|
|
823
828
|
requestId: string;
|
|
@@ -869,7 +874,12 @@ export declare const agentContract: {
|
|
|
869
874
|
} | {
|
|
870
875
|
kind: "error";
|
|
871
876
|
message: string;
|
|
872
|
-
code?: "agent-busy" | "claude-not-entitled" | "claude-reauth" | "claude-token-refused" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "context-window-too-small" | "grok-model-invalid" | "harness-incomplete" | "provider-outage" | "rate_limit" | "sandbox-memory-low" | "session-not-found" | "subscription-required" | "trial-exhausted" | "trial-model-unavailable" | "trial-unavailable" | "turn-cap" | "unknown-command" | undefined;
|
|
877
|
+
code?: "agent-busy" | "claude-not-entitled" | "claude-reauth" | "claude-token-refused" | "codex-advisory" | "codex-model-invalid" | "codex-reauth" | "context-window-too-small" | "engine-version-floor" | "grok-model-invalid" | "harness-incomplete" | "provider-outage" | "rate_limit" | "sandbox-memory-low" | "session-not-found" | "subscription-required" | "trial-exhausted" | "trial-model-unavailable" | "trial-unavailable" | "turn-cap" | "unknown-command" | undefined;
|
|
878
|
+
engine?: {
|
|
879
|
+
id: string;
|
|
880
|
+
running?: string | undefined;
|
|
881
|
+
floor: string;
|
|
882
|
+
} | undefined;
|
|
873
883
|
resetsAt?: number | undefined;
|
|
874
884
|
autoResume?: "available" | "scheduled" | undefined;
|
|
875
885
|
held?: {
|
|
@@ -950,6 +960,15 @@ export declare const agentContract: {
|
|
|
950
960
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
951
961
|
resume: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<import("zod").ZodObject<{
|
|
952
962
|
conversationId: import("zod").ZodString;
|
|
963
|
+
routing: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
964
|
+
agent: import("zod").ZodString;
|
|
965
|
+
harness: import("zod").ZodEnum<{
|
|
966
|
+
"claude-code": "claude-code";
|
|
967
|
+
native: "native";
|
|
968
|
+
}>;
|
|
969
|
+
account: import("zod").ZodOptional<import("zod").ZodString>;
|
|
970
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
971
|
+
}, import("zod/v4/core").$strip>>;
|
|
953
972
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
954
973
|
run: import("zod").ZodString;
|
|
955
974
|
}, import("zod/v4/core").$strip>, Record<never, never>, Record<never, never>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.contract.d.ts","sourceRoot":"","sources":["../../src/contracts/agent.contract.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,aAAa;IACtB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAUH,MAAM
|
|
1
|
+
{"version":3,"file":"agent.contract.d.ts","sourceRoot":"","sources":["../../src/contracts/agent.contract.ts"],"names":[],"mappings":"AAYA,eAAO,MAAM,aAAa;IACtB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAUH,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAUN,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAUL,KAAK;;;;;;;;;;;;;IAUL,IAAI;;;;;IAiBJ,MAAM;;;;;;;;;;;;;;IAaN,MAAM;;;;;;;IAYN,QAAQ;;;;;;;;;IAaR,QAAQ;;;;;;;;;;;;CASX,CAAC"}
|
|
@@ -55,7 +55,7 @@ export const agentContract = {
|
|
|
55
55
|
method: "POST",
|
|
56
56
|
path: "/agent/resume",
|
|
57
57
|
summary: "Run a refused turn again",
|
|
58
|
-
description: "Sends the same turn again when the model provider's allowance refused it, with everything it originally carried. It repeats the request rather than adding a new message to the conversation, so pressing it twice costs nothing and the agent is never told to continue work it has not started.",
|
|
58
|
+
description: "Sends the same turn again when the model provider's allowance refused it, with everything it originally carried except who serves it: the caller may name a different provider, harness or account, which is the usual answer to a spent allowance. It repeats the request rather than adding a new message to the conversation, so pressing it twice costs nothing and the agent is never told to continue work it has not started.",
|
|
59
59
|
})
|
|
60
60
|
.input(ResumeTurnSchema)
|
|
61
61
|
.output(StartedTurnSchema),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.contract.js","sourceRoot":"","sources":["../../src/contracts/agent.contract.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,EAAE,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,wBAAwB,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAChG,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAC3F,OAAO,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAC7E,OAAO,EAAE,gBAAgB,EAAE,sBAAsB,EAAE,gBAAgB,EAAE,WAAW,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AACpI,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAOhD,MAAM,CAAC,MAAM,aAAa,GAAG;IACzB,GAAG,EAAE,EAAE;SACF,KAAK,CAAC;QACH,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,2BAA2B;QACpC,WAAW,EACP,4MAA4M;KACnN,CAAC;SACD,KAAK,CAAC,eAAe,CAAC;SACtB,MAAM,CAAC,iBAAiB,CAAC;IAC9B,MAAM,EAAE,EAAE;SACL,KAAK,CAAC;QACH,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,eAAe;QACrB,OAAO,EAAE,qBAAqB;QAC9B,WAAW,EACP,mVAAmV;KAC1V,CAAC;SACD,KAAK,CAAC,gBAAgB,CAAC;SACvB,MAAM,CAAC,aAAa,CAAC,iBAAiB,CAAC,CAAC;IAC7C,KAAK,EAAE,EAAE;SACJ,KAAK,CAAC;QACH,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,cAAc;QACpB,OAAO,EAAE,mCAAmC;QAC5C,WAAW,EACP,+IAA+I;KACtJ,CAAC;SACD,KAAK,CAAC,gBAAgB,CAAC;SACvB,MAAM,CAAC,QAAQ,CAAC;IACrB,KAAK,EAAE,EAAE;SACJ,KAAK,CAAC;QACH,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,cAAc;QACpB,OAAO,EAAE,0BAA0B;QACnC,WAAW,EACP,qKAAqK;KAC5K,CAAC;SACD,KAAK,CAAC,WAAW,CAAC;SAClB,MAAM,CAAC,QAAQ,CAAC;IACrB,IAAI,EAAE,EAAE;SACH,KAAK,CAAC;QACH,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,aAAa;QACnB,OAAO,EAAE,iBAAiB;QAC1B,WAAW,EAAE,qGAAqG;KACrH,CAAC;SACD,KAAK,CAAC,cAAc,CAAC;SACrB,MAAM,CAAC,QAAQ,CAAC;IASrB,MAAM,EAAE,EAAE;SACL,KAAK,CAAC;QACH,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,eAAe;QACrB,OAAO,EAAE,0BAA0B;QACnC,WAAW,EACP,
|
|
1
|
+
{"version":3,"file":"agent.contract.js","sourceRoot":"","sources":["../../src/contracts/agent.contract.ts"],"names":[],"mappings":"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"}
|