@ixo/ucan 1.1.0 โ 1.1.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/.turbo/turbo-build.log +1 -1
- package/README.md +28 -9
- package/dist/client/create-client.d.ts +4 -2
- package/dist/client/create-client.d.ts.map +1 -1
- package/dist/client/create-client.js +2 -0
- package/dist/client/create-client.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/validator/validator.d.ts +1 -0
- package/dist/validator/validator.d.ts.map +1 -1
- package/dist/validator/validator.js +2 -0
- package/dist/validator/validator.js.map +1 -1
- package/package.json +1 -1
- package/src/client/create-client.ts +8 -1
- package/src/index.ts +1 -0
- package/src/validator/validator.test.ts +166 -0
- package/src/validator/validator.ts +14 -0
package/.turbo/turbo-build.log
CHANGED
package/README.md
CHANGED
|
@@ -11,6 +11,7 @@ UCAN is a decentralized authorization system using cryptographically signed toke
|
|
|
11
11
|
- **Capabilities**: What actions can be performed on which resources
|
|
12
12
|
- **Delegations**: Granting capabilities to others (can be chained)
|
|
13
13
|
- **Invocations**: Requests to use a capability
|
|
14
|
+
- **Facts**: Verifiable claims attached to a delegation or invocation (scoped per-UCAN, not inherited)
|
|
14
15
|
- **Attenuation**: Permissions can only be narrowed, never expanded
|
|
15
16
|
|
|
16
17
|
๐ **[See the visual flow diagram โ](./docs/FLOW.md)**
|
|
@@ -91,6 +92,7 @@ app.post('/employees', async (req, res) => {
|
|
|
91
92
|
// result.capability โ validated capability with caveats (nb)
|
|
92
93
|
// result.expiration โ earliest expiration across the delegation chain (undefined = never)
|
|
93
94
|
// result.proofChain โ delegation path from root to invoker, e.g. ["did:key:root", "did:key:user"]
|
|
95
|
+
// result.facts โ facts attached to the invocation (undefined if none)
|
|
94
96
|
|
|
95
97
|
const limit = result.capability?.nb?.limit ?? 10;
|
|
96
98
|
res.json({ employees: getEmployees(limit) });
|
|
@@ -185,14 +187,15 @@ Create a framework-agnostic validator.
|
|
|
185
187
|
|
|
186
188
|
The `validator.validate()` method returns a `ValidateResult`:
|
|
187
189
|
|
|
188
|
-
| Field | Type
|
|
189
|
-
| ------------ |
|
|
190
|
-
| `ok` | `boolean`
|
|
191
|
-
| `invoker` | `string`
|
|
192
|
-
| `capability` | `object`
|
|
193
|
-
| `expiration` | `number \| undefined`
|
|
194
|
-
| `proofChain` | `string[] \| undefined`
|
|
195
|
-
| `
|
|
190
|
+
| Field | Type | Description |
|
|
191
|
+
| ------------ | ---------------------------------------- | ---------------------------------------------------------------------------------------------------- |
|
|
192
|
+
| `ok` | `boolean` | Whether validation succeeded |
|
|
193
|
+
| `invoker` | `string` | DID of the invoker (on success) |
|
|
194
|
+
| `capability` | `object` | Validated capability with `can`, `with`, and optional `nb` caveats (on success) |
|
|
195
|
+
| `expiration` | `number \| undefined` | Effective expiration (Unix seconds) โ the earliest across the delegation chain. Undefined = never. |
|
|
196
|
+
| `proofChain` | `string[] \| undefined` | Delegation path from root issuer to invoker, e.g. `["did:key:root", "did:key:alice", "did:key:bob"]` |
|
|
197
|
+
| `facts` | `Record<string, unknown>[] \| undefined` | Facts attached to the invocation. Undefined if none. |
|
|
198
|
+
| `error` | `object` | Error with `code` and `message` (on failure) |
|
|
196
199
|
|
|
197
200
|
Error codes: `INVALID_FORMAT`, `INVALID_SIGNATURE`, `UNAUTHORIZED`, `REPLAY`, `EXPIRED`, `CAVEAT_VIOLATION`.
|
|
198
201
|
|
|
@@ -211,6 +214,22 @@ Error codes: `INVALID_FORMAT`, `INVALID_SIGNATURE`, `UNAUTHORIZED`, `REPLAY`, `E
|
|
|
211
214
|
|
|
212
215
|
> **Note:** Both `createDelegation` and `createInvocation` default to `expiration: Infinity` (never expires) when no expiration is specified. Pass an explicit Unix timestamp (seconds) to set an expiration.
|
|
213
216
|
|
|
217
|
+
#### Facts
|
|
218
|
+
|
|
219
|
+
Both `createDelegation` and `createInvocation` accept an optional `facts` parameter โ an array of `Record<string, unknown>` objects representing verifiable claims or proofs of knowledge ([UCAN spec ยง3.2.4](https://github.com/ucan-wg/spec/#324-facts)).
|
|
220
|
+
|
|
221
|
+
```typescript
|
|
222
|
+
const invocation = await createInvocation({
|
|
223
|
+
issuer: signer,
|
|
224
|
+
audience: serverDid,
|
|
225
|
+
capability: { can: 'oracle/call', with: 'ixo:oracle:123' },
|
|
226
|
+
proofs: [delegation],
|
|
227
|
+
facts: [{ requestId: 'abc-123', origin: 'portal' }],
|
|
228
|
+
});
|
|
229
|
+
```
|
|
230
|
+
|
|
231
|
+
> **Important:** Facts are scoped per-UCAN. Each delegation and invocation carries its own independent `fct` field. Facts on a delegation do **not** propagate to invocations that use it as a proof. The `facts` field in `ValidateResult` contains only the facts from the invocation itself.
|
|
232
|
+
|
|
214
233
|
### DID Resolution
|
|
215
234
|
|
|
216
235
|
```typescript
|
|
@@ -274,7 +293,7 @@ pnpm test # Run unit tests (vitest)
|
|
|
274
293
|
pnpm test:ucan # Run interactive test script with full UCAN flow
|
|
275
294
|
```
|
|
276
295
|
|
|
277
|
-
The unit tests cover proof chain construction, expiration computation, validation failures, caveat enforcement, and replay protection.
|
|
296
|
+
The unit tests cover proof chain construction, expiration computation, facts pass-through, validation failures, caveat enforcement, and replay protection.
|
|
278
297
|
|
|
279
298
|
## License
|
|
280
299
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as Client from '@ucanto/client';
|
|
2
|
-
import type { Signer, Delegation, Capability } from '@ucanto/interface';
|
|
2
|
+
import type { Signer, Delegation, Capability, Fact } from '@ucanto/interface';
|
|
3
3
|
import type { SupportedDID } from '../types.js';
|
|
4
4
|
export declare function generateKeypair(): Promise<{
|
|
5
5
|
signer: Signer;
|
|
@@ -19,6 +19,7 @@ export declare function createDelegation(options: {
|
|
|
19
19
|
expiration?: number;
|
|
20
20
|
notBefore?: number;
|
|
21
21
|
proofs?: Delegation[];
|
|
22
|
+
facts?: Fact[];
|
|
22
23
|
}): Promise<Delegation>;
|
|
23
24
|
export declare function createInvocation(options: {
|
|
24
25
|
issuer: Signer;
|
|
@@ -26,9 +27,10 @@ export declare function createInvocation(options: {
|
|
|
26
27
|
capability: Capability;
|
|
27
28
|
proofs?: Delegation[];
|
|
28
29
|
expiration?: number;
|
|
30
|
+
facts?: Fact[];
|
|
29
31
|
}): Promise<Client.IssuedInvocationView<Client.Capability<Client.Ability, `${string}:${string}`, unknown>>>;
|
|
30
32
|
export declare function serializeInvocation(invocation: Awaited<ReturnType<typeof createInvocation>>): Promise<string>;
|
|
31
33
|
export declare function serializeDelegation(delegation: Delegation): Promise<string>;
|
|
32
34
|
export declare function parseDelegation(serialized: string): Promise<Delegation>;
|
|
33
|
-
export type { Signer, Delegation, Capability };
|
|
35
|
+
export type { Signer, Delegation, Capability, Fact };
|
|
34
36
|
//# sourceMappingURL=create-client.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-client.d.ts","sourceRoot":"","sources":["../../src/client/create-client.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,OAAO,KAAK,EACV,MAAM,EACN,UAAU,EACV,UAAU,
|
|
1
|
+
{"version":3,"file":"create-client.d.ts","sourceRoot":"","sources":["../../src/client/create-client.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,OAAO,KAAK,EACV,MAAM,EACN,UAAU,EACV,UAAU,EAEV,IAAI,EACL,MAAM,mBAAmB,CAAC;AAC3B,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAmChD,wBAAsB,eAAe,IAAI,OAAO,CAAC;IAC/C,MAAM,EAAE,MAAM,CAAC;IACf,GAAG,EAAE,MAAM,CAAC;IACZ,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC,CAOD;AASD,wBAAgB,WAAW,CAAC,UAAU,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,YAAY,GAAG,MAAM,CAM1E;AAqBD,wBAAsB,kBAAkB,CACtC,QAAQ,EAAE,MAAM,EAChB,GAAG,CAAC,EAAE,YAAY,GACjB,OAAO,CAAC;IACT,MAAM,EAAE,MAAM,CAAC;IACf,GAAG,EAAE,MAAM,CAAC;IACZ,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC,CAuDD;AA2BD,wBAAsB,gBAAgB,CAAC,OAAO,EAAE;IAE9C,MAAM,EAAE,MAAM,CAAC;IAEf,QAAQ,EAAE,MAAM,CAAC;IAEjB,YAAY,EAAE,UAAU,EAAE,CAAC;IAE3B,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,MAAM,CAAC,EAAE,UAAU,EAAE,CAAC;IAEtB,KAAK,CAAC,EAAE,IAAI,EAAE,CAAC;CAChB,GAAG,OAAO,CAAC,UAAU,CAAC,CActB;AA6BD,wBAAsB,gBAAgB,CAAC,OAAO,EAAE;IAE9C,MAAM,EAAE,MAAM,CAAC;IAEf,QAAQ,EAAE,MAAM,CAAC;IAEjB,UAAU,EAAE,UAAU,CAAC;IAEvB,MAAM,CAAC,EAAE,UAAU,EAAE,CAAC;IAEtB,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB,KAAK,CAAC,EAAE,IAAI,EAAE,CAAC;CAChB,2GAYA;AAQD,wBAAsB,mBAAmB,CACvC,UAAU,EAAE,OAAO,CAAC,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC,GACvD,OAAO,CAAC,MAAM,CAAC,CAmBjB;AAQD,wBAAsB,mBAAmB,CACvC,UAAU,EAAE,UAAU,GACrB,OAAO,CAAC,MAAM,CAAC,CAejB;AAQD,wBAAsB,eAAe,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC,CAgB7E;AAGD,YAAY,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC"}
|
|
@@ -59,6 +59,7 @@ export async function createDelegation(options) {
|
|
|
59
59
|
expiration: options.expiration ?? Infinity,
|
|
60
60
|
proofs: options.proofs,
|
|
61
61
|
notBefore: options.notBefore,
|
|
62
|
+
facts: options.facts,
|
|
62
63
|
});
|
|
63
64
|
}
|
|
64
65
|
export async function createInvocation(options) {
|
|
@@ -69,6 +70,7 @@ export async function createInvocation(options) {
|
|
|
69
70
|
capability: options.capability,
|
|
70
71
|
proofs: options.proofs ?? [],
|
|
71
72
|
expiration: options.expiration ?? Infinity,
|
|
73
|
+
facts: options.facts,
|
|
72
74
|
});
|
|
73
75
|
}
|
|
74
76
|
export async function serializeInvocation(invocation) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-client.js","sourceRoot":"","sources":["../../src/client/create-client.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"create-client.js","sourceRoot":"","sources":["../../src/client/create-client.ts"],"names":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export { ed25519, Verifier } from '@ucanto/principal';
|
|
|
6
6
|
export type { IxoDID, KeyDID, SupportedDID, DIDKeyResolutionResult, DIDKeyResolver, InvocationStore, ValidationResult, SerializedInvocation, } from './types.js';
|
|
7
7
|
export { defineCapability, Schema, type DefineCapabilityOptions, } from './capabilities/capability.js';
|
|
8
8
|
export { createUCANValidator, type CreateValidatorOptions, type ValidateResult, type UCANValidator, } from './validator/validator.js';
|
|
9
|
-
export { generateKeypair, parseSigner, signerFromMnemonic, createDelegation, createInvocation, serializeInvocation, serializeDelegation, parseDelegation, type Signer, type Delegation, type Capability, } from './client/create-client.js';
|
|
9
|
+
export { generateKeypair, parseSigner, signerFromMnemonic, createDelegation, createInvocation, serializeInvocation, serializeDelegation, parseDelegation, type Signer, type Delegation, type Capability, type Fact, } from './client/create-client.js';
|
|
10
10
|
export { createIxoDIDResolver, createCompositeDIDResolver, type IxoDIDResolverConfig, } from './did/ixo-resolver.js';
|
|
11
11
|
export { InMemoryInvocationStore, createInvocationStore, } from './store/memory.js';
|
|
12
12
|
export declare const VERSION = "1.0.0";
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAmDA,OAAO,KAAK,YAAY,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,YAAY,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AACrD,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAMtD,YAAY,EACV,MAAM,EACN,MAAM,EACN,YAAY,EACZ,sBAAsB,EACtB,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,oBAAoB,GACrB,MAAM,YAAY,CAAC;AAMpB,OAAO,EACL,gBAAgB,EAChB,MAAM,EACN,KAAK,uBAAuB,GAC7B,MAAM,8BAA8B,CAAC;AAMtC,OAAO,EACL,mBAAmB,EACnB,KAAK,sBAAsB,EAC3B,KAAK,cAAc,EACnB,KAAK,aAAa,GACnB,MAAM,0BAA0B,CAAC;AAMlC,OAAO,EACL,eAAe,EACf,WAAW,EACX,kBAAkB,EAClB,gBAAgB,EAChB,gBAAgB,EAChB,mBAAmB,EACnB,mBAAmB,EACnB,eAAe,EACf,KAAK,MAAM,EACX,KAAK,UAAU,EACf,KAAK,UAAU,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAmDA,OAAO,KAAK,YAAY,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,YAAY,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AACrD,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAMtD,YAAY,EACV,MAAM,EACN,MAAM,EACN,YAAY,EACZ,sBAAsB,EACtB,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,oBAAoB,GACrB,MAAM,YAAY,CAAC;AAMpB,OAAO,EACL,gBAAgB,EAChB,MAAM,EACN,KAAK,uBAAuB,GAC7B,MAAM,8BAA8B,CAAC;AAMtC,OAAO,EACL,mBAAmB,EACnB,KAAK,sBAAsB,EAC3B,KAAK,cAAc,EACnB,KAAK,aAAa,GACnB,MAAM,0BAA0B,CAAC;AAMlC,OAAO,EACL,eAAe,EACf,WAAW,EACX,kBAAkB,EAClB,gBAAgB,EAChB,gBAAgB,EAChB,mBAAmB,EACnB,mBAAmB,EACnB,eAAe,EACf,KAAK,MAAM,EACX,KAAK,UAAU,EACf,KAAK,UAAU,EACf,KAAK,IAAI,GACV,MAAM,2BAA2B,CAAC;AAMnC,OAAO,EACL,oBAAoB,EACpB,0BAA0B,EAC1B,KAAK,oBAAoB,GAC1B,MAAM,uBAAuB,CAAC;AAM/B,OAAO,EACL,uBAAuB,EACvB,qBAAqB,GACtB,MAAM,mBAAmB,CAAC;AAM3B,eAAO,MAAM,OAAO,UAAU,CAAC"}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAmDA,OAAO,KAAK,YAAY,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,YAAY,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AACrD,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAqBtD,OAAO,EACL,gBAAgB,EAChB,MAAM,GAEP,MAAM,8BAA8B,CAAC;AAMtC,OAAO,EACL,mBAAmB,GAIpB,MAAM,0BAA0B,CAAC;AAMlC,OAAO,EACL,eAAe,EACf,WAAW,EACX,kBAAkB,EAClB,gBAAgB,EAChB,gBAAgB,EAChB,mBAAmB,EACnB,mBAAmB,EACnB,eAAe,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAmDA,OAAO,KAAK,YAAY,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,YAAY,MAAM,gBAAgB,CAAC;AAC/C,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AACrD,OAAO,KAAK,eAAe,MAAM,mBAAmB,CAAC;AACrD,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAqBtD,OAAO,EACL,gBAAgB,EAChB,MAAM,GAEP,MAAM,8BAA8B,CAAC;AAMtC,OAAO,EACL,mBAAmB,GAIpB,MAAM,0BAA0B,CAAC;AAMlC,OAAO,EACL,eAAe,EACf,WAAW,EACX,kBAAkB,EAClB,gBAAgB,EAChB,gBAAgB,EAChB,mBAAmB,EACnB,mBAAmB,EACnB,eAAe,GAKhB,MAAM,2BAA2B,CAAC;AAMnC,OAAO,EACL,oBAAoB,EACpB,0BAA0B,GAE3B,MAAM,uBAAuB,CAAC;AAM/B,OAAO,EACL,uBAAuB,EACvB,qBAAqB,GACtB,MAAM,mBAAmB,CAAC;AAM3B,MAAM,CAAC,MAAM,OAAO,GAAG,OAAO,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/bytes.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/bases/interface.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/block/interface.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/hashes/digest.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/hashes/hasher.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/hashes/interface.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/link/interface.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/cid.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/varint.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/codecs/interface.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/interface.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/index.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/codecs/raw.d.ts","../../../node_modules/.pnpm/cborg@4.3.2/node_modules/cborg/types/lib/token.d.ts","../../../node_modules/.pnpm/cborg@4.3.2/node_modules/cborg/types/lib/decode.d.ts","../../../node_modules/.pnpm/cborg@4.3.2/node_modules/cborg/types/lib/encode.d.ts","../../../node_modules/.pnpm/cborg@4.3.2/node_modules/cborg/types/cborg.d.ts","../../../node_modules/.pnpm/@ipld+dag-cbor@9.2.5/node_modules/@ipld/dag-cbor/dist/src/index.d.ts","../../../node_modules/.pnpm/@ipld+dag-ucan@3.4.5/node_modules/@ipld/dag-ucan/dist/src/crypto.d.ts","../../../node_modules/.pnpm/@ipld+dag-ucan@3.4.5/node_modules/@ipld/dag-ucan/dist/src/ucan.d.ts","../../../node_modules/.pnpm/@ipld+dag-ucan@3.4.5/node_modules/@ipld/dag-ucan/dist/src/view.d.ts","../../../node_modules/.pnpm/@ipld+dag-ucan@3.4.5/node_modules/@ipld/dag-ucan/dist/src/codec/jwt.d.ts","../../../node_modules/.pnpm/@ipld+dag-ucan@3.4.5/node_modules/@ipld/dag-ucan/dist/src/lib.d.ts","../../../node_modules/.pnpm/@ucanto+interface@11.0.1/node_modules/@ucanto/interface/dist/src/capability.d.ts","../../../node_modules/.pnpm/@ucanto+interface@11.0.1/node_modules/@ucanto/interface/dist/src/transport.d.ts","../../../node_modules/.pnpm/@ucanto+interface@11.0.1/node_modules/@ucanto/interface/dist/src/lib.d.ts","../../../node_modules/.pnpm/@ucanto+server@11.0.3/node_modules/@ucanto/server/dist/src/api.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/cbor.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/hashes/sha2.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/hashes/identity.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/dag.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema/type.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/result.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema/schema.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema/uri.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/bases/base.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/bases/base32.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/bases/base58.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/link.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema/link.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema/principal.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema/did.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema/text.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/delegation.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/invocation.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/message.d.ts","../../../node_modules/.pnpm/@ipld+dag-ucan@3.4.5/node_modules/@ipld/dag-ucan/dist/src/did.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/receipt.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/car.d.ts","../../../node_modules/.pnpm/@ipld+dag-ucan@3.4.5/node_modules/@ipld/dag-ucan/dist/src/signature.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/lib.d.ts","../../../node_modules/.pnpm/@ucanto+validator@10.0.1/node_modules/@ucanto/validator/dist/src/error.d.ts","../../../node_modules/.pnpm/@ucanto+validator@10.0.1/node_modules/@ucanto/validator/dist/src/capability.d.ts","../../../node_modules/.pnpm/@ucanto+validator@10.0.1/node_modules/@ucanto/validator/dist/src/authorization.d.ts","../../../node_modules/.pnpm/@ucanto+validator@10.0.1/node_modules/@ucanto/validator/dist/src/lib.d.ts","../../../node_modules/.pnpm/@ucanto+server@11.0.3/node_modules/@ucanto/server/dist/src/handler.d.ts","../../../node_modules/.pnpm/@ucanto+server@11.0.3/node_modules/@ucanto/server/dist/src/server.d.ts","../../../node_modules/.pnpm/@ucanto+server@11.0.3/node_modules/@ucanto/server/dist/src/error.d.ts","../../../node_modules/.pnpm/@ucanto+server@11.0.3/node_modules/@ucanto/server/dist/src/lib.d.ts","../../../node_modules/.pnpm/@ucanto+client@9.0.2/node_modules/@ucanto/client/dist/src/connection.d.ts","../../../node_modules/.pnpm/@ucanto+client@9.0.2/node_modules/@ucanto/client/dist/src/lib.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/multiformat.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/ed25519/type.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/ed25519/signer.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/verifier.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/ed25519/verifier.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/ed25519.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/rsa/type.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/signer.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/rsa.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/absentee.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/lib.d.ts","../src/types.ts","../src/capabilities/capability.ts","../src/store/memory.ts","../src/validator/validator.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/bip39.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/hash.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/hmac.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/keccak.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/libsodium.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/random.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/ripemd.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/secp256k1signature.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/secp256k1.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/sha.d.ts","../../../node_modules/.pnpm/@cosmjs+math@0.32.4/node_modules/@cosmjs/math/build/integers.d.ts","../../../node_modules/.pnpm/@cosmjs+math@0.32.4/node_modules/@cosmjs/math/build/decimal.d.ts","../../../node_modules/.pnpm/@cosmjs+math@0.32.4/node_modules/@cosmjs/math/build/index.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/slip10.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/index.d.ts","../../../node_modules/.pnpm/@cosmjs+encoding@0.32.4/node_modules/@cosmjs/encoding/build/ascii.d.ts","../../../node_modules/.pnpm/@cosmjs+encoding@0.32.4/node_modules/@cosmjs/encoding/build/base64.d.ts","../../../node_modules/.pnpm/@cosmjs+encoding@0.32.4/node_modules/@cosmjs/encoding/build/bech32.d.ts","../../../node_modules/.pnpm/@cosmjs+encoding@0.32.4/node_modules/@cosmjs/encoding/build/hex.d.ts","../../../node_modules/.pnpm/readonly-date@1.0.0/node_modules/readonly-date/index.d.ts","../../../node_modules/.pnpm/@cosmjs+encoding@0.32.4/node_modules/@cosmjs/encoding/build/rfc3339.d.ts","../../../node_modules/.pnpm/@cosmjs+encoding@0.32.4/node_modules/@cosmjs/encoding/build/utf8.d.ts","../../../node_modules/.pnpm/@cosmjs+encoding@0.32.4/node_modules/@cosmjs/encoding/build/index.d.ts","../src/client/create-client.ts","../src/did/utils.ts","../src/did/ixo-resolver.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/@types+events@3.0.3/node_modules/@types/events/index.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/index.d.ts"],"fileIdsList":[[167,217,234,235],[136,167,217,234,235],[135,136,137,138,139,140,141,142,143,144,148,167,217,234,235],[142,167,217,234,235],[147,167,217,234,235],[150,151,152,153,155,156,167,217,234,235],[154,167,217,234,235],[145,167,217,234,235],[145,146,167,217,234,235],[67,74,167,217,234,235],[77,78,167,217,234,235],[77,167,217,234,235],[77,79,167,217,234,235],[69,70,75,76,167,217,234,235],[167,214,215,217,234,235],[167,216,217,234,235],[217,234,235],[167,217,222,234,235,252],[167,217,218,223,228,234,235,237,249,260],[167,217,218,219,228,234,235,237],[162,163,164,167,217,234,235],[167,217,220,234,235,261],[167,217,221,222,229,234,235,238],[167,217,222,234,235,249,257],[167,217,223,225,228,234,235,237],[167,216,217,224,234,235],[167,217,225,226,234,235],[167,217,227,228,234,235],[167,216,217,228,234,235],[167,217,228,229,230,234,235,249,260],[167,217,228,229,230,234,235,244,249,252],[167,210,217,225,228,231,234,235,237,249,260],[167,217,228,229,231,232,234,235,237,249,257,260],[167,217,231,233,234,235,249,257,260],[165,166,167,168,169,170,171,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266],[167,217,228,234,235],[167,217,234,235,236,260],[167,217,225,228,234,235,237,249],[167,217,234,235,238],[167,217,234,235,239],[167,216,217,234,235,240],[167,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266],[167,217,234,235,242],[167,217,234,235,243],[167,217,228,234,235,244,245],[167,217,234,235,244,246,261,263],[167,217,229,234,235],[167,217,228,234,235,249,250,252],[167,217,234,235,251,252],[167,217,234,235,249,250],[167,217,234,235,252],[167,217,234,235,253],[167,214,217,234,235,249,254],[167,217,228,234,235,255,256],[167,217,234,235,255,256],[167,217,222,234,235,237,249,257],[167,217,234,235,258],[167,217,234,235,237,259],[167,217,231,234,235,243,260],[167,217,222,234,235,261],[167,217,234,235,249,262],[167,217,234,235,236,263],[167,217,234,235,264],[167,210,217,234,235],[167,210,217,228,230,234,235,240,249,252,260,262,263,265],[167,217,234,235,249,266],[83,167,217,234,235],[83,109,118,167,217,234,235],[75,83,167,217,234,235],[68,83,85,86,87,167,217,234,235],[80,83,88,101,167,217,234,235],[83,88,102,167,217,234,235],[83,85,86,88,90,95,96,101,102,103,104,105,106,107,108,167,217,234,235],[94,95,167,217,234,235],[83,88,101,167,217,234,235],[83,88,105,167,217,234,235],[91,92,97,98,99,100,167,217,234,235],[83,91,167,217,234,235],[83,91,96,167,217,234,235],[69,89,90,167,217,234,235],[91,167,217,234,235],[80,83,167,217,234,235],[69,80,81,82,167,217,234,235],[69,80,83,167,217,234,235],[80,167,217,234,235],[122,124,167,217,234,235],[69,121,167,217,234,235],[83,108,167,217,234,235],[105,121,123,167,217,234,235],[120,125,128,129,167,217,234,235],[69,167,217,234,235],[105,126,127,167,217,234,235],[83,109,113,167,217,234,235],[84,167,217,234,235],[84,109,113,114,115,116,167,217,234,235],[83,109,113,114,167,217,234,235],[83,109,110,167,217,234,235],[83,90,167,217,234,235],[83,101,109,110,111,112,167,217,234,235],[71,72,73,167,217,234,235],[71,167,217,234,235],[59,167,217,234,235],[93,167,217,234,235],[64,65,167,217,234,235],[64,167,217,234,235],[60,167,217,234,235],[67,167,217,234,235],[63,167,217,234,235],[61,63,167,217,234,235],[61,62,167,217,234,235],[62,167,217,234,235],[58,61,62,65,66,68,167,217,234,235],[59,60,63,64,67,167,217,234,235],[59,60,63,167,217,234,235],[167,182,186,217,234,235,260],[167,182,217,234,235,249,260],[167,177,217,234,235],[167,179,182,217,234,235,257,260],[167,217,234,235,237,257],[167,217,234,235,267],[167,177,217,234,235,267],[167,179,182,217,234,235,237,260],[167,174,175,178,181,217,228,234,235,249,260],[167,182,189,217,234,235],[167,174,180,217,234,235],[167,182,203,204,217,234,235],[167,178,182,217,234,235,252,260,267],[167,203,217,234,235,267],[167,176,177,217,234,235,267],[167,182,217,234,235],[167,176,177,178,179,180,181,182,183,184,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,204,205,206,207,208,209,217,234,235],[167,182,197,217,234,235],[167,182,189,190,217,234,235],[167,180,182,190,191,217,234,235],[167,181,217,234,235],[167,174,177,182,217,234,235],[167,182,186,190,191,217,234,235],[167,186,217,234,235],[167,180,182,185,217,234,235,260],[167,174,179,182,189,217,234,235],[167,217,234,235,249],[167,177,182,203,217,234,235,265,267],[83,113,167,217,234,235],[83,102,119,130,131,149,157,167,217,234,235],[83,131,159,167,217,234,235],[113,117,119,130,131,132,133,134,158,160,167,217,234,235],[131,167,217,234,235],[109,113,130,131,133,167,217,234,235]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"0feb3e59277511c22c957053c1a9e4697b5c15d55e7cfc05200180ba7e6ed958","impliedFormat":99},{"version":"4a3605bef1a5ef29fd5a1696dd95b0b4e2259e2d07a4d88fac79f3a9765c44a2","impliedFormat":99},{"version":"370079895f1acdd4bb5194a403c85bf60cfbb2654bced9430a6c7210e7246be8","impliedFormat":99},{"version":"3d0e04c8ca3f41da5f3d689500d9c4aeb54a1c59764d66d58f0e579b9af720e5","impliedFormat":99},{"version":"0555672809ee46231f06dbf07239f047f3377af8d92a6ed48b6d7615b1d7c2b3","impliedFormat":99},{"version":"3ec6344370462a83a705334a8d8883657b697b9daf237447c9ede0683b1f1748","impliedFormat":99},{"version":"552223520e823223ee13c5764e9b69b1819c985818a8bcda435d8d1dbd909bee","impliedFormat":99},{"version":"49b7c3ddd683c09aa437dd92681699387441f522524b14d2331ce494a9bf2f27","impliedFormat":99},{"version":"363dca5004ac5a3d9c2bba12812b97a64461911762f0b8f9320a8856ec53bcad","impliedFormat":99},{"version":"1447d46bff9e7c5c77da14515a7456ea5e919ce6e28f5e6746edf99818e4be47","impliedFormat":99},{"version":"557b8c7481296f4b7ed362320f3bbb40bb87404edf880c81224f365a8d1e17f3","impliedFormat":99},{"version":"283ed3d075bf7d3e8793f63b2a52f475ed84d95b7b6351c5d5bcc6c49d4b845b","impliedFormat":99},{"version":"6f38045547cdfd54ec19abcd943cace72c775fde739c5e0e1d917cf3030c16b5","impliedFormat":99},{"version":"acb7878969d4e9b9909d8ff03b274129aa233c8e19cf1e22bcb6906aae4f133c","impliedFormat":99},{"version":"6b61018f6e3c80c916162d2eb096dc24ed023eb30430b5bf5d5620f8d310f1c9","impliedFormat":99},{"version":"42399a4fea62b934a1c4266f5bfcb573019e31b2d87d425c23e40dc5601f3ac7","impliedFormat":99},{"version":"7e7437ba651c0a3899105ba1da1da3c217cfedd3f6809d346b14e8279618978c","impliedFormat":99},{"version":"b0d4732edbbc2c1d0d1a03a7cf4af98156469a18d783c4334601623b0b40abe0","impliedFormat":99},{"version":"0ac4196af8f96862b9d21e584f9d327d74b78013ec7bab7af7e56b84d482e3bd","impliedFormat":99},{"version":"7c31b18ebebbbaadc49dcb920a7c4a5d25a6dcc3511c20767b66afa7c2e76bcc","impliedFormat":99},{"version":"37c7ee0c18f09e0490bf70b32c43fdbfab74b306407b2922ccdda69463c765fd","impliedFormat":99},{"version":"6e622c6c9b81ca72ed23591315ec23469a4e8467c7302e213571b2ec1eaa4dd9","impliedFormat":99},{"version":"490a8258d8d47779110021227bd63cc97bc51019e1f4d77b4d5d9bf5556ac9d1","impliedFormat":99},{"version":"aa0328487bb5b4ba329ca4519226658a0901c87414496213cc7ee3938334cace","impliedFormat":99},{"version":"866998c5077f3e4be01cc42948181a9f3cebd47d4e08c92288f39cf8b6991f72","impliedFormat":99},{"version":"8f187f48496d9ad8a7cad43494b9c8ce18abde7ade01ca26015ea10dc2424681","impliedFormat":99},{"version":"c280b12d2449d86698bdcc85a76c6dae7152fa3b96bde7dea5bbb086b784fc3b","impliedFormat":99},{"version":"cf87b6e5cef3bc2c9dfb13e2776a96d2089cd5ed6fed39e763b312d48a16a630","impliedFormat":99},{"version":"130e4655e30a6d7a8004566642e24bf3016b5e5a2e5dcd72c0a61b663f7df711","impliedFormat":99},{"version":"7c0a1c0abdc4a5e289b7c1b23f293f4ec2e4995f80e903ff648795f9c9239233","impliedFormat":99},{"version":"571394fb840020593619865ab15a7bb3ee366a665304a1036472de77d347173c","impliedFormat":99},{"version":"0843bf156009aedda6d2c6f9dbd36152c252e779b5a8a12e76dae2321d023be5","impliedFormat":99},{"version":"783c6f996861f595c49414be5b1d38607bfba807a55e3c1ae4511ff55316c58a","impliedFormat":99},{"version":"0013e21d69d1e5e7cd071b23fcc22fac98228a806d9b1d59da89edbce2ee058f","impliedFormat":99},{"version":"efcdabf84e7189fc0a679c9721bace814d6e09497e244b422a2f13c526f1e683","impliedFormat":99},{"version":"6544dab49004fecb69a4ef775e9ad2773a6148b1f9bfd9b75508e3afa11f5d35","impliedFormat":99},{"version":"8abed90f1e56e36006abd3f363db2debb854794237f19296faf8d2c672e33507","impliedFormat":99},{"version":"31778bd23d5e0f4172fa75dc794e3acac83535f4dba72c59ae1f6ac9c083db90","impliedFormat":99},{"version":"9930d3ae41a4e6d3ca0d16aff49330326479709ea22c7ff8432beece133be98f","impliedFormat":99},{"version":"2a0320f1368a848d02571ab066d7da58a2437c02c2da2a609d0497de1c459f94","impliedFormat":99},{"version":"739d85b4412b04fd42a9dc0a1b4b2a7d8f9e77628b0cace46b53cbdd074abca4","impliedFormat":99},{"version":"8cd5c179624ceeb8c0d0bde0ae2f8481940f78c7888c7627a73b793240a99fc4","impliedFormat":99},{"version":"908fd3fe9d365720526f1764d755859b877a6f59e8a410bef1d75ed406287ad7","impliedFormat":99},{"version":"20d56d397a930fdff44190677b79c79efbff1fea5cacded651a2eca350f2fbc3","impliedFormat":99},{"version":"c1230984e07f04d13cb8ca6ef34c5d6761c6836d7cff69959bb63d87bae13b8d","impliedFormat":99},{"version":"f33f5ae1068785f223e48265bbfd2dbf04bc5e8620c2fe1a2c9a66751739d1eb","impliedFormat":99},{"version":"a907d3fb14e6705d65aefa322d8b6831a46149deec5ae8fdff390d4c35a19eb9","impliedFormat":99},{"version":"3e9294c040fcdb0243eedc3565c870a7446cd415d7829f0bdfed24f96dd7dd11","impliedFormat":99},{"version":"1737272b952d77d7710cf3cfc399ec06273862a701585ab6e4318a92815189c5","impliedFormat":99},{"version":"aa112e48341c2612e9e052ead1e16c59eb0a104582816520bbcbbb87fd476229","impliedFormat":99},{"version":"c81b31f8e9a5d8ea31619820748e219bb23678fd788e2b83b447c20d5fa601b6","impliedFormat":99},{"version":"9a07472000de8e698ee2eb4c753a291c116d83f9abb2a3fa620b9e102cb59f27","impliedFormat":99},{"version":"824ec91c720b5b2c31cc3f7c19471961bcac101d40a8cec1efd330da3f561ad7","impliedFormat":99},{"version":"c52a6fd7585242b3d39dc1d8e3f3948848bf4391b911e5b1fe8c02a9021035e9","impliedFormat":99},{"version":"f902122c7f8a8fb417d27a02189ebecac551173ec926d9fff20fa5dfcc1afa92","impliedFormat":99},{"version":"c4127d9caab36a8dbed7e4c81833e08d0152fac1e95626eb78ddf58df72fe857","impliedFormat":99},{"version":"11f1080a104485c39ff72eac6486d7c7da279c7908be0f175a0e6b72aed4e580","impliedFormat":99},{"version":"3a628993a41827e5c5f782a1fd3e36bd8644813ba9c9fb25308e66dce81e19a9","impliedFormat":99},{"version":"0fedb78ebcc9e4919555c7e86fbccff37f5645b954de73c68af94d01073d687c","impliedFormat":99},{"version":"31135b2c98344290ee5e07f4f5818c00481bd58f541c48b9cb02746e365880bb","impliedFormat":99},{"version":"6740011843232100bc6142492049c278ffece0e779916b38e3731491a784d4a8","impliedFormat":99},{"version":"15873ab6ae6b4d1ba6c149f147e3b382d29a445eb1c9ff25a430f6d797f8c7a0","impliedFormat":99},{"version":"108f902f44ba46f0721be5e6ba929e11ea2a7ed1cd497e2d4a4210cd04e898d7","impliedFormat":99},{"version":"0c5f8ec14c92585f47eae514ca52b8535afbac4f606058deb67680f45d284560","impliedFormat":99},{"version":"080320228836b8128b3f997b78ee7af26befd0e900247506a3bbd78f85b2598e","impliedFormat":99},{"version":"6b7af8e28e0faea23784596f012521321c36ad5d656394df3c77f8dd3ed33bec","impliedFormat":99},{"version":"2d9a0c92a3fb49d6e7a1613f3dd901eff39f98df4a9e5aaf26722d1a4decdccb","impliedFormat":99},{"version":"73e7110e70b56f03b0bd70c24a8f33d8c58e32a4e5f416e0184df6bd1d6ac96d","impliedFormat":99},{"version":"d8f10b2ac317360d862249e6360d9a443f816b654e4474b1fdd26f0f1a4468c3","impliedFormat":99},{"version":"811e1969690f6a481114809efb02283170a4258eefd2de12108b4258a44c3530","impliedFormat":99},{"version":"adae7cee895a8685b2be299450c13debcc74ab90be3ecdb82f531a4d4e50a494","impliedFormat":99},{"version":"dffa41e5735dbe901ca184e8830be90c4ed27df6c76ed4286a6ea74bd5a8551e","impliedFormat":99},{"version":"881271473ba93a1a16324512e7c4ca18c40036636659d78b75a419bcbce063f7","impliedFormat":99},{"version":"ea4e1b09a2ee033d145e93baad4338f8c4339b4b765c1a4386dbbd56044c3360","signature":"37c6bb347b49490f366639749302bdf774b4e5e0d2ebba43116c3ca48c6d6d8a","impliedFormat":99},{"version":"08fb8a29abaa438257f1675be32a9e62dcf649824d0ea1d681078afeb5eff6ac","signature":"d667a509e7599c8ad3b39aaa88dc379b34b2a6fbb83bbbeff96722559aff7c92","impliedFormat":99},{"version":"350880dac600f8d787769d859a477ec2ad9b8862d8a8a5204682e5dde2d63c27","signature":"b651a2d07ecbd1e8a07dc1408e0058b4ca3f53bef1ccec599f5db2140b16dea3","impliedFormat":99},{"version":"b6a9ed61ef98768e4ffc6ec50b4427fb524290a58e4ad2220a9fb4abb39fc886","signature":"951a13e8541a4c6156dbc2059e1163190438d1909f806ad6c6da22ea782aa4e3","impliedFormat":99},{"version":"2321e25e34075320eeedbc5cd56051c9ce0341cb6a51e4faafb8f827d8045ceb","impliedFormat":1},{"version":"1cc2355816ba43eb2d6eb2670ac83d29a3ef02a01c09a4e2d5c0cc21e35249f7","impliedFormat":1},{"version":"ce47207ec1bd458b7966f0bbb5d9d15be0b00116fec4efda52ec8fcae8321586","impliedFormat":1},{"version":"a1f914818a2cc3bf3a693b99902d9cb0c1a6613df3cdd2bd8134cc63e695565c","impliedFormat":1},{"version":"3bd1d708281a33e7736f9c75c74221c077827d21c941f72ed3a8533b55fa5c7c","impliedFormat":1},{"version":"838c4154f06e964281fbfa88cf8cf8d76f194cbdd4d3f13e0a9e9a52e5faac6b","impliedFormat":1},{"version":"e32f79a7f77271780ecfcff5205300791429c2526b0b72307bb300ded25420c4","impliedFormat":1},{"version":"6ea46b5278f87aaf63479e72bb2d44474e458b4e603fa7ef46b3730c8a320073","impliedFormat":1},{"version":"22176ca5c9549edad90a532d5623a9b6ec552505178a7aeec3591f0b8f485d87","impliedFormat":1},{"version":"ba01df9e06cc51729deef602895fe3ceafd9ce2f17f2119db81eb67ff6ef7998","impliedFormat":1},{"version":"1dbb63933fe1404f9947c55f7f53308eb6fafd3b8646c4afc5f8a0376b1886ac","impliedFormat":1},{"version":"2dee5f01ddfa5375af2104e3d58e98afb881b63294187bab0a3df873a7bb2ad1","impliedFormat":1},{"version":"3dbe631d8fddc408346806ef5cf4195ba34a8ba1eb3cfde3aeffb813a38bffd2","impliedFormat":1},{"version":"8a0a3cdb27704e89ff1dbf93e43bb40bb2a96199a4483edc22fcf640a590a99d","impliedFormat":1},{"version":"3d444fa6e8057de7ea8ff4a9b737adc9538b2fcf7767969bdedc58bfc892582c","impliedFormat":1},{"version":"c0b474f26cc3ff83a7bc92abc4f72ca78cbb22631a9cd5ce28f9ae68802f47b5","impliedFormat":1},{"version":"f68ad124636abfe69a69d6c87238656dbbf45d4fa0b483caa663cbe7211a67ca","impliedFormat":1},{"version":"7e4fc20c25807c9ef912f4c6d805ceae5399c5d962d445db2e3a4cff24a35793","impliedFormat":1},{"version":"7ddadda20f6682a87876634b7669d8e5c0e5c2341a1a1f94038f833c7b38ffcd","impliedFormat":1},{"version":"6ba292cc3df1eea225aacb3182f9b0b8eab9d8637a9c698af1e5b58aa5492e9e","impliedFormat":1},{"version":"512ef5675be30738a2beeb4e151d03745c7b5207407a31806a81794a32732d53","impliedFormat":1},{"version":"831cea0366cc9085e7ded3a2d039a57d9fdda3670711f998a87d14d7b2fb45e1","impliedFormat":1},{"version":"39b470f069f0010b080280d2690679f04f962efd65ed3b452a1a67c834c51c0d","impliedFormat":1},{"version":"e24f99c7d17079466fa104c3a3e3380932ac079bc092608ee65686ee5a9a070a","signature":"72f061afa1d54aef8c3160b9515be334cc9f992a7d3ffc469f32b736574db15d","impliedFormat":99},{"version":"1f57dcb24a94fba44febcc3b1d049b140676595dddccb3b879b218346b895b8b","signature":"ec71169215a1099d57737fc7fee938eb74b4950a0bafa2246d6bb970dc4086b9","impliedFormat":99},{"version":"2b1d1c34455d93087739c3ee01fce536c6a1ba75fded708f8947e1327a5df7a3","signature":"95c07f0cdc08be07de1d7e9fd0d80869e5514121947c543249561945f3b72c2a","impliedFormat":99},{"version":"a193c48f117ad98e206e007e1ce00fb41e2efffe83c71fa92e03bb63382ee0b4","signature":"8744039416ecd5ef3a970083c9711645cacebe432c5ec698078898f0ea89bd3d","impliedFormat":99},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"93d28b4eb12c68fccc1f2fc04a4ef83ea3b2a03b18055d3bf29cab267aa7042e","impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"bb45cd435da536500f1d9692a9b49d0c570b763ccbf00473248b777f5c1f353b","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"21145ce1c54e05ef9e52092b98a4ebfb326b92f52e76e47211c50cfcd2a2b4ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c959a391a75be9789b43c8468f71e3fa06488b4d691d5729dde1416dcd38225b","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"5ebe6f4cc3b803cbfc962bae0d954f9c80e5078ca41eb3f1de41d92e7193ef37","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f663c2f91127ef7024e8ca4b3b4383ff2770e5f826696005de382282794b127","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1}],"root":[[131,134],[158,161]],"options":{"allowSyntheticDefaultImports":true,"alwaysStrict":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictBindCallApply":true,"strictNullChecks":true,"strictPropertyInitialization":false,"target":9},"referencedMap":[[135,1],[136,1],[137,2],[149,3],[138,2],[139,1],[140,1],[141,2],[143,4],[142,1],[144,2],[148,5],[150,1],[151,1],[152,1],[153,1],[157,6],[155,7],[156,1],[146,8],[147,9],[145,1],[75,10],[79,11],[76,12],[105,12],[80,13],[108,12],[77,14],[78,12],[172,1],[214,15],[215,15],[216,16],[167,17],[217,18],[218,19],[219,20],[162,1],[165,21],[163,1],[164,1],[220,22],[221,23],[222,24],[223,25],[224,26],[225,27],[226,27],[227,28],[228,29],[229,30],[230,31],[168,1],[166,1],[231,32],[232,33],[233,34],[267,35],[234,36],[235,1],[236,37],[237,38],[238,39],[239,40],[240,41],[241,42],[242,43],[243,44],[244,45],[245,45],[246,46],[247,1],[248,47],[249,48],[251,49],[250,50],[252,51],[253,52],[254,53],[255,54],[256,55],[257,56],[258,57],[259,58],[260,59],[261,60],[262,61],[263,62],[264,63],[169,1],[170,1],[171,1],[211,64],[212,1],[213,1],[265,65],[266,66],[118,67],[119,68],[107,67],[85,69],[88,70],[102,71],[103,72],[109,73],[96,74],[104,75],[106,76],[90,67],[101,77],[99,78],[97,79],[98,78],[91,80],[100,81],[89,67],[92,78],[81,82],[83,83],[82,84],[129,85],[125,86],[122,87],[121,88],[124,89],[130,90],[120,91],[128,92],[126,67],[127,67],[123,67],[84,67],[116,93],[114,94],[117,95],[115,96],[112,67],[111,97],[110,98],[113,99],[173,1],[74,100],[72,101],[73,101],[71,1],[93,102],[94,103],[95,103],[59,1],[60,104],[58,1],[65,105],[67,106],[70,107],[61,108],[62,109],[87,110],[63,111],[86,111],[69,112],[68,113],[64,114],[66,1],[154,1],[56,1],[57,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[20,1],[21,1],[4,1],[22,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[37,1],[34,1],[35,1],[36,1],[38,1],[7,1],[39,1],[44,1],[45,1],[40,1],[41,1],[42,1],[43,1],[8,1],[49,1],[46,1],[47,1],[48,1],[50,1],[9,1],[51,1],[52,1],[53,1],[55,1],[54,1],[1,1],[189,115],[199,116],[188,115],[209,117],[180,118],[179,119],[208,120],[202,121],[207,122],[182,123],[196,124],[181,125],[205,126],[177,127],[176,120],[206,128],[178,129],[183,130],[184,1],[187,130],[174,1],[210,131],[200,132],[191,133],[192,134],[194,135],[190,136],[193,137],[203,120],[185,138],[186,139],[195,140],[175,141],[198,132],[197,130],[201,1],[204,142],[132,143],[158,144],[160,145],[159,1],[161,146],[133,147],[131,67],[134,148]],"version":"5.9.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/bytes.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/bases/interface.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/block/interface.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/hashes/digest.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/hashes/hasher.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/hashes/interface.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/link/interface.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/cid.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/varint.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/codecs/interface.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/interface.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/index.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/codecs/raw.d.ts","../../../node_modules/.pnpm/cborg@4.3.2/node_modules/cborg/types/lib/token.d.ts","../../../node_modules/.pnpm/cborg@4.3.2/node_modules/cborg/types/lib/decode.d.ts","../../../node_modules/.pnpm/cborg@4.3.2/node_modules/cborg/types/lib/encode.d.ts","../../../node_modules/.pnpm/cborg@4.3.2/node_modules/cborg/types/cborg.d.ts","../../../node_modules/.pnpm/@ipld+dag-cbor@9.2.5/node_modules/@ipld/dag-cbor/dist/src/index.d.ts","../../../node_modules/.pnpm/@ipld+dag-ucan@3.4.5/node_modules/@ipld/dag-ucan/dist/src/crypto.d.ts","../../../node_modules/.pnpm/@ipld+dag-ucan@3.4.5/node_modules/@ipld/dag-ucan/dist/src/ucan.d.ts","../../../node_modules/.pnpm/@ipld+dag-ucan@3.4.5/node_modules/@ipld/dag-ucan/dist/src/view.d.ts","../../../node_modules/.pnpm/@ipld+dag-ucan@3.4.5/node_modules/@ipld/dag-ucan/dist/src/codec/jwt.d.ts","../../../node_modules/.pnpm/@ipld+dag-ucan@3.4.5/node_modules/@ipld/dag-ucan/dist/src/lib.d.ts","../../../node_modules/.pnpm/@ucanto+interface@11.0.1/node_modules/@ucanto/interface/dist/src/capability.d.ts","../../../node_modules/.pnpm/@ucanto+interface@11.0.1/node_modules/@ucanto/interface/dist/src/transport.d.ts","../../../node_modules/.pnpm/@ucanto+interface@11.0.1/node_modules/@ucanto/interface/dist/src/lib.d.ts","../../../node_modules/.pnpm/@ucanto+server@11.0.3/node_modules/@ucanto/server/dist/src/api.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/cbor.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/hashes/sha2.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/hashes/identity.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/dag.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema/type.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/result.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema/schema.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema/uri.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/bases/base.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/bases/base32.d.ts","../../../node_modules/.pnpm/multiformats@13.4.1/node_modules/multiformats/dist/src/bases/base58.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/link.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema/link.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema/principal.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema/did.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema/text.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/schema.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/delegation.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/invocation.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/message.d.ts","../../../node_modules/.pnpm/@ipld+dag-ucan@3.4.5/node_modules/@ipld/dag-ucan/dist/src/did.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/receipt.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/car.d.ts","../../../node_modules/.pnpm/@ipld+dag-ucan@3.4.5/node_modules/@ipld/dag-ucan/dist/src/signature.d.ts","../../../node_modules/.pnpm/@ucanto+core@10.4.6/node_modules/@ucanto/core/dist/src/lib.d.ts","../../../node_modules/.pnpm/@ucanto+validator@10.0.1/node_modules/@ucanto/validator/dist/src/error.d.ts","../../../node_modules/.pnpm/@ucanto+validator@10.0.1/node_modules/@ucanto/validator/dist/src/capability.d.ts","../../../node_modules/.pnpm/@ucanto+validator@10.0.1/node_modules/@ucanto/validator/dist/src/authorization.d.ts","../../../node_modules/.pnpm/@ucanto+validator@10.0.1/node_modules/@ucanto/validator/dist/src/lib.d.ts","../../../node_modules/.pnpm/@ucanto+server@11.0.3/node_modules/@ucanto/server/dist/src/handler.d.ts","../../../node_modules/.pnpm/@ucanto+server@11.0.3/node_modules/@ucanto/server/dist/src/server.d.ts","../../../node_modules/.pnpm/@ucanto+server@11.0.3/node_modules/@ucanto/server/dist/src/error.d.ts","../../../node_modules/.pnpm/@ucanto+server@11.0.3/node_modules/@ucanto/server/dist/src/lib.d.ts","../../../node_modules/.pnpm/@ucanto+client@9.0.2/node_modules/@ucanto/client/dist/src/connection.d.ts","../../../node_modules/.pnpm/@ucanto+client@9.0.2/node_modules/@ucanto/client/dist/src/lib.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/multiformat.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/ed25519/type.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/ed25519/signer.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/verifier.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/ed25519/verifier.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/ed25519.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/rsa/type.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/signer.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/rsa.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/absentee.d.ts","../../../node_modules/.pnpm/@ucanto+principal@9.0.3/node_modules/@ucanto/principal/dist/src/lib.d.ts","../src/types.ts","../src/capabilities/capability.ts","../src/store/memory.ts","../src/validator/validator.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/bip39.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/hash.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/hmac.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/keccak.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/libsodium.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/random.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/ripemd.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/secp256k1signature.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/secp256k1.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/sha.d.ts","../../../node_modules/.pnpm/@cosmjs+math@0.32.4/node_modules/@cosmjs/math/build/integers.d.ts","../../../node_modules/.pnpm/@cosmjs+math@0.32.4/node_modules/@cosmjs/math/build/decimal.d.ts","../../../node_modules/.pnpm/@cosmjs+math@0.32.4/node_modules/@cosmjs/math/build/index.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/slip10.d.ts","../../../node_modules/.pnpm/@cosmjs+crypto@0.32.4/node_modules/@cosmjs/crypto/build/index.d.ts","../../../node_modules/.pnpm/@cosmjs+encoding@0.32.4/node_modules/@cosmjs/encoding/build/ascii.d.ts","../../../node_modules/.pnpm/@cosmjs+encoding@0.32.4/node_modules/@cosmjs/encoding/build/base64.d.ts","../../../node_modules/.pnpm/@cosmjs+encoding@0.32.4/node_modules/@cosmjs/encoding/build/bech32.d.ts","../../../node_modules/.pnpm/@cosmjs+encoding@0.32.4/node_modules/@cosmjs/encoding/build/hex.d.ts","../../../node_modules/.pnpm/readonly-date@1.0.0/node_modules/readonly-date/index.d.ts","../../../node_modules/.pnpm/@cosmjs+encoding@0.32.4/node_modules/@cosmjs/encoding/build/rfc3339.d.ts","../../../node_modules/.pnpm/@cosmjs+encoding@0.32.4/node_modules/@cosmjs/encoding/build/utf8.d.ts","../../../node_modules/.pnpm/@cosmjs+encoding@0.32.4/node_modules/@cosmjs/encoding/build/index.d.ts","../src/client/create-client.ts","../src/did/utils.ts","../src/did/ixo-resolver.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/@types+events@3.0.3/node_modules/@types/events/index.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.19.1/node_modules/@types/node/index.d.ts"],"fileIdsList":[[167,217,234,235],[136,167,217,234,235],[135,136,137,138,139,140,141,142,143,144,148,167,217,234,235],[142,167,217,234,235],[147,167,217,234,235],[150,151,152,153,155,156,167,217,234,235],[154,167,217,234,235],[145,167,217,234,235],[145,146,167,217,234,235],[67,74,167,217,234,235],[77,78,167,217,234,235],[77,167,217,234,235],[77,79,167,217,234,235],[69,70,75,76,167,217,234,235],[167,214,215,217,234,235],[167,216,217,234,235],[217,234,235],[167,217,222,234,235,252],[167,217,218,223,228,234,235,237,249,260],[167,217,218,219,228,234,235,237],[162,163,164,167,217,234,235],[167,217,220,234,235,261],[167,217,221,222,229,234,235,238],[167,217,222,234,235,249,257],[167,217,223,225,228,234,235,237],[167,216,217,224,234,235],[167,217,225,226,234,235],[167,217,227,228,234,235],[167,216,217,228,234,235],[167,217,228,229,230,234,235,249,260],[167,217,228,229,230,234,235,244,249,252],[167,210,217,225,228,231,234,235,237,249,260],[167,217,228,229,231,232,234,235,237,249,257,260],[167,217,231,233,234,235,249,257,260],[165,166,167,168,169,170,171,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266],[167,217,228,234,235],[167,217,234,235,236,260],[167,217,225,228,234,235,237,249],[167,217,234,235,238],[167,217,234,235,239],[167,216,217,234,235,240],[167,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266],[167,217,234,235,242],[167,217,234,235,243],[167,217,228,234,235,244,245],[167,217,234,235,244,246,261,263],[167,217,229,234,235],[167,217,228,234,235,249,250,252],[167,217,234,235,251,252],[167,217,234,235,249,250],[167,217,234,235,252],[167,217,234,235,253],[167,214,217,234,235,249,254],[167,217,228,234,235,255,256],[167,217,234,235,255,256],[167,217,222,234,235,237,249,257],[167,217,234,235,258],[167,217,234,235,237,259],[167,217,231,234,235,243,260],[167,217,222,234,235,261],[167,217,234,235,249,262],[167,217,234,235,236,263],[167,217,234,235,264],[167,210,217,234,235],[167,210,217,228,230,234,235,240,249,252,260,262,263,265],[167,217,234,235,249,266],[83,167,217,234,235],[83,109,118,167,217,234,235],[75,83,167,217,234,235],[68,83,85,86,87,167,217,234,235],[80,83,88,101,167,217,234,235],[83,88,102,167,217,234,235],[83,85,86,88,90,95,96,101,102,103,104,105,106,107,108,167,217,234,235],[94,95,167,217,234,235],[83,88,101,167,217,234,235],[83,88,105,167,217,234,235],[91,92,97,98,99,100,167,217,234,235],[83,91,167,217,234,235],[83,91,96,167,217,234,235],[69,89,90,167,217,234,235],[91,167,217,234,235],[80,83,167,217,234,235],[69,80,81,82,167,217,234,235],[69,80,83,167,217,234,235],[80,167,217,234,235],[122,124,167,217,234,235],[69,121,167,217,234,235],[83,108,167,217,234,235],[105,121,123,167,217,234,235],[120,125,128,129,167,217,234,235],[69,167,217,234,235],[105,126,127,167,217,234,235],[83,109,113,167,217,234,235],[84,167,217,234,235],[84,109,113,114,115,116,167,217,234,235],[83,109,113,114,167,217,234,235],[83,109,110,167,217,234,235],[83,90,167,217,234,235],[83,101,109,110,111,112,167,217,234,235],[71,72,73,167,217,234,235],[71,167,217,234,235],[59,167,217,234,235],[93,167,217,234,235],[64,65,167,217,234,235],[64,167,217,234,235],[60,167,217,234,235],[67,167,217,234,235],[63,167,217,234,235],[61,63,167,217,234,235],[61,62,167,217,234,235],[62,167,217,234,235],[58,61,62,65,66,68,167,217,234,235],[59,60,63,64,67,167,217,234,235],[59,60,63,167,217,234,235],[167,182,186,217,234,235,260],[167,182,217,234,235,249,260],[167,177,217,234,235],[167,179,182,217,234,235,257,260],[167,217,234,235,237,257],[167,217,234,235,267],[167,177,217,234,235,267],[167,179,182,217,234,235,237,260],[167,174,175,178,181,217,228,234,235,249,260],[167,182,189,217,234,235],[167,174,180,217,234,235],[167,182,203,204,217,234,235],[167,178,182,217,234,235,252,260,267],[167,203,217,234,235,267],[167,176,177,217,234,235,267],[167,182,217,234,235],[167,176,177,178,179,180,181,182,183,184,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,204,205,206,207,208,209,217,234,235],[167,182,197,217,234,235],[167,182,189,190,217,234,235],[167,180,182,190,191,217,234,235],[167,181,217,234,235],[167,174,177,182,217,234,235],[167,182,186,190,191,217,234,235],[167,186,217,234,235],[167,180,182,185,217,234,235,260],[167,174,179,182,189,217,234,235],[167,217,234,235,249],[167,177,182,203,217,234,235,265,267],[83,113,167,217,234,235],[83,102,119,130,131,149,157,167,217,234,235],[83,131,159,167,217,234,235],[113,117,119,130,131,132,133,134,158,160,167,217,234,235],[131,167,217,234,235],[109,113,130,131,133,167,217,234,235]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"0feb3e59277511c22c957053c1a9e4697b5c15d55e7cfc05200180ba7e6ed958","impliedFormat":99},{"version":"4a3605bef1a5ef29fd5a1696dd95b0b4e2259e2d07a4d88fac79f3a9765c44a2","impliedFormat":99},{"version":"370079895f1acdd4bb5194a403c85bf60cfbb2654bced9430a6c7210e7246be8","impliedFormat":99},{"version":"3d0e04c8ca3f41da5f3d689500d9c4aeb54a1c59764d66d58f0e579b9af720e5","impliedFormat":99},{"version":"0555672809ee46231f06dbf07239f047f3377af8d92a6ed48b6d7615b1d7c2b3","impliedFormat":99},{"version":"3ec6344370462a83a705334a8d8883657b697b9daf237447c9ede0683b1f1748","impliedFormat":99},{"version":"552223520e823223ee13c5764e9b69b1819c985818a8bcda435d8d1dbd909bee","impliedFormat":99},{"version":"49b7c3ddd683c09aa437dd92681699387441f522524b14d2331ce494a9bf2f27","impliedFormat":99},{"version":"363dca5004ac5a3d9c2bba12812b97a64461911762f0b8f9320a8856ec53bcad","impliedFormat":99},{"version":"1447d46bff9e7c5c77da14515a7456ea5e919ce6e28f5e6746edf99818e4be47","impliedFormat":99},{"version":"557b8c7481296f4b7ed362320f3bbb40bb87404edf880c81224f365a8d1e17f3","impliedFormat":99},{"version":"283ed3d075bf7d3e8793f63b2a52f475ed84d95b7b6351c5d5bcc6c49d4b845b","impliedFormat":99},{"version":"6f38045547cdfd54ec19abcd943cace72c775fde739c5e0e1d917cf3030c16b5","impliedFormat":99},{"version":"acb7878969d4e9b9909d8ff03b274129aa233c8e19cf1e22bcb6906aae4f133c","impliedFormat":99},{"version":"6b61018f6e3c80c916162d2eb096dc24ed023eb30430b5bf5d5620f8d310f1c9","impliedFormat":99},{"version":"42399a4fea62b934a1c4266f5bfcb573019e31b2d87d425c23e40dc5601f3ac7","impliedFormat":99},{"version":"7e7437ba651c0a3899105ba1da1da3c217cfedd3f6809d346b14e8279618978c","impliedFormat":99},{"version":"b0d4732edbbc2c1d0d1a03a7cf4af98156469a18d783c4334601623b0b40abe0","impliedFormat":99},{"version":"0ac4196af8f96862b9d21e584f9d327d74b78013ec7bab7af7e56b84d482e3bd","impliedFormat":99},{"version":"7c31b18ebebbbaadc49dcb920a7c4a5d25a6dcc3511c20767b66afa7c2e76bcc","impliedFormat":99},{"version":"37c7ee0c18f09e0490bf70b32c43fdbfab74b306407b2922ccdda69463c765fd","impliedFormat":99},{"version":"6e622c6c9b81ca72ed23591315ec23469a4e8467c7302e213571b2ec1eaa4dd9","impliedFormat":99},{"version":"490a8258d8d47779110021227bd63cc97bc51019e1f4d77b4d5d9bf5556ac9d1","impliedFormat":99},{"version":"aa0328487bb5b4ba329ca4519226658a0901c87414496213cc7ee3938334cace","impliedFormat":99},{"version":"866998c5077f3e4be01cc42948181a9f3cebd47d4e08c92288f39cf8b6991f72","impliedFormat":99},{"version":"8f187f48496d9ad8a7cad43494b9c8ce18abde7ade01ca26015ea10dc2424681","impliedFormat":99},{"version":"c280b12d2449d86698bdcc85a76c6dae7152fa3b96bde7dea5bbb086b784fc3b","impliedFormat":99},{"version":"cf87b6e5cef3bc2c9dfb13e2776a96d2089cd5ed6fed39e763b312d48a16a630","impliedFormat":99},{"version":"130e4655e30a6d7a8004566642e24bf3016b5e5a2e5dcd72c0a61b663f7df711","impliedFormat":99},{"version":"7c0a1c0abdc4a5e289b7c1b23f293f4ec2e4995f80e903ff648795f9c9239233","impliedFormat":99},{"version":"571394fb840020593619865ab15a7bb3ee366a665304a1036472de77d347173c","impliedFormat":99},{"version":"0843bf156009aedda6d2c6f9dbd36152c252e779b5a8a12e76dae2321d023be5","impliedFormat":99},{"version":"783c6f996861f595c49414be5b1d38607bfba807a55e3c1ae4511ff55316c58a","impliedFormat":99},{"version":"0013e21d69d1e5e7cd071b23fcc22fac98228a806d9b1d59da89edbce2ee058f","impliedFormat":99},{"version":"efcdabf84e7189fc0a679c9721bace814d6e09497e244b422a2f13c526f1e683","impliedFormat":99},{"version":"6544dab49004fecb69a4ef775e9ad2773a6148b1f9bfd9b75508e3afa11f5d35","impliedFormat":99},{"version":"8abed90f1e56e36006abd3f363db2debb854794237f19296faf8d2c672e33507","impliedFormat":99},{"version":"31778bd23d5e0f4172fa75dc794e3acac83535f4dba72c59ae1f6ac9c083db90","impliedFormat":99},{"version":"9930d3ae41a4e6d3ca0d16aff49330326479709ea22c7ff8432beece133be98f","impliedFormat":99},{"version":"2a0320f1368a848d02571ab066d7da58a2437c02c2da2a609d0497de1c459f94","impliedFormat":99},{"version":"739d85b4412b04fd42a9dc0a1b4b2a7d8f9e77628b0cace46b53cbdd074abca4","impliedFormat":99},{"version":"8cd5c179624ceeb8c0d0bde0ae2f8481940f78c7888c7627a73b793240a99fc4","impliedFormat":99},{"version":"908fd3fe9d365720526f1764d755859b877a6f59e8a410bef1d75ed406287ad7","impliedFormat":99},{"version":"20d56d397a930fdff44190677b79c79efbff1fea5cacded651a2eca350f2fbc3","impliedFormat":99},{"version":"c1230984e07f04d13cb8ca6ef34c5d6761c6836d7cff69959bb63d87bae13b8d","impliedFormat":99},{"version":"f33f5ae1068785f223e48265bbfd2dbf04bc5e8620c2fe1a2c9a66751739d1eb","impliedFormat":99},{"version":"a907d3fb14e6705d65aefa322d8b6831a46149deec5ae8fdff390d4c35a19eb9","impliedFormat":99},{"version":"3e9294c040fcdb0243eedc3565c870a7446cd415d7829f0bdfed24f96dd7dd11","impliedFormat":99},{"version":"1737272b952d77d7710cf3cfc399ec06273862a701585ab6e4318a92815189c5","impliedFormat":99},{"version":"aa112e48341c2612e9e052ead1e16c59eb0a104582816520bbcbbb87fd476229","impliedFormat":99},{"version":"c81b31f8e9a5d8ea31619820748e219bb23678fd788e2b83b447c20d5fa601b6","impliedFormat":99},{"version":"9a07472000de8e698ee2eb4c753a291c116d83f9abb2a3fa620b9e102cb59f27","impliedFormat":99},{"version":"824ec91c720b5b2c31cc3f7c19471961bcac101d40a8cec1efd330da3f561ad7","impliedFormat":99},{"version":"c52a6fd7585242b3d39dc1d8e3f3948848bf4391b911e5b1fe8c02a9021035e9","impliedFormat":99},{"version":"f902122c7f8a8fb417d27a02189ebecac551173ec926d9fff20fa5dfcc1afa92","impliedFormat":99},{"version":"c4127d9caab36a8dbed7e4c81833e08d0152fac1e95626eb78ddf58df72fe857","impliedFormat":99},{"version":"11f1080a104485c39ff72eac6486d7c7da279c7908be0f175a0e6b72aed4e580","impliedFormat":99},{"version":"3a628993a41827e5c5f782a1fd3e36bd8644813ba9c9fb25308e66dce81e19a9","impliedFormat":99},{"version":"0fedb78ebcc9e4919555c7e86fbccff37f5645b954de73c68af94d01073d687c","impliedFormat":99},{"version":"31135b2c98344290ee5e07f4f5818c00481bd58f541c48b9cb02746e365880bb","impliedFormat":99},{"version":"6740011843232100bc6142492049c278ffece0e779916b38e3731491a784d4a8","impliedFormat":99},{"version":"15873ab6ae6b4d1ba6c149f147e3b382d29a445eb1c9ff25a430f6d797f8c7a0","impliedFormat":99},{"version":"108f902f44ba46f0721be5e6ba929e11ea2a7ed1cd497e2d4a4210cd04e898d7","impliedFormat":99},{"version":"0c5f8ec14c92585f47eae514ca52b8535afbac4f606058deb67680f45d284560","impliedFormat":99},{"version":"080320228836b8128b3f997b78ee7af26befd0e900247506a3bbd78f85b2598e","impliedFormat":99},{"version":"6b7af8e28e0faea23784596f012521321c36ad5d656394df3c77f8dd3ed33bec","impliedFormat":99},{"version":"2d9a0c92a3fb49d6e7a1613f3dd901eff39f98df4a9e5aaf26722d1a4decdccb","impliedFormat":99},{"version":"73e7110e70b56f03b0bd70c24a8f33d8c58e32a4e5f416e0184df6bd1d6ac96d","impliedFormat":99},{"version":"d8f10b2ac317360d862249e6360d9a443f816b654e4474b1fdd26f0f1a4468c3","impliedFormat":99},{"version":"811e1969690f6a481114809efb02283170a4258eefd2de12108b4258a44c3530","impliedFormat":99},{"version":"adae7cee895a8685b2be299450c13debcc74ab90be3ecdb82f531a4d4e50a494","impliedFormat":99},{"version":"dffa41e5735dbe901ca184e8830be90c4ed27df6c76ed4286a6ea74bd5a8551e","impliedFormat":99},{"version":"881271473ba93a1a16324512e7c4ca18c40036636659d78b75a419bcbce063f7","impliedFormat":99},{"version":"ea4e1b09a2ee033d145e93baad4338f8c4339b4b765c1a4386dbbd56044c3360","signature":"37c6bb347b49490f366639749302bdf774b4e5e0d2ebba43116c3ca48c6d6d8a","impliedFormat":99},{"version":"08fb8a29abaa438257f1675be32a9e62dcf649824d0ea1d681078afeb5eff6ac","signature":"d667a509e7599c8ad3b39aaa88dc379b34b2a6fbb83bbbeff96722559aff7c92","impliedFormat":99},{"version":"350880dac600f8d787769d859a477ec2ad9b8862d8a8a5204682e5dde2d63c27","signature":"b651a2d07ecbd1e8a07dc1408e0058b4ca3f53bef1ccec599f5db2140b16dea3","impliedFormat":99},{"version":"5c8985fdb2b8accb3d7b8abd5a74ee39dd1b1a0ef424b580d934b22d07871ab8","signature":"07fde8e5ab1bb1a1d0a93171321ce8ab3ee3bbe8dd4d35e45b9f4f2d903542e3","impliedFormat":99},{"version":"2321e25e34075320eeedbc5cd56051c9ce0341cb6a51e4faafb8f827d8045ceb","impliedFormat":1},{"version":"1cc2355816ba43eb2d6eb2670ac83d29a3ef02a01c09a4e2d5c0cc21e35249f7","impliedFormat":1},{"version":"ce47207ec1bd458b7966f0bbb5d9d15be0b00116fec4efda52ec8fcae8321586","impliedFormat":1},{"version":"a1f914818a2cc3bf3a693b99902d9cb0c1a6613df3cdd2bd8134cc63e695565c","impliedFormat":1},{"version":"3bd1d708281a33e7736f9c75c74221c077827d21c941f72ed3a8533b55fa5c7c","impliedFormat":1},{"version":"838c4154f06e964281fbfa88cf8cf8d76f194cbdd4d3f13e0a9e9a52e5faac6b","impliedFormat":1},{"version":"e32f79a7f77271780ecfcff5205300791429c2526b0b72307bb300ded25420c4","impliedFormat":1},{"version":"6ea46b5278f87aaf63479e72bb2d44474e458b4e603fa7ef46b3730c8a320073","impliedFormat":1},{"version":"22176ca5c9549edad90a532d5623a9b6ec552505178a7aeec3591f0b8f485d87","impliedFormat":1},{"version":"ba01df9e06cc51729deef602895fe3ceafd9ce2f17f2119db81eb67ff6ef7998","impliedFormat":1},{"version":"1dbb63933fe1404f9947c55f7f53308eb6fafd3b8646c4afc5f8a0376b1886ac","impliedFormat":1},{"version":"2dee5f01ddfa5375af2104e3d58e98afb881b63294187bab0a3df873a7bb2ad1","impliedFormat":1},{"version":"3dbe631d8fddc408346806ef5cf4195ba34a8ba1eb3cfde3aeffb813a38bffd2","impliedFormat":1},{"version":"8a0a3cdb27704e89ff1dbf93e43bb40bb2a96199a4483edc22fcf640a590a99d","impliedFormat":1},{"version":"3d444fa6e8057de7ea8ff4a9b737adc9538b2fcf7767969bdedc58bfc892582c","impliedFormat":1},{"version":"c0b474f26cc3ff83a7bc92abc4f72ca78cbb22631a9cd5ce28f9ae68802f47b5","impliedFormat":1},{"version":"f68ad124636abfe69a69d6c87238656dbbf45d4fa0b483caa663cbe7211a67ca","impliedFormat":1},{"version":"7e4fc20c25807c9ef912f4c6d805ceae5399c5d962d445db2e3a4cff24a35793","impliedFormat":1},{"version":"7ddadda20f6682a87876634b7669d8e5c0e5c2341a1a1f94038f833c7b38ffcd","impliedFormat":1},{"version":"6ba292cc3df1eea225aacb3182f9b0b8eab9d8637a9c698af1e5b58aa5492e9e","impliedFormat":1},{"version":"512ef5675be30738a2beeb4e151d03745c7b5207407a31806a81794a32732d53","impliedFormat":1},{"version":"831cea0366cc9085e7ded3a2d039a57d9fdda3670711f998a87d14d7b2fb45e1","impliedFormat":1},{"version":"39b470f069f0010b080280d2690679f04f962efd65ed3b452a1a67c834c51c0d","impliedFormat":1},{"version":"9ccf5ac8f6c74c1d2df1803bb63a1296d240efef1f9ddd6266d156c43849cb46","signature":"5d292d5b5afb54c5e3601dd69f025ffe5943444417f4350766e190ee16d4b5ff","impliedFormat":99},{"version":"1f57dcb24a94fba44febcc3b1d049b140676595dddccb3b879b218346b895b8b","signature":"ec71169215a1099d57737fc7fee938eb74b4950a0bafa2246d6bb970dc4086b9","impliedFormat":99},{"version":"2b1d1c34455d93087739c3ee01fce536c6a1ba75fded708f8947e1327a5df7a3","signature":"95c07f0cdc08be07de1d7e9fd0d80869e5514121947c543249561945f3b72c2a","impliedFormat":99},{"version":"beba7132048f06362dd976d2cc2b24ad37e4848606c8424dd71ba237b8573274","signature":"7723c9203ea6f3fd51a26a4fa2d3daacd58dff533959920397ccb1ba90d63e8a","impliedFormat":99},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"93d28b4eb12c68fccc1f2fc04a4ef83ea3b2a03b18055d3bf29cab267aa7042e","impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"bb45cd435da536500f1d9692a9b49d0c570b763ccbf00473248b777f5c1f353b","impliedFormat":1},{"version":"6b4e081d55ac24fc8a4631d5dd77fe249fa25900abd7d046abb87d90e3b45645","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"83e63d6ccf8ec004a3bb6d58b9bb0104f60e002754b1e968024b320730cc5311","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"21145ce1c54e05ef9e52092b98a4ebfb326b92f52e76e47211c50cfcd2a2b4ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"f27524f4bef4b6519c604bdb23bf4465bddcccbf3f003abb901acbd0d7404d99","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c959a391a75be9789b43c8468f71e3fa06488b4d691d5729dde1416dcd38225b","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"5ebe6f4cc3b803cbfc962bae0d954f9c80e5078ca41eb3f1de41d92e7193ef37","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"9f663c2f91127ef7024e8ca4b3b4383ff2770e5f826696005de382282794b127","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1}],"root":[[131,134],[158,161]],"options":{"allowSyntheticDefaultImports":true,"alwaysStrict":true,"declaration":true,"declarationMap":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictBindCallApply":true,"strictNullChecks":true,"strictPropertyInitialization":false,"target":9},"referencedMap":[[135,1],[136,1],[137,2],[149,3],[138,2],[139,1],[140,1],[141,2],[143,4],[142,1],[144,2],[148,5],[150,1],[151,1],[152,1],[153,1],[157,6],[155,7],[156,1],[146,8],[147,9],[145,1],[75,10],[79,11],[76,12],[105,12],[80,13],[108,12],[77,14],[78,12],[172,1],[214,15],[215,15],[216,16],[167,17],[217,18],[218,19],[219,20],[162,1],[165,21],[163,1],[164,1],[220,22],[221,23],[222,24],[223,25],[224,26],[225,27],[226,27],[227,28],[228,29],[229,30],[230,31],[168,1],[166,1],[231,32],[232,33],[233,34],[267,35],[234,36],[235,1],[236,37],[237,38],[238,39],[239,40],[240,41],[241,42],[242,43],[243,44],[244,45],[245,45],[246,46],[247,1],[248,47],[249,48],[251,49],[250,50],[252,51],[253,52],[254,53],[255,54],[256,55],[257,56],[258,57],[259,58],[260,59],[261,60],[262,61],[263,62],[264,63],[169,1],[170,1],[171,1],[211,64],[212,1],[213,1],[265,65],[266,66],[118,67],[119,68],[107,67],[85,69],[88,70],[102,71],[103,72],[109,73],[96,74],[104,75],[106,76],[90,67],[101,77],[99,78],[97,79],[98,78],[91,80],[100,81],[89,67],[92,78],[81,82],[83,83],[82,84],[129,85],[125,86],[122,87],[121,88],[124,89],[130,90],[120,91],[128,92],[126,67],[127,67],[123,67],[84,67],[116,93],[114,94],[117,95],[115,96],[112,67],[111,97],[110,98],[113,99],[173,1],[74,100],[72,101],[73,101],[71,1],[93,102],[94,103],[95,103],[59,1],[60,104],[58,1],[65,105],[67,106],[70,107],[61,108],[62,109],[87,110],[63,111],[86,111],[69,112],[68,113],[64,114],[66,1],[154,1],[56,1],[57,1],[11,1],[10,1],[2,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[3,1],[20,1],[21,1],[4,1],[22,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[37,1],[34,1],[35,1],[36,1],[38,1],[7,1],[39,1],[44,1],[45,1],[40,1],[41,1],[42,1],[43,1],[8,1],[49,1],[46,1],[47,1],[48,1],[50,1],[9,1],[51,1],[52,1],[53,1],[55,1],[54,1],[1,1],[189,115],[199,116],[188,115],[209,117],[180,118],[179,119],[208,120],[202,121],[207,122],[182,123],[196,124],[181,125],[205,126],[177,127],[176,120],[206,128],[178,129],[183,130],[184,1],[187,130],[174,1],[210,131],[200,132],[191,133],[192,134],[194,135],[190,136],[193,137],[203,120],[185,138],[186,139],[195,140],[175,141],[198,132],[197,130],[201,1],[204,142],[132,143],[158,144],[160,145],[159,1],[161,146],[133,147],[131,67],[134,148]],"version":"5.9.3"}
|
|
@@ -17,6 +17,7 @@ export interface ValidateResult {
|
|
|
17
17
|
};
|
|
18
18
|
expiration?: number;
|
|
19
19
|
proofChain?: string[];
|
|
20
|
+
facts?: Record<string, unknown>[];
|
|
20
21
|
error?: {
|
|
21
22
|
code: 'INVALID_FORMAT' | 'INVALID_SIGNATURE' | 'UNAUTHORIZED' | 'REPLAY' | 'EXPIRED' | 'CAVEAT_VIOLATION';
|
|
22
23
|
message: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validator.d.ts","sourceRoot":"","sources":["../../src/validator/validator.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,KAAK,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAInE,KAAK,gBAAgB,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC;AAOrE,MAAM,WAAW,sBAAsB;IAUrC,SAAS,EAAE,MAAM,CAAC;IAMlB,WAAW,EAAE,MAAM,EAAE,CAAC;IAQtB,WAAW,CAAC,EAAE,cAAc,CAAC;IAM7B,eAAe,CAAC,EAAE,eAAe,CAAC;CACnC;AAKD,MAAM,WAAW,cAAc;IAE7B,EAAE,EAAE,OAAO,CAAC;IAGZ,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,UAAU,CAAC,EAAE;QACX,GAAG,EAAE,MAAM,CAAC;QACZ,IAAI,EAAE,MAAM,CAAC;QACb,EAAE,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KAC9B,CAAC;IAQF,UAAU,CAAC,EAAE,MAAM,CAAC;IAOpB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"validator.d.ts","sourceRoot":"","sources":["../../src/validator/validator.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,KAAK,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAInE,KAAK,gBAAgB,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC;AAOrE,MAAM,WAAW,sBAAsB;IAUrC,SAAS,EAAE,MAAM,CAAC;IAMlB,WAAW,EAAE,MAAM,EAAE,CAAC;IAQtB,WAAW,CAAC,EAAE,cAAc,CAAC;IAM7B,eAAe,CAAC,EAAE,eAAe,CAAC;CACnC;AAKD,MAAM,WAAW,cAAc;IAE7B,EAAE,EAAE,OAAO,CAAC;IAGZ,OAAO,CAAC,EAAE,MAAM,CAAC;IAGjB,UAAU,CAAC,EAAE;QACX,GAAG,EAAE,MAAM,CAAC;QACZ,IAAI,EAAE,MAAM,CAAC;QACb,EAAE,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;KAC9B,CAAC;IAQF,UAAU,CAAC,EAAE,MAAM,CAAC;IAOpB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IAOtB,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC;IAGlC,KAAK,CAAC,EAAE;QACN,IAAI,EACA,gBAAgB,GAChB,mBAAmB,GACnB,cAAc,GACd,QAAQ,GACR,SAAS,GACT,kBAAkB,CAAC;QACvB,OAAO,EAAE,MAAM,CAAC;KACjB,CAAC;CACH;AAKD,MAAM,WAAW,aAAa;IAkB5B,QAAQ,CACN,gBAAgB,EAAE,MAAM,EACxB,aAAa,EAAE,gBAAgB,EAC/B,QAAQ,EAAE,MAAM,GACf,OAAO,CAAC,cAAc,CAAC,CAAC;IAK3B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;CAC5B;AAsCD,wBAAsB,mBAAmB,CACvC,OAAO,EAAE,sBAAsB,GAC9B,OAAO,CAAC,aAAa,CAAC,CA+RxB"}
|
|
@@ -180,6 +180,7 @@ export async function createUCANValidator(options) {
|
|
|
180
180
|
}
|
|
181
181
|
const proofChain = buildProofChain(invocation);
|
|
182
182
|
const expiration = computeEffectiveExpiration(invocation);
|
|
183
|
+
const facts = invocation.facts;
|
|
183
184
|
return {
|
|
184
185
|
ok: true,
|
|
185
186
|
invoker: invocation.issuer.did(),
|
|
@@ -192,6 +193,7 @@ export async function createUCANValidator(options) {
|
|
|
192
193
|
: undefined,
|
|
193
194
|
expiration,
|
|
194
195
|
proofChain,
|
|
196
|
+
facts: facts && facts.length > 0 ? facts : undefined,
|
|
195
197
|
};
|
|
196
198
|
}
|
|
197
199
|
catch (err) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validator.js","sourceRoot":"","sources":["../../src/validator/validator.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAG1C,OAAO,EAAE,uBAAuB,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"validator.js","sourceRoot":"","sources":["../../src/validator/validator.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -14,6 +14,7 @@ import type {
|
|
|
14
14
|
Delegation,
|
|
15
15
|
Capability,
|
|
16
16
|
Principal,
|
|
17
|
+
Fact,
|
|
17
18
|
} from '@ucanto/interface';
|
|
18
19
|
import type { SupportedDID } from '../types.js';
|
|
19
20
|
|
|
@@ -199,6 +200,8 @@ export async function createDelegation(options: {
|
|
|
199
200
|
notBefore?: number;
|
|
200
201
|
/** Parent delegations (proof chain) */
|
|
201
202
|
proofs?: Delegation[];
|
|
203
|
+
/** Verifiable facts and proofs of knowledge (UCAN spec ยง3.2.4) */
|
|
204
|
+
facts?: Fact[];
|
|
202
205
|
}): Promise<Delegation> {
|
|
203
206
|
// Create principal from any DID (did:key, did:ixo, did:web, etc.)
|
|
204
207
|
const audiencePrincipal = createPrincipal(options.audience);
|
|
@@ -211,6 +214,7 @@ export async function createDelegation(options: {
|
|
|
211
214
|
expiration: options.expiration ?? Infinity,
|
|
212
215
|
proofs: options.proofs,
|
|
213
216
|
notBefore: options.notBefore,
|
|
217
|
+
facts: options.facts,
|
|
214
218
|
});
|
|
215
219
|
}
|
|
216
220
|
|
|
@@ -252,6 +256,8 @@ export async function createInvocation(options: {
|
|
|
252
256
|
proofs?: Delegation[];
|
|
253
257
|
/** Expiration timestamp (Unix seconds). Defaults to Infinity (never expires). */
|
|
254
258
|
expiration?: number;
|
|
259
|
+
/** Verifiable facts and proofs of knowledge (UCAN spec ยง3.2.4) */
|
|
260
|
+
facts?: Fact[];
|
|
255
261
|
}) {
|
|
256
262
|
// Create principal from any DID (did:key, did:ixo, did:web, etc.)
|
|
257
263
|
const audiencePrincipal = createPrincipal(options.audience);
|
|
@@ -262,6 +268,7 @@ export async function createInvocation(options: {
|
|
|
262
268
|
capability: options.capability,
|
|
263
269
|
proofs: options.proofs ?? [],
|
|
264
270
|
expiration: options.expiration ?? Infinity,
|
|
271
|
+
facts: options.facts,
|
|
265
272
|
});
|
|
266
273
|
}
|
|
267
274
|
|
|
@@ -344,4 +351,4 @@ export async function parseDelegation(serialized: string): Promise<Delegation> {
|
|
|
344
351
|
}
|
|
345
352
|
|
|
346
353
|
// Re-export useful types
|
|
347
|
-
export type { Signer, Delegation, Capability };
|
|
354
|
+
export type { Signer, Delegation, Capability, Fact };
|
package/src/index.ts
CHANGED
|
@@ -568,6 +568,172 @@ describe('UCAN Validator', () => {
|
|
|
568
568
|
});
|
|
569
569
|
});
|
|
570
570
|
|
|
571
|
+
describe('facts', () => {
|
|
572
|
+
it('should return facts attached to the invocation', async () => {
|
|
573
|
+
const server = await keygen();
|
|
574
|
+
const root = await keygen();
|
|
575
|
+
|
|
576
|
+
const validator = await createUCANValidator({
|
|
577
|
+
serverDid: server.did,
|
|
578
|
+
rootIssuers: [root.did],
|
|
579
|
+
});
|
|
580
|
+
|
|
581
|
+
const facts = [
|
|
582
|
+
{ verified: true, timestamp: 1234567890 },
|
|
583
|
+
{ service: 'oracle', version: '1.0' },
|
|
584
|
+
];
|
|
585
|
+
|
|
586
|
+
const invocation = Client.invoke({
|
|
587
|
+
issuer: root.signer,
|
|
588
|
+
audience: ed25519.Verifier.parse(server.did),
|
|
589
|
+
capability: {
|
|
590
|
+
can: 'test/read' as const,
|
|
591
|
+
with: 'ixo:resource:123' as const,
|
|
592
|
+
},
|
|
593
|
+
facts,
|
|
594
|
+
proofs: [],
|
|
595
|
+
});
|
|
596
|
+
|
|
597
|
+
const serialized = await serializeInvocation(invocation);
|
|
598
|
+
const result = await validator.validate(
|
|
599
|
+
serialized,
|
|
600
|
+
TestRead,
|
|
601
|
+
'ixo:resource:123',
|
|
602
|
+
);
|
|
603
|
+
|
|
604
|
+
expect(result.ok).toBe(true);
|
|
605
|
+
expect(result.facts).toBeDefined();
|
|
606
|
+
expect(result.facts).toHaveLength(2);
|
|
607
|
+
expect(result.facts).toEqual(facts);
|
|
608
|
+
});
|
|
609
|
+
|
|
610
|
+
it('should return undefined facts when none are attached', async () => {
|
|
611
|
+
const server = await keygen();
|
|
612
|
+
const root = await keygen();
|
|
613
|
+
|
|
614
|
+
const validator = await createUCANValidator({
|
|
615
|
+
serverDid: server.did,
|
|
616
|
+
rootIssuers: [root.did],
|
|
617
|
+
});
|
|
618
|
+
|
|
619
|
+
const invocation = Client.invoke({
|
|
620
|
+
issuer: root.signer,
|
|
621
|
+
audience: ed25519.Verifier.parse(server.did),
|
|
622
|
+
capability: {
|
|
623
|
+
can: 'test/read' as const,
|
|
624
|
+
with: 'ixo:resource:123' as const,
|
|
625
|
+
},
|
|
626
|
+
proofs: [],
|
|
627
|
+
});
|
|
628
|
+
|
|
629
|
+
const serialized = await serializeInvocation(invocation);
|
|
630
|
+
const result = await validator.validate(
|
|
631
|
+
serialized,
|
|
632
|
+
TestRead,
|
|
633
|
+
'ixo:resource:123',
|
|
634
|
+
);
|
|
635
|
+
|
|
636
|
+
expect(result.ok).toBe(true);
|
|
637
|
+
expect(result.facts).toBeUndefined();
|
|
638
|
+
});
|
|
639
|
+
|
|
640
|
+
it('should pass facts through createInvocation helper', async () => {
|
|
641
|
+
const server = await keygen();
|
|
642
|
+
const root = await keygen();
|
|
643
|
+
const user = await keygen();
|
|
644
|
+
|
|
645
|
+
const validator = await createUCANValidator({
|
|
646
|
+
serverDid: server.did,
|
|
647
|
+
rootIssuers: [root.did],
|
|
648
|
+
});
|
|
649
|
+
|
|
650
|
+
const facts = [{ requestId: 'abc-123', origin: 'portal' }];
|
|
651
|
+
|
|
652
|
+
const delegation = await createDelegation({
|
|
653
|
+
issuer: root.signer,
|
|
654
|
+
audience: user.did,
|
|
655
|
+
capabilities: [
|
|
656
|
+
{
|
|
657
|
+
can: 'test/read' as Capability['can'],
|
|
658
|
+
with: 'ixo:resource:123' as Capability['with'],
|
|
659
|
+
},
|
|
660
|
+
],
|
|
661
|
+
});
|
|
662
|
+
|
|
663
|
+
const invocation = await createInvocation({
|
|
664
|
+
issuer: user.signer,
|
|
665
|
+
audience: server.did,
|
|
666
|
+
capability: {
|
|
667
|
+
can: 'test/read' as Capability['can'],
|
|
668
|
+
with: 'ixo:resource:123' as Capability['with'],
|
|
669
|
+
},
|
|
670
|
+
proofs: [delegation],
|
|
671
|
+
facts,
|
|
672
|
+
});
|
|
673
|
+
|
|
674
|
+
const serialized = await serializeInvocation(invocation);
|
|
675
|
+
const result = await validator.validate(
|
|
676
|
+
serialized,
|
|
677
|
+
TestRead,
|
|
678
|
+
'ixo:resource:123',
|
|
679
|
+
);
|
|
680
|
+
|
|
681
|
+
expect(result.ok).toBe(true);
|
|
682
|
+
expect(result.facts).toEqual(facts);
|
|
683
|
+
});
|
|
684
|
+
|
|
685
|
+
it('should pass facts through createDelegation helper', async () => {
|
|
686
|
+
const server = await keygen();
|
|
687
|
+
const root = await keygen();
|
|
688
|
+
const user = await keygen();
|
|
689
|
+
|
|
690
|
+
const validator = await createUCANValidator({
|
|
691
|
+
serverDid: server.did,
|
|
692
|
+
rootIssuers: [root.did],
|
|
693
|
+
});
|
|
694
|
+
|
|
695
|
+
const delegationFacts = [{ purpose: 'oracle-access', level: 'standard' }];
|
|
696
|
+
|
|
697
|
+
const delegation = await createDelegation({
|
|
698
|
+
issuer: root.signer,
|
|
699
|
+
audience: user.did,
|
|
700
|
+
capabilities: [
|
|
701
|
+
{
|
|
702
|
+
can: 'test/read' as Capability['can'],
|
|
703
|
+
with: 'ixo:resource:123' as Capability['with'],
|
|
704
|
+
},
|
|
705
|
+
],
|
|
706
|
+
facts: delegationFacts,
|
|
707
|
+
});
|
|
708
|
+
|
|
709
|
+
// Verify facts are on the delegation itself
|
|
710
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
711
|
+
expect((delegation as any).facts).toEqual(delegationFacts);
|
|
712
|
+
|
|
713
|
+
// Invocation without facts โ facts on delegation don't propagate to result
|
|
714
|
+
const invocation = await createInvocation({
|
|
715
|
+
issuer: user.signer,
|
|
716
|
+
audience: server.did,
|
|
717
|
+
capability: {
|
|
718
|
+
can: 'test/read' as Capability['can'],
|
|
719
|
+
with: 'ixo:resource:123' as Capability['with'],
|
|
720
|
+
},
|
|
721
|
+
proofs: [delegation],
|
|
722
|
+
});
|
|
723
|
+
|
|
724
|
+
const serialized = await serializeInvocation(invocation);
|
|
725
|
+
const result = await validator.validate(
|
|
726
|
+
serialized,
|
|
727
|
+
TestRead,
|
|
728
|
+
'ixo:resource:123',
|
|
729
|
+
);
|
|
730
|
+
|
|
731
|
+
expect(result.ok).toBe(true);
|
|
732
|
+
// Result facts come from the invocation, not the delegation
|
|
733
|
+
expect(result.facts).toBeUndefined();
|
|
734
|
+
});
|
|
735
|
+
});
|
|
736
|
+
|
|
571
737
|
describe('replay protection', () => {
|
|
572
738
|
it('should reject replayed invocations', async () => {
|
|
573
739
|
const server = await keygen();
|
|
@@ -92,6 +92,13 @@ export interface ValidateResult {
|
|
|
92
92
|
*/
|
|
93
93
|
proofChain?: string[];
|
|
94
94
|
|
|
95
|
+
/**
|
|
96
|
+
* Facts attached to the invocation (UCAN spec ยง3.2.4).
|
|
97
|
+
* Verifiable claims and proofs of knowledge supporting the invocation.
|
|
98
|
+
* Empty array if no facts were attached.
|
|
99
|
+
*/
|
|
100
|
+
facts?: Record<string, unknown>[];
|
|
101
|
+
|
|
95
102
|
/** Error details (if invalid) */
|
|
96
103
|
error?: {
|
|
97
104
|
code:
|
|
@@ -437,6 +444,12 @@ export async function createUCANValidator(
|
|
|
437
444
|
const proofChain = buildProofChain(invocation);
|
|
438
445
|
const expiration = computeEffectiveExpiration(invocation);
|
|
439
446
|
|
|
447
|
+
// 10. Extract facts from the invocation
|
|
448
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- invocation type from Delegation.extract() is complex
|
|
449
|
+
const facts = (invocation as any).facts as
|
|
450
|
+
| Record<string, unknown>[]
|
|
451
|
+
| undefined;
|
|
452
|
+
|
|
440
453
|
return {
|
|
441
454
|
ok: true,
|
|
442
455
|
invoker: invocation.issuer.did(),
|
|
@@ -449,6 +462,7 @@ export async function createUCANValidator(
|
|
|
449
462
|
: undefined,
|
|
450
463
|
expiration,
|
|
451
464
|
proofChain,
|
|
465
|
+
facts: facts && facts.length > 0 ? facts : undefined,
|
|
452
466
|
};
|
|
453
467
|
} catch (err) {
|
|
454
468
|
const message = err instanceof Error ? err.message : 'Unknown error';
|