@aztec/aztec.js 0.0.1-commit.96dac018d → 0.0.1-commit.993d52e

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 (31) hide show
  1. package/dest/contract/deploy_method.d.ts +4 -16
  2. package/dest/contract/deploy_method.d.ts.map +1 -1
  3. package/dest/contract/deploy_method.js +6 -14
  4. package/dest/contract/interaction_options.d.ts +1 -8
  5. package/dest/contract/interaction_options.d.ts.map +1 -1
  6. package/dest/contract/protocol_contracts/auth-registry.d.ts +1 -10
  7. package/dest/contract/protocol_contracts/auth-registry.d.ts.map +1 -1
  8. package/dest/contract/protocol_contracts/auth-registry.js +59 -498
  9. package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts +1 -1
  10. package/dest/contract/protocol_contracts/multi-call-entrypoint.d.ts.map +1 -1
  11. package/dest/contract/protocol_contracts/multi-call-entrypoint.js +0 -8
  12. package/dest/contract/protocol_contracts/public-checks.d.ts +1 -1
  13. package/dest/contract/protocol_contracts/public-checks.d.ts.map +1 -1
  14. package/dest/contract/protocol_contracts/public-checks.js +0 -8
  15. package/dest/wallet/capabilities.d.ts +1 -9
  16. package/dest/wallet/capabilities.d.ts.map +1 -1
  17. package/dest/wallet/deploy_account_method.d.ts +4 -15
  18. package/dest/wallet/deploy_account_method.d.ts.map +1 -1
  19. package/dest/wallet/deploy_account_method.js +0 -26
  20. package/dest/wallet/wallet.d.ts +1 -139
  21. package/dest/wallet/wallet.d.ts.map +1 -1
  22. package/dest/wallet/wallet.js +3 -9
  23. package/package.json +10 -10
  24. package/src/contract/deploy_method.ts +9 -26
  25. package/src/contract/interaction_options.ts +0 -7
  26. package/src/contract/protocol_contracts/auth-registry.ts +37 -237
  27. package/src/contract/protocol_contracts/multi-call-entrypoint.ts +0 -2
  28. package/src/contract/protocol_contracts/public-checks.ts +0 -2
  29. package/src/wallet/capabilities.ts +0 -9
  30. package/src/wallet/deploy_account_method.ts +2 -39
  31. package/src/wallet/wallet.ts +0 -3
@@ -6,61 +6,54 @@ const AuthRegistryContractArtifact = {
6
6
  functions: [
7
7
  {
8
8
  ...{
9
- functionType: FunctionType.PRIVATE,
10
- name: 'set_authorized_private',
9
+ functionType: FunctionType.PUBLIC,
10
+ name: 'public_dispatch',
11
11
  isOnlySelf: false,
12
12
  isStatic: false,
13
13
  isInitializer: false,
14
14
  parameters: [
15
15
  {
16
- name: 'approver',
17
- type: {
18
- kind: 'struct',
19
- fields: [
20
- {
21
- name: 'inner',
22
- type: {
23
- kind: 'field'
24
- }
25
- }
26
- ],
27
- path: 'aztec::protocol_types::address::aztec_address::AztecAddress'
28
- },
29
- visibility: 'private'
30
- },
31
- {
32
- name: 'message_hash',
16
+ name: 'selector',
33
17
  type: {
34
18
  kind: 'field'
35
19
  },
36
20
  visibility: 'private'
37
- },
38
- {
39
- name: 'authorize',
40
- type: {
41
- kind: 'boolean'
42
- },
43
- visibility: 'private'
44
21
  }
45
22
  ],
46
23
  returnTypes: [],
47
24
  errorTypes: {
48
- '7555607922535724711': {
25
+ '361444214588792908': {
49
26
  error_kind: 'string',
50
- string: 'Preimage mismatch'
27
+ string: 'attempt to multiply with overflow'
51
28
  },
52
- '9530675838293881722': {
29
+ '1998584279744703196': {
53
30
  error_kind: 'string',
54
- string: 'Writer did not write all data'
31
+ string: 'attempt to subtract with overflow'
55
32
  },
56
- '9894212961085021188': {
33
+ '5525725861591553972': {
57
34
  error_kind: 'string',
58
- string: 'Message not authorized by account'
35
+ string: 'rejecting all'
36
+ },
37
+ '11691217184967371519': {
38
+ error_kind: 'string',
39
+ string: 'Function is_reject_all can only be called statically'
59
40
  },
60
- '12327971061804302172': {
41
+ '12511970388699677811': {
61
42
  error_kind: 'fmtstring',
62
- length: 98,
63
- item_types: []
43
+ length: 27,
44
+ item_types: [
45
+ {
46
+ kind: 'field'
47
+ }
48
+ ]
49
+ },
50
+ '13455385521185560676': {
51
+ error_kind: 'string',
52
+ string: 'Storage slot 0 not allowed. Storage slots must start from 1.'
53
+ },
54
+ '13929691561421487185': {
55
+ error_kind: 'string',
56
+ string: 'Function _set_authorized can only be called by the same contract'
64
57
  },
65
58
  '14990209321349310352': {
66
59
  error_kind: 'string',
@@ -73,6 +66,14 @@ const AuthRegistryContractArtifact = {
73
66
  '16431471497789672479': {
74
67
  error_kind: 'string',
75
68
  string: 'Index out of bounds'
69
+ },
70
+ '17089945683942782951': {
71
+ error_kind: 'string',
72
+ string: 'unauthorized'
73
+ },
74
+ '17312933876399746100': {
75
+ error_kind: 'string',
76
+ string: 'Function is_consumable can only be called statically'
76
77
  }
77
78
  }
78
79
  },
@@ -81,14 +82,14 @@ const AuthRegistryContractArtifact = {
81
82
  },
82
83
  {
83
84
  ...{
84
- functionType: FunctionType.UTILITY,
85
- name: 'utility_is_consumable',
85
+ functionType: FunctionType.PRIVATE,
86
+ name: 'set_authorized_private',
86
87
  isOnlySelf: false,
87
88
  isStatic: false,
88
89
  isInitializer: false,
89
90
  parameters: [
90
91
  {
91
- name: 'on_behalf_of',
92
+ name: 'approver',
92
93
  type: {
93
94
  kind: 'struct',
94
95
  fields: [
@@ -109,25 +110,24 @@ const AuthRegistryContractArtifact = {
109
110
  kind: 'field'
110
111
  },
111
112
  visibility: 'private'
112
- }
113
- ],
114
- returnTypes: [
113
+ },
115
114
  {
116
- kind: 'boolean'
115
+ name: 'authorize',
116
+ type: {
117
+ kind: 'boolean'
118
+ },
119
+ visibility: 'private'
117
120
  }
118
121
  ],
122
+ returnTypes: [],
119
123
  errorTypes: {
120
- '361444214588792908': {
121
- error_kind: 'string',
122
- string: 'attempt to multiply with overflow'
123
- },
124
- '1998584279744703196': {
124
+ '7555607922535724711': {
125
125
  error_kind: 'string',
126
- string: 'attempt to subtract with overflow'
126
+ string: 'Preimage mismatch'
127
127
  },
128
- '13455385521185560676': {
128
+ '9894212961085021188': {
129
129
  error_kind: 'string',
130
- string: 'Storage slot 0 not allowed. Storage slots must start from 1.'
130
+ string: 'Message not authorized by account'
131
131
  },
132
132
  '14990209321349310352': {
133
133
  error_kind: 'string',
@@ -136,10 +136,6 @@ const AuthRegistryContractArtifact = {
136
136
  '15764276373176857197': {
137
137
  error_kind: 'string',
138
138
  string: 'Stack too deep'
139
- },
140
- '16431471497789672479': {
141
- error_kind: 'string',
142
- string: 'Index out of bounds'
143
139
  }
144
140
  }
145
141
  },
@@ -149,271 +145,40 @@ const AuthRegistryContractArtifact = {
149
145
  {
150
146
  ...{
151
147
  functionType: FunctionType.UTILITY,
152
- name: 'process_message',
148
+ name: 'utility_is_consumable',
153
149
  isOnlySelf: false,
154
150
  isStatic: false,
155
151
  isInitializer: false,
156
152
  parameters: [
157
153
  {
158
- name: 'message_ciphertext',
154
+ name: 'on_behalf_of',
159
155
  type: {
160
156
  kind: 'struct',
161
157
  fields: [
162
158
  {
163
- name: 'storage',
164
- type: {
165
- kind: 'array',
166
- length: 15,
167
- type: {
168
- kind: 'field'
169
- }
170
- }
171
- },
172
- {
173
- name: 'len',
159
+ name: 'inner',
174
160
  type: {
175
- kind: 'integer',
176
- sign: 'unsigned',
177
- width: 32
161
+ kind: 'field'
178
162
  }
179
163
  }
180
164
  ],
181
- path: 'std::collections::bounded_vec::BoundedVec'
165
+ path: 'aztec::protocol_types::address::aztec_address::AztecAddress'
182
166
  },
183
167
  visibility: 'private'
184
168
  },
185
169
  {
186
- name: 'message_context',
170
+ name: 'message_hash',
187
171
  type: {
188
- kind: 'struct',
189
- fields: [
190
- {
191
- name: 'tx_hash',
192
- type: {
193
- kind: 'field'
194
- }
195
- },
196
- {
197
- name: 'unique_note_hashes_in_tx',
198
- type: {
199
- kind: 'struct',
200
- fields: [
201
- {
202
- name: 'storage',
203
- type: {
204
- kind: 'array',
205
- length: 64,
206
- type: {
207
- kind: 'field'
208
- }
209
- }
210
- },
211
- {
212
- name: 'len',
213
- type: {
214
- kind: 'integer',
215
- sign: 'unsigned',
216
- width: 32
217
- }
218
- }
219
- ],
220
- path: 'std::collections::bounded_vec::BoundedVec'
221
- }
222
- },
223
- {
224
- name: 'first_nullifier_in_tx',
225
- type: {
226
- kind: 'field'
227
- }
228
- },
229
- {
230
- name: 'recipient',
231
- type: {
232
- kind: 'struct',
233
- fields: [
234
- {
235
- name: 'inner',
236
- type: {
237
- kind: 'field'
238
- }
239
- }
240
- ],
241
- path: 'aztec::protocol_types::address::aztec_address::AztecAddress'
242
- }
243
- }
244
- ],
245
- path: 'aztec::messages::processing::message_context::MessageContext'
172
+ kind: 'field'
246
173
  },
247
174
  visibility: 'private'
248
175
  }
249
176
  ],
250
- returnTypes: [],
251
- errorTypes: {
252
- '361444214588792908': {
253
- error_kind: 'string',
254
- string: 'attempt to multiply with overflow'
255
- },
256
- '992401946138144806': {
257
- error_kind: 'string',
258
- string: 'Attempted to read past end of BoundedVec'
259
- },
260
- '1998584279744703196': {
261
- error_kind: 'string',
262
- string: 'attempt to subtract with overflow'
263
- },
264
- '2967937905572420042': {
265
- error_kind: 'fmtstring',
266
- length: 61,
267
- item_types: [
268
- {
269
- kind: 'field'
270
- },
271
- {
272
- kind: 'field'
273
- }
274
- ]
275
- },
276
- '3330370348214585450': {
277
- error_kind: 'fmtstring',
278
- length: 48,
279
- item_types: [
280
- {
281
- kind: 'field'
282
- },
283
- {
284
- kind: 'field'
285
- }
286
- ]
287
- },
288
- '3670003311596808700': {
289
- error_kind: 'fmtstring',
290
- length: 77,
291
- item_types: [
292
- {
293
- kind: 'integer',
294
- sign: 'unsigned',
295
- width: 32
296
- }
297
- ]
298
- },
299
- '4261968856572588300': {
300
- error_kind: 'string',
301
- string: 'Value does not fit in field'
302
- },
303
- '4440399188109668273': {
304
- error_kind: 'string',
305
- string: 'Input length must be a multiple of 32'
306
- },
307
- '5417577161503694006': {
308
- error_kind: 'fmtstring',
309
- length: 56,
310
- item_types: [
311
- {
312
- kind: 'field'
313
- }
314
- ]
315
- },
316
- '9530675838293881722': {
317
- error_kind: 'string',
318
- string: 'Writer did not write all data'
319
- },
320
- '9791669845391776238': {
321
- error_kind: 'string',
322
- string: '0 has a square root; you cannot claim it is not square'
323
- },
324
- '10135509984888824963': {
325
- error_kind: 'fmtstring',
326
- length: 58,
327
- item_types: [
328
- {
329
- kind: 'field'
330
- }
331
- ]
332
- },
333
- '10791800398362570014': {
334
- error_kind: 'string',
335
- string: 'extend_from_bounded_vec out of bounds'
336
- },
337
- '11692359521570349358': {
338
- error_kind: 'fmtstring',
339
- length: 40,
340
- item_types: []
341
- },
342
- '12469291177396340830': {
343
- error_kind: 'string',
344
- string: 'call to assert_max_bit_size'
345
- },
346
- '12913276134398371456': {
347
- error_kind: 'string',
348
- string: 'push out of bounds'
349
- },
350
- '13557316507370296400': {
351
- error_kind: 'fmtstring',
352
- length: 130,
353
- item_types: [
354
- {
355
- kind: 'integer',
356
- sign: 'unsigned',
357
- width: 32
358
- }
359
- ]
360
- },
361
- '14938672389828944159': {
362
- error_kind: 'fmtstring',
363
- length: 146,
364
- item_types: [
365
- {
366
- kind: 'integer',
367
- sign: 'unsigned',
368
- width: 32
369
- }
370
- ]
371
- },
372
- '14990209321349310352': {
373
- error_kind: 'string',
374
- string: 'attempt to add with overflow'
375
- },
376
- '15764276373176857197': {
377
- error_kind: 'string',
378
- string: 'Stack too deep'
379
- },
380
- '16431471497789672479': {
381
- error_kind: 'string',
382
- string: 'Index out of bounds'
383
- },
384
- '17531474008201752295': {
385
- error_kind: 'fmtstring',
386
- length: 133,
387
- item_types: [
388
- {
389
- kind: 'integer',
390
- sign: 'unsigned',
391
- width: 32
392
- }
393
- ]
394
- }
395
- }
396
- },
397
- bytecode: Buffer.from([]),
398
- debugSymbols: ''
399
- },
400
- {
401
- ...{
402
- functionType: FunctionType.PUBLIC,
403
- name: 'public_dispatch',
404
- isOnlySelf: false,
405
- isStatic: false,
406
- isInitializer: false,
407
- parameters: [
177
+ returnTypes: [
408
178
  {
409
- name: 'selector',
410
- type: {
411
- kind: 'field'
412
- },
413
- visibility: 'private'
179
+ kind: 'boolean'
414
180
  }
415
181
  ],
416
- returnTypes: [],
417
182
  errorTypes: {
418
183
  '361444214588792908': {
419
184
  error_kind: 'string',
@@ -423,199 +188,10 @@ const AuthRegistryContractArtifact = {
423
188
  error_kind: 'string',
424
189
  string: 'attempt to subtract with overflow'
425
190
  },
426
- '5525725861591553972': {
427
- error_kind: 'string',
428
- string: 'rejecting all'
429
- },
430
- '11691217184967371519': {
431
- error_kind: 'string',
432
- string: 'Function is_reject_all can only be called statically'
433
- },
434
- '12511970388699677811': {
435
- error_kind: 'fmtstring',
436
- length: 27,
437
- item_types: [
438
- {
439
- kind: 'field'
440
- }
441
- ]
442
- },
443
191
  '13455385521185560676': {
444
192
  error_kind: 'string',
445
193
  string: 'Storage slot 0 not allowed. Storage slots must start from 1.'
446
194
  },
447
- '13929691561421487185': {
448
- error_kind: 'string',
449
- string: 'Function _set_authorized can only be called by the same contract'
450
- },
451
- '14990209321349310352': {
452
- error_kind: 'string',
453
- string: 'attempt to add with overflow'
454
- },
455
- '15764276373176857197': {
456
- error_kind: 'string',
457
- string: 'Stack too deep'
458
- },
459
- '16431471497789672479': {
460
- error_kind: 'string',
461
- string: 'Index out of bounds'
462
- },
463
- '17089945683942782951': {
464
- error_kind: 'string',
465
- string: 'unauthorized'
466
- },
467
- '17312933876399746100': {
468
- error_kind: 'string',
469
- string: 'Function is_consumable can only be called statically'
470
- }
471
- }
472
- },
473
- bytecode: Buffer.from([]),
474
- debugSymbols: ''
475
- },
476
- {
477
- ...{
478
- functionType: FunctionType.UTILITY,
479
- name: 'sync_state',
480
- isOnlySelf: false,
481
- isStatic: false,
482
- isInitializer: false,
483
- parameters: [],
484
- returnTypes: [],
485
- errorTypes: {
486
- '361444214588792908': {
487
- error_kind: 'string',
488
- string: 'attempt to multiply with overflow'
489
- },
490
- '992401946138144806': {
491
- error_kind: 'string',
492
- string: 'Attempted to read past end of BoundedVec'
493
- },
494
- '1998584279744703196': {
495
- error_kind: 'string',
496
- string: 'attempt to subtract with overflow'
497
- },
498
- '2967937905572420042': {
499
- error_kind: 'fmtstring',
500
- length: 61,
501
- item_types: [
502
- {
503
- kind: 'field'
504
- },
505
- {
506
- kind: 'field'
507
- }
508
- ]
509
- },
510
- '3330370348214585450': {
511
- error_kind: 'fmtstring',
512
- length: 48,
513
- item_types: [
514
- {
515
- kind: 'field'
516
- },
517
- {
518
- kind: 'field'
519
- }
520
- ]
521
- },
522
- '3670003311596808700': {
523
- error_kind: 'fmtstring',
524
- length: 77,
525
- item_types: [
526
- {
527
- kind: 'integer',
528
- sign: 'unsigned',
529
- width: 32
530
- }
531
- ]
532
- },
533
- '4261968856572588300': {
534
- error_kind: 'string',
535
- string: 'Value does not fit in field'
536
- },
537
- '4440399188109668273': {
538
- error_kind: 'string',
539
- string: 'Input length must be a multiple of 32'
540
- },
541
- '5417577161503694006': {
542
- error_kind: 'fmtstring',
543
- length: 56,
544
- item_types: [
545
- {
546
- kind: 'field'
547
- }
548
- ]
549
- },
550
- '9530675838293881722': {
551
- error_kind: 'string',
552
- string: 'Writer did not write all data'
553
- },
554
- '9791669845391776238': {
555
- error_kind: 'string',
556
- string: '0 has a square root; you cannot claim it is not square'
557
- },
558
- '9885968605480832328': {
559
- error_kind: 'string',
560
- string: 'Attempted to read past the length of a CapsuleArray'
561
- },
562
- '10135509984888824963': {
563
- error_kind: 'fmtstring',
564
- length: 58,
565
- item_types: [
566
- {
567
- kind: 'field'
568
- }
569
- ]
570
- },
571
- '10791800398362570014': {
572
- error_kind: 'string',
573
- string: 'extend_from_bounded_vec out of bounds'
574
- },
575
- '11021520179822076911': {
576
- error_kind: 'string',
577
- string: 'Attempted to delete past the length of a CapsuleArray'
578
- },
579
- '11692359521570349358': {
580
- error_kind: 'fmtstring',
581
- length: 40,
582
- item_types: []
583
- },
584
- '12327971061804302172': {
585
- error_kind: 'fmtstring',
586
- length: 98,
587
- item_types: []
588
- },
589
- '12469291177396340830': {
590
- error_kind: 'string',
591
- string: 'call to assert_max_bit_size'
592
- },
593
- '12913276134398371456': {
594
- error_kind: 'string',
595
- string: 'push out of bounds'
596
- },
597
- '13557316507370296400': {
598
- error_kind: 'fmtstring',
599
- length: 130,
600
- item_types: [
601
- {
602
- kind: 'integer',
603
- sign: 'unsigned',
604
- width: 32
605
- }
606
- ]
607
- },
608
- '14938672389828944159': {
609
- error_kind: 'fmtstring',
610
- length: 146,
611
- item_types: [
612
- {
613
- kind: 'integer',
614
- sign: 'unsigned',
615
- width: 32
616
- }
617
- ]
618
- },
619
195
  '14990209321349310352': {
620
196
  error_kind: 'string',
621
197
  string: 'attempt to add with overflow'
@@ -627,21 +203,6 @@ const AuthRegistryContractArtifact = {
627
203
  '16431471497789672479': {
628
204
  error_kind: 'string',
629
205
  string: 'Index out of bounds'
630
- },
631
- '17531474008201752295': {
632
- error_kind: 'fmtstring',
633
- length: 133,
634
- item_types: [
635
- {
636
- kind: 'integer',
637
- sign: 'unsigned',
638
- width: 32
639
- }
640
- ]
641
- },
642
- '17655676068928457687': {
643
- error_kind: 'string',
644
- string: 'Reader did not read all data'
645
206
  }
646
207
  }
647
208
  },
@@ -31,4 +31,4 @@ export declare class MultiCallEntrypointContract extends ContractBase {
31
31
  sync_state: (() => ContractFunctionInteraction) & Pick<ContractMethod, 'selector'>;
32
32
  };
33
33
  }
34
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibXVsdGktY2FsbC1lbnRyeXBvaW50LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvY29udHJhY3QvcHJvdG9jb2xfY29udHJhY3RzL211bHRpLWNhbGwtZW50cnlwb2ludC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFPQSxPQUFPLEtBQUssRUFDVixnQkFBZ0IsRUFFaEIsU0FBUyxFQUNULG9CQUFvQixFQUVyQixNQUFNLDBCQUEwQixDQUFDO0FBQ2xDLE9BQU8sS0FBSyxFQUFFLE1BQU0sRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3JELE9BQU8sRUFBRSxZQUFZLEVBQUUsS0FBSyxjQUFjLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUN4RSxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQW1SbEYscUJBQWEsMkJBQTRCLFNBQVEsWUFBWTtJQUMzRCxPQUFPLGVBRU47SUFFRCxPQUFjLEVBQUUsQ0FBQyxNQUFNLEVBQUUsTUFBTSxHQUFHLDJCQUEyQixDQUU1RDtJQUVjLE9BQU8sRUFBRTtRQUN0QixzQ0FBc0M7UUFDdEMsVUFBVSxFQUFFLENBQUMsQ0FBQyxXQUFXLEVBQUU7WUFDekIsY0FBYyxFQUFFO2dCQUNkLFNBQVMsRUFBRSxTQUFTLENBQUM7Z0JBQ3JCLGlCQUFpQixFQUFFLG9CQUFvQixDQUFDO2dCQUN4QyxjQUFjLEVBQUUsZ0JBQWdCLENBQUM7Z0JBQ2pDLFNBQVMsRUFBRSxPQUFPLENBQUM7Z0JBQ25CLGVBQWUsRUFBRSxPQUFPLENBQUM7Z0JBQ3pCLFNBQVMsRUFBRSxPQUFPLENBQUM7YUFDcEIsRUFBRSxDQUFDO1lBQ0osUUFBUSxFQUFFLFNBQVMsQ0FBQztTQUNyQixLQUFLLDJCQUEyQixDQUFDLEdBQ2hDLElBQUksQ0FBQyxjQUFjLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFFbkMsMkVBQTJFO1FBQzNFLGVBQWUsRUFBRSxDQUFDLENBQ2hCLGtCQUFrQixFQUFFLFNBQVMsRUFBRSxFQUMvQixlQUFlLEVBQUU7WUFDZixPQUFPLEVBQUUsU0FBUyxDQUFDO1lBQ25CLHdCQUF3QixFQUFFLFNBQVMsRUFBRSxDQUFDO1lBQ3RDLHFCQUFxQixFQUFFLFNBQVMsQ0FBQztZQUNqQyxTQUFTLEVBQUUsZ0JBQWdCLENBQUM7U0FDN0IsS0FDRSwyQkFBMkIsQ0FBQyxHQUMvQixJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRW5DLHVDQUF1QztRQUN2QyxlQUFlLEVBQUUsQ0FBQyxDQUFDLFFBQVEsRUFBRSxTQUFTLEtBQUssMkJBQTJCLENBQUMsR0FBRyxJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRTNHLG1CQUFtQjtRQUNuQixVQUFVLEVBQUUsQ0FBQyxNQUFNLDJCQUEyQixDQUFDLEdBQUcsSUFBSSxDQUFDLGNBQWMsRUFBRSxVQUFVLENBQUMsQ0FBQztLQUNwRixDQUFDO0NBQ0gifQ==
34
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibXVsdGktY2FsbC1lbnRyeXBvaW50LmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvY29udHJhY3QvcHJvdG9jb2xfY29udHJhY3RzL211bHRpLWNhbGwtZW50cnlwb2ludC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFPQSxPQUFPLEtBQUssRUFDVixnQkFBZ0IsRUFFaEIsU0FBUyxFQUNULG9CQUFvQixFQUVyQixNQUFNLDBCQUEwQixDQUFDO0FBQ2xDLE9BQU8sS0FBSyxFQUFFLE1BQU0sRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3JELE9BQU8sRUFBRSxZQUFZLEVBQUUsS0FBSyxjQUFjLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUN4RSxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQWlSbEYscUJBQWEsMkJBQTRCLFNBQVEsWUFBWTtJQUMzRCxPQUFPLGVBRU47SUFFRCxPQUFjLEVBQUUsQ0FBQyxNQUFNLEVBQUUsTUFBTSxHQUFHLDJCQUEyQixDQUU1RDtJQUVjLE9BQU8sRUFBRTtRQUN0QixzQ0FBc0M7UUFDdEMsVUFBVSxFQUFFLENBQUMsQ0FBQyxXQUFXLEVBQUU7WUFDekIsY0FBYyxFQUFFO2dCQUNkLFNBQVMsRUFBRSxTQUFTLENBQUM7Z0JBQ3JCLGlCQUFpQixFQUFFLG9CQUFvQixDQUFDO2dCQUN4QyxjQUFjLEVBQUUsZ0JBQWdCLENBQUM7Z0JBQ2pDLFNBQVMsRUFBRSxPQUFPLENBQUM7Z0JBQ25CLGVBQWUsRUFBRSxPQUFPLENBQUM7Z0JBQ3pCLFNBQVMsRUFBRSxPQUFPLENBQUM7YUFDcEIsRUFBRSxDQUFDO1lBQ0osUUFBUSxFQUFFLFNBQVMsQ0FBQztTQUNyQixLQUFLLDJCQUEyQixDQUFDLEdBQ2hDLElBQUksQ0FBQyxjQUFjLEVBQUUsVUFBVSxDQUFDLENBQUM7UUFFbkMsMkVBQTJFO1FBQzNFLGVBQWUsRUFBRSxDQUFDLENBQ2hCLGtCQUFrQixFQUFFLFNBQVMsRUFBRSxFQUMvQixlQUFlLEVBQUU7WUFDZixPQUFPLEVBQUUsU0FBUyxDQUFDO1lBQ25CLHdCQUF3QixFQUFFLFNBQVMsRUFBRSxDQUFDO1lBQ3RDLHFCQUFxQixFQUFFLFNBQVMsQ0FBQztZQUNqQyxTQUFTLEVBQUUsZ0JBQWdCLENBQUM7U0FDN0IsS0FDRSwyQkFBMkIsQ0FBQyxHQUMvQixJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRW5DLHVDQUF1QztRQUN2QyxlQUFlLEVBQUUsQ0FBQyxDQUFDLFFBQVEsRUFBRSxTQUFTLEtBQUssMkJBQTJCLENBQUMsR0FBRyxJQUFJLENBQUMsY0FBYyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRTNHLG1CQUFtQjtRQUNuQixVQUFVLEVBQUUsQ0FBQyxNQUFNLDJCQUEyQixDQUFDLEdBQUcsSUFBSSxDQUFDLGNBQWMsRUFBRSxVQUFVLENBQUMsQ0FBQztLQUNwRixDQUFDO0NBQ0gifQ==