mech-client 0.4.0__py3-none-any.whl → 0.6.0__py3-none-any.whl

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 (32) hide show
  1. mech_client/__init__.py +1 -1
  2. mech_client/abis/AgentMech.json +718 -0
  3. mech_client/abis/AgentRegistry.json +1037 -0
  4. mech_client/abis/AgreementStoreManager.base.json +766 -0
  5. mech_client/abis/AgreementStoreManager.gnosis.json +766 -0
  6. mech_client/abis/DIDRegistry.base.json +2476 -0
  7. mech_client/abis/DIDRegistry.gnosis.json +2476 -0
  8. mech_client/abis/EscrowPaymentCondition.base.json +717 -0
  9. mech_client/abis/EscrowPaymentCondition.gnosis.json +717 -0
  10. mech_client/abis/LockPaymentCondition.base.json +874 -0
  11. mech_client/abis/LockPaymentCondition.gnosis.json +874 -0
  12. mech_client/abis/NFTSalesTemplate.base.json +698 -0
  13. mech_client/abis/NFTSalesTemplate.gnosis.json +698 -0
  14. mech_client/abis/NeverminedConfig.base.json +587 -0
  15. mech_client/abis/NeverminedConfig.gnosis.json +587 -0
  16. mech_client/abis/SubscriptionNFT.base.json +300 -0
  17. mech_client/abis/SubscriptionNFT.gnosis.json +300 -0
  18. mech_client/abis/SubscriptionToken.base.json +1393 -0
  19. mech_client/abis/TransferNFTCondition.base.json +1062 -0
  20. mech_client/abis/TransferNFTCondition.gnosis.json +1062 -0
  21. mech_client/cli.py +99 -10
  22. mech_client/configs/mechs.json +1 -7
  23. mech_client/interact.py +14 -39
  24. mech_client/marketplace_interact.py +130 -90
  25. mech_client/mech_tool_management.py +11 -5
  26. mech_client/subgraph.py +21 -35
  27. mech_client/wss.py +7 -6
  28. {mech_client-0.4.0.dist-info → mech_client-0.6.0.dist-info}/METADATA +45 -13
  29. {mech_client-0.4.0.dist-info → mech_client-0.6.0.dist-info}/RECORD +32 -13
  30. {mech_client-0.4.0.dist-info → mech_client-0.6.0.dist-info}/LICENSE +0 -0
  31. {mech_client-0.4.0.dist-info → mech_client-0.6.0.dist-info}/WHEEL +0 -0
  32. {mech_client-0.4.0.dist-info → mech_client-0.6.0.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,1062 @@
1
+ {
2
+ "name": "TransferNFTCondition",
3
+ "abi": [
4
+ {
5
+ "anonymous": false,
6
+ "inputs": [
7
+ {
8
+ "indexed": true,
9
+ "internalType": "bytes32",
10
+ "name": "_agreementId",
11
+ "type": "bytes32"
12
+ },
13
+ {
14
+ "indexed": true,
15
+ "internalType": "bytes32",
16
+ "name": "_did",
17
+ "type": "bytes32"
18
+ },
19
+ {
20
+ "indexed": true,
21
+ "internalType": "address",
22
+ "name": "_receiver",
23
+ "type": "address"
24
+ },
25
+ {
26
+ "indexed": false,
27
+ "internalType": "uint256",
28
+ "name": "_amount",
29
+ "type": "uint256"
30
+ },
31
+ {
32
+ "indexed": false,
33
+ "internalType": "bytes32",
34
+ "name": "_conditionId",
35
+ "type": "bytes32"
36
+ },
37
+ {
38
+ "indexed": false,
39
+ "internalType": "address",
40
+ "name": "_contract",
41
+ "type": "address"
42
+ }
43
+ ],
44
+ "name": "Fulfilled",
45
+ "type": "event"
46
+ },
47
+ {
48
+ "anonymous": false,
49
+ "inputs": [
50
+ {
51
+ "indexed": false,
52
+ "internalType": "uint8",
53
+ "name": "version",
54
+ "type": "uint8"
55
+ }
56
+ ],
57
+ "name": "Initialized",
58
+ "type": "event"
59
+ },
60
+ {
61
+ "anonymous": false,
62
+ "inputs": [
63
+ {
64
+ "indexed": true,
65
+ "internalType": "address",
66
+ "name": "previousOwner",
67
+ "type": "address"
68
+ },
69
+ {
70
+ "indexed": true,
71
+ "internalType": "address",
72
+ "name": "newOwner",
73
+ "type": "address"
74
+ }
75
+ ],
76
+ "name": "OwnershipTransferred",
77
+ "type": "event"
78
+ },
79
+ {
80
+ "anonymous": false,
81
+ "inputs": [
82
+ {
83
+ "indexed": true,
84
+ "internalType": "bytes32",
85
+ "name": "role",
86
+ "type": "bytes32"
87
+ },
88
+ {
89
+ "indexed": true,
90
+ "internalType": "bytes32",
91
+ "name": "previousAdminRole",
92
+ "type": "bytes32"
93
+ },
94
+ {
95
+ "indexed": true,
96
+ "internalType": "bytes32",
97
+ "name": "newAdminRole",
98
+ "type": "bytes32"
99
+ }
100
+ ],
101
+ "name": "RoleAdminChanged",
102
+ "type": "event"
103
+ },
104
+ {
105
+ "anonymous": false,
106
+ "inputs": [
107
+ {
108
+ "indexed": true,
109
+ "internalType": "bytes32",
110
+ "name": "role",
111
+ "type": "bytes32"
112
+ },
113
+ {
114
+ "indexed": true,
115
+ "internalType": "address",
116
+ "name": "account",
117
+ "type": "address"
118
+ },
119
+ {
120
+ "indexed": true,
121
+ "internalType": "address",
122
+ "name": "sender",
123
+ "type": "address"
124
+ }
125
+ ],
126
+ "name": "RoleGranted",
127
+ "type": "event"
128
+ },
129
+ {
130
+ "anonymous": false,
131
+ "inputs": [
132
+ {
133
+ "indexed": true,
134
+ "internalType": "bytes32",
135
+ "name": "role",
136
+ "type": "bytes32"
137
+ },
138
+ {
139
+ "indexed": true,
140
+ "internalType": "address",
141
+ "name": "account",
142
+ "type": "address"
143
+ },
144
+ {
145
+ "indexed": true,
146
+ "internalType": "address",
147
+ "name": "sender",
148
+ "type": "address"
149
+ }
150
+ ],
151
+ "name": "RoleRevoked",
152
+ "type": "event"
153
+ },
154
+ {
155
+ "inputs": [],
156
+ "name": "DEFAULT_ADMIN_ROLE",
157
+ "outputs": [
158
+ {
159
+ "internalType": "bytes32",
160
+ "name": "",
161
+ "type": "bytes32"
162
+ }
163
+ ],
164
+ "stateMutability": "view",
165
+ "type": "function",
166
+ "signature": "0xa217fddf"
167
+ },
168
+ {
169
+ "inputs": [
170
+ {
171
+ "internalType": "bytes32",
172
+ "name": "_id",
173
+ "type": "bytes32"
174
+ }
175
+ ],
176
+ "name": "abortByTimeOut",
177
+ "outputs": [
178
+ {
179
+ "internalType": "enum ConditionStoreLibrary.ConditionState",
180
+ "name": "",
181
+ "type": "uint8"
182
+ }
183
+ ],
184
+ "stateMutability": "nonpayable",
185
+ "type": "function",
186
+ "signature": "0x1ce19185"
187
+ },
188
+ {
189
+ "inputs": [
190
+ {
191
+ "internalType": "address",
192
+ "name": "_addr",
193
+ "type": "address"
194
+ }
195
+ ],
196
+ "name": "addressToBytes32",
197
+ "outputs": [
198
+ {
199
+ "internalType": "bytes32",
200
+ "name": "",
201
+ "type": "bytes32"
202
+ }
203
+ ],
204
+ "stateMutability": "pure",
205
+ "type": "function",
206
+ "signature": "0x82c947b7"
207
+ },
208
+ {
209
+ "inputs": [
210
+ {
211
+ "internalType": "bytes32",
212
+ "name": "_b32",
213
+ "type": "bytes32"
214
+ }
215
+ ],
216
+ "name": "bytes32ToAddress",
217
+ "outputs": [
218
+ {
219
+ "internalType": "address",
220
+ "name": "",
221
+ "type": "address"
222
+ }
223
+ ],
224
+ "stateMutability": "pure",
225
+ "type": "function",
226
+ "signature": "0x5ced058e"
227
+ },
228
+ {
229
+ "inputs": [
230
+ {
231
+ "internalType": "uint256[]",
232
+ "name": "_amounts",
233
+ "type": "uint256[]"
234
+ }
235
+ ],
236
+ "name": "calculateTotalAmount",
237
+ "outputs": [
238
+ {
239
+ "internalType": "uint256",
240
+ "name": "",
241
+ "type": "uint256"
242
+ }
243
+ ],
244
+ "stateMutability": "pure",
245
+ "type": "function",
246
+ "signature": "0x5ea3ab85"
247
+ },
248
+ {
249
+ "inputs": [
250
+ {
251
+ "internalType": "bytes32",
252
+ "name": "_did",
253
+ "type": "bytes32"
254
+ },
255
+ {
256
+ "internalType": "address",
257
+ "name": "_nftHolder",
258
+ "type": "address"
259
+ },
260
+ {
261
+ "internalType": "address",
262
+ "name": "_nftReceiver",
263
+ "type": "address"
264
+ },
265
+ {
266
+ "internalType": "uint256",
267
+ "name": "_nftAmount",
268
+ "type": "uint256"
269
+ },
270
+ {
271
+ "internalType": "bytes32",
272
+ "name": "_lockPaymentCondition",
273
+ "type": "bytes32"
274
+ },
275
+ {
276
+ "internalType": "address",
277
+ "name": "_nftContractAddress",
278
+ "type": "address"
279
+ },
280
+ {
281
+ "internalType": "bool",
282
+ "name": "_transfer",
283
+ "type": "bool"
284
+ }
285
+ ],
286
+ "name": "encodeParams",
287
+ "outputs": [
288
+ {
289
+ "internalType": "bytes",
290
+ "name": "",
291
+ "type": "bytes"
292
+ }
293
+ ],
294
+ "stateMutability": "pure",
295
+ "type": "function",
296
+ "signature": "0xbfa69a00"
297
+ },
298
+ {
299
+ "inputs": [
300
+ {
301
+ "internalType": "bytes32",
302
+ "name": "_agreementId",
303
+ "type": "bytes32"
304
+ },
305
+ {
306
+ "internalType": "bytes32",
307
+ "name": "_did",
308
+ "type": "bytes32"
309
+ },
310
+ {
311
+ "internalType": "address",
312
+ "name": "_nftReceiver",
313
+ "type": "address"
314
+ },
315
+ {
316
+ "internalType": "uint256",
317
+ "name": "_nftAmount",
318
+ "type": "uint256"
319
+ },
320
+ {
321
+ "internalType": "bytes32",
322
+ "name": "_lockPaymentCondition",
323
+ "type": "bytes32"
324
+ },
325
+ {
326
+ "internalType": "address",
327
+ "name": "_nftContractAddress",
328
+ "type": "address"
329
+ },
330
+ {
331
+ "internalType": "bool",
332
+ "name": "_transfer",
333
+ "type": "bool"
334
+ }
335
+ ],
336
+ "name": "fulfill",
337
+ "outputs": [
338
+ {
339
+ "internalType": "enum ConditionStoreLibrary.ConditionState",
340
+ "name": "",
341
+ "type": "uint8"
342
+ }
343
+ ],
344
+ "stateMutability": "nonpayable",
345
+ "type": "function",
346
+ "signature": "0x75d3b4ba"
347
+ },
348
+ {
349
+ "inputs": [
350
+ {
351
+ "internalType": "bytes32",
352
+ "name": "_agreementId",
353
+ "type": "bytes32"
354
+ },
355
+ {
356
+ "internalType": "bytes32",
357
+ "name": "_did",
358
+ "type": "bytes32"
359
+ },
360
+ {
361
+ "internalType": "address",
362
+ "name": "_nftReceiver",
363
+ "type": "address"
364
+ },
365
+ {
366
+ "internalType": "uint256",
367
+ "name": "_nftAmount",
368
+ "type": "uint256"
369
+ },
370
+ {
371
+ "internalType": "bytes32",
372
+ "name": "_lockPaymentCondition",
373
+ "type": "bytes32"
374
+ },
375
+ {
376
+ "internalType": "address",
377
+ "name": "_nftContractAddress",
378
+ "type": "address"
379
+ },
380
+ {
381
+ "internalType": "bool",
382
+ "name": "_transfer",
383
+ "type": "bool"
384
+ },
385
+ {
386
+ "internalType": "uint256",
387
+ "name": "_expirationBlock",
388
+ "type": "uint256"
389
+ }
390
+ ],
391
+ "name": "fulfill",
392
+ "outputs": [
393
+ {
394
+ "internalType": "enum ConditionStoreLibrary.ConditionState",
395
+ "name": "",
396
+ "type": "uint8"
397
+ }
398
+ ],
399
+ "stateMutability": "nonpayable",
400
+ "type": "function",
401
+ "signature": "0xaa357b4c"
402
+ },
403
+ {
404
+ "inputs": [
405
+ {
406
+ "internalType": "bytes32",
407
+ "name": "_agreementId",
408
+ "type": "bytes32"
409
+ },
410
+ {
411
+ "internalType": "bytes32",
412
+ "name": "_did",
413
+ "type": "bytes32"
414
+ },
415
+ {
416
+ "internalType": "address",
417
+ "name": "_nftReceiver",
418
+ "type": "address"
419
+ },
420
+ {
421
+ "internalType": "uint256",
422
+ "name": "_nftAmount",
423
+ "type": "uint256"
424
+ },
425
+ {
426
+ "internalType": "bytes32",
427
+ "name": "_lockPaymentCondition",
428
+ "type": "bytes32"
429
+ }
430
+ ],
431
+ "name": "fulfill",
432
+ "outputs": [
433
+ {
434
+ "internalType": "enum ConditionStoreLibrary.ConditionState",
435
+ "name": "",
436
+ "type": "uint8"
437
+ }
438
+ ],
439
+ "stateMutability": "nonpayable",
440
+ "type": "function",
441
+ "signature": "0xe48b81e6"
442
+ },
443
+ {
444
+ "inputs": [
445
+ {
446
+ "internalType": "bytes32",
447
+ "name": "_agreementId",
448
+ "type": "bytes32"
449
+ },
450
+ {
451
+ "internalType": "bytes32",
452
+ "name": "_did",
453
+ "type": "bytes32"
454
+ },
455
+ {
456
+ "internalType": "address",
457
+ "name": "_nftHolder",
458
+ "type": "address"
459
+ },
460
+ {
461
+ "internalType": "address",
462
+ "name": "_nftReceiver",
463
+ "type": "address"
464
+ },
465
+ {
466
+ "internalType": "uint256",
467
+ "name": "_nftAmount",
468
+ "type": "uint256"
469
+ },
470
+ {
471
+ "internalType": "bytes32",
472
+ "name": "_lockPaymentCondition",
473
+ "type": "bytes32"
474
+ },
475
+ {
476
+ "internalType": "bool",
477
+ "name": "_transfer",
478
+ "type": "bool"
479
+ }
480
+ ],
481
+ "name": "fulfillForDelegate",
482
+ "outputs": [
483
+ {
484
+ "internalType": "enum ConditionStoreLibrary.ConditionState",
485
+ "name": "",
486
+ "type": "uint8"
487
+ }
488
+ ],
489
+ "stateMutability": "nonpayable",
490
+ "type": "function",
491
+ "signature": "0x600f7ae4"
492
+ },
493
+ {
494
+ "inputs": [
495
+ {
496
+ "internalType": "bytes32",
497
+ "name": "_agreementId",
498
+ "type": "bytes32"
499
+ },
500
+ {
501
+ "internalType": "bytes32",
502
+ "name": "_did",
503
+ "type": "bytes32"
504
+ },
505
+ {
506
+ "internalType": "address",
507
+ "name": "_nftHolder",
508
+ "type": "address"
509
+ },
510
+ {
511
+ "internalType": "address",
512
+ "name": "_nftReceiver",
513
+ "type": "address"
514
+ },
515
+ {
516
+ "internalType": "uint256",
517
+ "name": "_nftAmount",
518
+ "type": "uint256"
519
+ },
520
+ {
521
+ "internalType": "bytes32",
522
+ "name": "_lockPaymentCondition",
523
+ "type": "bytes32"
524
+ },
525
+ {
526
+ "internalType": "address",
527
+ "name": "_nftContractAddress",
528
+ "type": "address"
529
+ },
530
+ {
531
+ "internalType": "bool",
532
+ "name": "_transfer",
533
+ "type": "bool"
534
+ },
535
+ {
536
+ "internalType": "uint256",
537
+ "name": "_expirationBlock",
538
+ "type": "uint256"
539
+ }
540
+ ],
541
+ "name": "fulfillForDelegate",
542
+ "outputs": [
543
+ {
544
+ "internalType": "enum ConditionStoreLibrary.ConditionState",
545
+ "name": "",
546
+ "type": "uint8"
547
+ }
548
+ ],
549
+ "stateMutability": "nonpayable",
550
+ "type": "function",
551
+ "signature": "0xefd2e57e"
552
+ },
553
+ {
554
+ "inputs": [
555
+ {
556
+ "internalType": "address",
557
+ "name": "_account",
558
+ "type": "address"
559
+ },
560
+ {
561
+ "internalType": "bytes32",
562
+ "name": "_agreementId",
563
+ "type": "bytes32"
564
+ },
565
+ {
566
+ "internalType": "bytes",
567
+ "name": "_params",
568
+ "type": "bytes"
569
+ }
570
+ ],
571
+ "name": "fulfillProxy",
572
+ "outputs": [],
573
+ "stateMutability": "payable",
574
+ "type": "function",
575
+ "signature": "0xf3c998ce"
576
+ },
577
+ {
578
+ "inputs": [
579
+ {
580
+ "internalType": "bytes32",
581
+ "name": "_agreementId",
582
+ "type": "bytes32"
583
+ },
584
+ {
585
+ "internalType": "bytes32",
586
+ "name": "_valueHash",
587
+ "type": "bytes32"
588
+ }
589
+ ],
590
+ "name": "generateId",
591
+ "outputs": [
592
+ {
593
+ "internalType": "bytes32",
594
+ "name": "",
595
+ "type": "bytes32"
596
+ }
597
+ ],
598
+ "stateMutability": "view",
599
+ "type": "function",
600
+ "signature": "0xcb4e57e8"
601
+ },
602
+ {
603
+ "inputs": [],
604
+ "name": "getCurrentBlockNumber",
605
+ "outputs": [
606
+ {
607
+ "internalType": "uint256",
608
+ "name": "",
609
+ "type": "uint256"
610
+ }
611
+ ],
612
+ "stateMutability": "view",
613
+ "type": "function",
614
+ "signature": "0x6fd902e1"
615
+ },
616
+ {
617
+ "inputs": [],
618
+ "name": "getNFTDefaultAddress",
619
+ "outputs": [
620
+ {
621
+ "internalType": "address",
622
+ "name": "",
623
+ "type": "address"
624
+ }
625
+ ],
626
+ "stateMutability": "view",
627
+ "type": "function",
628
+ "signature": "0x7771f0fe"
629
+ },
630
+ {
631
+ "inputs": [],
632
+ "name": "getNvmConfigAddress",
633
+ "outputs": [
634
+ {
635
+ "internalType": "address",
636
+ "name": "",
637
+ "type": "address"
638
+ }
639
+ ],
640
+ "stateMutability": "view",
641
+ "type": "function",
642
+ "signature": "0xab9de230"
643
+ },
644
+ {
645
+ "inputs": [
646
+ {
647
+ "internalType": "bytes32",
648
+ "name": "role",
649
+ "type": "bytes32"
650
+ }
651
+ ],
652
+ "name": "getRoleAdmin",
653
+ "outputs": [
654
+ {
655
+ "internalType": "bytes32",
656
+ "name": "",
657
+ "type": "bytes32"
658
+ }
659
+ ],
660
+ "stateMutability": "view",
661
+ "type": "function",
662
+ "signature": "0x248a9ca3"
663
+ },
664
+ {
665
+ "inputs": [],
666
+ "name": "getTrustedForwarder",
667
+ "outputs": [
668
+ {
669
+ "internalType": "address",
670
+ "name": "",
671
+ "type": "address"
672
+ }
673
+ ],
674
+ "stateMutability": "view",
675
+ "type": "function",
676
+ "signature": "0xce1b815f"
677
+ },
678
+ {
679
+ "inputs": [
680
+ {
681
+ "internalType": "address",
682
+ "name": "_nftContractAddress",
683
+ "type": "address"
684
+ }
685
+ ],
686
+ "name": "grantMarketRole",
687
+ "outputs": [],
688
+ "stateMutability": "nonpayable",
689
+ "type": "function",
690
+ "signature": "0xb8b7c213"
691
+ },
692
+ {
693
+ "inputs": [
694
+ {
695
+ "internalType": "address",
696
+ "name": "_address",
697
+ "type": "address"
698
+ }
699
+ ],
700
+ "name": "grantProxyRole",
701
+ "outputs": [],
702
+ "stateMutability": "nonpayable",
703
+ "type": "function",
704
+ "signature": "0xf0e325ee"
705
+ },
706
+ {
707
+ "inputs": [
708
+ {
709
+ "internalType": "bytes32",
710
+ "name": "role",
711
+ "type": "bytes32"
712
+ },
713
+ {
714
+ "internalType": "address",
715
+ "name": "account",
716
+ "type": "address"
717
+ }
718
+ ],
719
+ "name": "grantRole",
720
+ "outputs": [],
721
+ "stateMutability": "nonpayable",
722
+ "type": "function",
723
+ "signature": "0x2f2ff15d"
724
+ },
725
+ {
726
+ "inputs": [
727
+ {
728
+ "internalType": "address",
729
+ "name": "a",
730
+ "type": "address"
731
+ }
732
+ ],
733
+ "name": "hasNVMOperatorRole",
734
+ "outputs": [
735
+ {
736
+ "internalType": "bool",
737
+ "name": "",
738
+ "type": "bool"
739
+ }
740
+ ],
741
+ "stateMutability": "view",
742
+ "type": "function",
743
+ "signature": "0x108762d0"
744
+ },
745
+ {
746
+ "inputs": [
747
+ {
748
+ "internalType": "bytes32",
749
+ "name": "role",
750
+ "type": "bytes32"
751
+ },
752
+ {
753
+ "internalType": "address",
754
+ "name": "account",
755
+ "type": "address"
756
+ }
757
+ ],
758
+ "name": "hasRole",
759
+ "outputs": [
760
+ {
761
+ "internalType": "bool",
762
+ "name": "",
763
+ "type": "bool"
764
+ }
765
+ ],
766
+ "stateMutability": "view",
767
+ "type": "function",
768
+ "signature": "0x91d14854"
769
+ },
770
+ {
771
+ "inputs": [
772
+ {
773
+ "internalType": "bytes32",
774
+ "name": "_did",
775
+ "type": "bytes32"
776
+ },
777
+ {
778
+ "internalType": "address",
779
+ "name": "_nftHolder",
780
+ "type": "address"
781
+ },
782
+ {
783
+ "internalType": "address",
784
+ "name": "_nftReceiver",
785
+ "type": "address"
786
+ },
787
+ {
788
+ "internalType": "uint256",
789
+ "name": "_nftAmount",
790
+ "type": "uint256"
791
+ },
792
+ {
793
+ "internalType": "bytes32",
794
+ "name": "_lockCondition",
795
+ "type": "bytes32"
796
+ }
797
+ ],
798
+ "name": "hashValues",
799
+ "outputs": [
800
+ {
801
+ "internalType": "bytes32",
802
+ "name": "",
803
+ "type": "bytes32"
804
+ }
805
+ ],
806
+ "stateMutability": "view",
807
+ "type": "function",
808
+ "signature": "0xbde12415"
809
+ },
810
+ {
811
+ "inputs": [
812
+ {
813
+ "internalType": "bytes32",
814
+ "name": "_did",
815
+ "type": "bytes32"
816
+ },
817
+ {
818
+ "internalType": "address",
819
+ "name": "_nftHolder",
820
+ "type": "address"
821
+ },
822
+ {
823
+ "internalType": "address",
824
+ "name": "_nftReceiver",
825
+ "type": "address"
826
+ },
827
+ {
828
+ "internalType": "uint256",
829
+ "name": "_nftAmount",
830
+ "type": "uint256"
831
+ },
832
+ {
833
+ "internalType": "bytes32",
834
+ "name": "_lockCondition",
835
+ "type": "bytes32"
836
+ },
837
+ {
838
+ "internalType": "address",
839
+ "name": "_nftContractAddress",
840
+ "type": "address"
841
+ },
842
+ {
843
+ "internalType": "bool",
844
+ "name": "_transfer",
845
+ "type": "bool"
846
+ }
847
+ ],
848
+ "name": "hashValues",
849
+ "outputs": [
850
+ {
851
+ "internalType": "bytes32",
852
+ "name": "",
853
+ "type": "bytes32"
854
+ }
855
+ ],
856
+ "stateMutability": "pure",
857
+ "type": "function",
858
+ "signature": "0xd95a3777"
859
+ },
860
+ {
861
+ "inputs": [
862
+ {
863
+ "internalType": "address",
864
+ "name": "_owner",
865
+ "type": "address"
866
+ },
867
+ {
868
+ "internalType": "address",
869
+ "name": "_conditionStoreManagerAddress",
870
+ "type": "address"
871
+ },
872
+ {
873
+ "internalType": "address",
874
+ "name": "_didRegistryAddress",
875
+ "type": "address"
876
+ },
877
+ {
878
+ "internalType": "address",
879
+ "name": "_ercAddress",
880
+ "type": "address"
881
+ },
882
+ {
883
+ "internalType": "address",
884
+ "name": "_nftContractAddress",
885
+ "type": "address"
886
+ }
887
+ ],
888
+ "name": "initialize",
889
+ "outputs": [],
890
+ "stateMutability": "nonpayable",
891
+ "type": "function",
892
+ "signature": "0x1459457a"
893
+ },
894
+ {
895
+ "inputs": [
896
+ {
897
+ "internalType": "address",
898
+ "name": "addr",
899
+ "type": "address"
900
+ }
901
+ ],
902
+ "name": "isContract",
903
+ "outputs": [
904
+ {
905
+ "internalType": "bool",
906
+ "name": "",
907
+ "type": "bool"
908
+ }
909
+ ],
910
+ "stateMutability": "view",
911
+ "type": "function",
912
+ "signature": "0x16279055"
913
+ },
914
+ {
915
+ "inputs": [
916
+ {
917
+ "internalType": "address",
918
+ "name": "forwarder",
919
+ "type": "address"
920
+ }
921
+ ],
922
+ "name": "isTrustedForwarder",
923
+ "outputs": [
924
+ {
925
+ "internalType": "bool",
926
+ "name": "",
927
+ "type": "bool"
928
+ }
929
+ ],
930
+ "stateMutability": "view",
931
+ "type": "function",
932
+ "signature": "0x572b6c05"
933
+ },
934
+ {
935
+ "inputs": [],
936
+ "name": "owner",
937
+ "outputs": [
938
+ {
939
+ "internalType": "address",
940
+ "name": "",
941
+ "type": "address"
942
+ }
943
+ ],
944
+ "stateMutability": "view",
945
+ "type": "function",
946
+ "signature": "0x8da5cb5b"
947
+ },
948
+ {
949
+ "inputs": [],
950
+ "name": "renounceOwnership",
951
+ "outputs": [],
952
+ "stateMutability": "nonpayable",
953
+ "type": "function",
954
+ "signature": "0x715018a6"
955
+ },
956
+ {
957
+ "inputs": [
958
+ {
959
+ "internalType": "bytes32",
960
+ "name": "role",
961
+ "type": "bytes32"
962
+ },
963
+ {
964
+ "internalType": "address",
965
+ "name": "account",
966
+ "type": "address"
967
+ }
968
+ ],
969
+ "name": "renounceRole",
970
+ "outputs": [],
971
+ "stateMutability": "nonpayable",
972
+ "type": "function",
973
+ "signature": "0x36568abe"
974
+ },
975
+ {
976
+ "inputs": [
977
+ {
978
+ "internalType": "address",
979
+ "name": "_nftContractAddress",
980
+ "type": "address"
981
+ }
982
+ ],
983
+ "name": "revokeMarketRole",
984
+ "outputs": [],
985
+ "stateMutability": "nonpayable",
986
+ "type": "function",
987
+ "signature": "0x08c3e766"
988
+ },
989
+ {
990
+ "inputs": [
991
+ {
992
+ "internalType": "address",
993
+ "name": "_address",
994
+ "type": "address"
995
+ }
996
+ ],
997
+ "name": "revokeProxyRole",
998
+ "outputs": [],
999
+ "stateMutability": "nonpayable",
1000
+ "type": "function",
1001
+ "signature": "0x1111ab15"
1002
+ },
1003
+ {
1004
+ "inputs": [
1005
+ {
1006
+ "internalType": "bytes32",
1007
+ "name": "role",
1008
+ "type": "bytes32"
1009
+ },
1010
+ {
1011
+ "internalType": "address",
1012
+ "name": "account",
1013
+ "type": "address"
1014
+ }
1015
+ ],
1016
+ "name": "revokeRole",
1017
+ "outputs": [],
1018
+ "stateMutability": "nonpayable",
1019
+ "type": "function",
1020
+ "signature": "0xd547741f"
1021
+ },
1022
+ {
1023
+ "inputs": [
1024
+ {
1025
+ "internalType": "bytes4",
1026
+ "name": "interfaceId",
1027
+ "type": "bytes4"
1028
+ }
1029
+ ],
1030
+ "name": "supportsInterface",
1031
+ "outputs": [
1032
+ {
1033
+ "internalType": "bool",
1034
+ "name": "",
1035
+ "type": "bool"
1036
+ }
1037
+ ],
1038
+ "stateMutability": "view",
1039
+ "type": "function",
1040
+ "signature": "0x01ffc9a7"
1041
+ },
1042
+ {
1043
+ "inputs": [
1044
+ {
1045
+ "internalType": "address",
1046
+ "name": "newOwner",
1047
+ "type": "address"
1048
+ }
1049
+ ],
1050
+ "name": "transferOwnership",
1051
+ "outputs": [],
1052
+ "stateMutability": "nonpayable",
1053
+ "type": "function",
1054
+ "signature": "0xf2fde38b"
1055
+ }
1056
+ ],
1057
+ "bytecode": "0x608060405234801561001057600080fd5b50612520806100206000396000f3fe60806040526004361061019f5760003560e01c806301ffc9a7146101a457806308c3e766146101d9578063108762d0146101fb5780631111ab151461021b5780631459457a1461023b578063162790551461025b5780631ce191851461027c578063248a9ca3146102a95780632f2ff15d146102d757806336568abe146102f7578063572b6c05146103175780635ced058e146103375780635ea3ab8514610362578063600f7ae4146103825780636fd902e1146103a2578063715018a6146103b557806375d3b4ba146103ca5780637771f0fe146103ea57806382c947b7146104085780638da5cb5b1461042f57806391d1485414610444578063a217fddf14610464578063aa357b4c14610479578063ab9de23014610499578063b8b7c213146104ae578063bde12415146104ce578063bfa69a00146104ee578063cb4e57e81461051b578063ce1b815f14610568578063d547741f1461057d578063d95a37771461059d578063e48b81e6146105bd578063efd2e57e146105dd578063f0e325ee146105fd578063f2fde38b1461061d578063f3c998ce1461063d575b600080fd5b3480156101b057600080fd5b506101c46101bf366004611bb1565b610650565b60405190151581526020015b60405180910390f35b3480156101e557600080fd5b506101f96101f4366004611bf0565b610687565b005b34801561020757600080fd5b506101c4610216366004611bf0565b6106aa565b34801561022757600080fd5b506101f9610236366004611bf0565b610742565b34801561024757600080fd5b506101f9610256366004611c0d565b610762565b34801561026757600080fd5b506101c4610276366004611bf0565b3b151590565b34801561028857600080fd5b5061029c610297366004611c7e565b610979565b6040516101d09190611ccf565b3480156102b557600080fd5b506102c96102c4366004611c7e565b610aa9565b6040519081526020016101d0565b3480156102e357600080fd5b506101f96102f2366004611cdd565b610abe565b34801561030357600080fd5b506101f9610312366004611cdd565b610adf565b34801561032357600080fd5b506101c4610332366004611bf0565b610b6d565b34801561034357600080fd5b50610355610352366004611c7e565b90565b6040516101d09190611d0d565b34801561036e57600080fd5b506102c961037d366004611d67565b610b92565b34801561038e57600080fd5b5061029c61039d366004611e0e565b610be1565b3480156103ae57600080fd5b50436102c9565b3480156103c157600080fd5b506101f9610c18565b3480156103d657600080fd5b5061029c6103e5366004611e80565b610c2c565b3480156103f657600080fd5b5060fc546001600160a01b0316610355565b34801561041457600080fd5b506102c9610423366004611bf0565b6001600160a01b031690565b34801561043b57600080fd5b50610355610c5b565b34801561045057600080fd5b506101c461045f366004611cdd565b610c6a565b34801561047057600080fd5b506102c9600081565b34801561048557600080fd5b5061029c610494366004611ee2565b610c95565b3480156104a557600080fd5b50610355610ccf565b3480156104ba57600080fd5b506101f96104c9366004611bf0565b610d64565b3480156104da57600080fd5b506102c96104e9366004611f5e565b610d84565b3480156104fa57600080fd5b5061050e610509366004611fb0565b610db5565b6040516101d0919061203d565b34801561052757600080fd5b506102c9610536366004612050565b604080516020808201949094523081830152606080820193909352815180820390930183526080019052805191012090565b34801561057457600080fd5b50610355610df0565b34801561058957600080fd5b506101f9610598366004611cdd565b610e7b565b3480156105a957600080fd5b506102c96105b8366004611fb0565b610e97565b3480156105c957600080fd5b5061029c6105d8366004612072565b610ed9565b3480156105e957600080fd5b5061029c6105f83660046120a3565b610f00565b34801561060957600080fd5b506101f9610618366004611bf0565b61109d565b34801561062957600080fd5b506101f9610638366004611bf0565b6110bd565b6101f961064b366004612132565b611133565b60006001600160e01b03198216637965db0b60e01b148061068157506301ffc9a760e01b6001600160e01b03198316145b92915050565b61068f6111fd565b6106a76000805160206124ab83398151915282610e7b565b50565b6000806106b5610ccf565b90506001600160a01b0381166106ce5750600092915050565b604051630108762d60e41b81526001600160a01b0382169063108762d0906106fa908690600401611d0d565b602060405180830381865afa158015610717573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061073b91906121e2565b9392505050565b61074a6111fd565b6106a76000805160206124cb83398151915282610e7b565b600054610100900460ff16158080156107825750600054600160ff909116105b8061079c5750303b15801561079c575060005460ff166001145b6108045760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b6000805460ff191660011790558015610827576000805461ff0019166101001790555b6001600160a01b0386161580159061084757506001600160a01b03851615155b801561085b57506001600160a01b03831615155b6108995760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016107fb565b6108a161126c565b6108aa866110bd565b606580546001600160a01b038088166001600160a01b03199283161790925560fd805487841690831617905560fc8054928616929091169190911790556108f960006108f461129b565b6112a5565b6001600160a01b03821615610920576109206000805160206124ab83398151915283610abe565b61092b6000876112a5565b8015610971576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050565b606554604051636ed93cc560e01b8152600481018390526000916001600160a01b031690636ed93cc590602401602060405180830381865afa1580156109c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e791906121e2565b610a335760405162461bcd60e51b815260206004820152601f60248201527f436f6e646974696f6e206e6565647320746f2062652074696d6564206f75740060448201526064016107fb565b60655460405163295e072360e11b81526001600160a01b03909116906352bc0e4690610a669085906003906004016121ff565b6020604051808303816000875af1158015610a85573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106819190612213565b600090815260ca602052604090206001015490565b610ac782610aa9565b610ad0816112af565b610ada83836112c0565b505050565b610ae761129b565b6001600160a01b0316816001600160a01b031614610b5f5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084016107fb565b610b698282611347565b5050565b6000610b77610df0565b6001600160a01b0316826001600160a01b0316149050919050565b60008060005b8351811015610bda57838181518110610bb357610bb3612234565b602002602001015182610bc69190612260565b915080610bd281612273565b915050610b98565b5092915050565b6000610c0a88888888888860fc60009054906101000a90046001600160a01b0316896000610f00565b90505b979650505050505050565b610c206111fd565b610c2a60006113cc565b565b6000610c3661141e565b610c4f610c4161129b565b898989898989896000611477565b9050610c0d6001606655565b6033546001600160a01b031690565b600091825260ca602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6000610c9f61141e565b610cb7610caa61129b565b8a8a8a8a8a8a8a8a611477565b9050610cc36001606655565b98975050505050505050565b6065546000906001600160a01b0316610ce85750600090565b606560009054906101000a90046001600160a01b03166001600160a01b031663ab9de2306040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5f919061228c565b905090565b610d6c6111fd565b6106a76000805160206124ab83398151915282610abe565b6000610dab868686868660fc60009054906101000a90046001600160a01b03166001610e97565b9695505050505050565b606087878787878787604051602001610dd497969594939291906122a9565b6040516020818303038152906040529050979650505050505050565b600080610dfb610ccf565b90506001600160a01b038116610e1357600091505090565b806001600160a01b031663ce1b815f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e75919061228c565b91505090565b610e8482610aa9565b610e8d816112af565b610ada8383611347565b600087878787878787604051602001610eb697969594939291906122a9565b604051602081830303815290604052805190602001209050979650505050505050565b6000610dab868686868660fc60009054906101000a90046001600160a01b03166001610c2c565b6000610f1c6000805160206124ab83398151915261045f61129b565b80610fa95750836001600160a01b031663e985e9c589610f3a61129b565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610f85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa991906121e2565b80611027575060fd546001600160a01b03166349791a918a610fc961129b565b6040518363ffffffff1660e01b8152600401610fe69291906122e6565b602060405180830381865afa158015611003573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102791906121e2565b61107e5760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79204d61726b657420726f6c65206f7220617070726f766564466f72416044820152611b1b60f21b60648201526084016107fb565b61108f888b8b8a8a8a8a8a8a611477565b9a9950505050505050505050565b6110a56111fd565b6106a76000805160206124cb83398151915282610abe565b6110c56111fd565b6001600160a01b03811661112a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fb565b6106a7816113cc565b61113b61141e565b60008060008060008060008780602001905181019061115a91906122fd565b959c50929a509298509650909450925090506111866000805160206124cb83398151915261045f61129b565b80611197575061119761021661129b565b6111d95760405162461bcd60e51b8152602060048201526013602482015272141c9bde1e481c9bdb19481c995c5d5a5c9959606a1b60448201526064016107fb565b6111eb8a8a8989888888886000611477565b5050505050505050610ada6001606655565b61120561129b565b6001600160a01b0316611216610c5b565b6001600160a01b031614610c2a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107fb565b600054610100900460ff166112935760405162461bcd60e51b81526004016107fb9061236c565b610c2a6118ca565b6000610d5f611901565b610b6982826112c0565b6106a7816112bb61129b565b61192f565b6112ca8282610c6a565b610b6957600082815260ca602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561130361129b565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6113518282610c6a565b15610b6957600082815260ca602090815260408083206001600160a01b03851684529091529020805460ff1916905561138861129b565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002606654036114705760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107fb565b6002606655565b60008061148d8a6105368b8e8c8c8c8c8c610e97565b905060026065546040516319b6289160e11b8152600481018990526001600160a01b039091169063336c512290602401602060405180830381865afa1580156114da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fe9190612213565b600381111561150f5761150f611c97565b146115685760405162461bcd60e51b815260206004820152602360248201527f4c6f636b436f6e646974696f6e206e6565647320746f2062652046756c66696c6044820152621b195960ea1b60648201526084016107fb565b8487156118145784156115fa57604051637921219560e11b81526001600160a01b038d811660048301528a81166024830152604482018c9052606482018a905260a06084830152600060a483015282169063f242432a9060c4015b600060405180830381600087803b1580156115dd57600080fd5b505af11580156115f1573d6000803e3d6000fd5b50505050611814565b60fd60009054906101000a90046001600160a01b03166001600160a01b03166349791a918b8e6040518363ffffffff1660e01b815260040161163d9291906122e6565b602060405180830381865afa15801561165a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061167e91906121e2565b6116c35760405162461bcd60e51b815260206004820152601660248201527527b7363c9037bbb732b91037b910383937bb34b232b960511b60448201526064016107fb565b7f10db2492ff913239dc46d6f79a35650744688d5f5cb6fa1c310d84fc745b0b75816001600160a01b0316636fac889b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611722573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174691906123b7565b0361179c57604051631693933760e31b81526001600160a01b038a81166004830152602482018c9052604482018a90526064820186905260a06084830152600060a483015287169063b49c99b89060c4016115c3565b60405163731133e960e01b81526001600160a01b038a81166004830152602482018c9052604482018a9052608060648301526000608483015282169063731133e99060a401600060405180830381600087803b1580156117fb57600080fd5b505af115801561180f573d6000803e3d6000fd5b505050505b60006118578360028d604051806040016040528060148152602001732a3930b739b332b927232a21b7b73234ba34b7b760611b81525061185261129b565b611988565b9050896001600160a01b03168b8d7f122332ecf67f9735c1db76d2b5753c109e6fdb25695c0b89b99b1ad91f7620de8c878c6040516118b29392919092835260208301919091526001600160a01b0316604082015260600190565b60405180910390a49c9b505050505050505050505050565b600054610100900460ff166118f15760405162461bcd60e51b81526004016107fb9061236c565b610c2a6118fc61129b565b6113cc565b600060143610801590611918575061191833610b6d565b1561192a575060131936013560601c90565b503390565b6119398282610c6a565b610b695761194681611a04565b611951836020611a16565b6040516020016119629291906123d0565b60408051601f198184030181529082905262461bcd60e51b82526107fb9160040161203d565b60655460405163d1a8ae8160e01b81526000916001600160a01b03169063d1a8ae81906119c19089908890889088908c9060040161243f565b6020604051808303816000875af11580156119e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dab9190612213565b60606106816001600160a01b03831660145b60606000611a2583600261247c565b611a30906002612260565b6001600160401b03811115611a4757611a47611d21565b6040519080825280601f01601f191660200182016040528015611a71576020820181803683370190505b509050600360fc1b81600081518110611a8c57611a8c612234565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611abb57611abb612234565b60200101906001600160f81b031916908160001a9053506000611adf84600261247c565b611aea906001612260565b90505b6001811115611b62576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611b1e57611b1e612234565b1a60f81b828281518110611b3457611b34612234565b60200101906001600160f81b031916908160001a90535060049490941c93611b5b81612493565b9050611aed565b50831561073b5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016107fb565b600060208284031215611bc357600080fd5b81356001600160e01b03198116811461073b57600080fd5b6001600160a01b03811681146106a757600080fd5b600060208284031215611c0257600080fd5b813561073b81611bdb565b600080600080600060a08688031215611c2557600080fd5b8535611c3081611bdb565b94506020860135611c4081611bdb565b93506040860135611c5081611bdb565b92506060860135611c6081611bdb565b91506080860135611c7081611bdb565b809150509295509295909350565b600060208284031215611c9057600080fd5b5035919050565b634e487b7160e01b600052602160045260246000fd5b60048110611ccb57634e487b7160e01b600052602160045260246000fd5b9052565b602081016106818284611cad565b60008060408385031215611cf057600080fd5b823591506020830135611d0281611bdb565b809150509250929050565b6001600160a01b0391909116815260200190565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611d5f57611d5f611d21565b604052919050565b60006020808385031215611d7a57600080fd5b82356001600160401b0380821115611d9157600080fd5b818501915085601f830112611da557600080fd5b813581811115611db757611db7611d21565b8060051b9150611dc8848301611d37565b8181529183018401918481019088841115611de257600080fd5b938501935b83851015610cc357843582529385019390850190611de7565b80151581146106a757600080fd5b600080600080600080600060e0888a031215611e2957600080fd5b87359650602088013595506040880135611e4281611bdb565b94506060880135611e5281611bdb565b93506080880135925060a0880135915060c0880135611e7081611e00565b8091505092959891949750929550565b600080600080600080600060e0888a031215611e9b57600080fd5b87359650602088013595506040880135611eb481611bdb565b9450606088013593506080880135925060a0880135611ed281611bdb565b915060c0880135611e7081611e00565b600080600080600080600080610100898b031215611eff57600080fd5b88359750602089013596506040890135611f1881611bdb565b9550606089013594506080890135935060a0890135611f3681611bdb565b925060c0890135611f4681611e00565b8092505060e089013590509295985092959890939650565b600080600080600060a08688031215611f7657600080fd5b853594506020860135611f8881611bdb565b93506040860135611f9881611bdb565b94979396509394606081013594506080013592915050565b600080600080600080600060e0888a031215611fcb57600080fd5b873596506020880135611fdd81611bdb565b95506040880135611eb481611bdb565b60005b83811015612008578181015183820152602001611ff0565b50506000910152565b60008151808452612029816020860160208601611fed565b601f01601f19169290920160200192915050565b60208152600061073b6020830184612011565b6000806040838503121561206357600080fd5b50508035926020909101359150565b600080600080600060a0868803121561208a57600080fd5b85359450602086013593506040860135611f9881611bdb565b60008060008060008060008060006101208a8c0312156120c257600080fd5b8935985060208a0135975060408a01356120db81611bdb565b965060608a01356120eb81611bdb565b955060808a0135945060a08a0135935060c08a013561210981611bdb565b925060e08a013561211981611e00565b809250506101008a013590509295985092959850929598565b60008060006060848603121561214757600080fd5b833561215281611bdb565b9250602084810135925060408501356001600160401b038082111561217657600080fd5b818701915087601f83011261218a57600080fd5b81358181111561219c5761219c611d21565b6121ae601f8201601f19168501611d37565b915080825288848285010111156121c457600080fd5b80848401858401376000848284010152508093505050509250925092565b6000602082840312156121f457600080fd5b815161073b81611e00565b8281526040810161073b6020830184611cad565b60006020828403121561222557600080fd5b81516004811061073b57600080fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156106815761068161224a565b6000600182016122855761228561224a565b5060010190565b60006020828403121561229e57600080fd5b815161073b81611bdb565b9687526001600160a01b03958616602088015293851660408701526060860192909252608085015290911660a0830152151560c082015260e00190565b9182526001600160a01b0316602082015260400190565b600080600080600080600060e0888a03121561231857600080fd5b87519650602088015161232a81611bdb565b604089015190965061233b81611bdb565b80955050606088015193506080880151925060a088015161235b81611bdb565b60c0890151909250611e7081611e00565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b6000602082840312156123c957600080fd5b5051919050565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b815260008351612402816017850160208801611fed565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612433816028840160208801611fed565b01602801949350505050565b85815284602082015260a06040820152600061245e60a0830186612011565b6001600160a01b03851660608401529050610dab6080830184611cad565b80820281158282048414176106815761068161224a565b6000816124a2576124a261224a565b50600019019056fe0ea61da3a8a09ad801432653699f8c1860b1ae9d2ea4a141fadfd63227717bc877d72916e966418e6dc58a19999ae9934bef3f749f1547cde0a86e809f19c89ba26469706673582212208fe679fac17e1a7dfdaec7e4f37892cfc020a20ba8e3993db18adc4703e4ec8d64736f6c63430008110033",
1058
+ "address": "0x17a49d0942b987ebDE9D6400A045159bd3936541",
1059
+ "implementation": "0x17a49d0942b987ebDE9D6400A045159bd3936541",
1060
+ "version": "v3.5.7",
1061
+ "libraries": {}
1062
+ }