@aztec/txe 0.0.1-commit.9b94fc1 → 0.0.1-commit.9ee6fcc6

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 (78) hide show
  1. package/dest/constants.d.ts +3 -0
  2. package/dest/constants.d.ts.map +1 -0
  3. package/dest/constants.js +2 -0
  4. package/dest/index.d.ts +1 -1
  5. package/dest/index.d.ts.map +1 -1
  6. package/dest/index.js +91 -56
  7. package/dest/oracle/interfaces.d.ts +33 -29
  8. package/dest/oracle/interfaces.d.ts.map +1 -1
  9. package/dest/oracle/txe_oracle_public_context.d.ts +16 -16
  10. package/dest/oracle/txe_oracle_public_context.d.ts.map +1 -1
  11. package/dest/oracle/txe_oracle_public_context.js +20 -22
  12. package/dest/oracle/txe_oracle_top_level_context.d.ts +37 -27
  13. package/dest/oracle/txe_oracle_top_level_context.d.ts.map +1 -1
  14. package/dest/oracle/txe_oracle_top_level_context.js +211 -98
  15. package/dest/rpc_translator.d.ts +96 -79
  16. package/dest/rpc_translator.d.ts.map +1 -1
  17. package/dest/rpc_translator.js +362 -173
  18. package/dest/state_machine/archiver.d.ts +21 -52
  19. package/dest/state_machine/archiver.d.ts.map +1 -1
  20. package/dest/state_machine/archiver.js +66 -99
  21. package/dest/state_machine/dummy_p2p_client.d.ts +20 -15
  22. package/dest/state_machine/dummy_p2p_client.d.ts.map +1 -1
  23. package/dest/state_machine/dummy_p2p_client.js +42 -25
  24. package/dest/state_machine/global_variable_builder.d.ts +6 -5
  25. package/dest/state_machine/global_variable_builder.d.ts.map +1 -1
  26. package/dest/state_machine/global_variable_builder.js +13 -1
  27. package/dest/state_machine/index.d.ts +9 -7
  28. package/dest/state_machine/index.d.ts.map +1 -1
  29. package/dest/state_machine/index.js +44 -23
  30. package/dest/state_machine/mock_epoch_cache.d.ts +25 -8
  31. package/dest/state_machine/mock_epoch_cache.d.ts.map +1 -1
  32. package/dest/state_machine/mock_epoch_cache.js +46 -9
  33. package/dest/state_machine/synchronizer.d.ts +6 -5
  34. package/dest/state_machine/synchronizer.d.ts.map +1 -1
  35. package/dest/state_machine/synchronizer.js +8 -7
  36. package/dest/txe_session.d.ts +27 -15
  37. package/dest/txe_session.d.ts.map +1 -1
  38. package/dest/txe_session.js +170 -55
  39. package/dest/util/encoding.d.ts +686 -19
  40. package/dest/util/encoding.d.ts.map +1 -1
  41. package/dest/util/encoding.js +1 -1
  42. package/dest/util/txe_account_store.d.ts +10 -0
  43. package/dest/util/txe_account_store.d.ts.map +1 -0
  44. package/dest/util/{txe_account_data_provider.js → txe_account_store.js} +1 -1
  45. package/dest/util/txe_public_contract_data_source.d.ts +8 -8
  46. package/dest/util/txe_public_contract_data_source.d.ts.map +1 -1
  47. package/dest/util/txe_public_contract_data_source.js +13 -32
  48. package/dest/utils/block_creation.d.ts +21 -6
  49. package/dest/utils/block_creation.d.ts.map +1 -1
  50. package/dest/utils/block_creation.js +38 -4
  51. package/dest/utils/tx_effect_creation.d.ts +3 -3
  52. package/dest/utils/tx_effect_creation.d.ts.map +1 -1
  53. package/dest/utils/tx_effect_creation.js +4 -7
  54. package/package.json +18 -18
  55. package/src/constants.ts +3 -0
  56. package/src/index.ts +103 -63
  57. package/src/oracle/interfaces.ts +36 -32
  58. package/src/oracle/txe_oracle_public_context.ts +21 -28
  59. package/src/oracle/txe_oracle_top_level_context.ts +256 -138
  60. package/src/rpc_translator.ts +419 -191
  61. package/src/state_machine/archiver.ts +62 -117
  62. package/src/state_machine/dummy_p2p_client.ts +58 -33
  63. package/src/state_machine/global_variable_builder.ts +21 -4
  64. package/src/state_machine/index.ts +65 -21
  65. package/src/state_machine/mock_epoch_cache.ts +57 -14
  66. package/src/state_machine/synchronizer.ts +9 -8
  67. package/src/txe_session.ts +236 -104
  68. package/src/util/encoding.ts +1 -1
  69. package/src/util/{txe_account_data_provider.ts → txe_account_store.ts} +1 -1
  70. package/src/util/txe_public_contract_data_source.ts +20 -47
  71. package/src/utils/block_creation.ts +49 -15
  72. package/src/utils/tx_effect_creation.ts +5 -12
  73. package/dest/util/txe_account_data_provider.d.ts +0 -10
  74. package/dest/util/txe_account_data_provider.d.ts.map +0 -1
  75. package/dest/util/txe_contract_data_provider.d.ts +0 -12
  76. package/dest/util/txe_contract_data_provider.d.ts.map +0 -1
  77. package/dest/util/txe_contract_data_provider.js +0 -22
  78. package/src/util/txe_contract_data_provider.ts +0 -36
@@ -1,5 +1,5 @@
1
+ import { Fr } from '@aztec/foundation/curves/bn254';
1
2
  import type { EthAddress } from '@aztec/foundation/eth-address';
2
- import { Fr } from '@aztec/foundation/fields';
3
3
  import { type ContractArtifact } from '@aztec/stdlib/abi';
4
4
  import { AztecAddress } from '@aztec/stdlib/aztec-address';
5
5
  import { type ContractInstanceWithAddress } from '@aztec/stdlib/contract';
@@ -55,29 +55,696 @@ export declare function toForeignCallResult(obj: (ForeignCallSingle | ForeignCal
55
55
  };
56
56
  export declare const ForeignCallSingleSchema: z.ZodString;
57
57
  export declare const ForeignCallArraySchema: z.ZodArray<z.ZodString, "many">;
58
- export declare const ForeignCallArgsSchema: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, import("../../../foundation/dest/schemas/types.js").ZodFor<ContractArtifact>, z.ZodIntersection<z.ZodObject<{
58
+ export declare const ForeignCallArgsSchema: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodObject<{
59
+ name: z.ZodString;
60
+ functions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
61
+ name: z.ZodString;
62
+ functionType: z.ZodNativeEnum<typeof import("@aztec/stdlib/abi").FunctionType>;
63
+ isOnlySelf: z.ZodBoolean;
64
+ isStatic: z.ZodBoolean;
65
+ isInitializer: z.ZodBoolean;
66
+ parameters: z.ZodArray<z.ZodObject<{
67
+ name: z.ZodString;
68
+ type: z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>;
69
+ visibility: z.ZodEnum<["public", "private", "databus"]>;
70
+ }, "strip", z.ZodTypeAny, {
71
+ name: string;
72
+ type: import("@aztec/stdlib/abi").AbiType;
73
+ visibility: "databus" | "private" | "public";
74
+ }, {
75
+ name: string;
76
+ type: import("@aztec/stdlib/abi").AbiType;
77
+ visibility: "databus" | "private" | "public";
78
+ }>, "many">;
79
+ returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
80
+ errorTypes: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodObject<{
81
+ error_kind: z.ZodLiteral<"string">;
82
+ string: z.ZodString;
83
+ }, "strip", z.ZodTypeAny, {
84
+ error_kind: "string";
85
+ string: string;
86
+ }, {
87
+ error_kind: "string";
88
+ string: string;
89
+ }>, z.ZodObject<{
90
+ error_kind: z.ZodLiteral<"fmtstring">;
91
+ length: z.ZodNumber;
92
+ item_types: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
93
+ }, "strip", z.ZodTypeAny, {
94
+ error_kind: "fmtstring";
95
+ length: number;
96
+ item_types: import("@aztec/stdlib/abi").AbiType[];
97
+ }, {
98
+ error_kind: "fmtstring";
99
+ length: number;
100
+ item_types: import("@aztec/stdlib/abi").AbiType[];
101
+ }>, z.ZodIntersection<z.ZodObject<{
102
+ error_kind: z.ZodLiteral<"custom">;
103
+ }, "strip", z.ZodTypeAny, {
104
+ error_kind: "custom";
105
+ }, {
106
+ error_kind: "custom";
107
+ }>, z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>>]>>>;
108
+ }, "strip", z.ZodTypeAny, {
109
+ name: string;
110
+ functionType: import("@aztec/stdlib/abi").FunctionType;
111
+ isOnlySelf: boolean;
112
+ isStatic: boolean;
113
+ isInitializer: boolean;
114
+ parameters: {
115
+ name: string;
116
+ type: import("@aztec/stdlib/abi").AbiType;
117
+ visibility: "databus" | "private" | "public";
118
+ }[];
119
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
120
+ errorTypes: Record<string, {
121
+ error_kind: "string";
122
+ string: string;
123
+ } | {
124
+ error_kind: "fmtstring";
125
+ length: number;
126
+ item_types: import("@aztec/stdlib/abi").AbiType[];
127
+ } | ({
128
+ error_kind: "custom";
129
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
130
+ }, {
131
+ name: string;
132
+ functionType: import("@aztec/stdlib/abi").FunctionType;
133
+ isOnlySelf: boolean;
134
+ isStatic: boolean;
135
+ isInitializer: boolean;
136
+ parameters: {
137
+ name: string;
138
+ type: import("@aztec/stdlib/abi").AbiType;
139
+ visibility: "databus" | "private" | "public";
140
+ }[];
141
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
142
+ errorTypes: Record<string, {
143
+ error_kind: "string";
144
+ string: string;
145
+ } | {
146
+ error_kind: "fmtstring";
147
+ length: number;
148
+ item_types: import("@aztec/stdlib/abi").AbiType[];
149
+ } | ({
150
+ error_kind: "custom";
151
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
152
+ }>, z.ZodObject<{
153
+ bytecode: import("@aztec/foundation/schemas").ZodFor<Buffer<ArrayBufferLike>>;
154
+ verificationKey: z.ZodOptional<z.ZodString>;
155
+ debugSymbols: z.ZodString;
156
+ debug: z.ZodOptional<z.ZodObject<{
157
+ debugSymbols: z.ZodObject<{
158
+ location_tree: z.ZodObject<{
159
+ locations: z.ZodArray<z.ZodObject<{
160
+ parent: z.ZodNullable<z.ZodNumber>;
161
+ value: z.ZodObject<{
162
+ span: z.ZodObject<{
163
+ start: z.ZodNumber;
164
+ end: z.ZodNumber;
165
+ }, "strip", z.ZodTypeAny, {
166
+ start: number;
167
+ end: number;
168
+ }, {
169
+ start: number;
170
+ end: number;
171
+ }>;
172
+ file: z.ZodNumber;
173
+ }, "strip", z.ZodTypeAny, {
174
+ span: {
175
+ start: number;
176
+ end: number;
177
+ };
178
+ file: number;
179
+ }, {
180
+ span: {
181
+ start: number;
182
+ end: number;
183
+ };
184
+ file: number;
185
+ }>;
186
+ }, "strip", z.ZodTypeAny, {
187
+ parent: number | null;
188
+ value: {
189
+ span: {
190
+ start: number;
191
+ end: number;
192
+ };
193
+ file: number;
194
+ };
195
+ }, {
196
+ parent: number | null;
197
+ value: {
198
+ span: {
199
+ start: number;
200
+ end: number;
201
+ };
202
+ file: number;
203
+ };
204
+ }>, "many">;
205
+ }, "strip", z.ZodTypeAny, {
206
+ locations: {
207
+ parent: number | null;
208
+ value: {
209
+ span: {
210
+ start: number;
211
+ end: number;
212
+ };
213
+ file: number;
214
+ };
215
+ }[];
216
+ }, {
217
+ locations: {
218
+ parent: number | null;
219
+ value: {
220
+ span: {
221
+ start: number;
222
+ end: number;
223
+ };
224
+ file: number;
225
+ };
226
+ }[];
227
+ }>;
228
+ acir_locations: z.ZodRecord<z.ZodString, z.ZodNumber>;
229
+ brillig_locations: z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodNumber>>;
230
+ }, "strip", z.ZodTypeAny, {
231
+ location_tree: {
232
+ locations: {
233
+ parent: number | null;
234
+ value: {
235
+ span: {
236
+ start: number;
237
+ end: number;
238
+ };
239
+ file: number;
240
+ };
241
+ }[];
242
+ };
243
+ acir_locations: Record<string, number>;
244
+ brillig_locations: Record<string, Record<string, number>>;
245
+ }, {
246
+ location_tree: {
247
+ locations: {
248
+ parent: number | null;
249
+ value: {
250
+ span: {
251
+ start: number;
252
+ end: number;
253
+ };
254
+ file: number;
255
+ };
256
+ }[];
257
+ };
258
+ acir_locations: Record<string, number>;
259
+ brillig_locations: Record<string, Record<string, number>>;
260
+ }>;
261
+ files: z.ZodRecord<z.ZodString, z.ZodObject<{
262
+ source: z.ZodString;
263
+ path: z.ZodString;
264
+ function_locations: z.ZodArray<z.ZodObject<{
265
+ start: z.ZodNumber;
266
+ name: z.ZodString;
267
+ }, "strip", z.ZodTypeAny, {
268
+ start: number;
269
+ name: string;
270
+ }, {
271
+ start: number;
272
+ name: string;
273
+ }>, "many">;
274
+ }, "strip", z.ZodTypeAny, {
275
+ source: string;
276
+ path: string;
277
+ function_locations: {
278
+ start: number;
279
+ name: string;
280
+ }[];
281
+ }, {
282
+ source: string;
283
+ path: string;
284
+ function_locations: {
285
+ start: number;
286
+ name: string;
287
+ }[];
288
+ }>>;
289
+ }, "strip", z.ZodTypeAny, {
290
+ debugSymbols: {
291
+ location_tree: {
292
+ locations: {
293
+ parent: number | null;
294
+ value: {
295
+ span: {
296
+ start: number;
297
+ end: number;
298
+ };
299
+ file: number;
300
+ };
301
+ }[];
302
+ };
303
+ acir_locations: Record<string, number>;
304
+ brillig_locations: Record<string, Record<string, number>>;
305
+ };
306
+ files: Record<string, {
307
+ source: string;
308
+ path: string;
309
+ function_locations: {
310
+ start: number;
311
+ name: string;
312
+ }[];
313
+ }>;
314
+ }, {
315
+ debugSymbols: {
316
+ location_tree: {
317
+ locations: {
318
+ parent: number | null;
319
+ value: {
320
+ span: {
321
+ start: number;
322
+ end: number;
323
+ };
324
+ file: number;
325
+ };
326
+ }[];
327
+ };
328
+ acir_locations: Record<string, number>;
329
+ brillig_locations: Record<string, Record<string, number>>;
330
+ };
331
+ files: Record<string, {
332
+ source: string;
333
+ path: string;
334
+ function_locations: {
335
+ start: number;
336
+ name: string;
337
+ }[];
338
+ }>;
339
+ }>>;
340
+ }, "strip", z.ZodTypeAny, {
341
+ bytecode: Buffer<ArrayBufferLike>;
342
+ verificationKey?: string | undefined;
343
+ debugSymbols: string;
344
+ debug?: {
345
+ debugSymbols: {
346
+ location_tree: {
347
+ locations: {
348
+ parent: number | null;
349
+ value: {
350
+ span: {
351
+ start: number;
352
+ end: number;
353
+ };
354
+ file: number;
355
+ };
356
+ }[];
357
+ };
358
+ acir_locations: Record<string, number>;
359
+ brillig_locations: Record<string, Record<string, number>>;
360
+ };
361
+ files: Record<string, {
362
+ source: string;
363
+ path: string;
364
+ function_locations: {
365
+ start: number;
366
+ name: string;
367
+ }[];
368
+ }>;
369
+ } | undefined;
370
+ }, {
371
+ bytecode?: any;
372
+ verificationKey?: string | undefined;
373
+ debugSymbols: string;
374
+ debug?: {
375
+ debugSymbols: {
376
+ location_tree: {
377
+ locations: {
378
+ parent: number | null;
379
+ value: {
380
+ span: {
381
+ start: number;
382
+ end: number;
383
+ };
384
+ file: number;
385
+ };
386
+ }[];
387
+ };
388
+ acir_locations: Record<string, number>;
389
+ brillig_locations: Record<string, Record<string, number>>;
390
+ };
391
+ files: Record<string, {
392
+ source: string;
393
+ path: string;
394
+ function_locations: {
395
+ start: number;
396
+ name: string;
397
+ }[];
398
+ }>;
399
+ } | undefined;
400
+ }>>, "many">;
401
+ nonDispatchPublicFunctions: z.ZodArray<z.ZodObject<{
402
+ name: z.ZodString;
403
+ functionType: z.ZodNativeEnum<typeof import("@aztec/stdlib/abi").FunctionType>;
404
+ isOnlySelf: z.ZodBoolean;
405
+ isStatic: z.ZodBoolean;
406
+ isInitializer: z.ZodBoolean;
407
+ parameters: z.ZodArray<z.ZodObject<{
408
+ name: z.ZodString;
409
+ type: z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>;
410
+ visibility: z.ZodEnum<["public", "private", "databus"]>;
411
+ }, "strip", z.ZodTypeAny, {
412
+ name: string;
413
+ type: import("@aztec/stdlib/abi").AbiType;
414
+ visibility: "databus" | "private" | "public";
415
+ }, {
416
+ name: string;
417
+ type: import("@aztec/stdlib/abi").AbiType;
418
+ visibility: "databus" | "private" | "public";
419
+ }>, "many">;
420
+ returnTypes: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
421
+ errorTypes: z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodObject<{
422
+ error_kind: z.ZodLiteral<"string">;
423
+ string: z.ZodString;
424
+ }, "strip", z.ZodTypeAny, {
425
+ error_kind: "string";
426
+ string: string;
427
+ }, {
428
+ error_kind: "string";
429
+ string: string;
430
+ }>, z.ZodObject<{
431
+ error_kind: z.ZodLiteral<"fmtstring">;
432
+ length: z.ZodNumber;
433
+ item_types: z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">;
434
+ }, "strip", z.ZodTypeAny, {
435
+ error_kind: "fmtstring";
436
+ length: number;
437
+ item_types: import("@aztec/stdlib/abi").AbiType[];
438
+ }, {
439
+ error_kind: "fmtstring";
440
+ length: number;
441
+ item_types: import("@aztec/stdlib/abi").AbiType[];
442
+ }>, z.ZodIntersection<z.ZodObject<{
443
+ error_kind: z.ZodLiteral<"custom">;
444
+ }, "strip", z.ZodTypeAny, {
445
+ error_kind: "custom";
446
+ }, {
447
+ error_kind: "custom";
448
+ }>, z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>>]>>>;
449
+ }, "strip", z.ZodTypeAny, {
450
+ name: string;
451
+ functionType: import("@aztec/stdlib/abi").FunctionType;
452
+ isOnlySelf: boolean;
453
+ isStatic: boolean;
454
+ isInitializer: boolean;
455
+ parameters: {
456
+ name: string;
457
+ type: import("@aztec/stdlib/abi").AbiType;
458
+ visibility: "databus" | "private" | "public";
459
+ }[];
460
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
461
+ errorTypes: Record<string, {
462
+ error_kind: "string";
463
+ string: string;
464
+ } | {
465
+ error_kind: "fmtstring";
466
+ length: number;
467
+ item_types: import("@aztec/stdlib/abi").AbiType[];
468
+ } | ({
469
+ error_kind: "custom";
470
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
471
+ }, {
472
+ name: string;
473
+ functionType: import("@aztec/stdlib/abi").FunctionType;
474
+ isOnlySelf: boolean;
475
+ isStatic: boolean;
476
+ isInitializer: boolean;
477
+ parameters: {
478
+ name: string;
479
+ type: import("@aztec/stdlib/abi").AbiType;
480
+ visibility: "databus" | "private" | "public";
481
+ }[];
482
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
483
+ errorTypes: Record<string, {
484
+ error_kind: "string";
485
+ string: string;
486
+ } | {
487
+ error_kind: "fmtstring";
488
+ length: number;
489
+ item_types: import("@aztec/stdlib/abi").AbiType[];
490
+ } | ({
491
+ error_kind: "custom";
492
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
493
+ }>, "many">;
494
+ outputs: z.ZodObject<{
495
+ structs: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiType, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiType>, "many">>, Record<string, import("@aztec/stdlib/abi").AbiType[]>, Record<string, import("@aztec/stdlib/abi").AbiType[]>>;
496
+ globals: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodType<import("@aztec/stdlib/abi").AbiValue, z.ZodTypeDef, import("@aztec/stdlib/abi").AbiValue>, "many">>;
497
+ }, "strip", z.ZodTypeAny, {
498
+ structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
499
+ globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
500
+ }, {
501
+ structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
502
+ globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
503
+ }>;
504
+ storageLayout: z.ZodRecord<z.ZodString, z.ZodObject<{
505
+ slot: z.ZodType<Fr, any, string>;
506
+ }, "strip", z.ZodTypeAny, {
507
+ slot: Fr;
508
+ }, {
509
+ slot: string;
510
+ }>>;
511
+ fileMap: z.ZodRecord<z.ZodNumber, z.ZodObject<{
512
+ source: z.ZodString;
513
+ path: z.ZodString;
514
+ function_locations: z.ZodArray<z.ZodObject<{
515
+ start: z.ZodNumber;
516
+ name: z.ZodString;
517
+ }, "strip", z.ZodTypeAny, {
518
+ start: number;
519
+ name: string;
520
+ }, {
521
+ start: number;
522
+ name: string;
523
+ }>, "many">;
524
+ }, "strip", z.ZodTypeAny, {
525
+ source: string;
526
+ path: string;
527
+ function_locations: {
528
+ start: number;
529
+ name: string;
530
+ }[];
531
+ }, {
532
+ source: string;
533
+ path: string;
534
+ function_locations: {
535
+ start: number;
536
+ name: string;
537
+ }[];
538
+ }>>;
539
+ }, "strip", z.ZodTypeAny, {
540
+ name: string;
541
+ functions: ({
542
+ name: string;
543
+ functionType: import("@aztec/stdlib/abi").FunctionType;
544
+ isOnlySelf: boolean;
545
+ isStatic: boolean;
546
+ isInitializer: boolean;
547
+ parameters: {
548
+ name: string;
549
+ type: import("@aztec/stdlib/abi").AbiType;
550
+ visibility: "databus" | "private" | "public";
551
+ }[];
552
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
553
+ errorTypes: Record<string, {
554
+ error_kind: "string";
555
+ string: string;
556
+ } | {
557
+ error_kind: "fmtstring";
558
+ length: number;
559
+ item_types: import("@aztec/stdlib/abi").AbiType[];
560
+ } | ({
561
+ error_kind: "custom";
562
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
563
+ } & {
564
+ bytecode: Buffer<ArrayBufferLike>;
565
+ verificationKey?: string | undefined;
566
+ debugSymbols: string;
567
+ debug?: {
568
+ debugSymbols: {
569
+ location_tree: {
570
+ locations: {
571
+ parent: number | null;
572
+ value: {
573
+ span: {
574
+ start: number;
575
+ end: number;
576
+ };
577
+ file: number;
578
+ };
579
+ }[];
580
+ };
581
+ acir_locations: Record<string, number>;
582
+ brillig_locations: Record<string, Record<string, number>>;
583
+ };
584
+ files: Record<string, {
585
+ source: string;
586
+ path: string;
587
+ function_locations: {
588
+ start: number;
589
+ name: string;
590
+ }[];
591
+ }>;
592
+ } | undefined;
593
+ })[];
594
+ nonDispatchPublicFunctions: {
595
+ name: string;
596
+ functionType: import("@aztec/stdlib/abi").FunctionType;
597
+ isOnlySelf: boolean;
598
+ isStatic: boolean;
599
+ isInitializer: boolean;
600
+ parameters: {
601
+ name: string;
602
+ type: import("@aztec/stdlib/abi").AbiType;
603
+ visibility: "databus" | "private" | "public";
604
+ }[];
605
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
606
+ errorTypes: Record<string, {
607
+ error_kind: "string";
608
+ string: string;
609
+ } | {
610
+ error_kind: "fmtstring";
611
+ length: number;
612
+ item_types: import("@aztec/stdlib/abi").AbiType[];
613
+ } | ({
614
+ error_kind: "custom";
615
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
616
+ }[];
617
+ outputs: {
618
+ structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
619
+ globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
620
+ };
621
+ storageLayout: Record<string, {
622
+ slot: Fr;
623
+ }>;
624
+ fileMap: Record<number, {
625
+ source: string;
626
+ path: string;
627
+ function_locations: {
628
+ start: number;
629
+ name: string;
630
+ }[];
631
+ }>;
632
+ }, {
633
+ name: string;
634
+ functions: ({
635
+ name: string;
636
+ functionType: import("@aztec/stdlib/abi").FunctionType;
637
+ isOnlySelf: boolean;
638
+ isStatic: boolean;
639
+ isInitializer: boolean;
640
+ parameters: {
641
+ name: string;
642
+ type: import("@aztec/stdlib/abi").AbiType;
643
+ visibility: "databus" | "private" | "public";
644
+ }[];
645
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
646
+ errorTypes: Record<string, {
647
+ error_kind: "string";
648
+ string: string;
649
+ } | {
650
+ error_kind: "fmtstring";
651
+ length: number;
652
+ item_types: import("@aztec/stdlib/abi").AbiType[];
653
+ } | ({
654
+ error_kind: "custom";
655
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
656
+ } & {
657
+ bytecode?: any;
658
+ verificationKey?: string | undefined;
659
+ debugSymbols: string;
660
+ debug?: {
661
+ debugSymbols: {
662
+ location_tree: {
663
+ locations: {
664
+ parent: number | null;
665
+ value: {
666
+ span: {
667
+ start: number;
668
+ end: number;
669
+ };
670
+ file: number;
671
+ };
672
+ }[];
673
+ };
674
+ acir_locations: Record<string, number>;
675
+ brillig_locations: Record<string, Record<string, number>>;
676
+ };
677
+ files: Record<string, {
678
+ source: string;
679
+ path: string;
680
+ function_locations: {
681
+ start: number;
682
+ name: string;
683
+ }[];
684
+ }>;
685
+ } | undefined;
686
+ })[];
687
+ nonDispatchPublicFunctions: {
688
+ name: string;
689
+ functionType: import("@aztec/stdlib/abi").FunctionType;
690
+ isOnlySelf: boolean;
691
+ isStatic: boolean;
692
+ isInitializer: boolean;
693
+ parameters: {
694
+ name: string;
695
+ type: import("@aztec/stdlib/abi").AbiType;
696
+ visibility: "databus" | "private" | "public";
697
+ }[];
698
+ returnTypes: import("@aztec/stdlib/abi").AbiType[];
699
+ errorTypes: Record<string, {
700
+ error_kind: "string";
701
+ string: string;
702
+ } | {
703
+ error_kind: "fmtstring";
704
+ length: number;
705
+ item_types: import("@aztec/stdlib/abi").AbiType[];
706
+ } | ({
707
+ error_kind: "custom";
708
+ } & import("@aztec/stdlib/abi").AbiType) | undefined>;
709
+ }[];
710
+ outputs: {
711
+ structs: Record<string, import("@aztec/stdlib/abi").AbiType[]>;
712
+ globals: Record<string, import("@aztec/stdlib/abi").AbiValue[]>;
713
+ };
714
+ storageLayout: Record<string, {
715
+ slot: string;
716
+ }>;
717
+ fileMap: Record<number, {
718
+ source: string;
719
+ path: string;
720
+ function_locations: {
721
+ start: number;
722
+ name: string;
723
+ }[];
724
+ }>;
725
+ }>, z.ZodIntersection<z.ZodObject<{
59
726
  version: z.ZodLiteral<1>;
60
- salt: import("../../../foundation/dest/schemas/types.js").ZodFor<Fr>;
61
- deployer: import("../../../foundation/dest/schemas/types.js").ZodFor<AztecAddress>;
62
- currentContractClassId: import("../../../foundation/dest/schemas/types.js").ZodFor<Fr>;
63
- originalContractClassId: import("../../../foundation/dest/schemas/types.js").ZodFor<Fr>;
64
- initializationHash: import("../../../foundation/dest/schemas/types.js").ZodFor<Fr>;
727
+ salt: import("@aztec/foundation/schemas").ZodFor<Fr>;
728
+ deployer: import("@aztec/foundation/schemas").ZodFor<AztecAddress>;
729
+ currentContractClassId: import("@aztec/foundation/schemas").ZodFor<Fr>;
730
+ originalContractClassId: import("@aztec/foundation/schemas").ZodFor<Fr>;
731
+ initializationHash: import("@aztec/foundation/schemas").ZodFor<Fr>;
65
732
  publicKeys: z.ZodEffects<z.ZodObject<{
66
- masterNullifierPublicKey: z.ZodType<import("@aztec/foundation/fields").Point, any, string>;
67
- masterIncomingViewingPublicKey: z.ZodType<import("@aztec/foundation/fields").Point, any, string>;
68
- masterOutgoingViewingPublicKey: z.ZodType<import("@aztec/foundation/fields").Point, any, string>;
69
- masterTaggingPublicKey: z.ZodType<import("@aztec/foundation/fields").Point, any, string>;
733
+ masterNullifierPublicKey: z.ZodType<import("@aztec/foundation/schemas").Point, any, string>;
734
+ masterIncomingViewingPublicKey: z.ZodType<import("@aztec/foundation/schemas").Point, any, string>;
735
+ masterOutgoingViewingPublicKey: z.ZodType<import("@aztec/foundation/schemas").Point, any, string>;
736
+ masterTaggingPublicKey: z.ZodType<import("@aztec/foundation/schemas").Point, any, string>;
70
737
  }, "strip", z.ZodTypeAny, {
71
- masterNullifierPublicKey: import("@aztec/foundation/fields").Point;
72
- masterIncomingViewingPublicKey: import("@aztec/foundation/fields").Point;
73
- masterOutgoingViewingPublicKey: import("@aztec/foundation/fields").Point;
74
- masterTaggingPublicKey: import("@aztec/foundation/fields").Point;
738
+ masterNullifierPublicKey: import("@aztec/foundation/schemas").Point;
739
+ masterIncomingViewingPublicKey: import("@aztec/foundation/schemas").Point;
740
+ masterOutgoingViewingPublicKey: import("@aztec/foundation/schemas").Point;
741
+ masterTaggingPublicKey: import("@aztec/foundation/schemas").Point;
75
742
  }, {
76
743
  masterNullifierPublicKey: string;
77
744
  masterIncomingViewingPublicKey: string;
78
745
  masterOutgoingViewingPublicKey: string;
79
746
  masterTaggingPublicKey: string;
80
- }>, import("../../../stdlib/dest/keys/public_keys.js").PublicKeys, {
747
+ }>, import("@aztec/stdlib/keys").PublicKeys, {
81
748
  masterNullifierPublicKey: string;
82
749
  masterIncomingViewingPublicKey: string;
83
750
  masterOutgoingViewingPublicKey: string;
@@ -90,7 +757,7 @@ export declare const ForeignCallArgsSchema: z.ZodArray<z.ZodUnion<[z.ZodString,
90
757
  currentContractClassId: Fr;
91
758
  originalContractClassId: Fr;
92
759
  initializationHash: Fr;
93
- publicKeys: import("../../../stdlib/dest/keys/public_keys.js").PublicKeys;
760
+ publicKeys: import("@aztec/stdlib/keys").PublicKeys;
94
761
  }, {
95
762
  version: 1;
96
763
  salt?: any;
@@ -105,7 +772,7 @@ export declare const ForeignCallArgsSchema: z.ZodArray<z.ZodUnion<[z.ZodString,
105
772
  masterTaggingPublicKey: string;
106
773
  };
107
774
  }>, z.ZodObject<{
108
- address: import("../../../foundation/dest/schemas/types.js").ZodFor<AztecAddress>;
775
+ address: import("@aztec/foundation/schemas").ZodFor<AztecAddress>;
109
776
  }, "strip", z.ZodTypeAny, {
110
777
  address: AztecAddress;
111
778
  }, {
@@ -118,4 +785,4 @@ export declare const ForeignCallResultSchema: z.ZodObject<{
118
785
  }, {
119
786
  values: (string | string[])[];
120
787
  }>;
121
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW5jb2RpbmcuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy91dGlsL2VuY29kaW5nLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sS0FBSyxFQUFFLFVBQVUsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2hFLE9BQU8sRUFBRSxFQUFFLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUU5QyxPQUFPLEVBQUUsS0FBSyxnQkFBZ0IsRUFBMEIsTUFBTSxtQkFBbUIsQ0FBQztBQUNsRixPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDM0QsT0FBTyxFQUFFLEtBQUssMkJBQTJCLEVBQXFDLE1BQU0sd0JBQXdCLENBQUM7QUFFN0csT0FBTyxFQUFFLENBQUMsRUFBRSxNQUFNLEtBQUssQ0FBQztBQUV4QixNQUFNLE1BQU0saUJBQWlCLEdBQUcsTUFBTSxDQUFDO0FBRXZDLE1BQU0sTUFBTSxnQkFBZ0IsR0FBRyxNQUFNLEVBQUUsQ0FBQztBQUV4QyxNQUFNLE1BQU0sZUFBZSxHQUFHLENBQUMsaUJBQWlCLEdBQUcsZ0JBQWdCLEdBQUcsZ0JBQWdCLEdBQUcsMkJBQTJCLENBQUMsRUFBRSxDQUFDO0FBRXhILE1BQU0sTUFBTSxpQkFBaUIsR0FBRztJQUM5QixNQUFNLEVBQUUsQ0FBQyxpQkFBaUIsR0FBRyxnQkFBZ0IsQ0FBQyxFQUFFLENBQUM7Q0FDbEQsQ0FBQztBQUVGLHdCQUFnQixVQUFVLENBQUMsR0FBRyxFQUFFLGlCQUFpQixNQUVoRDtBQUVELHdCQUFnQixpQkFBaUIsQ0FBQyxHQUFHLEVBQUUsaUJBQWlCLGdCQUV2RDtBQUVELHdCQUFnQixTQUFTLENBQUMsR0FBRyxFQUFFLGdCQUFnQixRQUU5QztBQUVEOzs7O0dBSUc7QUFDSCx3QkFBZ0IsYUFBYSxDQUFDLEdBQUcsRUFBRSxnQkFBZ0IsRUFBRSxXQUFXLEVBQUUsTUFBTSxHQUFHLE1BQU0sQ0FNaEY7QUFFRDs7Ozs7Ozs7R0FRRztBQUNILHdCQUFnQixrQkFBa0IsQ0FBQyxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxFQUFFLGlCQUFpQixFQUFFLFdBQVcsRUFBRSxNQUFNLEdBQUcsTUFBTSxDQU9wSDtBQUlELHdCQUFnQixRQUFRLENBQ3RCLEtBQUssRUFBRSxZQUFZLEdBQUcsVUFBVSxHQUFHLEVBQUUsR0FBRyxNQUFNLEdBQUcsT0FBTyxHQUFHLE1BQU0sR0FBRyxNQUFNLEdBQ3pFLGlCQUFpQixDQVluQjtBQUVELHdCQUFnQixPQUFPLENBQUMsSUFBSSxFQUFFLEVBQUUsRUFBRSxHQUFHLGdCQUFnQixDQUVwRDtBQUVELHdCQUFnQixlQUFlLENBQUMsS0FBSyxFQUFFLEVBQUUsR0FBRyxFQUFFLEVBQUUscUJBRS9DO0FBRUQsd0JBQWdCLGVBQWUsQ0FBQyxNQUFNLEVBQUUsTUFBTSxHQUFHLGdCQUFnQixDQUVoRTtBQUVEOzs7Ozs7O0dBT0c7QUFDSCx3QkFBZ0IsaUJBQWlCLENBQy9CLFdBQVcsRUFBRSxnQkFBZ0IsRUFDN0IsTUFBTSxFQUFFLE1BQU0sR0FDYixDQUFDLGdCQUFnQixFQUFFLGlCQUFpQixDQUFDLENBWXZDO0FBRUQ7Ozs7OztHQU1HO0FBQ0gsd0JBQWdCLGlDQUFpQyxDQUMvQyxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUsRUFDL0IsTUFBTSxFQUFFLE1BQU0sRUFDZCxpQkFBaUIsRUFBRSxNQUFNLEdBQ3hCLENBQUMsZ0JBQWdCLEVBQUUsaUJBQWlCLENBQUMsQ0FxQnZDO0FBRUQsd0JBQWdCLG1CQUFtQixDQUFDLEdBQUcsRUFBRSxDQUFDLGlCQUFpQixHQUFHLGdCQUFnQixDQUFDLEVBQUU7O0VBRWhGO0FBRUQsZUFBTyxNQUFNLHVCQUF1QixhQUFhLENBQUM7QUFFbEQsZUFBTyxNQUFNLHNCQUFzQixpQ0FBc0IsQ0FBQztBQUUxRCxlQUFPLE1BQU0scUJBQXFCOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O2NBRWpDLENBQUM7QUFFRixlQUFPLE1BQU0sdUJBQXVCOzs7Ozs7RUFFbEMsQ0FBQyJ9
788
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW5jb2RpbmcuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy91dGlsL2VuY29kaW5nLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxFQUFFLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUNwRCxPQUFPLEtBQUssRUFBRSxVQUFVLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUVoRSxPQUFPLEVBQUUsS0FBSyxnQkFBZ0IsRUFBMEIsTUFBTSxtQkFBbUIsQ0FBQztBQUNsRixPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDM0QsT0FBTyxFQUFFLEtBQUssMkJBQTJCLEVBQXFDLE1BQU0sd0JBQXdCLENBQUM7QUFFN0csT0FBTyxFQUFFLENBQUMsRUFBRSxNQUFNLEtBQUssQ0FBQztBQUV4QixNQUFNLE1BQU0saUJBQWlCLEdBQUcsTUFBTSxDQUFDO0FBRXZDLE1BQU0sTUFBTSxnQkFBZ0IsR0FBRyxNQUFNLEVBQUUsQ0FBQztBQUV4QyxNQUFNLE1BQU0sZUFBZSxHQUFHLENBQUMsaUJBQWlCLEdBQUcsZ0JBQWdCLEdBQUcsZ0JBQWdCLEdBQUcsMkJBQTJCLENBQUMsRUFBRSxDQUFDO0FBRXhILE1BQU0sTUFBTSxpQkFBaUIsR0FBRztJQUM5QixNQUFNLEVBQUUsQ0FBQyxpQkFBaUIsR0FBRyxnQkFBZ0IsQ0FBQyxFQUFFLENBQUM7Q0FDbEQsQ0FBQztBQUVGLHdCQUFnQixVQUFVLENBQUMsR0FBRyxFQUFFLGlCQUFpQixNQUVoRDtBQUVELHdCQUFnQixpQkFBaUIsQ0FBQyxHQUFHLEVBQUUsaUJBQWlCLGdCQUV2RDtBQUVELHdCQUFnQixTQUFTLENBQUMsR0FBRyxFQUFFLGdCQUFnQixRQUU5QztBQUVEOzs7O0dBSUc7QUFDSCx3QkFBZ0IsYUFBYSxDQUFDLEdBQUcsRUFBRSxnQkFBZ0IsRUFBRSxXQUFXLEVBQUUsTUFBTSxHQUFHLE1BQU0sQ0FNaEY7QUFFRDs7Ozs7Ozs7R0FRRztBQUNILHdCQUFnQixrQkFBa0IsQ0FBQyxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxFQUFFLGlCQUFpQixFQUFFLFdBQVcsRUFBRSxNQUFNLEdBQUcsTUFBTSxDQU9wSDtBQUlELHdCQUFnQixRQUFRLENBQ3RCLEtBQUssRUFBRSxZQUFZLEdBQUcsVUFBVSxHQUFHLEVBQUUsR0FBRyxNQUFNLEdBQUcsT0FBTyxHQUFHLE1BQU0sR0FBRyxNQUFNLEdBQ3pFLGlCQUFpQixDQVluQjtBQUVELHdCQUFnQixPQUFPLENBQUMsSUFBSSxFQUFFLEVBQUUsRUFBRSxHQUFHLGdCQUFnQixDQUVwRDtBQUVELHdCQUFnQixlQUFlLENBQUMsS0FBSyxFQUFFLEVBQUUsR0FBRyxFQUFFLEVBQUUscUJBRS9DO0FBRUQsd0JBQWdCLGVBQWUsQ0FBQyxNQUFNLEVBQUUsTUFBTSxHQUFHLGdCQUFnQixDQUVoRTtBQUVEOzs7Ozs7O0dBT0c7QUFDSCx3QkFBZ0IsaUJBQWlCLENBQy9CLFdBQVcsRUFBRSxnQkFBZ0IsRUFDN0IsTUFBTSxFQUFFLE1BQU0sR0FDYixDQUFDLGdCQUFnQixFQUFFLGlCQUFpQixDQUFDLENBWXZDO0FBRUQ7Ozs7OztHQU1HO0FBQ0gsd0JBQWdCLGlDQUFpQyxDQUMvQyxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUsRUFDL0IsTUFBTSxFQUFFLE1BQU0sRUFDZCxpQkFBaUIsRUFBRSxNQUFNLEdBQ3hCLENBQUMsZ0JBQWdCLEVBQUUsaUJBQWlCLENBQUMsQ0FxQnZDO0FBRUQsd0JBQWdCLG1CQUFtQixDQUFDLEdBQUcsRUFBRSxDQUFDLGlCQUFpQixHQUFHLGdCQUFnQixDQUFDLEVBQUU7O0VBRWhGO0FBRUQsZUFBTyxNQUFNLHVCQUF1QixhQUFhLENBQUM7QUFFbEQsZUFBTyxNQUFNLHNCQUFzQixpQ0FBc0IsQ0FBQztBQUUxRCxlQUFPLE1BQU0scUJBQXFCOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztjQUVqQyxDQUFDO0FBRUYsZUFBTyxNQUFNLHVCQUF1Qjs7Ozs7O0VBRWxDLENBQUMifQ==