@eqtylab/explorer 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (140) hide show
  1. package/.env.api +6 -0
  2. package/.env.iframe +2 -0
  3. package/.env.manifest +2 -0
  4. package/.envrc +1 -0
  5. package/.eslintrc.cjs +17 -0
  6. package/.github/workflows/ci.yml +46 -0
  7. package/.github/workflows/publish.yml +44 -0
  8. package/.husky/pre-push +2 -0
  9. package/.prettierignore +2 -0
  10. package/.prettierrc.json +13 -0
  11. package/LICENSE +201 -0
  12. package/README.md +84 -0
  13. package/flake.lock +61 -0
  14. package/flake.nix +23 -0
  15. package/index.html +13 -0
  16. package/package.json +93 -0
  17. package/postcss.config.js +5 -0
  18. package/public/logos/eci.svg +23 -0
  19. package/public/logos/eqty.svg +3 -0
  20. package/public/manifests/B-200-merged.json +773 -0
  21. package/public/manifests/amd-sev.json +426 -0
  22. package/public/manifests/anchors.json +609 -0
  23. package/public/manifests/association-no-metadata.json +1393 -0
  24. package/public/manifests/association.json +1402 -0
  25. package/public/manifests/eqty-docker.json +562 -0
  26. package/public/manifests/governance.json +1324 -0
  27. package/public/manifests/intel-tdx-with-nvidia.json +441 -0
  28. package/public/manifests/intel-tdx.json +404 -0
  29. package/public/manifests/iroh-collections.json +1285 -0
  30. package/public/manifests/model-signing.json +1536 -0
  31. package/public/manifests/multiple-registrations.json +129 -0
  32. package/public/manifests/no-vcs.json +114 -0
  33. package/public/manifests/storage.json +294 -0
  34. package/public/manifests/sub-graphs.json +1 -0
  35. package/src/animations/variants.ts +52 -0
  36. package/src/app/apiClient/integrityService/fetchAttributes.ts +29 -0
  37. package/src/app/apiClient/integrityService/fetchManifest.ts +28 -0
  38. package/src/app/apiClient/integrityService/types.ts +12 -0
  39. package/src/app/components/integrityService/IntegrityService.tsx +105 -0
  40. package/src/app/components/integrityService/components/AuthButton.tsx +26 -0
  41. package/src/app/components/integrityService/components/FiltersModal.tsx +214 -0
  42. package/src/app/components/integrityService/components/FiltersToggle.tsx +28 -0
  43. package/src/app/components/manifestViewer/ManifestViewer.tsx +90 -0
  44. package/src/app/components/manifestViewer/components/ManifestButtons.tsx +215 -0
  45. package/src/app/config.json +23 -0
  46. package/src/app/config.ts +28 -0
  47. package/src/app/pages/index.tsx +34 -0
  48. package/src/app/stores/manifestStore.ts +19 -0
  49. package/src/app/utils/appMode.ts +37 -0
  50. package/src/assets/fonts/TWKLausanne-300.woff +0 -0
  51. package/src/assets/fonts/TWKLausanne-300.woff2 +0 -0
  52. package/src/assets/fonts/TWKLausanne-400.woff +0 -0
  53. package/src/assets/fonts/TWKLausanne-400.woff2 +0 -0
  54. package/src/assets/fonts/TWKLausanne-500.woff +0 -0
  55. package/src/assets/fonts/TWKLausanne-500.woff2 +0 -0
  56. package/src/assets/fonts/TWKLausanne-600.woff +0 -0
  57. package/src/assets/fonts/TWKLausanne-600.woff2 +0 -0
  58. package/src/assets/vectors/eqtylab.svg +6 -0
  59. package/src/components/app-header.tsx +61 -0
  60. package/src/components/dark-mode-switch.tsx +16 -0
  61. package/src/components/ui/accordion.tsx +47 -0
  62. package/src/components/ui/certificate-chain.tsx +60 -0
  63. package/src/components/ui/certificate-code.tsx +39 -0
  64. package/src/components/ui/details.tsx +20 -0
  65. package/src/components/ui/display-code.tsx +47 -0
  66. package/src/components/ui/panel-label.tsx +12 -0
  67. package/src/components/ui/verify-state-badge.tsx +32 -0
  68. package/src/explorer-component/LineageExplorer.tsx +89 -0
  69. package/src/explorer-component/components/CustomEdge.tsx +28 -0
  70. package/src/explorer-component/components/LineageFlow.tsx +220 -0
  71. package/src/explorer-component/components/NodeIconLoader.tsx +26 -0
  72. package/src/explorer-component/components/nodes/ComputationNode.tsx +56 -0
  73. package/src/explorer-component/components/nodes/CustomNode.tsx +112 -0
  74. package/src/explorer-component/components/nodes/index.ts +4 -0
  75. package/src/explorer-component/components/nodes/nodes.tsx +144 -0
  76. package/src/explorer-component/components/nodes/types.ts +167 -0
  77. package/src/explorer-component/components/sidebar/SectionList.tsx +54 -0
  78. package/src/explorer-component/components/sidebar/SectionTitle.tsx +10 -0
  79. package/src/explorer-component/components/sidebar/Sidebar.tsx +70 -0
  80. package/src/explorer-component/components/sidebar/SidebarWrapper.tsx +76 -0
  81. package/src/explorer-component/components/sidebar/sections/CustomSection.tsx +238 -0
  82. package/src/explorer-component/components/sidebar/sections/FileViewer.tsx +229 -0
  83. package/src/explorer-component/components/sidebar/sections/GovernanceSection.tsx +52 -0
  84. package/src/explorer-component/components/sidebar/sections/RegistrationSection.tsx +254 -0
  85. package/src/explorer-component/components/sidebar/sections/SigstoreSection.tsx +37 -0
  86. package/src/explorer-component/components/sidebar/sections/StorageSection.tsx +73 -0
  87. package/src/explorer-component/components/sidebar/sections/custom/IrohCollectionsView.tsx +139 -0
  88. package/src/explorer-component/components/sidebar/sections/registration/VerificationIcon.tsx +108 -0
  89. package/src/explorer-component/components/sidebar/sections/registration/actor/ActorBadge.tsx +62 -0
  90. package/src/explorer-component/components/sidebar/sections/registration/actor/svg/AMDLogo.tsx +40 -0
  91. package/src/explorer-component/components/sidebar/sections/registration/actor/svg/AzureLogo.tsx +65 -0
  92. package/src/explorer-component/components/sidebar/sections/registration/actor/svg/IntelLogo.tsx +24 -0
  93. package/src/explorer-component/components/sidebar/sections/registration/actor/svg/NvidiaLogo.tsx +27 -0
  94. package/src/explorer-component/components/sidebar/sections/registration/verifierClient.ts +13 -0
  95. package/src/explorer-component/icons/AttributionIcon.svg +6 -0
  96. package/src/explorer-component/icons/BenchmarkIcon.svg +6 -0
  97. package/src/explorer-component/icons/BenchmarkResultIcon.svg +6 -0
  98. package/src/explorer-component/icons/CertificateIcon.svg +6 -0
  99. package/src/explorer-component/icons/CodeIcon.svg +6 -0
  100. package/src/explorer-component/icons/ComputationIcon.svg +6 -0
  101. package/src/explorer-component/icons/DataIcon.svg +6 -0
  102. package/src/explorer-component/icons/DatabaseIcon.svg +6 -0
  103. package/src/explorer-component/icons/DatasetIcon.svg +6 -0
  104. package/src/explorer-component/icons/DeltaLakeIcon.svg +7 -0
  105. package/src/explorer-component/icons/DocumentIcon.svg +6 -0
  106. package/src/explorer-component/icons/MediaIcon.svg +6 -0
  107. package/src/explorer-component/icons/ModelIcon.svg +6 -0
  108. package/src/explorer-component/icons/TeamIcon.svg +3 -0
  109. package/src/explorer-component/icons/TokenIcon.svg +6 -0
  110. package/src/explorer-component/icons/UnknownIcon.svg +6 -0
  111. package/src/explorer-component/icons/index.ts +35 -0
  112. package/src/explorer-component/index.ts +5 -0
  113. package/src/explorer-component/integrityTypes/AnchorTypes.ts +31 -0
  114. package/src/explorer-component/integrityTypes/StatementTypes.ts +333 -0
  115. package/src/explorer-component/integrityTypes/VCTypes.ts +85 -0
  116. package/src/explorer-component/integrityTypes/types.ts +3 -0
  117. package/src/explorer-component/utils/config.ts +163 -0
  118. package/src/explorer-component/utils/formatTimestamp.ts +5 -0
  119. package/src/explorer-component/utils/generateGraph.ts +271 -0
  120. package/src/explorer-component/utils/layoutGraph.ts +148 -0
  121. package/src/explorer-component/utils/resolveIrohBlobs.ts +117 -0
  122. package/src/explorer-component/utils/statementHelpers.ts +252 -0
  123. package/src/explorer-component/utils/stripPrefix.ts +4 -0
  124. package/src/hooks/use-mobile.tsx +19 -0
  125. package/src/index.ts +3 -0
  126. package/src/lib/resource-types.ts +31 -0
  127. package/src/lib/use-escape-key.tsx +16 -0
  128. package/src/lib/utils.ts +19 -0
  129. package/src/main.css +82 -0
  130. package/src/main.tsx +39 -0
  131. package/src/v-comp-viewer/components/container-did-details.tsx +53 -0
  132. package/src/v-comp-viewer/components/system-did-details.tsx +356 -0
  133. package/src/v-comp-viewer/useVComp.ts +196 -0
  134. package/src/v-comp-viewer/utils.tsx +824 -0
  135. package/src/vite-env.d.ts +1 -0
  136. package/tsconfig.json +33 -0
  137. package/tsconfig.node.json +10 -0
  138. package/vercel.json +13 -0
  139. package/vite.app.config.ts +48 -0
  140. package/vite.lib.config.ts +61 -0
@@ -0,0 +1,1285 @@
1
+ {
2
+ "version": "2",
3
+ "contexts": {
4
+ "https://w3id.org/security/v2": {
5
+ "@context": [
6
+ {
7
+ "@version": 1.1
8
+ },
9
+ "https://w3id.org/security/v1",
10
+ {
11
+ "AesKeyWrappingKey2019": "sec:AesKeyWrappingKey2019",
12
+ "DeleteKeyOperation": "sec:DeleteKeyOperation",
13
+ "DeriveSecretOperation": "sec:DeriveSecretOperation",
14
+ "EcdsaSecp256k1Signature2019": "sec:EcdsaSecp256k1Signature2019",
15
+ "EcdsaSecp256k1VerificationKey2019": "sec:EcdsaSecp256k1VerificationKey2019",
16
+ "EcdsaSecp256r1Signature2019": "sec:EcdsaSecp256r1Signature2019",
17
+ "EcdsaSecp256r1VerificationKey2019": "sec:EcdsaSecp256r1VerificationKey2019",
18
+ "Ed25519Signature2018": "sec:Ed25519Signature2018",
19
+ "Ed25519VerificationKey2018": "sec:Ed25519VerificationKey2018",
20
+ "EquihashProof2018": "sec:EquihashProof2018",
21
+ "ExportKeyOperation": "sec:ExportKeyOperation",
22
+ "GenerateKeyOperation": "sec:GenerateKeyOperation",
23
+ "KmsOperation": "sec:KmsOperation",
24
+ "RevokeKeyOperation": "sec:RevokeKeyOperation",
25
+ "RsaSignature2018": "sec:RsaSignature2018",
26
+ "RsaVerificationKey2018": "sec:RsaVerificationKey2018",
27
+ "Sha256HmacKey2019": "sec:Sha256HmacKey2019",
28
+ "SignOperation": "sec:SignOperation",
29
+ "UnwrapKeyOperation": "sec:UnwrapKeyOperation",
30
+ "VerifyOperation": "sec:VerifyOperation",
31
+ "WrapKeyOperation": "sec:WrapKeyOperation",
32
+ "X25519KeyAgreementKey2019": "sec:X25519KeyAgreementKey2019",
33
+ "allowedAction": "sec:allowedAction",
34
+ "assertionMethod": {
35
+ "@container": "@set",
36
+ "@id": "sec:assertionMethod",
37
+ "@type": "@id"
38
+ },
39
+ "authentication": {
40
+ "@container": "@set",
41
+ "@id": "sec:authenticationMethod",
42
+ "@type": "@id"
43
+ },
44
+ "capability": {
45
+ "@id": "sec:capability",
46
+ "@type": "@id"
47
+ },
48
+ "capabilityAction": "sec:capabilityAction",
49
+ "capabilityChain": {
50
+ "@container": "@list",
51
+ "@id": "sec:capabilityChain",
52
+ "@type": "@id"
53
+ },
54
+ "capabilityDelegation": {
55
+ "@container": "@set",
56
+ "@id": "sec:capabilityDelegationMethod",
57
+ "@type": "@id"
58
+ },
59
+ "capabilityInvocation": {
60
+ "@container": "@set",
61
+ "@id": "sec:capabilityInvocationMethod",
62
+ "@type": "@id"
63
+ },
64
+ "caveat": {
65
+ "@container": "@set",
66
+ "@id": "sec:caveat",
67
+ "@type": "@id"
68
+ },
69
+ "challenge": "sec:challenge",
70
+ "ciphertext": "sec:ciphertext",
71
+ "controller": {
72
+ "@id": "sec:controller",
73
+ "@type": "@id"
74
+ },
75
+ "delegator": {
76
+ "@id": "sec:delegator",
77
+ "@type": "@id"
78
+ },
79
+ "equihashParameterK": {
80
+ "@id": "sec:equihashParameterK",
81
+ "@type": "xsd:integer"
82
+ },
83
+ "equihashParameterN": {
84
+ "@id": "sec:equihashParameterN",
85
+ "@type": "xsd:integer"
86
+ },
87
+ "invocationTarget": {
88
+ "@id": "sec:invocationTarget",
89
+ "@type": "@id"
90
+ },
91
+ "invoker": {
92
+ "@id": "sec:invoker",
93
+ "@type": "@id"
94
+ },
95
+ "jws": "sec:jws",
96
+ "keyAgreement": {
97
+ "@container": "@set",
98
+ "@id": "sec:keyAgreementMethod",
99
+ "@type": "@id"
100
+ },
101
+ "kmsModule": {
102
+ "@id": "sec:kmsModule"
103
+ },
104
+ "parentCapability": {
105
+ "@id": "sec:parentCapability",
106
+ "@type": "@id"
107
+ },
108
+ "plaintext": "sec:plaintext",
109
+ "proof": {
110
+ "@container": "@graph",
111
+ "@id": "sec:proof",
112
+ "@type": "@id"
113
+ },
114
+ "proofPurpose": {
115
+ "@id": "sec:proofPurpose",
116
+ "@type": "@vocab"
117
+ },
118
+ "proofValue": "sec:proofValue",
119
+ "referenceId": "sec:referenceId",
120
+ "unwrappedKey": "sec:unwrappedKey",
121
+ "verificationMethod": {
122
+ "@id": "sec:verificationMethod",
123
+ "@type": "@id"
124
+ },
125
+ "verifyData": "sec:verifyData",
126
+ "wrappedKey": "sec:wrappedKey"
127
+ }
128
+ ]
129
+ },
130
+ "https://w3id.org/security/v1": {
131
+ "@context": {
132
+ "CryptographicKey": "sec:Key",
133
+ "EcdsaKoblitzSignature2016": "sec:EcdsaKoblitzSignature2016",
134
+ "Ed25519Signature2018": "sec:Ed25519Signature2018",
135
+ "EncryptedMessage": "sec:EncryptedMessage",
136
+ "GraphSignature2012": "sec:GraphSignature2012",
137
+ "LinkedDataSignature2015": "sec:LinkedDataSignature2015",
138
+ "LinkedDataSignature2016": "sec:LinkedDataSignature2016",
139
+ "authenticationTag": "sec:authenticationTag",
140
+ "canonicalizationAlgorithm": "sec:canonicalizationAlgorithm",
141
+ "cipherAlgorithm": "sec:cipherAlgorithm",
142
+ "cipherData": "sec:cipherData",
143
+ "cipherKey": "sec:cipherKey",
144
+ "created": {
145
+ "@id": "dc:created",
146
+ "@type": "xsd:dateTime"
147
+ },
148
+ "creator": {
149
+ "@id": "dc:creator",
150
+ "@type": "@id"
151
+ },
152
+ "dc": "http://purl.org/dc/terms/",
153
+ "digestAlgorithm": "sec:digestAlgorithm",
154
+ "digestValue": "sec:digestValue",
155
+ "domain": "sec:domain",
156
+ "encryptionKey": "sec:encryptionKey",
157
+ "expiration": {
158
+ "@id": "sec:expiration",
159
+ "@type": "xsd:dateTime"
160
+ },
161
+ "expires": {
162
+ "@id": "sec:expiration",
163
+ "@type": "xsd:dateTime"
164
+ },
165
+ "id": "@id",
166
+ "initializationVector": "sec:initializationVector",
167
+ "iterationCount": "sec:iterationCount",
168
+ "nonce": "sec:nonce",
169
+ "normalizationAlgorithm": "sec:normalizationAlgorithm",
170
+ "owner": {
171
+ "@id": "sec:owner",
172
+ "@type": "@id"
173
+ },
174
+ "password": "sec:password",
175
+ "privateKey": {
176
+ "@id": "sec:privateKey",
177
+ "@type": "@id"
178
+ },
179
+ "privateKeyPem": "sec:privateKeyPem",
180
+ "publicKey": {
181
+ "@id": "sec:publicKey",
182
+ "@type": "@id"
183
+ },
184
+ "publicKeyBase58": "sec:publicKeyBase58",
185
+ "publicKeyPem": "sec:publicKeyPem",
186
+ "publicKeyService": {
187
+ "@id": "sec:publicKeyService",
188
+ "@type": "@id"
189
+ },
190
+ "publicKeyWif": "sec:publicKeyWif",
191
+ "revoked": {
192
+ "@id": "sec:revoked",
193
+ "@type": "xsd:dateTime"
194
+ },
195
+ "salt": "sec:salt",
196
+ "sec": "https://w3id.org/security#",
197
+ "signature": "sec:signature",
198
+ "signatureAlgorithm": "sec:signingAlgorithm",
199
+ "signatureValue": "sec:signatureValue",
200
+ "type": "@type",
201
+ "xsd": "http://www.w3.org/2001/XMLSchema#"
202
+ }
203
+ },
204
+ "urn:cid:bafkr4iegfox4fmrwmjwyhnmc4rxegbzeosob5iom3tb6pejhzbekw4xk6y": {
205
+ "@context": {
206
+ "@protected": true,
207
+ "EqtyVCompAmdSevV1": {
208
+ "@context": {
209
+ "measurement": {
210
+ "@id": "https://eqtylab.io/terms/measurement",
211
+ "@type": "xsd:string"
212
+ },
213
+ "measurementInfo": {
214
+ "@context": {
215
+ "append": {
216
+ "@context": {
217
+ "sha256": {
218
+ "@id": "https://eqtylab.io/terms/sha256",
219
+ "@type": "xsd:string"
220
+ },
221
+ "value": {
222
+ "@id": "https://eqtylab.io/terms/value",
223
+ "@type": "xsd:string"
224
+ }
225
+ },
226
+ "@id": "https://eqtylab.io/terms/append",
227
+ "@type": "@id"
228
+ },
229
+ "cpuType": {
230
+ "@id": "https://eqtylab.io/terms/cpuType",
231
+ "@type": "xsd:string"
232
+ },
233
+ "initrd": {
234
+ "@context": {
235
+ "sha256": {
236
+ "@id": "https://eqtylab.io/terms/sha256",
237
+ "@type": "xsd:string"
238
+ }
239
+ },
240
+ "@id": "https://eqtylab.io/terms/initrd",
241
+ "@type": "@id"
242
+ },
243
+ "kernel": {
244
+ "@context": {
245
+ "sha256": {
246
+ "@id": "https://eqtylab.io/terms/sha256",
247
+ "@type": "xsd:string"
248
+ }
249
+ },
250
+ "@id": "https://eqtylab.io/terms/kernel",
251
+ "@type": "@id"
252
+ },
253
+ "numCpuCores": {
254
+ "@id": "https://eqtylab.io/terms/numCpuCores",
255
+ "@type": "xsd:integer"
256
+ },
257
+ "ovmf": {
258
+ "@context": {
259
+ "sha256": {
260
+ "@id": "https://eqtylab.io/terms/sha256",
261
+ "@type": "xsd:string"
262
+ }
263
+ },
264
+ "@id": "https://eqtylab.io/terms/ovmf",
265
+ "@type": "@id"
266
+ },
267
+ "rootfs": {
268
+ "@context": {
269
+ "sha256": {
270
+ "@id": "https://eqtylab.io/terms/sha256",
271
+ "@type": "xsd:string"
272
+ }
273
+ },
274
+ "@id": "https://eqtylab.io/terms/rootfs",
275
+ "@type": "@id"
276
+ },
277
+ "sevMode": {
278
+ "@id": "https://eqtylab.io/terms/sevMode",
279
+ "@type": "xsd:string"
280
+ }
281
+ },
282
+ "@id": "https://eqtylab.io/terms/measurementInfo"
283
+ }
284
+ },
285
+ "@id": "https://eqtylab.io/terms/EqtyVCompAmdSevV1"
286
+ },
287
+ "EqtyVCompAmdSevV1Evidence": {
288
+ "@context": {
289
+ "certificateChain": {
290
+ "@id": "https://eqtylab.io/terms/certificateChain",
291
+ "@type": "@id"
292
+ },
293
+ "report": {
294
+ "@id": "https://eqtylab.io/terms/report",
295
+ "@type": "@id"
296
+ }
297
+ },
298
+ "@id": "https://eqtylab.io/terms/EqtyVCompAmdSevV1Evidence"
299
+ },
300
+ "EqtyVCompAzureV1": {
301
+ "@context": {
302
+ "measurement": {
303
+ "@context": {
304
+ "firmware": {
305
+ "@id": "https://eqtylab.io/terms/firmware",
306
+ "@type": "xsd:string"
307
+ },
308
+ "pcr11": {
309
+ "@id": "https://eqtylab.io/terms/pcr11",
310
+ "@type": "xsd:string"
311
+ }
312
+ },
313
+ "@id": "https://eqtylab.io/terms/measurement"
314
+ },
315
+ "measurementInfo": {
316
+ "@context": {
317
+ "append": {
318
+ "@context": {
319
+ "sha384": {
320
+ "@id": "https://eqtylab.io/terms/sha384",
321
+ "@type": "xsd:string"
322
+ },
323
+ "value": {
324
+ "@id": "https://eqtylab.io/terms/value",
325
+ "@type": "xsd:string"
326
+ }
327
+ },
328
+ "@id": "https://eqtylab.io/terms/append",
329
+ "@type": "@id"
330
+ },
331
+ "initrd": {
332
+ "@context": {
333
+ "parts": {
334
+ "@id": "https://eqtylab.io/terms/parts",
335
+ "@type": "@id"
336
+ },
337
+ "sha384": {
338
+ "@id": "https://eqtylab.io/terms/sha384",
339
+ "@type": "xsd:string"
340
+ }
341
+ },
342
+ "@id": "https://eqtylab.io/terms/initrd",
343
+ "@type": "@id"
344
+ },
345
+ "kernel": {
346
+ "@context": {
347
+ "sha384": {
348
+ "@id": "https://eqtylab.io/terms/sha384",
349
+ "@type": "xsd:string"
350
+ }
351
+ },
352
+ "@id": "https://eqtylab.io/terms/kernel",
353
+ "@type": "@id"
354
+ },
355
+ "rootfs": {
356
+ "@context": {
357
+ "sha256": {
358
+ "@id": "https://eqtylab.io/terms/sha256",
359
+ "@type": "xsd:string"
360
+ }
361
+ },
362
+ "@id": "https://eqtylab.io/terms/rootfs",
363
+ "@type": "@id"
364
+ },
365
+ "uki": {
366
+ "@id": "https://eqtylab.io/terms/uki",
367
+ "@type": "@id"
368
+ }
369
+ },
370
+ "@id": "https://eqtylab.io/terms/measurementInfo"
371
+ }
372
+ },
373
+ "@id": "https://eqtylab.io/terms/EqtyVCompAzureV1"
374
+ },
375
+ "EqtyVCompAzureV1Evidence": {
376
+ "@context": {
377
+ "azureBootLog": {
378
+ "@id": "https://eqtylab.io/terms/azureBootLog",
379
+ "@type": "@id"
380
+ },
381
+ "report": {
382
+ "@id": "https://eqtylab.io/terms/report",
383
+ "@type": "@id"
384
+ },
385
+ "reportCertificateChain": {
386
+ "@id": "https://eqtylab.io/terms/reportCertificateChain",
387
+ "@type": "@id"
388
+ },
389
+ "reportType": {
390
+ "@id": "https://eqtylab.io/terms/reportType",
391
+ "@type": "xsd:string"
392
+ },
393
+ "tpmAKCertificate": {
394
+ "@id": "https://eqtylab.io/terms/tpmAKCertificate",
395
+ "@type": "@id"
396
+ },
397
+ "tpmLog": {
398
+ "@id": "https://eqtylab.io/terms/tpmLog",
399
+ "@type": "@id"
400
+ },
401
+ "tpmQuote": {
402
+ "@id": "https://eqtylab.io/terms/tpmQuote",
403
+ "@type": "@id"
404
+ },
405
+ "tpmQuoteSignature": {
406
+ "@id": "https://eqtylab.io/terms/tpmQuoteSignature",
407
+ "@type": "@id"
408
+ }
409
+ },
410
+ "@id": "https://eqtylab.io/terms/EqtyVCompAzureV1Evidence"
411
+ },
412
+ "EqtyVCompDockerV1": {
413
+ "@context": {
414
+ "compose": {
415
+ "@id": "https://eqtylab.io/terms/compose",
416
+ "@type": "@id"
417
+ },
418
+ "executedOn": {
419
+ "@id": "https://eqtylab.io/terms/executedOn"
420
+ },
421
+ "image": {
422
+ "@context": {
423
+ "name": {
424
+ "@id": "https://eqtylab.io/terms/name",
425
+ "@type": "xsd:string"
426
+ },
427
+ "sha256": {
428
+ "@id": "https://eqtylab.io/terms/sha256",
429
+ "@type": "xsd:string"
430
+ }
431
+ },
432
+ "@id": "https://eqtylab.io/terms/image"
433
+ },
434
+ "operatedBy": {
435
+ "@id": "https://eqtylab.io/terms/operatedBy"
436
+ }
437
+ },
438
+ "@id": "https://eqtylab.io/terms/EqtyVCompDockerV1"
439
+ },
440
+ "EqtyVCompIntelTdxV0": {
441
+ "@context": {
442
+ "measurement": {
443
+ "@id": "https://eqtylab.io/terms/measurements",
444
+ "@type": "xsd:string"
445
+ },
446
+ "measurementInfo": {
447
+ "@context": {
448
+ "append": {
449
+ "@context": {
450
+ "sha384": {
451
+ "@id": "https://eqtylab.io/terms/sha384",
452
+ "@type": "xsd:string"
453
+ },
454
+ "value": {
455
+ "@id": "https://eqtylab.io/terms/value",
456
+ "@type": "xsd:string"
457
+ }
458
+ },
459
+ "@id": "https://eqtylab.io/terms/append",
460
+ "@type": "@id"
461
+ },
462
+ "initrd": {
463
+ "@context": {
464
+ "sha384": {
465
+ "@id": "https://eqtylab.io/terms/sha384",
466
+ "@type": "xsd:string"
467
+ }
468
+ },
469
+ "@id": "https://eqtylab.io/terms/initrd",
470
+ "@type": "@id"
471
+ },
472
+ "kernel": {
473
+ "@context": {
474
+ "sha384": {
475
+ "@id": "https://eqtylab.io/terms/sha384",
476
+ "@type": "xsd:string"
477
+ }
478
+ },
479
+ "@id": "https://eqtylab.io/terms/kernel",
480
+ "@type": "@id"
481
+ },
482
+ "ovmf": {
483
+ "@context": {
484
+ "sha384": {
485
+ "@id": "https://eqtylab.io/terms/sha384",
486
+ "@type": "xsd:string"
487
+ }
488
+ },
489
+ "@id": "https://eqtylab.io/terms/ovmf",
490
+ "@type": "@id"
491
+ },
492
+ "rootfs": {
493
+ "@context": {
494
+ "sha256": {
495
+ "@id": "https://eqtylab.io/terms/sha256",
496
+ "@type": "xsd:string"
497
+ }
498
+ },
499
+ "@id": "https://eqtylab.io/terms/rootfs",
500
+ "@type": "@id"
501
+ }
502
+ },
503
+ "@id": "https://eqtylab.io/terms/measurementInfo"
504
+ }
505
+ },
506
+ "@id": "https://eqtylab.io/terms/EqtyVCompIntelTdxV0"
507
+ },
508
+ "EqtyVCompIntelTdxV0Evidence": {
509
+ "@context": {
510
+ "certificateChain": {
511
+ "@id": "https://eqtylab.io/terms/certificateChain",
512
+ "@type": "@id"
513
+ },
514
+ "report": {
515
+ "@id": "https://eqtylab.io/terms/report",
516
+ "@type": "@id"
517
+ }
518
+ },
519
+ "@id": "https://eqtylab.io/terms/EqtyVCompIntelTdxV0Evidence"
520
+ },
521
+ "EqtyVCompNvidiaCcV0Evidence": {
522
+ "@context": {
523
+ "certificateChain": {
524
+ "@id": "https://eqtylab.io/terms/certificateChain",
525
+ "@type": "@id"
526
+ },
527
+ "report": {
528
+ "@id": "https://eqtylab.io/terms/report",
529
+ "@type": "@id"
530
+ }
531
+ },
532
+ "@id": "https://eqtylab.io/terms/EqtyVCompNvidiaCcV0Evidence"
533
+ },
534
+ "vcomp": {
535
+ "@id": "https://eqtylab.io/terms/vcomp"
536
+ }
537
+ }
538
+ },
539
+ "https://www.w3.org/ns/credentials/v2": {
540
+ "@context": {
541
+ "...": {
542
+ "@id": "https://www.iana.org/assignments/jwt#..."
543
+ },
544
+ "@protected": true,
545
+ "@vocab": "https://www.w3.org/ns/credentials/issuer-dependent#",
546
+ "DataIntegrityProof": {
547
+ "@context": {
548
+ "@protected": true,
549
+ "challenge": "https://w3id.org/security#challenge",
550
+ "created": {
551
+ "@id": "http://purl.org/dc/terms/created",
552
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
553
+ },
554
+ "cryptosuite": {
555
+ "@id": "https://w3id.org/security#cryptosuite",
556
+ "@type": "https://w3id.org/security#cryptosuiteString"
557
+ },
558
+ "domain": "https://w3id.org/security#domain",
559
+ "expires": {
560
+ "@id": "https://w3id.org/security#expiration",
561
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
562
+ },
563
+ "id": "@id",
564
+ "nonce": "https://w3id.org/security#nonce",
565
+ "previousProof": {
566
+ "@id": "https://w3id.org/security#previousProof",
567
+ "@type": "@id"
568
+ },
569
+ "proofPurpose": {
570
+ "@context": {
571
+ "@protected": true,
572
+ "assertionMethod": {
573
+ "@container": "@set",
574
+ "@id": "https://w3id.org/security#assertionMethod",
575
+ "@type": "@id"
576
+ },
577
+ "authentication": {
578
+ "@container": "@set",
579
+ "@id": "https://w3id.org/security#authenticationMethod",
580
+ "@type": "@id"
581
+ },
582
+ "capabilityDelegation": {
583
+ "@container": "@set",
584
+ "@id": "https://w3id.org/security#capabilityDelegationMethod",
585
+ "@type": "@id"
586
+ },
587
+ "capabilityInvocation": {
588
+ "@container": "@set",
589
+ "@id": "https://w3id.org/security#capabilityInvocationMethod",
590
+ "@type": "@id"
591
+ },
592
+ "id": "@id",
593
+ "keyAgreement": {
594
+ "@container": "@set",
595
+ "@id": "https://w3id.org/security#keyAgreementMethod",
596
+ "@type": "@id"
597
+ },
598
+ "type": "@type"
599
+ },
600
+ "@id": "https://w3id.org/security#proofPurpose",
601
+ "@type": "@vocab"
602
+ },
603
+ "proofValue": {
604
+ "@id": "https://w3id.org/security#proofValue",
605
+ "@type": "https://w3id.org/security#multibase"
606
+ },
607
+ "type": "@type",
608
+ "verificationMethod": {
609
+ "@id": "https://w3id.org/security#verificationMethod",
610
+ "@type": "@id"
611
+ }
612
+ },
613
+ "@id": "https://w3id.org/security#DataIntegrityProof"
614
+ },
615
+ "JsonSchema": {
616
+ "@context": {
617
+ "@protected": true,
618
+ "id": "@id",
619
+ "jsonSchema": {
620
+ "@id": "https://w3.org/2018/credentials#jsonSchema",
621
+ "@type": "@json"
622
+ },
623
+ "type": "@type"
624
+ },
625
+ "@id": "https://w3.org/2018/credentials#JsonSchema"
626
+ },
627
+ "JsonSchemaCredential": "https://w3.org/2018/credentials#JsonSchemaCredential",
628
+ "StatusList2021": {
629
+ "@context": {
630
+ "@protected": true,
631
+ "encodedList": "https://w3id.org/vc/status-list#encodedList",
632
+ "id": "@id",
633
+ "statusPurpose": "https://w3id.org/vc/status-list#statusPurpose",
634
+ "type": "@type"
635
+ },
636
+ "@id": "https://w3id.org/vc/status-list#StatusList2021"
637
+ },
638
+ "StatusList2021Credential": {
639
+ "@context": {
640
+ "@protected": true,
641
+ "description": "https://schema.org/description",
642
+ "id": "@id",
643
+ "name": "https://schema.org/name",
644
+ "type": "@type"
645
+ },
646
+ "@id": "https://w3id.org/vc/status-list#StatusList2021Credential"
647
+ },
648
+ "StatusList2021Entry": {
649
+ "@context": {
650
+ "@protected": true,
651
+ "id": "@id",
652
+ "statusListCredential": {
653
+ "@id": "https://w3id.org/vc/status-list#statusListCredential",
654
+ "@type": "@id"
655
+ },
656
+ "statusListIndex": "https://w3id.org/vc/status-list#statusListIndex",
657
+ "statusPurpose": "https://w3id.org/vc/status-list#statusPurpose",
658
+ "type": "@type"
659
+ },
660
+ "@id": "https://w3id.org/vc/status-list#StatusList2021Entry"
661
+ },
662
+ "VerifiableCredential": {
663
+ "@context": {
664
+ "@protected": true,
665
+ "confidenceMethod": {
666
+ "@id": "https://www.w3.org/2018/credentials#confidenceMethod",
667
+ "@type": "@id"
668
+ },
669
+ "credentialSchema": {
670
+ "@id": "https://www.w3.org/2018/credentials#credentialSchema",
671
+ "@type": "@id"
672
+ },
673
+ "credentialStatus": {
674
+ "@id": "https://www.w3.org/2018/credentials#credentialStatus",
675
+ "@type": "@id"
676
+ },
677
+ "credentialSubject": {
678
+ "@id": "https://www.w3.org/2018/credentials#credentialSubject",
679
+ "@type": "@id"
680
+ },
681
+ "description": {
682
+ "@context": {
683
+ "dir": "@direction",
684
+ "lang": "@language",
685
+ "value": "@value"
686
+ },
687
+ "@id": "https://schema.org/description"
688
+ },
689
+ "evidence": {
690
+ "@id": "https://www.w3.org/2018/credentials#evidence",
691
+ "@type": "@id"
692
+ },
693
+ "id": "@id",
694
+ "issuer": {
695
+ "@context": {
696
+ "@protected": true,
697
+ "description": {
698
+ "@context": {
699
+ "dir": "@direction",
700
+ "lang": "@language",
701
+ "value": "@value"
702
+ },
703
+ "@id": "https://schema.org/description"
704
+ },
705
+ "id": "@id",
706
+ "name": {
707
+ "@context": {
708
+ "dir": "@direction",
709
+ "lang": "@language",
710
+ "value": "@value"
711
+ },
712
+ "@id": "https://schema.org/name"
713
+ },
714
+ "type": "@type"
715
+ },
716
+ "@id": "https://www.w3.org/2018/credentials#issuer",
717
+ "@type": "@id"
718
+ },
719
+ "name": {
720
+ "@context": {
721
+ "dir": "@direction",
722
+ "lang": "@language",
723
+ "value": "@value"
724
+ },
725
+ "@id": "https://schema.org/name"
726
+ },
727
+ "proof": {
728
+ "@container": "@graph",
729
+ "@id": "https://w3id.org/security#proof",
730
+ "@type": "@id"
731
+ },
732
+ "refreshService": {
733
+ "@id": "https://www.w3.org/2018/credentials#refreshService",
734
+ "@type": "@id"
735
+ },
736
+ "relatedResource": {
737
+ "@id": "https://www.w3.org/2018/credentials#relatedResource",
738
+ "@type": "@id"
739
+ },
740
+ "termsOfUse": {
741
+ "@id": "https://www.w3.org/2018/credentials#termsOfUse",
742
+ "@type": "@id"
743
+ },
744
+ "type": "@type",
745
+ "validFrom": {
746
+ "@id": "https://www.w3.org/2018/credentials#validFrom",
747
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
748
+ },
749
+ "validUntil": {
750
+ "@id": "https://www.w3.org/2018/credentials#validUntil",
751
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
752
+ }
753
+ },
754
+ "@id": "https://www.w3.org/2018/credentials#VerifiableCredential"
755
+ },
756
+ "VerifiablePresentation": {
757
+ "@context": {
758
+ "@protected": true,
759
+ "holder": {
760
+ "@id": "https://www.w3.org/2018/credentials#holder",
761
+ "@type": "@id"
762
+ },
763
+ "id": "@id",
764
+ "proof": {
765
+ "@container": "@graph",
766
+ "@id": "https://w3id.org/security#proof",
767
+ "@type": "@id"
768
+ },
769
+ "termsOfUse": {
770
+ "@id": "https://www.w3.org/2018/credentials#termsOfUse",
771
+ "@type": "@id"
772
+ },
773
+ "type": "@type",
774
+ "verifiableCredential": {
775
+ "@container": "@graph",
776
+ "@context": null,
777
+ "@id": "https://www.w3.org/2018/credentials#verifiableCredential",
778
+ "@type": "@id"
779
+ }
780
+ },
781
+ "@id": "https://www.w3.org/2018/credentials#VerifiablePresentation"
782
+ },
783
+ "_sd": {
784
+ "@id": "https://www.iana.org/assignments/jwt#_sd"
785
+ },
786
+ "_sd_alg": {
787
+ "@id": "https://www.iana.org/assignments/jwt#_sd_alg"
788
+ },
789
+ "aud": {
790
+ "@id": "https://www.iana.org/assignments/jwt#aud",
791
+ "@type": "@id"
792
+ },
793
+ "cnf": {
794
+ "@context": {
795
+ "@protected": true,
796
+ "jwk": {
797
+ "@id": "https://www.iana.org/assignments/jwt#jwk",
798
+ "@type": "@json"
799
+ },
800
+ "kid": {
801
+ "@id": "https://www.iana.org/assignments/jwt#kid",
802
+ "@type": "@id"
803
+ }
804
+ },
805
+ "@id": "https://www.iana.org/assignments/jwt#cnf"
806
+ },
807
+ "digestSRI": {
808
+ "@id": "https://www.w3.org/2018/credentials#digestSRI",
809
+ "@type": "https://www.w3.org/2018/credentials#sriString"
810
+ },
811
+ "exp": {
812
+ "@id": "https://www.iana.org/assignments/jwt#exp",
813
+ "@type": "https://www.w3.org/2001/XMLSchema#nonNegativeInteger"
814
+ },
815
+ "iat": {
816
+ "@id": "https://www.iana.org/assignments/jwt#iat",
817
+ "@type": "https://www.w3.org/2001/XMLSchema#nonNegativeInteger"
818
+ },
819
+ "id": "@id",
820
+ "iss": {
821
+ "@id": "https://www.iana.org/assignments/jose#iss",
822
+ "@type": "@id"
823
+ },
824
+ "jku": {
825
+ "@id": "https://www.iana.org/assignments/jose#jku",
826
+ "@type": "@id"
827
+ },
828
+ "kid": {
829
+ "@id": "https://www.iana.org/assignments/jose#kid",
830
+ "@type": "@id"
831
+ },
832
+ "mediaType": {
833
+ "@id": "https://schema.org/encodingFormat"
834
+ },
835
+ "nbf": {
836
+ "@id": "https://www.iana.org/assignments/jwt#nbf",
837
+ "@type": "https://www.w3.org/2001/XMLSchema#nonNegativeInteger"
838
+ },
839
+ "sub": {
840
+ "@id": "https://www.iana.org/assignments/jose#sub",
841
+ "@type": "@id"
842
+ },
843
+ "type": "@type",
844
+ "x5u": {
845
+ "@id": "https://www.iana.org/assignments/jose#x5u",
846
+ "@type": "@id"
847
+ }
848
+ }
849
+ },
850
+ "urn:cid:bafkr4iagb4u7jqlwqrftw4mn3l634wmgatmpvvzqgntgxaaerzljhggvdu": {
851
+ "@context": [
852
+ "urn:cid:bafkr4iegfox4fmrwmjwyhnmc4rxegbzeosob5iom3tb6pejhzbekw4xk6y",
853
+ {
854
+ "@protected": true,
855
+ "ComputationRegistration": {
856
+ "@context": {
857
+ "computation": {
858
+ "@id": "https://eqtylab.io/terms/computation",
859
+ "@type": "@id"
860
+ },
861
+ "executedOn": {
862
+ "@id": "https://eqtylab.io/terms/executedOn"
863
+ },
864
+ "input": {
865
+ "@id": "https://eqtylab.io/terms/input",
866
+ "@type": "@id"
867
+ },
868
+ "operatedBy": {
869
+ "@id": "https://eqtylab.io/terms/operatedBy"
870
+ },
871
+ "output": {
872
+ "@id": "https://eqtylab.io/terms/output",
873
+ "@type": "@id"
874
+ }
875
+ },
876
+ "@id": "https://eqtylab.io/terms/ComputationRegistration"
877
+ },
878
+ "CredentialRegistration": {
879
+ "@context": {
880
+ "credential": {
881
+ "@id": "https://eqtylab.io/terms/credential"
882
+ },
883
+ "credentialDsse": {
884
+ "@context": {
885
+ "payload": {
886
+ "@id": "https://eqtylab.io/terms/payload",
887
+ "@type": "xsd:string"
888
+ },
889
+ "payloadType": {
890
+ "@id": "https://eqtylab.io/terms/payloadType",
891
+ "@type": "xsd:string"
892
+ },
893
+ "signatures": {
894
+ "@context": {
895
+ "keyid": {
896
+ "@id": "https://eqtylab.io/terms/keyid",
897
+ "@type": "xsd:string"
898
+ },
899
+ "sig": {
900
+ "@id": "https://eqtylab.io/terms/keyid",
901
+ "@type": "xsd:string"
902
+ }
903
+ },
904
+ "@id": "https://eqtylab.io/terms/signatures"
905
+ }
906
+ },
907
+ "@id": "https://eqtylab.io/terms/credentialDsse"
908
+ }
909
+ },
910
+ "@id": "https://eqtylab.io/terms/CredentialRegistration"
911
+ },
912
+ "DataRegistration": {
913
+ "@context": {
914
+ "data": {
915
+ "@id": "https://eqtylab.io/terms/data",
916
+ "@type": "@id"
917
+ }
918
+ },
919
+ "@id": "https://eqtylab.io/terms/DataRegistration"
920
+ },
921
+ "DidRegistration": {
922
+ "@context": {
923
+ "did": {
924
+ "@id": "https://eqtylab.io/terms/did"
925
+ }
926
+ },
927
+ "@id": "https://eqtylab.io/terms/DidRegistration"
928
+ },
929
+ "EntityRegistration": {
930
+ "@context": {
931
+ "entity": {
932
+ "@id": "https://eqtylab.io/terms/entity",
933
+ "@type": "@id"
934
+ }
935
+ },
936
+ "@id": "https://eqtylab.io/terms/EntityRegistration"
937
+ },
938
+ "GovernanceRegistration": {
939
+ "@context": {
940
+ "document": {
941
+ "@id": "https://eqtylab.io/terms/document",
942
+ "@type": "@id"
943
+ },
944
+ "subject": {
945
+ "@id": "https://eqtylab.io/terms/subject",
946
+ "@type": "@id"
947
+ }
948
+ },
949
+ "@id": "https://eqtylab.io/terms/GovernanceRegistration"
950
+ },
951
+ "MetadataRegistration": {
952
+ "@context": {
953
+ "metadata": {
954
+ "@id": "https://eqtylab.io/terms/metadata",
955
+ "@type": "@id"
956
+ },
957
+ "subject": {
958
+ "@id": "https://eqtylab.io/terms/subject",
959
+ "@type": "@id"
960
+ }
961
+ },
962
+ "@id": "https://eqtylab.io/terms/MetadataRegistration"
963
+ },
964
+ "StorageRegistration": {
965
+ "@context": {
966
+ "data": {
967
+ "@id": "https://eqtylab.io/terms/data",
968
+ "@type": "@id"
969
+ },
970
+ "operatedBy": {
971
+ "@id": "https://eqtylab.io/terms/operatedBy"
972
+ },
973
+ "storedOn": {
974
+ "@id": "https://eqtylab.io/terms/storedOn",
975
+ "@type": "@id"
976
+ }
977
+ },
978
+ "@id": "https://eqtylab.io/terms/StorageRegistration"
979
+ },
980
+ "registeredBy": {
981
+ "@id": "https://eqtylab.io/terms/registeredBy"
982
+ },
983
+ "timestamp": {
984
+ "@id": "https://eqtylab.io/terms/timestamp",
985
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
986
+ }
987
+ }
988
+ ]
989
+ }
990
+ },
991
+ "statements": {
992
+ "urn:cid:bagb6qaq6eaa2rngixkqa4eynxuh2stkfrwfydejnkyg5n2u2ubegqcc2r3aza": {
993
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
994
+ "@id": "urn:cid:bagb6qaq6eaa2rngixkqa4eynxuh2stkfrwfydejnkyg5n2u2ubegqcc2r3aza",
995
+ "@type": "DataRegistration",
996
+ "data": "urn:cid:bagaachra2ibrpnplpir6i2mcjatreqytxxcdycl6kuwm7v4twa574di2fmnq",
997
+ "registeredBy": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
998
+ "timestamp": "2025-08-05T07:25:57Z"
999
+ },
1000
+ "urn:cid:bagb6qaq6echbpkvonmx2gdieqxr6rkkhgfad5culnherpiqwy5t6z4pycyeym": {
1001
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1002
+ "@id": "urn:cid:bagb6qaq6echbpkvonmx2gdieqxr6rkkhgfad5culnherpiqwy5t6z4pycyeym",
1003
+ "@type": "CredentialRegistration",
1004
+ "credential": {
1005
+ "@context": [
1006
+ "https://www.w3.org/ns/credentials/v2",
1007
+ "https://w3id.org/security/v2"
1008
+ ],
1009
+ "id": "urn:uuid:52047600-2557-45f4-a50b-d5ae8ea20d4e",
1010
+ "type": [
1011
+ "VerifiableCredential"
1012
+ ],
1013
+ "credentialSubject": {
1014
+ "id": "urn:cid:bagb6qaq6ec6o4osajp2athfzusmoedf6hxuich74b4vbumv47azfyyauh6fic"
1015
+ },
1016
+ "issuer": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1017
+ "issuanceDate": "2025-08-05T07:25:57Z",
1018
+ "proof": {
1019
+ "type": "Ed25519Signature2018",
1020
+ "proofPurpose": "assertionMethod",
1021
+ "verificationMethod": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT#z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1022
+ "created": "2025-08-05T07:25:57Z",
1023
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..Ri-bPdf-rShxG3aVclJY0fLslawktTZqnbwxSZbB74Pjgpf9VsM3E-zp70wwQV8UaGVgMqteF4nSt9-bgT7JDA"
1024
+ },
1025
+ "validFrom": "2025-08-05T07:25:57Z"
1026
+ },
1027
+ "registeredBy": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1028
+ "timestamp": "2025-08-05T07:25:57Z"
1029
+ },
1030
+ "urn:cid:bagb6qaq6ebq5saqiqikio3h5piojdcnm7gtsg7n7grmvvq6zzxs4hvuj5n5zs": {
1031
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1032
+ "@id": "urn:cid:bagb6qaq6ebq5saqiqikio3h5piojdcnm7gtsg7n7grmvvq6zzxs4hvuj5n5zs",
1033
+ "@type": "CredentialRegistration",
1034
+ "credential": {
1035
+ "@context": [
1036
+ "https://www.w3.org/ns/credentials/v2",
1037
+ "https://w3id.org/security/v2"
1038
+ ],
1039
+ "id": "urn:uuid:b4a47c41-b126-4e92-bc67-3b658c74f604",
1040
+ "type": [
1041
+ "VerifiableCredential"
1042
+ ],
1043
+ "credentialSubject": {
1044
+ "id": "urn:cid:bagb6qaq6ebzuot5znhxhx2tntc72ju5tghygblzxj2ozfnfcrqvesygid3auc"
1045
+ },
1046
+ "issuer": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1047
+ "issuanceDate": "2025-08-05T07:25:57Z",
1048
+ "proof": {
1049
+ "type": "Ed25519Signature2018",
1050
+ "proofPurpose": "assertionMethod",
1051
+ "verificationMethod": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT#z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1052
+ "created": "2025-08-05T07:25:57Z",
1053
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..UoExrHeEEGsuByG3nv1X23JfSfdzZkGPY8-JKVwk0rXVdapX68zJSbzOLg81poQ2KTlmBLGxAsFt-cycJnIPCQ"
1054
+ },
1055
+ "validFrom": "2025-08-05T07:25:57Z"
1056
+ },
1057
+ "registeredBy": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1058
+ "timestamp": "2025-08-05T07:25:57Z"
1059
+ },
1060
+ "urn:cid:bagb6qaq6ebxmm6vkgivfept2xm3aznaavkdlv6fk7quwiix6tx2ngj3q6ogme": {
1061
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1062
+ "@id": "urn:cid:bagb6qaq6ebxmm6vkgivfept2xm3aznaavkdlv6fk7quwiix6tx2ngj3q6ogme",
1063
+ "@type": "MetadataRegistration",
1064
+ "subject": "urn:cid:bagaachra2ibrpnplpir6i2mcjatreqytxxcdycl6kuwm7v4twa574di2fmnq",
1065
+ "metadata": "urn:cid:baga6yaq6ebvbnj5u22gp3yr2jobs5oummvzoc4gsd2smvv5jr7phgm32suicu",
1066
+ "registeredBy": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1067
+ "timestamp": "2025-08-05T07:25:57Z"
1068
+ },
1069
+ "urn:cid:bagb6qaq6ebzuot5znhxhx2tntc72ju5tghygblzxj2ozfnfcrqvesygid3auc": {
1070
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1071
+ "@id": "urn:cid:bagb6qaq6ebzuot5znhxhx2tntc72ju5tghygblzxj2ozfnfcrqvesygid3auc",
1072
+ "@type": "ComputationRegistration",
1073
+ "computation": "urn:cid:bagaachra64lf2onmrsxmqrfi4xj7vhjgcr6an4hjk4fzdxngkfwo7noozzya",
1074
+ "input": "urn:cid:bagaachra2ibrpnplpir6i2mcjatreqytxxcdycl6kuwm7v4twa574di2fmnq",
1075
+ "output": "urn:cid:bagaachraujacpvucpnytnyt5wabus5sqqlzq2w4i2h5qgbanc4xarbjcaska",
1076
+ "operatedBy": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1077
+ "registeredBy": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1078
+ "timestamp": "2025-08-05T07:25:57Z"
1079
+ },
1080
+ "urn:cid:bagb6qaq6edom4rstpuzzzc3jq4ff4e5lbqz5haznhr5t3x4o4mfahzkmkjfso": {
1081
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1082
+ "@id": "urn:cid:bagb6qaq6edom4rstpuzzzc3jq4ff4e5lbqz5haznhr5t3x4o4mfahzkmkjfso",
1083
+ "@type": "CredentialRegistration",
1084
+ "credential": {
1085
+ "@context": [
1086
+ "https://www.w3.org/ns/credentials/v2",
1087
+ "https://w3id.org/security/v2"
1088
+ ],
1089
+ "id": "urn:uuid:67923e8e-bd83-448b-ac04-31471d6f121a",
1090
+ "type": [
1091
+ "VerifiableCredential"
1092
+ ],
1093
+ "credentialSubject": {
1094
+ "id": "urn:cid:bagb6qaq6ebxmm6vkgivfept2xm3aznaavkdlv6fk7quwiix6tx2ngj3q6ogme"
1095
+ },
1096
+ "issuer": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1097
+ "issuanceDate": "2025-08-05T07:25:57Z",
1098
+ "proof": {
1099
+ "type": "Ed25519Signature2018",
1100
+ "proofPurpose": "assertionMethod",
1101
+ "verificationMethod": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT#z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1102
+ "created": "2025-08-05T07:25:57Z",
1103
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..UnkzpvdtvhcuZ3CK7Y2UWmkP51x0ivh08PxSfsmwgqE-08EXEmUi0yac74ZIPV2EdVsevjq8F-5IBthZIjJlAQ"
1104
+ },
1105
+ "validFrom": "2025-08-05T07:25:57Z"
1106
+ },
1107
+ "registeredBy": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1108
+ "timestamp": "2025-08-05T07:25:57Z"
1109
+ },
1110
+ "urn:cid:bagb6qaq6ebx7bcwt3mh7ugbzgjm354muqlkycahk672eqsoh6bjbreaj6lbs6": {
1111
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1112
+ "@id": "urn:cid:bagb6qaq6ebx7bcwt3mh7ugbzgjm354muqlkycahk672eqsoh6bjbreaj6lbs6",
1113
+ "@type": "CredentialRegistration",
1114
+ "credential": {
1115
+ "@context": [
1116
+ "https://www.w3.org/ns/credentials/v2",
1117
+ "https://w3id.org/security/v2"
1118
+ ],
1119
+ "id": "urn:uuid:bb652135-19c8-4d76-ae2f-b377a82c69fd",
1120
+ "type": [
1121
+ "VerifiableCredential"
1122
+ ],
1123
+ "credentialSubject": {
1124
+ "id": "urn:cid:bagb6qaq6ebeq76h66oyg4unhi7g3ejmvzhlxcaefkj26aplgjrbifmbnnb4h6"
1125
+ },
1126
+ "issuer": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1127
+ "issuanceDate": "2025-08-05T07:25:56Z",
1128
+ "proof": {
1129
+ "type": "Ed25519Signature2018",
1130
+ "proofPurpose": "assertionMethod",
1131
+ "verificationMethod": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT#z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1132
+ "created": "2025-08-05T07:25:56Z",
1133
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..XMuLO0RJ37KPQPST_ohUQyq4REmpVvDEPksa1hApCbAD2BypvLSyEXyuuClqnCB0FiE-MWeoYffJ-EE5_fknBw"
1134
+ },
1135
+ "validFrom": "2025-08-05T07:25:56Z"
1136
+ },
1137
+ "registeredBy": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1138
+ "timestamp": "2025-08-05T07:25:56Z"
1139
+ },
1140
+ "urn:cid:bagb6qaq6ebmzlej2mw5bunlkjqwmwubilsigmb62ogxpm3pgrccnq3yjiaty4": {
1141
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1142
+ "@id": "urn:cid:bagb6qaq6ebmzlej2mw5bunlkjqwmwubilsigmb62ogxpm3pgrccnq3yjiaty4",
1143
+ "@type": "CredentialRegistration",
1144
+ "credential": {
1145
+ "@context": [
1146
+ "https://www.w3.org/ns/credentials/v2",
1147
+ "https://w3id.org/security/v2"
1148
+ ],
1149
+ "id": "urn:uuid:c776cd17-7dc7-4609-8a44-bc967b0f05f6",
1150
+ "type": [
1151
+ "VerifiableCredential"
1152
+ ],
1153
+ "credentialSubject": {
1154
+ "id": "urn:cid:bagb6qaq6eaa2rngixkqa4eynxuh2stkfrwfydejnkyg5n2u2ubegqcc2r3aza"
1155
+ },
1156
+ "issuer": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1157
+ "issuanceDate": "2025-08-05T07:25:57Z",
1158
+ "proof": {
1159
+ "type": "Ed25519Signature2018",
1160
+ "proofPurpose": "assertionMethod",
1161
+ "verificationMethod": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT#z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1162
+ "created": "2025-08-05T07:25:57Z",
1163
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..W6mkAsl2mzdcxDLzVOxayPsDG8WVddTd5C50GHQp_H34_dhoXZUuhBN12PgbnQFn2G-lffXW-lp-MUoNi31dBQ"
1164
+ },
1165
+ "validFrom": "2025-08-05T07:25:57Z"
1166
+ },
1167
+ "registeredBy": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1168
+ "timestamp": "2025-08-05T07:25:57Z"
1169
+ },
1170
+ "urn:cid:bagb6qaq6ecqaxhg2beqtbsfokhkws4gvj4a5irypcmagggmll7sexnaoj3r5k": {
1171
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1172
+ "@id": "urn:cid:bagb6qaq6ecqaxhg2beqtbsfokhkws4gvj4a5irypcmagggmll7sexnaoj3r5k",
1173
+ "@type": "CredentialRegistration",
1174
+ "credential": {
1175
+ "@context": [
1176
+ "https://www.w3.org/ns/credentials/v2",
1177
+ "https://w3id.org/security/v2"
1178
+ ],
1179
+ "id": "urn:uuid:57e8259a-7f17-4a5f-9acf-815393ac2290",
1180
+ "type": [
1181
+ "VerifiableCredential"
1182
+ ],
1183
+ "credentialSubject": {
1184
+ "id": "urn:cid:bagb6qaq6ebp2mjzoh5hromssbcolmfptxchrpngqvojgfkze35qfjqkkm5ct4"
1185
+ },
1186
+ "issuer": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1187
+ "issuanceDate": "2025-08-05T07:25:57Z",
1188
+ "proof": {
1189
+ "type": "Ed25519Signature2018",
1190
+ "proofPurpose": "assertionMethod",
1191
+ "verificationMethod": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT#z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1192
+ "created": "2025-08-05T07:25:57Z",
1193
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..ITxMqBRvwyJpW8q_9crWGF59XPCEL60WuNpcWQL_IxpBiyjTigGkPBGtBQ_OOmxPCQKJpdqxovTemavlCW-8Cw"
1194
+ },
1195
+ "validFrom": "2025-08-05T07:25:57Z"
1196
+ },
1197
+ "registeredBy": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1198
+ "timestamp": "2025-08-05T07:25:57Z"
1199
+ },
1200
+ "urn:cid:bagb6qaq6ebp2mjzoh5hromssbcolmfptxchrpngqvojgfkze35qfjqkkm5ct4": {
1201
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1202
+ "@id": "urn:cid:bagb6qaq6ebp2mjzoh5hromssbcolmfptxchrpngqvojgfkze35qfjqkkm5ct4",
1203
+ "@type": "DataRegistration",
1204
+ "data": "urn:cid:bagaachraujacpvucpnytnyt5wabus5sqqlzq2w4i2h5qgbanc4xarbjcaska",
1205
+ "registeredBy": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1206
+ "timestamp": "2025-08-05T07:25:57Z"
1207
+ },
1208
+ "urn:cid:bagb6qaq6ecxkfuxv2qmusla2n526sfd7qgasyjohxnx7xtnx5t2wqh4cu32yq": {
1209
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1210
+ "@id": "urn:cid:bagb6qaq6ecxkfuxv2qmusla2n526sfd7qgasyjohxnx7xtnx5t2wqh4cu32yq",
1211
+ "@type": "MetadataRegistration",
1212
+ "subject": "urn:cid:bagaachraujacpvucpnytnyt5wabus5sqqlzq2w4i2h5qgbanc4xarbjcaska",
1213
+ "metadata": "urn:cid:baga6yaq6ebhrbbbrr4fktdm63akxtbdi2eycyjwjjkrbtdg6j4gqysneiakcc",
1214
+ "registeredBy": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1215
+ "timestamp": "2025-08-05T07:25:57Z"
1216
+ },
1217
+ "urn:cid:bagb6qaq6eb4roede4s7vgam7b55smpi6htmjv223ypfxhstowqlztvla3nibe": {
1218
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1219
+ "@id": "urn:cid:bagb6qaq6eb4roede4s7vgam7b55smpi6htmjv223ypfxhstowqlztvla3nibe",
1220
+ "@type": "CredentialRegistration",
1221
+ "credential": {
1222
+ "@context": [
1223
+ "https://www.w3.org/ns/credentials/v2",
1224
+ "https://w3id.org/security/v2"
1225
+ ],
1226
+ "id": "urn:uuid:1ee319ee-7b20-42c4-a6cf-cd3e7ee6b0a8",
1227
+ "type": [
1228
+ "VerifiableCredential"
1229
+ ],
1230
+ "credentialSubject": {
1231
+ "id": "urn:cid:bagb6qaq6ecxkfuxv2qmusla2n526sfd7qgasyjohxnx7xtnx5t2wqh4cu32yq"
1232
+ },
1233
+ "issuer": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1234
+ "issuanceDate": "2025-08-05T07:25:57Z",
1235
+ "proof": {
1236
+ "type": "Ed25519Signature2018",
1237
+ "proofPurpose": "assertionMethod",
1238
+ "verificationMethod": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT#z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1239
+ "created": "2025-08-05T07:25:57Z",
1240
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..6FAcxjsqii01-H6Ms-Fkz4RtJHLA9fQ57F1YIXmadXrS5KkarVbr2_MiVvjvHVSFrYb2RoudueL5_g3TiQi2AA"
1241
+ },
1242
+ "validFrom": "2025-08-05T07:25:57Z"
1243
+ },
1244
+ "registeredBy": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1245
+ "timestamp": "2025-08-05T07:25:57Z"
1246
+ },
1247
+ "urn:cid:bagb6qaq6ebeq76h66oyg4unhi7g3ejmvzhlxcaefkj26aplgjrbifmbnnb4h6": {
1248
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1249
+ "@id": "urn:cid:bagb6qaq6ebeq76h66oyg4unhi7g3ejmvzhlxcaefkj26aplgjrbifmbnnb4h6",
1250
+ "@type": "MetadataRegistration",
1251
+ "subject": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1252
+ "metadata": "urn:cid:baga6yaq6ebrzapaiindt7azale25vc2xpt7dtl5jzb43n36ds63rgidwcjbfy",
1253
+ "registeredBy": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1254
+ "timestamp": "2025-08-05T07:25:56Z"
1255
+ },
1256
+ "urn:cid:bagb6qaq6ec6o4osajp2athfzusmoedf6hxuich74b4vbumv47azfyyauh6fic": {
1257
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1258
+ "@id": "urn:cid:bagb6qaq6ec6o4osajp2athfzusmoedf6hxuich74b4vbumv47azfyyauh6fic",
1259
+ "@type": "MetadataRegistration",
1260
+ "subject": "urn:cid:bagb6qaq6ebzuot5znhxhx2tntc72ju5tghygblzxj2ozfnfcrqvesygid3auc",
1261
+ "metadata": "urn:cid:baga6yaq6eaqecbedewkv3p7uvuzzzkhaqvgm23rodczoubc4l27doe5o4f5oc",
1262
+ "registeredBy": "did:key:z6Mkn9h1LREreYFD7mQND3hSYtfKfcsPHQwaw5dSbvHPTPFT",
1263
+ "timestamp": "2025-08-05T07:25:57Z"
1264
+ }
1265
+ },
1266
+ "blobs": {
1267
+ "bagaachra2ibrpnplpir6i2mcjatreqytxxcdycl6kuwm7v4twa574di2fmnq": "FSzNIt5LVkOM0H1wfJkt9DeXsmrJTesa78ZxKHjzgSCzNytYTcDfbOdX+kP0WcofDEGAoIdiy/pB0CLKJPY9n8gCV2X4dvGnTmuZeM7VmIU8uJCyptNqBceZEzr4HH+B9MqR5w0HQ1o46mFieXWyCLjfWxD5KtVbQlN2aJATtds=",
1268
+ "bafkr4iftg4vvqtoa35woov72ip2ftsq7braybiehmlf7uqoqelfcj5r5t4": "NQ==",
1269
+ "bafkr4ifu66s6es762lpqyrptny4dttmcrzyvjhyrk7fyypojucvt3efhfq": "MjYuMA==",
1270
+ "baga6yaq6ebrzapaiindt7azale25vc2xpt7dtl5jzb43n36ds63rgidwcjbfy": "eyJlbWFpbCI6Im9jaG9jaW5jb0Bob3RtYWlsLmNvbSIsIm5hbWUiOiJBY3RvciAxIiwicGhvbmUiOiIrMTIzNDU2Nzg5MCJ9",
1271
+ "bafkr4iavftgsfxslkzbyzud5ob6jslpug6l3e2wjjxvrv36goeuhr44bea": "Q29sbGVjdGlvblYwLgMLaW5wdXQtMS50eHQLaW5wdXQtMi50eHQLaW5wdXQtMy50eHQ=",
1272
+ "bafkr4ihrjr6exiq5y4kln3apzyei4i3evjd3dvkydkdmg7stvcepkyym4u": "MTAuMA==",
1273
+ "bafkr4ihuzki6odihinndr2tbmj4xlmqixdpvwehzflkvwqstozujae5v3m": "MTAyNA==",
1274
+ "bafkr4idlk7mp7jirbusfqu57tnvdeulknuliswhqqvk6ssq4725gwqsqde": "MjA0OC4w",
1275
+ "baga6yaq6ebvbnj5u22gp3yr2jobs5oummvzoc4gsd2smvv5jr7phgm32suicu": "eyJhc3NldFR5cGUiOiJEYXRhYmFzZSIsImNvbnRhY3RJbmZvcm1hdGlvbiI6IlZpYSBBcHBUZWsgY29tbXVuaXR5IG9yIGFzc29jaWF0ZWQgcGFwZXIgYXV0aG9ycyIsImRlc2NyaXB0aW9uIjoiSW5wdXQgZGF0YSBhcyBhbiBpcm9oIGNvbGxlY3Rpb24gZm9yIHNpbXBsZSBleGFtcGxlLiIsImZvcm1hdCI6IkRhdGFzZXQgKENTViwgSlNPTiwgZXRjLikiLCJsaWNlbnNlIjoiQ3VzdG9tIExpY2Vuc2UgLSBSZWZlciB0byB0aGUgb2ZmaWNpYWwgc2l0ZSBmb3IgdGVybXMuIiwibGljZW5zZUxpbmsiOiJodHRwczovL2FwcHRlay5jb20vcmxoZi1jbGltYXRlLWZlZWRiYWNrLWxpY2Vuc2UiLCJsb2NhdGlvbiI6Imh0dHBzOi8vYXBwdGVrLmNvbS9ybGhmLWNsaW1hdGUtZmVlZGJhY2stZGF0YSIsIm5hbWUiOiJJbnB1dCIsInBhcGVyVXJsIjoiaHR0cHM6Ly9ybGhmY2xpbWF0ZWRhdGEuYXBwdGVrLmNvbS8iLCJwcm9qZWN0IjoiRVFUWSBDbGltYXRlR1BUIiwic291cmNlIjoiR2l0SHViIiwic291cmNlTGluayI6Imh0dHBzOi8vZ2l0aHViLmNvbS9hcHB0ZWsvcmxoZi1jbGltYXRlLWZlZWRiYWNrIiwic291cmNlU3lzdGVtIjoiQXBwVGVrIFJlcG9zaXRvcnkiLCJzb3VyY2VUeXBlIjoiSW50ZXJuYWwiLCJzdGF0dXMiOiJBY3RpdmUifQ==",
1276
+ "bafkr4iaeo5bcvy23ohr6dhx4726wuvlsed27zrsmpif442ervbs7j42ihe": "Q29sbGVjdGlvblYwLgEKY29tcHV0ZS5weQ==",
1277
+ "bafkr4ifima4yqkiiepxdiwx56hbgncc7gjtdwiatm2feq6kvoiq4lzemma": "IyEvdXNyL2Jpbi9lbnYgcHl0aG9uMwoKIyBDaGF0R1BULTQgMTAvMzAvMjAyMzoKIyBgYGAKIyB3cml0ZSBhIHB5dGhvbiBzY3JpcHQgdGhhdCByZWFkcyBpbiAzIGZpbGVzICguL2lucHV0cy9pbnB1dC0xLnR4dCwgLi4pLCBlYWNoCiMgb2YgdGhlc2UgZmlsZXMgaGFzIGEgbnVtYmVyIGluIGl0LCB0aGUgc2NyaXB0IHNob3VsZCB3cml0ZSAzIGZpbGVzCiMgKC4vb3V0cHV0cy9vdXRwdXQtMi50eHQsIC4uKSBhbmQgZWFjaCBvZiB0aGVzZSBmaWxlcyBzaG91bGQgaGF2ZSBhIGRvdWJsZQojIG51bWJlciBjb3JyZXNwb25kaW5nIHRvIHRoZSBpbnB1dHMKIyBgYGBgCgojIERlZmluZSBpbnB1dCBhbmQgb3V0cHV0IGZpbGUgcGF0aHMKaW5wdXRfZmlsZXMgPSBbJ2lucHV0cy9pbnB1dC0xLnR4dCcsICdpbnB1dHMvaW5wdXQtMi50eHQnLCAnaW5wdXRzL2lucHV0LTMudHh0J10Kb3V0cHV0X2ZpbGVzID0gWydvdXRwdXRzL291dHB1dC0xLnR4dCcsICdvdXRwdXRzL291dHB1dC0yLnR4dCcsICdvdXRwdXRzL291dHB1dC0zLnR4dCddCgojIEZ1bmN0aW9uIHRvIGRvdWJsZSBhIG51bWJlcgpkZWYgZG91YmxlX251bWJlcihudW1iZXIpOgogICAgcmV0dXJuIG51bWJlciAqIDIKCiMgUHJvY2VzcyBlYWNoIGlucHV0IGZpbGUgYW5kIHdyaXRlIHRoZSBkb3VibGVkIG51bWJlciB0byB0aGUgY29ycmVzcG9uZGluZyBvdXRwdXQgZmlsZQpmb3IgaSBpbiByYW5nZSgzKToKICAgIGlucHV0X2ZpbGVfcGF0aCA9IGlucHV0X2ZpbGVzW2ldCiAgICBvdXRwdXRfZmlsZV9wYXRoID0gb3V0cHV0X2ZpbGVzW2ldCgogICAgdHJ5OgogICAgICAgICMgUmVhZCB0aGUgbnVtYmVyIGZyb20gdGhlIGlucHV0IGZpbGUKICAgICAgICB3aXRoIG9wZW4oaW5wdXRfZmlsZV9wYXRoLCAncicpIGFzIGlucHV0X2ZpbGU6CiAgICAgICAgICAgIG51bWJlciA9IGZsb2F0KGlucHV0X2ZpbGUucmVhZCgpKQoKICAgICAgICAjIERvdWJsZSB0aGUgbnVtYmVyCiAgICAgICAgZG91YmxlZF9udW1iZXIgPSBkb3VibGVfbnVtYmVyKG51bWJlcikKCiAgICAgICAgIyBXcml0ZSB0aGUgZG91YmxlZCBudW1iZXIgdG8gdGhlIG91dHB1dCBmaWxlCiAgICAgICAgd2l0aCBvcGVuKG91dHB1dF9maWxlX3BhdGgsICd3JykgYXMgb3V0cHV0X2ZpbGU6CiAgICAgICAgICAgIG91dHB1dF9maWxlLndyaXRlKHN0cihkb3VibGVkX251bWJlcikpCgogICAgICAgIHByaW50KGYnRG91YmxlZCB0aGUgbnVtYmVyIGZyb20ge2lucHV0X2ZpbGVfcGF0aH0gYW5kIHdyb3RlIGl0IHRvIHtvdXRwdXRfZmlsZV9wYXRofScpCgogICAgZXhjZXB0IEZpbGVOb3RGb3VuZEVycm9yOgogICAgICAgIHByaW50KGYnRmlsZSBub3QgZm91bmQ6IHtpbnB1dF9maWxlX3BhdGh9JykKICAgIGV4Y2VwdCBWYWx1ZUVycm9yOgogICAgICAgIHByaW50KGYnSW52YWxpZCBudW1iZXIgaW4ge2lucHV0X2ZpbGVfcGF0aH0nKQoKcHJpbnQoJ1Byb2Nlc3NpbmcgY29tcGxldGUuJyk=",
1278
+ "bafkr4iano4qsksgtco24ozy5s75k4elwegkxaip7b3r7ckwbjuj64vp4zy": "Q29sbGVjdGlvblYwLgMMb3V0cHV0LTEudHh0DG91dHB1dC0yLnR4dAxvdXRwdXQtMy50eHQ=",
1279
+ "bagaachraujacpvucpnytnyt5wabus5sqqlzq2w4i2h5qgbanc4xarbjcaska": "DXchJUjTE7XHZx2X+q4RdiGVcCH/DuPxKsFNE+5V/M7xTHxLoh3HFLbsD84IjiNkqkex1VgahsN+U6iI9WMM5bT3peJL/tLfDEXzbjg5zYKOcVSfEVfLjD3JoKs9kKcsa1fY/6URDSRYU7+bajJRam0WiVjwhVXpShz+umtCUBk=",
1280
+ "bagaachra64lf2onmrsxmqrfi4xj7vhjgcr6an4hjk4fzdxngkfwo7noozzya": "BHdCKuNbcePhnvz+vWpVciD1/MZMegvOaJGoZfTzSDmoYDmIKQgj7jRa/fHCZohfMmY7IBNmikh5VXIhxeSMYA==",
1281
+ "baga6yaq6ebhrbbbrr4fktdm63akxtbdi2eycyjwjjkrbtdg6j4gqysneiakcc": "eyJhc3NldFR5cGUiOiJEYXRhc2V0IiwiY2l0YXRpb25JbmZvcm1hdGlvbiI6IiIsImNvbnNpZGVyYXRpb25zIjoiIiwiY29udGFjdEluZm9ybWF0aW9uIjoiVmlhIEFwcFRlayBjb21tdW5pdHkgb3IgYXNzb2NpYXRlZCBwYXBlciBhdXRob3JzIiwiZGVzY3JpcHRpb24iOiJPdXRwdXQgZGF0YSBjb2xsZWN0aW9uIGZvciBzaW1wbGUgZXhhbXBsZS4iLCJmb3JtYXQiOiJEYXRhc2V0IChDU1YsIEpTT04sIGV0Yy4pIiwibGljZW5zZSI6IkN1c3RvbSBMaWNlbnNlIC0gUmVmZXIgdG8gdGhlIG9mZmljaWFsIHNpdGUgZm9yIHRlcm1zLiIsImxpY2Vuc2VMaW5rIjoiaHR0cHM6Ly9hcHB0ZWsuY29tL3JsaGYtY2xpbWF0ZS1mZWVkYmFjay1saWNlbnNlIiwibG9jYXRpb24iOiJodHRwczovL2FwcHRlay5jb20vcmxoZi1jbGltYXRlLWZlZWRiYWNrLWRhdGEiLCJuYW1lIjoiT3V0cHV0IiwicGFwZXJVcmwiOiJodHRwczovL3JsaGZjbGltYXRlZGF0YS5hcHB0ZWsuY29tLyIsInByb2plY3QiOiJFUVRZIENsaW1hdGVHUFQiLCJzb3VyY2UiOiJHaXRIdWIiLCJzb3VyY2VMaW5rIjoiaHR0cHM6Ly9naXRodWIuY29tL2FwcHRlay9ybGhmLWNsaW1hdGUtZmVlZGJhY2siLCJzb3VyY2VTeXN0ZW0iOiJBcHBUZWsgUmVwb3NpdG9yeSIsInNvdXJjZVR5cGUiOiJJbnRlcm5hbCIsInN0YXR1cyI6IkFjdGl2ZSJ9",
1282
+ "bafkr4igiajlwl6dw6gtu424zpdhnlgefhs4jbmvg2nvalr4zcm5pqhd7qe": "MTM=",
1283
+ "baga6yaq6eaqecbedewkv3p7uvuzzzkhaqvgm23rodczoubc4l27doe5o4f5oc": "eyJkZXNjcmlwdGlvbiI6IkNvbXB1dGF0aW9uIGZvciBzaW1wbGUgZXhhbXBsZS4iLCJuYW1lIjoiQ29tcHV0ZSIsIm5hbWVzcGFjZSI6InNpbXBsZS1pcm9oLWNvbGxlY3Rpb25zIiwidHlwZSI6IkNvbXB1dGF0aW9uIn0="
1284
+ }
1285
+ }