-
Notifications
You must be signed in to change notification settings - Fork 52
/
mastercopies.json
4134 lines (4134 loc) · 490 KB
/
mastercopies.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"RealityModuleETH": {
"2.0.0": {
"contractName": "RealityModuleETH",
"sourceName": "contracts/RealityModuleETH.sol",
"contractVersion": "2.0.0",
"compilerVersion": "v0.8.0+commit.c7dfd78e",
"factory": "0xce0042b868300000d44a59004da54a005ffdcf9f",
"address": "0x4e35DA39Fa5893a70A40Ce964F993d891E607cC0",
"bytecode": "0x60806040523480156200001157600080fd5b50604051620066e3380380620066e3833981810160405281019062000037919062000b2f565b8989898989898989898960008a8a8a8a8a8a8a8a8a8a604051602001620000689a9998979695949392919062000ee6565b60405160208183030381529060405290506200008a81620000a560201b60201c565b5050505050505050505050505050505050505050506200121f565b6000806000806000806000806000808a806020019051810190620000ca919062000a3f565b9950995099509950995099509950995099509950620000ee620004e160201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff16141562000161576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001589062001062565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161415620001d4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001cb9062000fb8565b60405180910390fd5b60008663ffffffff161162000220576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000217906200101e565b60405180910390fd5b60008463ffffffff1614806200024a5750603c858562000241919062001095565b63ffffffff1610155b6200028c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002839062000ffc565b60405180910390fd5b88606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555086606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083606a60086101000a81548163ffffffff021916908363ffffffff16021790555085606a60006101000a81548163ffffffff021916908363ffffffff16021790555084606a60046101000a81548163ffffffff021916908363ffffffff16021790555080606a600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082606b8190555081606981905550620004128a620005e060201b60201c565b606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8b8abdce7435e63696dbae9e46dc2ee5036195638ecfc5b45a3c45bcd7e3ed34606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051620004cc919062000ec9565b60405180910390a45050505050505050505050565b600060019054906101000a900460ff168062000508575060008054906101000a900460ff16155b6200054a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005419062000fda565b60405180910390fd5b60008060019054906101000a900460ff1615905080156200059b576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b620005ab620006f660201b60201c565b620005bb620007d560201b60201c565b8015620005dd5760008060016101000a81548160ff0219169083151502179055505b50565b620005f0620008d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000616620008dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200066f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006669062001040565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620006e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006d99062000f96565b60405180910390fd5b620006f3816200090660201b60201c565b50565b600060019054906101000a900460ff16806200071d575060008054906101000a900460ff16155b6200075f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007569062000fda565b60405180910390fd5b60008060019054906101000a900460ff161590508015620007b0576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8015620007d25760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680620007fc575060008054906101000a900460ff16155b6200083e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008359062000fda565b60405180910390fd5b60008060019054906101000a900460ff1615905080156200088f576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b620008af620008a3620008d460201b60201c565b6200090660201b60201c565b8015620008d15760008060016101000a81548160ff0219169083151502179055505b50565b600033905090565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050620009dd816200119d565b92915050565b600081519050620009f481620011b7565b92915050565b60008151905062000a0b81620011d1565b92915050565b60008151905062000a2281620011eb565b92915050565b60008151905062000a398162001205565b92915050565b6000806000806000806000806000806101408b8d03121562000a6057600080fd5b600062000a708d828e01620009e3565b9a5050602062000a838d828e01620009e3565b995050604062000a968d828e01620009e3565b985050606062000aa98d828e01620009fa565b975050608062000abc8d828e0162000a28565b96505060a062000acf8d828e0162000a28565b95505060c062000ae28d828e0162000a28565b94505060e062000af58d828e0162000a11565b93505061010062000b098d828e0162000a11565b92505061012062000b1d8d828e01620009e3565b9150509295989b9194979a5092959850565b6000806000806000806000806000806101408b8d03121562000b5057600080fd5b600062000b608d828e01620009cc565b9a5050602062000b738d828e01620009cc565b995050604062000b868d828e01620009cc565b985050606062000b998d828e01620009fa565b975050608062000bac8d828e0162000a28565b96505060a062000bbf8d828e0162000a28565b95505060c062000bd28d828e0162000a28565b94505060e062000be58d828e0162000a11565b93505061010062000bf98d828e0162000a11565b92505061012062000c0d8d828e01620009cc565b9150509295989b9194979a5092959850565b62000c2a81620010d0565b82525050565b62000c3b8162001146565b82525050565b600062000c5060268362001084565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600062000cb8601e8362001084565b91507f5461726765742063616e206e6f74206265207a65726f206164647265737300006000830152602082019050919050565b600062000cfa602e8362001084565b91507f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008301527f647920696e697469616c697a65640000000000000000000000000000000000006020830152604082019050919050565b600062000d6260448362001084565b91507f5468657265206e65656420746f206265206174206c656173742036307320626560008301527f747765656e20656e64206f6620636f6f6c646f776e20616e642065787069726160208301527f74696f6e000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b600062000df0601b8362001084565b91507f54696d656f75742068617320746f2062652067726561746572203000000000006000830152602082019050919050565b600062000e3260208362001084565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600062000e74601e8362001084565b91507f4176617461722063616e206e6f74206265207a65726f206164647265737300006000830152602082019050919050565b62000eb2816200112c565b82525050565b62000ec38162001136565b82525050565b600060208201905062000ee0600083018462000c1f565b92915050565b60006101408201905062000efe600083018d62000c1f565b62000f0d602083018c62000c1f565b62000f1c604083018b62000c1f565b62000f2b606083018a62000c30565b62000f3a608083018962000eb8565b62000f4960a083018862000eb8565b62000f5860c083018762000eb8565b62000f6760e083018662000ea7565b62000f7761010083018562000ea7565b62000f8761012083018462000c1f565b9b9a5050505050505050505050565b6000602082019050818103600083015262000fb18162000c41565b9050919050565b6000602082019050818103600083015262000fd38162000ca9565b9050919050565b6000602082019050818103600083015262000ff58162000ceb565b9050919050565b60006020820190508181036000830152620010178162000d53565b9050919050565b60006020820190508181036000830152620010398162000de1565b9050919050565b600060208201905081810360008301526200105b8162000e23565b9050919050565b600060208201905081810360008301526200107d8162000e65565b9050919050565b600082825260208201905092915050565b6000620010a28262001136565b9150620010af8362001136565b925082821015620010c557620010c46200116e565b5b828203905092915050565b6000620010dd826200110c565b9050919050565b6000620010f1826200110c565b9050919050565b60006200110582620010d0565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600062001153826200115a565b9050919050565b600062001167826200110c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b620011a881620010d0565b8114620011b457600080fd5b50565b620011c281620010e4565b8114620011ce57600080fd5b50565b620011dc81620010f8565b8114620011e857600080fd5b50565b620011f6816200112c565b81146200120257600080fd5b50565b620012108162001136565b81146200121c57600080fd5b50565b6154b4806200122f6000396000f3fe608060405234801561001057600080fd5b50600436106102535760003560e01c8063776d1a0111610146578063b5a73e75116100c3578063d4b8399211610087578063d4b839921461069a578063dc89a198146106b8578063e19a9dd9146106e8578063e319044b14610704578063f2fde38b14610720578063ff0394eb1461073c57610253565b8063b5a73e75146105f4578063c910638914610612578063cc3b43b114610630578063cd3ef95114610660578063d07acb5b1461067c57610253565b80638dcd26611161010a5780638dcd2661146105665780639a674ed114610582578063a4f9edbf1461059e578063aa7517e1146105ba578063b0eefabe146105d857610253565b8063776d1a01146104d25780637ceab3b1146104ee5780637dc0d1d01461050c57806388633b7b1461052a5780638da5cb5b1461054857610253565b806339eafa6f116101d45780635aef7de6116101985780635aef7de6146104545780635fc1188d146104725780636775ef691461048e5780636f2ddd93146104aa578063715018a6146104c857610253565b806339eafa6f1461038c5780633ea3c146146103bc578063425a2a3c146103d857806345c7980e146104085780634e1b83741461042457610253565b80631db61b541161021b5780631db61b54146102e857806321e314cb146103065780632351a877146103225780632b5000411461033e5780633408e4701461036e57610253565b8063086cfca8146102585780631138a87e1461027457806314604b8c1461029057806314f5a395146102ac5780631ba18b9b146102ca575b600080fd5b610272600480360381019061026d91906134e6565b61075a565b005b61028e60048036038101906102899190613994565b61089c565b005b6102aa60048036038101906102a591906138ae565b610b6d565b005b6102b4611235565b6040516102c19190614d42565b60405180910390f35b6102d261124b565b6040516102df9190614d42565b60405180910390f35b6102f0611261565b6040516102fd919061481b565b60405180910390f35b610320600480360381019061031b9190613ab9565b611288565b005b61033c600480360381019061033791906137dd565b6113a6565b005b610358600480360381019061035391906135ea565b6113be565b604051610365919061481b565b60405180910390f35b6103766113df565b6040516103839190614cb1565b60405180910390f35b6103a660048036038101906103a19190613771565b6113ec565b6040516103b3919061494f565b60405180910390f35b6103d660048036038101906103d191906136a2565b611454565b005b6103f260048036038101906103ed91906135ea565b61150e565b6040516103ff9190614912565b60405180910390f35b610422600480360381019061041d9190613771565b611609565b005b61043e600480360381019061043991906136f4565b611632565b60405161044b9190614800565b60405180910390f35b61045c611661565b60405161046991906146e0565b60405180910390f35b61048c60048036038101906104879190613a67565b611687565b005b6104a860048036038101906104a39190613ab9565b61170d565b005b6104b26117f6565b6040516104bf9190614cb1565b60405180910390f35b6104d06117fc565b005b6104ec60048036038101906104e791906134e6565b611884565b005b6104f66119c6565b60405161050391906146e0565b60405180910390f35b6105146119ec565b6040516105219190614934565b60405180910390f35b610532611a12565b60405161053f919061481b565b60405180910390f35b610550611a39565b60405161055d91906146e0565b60405180910390f35b610580600480360381019061057b9190613771565b611a63565b005b61059c60048036038101906105979190613ab9565b611a73565b005b6105b860048036038101906105b39190613730565b611b8b565b005b6105c2611fa4565b6040516105cf9190614cb1565b60405180910390f35b6105f260048036038101906105ed91906134e6565b611faa565b005b6105fc61206a565b60405161060991906146e0565b60405180910390f35b61061a612090565b60405161062791906146e0565b60405180910390f35b61064a60048036038101906106459190613a13565b6120ba565b604051610657919061481b565b60405180910390f35b61067a60048036038101906106759190613a67565b612181565b005b610684612207565b6040516106919190614d42565b60405180910390f35b6106a261221d565b6040516106af91906146e0565b60405180910390f35b6106d260048036038101906106cd91906136a2565b612243565b6040516106df919061481b565b60405180910390f35b61070260048036038101906106fd91906134e6565b61225b565b005b61071e600480360381019061071991906136a2565b612491565b005b61073a600480360381019061073591906134e6565b6127ee565b005b6107446128e6565b604051610751919061481b565b60405180910390f35b61076261290d565b73ffffffffffffffffffffffffffffffffffffffff16610780611a39565b73ffffffffffffffffffffffffffffffffffffffff16146107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cd90614b31565b60405180910390fd5b6000606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f52ae88b092de36f87fb43fe794eb1381023b9c1bce563a871154022c63dce34260405160405180910390a35050565b60006108a884846113ec565b90506000818051906020012090506000831115610a52576000606c60008381526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b81141561093d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093490614b51565b60405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d09cc57e836040518263ffffffff1660e01b81526004016109bc919061481b565b60206040518083038186803b1580156109d457600080fd5b505afa1580156109e8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0c91906136cb565b14610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390614b11565b60405180910390fd5b50610aab565b6000801b606c60008381526020019081526020016000205414610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190614a11565b60405180910390fd5b5b6000610ab783856120ba565b905080606c6000848152602001908152602001600020819055506000610add8486612915565b9050808214610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890614a31565b60405180910390fd5b86604051610b2f919061465b565b6040518091039020817fa1f5047031a658827550a2c4be07648493f3ac88a09c857b3961d1336429a31f60405160405180910390a350505050505050565b6000610b7988886113ec565b8051906020012090506000606c60008381526020019081526020016000205490506000801b811415610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790614c11565b60405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b811415610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90614c31565b60405180910390fd5b6000610c5588888888886113be565b905080898581518110610c91577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015114610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090614c91565b60405180910390fd5b600160001b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d09cc57e846040518263ffffffff1660e01b8152600401610d39919061481b565b60206040518083038186803b158015610d5157600080fd5b505afa158015610d65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8991906136cb565b14610dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc090614c51565b60405180910390fd5b6000606b5490506000811480610e895750606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166326d6c97b846040518263ffffffff1660e01b8152600401610e35919061481b565b60206040518083038186803b158015610e4d57600080fd5b505afa158015610e61573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e859190613a90565b8111155b610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf906149b1565b60405180910390fd5b6000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663acae8f4e856040518263ffffffff1660e01b8152600401610f25919061481b565b60206040518083038186803b158015610f3d57600080fd5b505afa158015610f51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f759190613ae2565b905042606a60049054906101000a900463ffffffff1663ffffffff168263ffffffff16610fa29190614e90565b10610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990614bd1565b60405180910390fd5b6000606a60089054906101000a900463ffffffff16905060008163ffffffff1614806110255750428163ffffffff168363ffffffff166110229190614e90565b10155b611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b90614a51565b60405180910390fd5b60008714806110ed5750606d600087815260200190815260200160002060008d60018a6110919190614fa8565b815181106110c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900460ff165b61112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390614971565b60405180910390fd5b606d6000878152602001908152602001600020600085815260200190815260200160002060009054906101000a900460ff161561119e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119590614bb1565b60405180910390fd5b6001606d6000888152602001908152602001600020600086815260200190815260200160002060006101000a81548160ff0219169083151502179055506111e78b8b8b8b612a11565b611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90614c71565b60405180910390fd5b50505050505050505050505050565b606a60049054906101000a900463ffffffff1681565b606a60009054906101000a900463ffffffff1681565b7f47e79534a245952e8b16893a336b85a3d9ea9fa8c573f3d803afb92a7946921860001b81565b61129061290d565b73ffffffffffffffffffffffffffffffffffffffff166112ae611a39565b73ffffffffffffffffffffffffffffffffffffffff1614611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90614b31565b60405180910390fd5b6000606a60089054906101000a900463ffffffff16905060008163ffffffff1614806113425750603c82826113399190614fdc565b63ffffffff1610155b611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137890614ab1565b60405180910390fd5b81606a60046101000a81548163ffffffff021916908363ffffffff1602179055505050565b6113b68686868686866000610b6d565b505050505050565b60006113cd868686868661150e565b80519060200120905095945050505050565b6000804690508091505090565b6060600061141f836040516020016114049190614575565b60405160208183030381529060405280519060200120612d06565b90508362e2909f60e81b8260405160200161143c93929190614672565b60405160208183030381529060405291505092915050565b61145c61290d565b73ffffffffffffffffffffffffffffffffffffffff1661147a611a39565b73ffffffffffffffffffffffffffffffffffffffff16146114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790614b31565b60405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b606c60008381526020019081526020016000208190555050565b6060600061151a6113df565b905060007f47e79534a245952e8b16893a336b85a3d9ea9fa8c573f3d803afb92a7946921860001b8230604051602001611556939291906148c0565b60405160208183030381529060405280519060200120905060007f72e9670a7ee00f5fbf1049b8c38e3f22fab7e9b85029e85cf9412f17fdd5c2ad60001b8989898051906020012089896040516020016115b596959493929190614836565b604051602081830303815290604052805190602001209050601960f81b600160f81b83836040516020016115ec949392919061458c565b604051602081830303815290604052935050505095945050505050565b600061161583836113ec565b905060008180519060200120905061162c81611454565b50505050565b606d6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61168f61290d565b73ffffffffffffffffffffffffffffffffffffffff166116ad611a39565b73ffffffffffffffffffffffffffffffffffffffff1614611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90614b31565b60405180910390fd5b8060698190555050565b61171561290d565b73ffffffffffffffffffffffffffffffffffffffff16611733611a39565b73ffffffffffffffffffffffffffffffffffffffff1614611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090614b31565b60405180910390fd5b60008163ffffffff16116117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990614ad1565b60405180910390fd5b80606a60006101000a81548163ffffffff021916908363ffffffff16021790555050565b60695481565b61180461290d565b73ffffffffffffffffffffffffffffffffffffffff16611822611a39565b73ffffffffffffffffffffffffffffffffffffffff1614611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90614b31565b60405180910390fd5b6118826000612eeb565b565b61188c61290d565b73ffffffffffffffffffffffffffffffffffffffff166118aa611a39565b73ffffffffffffffffffffffffffffffffffffffff1614611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f790614b31565b60405180910390fd5b6000606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90cc2f570a6eb594b1580ea3e41247d2d73a55281889e86bd4ec2fc29c7e62d660405160405180910390a35050565b606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f72e9670a7ee00f5fbf1049b8c38e3f22fab7e9b85029e85cf9412f17fdd5c2ad60001b81565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a6f8282600061089c565b5050565b611a7b61290d565b73ffffffffffffffffffffffffffffffffffffffff16611a99611a39565b73ffffffffffffffffffffffffffffffffffffffff1614611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690614b31565b60405180910390fd5b60008163ffffffff161480611b285750603c606a60049054906101000a900463ffffffff1682611b1f9190614fdc565b63ffffffff1610155b611b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5e90614ab1565b60405180910390fd5b80606a60086101000a81548163ffffffff021916908363ffffffff16021790555050565b6000806000806000806000806000808a806020019051810190611bae919061350f565b9950995099509950995099509950995099509950611bca612fb1565b600073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161415611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190614b71565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff161415611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca190614a71565b60405180910390fd5b60008663ffffffff1611611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90614ad1565b60405180910390fd5b60008463ffffffff161480611d1a5750603c8585611d119190614fdc565b63ffffffff1610155b611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5090614ab1565b60405180910390fd5b88606660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087606760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555086606860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083606a60086101000a81548163ffffffff021916908363ffffffff16021790555085606a60006101000a81548163ffffffff021916908363ffffffff16021790555084606a60046101000a81548163ffffffff021916908363ffffffff16021790555080606a600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082606b8190555081606981905550611ed78a6127ee565b606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8b8abdce7435e63696dbae9e46dc2ee5036195638ecfc5b45a3c45bcd7e3ed34606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051611f8f91906146e0565b60405180910390a45050505050505050505050565b606b5481565b611fb261290d565b73ffffffffffffffffffffffffffffffffffffffff16611fd0611a39565b73ffffffffffffffffffffffffffffffffffffffff1614612026576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201d90614b31565b60405180910390fd5b80606a600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606a600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000806069546000856040516020016120d5939291906146a7565b60405160208183030381529060405280519060200120905080606a600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606a60009054906101000a900463ffffffff16606b54606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16308860405160200161216297969594939291906145da565b6040516020818303038152906040528051906020012091505092915050565b61218961290d565b73ffffffffffffffffffffffffffffffffffffffff166121a7611a39565b73ffffffffffffffffffffffffffffffffffffffff16146121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f490614b31565b60405180910390fd5b80606b8190555050565b606a60089054906101000a900463ffffffff1681565b606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606c6020528060005260406000206000915090505481565b61226361290d565b73ffffffffffffffffffffffffffffffffffffffff16612281611a39565b73ffffffffffffffffffffffffffffffffffffffff16146122d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ce90614b31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146123f4578073ffffffffffffffffffffffffffffffffffffffff166301ffc9a77fe6d7a83a000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161236491906148f7565b60206040518083038186803b15801561237c57600080fd5b505afa158015612390573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b49190613679565b6123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea90614b91565b60405180910390fd5b5b80606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f1151116914515bc0891ff9047a6cb32cf902546f83066499bcf8ba33d2353fa2606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405161248691906146e0565b60405180910390a150565b6000606a60089054906101000a900463ffffffff16905060008163ffffffff16116124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e890614af1565b60405180910390fd5b6000606c60008481526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b81141561256f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612566906149d1565b60405180910390fd5b6000801b8114156125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac90614c11565b60405180910390fd5b600160001b606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d09cc57e836040518263ffffffff1660e01b8152600401612615919061481b565b60206040518083038186803b15801561262d57600080fd5b505afa158015612641573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061266591906136cb565b146126a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269c90614bf1565b60405180910390fd5b6000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663acae8f4e836040518263ffffffff1660e01b8152600401612702919061481b565b60206040518083038186803b15801561271a57600080fd5b505afa15801561272e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127529190613ae2565b9050428363ffffffff168263ffffffff1661276d9190614e90565b106127ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a4906149f1565b60405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b606c60008681526020019081526020016000208190555050505050565b6127f661290d565b73ffffffffffffffffffffffffffffffffffffffff16612814611a39565b73ffffffffffffffffffffffffffffffffffffffff161461286a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286190614b31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d190614991565b60405180910390fd5b6128e381612eeb565b50565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b81565b600033905090565b6000606860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663484b93c460695485606a600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16606a60009054906101000a900463ffffffff16600088606b546040518863ffffffff1660e01b81526004016129b79796959493929190614ccc565b602060405180830381600087803b1580156129d157600080fd5b505af11580156129e5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a0991906136cb565b905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff16606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b4357606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166375f0bb528686868660008060008060006040518060400160405280600281526020017f307800000000000000000000000000000000000000000000000000000000000081525060006040518c63ffffffff1660e01b8152600401612b109b9a99989796959493929190614747565b600060405180830381600087803b158015612b2a57600080fd5b505af1158015612b3e573d6000803e3d6000fd5b505050505b606760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663468721a7868686866040518563ffffffff1660e01b8152600401612ba494939291906146fb565b602060405180830381600087803b158015612bbe57600080fd5b505af1158015612bd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bf69190613679565b9050600073ffffffffffffffffffffffffffffffffffffffff16606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cfe57606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663932713687f3078000000000000000000000000000000000000000000000000000000000000836040518363ffffffff1660e01b8152600401612ccb929190614897565b600060405180830381600087803b158015612ce557600080fd5b505af1158015612cf9573d6000803e3d6000fd5b505050505b949350505050565b60606000604067ffffffffffffffff811115612d4b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d7d5781602001600182028036833780820191505090505b50905060005b6020811015612ee1576000600882612d9b9190614f4e565b85901b60f81c90506000601082612db29190614f1d565b90506000601083612dc391906152a1565b9050612dce8261309a565b85856002612ddc9190614f4e565b81518110612e13577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612e4b8161309a565b856001866002612e5b9190614f4e565b612e659190614e90565b81518110612e9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505050508080612ed9906151fa565b915050612d83565b5080915050919050565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600060019054906101000a900460ff1680612fd7575060008054906101000a900460ff16155b613016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300d90614a91565b60405180910390fd5b60008060019054906101000a900460ff161590508015613066576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b61306e6130d7565b6130766131b0565b80156130975760008060016101000a81548160ff0219169083151502179055505b50565b6000600a8260ff1610156130bf576030826130b59190614ee6565b60f81b90506130d2565b6057826130cc9190614ee6565b60f81b90505b919050565b600060019054906101000a900460ff16806130fd575060008054906101000a900460ff16155b61313c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313390614a91565b60405180910390fd5b60008060019054906101000a900460ff16159050801561318c576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156131ad5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806131d6575060008054906101000a900460ff16155b613215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320c90614a91565b60405180910390fd5b60008060019054906101000a900460ff161590508015613265576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b61327561327061290d565b612eeb565b80156132965760008060016101000a81548160ff0219169083151502179055505b50565b60006132ac6132a784614d8e565b614d5d565b905080838252602082019050828560208602820111156132cb57600080fd5b60005b858110156132fb57816132e188826133ea565b8452602084019350602083019250506001810190506132ce565b5050509392505050565b600061331861331384614dba565b614d5d565b90508281526020810184848401111561333057600080fd5b61333b8482856151b8565b509392505050565b600061335661335184614dea565b614d5d565b90508281526020810184848401111561336e57600080fd5b6133798482856151b8565b509392505050565b600081359050613390816153cd565b92915050565b6000815190506133a5816153e4565b92915050565b600082601f8301126133bc57600080fd5b81356133cc848260208601613299565b91505092915050565b6000815190506133e4816153fb565b92915050565b6000813590506133f981615412565b92915050565b60008151905061340e81615412565b92915050565b600082601f83011261342557600080fd5b8135613435848260208601613305565b91505092915050565b60008151905061344d81615429565b92915050565b60008135905061346281615440565b92915050565b600082601f83011261347957600080fd5b8135613489848260208601613343565b91505092915050565b6000813590506134a181615450565b92915050565b6000815190506134b681615450565b92915050565b6000813590506134cb81615467565b92915050565b6000815190506134e081615467565b92915050565b6000602082840312156134f857600080fd5b600061350684828501613381565b91505092915050565b6000806000806000806000806000806101408b8d03121561352f57600080fd5b600061353d8d828e01613396565b9a5050602061354e8d828e01613396565b995050604061355f8d828e01613396565b98505060606135708d828e0161343e565b97505060806135818d828e016134d1565b96505060a06135928d828e016134d1565b95505060c06135a38d828e016134d1565b94505060e06135b48d828e016134a7565b9350506101006135c68d828e016134a7565b9250506101206135d88d828e01613396565b9150509295989b9194979a5092959850565b600080600080600060a0868803121561360257600080fd5b600061361088828901613381565b955050602061362188828901613492565b945050604086013567ffffffffffffffff81111561363e57600080fd5b61364a88828901613414565b935050606061365b88828901613453565b925050608061366c88828901613492565b9150509295509295909350565b60006020828403121561368b57600080fd5b6000613699848285016133d5565b91505092915050565b6000602082840312156136b457600080fd5b60006136c2848285016133ea565b91505092915050565b6000602082840312156136dd57600080fd5b60006136eb848285016133ff565b91505092915050565b6000806040838503121561370757600080fd5b6000613715858286016133ea565b9250506020613726858286016133ea565b9150509250929050565b60006020828403121561374257600080fd5b600082013567ffffffffffffffff81111561375c57600080fd5b61376884828501613414565b91505092915050565b6000806040838503121561378457600080fd5b600083013567ffffffffffffffff81111561379e57600080fd5b6137aa85828601613468565b925050602083013567ffffffffffffffff8111156137c757600080fd5b6137d3858286016133ab565b9150509250929050565b60008060008060008060c087890312156137f657600080fd5b600087013567ffffffffffffffff81111561381057600080fd5b61381c89828a01613468565b965050602087013567ffffffffffffffff81111561383957600080fd5b61384589828a016133ab565b955050604061385689828a01613381565b945050606061386789828a01613492565b935050608087013567ffffffffffffffff81111561388457600080fd5b61389089828a01613414565b92505060a06138a189828a01613453565b9150509295509295509295565b600080600080600080600060e0888a0312156138c957600080fd5b600088013567ffffffffffffffff8111156138e357600080fd5b6138ef8a828b01613468565b975050602088013567ffffffffffffffff81111561390c57600080fd5b6139188a828b016133ab565b96505060406139298a828b01613381565b955050606061393a8a828b01613492565b945050608088013567ffffffffffffffff81111561395757600080fd5b6139638a828b01613414565b93505060a06139748a828b01613453565b92505060c06139858a828b01613492565b91505092959891949750929550565b6000806000606084860312156139a957600080fd5b600084013567ffffffffffffffff8111156139c357600080fd5b6139cf86828701613468565b935050602084013567ffffffffffffffff8111156139ec57600080fd5b6139f8868287016133ab565b9250506040613a0986828701613492565b9150509250925092565b60008060408385031215613a2657600080fd5b600083013567ffffffffffffffff811115613a4057600080fd5b613a4c85828601613468565b9250506020613a5d85828601613492565b9150509250929050565b600060208284031215613a7957600080fd5b6000613a8784828501613492565b91505092915050565b600060208284031215613aa257600080fd5b6000613ab0848285016134a7565b91505092915050565b600060208284031215613acb57600080fd5b6000613ad9848285016134bc565b91505092915050565b600060208284031215613af457600080fd5b6000613b02848285016134d1565b91505092915050565b6000613b178383613beb565b60208301905092915050565b613b2c81615022565b82525050565b613b3b81615010565b82525050565b613b52613b4d82615010565b615243565b82525050565b6000613b6382614e2a565b613b6d8185614e58565b9350613b7883614e1a565b8060005b83811015613ba9578151613b908882613b0b565b9750613b9b83614e4b565b925050600181019050613b7c565b5085935050505092915050565b613bbf81615034565b82525050565b613bd6613bd182615040565b615255565b82525050565b613be581615098565b82525050565b613bf481615098565b82525050565b613c0b613c0682615098565b615269565b82525050565b613c22613c1d8261506c565b61525f565b82525050565b613c31816150a2565b82525050565b6000613c4282614e35565b613c4c8185614e63565b9350613c5c8185602086016151c7565b613c658161538e565b840191505092915050565b613c798161513a565b82525050565b613c90613c8b8261513a565b615243565b82525050565b613c9f8161515e565b82525050565b613cb6613cb18261515e565b615243565b82525050565b613cc581615182565b82525050565b613cd481615194565b82525050565b613ce3816151a6565b82525050565b6000613cf482614e40565b613cfe8185614e74565b9350613d0e8185602086016151c7565b613d178161538e565b840191505092915050565b6000613d2d82614e40565b613d378185614e85565b9350613d478185602086016151c7565b80840191505092915050565b6000613d60602583614e74565b91507f50726576696f7573207472616e73616374696f6e206e6f74206578656375746560008301527f64207965740000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613dc6602683614e74565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e2c602083614e74565b91507f426f6e64206f6e207175657374696f6e206e6f74206869676820656e6f7567686000830152602082019050919050565b6000613e6c601f83614e74565b91507f50726f706f73616c20697320616c726561647920696e76616c696461746564006000830152602082019050919050565b6000613eac601a83614e74565b91507f416e7377657220686173206e6f742065787069726564207965740000000000006000830152602082019050919050565b6000613eec602383614e74565b91507f50726f706f73616c2068617320616c7265616479206265656e207375626d697460008301527f74656400000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f52601683614e74565b91507f556e6578706563746564207175657374696f6e206964000000000000000000006000830152602082019050919050565b6000613f92601283614e74565b91507f416e7377657220686173206578706972656400000000000000000000000000006000830152602082019050919050565b6000613fd2601e83614e74565b91507f5461726765742063616e206e6f74206265207a65726f206164647265737300006000830152602082019050919050565b6000614012602e83614e74565b91507f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008301527f647920696e697469616c697a65640000000000000000000000000000000000006020830152604082019050919050565b6000614078604483614e74565b91507f5468657265206e65656420746f206265206174206c656173742036307320626560008301527f747765656e20656e64206f6620636f6f6c646f776e20616e642065787069726160208301527f74696f6e000000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000614104601b83614e74565b91507f54696d656f75742068617320746f2062652067726561746572203000000000006000830152602082019050919050565b6000614144601983614e74565b91507f416e7377657273206172652076616c696420666f7265766572000000000000006000830152602082019050919050565b6000614184602583614e74565b91507f50726576696f75732070726f706f73616c20776173206e6f7420696e76616c6960008301527f64617465640000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006141ea602083614e74565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061422a602883614e74565b91507f546869732070726f706f73616c20686173206265656e206d61726b656420617360008301527f20696e76616c69640000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614290601e83614e74565b91507f4176617461722063616e206e6f74206265207a65726f206164647265737300006000830152602082019050919050565b60006142d0602083614e74565b91507f477561726420646f6573206e6f7420696d706c656d656e7420494552433136356000830152602082019050919050565b6000614310602083614e74565b91507f43616e6e6f742065786563757465207472616e73616374696f6e20616761696e6000830152602082019050919050565b6000614350601c83614e74565b91507f5761697420666f72206164646974696f6e616c20636f6f6c646f776e000000006000830152602082019050919050565b6000614390602083614e74565b91507f4f6e6c7920706f73697469766520616e73776572732063616e206578706972656000830152602082019050919050565b60006143d0602883614e74565b91507f4e6f207175657374696f6e2069642073657420666f722070726f76696465642060008301527f70726f706f73616c0000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614436601d83614e74565b91507f50726f706f73616c20686173206265656e20696e76616c6964617465640000006000830152602082019050919050565b6000614476601c83614e74565b91507f5472616e73616374696f6e20776173206e6f7420617070726f766564000000006000830152602082019050919050565b60006144b6601983614e74565b91507f4d6f64756c65207472616e73616374696f6e206661696c6564000000000000006000830152602082019050919050565b60006144f6601b83614e74565b91507f556e6578706563746564207472616e73616374696f6e206861736800000000006000830152602082019050919050565b61453281615113565b82525050565b61454961454482615113565b615285565b82525050565b6145588161511d565b82525050565b61456f61456a8261511d565b61528f565b82525050565b60006145818284613b58565b915081905092915050565b60006145988287613bc5565b6001820191506145a88286613bc5565b6001820191506145b88285613bfa565b6020820191506145c88284613bfa565b60208201915081905095945050505050565b60006145e6828a613bfa565b6020820191506145f68289613b41565b601482019150614606828861455e565b6004820191506146168287614538565b6020820191506146268286613c7f565b6014820191506146368285613ca5565b6014820191506146468284614538565b60208201915081905098975050505050505050565b60006146678284613d22565b915081905092915050565b600061467e8286613d22565b915061468a8285613c11565b60038201915061469a8284613d22565b9150819050949350505050565b60006146b38286614538565b6020820191506146c3828561455e565b6004820191506146d38284613d22565b9150819050949350505050565b60006020820190506146f56000830184613b32565b92915050565b60006080820190506147106000830187613b32565b61471d6020830186614529565b818103604083015261472f8185613c37565b905061473e6060830184613cbc565b95945050505050565b60006101608201905061475d600083018e613b32565b61476a602083018d614529565b818103604083015261477c818c613c37565b905061478b606083018b613cbc565b614798608083018a613ccb565b6147a560a0830189613ccb565b6147b260c0830188613ccb565b6147bf60e0830187613b32565b6147cd610100830186613b23565b8181036101208301526147e08185613c37565b90506147f0610140830184613b32565b9c9b505050505050505050505050565b60006020820190506148156000830184613bb6565b92915050565b60006020820190506148306000830184613bdc565b92915050565b600060c08201905061484b6000830189613bdc565b6148586020830188613b32565b6148656040830187614529565b6148726060830186613bdc565b61487f6080830185613cbc565b61488c60a0830184614529565b979650505050505050565b60006040820190506148ac6000830185613bdc565b6148b96020830184613bb6565b9392505050565b60006060820190506148d56000830186613bdc565b6148e26020830185614529565b6148ef6040830184613c96565b949350505050565b600060208201905061490c6000830184613c28565b92915050565b6000602082019050818103600083015261492c8184613c37565b905092915050565b60006020820190506149496000830184613c70565b92915050565b600060208201905081810360008301526149698184613ce9565b905092915050565b6000602082019050818103600083015261498a81613d53565b9050919050565b600060208201905081810360008301526149aa81613db9565b9050919050565b600060208201905081810360008301526149ca81613e1f565b9050919050565b600060208201905081810360008301526149ea81613e5f565b9050919050565b60006020820190508181036000830152614a0a81613e9f565b9050919050565b60006020820190508181036000830152614a2a81613edf565b9050919050565b60006020820190508181036000830152614a4a81613f45565b9050919050565b60006020820190508181036000830152614a6a81613f85565b9050919050565b60006020820190508181036000830152614a8a81613fc5565b9050919050565b60006020820190508181036000830152614aaa81614005565b9050919050565b60006020820190508181036000830152614aca8161406b565b9050919050565b60006020820190508181036000830152614aea816140f7565b9050919050565b60006020820190508181036000830152614b0a81614137565b9050919050565b60006020820190508181036000830152614b2a81614177565b9050919050565b60006020820190508181036000830152614b4a816141dd565b9050919050565b60006020820190508181036000830152614b6a8161421d565b9050919050565b60006020820190508181036000830152614b8a81614283565b9050919050565b60006020820190508181036000830152614baa816142c3565b9050919050565b60006020820190508181036000830152614bca81614303565b9050919050565b60006020820190508181036000830152614bea81614343565b9050919050565b60006020820190508181036000830152614c0a81614383565b9050919050565b60006020820190508181036000830152614c2a816143c3565b9050919050565b60006020820190508181036000830152614c4a81614429565b9050919050565b60006020820190508181036000830152614c6a81614469565b9050919050565b60006020820190508181036000830152614c8a816144a9565b9050919050565b60006020820190508181036000830152614caa816144e9565b9050919050565b6000602082019050614cc66000830184614529565b92915050565b600060e082019050614ce1600083018a614529565b8181036020830152614cf38189613ce9565b9050614d026040830188613b32565b614d0f606083018761454f565b614d1c6080830186613cda565b614d2960a0830185614529565b614d3660c0830184614529565b98975050505050505050565b6000602082019050614d57600083018461454f565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614d8457614d8361535f565b5b8060405250919050565b600067ffffffffffffffff821115614da957614da861535f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614dd557614dd461535f565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614e0557614e0461535f565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e9b82615113565b9150614ea683615113565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614edb57614eda6152d2565b5b828201905092915050565b6000614ef18261512d565b9150614efc8361512d565b92508260ff03821115614f1257614f116152d2565b5b828201905092915050565b6000614f288261512d565b9150614f338361512d565b925082614f4357614f42615301565b5b828204905092915050565b6000614f5982615113565b9150614f6483615113565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f9d57614f9c6152d2565b5b828202905092915050565b6000614fb382615113565b9150614fbe83615113565b925082821015614fd157614fd06152d2565b5b828203905092915050565b6000614fe78261511d565b9150614ff28361511d565b925082821015615005576150046152d2565b5b828203905092915050565b600061501b826150f3565b9050919050565b600061502d826150f3565b9050919050565b60008115159050919050565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b60007fffffff000000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006150d982615010565b9050919050565b60008190506150ee826153b9565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60006151458261514c565b9050919050565b6000615157826150f3565b9050919050565b600061516982615170565b9050919050565b600061517b826150f3565b9050919050565b600061518d826150e0565b9050919050565b600061519f82615113565b9050919050565b60006151b18261511d565b9050919050565b82818337600083830152505050565b60005b838110156151e55780820151818401526020810190506151ca565b838111156151f4576000848401525b50505050565b600061520582615113565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615238576152376152d2565b5b600182019050919050565b600061524e82615273565b9050919050565b6000819050919050565b6000819050919050565b6000819050919050565b600061527e826153ac565b9050919050565b6000819050919050565b600061529a8261539f565b9050919050565b60006152ac8261512d565b91506152b78361512d565b9250826152c7576152c6615301565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160e01b9050919050565b60008160601b9050919050565b600281106153ca576153c9615330565b5b50565b6153d681615010565b81146153e157600080fd5b50565b6153ed81615022565b81146153f857600080fd5b50565b61540481615034565b811461540f57600080fd5b50565b61541b81615098565b811461542657600080fd5b50565b615432816150ce565b811461543d57600080fd5b50565b6002811061544d57600080fd5b50565b61545981615113565b811461546457600080fd5b50565b6154708161511d565b811461547b57600080fd5b5056fea2646970667358221220c3398c0ce1a63ebab7c7d774e29363fc2104e5baf50b56647fd2083b2e5ae4db64736f6c63430008000033",
"constructorArgs": {
"types": [
"address",
"address",
"address",
"address",
"uint32",
"uint32",
"uint32",
"uint256",
"uint256",
"address"
],
"values": [
"0x0000000000000000000000000000000000000001",
"0x0000000000000000000000000000000000000001",
"0x0000000000000000000000000000000000000001",
"0x0000000000000000000000000000000000000001",
1,
61,
0,
0,
0,
"0x0000000000000000000000000000000000000001"
]
},
"salt": "0x0000000000000000000000000000000000000000000000000000000000000000",
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"internalType": "address",
"name": "_avatar",
"type": "address"
},
{
"internalType": "address",
"name": "_target",
"type": "address"
},
{
"internalType": "contract RealitioV3",
"name": "_oracle",
"type": "address"
},
{
"internalType": "uint32",
"name": "timeout",
"type": "uint32"
},
{
"internalType": "uint32",
"name": "cooldown",
"type": "uint32"
},
{
"internalType": "uint32",
"name": "expiration",
"type": "uint32"
},
{
"internalType": "uint256",
"name": "bond",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "templateId",
"type": "uint256"
},
{
"internalType": "address",
"name": "arbitrator",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousAvatar",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newAvatar",
"type": "address"
}
],
"name": "AvatarSet",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "guard",
"type": "address"
}
],
"name": "ChangedGuard",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "questionId",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "string",
"name": "proposalId",
"type": "string"
}
],
"name": "ProposalQuestionCreated",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "initiator",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "avatar",
"type": "address"
},
{
"indexed": false,
"internalType": "address",
"name": "target",
"type": "address"
}
],
"name": "RealityModuleSetup",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousTarget",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newTarget",
"type": "address"
}
],
"name": "TargetSet",
"type": "event"
},
{
"inputs": [],
"name": "DOMAIN_SEPARATOR_TYPEHASH",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "INVALIDATED",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "TRANSACTION_TYPEHASH",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "proposalId",
"type": "string"
},
{
"internalType": "bytes32[]",
"name": "txHashes",
"type": "bytes32[]"
}
],
"name": "addProposal",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "proposalId",
"type": "string"
},
{
"internalType": "bytes32[]",
"name": "txHashes",
"type": "bytes32[]"
},
{
"internalType": "uint256",
"name": "nonce",
"type": "uint256"
}
],
"name": "addProposalWithNonce",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "answerExpiration",
"outputs": [
{
"internalType": "uint32",
"name": "",
"type": "uint32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "avatar",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "proposalId",
"type": "string"
},
{
"internalType": "bytes32[]",
"name": "txHashes",
"type": "bytes32[]"
}
],
"name": "buildQuestion",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "proposalId",
"type": "string"
},
{
"internalType": "bytes32[]",
"name": "txHashes",
"type": "bytes32[]"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
},
{
"internalType": "enum Enum.Operation",
"name": "operation",
"type": "uint8"
}
],
"name": "executeProposal",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "proposalId",
"type": "string"
},
{
"internalType": "bytes32[]",
"name": "txHashes",
"type": "bytes32[]"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
},
{
"internalType": "enum Enum.Operation",
"name": "operation",
"type": "uint8"
},
{
"internalType": "uint256",
"name": "txIndex",
"type": "uint256"
}
],
"name": "executeProposalWithIndex",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"name": "executedProposalTransactions",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
},
{
"internalType": "enum Enum.Operation",
"name": "operation",
"type": "uint8"
},
{
"internalType": "uint256",
"name": "nonce",
"type": "uint256"
}
],
"name": "generateTransactionHashData",
"outputs": [
{
"internalType": "bytes",
"name": "",
"type": "bytes"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getChainId",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getGuard",
"outputs": [
{
"internalType": "address",
"name": "_guard",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "question",
"type": "string"
},
{
"internalType": "uint256",
"name": "nonce",
"type": "uint256"
}
],
"name": "getQuestionId",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
},
{
"internalType": "enum Enum.Operation",
"name": "operation",
"type": "uint8"
},
{
"internalType": "uint256",
"name": "nonce",
"type": "uint256"
}
],
"name": "getTransactionHash",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "guard",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "proposalId",
"type": "string"
},
{
"internalType": "bytes32[]",
"name": "txHashes",
"type": "bytes32[]"
}
],
"name": "markProposalAsInvalid",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "questionHash",
"type": "bytes32"
}
],
"name": "markProposalAsInvalidByHash",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "questionHash",
"type": "bytes32"
}
],
"name": "markProposalWithExpiredAnswerAsInvalid",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "minimumBond",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "oracle",
"outputs": [
{
"internalType": "contract RealitioV3",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "questionArbitrator",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "questionCooldown",
"outputs": [
{
"internalType": "uint32",
"name": "",
"type": "uint32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"name": "questionIds",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "questionTimeout",
"outputs": [
{
"internalType": "uint32",
"name": "",
"type": "uint32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint32",
"name": "expiration",
"type": "uint32"
}
],
"name": "setAnswerExpiration",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "arbitrator",
"type": "address"
}
],
"name": "setArbitrator",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_avatar",
"type": "address"
}
],
"name": "setAvatar",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_guard",
"type": "address"
}
],
"name": "setGuard",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "bond",
"type": "uint256"
}
],
"name": "setMinimumBond",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint32",
"name": "cooldown",
"type": "uint32"
}
],
"name": "setQuestionCooldown",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint32",
"name": "timeout",
"type": "uint32"
}
],
"name": "setQuestionTimeout",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_target",
"type": "address"
}
],
"name": "setTarget",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "templateId",
"type": "uint256"
}
],
"name": "setTemplate",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes",
"name": "initParams",
"type": "bytes"
}
],
"name": "setUp",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "target",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "template",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"compilerInput": {
"language": "Solidity",
"settings": {
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs",
"useLiteralContent": true
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": [],
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
},
"sources": {
"@gnosis.pm/safe-contracts/contracts/common/Enum.sol": {
"content": "// SPDX-License-Identifier: LGPL-3.0-only\npragma solidity >=0.7.0 <0.9.0;\n\n/// @title Enum - Collection of enums\n/// @author Richard Meissner - <richard@gnosis.pm>\ncontract Enum {\n enum Operation {Call, DelegateCall}\n}\n"
},
"@gnosis.pm/safe-contracts/contracts/interfaces/IERC165.sol": {
"content": "// SPDX-License-Identifier: LGPL-3.0-only\npragma solidity >=0.7.0 <0.9.0;\n\n/// @notice More details at https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol\ninterface IERC165 {\n /**\n * @dev Returns true if this contract implements the interface defined by\n * `interfaceId`. See the corresponding\n * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n * to learn more about how these ids are created.\n *\n * This function call must use less than 30 000 gas.\n */\n function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"
},
"@gnosis.pm/zodiac/contracts/core/Module.sol": {
"content": "// SPDX-License-Identifier: LGPL-3.0-only\n\n/// @title Module Interface - A contract that can pass messages to a Module Manager contract if enabled by that contract.\npragma solidity >=0.7.0 <0.9.0;\n\nimport \"../interfaces/IAvatar.sol\";\nimport \"../factory/FactoryFriendly.sol\";\nimport \"../guard/Guardable.sol\";\n\nabstract contract Module is FactoryFriendly, Guardable {\n /// @dev Emitted each time the avatar is set.\n event AvatarSet(address indexed previousAvatar, address indexed newAvatar);\n /// @dev Emitted each time the Target is set.\n event TargetSet(address indexed previousTarget, address indexed newTarget);\n\n /// @dev Address that will ultimately execute function calls.\n address public avatar;\n /// @dev Address that this module will pass transactions to.\n address public target;\n\n /// @dev Sets the avatar to a new avatar (`newAvatar`).\n /// @notice Can only be called by the current owner.\n function setAvatar(address _avatar) public onlyOwner {\n address previousAvatar = avatar;\n avatar = _avatar;\n emit AvatarSet(previousAvatar, _avatar);\n }\n\n /// @dev Sets the target to a new target (`newTarget`).\n /// @notice Can only be called by the current owner.\n function setTarget(address _target) public onlyOwner {\n address previousTarget = target;\n target = _target;\n emit TargetSet(previousTarget, _target);\n }\n\n /// @dev Passes a transaction to be executed by the avatar.\n /// @notice Can only be called by this contract.\n /// @param to Destination address of module transaction.\n /// @param value Ether value of module transaction.\n /// @param data Data payload of module transaction.\n /// @param operation Operation type of module transaction: 0 == call, 1 == delegate call.\n function exec(\n address to,\n uint256 value,\n bytes memory data,\n Enum.Operation operation\n ) internal returns (bool success) {\n /// check if a transactioon guard is enabled.\n if (guard != address(0)) {\n IGuard(guard).checkTransaction(\n /// Transaction info used by module transactions\n to,\n value,\n data,\n operation,\n /// Zero out the redundant transaction information only used for Safe multisig transctions\n 0,\n 0,\n 0,\n address(0),\n payable(0),\n bytes(\"0x\"),\n address(0)\n );\n }\n success = IAvatar(target).execTransactionFromModule(\n to,\n value,\n data,\n operation\n );\n if (guard != address(0)) {\n IGuard(guard).checkAfterExecution(bytes32(\"0x\"), success);\n }\n return success;\n }\n\n /// @dev Passes a transaction to be executed by the target and returns data.\n /// @notice Can only be called by this contract.\n /// @param to Destination address of module transaction.\n /// @param value Ether value of module transaction.\n /// @param data Data payload of module transaction.\n /// @param operation Operation type of module transaction: 0 == call, 1 == delegate call.\n function execAndReturnData(\n address to,\n uint256 value,\n bytes memory data,\n Enum.Operation operation\n ) internal returns (bool success, bytes memory returnData) {\n /// check if a transactioon guard is enabled.\n if (guard != address(0)) {\n IGuard(guard).checkTransaction(\n /// Transaction info used by module transactions\n to,\n value,\n data,\n operation,\n /// Zero out the redundant transaction information only used for Safe multisig transctions\n 0,\n 0,\n 0,\n address(0),\n payable(0),\n bytes(\"0x\"),\n address(0)\n );\n }\n (success, returnData) = IAvatar(target)\n .execTransactionFromModuleReturnData(to, value, data, operation);\n if (guard != address(0)) {\n IGuard(guard).checkAfterExecution(bytes32(\"0x\"), success);\n }\n return (success, returnData);\n }\n}\n"
},
"@gnosis.pm/zodiac/contracts/factory/FactoryFriendly.sol": {
"content": "// SPDX-License-Identifier: LGPL-3.0-only\n\n/// @title Zodiac FactoryFriendly - A contract that allows other contracts to be initializable and pass bytes as arguments to define contract state\npragma solidity >=0.7.0 <0.9.0;\n\nimport \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\";\n\nabstract contract FactoryFriendly is OwnableUpgradeable {\n function setUp(bytes memory initializeParams) public virtual;\n}\n"
},
"@gnosis.pm/zodiac/contracts/guard/BaseGuard.sol": {
"content": "// SPDX-License-Identifier: LGPL-3.0-only\npragma solidity >=0.7.0 <0.9.0;\n\nimport \"@gnosis.pm/safe-contracts/contracts/common/Enum.sol\";\nimport \"@gnosis.pm/safe-contracts/contracts/interfaces/IERC165.sol\";\nimport \"../interfaces/IGuard.sol\";\n\nabstract contract BaseGuard is IERC165 {\n function supportsInterface(bytes4 interfaceId)\n external\n pure\n override\n returns (bool)\n {\n return\n interfaceId == type(IGuard).interfaceId || // 0xe6d7a83a\n interfaceId == type(IERC165).interfaceId; // 0x01ffc9a7\n }\n\n /// Module transactions only use the first four parameters: to, value, data, and operation.\n /// Module.sol hardcodes the remaining parameters as 0 since they are not used for module transactions.\n /// This interface is used to maintain compatibilty with Gnosis Safe transaction guards.\n function checkTransaction(\n address to,\n uint256 value,\n bytes memory data,\n Enum.Operation operation,\n uint256 safeTxGas,\n uint256 baseGas,\n uint256 gasPrice,\n address gasToken,\n address payable refundReceiver,\n bytes memory signatures,\n address msgSender\n ) external virtual;\n\n function checkAfterExecution(bytes32 txHash, bool success) external virtual;\n}\n"
},
"@gnosis.pm/zodiac/contracts/guard/Guardable.sol": {
"content": "// SPDX-License-Identifier: LGPL-3.0-only\npragma solidity >=0.7.0 <0.9.0;\n\nimport \"@gnosis.pm/safe-contracts/contracts/common/Enum.sol\";\nimport \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\";\nimport \"@gnosis.pm/safe-contracts/contracts/interfaces/IERC165.sol\";\nimport \"./BaseGuard.sol\";\n\n/// @title Guardable - A contract that manages fallback calls made to this contract\ncontract Guardable is OwnableUpgradeable {\n event ChangedGuard(address guard);\n\n address public guard;\n\n /// @dev Set a guard that checks transactions before execution\n /// @param _guard The address of the guard to be used or the 0 address to disable the guard\n function setGuard(address _guard) external onlyOwner {\n if (_guard != address(0)) {\n require(\n BaseGuard(_guard).supportsInterface(type(IGuard).interfaceId),\n \"Guard does not implement IERC165\"\n );\n }\n guard = _guard;\n emit ChangedGuard(guard);\n }\n\n function getGuard() external view returns (address _guard) {\n return guard;\n }\n}\n"
},
"@gnosis.pm/zodiac/contracts/interfaces/IAvatar.sol": {
"content": "// SPDX-License-Identifier: LGPL-3.0-only\n\n/// @title Zodiac Avatar - A contract that manages modules that can execute transactions via this contract.\npragma solidity >=0.7.0 <0.9.0;\n\nimport \"@gnosis.pm/safe-contracts/contracts/common/Enum.sol\";\n\ninterface IAvatar {\n /// @dev Enables a module on the avatar.\n /// @notice Can only be called by the avatar.\n /// @notice Modules should be stored as a linked list.\n /// @notice Must emit EnabledModule(address module) if successful.\n /// @param module Module to be enabled.\n function enableModule(address module) external;\n\n /// @dev Disables a module on the avatar.\n /// @notice Can only be called by the avatar.\n /// @notice Must emit DisabledModule(address module) if successful.\n /// @param prevModule Address that pointed to the module to be removed in the linked list\n /// @param module Module to be removed.\n function disableModule(address prevModule, address module) external;\n\n /// @dev Allows a Module to execute a transaction.\n /// @notice Can only be called by an enabled module.\n /// @notice Must emit ExecutionFromModuleSuccess(address module) if successful.\n /// @notice Must emit ExecutionFromModuleFailure(address module) if unsuccessful.\n /// @param to Destination address of module transaction.\n /// @param value Ether value of module transaction.\n /// @param data Data payload of module transaction.\n /// @param operation Operation type of module transaction: 0 == call, 1 == delegate call.\n function execTransactionFromModule(\n address to,\n uint256 value,\n bytes memory data,\n Enum.Operation operation\n ) external returns (bool success);\n\n /// @dev Allows a Module to execute a transaction and return data\n /// @notice Can only be called by an enabled module.\n /// @notice Must emit ExecutionFromModuleSuccess(address module) if successful.\n /// @notice Must emit ExecutionFromModuleFailure(address module) if unsuccessful.\n /// @param to Destination address of module transaction.\n /// @param value Ether value of module transaction.\n /// @param data Data payload of module transaction.\n /// @param operation Operation type of module transaction: 0 == call, 1 == delegate call.\n function execTransactionFromModuleReturnData(\n address to,\n uint256 value,\n bytes memory data,\n Enum.Operation operation\n ) external returns (bool success, bytes memory returnData);\n\n /// @dev Returns if an module is enabled\n /// @return True if the module is enabled\n function isModuleEnabled(address module) external view returns (bool);\n\n /// @dev Returns array of modules.\n /// @param start Start of the page.\n /// @param pageSize Maximum number of modules that should be returned.\n /// @return array Array of modules.\n /// @return next Start of the next page.\n function getModulesPaginated(address start, uint256 pageSize)\n external\n view\n returns (address[] memory array, address next);\n}\n"
},
"@gnosis.pm/zodiac/contracts/interfaces/IGuard.sol": {
"content": "// SPDX-License-Identifier: LGPL-3.0-only\npragma solidity >=0.7.0 <0.9.0;\n\nimport \"@gnosis.pm/safe-contracts/contracts/common/Enum.sol\";\n\ninterface IGuard {\n function checkTransaction(\n address to,\n uint256 value,\n bytes memory data,\n Enum.Operation operation,\n uint256 safeTxGas,\n uint256 baseGas,\n uint256 gasPrice,\n address gasToken,\n address payable refundReceiver,\n bytes memory signatures,\n address msgSender\n ) external;\n\n function checkAfterExecution(bytes32 txHash, bool success) external;\n}\n"
},
"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\nimport \"../utils/ContextUpgradeable.sol\";\nimport \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * By default, the owner account will be the one that deploys the contract. This\n * can later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n function __Ownable_init() internal initializer {\n __Context_init_unchained();\n __Ownable_init_unchained();\n }\n\n function __Ownable_init_unchained() internal initializer {\n _setOwner(_msgSender());\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n _;\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions anymore. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby removing any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _setOwner(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n require(newOwner != address(0), \"Ownable: new owner is the zero address\");\n _setOwner(newOwner);\n }\n\n function _setOwner(address newOwner) private {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n uint256[49] private __gap;\n}\n"
},
"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/**\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n *\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n *\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n */\nabstract contract Initializable {\n /**\n * @dev Indicates that the contract has been initialized.\n */\n bool private _initialized;\n\n /**\n * @dev Indicates that the contract is in the process of being initialized.\n */\n bool private _initializing;\n\n /**\n * @dev Modifier to protect an initializer function from being invoked twice.\n */\n modifier initializer() {\n require(_initializing || !_initialized, \"Initializable: contract is already initialized\");\n\n bool isTopLevelCall = !_initializing;\n if (isTopLevelCall) {\n _initializing = true;\n _initialized = true;\n }\n\n _;\n\n if (isTopLevelCall) {\n _initializing = false;\n }\n }\n}\n"
},
"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\nimport \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract ContextUpgradeable is Initializable {\n function __Context_init() internal initializer {\n __Context_init_unchained();\n }\n\n function __Context_init_unchained() internal initializer {\n }\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n uint256[50] private __gap;\n}\n"
},
"contracts/RealityModule.sol": {
"content": "// SPDX-License-Identifier: LGPL-3.0-only\npragma solidity >=0.8.0;\n\nimport \"@gnosis.pm/zodiac/contracts/core/Module.sol\";\nimport \"./interfaces/RealitioV3.sol\";\n\nabstract contract RealityModule is Module {\n bytes32 public constant INVALIDATED =\n 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;\n\n bytes32 public constant DOMAIN_SEPARATOR_TYPEHASH =\n 0x47e79534a245952e8b16893a336b85a3d9ea9fa8c573f3d803afb92a79469218;\n // keccak256(\n // \"EIP712Domain(uint256 chainId,address verifyingContract)\"\n // );\n\n bytes32 public constant TRANSACTION_TYPEHASH =\n 0x72e9670a7ee00f5fbf1049b8c38e3f22fab7e9b85029e85cf9412f17fdd5c2ad;\n // keccak256(\n // \"Transaction(address to,uint256 value,bytes data,uint8 operation,uint256 nonce)\"\n // );\n\n event ProposalQuestionCreated(\n bytes32 indexed questionId,\n string indexed proposalId\n );\n\n event RealityModuleSetup(\n address indexed initiator,\n address indexed owner,\n address indexed avatar,\n address target\n );\n\n RealitioV3 public oracle;\n uint256 public template;\n uint32 public questionTimeout;\n uint32 public questionCooldown;\n uint32 public answerExpiration;\n address public questionArbitrator;\n uint256 public minimumBond;\n\n // Mapping of question hash to question id. Special case: INVALIDATED for question hashes that have been invalidated\n mapping(bytes32 => bytes32) public questionIds;\n // Mapping of questionHash to transactionHash to execution state\n mapping(bytes32 => mapping(bytes32 => bool))\n public executedProposalTransactions;\n\n /// @param _owner Address of the owner\n /// @param _avatar Address of the avatar (e.g. a Safe)\n /// @param _target Address of the contract that will call exec function\n /// @param _oracle Address of the oracle (e.g. Realitio)\n /// @param timeout Timeout in seconds that should be required for the oracle\n /// @param cooldown Cooldown in seconds that should be required after a oracle provided answer\n /// @param expiration Duration that a positive answer of the oracle is valid in seconds (or 0 if valid forever)\n /// @param bond Minimum bond that is required for an answer to be accepted\n /// @param templateId ID of the template that should be used for proposal questions (see https://github.com/realitio/realitio-dapp#structuring-and-fetching-information)\n /// @param arbitrator Address of the arbitrator that will secure the oracle resolution\n /// @notice There need to be at least 60 seconds between end of cooldown and expiration\n constructor(\n address _owner,\n address _avatar,\n address _target,\n RealitioV3 _oracle,\n uint32 timeout,\n uint32 cooldown,\n uint32 expiration,\n uint256 bond,\n uint256 templateId,\n address arbitrator\n ) {\n bytes memory initParams = abi.encode(\n _owner,\n _avatar,\n _target,\n _oracle,\n timeout,\n cooldown,\n expiration,\n bond,\n templateId,\n arbitrator\n );\n setUp(initParams);\n }\n\n function setUp(bytes memory initParams) public override {\n (\n address _owner,\n address _avatar,\n address _target,\n RealitioV3 _oracle,\n uint32 timeout,\n uint32 cooldown,\n uint32 expiration,\n uint256 bond,\n uint256 templateId,\n address arbitrator\n ) = abi.decode(\n initParams,\n (\n address,\n address,\n address,\n RealitioV3,\n uint32,\n uint32,\n uint32,\n uint256,\n uint256,\n address\n )\n );\n __Ownable_init();\n require(_avatar != address(0), \"Avatar can not be zero address\");\n require(_target != address(0), \"Target can not be zero address\");\n require(timeout > 0, \"Timeout has to be greater 0\");\n require(\n expiration == 0 || expiration - cooldown >= 60,\n \"There need to be at least 60s between end of cooldown and expiration\"\n );\n avatar = _avatar;\n target = _target;\n oracle = _oracle;\n answerExpiration = expiration;\n questionTimeout = timeout;\n questionCooldown = cooldown;\n questionArbitrator = arbitrator;\n minimumBond = bond;\n template = templateId;\n\n transferOwnership(_owner);\n\n emit RealityModuleSetup(msg.sender, _owner, avatar, target);\n }\n\n /// @notice This can only be called by the owner\n function setQuestionTimeout(uint32 timeout) public onlyOwner {\n require(timeout > 0, \"Timeout has to be greater 0\");\n questionTimeout = timeout;\n }\n\n /// @dev Sets the cooldown before an answer is usable.\n /// @param cooldown Cooldown in seconds that should be required after a oracle provided answer\n /// @notice This can only be called by the owner\n /// @notice There need to be at least 60 seconds between end of cooldown and expiration\n function setQuestionCooldown(uint32 cooldown) public onlyOwner {\n uint32 expiration = answerExpiration;\n require(\n expiration == 0 || expiration - cooldown >= 60,\n \"There need to be at least 60s between end of cooldown and expiration\"\n );\n questionCooldown = cooldown;\n }\n\n /// @dev Sets the duration for which a positive answer is valid.\n /// @param expiration Duration that a positive answer of the oracle is valid in seconds (or 0 if valid forever)\n /// @notice A proposal with an expired answer is the same as a proposal that has been marked invalid\n /// @notice There need to be at least 60 seconds between end of cooldown and expiration\n /// @notice This can only be called by the owner\n function setAnswerExpiration(uint32 expiration) public onlyOwner {\n require(\n expiration == 0 || expiration - questionCooldown >= 60,\n \"There need to be at least 60s between end of cooldown and expiration\"\n );\n answerExpiration = expiration;\n }\n\n /// @dev Sets the question arbitrator that will be used for future questions.\n /// @param arbitrator Address of the arbitrator\n /// @notice This can only be called by the owner\n function setArbitrator(address arbitrator) public onlyOwner {\n questionArbitrator = arbitrator;\n }\n\n /// @dev Sets the minimum bond that is required for an answer to be accepted.\n /// @param bond Minimum bond that is required for an answer to be accepted\n /// @notice This can only be called by the owner\n function setMinimumBond(uint256 bond) public onlyOwner {\n minimumBond = bond;\n }\n\n /// @dev Sets the template that should be used for future questions.\n /// @param templateId ID of the template that should be used for proposal questions\n /// @notice Check https://github.com/realitio/realitio-dapp#structuring-and-fetching-information for more information\n /// @notice This can only be called by the owner\n function setTemplate(uint256 templateId) public onlyOwner {\n template = templateId;\n }\n\n /// @dev Function to add a proposal that should be considered for execution\n /// @param proposalId Id that should identify the proposal uniquely\n /// @param txHashes EIP-712 hashes of the transactions that should be executed\n /// @notice The nonce used for the question by this function is always 0\n function addProposal(string memory proposalId, bytes32[] memory txHashes)\n public\n {\n addProposalWithNonce(proposalId, txHashes, 0);\n }\n\n /// @dev Function to add a proposal that should be considered for execution\n /// @param proposalId Id that should identify the proposal uniquely\n /// @param txHashes EIP-712 hashes of the transactions that should be executed\n /// @param nonce Nonce that should be used when asking the question on the oracle\n function addProposalWithNonce(\n string memory proposalId,\n bytes32[] memory txHashes,\n uint256 nonce\n ) public {\n // We generate the question string used for the oracle\n string memory question = buildQuestion(proposalId, txHashes);\n bytes32 questionHash = keccak256(bytes(question));\n if (nonce > 0) {\n // Previous nonce must have been invalidated by the oracle.\n // However, if the proposal was internally invalidated, it should not be possible to ask it again.\n bytes32 currentQuestionId = questionIds[questionHash];\n require(\n currentQuestionId != INVALIDATED,\n \"This proposal has been marked as invalid\"\n );\n require(\n oracle.resultFor(currentQuestionId) == INVALIDATED,\n \"Previous proposal was not invalidated\"\n );\n } else {\n require(\n questionIds[questionHash] == bytes32(0),\n \"Proposal has already been submitted\"\n );\n }\n bytes32 expectedQuestionId = getQuestionId(question, nonce);\n // Set the question hash for this question id\n questionIds[questionHash] = expectedQuestionId;\n bytes32 questionId = askQuestion(question, nonce);\n require(expectedQuestionId == questionId, \"Unexpected question id\");\n emit ProposalQuestionCreated(questionId, proposalId);\n }\n\n function askQuestion(string memory question, uint256 nonce)\n internal\n virtual\n returns (bytes32);\n\n /// @dev Marks a proposal as invalid, preventing execution of the connected transactions\n /// @param proposalId Id that should identify the proposal uniquely\n /// @param txHashes EIP-712 hashes of the transactions that should be executed\n /// @notice This can only be called by the owner\n function markProposalAsInvalid(\n string memory proposalId,\n bytes32[] memory txHashes // owner only is checked in markProposalAsInvalidByHash(bytes32)\n ) public {\n string memory question = buildQuestion(proposalId, txHashes);\n bytes32 questionHash = keccak256(bytes(question));\n markProposalAsInvalidByHash(questionHash);\n }\n\n /// @dev Marks a question hash as invalid, preventing execution of the connected transactions\n /// @param questionHash Question hash calculated based on the proposal id and txHashes\n /// @notice This can only be called by the owner\n function markProposalAsInvalidByHash(bytes32 questionHash)\n public\n onlyOwner\n {\n questionIds[questionHash] = INVALIDATED;\n }\n\n /// @dev Marks a proposal with an expired answer as invalid, preventing execution of the connected transactions\n /// @param questionHash Question hash calculated based on the proposal id and txHashes\n function markProposalWithExpiredAnswerAsInvalid(bytes32 questionHash)\n public\n {\n uint32 expirationDuration = answerExpiration;\n require(expirationDuration > 0, \"Answers are valid forever\");\n bytes32 questionId = questionIds[questionHash];\n require(questionId != INVALIDATED, \"Proposal is already invalidated\");\n require(\n questionId != bytes32(0),\n \"No question id set for provided proposal\"\n );\n require(\n oracle.resultFor(questionId) == bytes32(uint256(1)),\n \"Only positive answers can expire\"\n );\n uint32 finalizeTs = oracle.getFinalizeTS(questionId);\n require(\n finalizeTs + uint256(expirationDuration) < block.timestamp,\n \"Answer has not expired yet\"\n );\n questionIds[questionHash] = INVALIDATED;\n }\n\n /// @dev Executes the transactions of a proposal via the target if accepted\n /// @param proposalId Id that should identify the proposal uniquely\n /// @param txHashes EIP-712 hashes of the transactions that should be executed\n /// @param to Target of the transaction that should be executed\n /// @param value Wei value of the transaction that should be executed\n /// @param data Data of the transaction that should be executed\n /// @param operation Operation (Call or Delegatecall) of the transaction that should be executed\n /// @notice The txIndex used by this function is always 0\n function executeProposal(\n string memory proposalId,\n bytes32[] memory txHashes,\n address to,\n uint256 value,\n bytes memory data,\n Enum.Operation operation\n ) public {\n executeProposalWithIndex(\n proposalId,\n txHashes,\n to,\n value,\n data,\n operation,\n 0\n );\n }\n\n /// @dev Executes the transactions of a proposal via the target if accepted\n /// @param proposalId Id that should identify the proposal uniquely\n /// @param txHashes EIP-712 hashes of the transactions that should be executed\n /// @param to Target of the transaction that should be executed\n /// @param value Wei value of the transaction that should be executed\n /// @param data Data of the transaction that should be executed\n /// @param operation Operation (Call or Delegatecall) of the transaction that should be executed\n /// @param txIndex Index of the transaction hash in txHashes. This is used as the nonce for the transaction, to make the tx hash unique\n function executeProposalWithIndex(\n string memory proposalId,\n bytes32[] memory txHashes,\n address to,\n uint256 value,\n bytes memory data,\n Enum.Operation operation,\n uint256 txIndex\n ) public {\n // We use the hash of the question to check the execution state, as the other parameters might change, but the question not\n bytes32 questionHash = keccak256(\n bytes(buildQuestion(proposalId, txHashes))\n );\n // Lookup question id for this proposal\n bytes32 questionId = questionIds[questionHash];\n // Question hash needs to set to be eligible for execution\n require(\n questionId != bytes32(0),\n \"No question id set for provided proposal\"\n );\n require(questionId != INVALIDATED, \"Proposal has been invalidated\");\n\n bytes32 txHash = getTransactionHash(\n to,\n value,\n data,\n operation,\n txIndex\n );\n require(txHashes[txIndex] == txHash, \"Unexpected transaction hash\");\n\n // Check that the result of the question is 1 (true)\n require(\n oracle.resultFor(questionId) == bytes32(uint256(1)),\n \"Transaction was not approved\"\n );\n uint256 minBond = minimumBond;\n require(\n minBond == 0 || minBond <= oracle.getBond(questionId),\n \"Bond on question not high enough\"\n );\n uint32 finalizeTs = oracle.getFinalizeTS(questionId);\n // The answer is valid in the time after the cooldown and before the expiration time (if set).\n require(\n finalizeTs + uint256(questionCooldown) < block.timestamp,\n \"Wait for additional cooldown\"\n );\n uint32 expiration = answerExpiration;\n require(\n expiration == 0 ||\n finalizeTs + uint256(expiration) >= block.timestamp,\n \"Answer has expired\"\n );\n // Check this is either the first transaction in the list or that the previous question was already approved\n require(\n txIndex == 0 ||\n executedProposalTransactions[questionHash][\n txHashes[txIndex - 1]\n ],\n \"Previous transaction not executed yet\"\n );\n // Check that this question was not executed yet\n require(\n !executedProposalTransactions[questionHash][txHash],\n \"Cannot execute transaction again\"\n );\n // Mark transaction as executed\n executedProposalTransactions[questionHash][txHash] = true;\n // Execute the transaction via the target.\n require(exec(to, value, data, operation), \"Module transaction failed\");\n }\n\n /// @dev Build the question by combining the proposalId and the hex string of the hash of the txHashes\n /// @param proposalId Id of the proposal that proposes to execute the transactions represented by the txHashes\n /// @param txHashes EIP-712 Hashes of the transactions that should be executed\n function buildQuestion(string memory proposalId, bytes32[] memory txHashes)\n public\n pure\n returns (string memory)\n {\n string memory txsHash = bytes32ToAsciiString(\n keccak256(abi.encodePacked(txHashes))\n );\n return string(abi.encodePacked(proposalId, bytes3(0xe2909f), txsHash));\n }\n\n /// @dev Generate the question id.\n /// @notice It is required that this is the same as for the oracle implementation used.\n function getQuestionId(string memory question, uint256 nonce)\n public\n view\n returns (bytes32)\n {\n // Ask the question with a starting time of 0, so that it can be immediately answered\n bytes32 contentHash = keccak256(\n abi.encodePacked(template, uint32(0), question)\n );\n return\n keccak256(\n abi.encodePacked(\n contentHash,\n questionArbitrator,\n questionTimeout,\n minimumBond,\n oracle,\n this,\n nonce\n )\n );\n }\n\n /// @dev Returns the chain id used by this contract.\n function getChainId() public view returns (uint256) {\n uint256 id;\n // solium-disable-next-line security/no-inline-assembly\n assembly {\n id := chainid()\n }\n return id;\n }\n\n /// @dev Generates the data for the module transaction hash (required for signing)\n function generateTransactionHashData(\n address to,\n uint256 value,\n bytes memory data,\n Enum.Operation operation,\n uint256 nonce\n ) public view returns (bytes memory) {\n uint256 chainId = getChainId();\n bytes32 domainSeparator = keccak256(\n abi.encode(DOMAIN_SEPARATOR_TYPEHASH, chainId, this)\n );\n bytes32 transactionHash = keccak256(\n abi.encode(\n TRANSACTION_TYPEHASH,\n to,\n value,\n keccak256(data),\n operation,\n nonce\n )\n );\n return\n abi.encodePacked(\n bytes1(0x19),\n bytes1(0x01),\n domainSeparator,\n transactionHash\n );\n }\n\n function getTransactionHash(\n address to,\n uint256 value,\n bytes memory data,\n Enum.Operation operation,\n uint256 nonce\n ) public view returns (bytes32) {\n return\n keccak256(\n generateTransactionHashData(to, value, data, operation, nonce)\n );\n }\n\n function bytes32ToAsciiString(bytes32 _bytes)\n internal\n pure\n returns (string memory)\n {\n bytes memory s = new bytes(64);\n for (uint256 i = 0; i < 32; i++) {\n uint8 b = uint8(bytes1(_bytes << (i * 8)));\n uint8 hi = uint8(b) / 16;\n uint8 lo = uint8(b) % 16;\n s[2 * i] = char(hi);\n s[2 * i + 1] = char(lo);\n }\n return string(s);\n }\n\n function char(uint8 b) internal pure returns (bytes1 c) {\n if (b < 10) return bytes1(b + 0x30);\n else return bytes1(b + 0x57);\n }\n}\n"
},
"contracts/RealityModuleETH.sol": {
"content": "// SPDX-License-Identifier: LGPL-3.0-only\npragma solidity >=0.8.0;\n\nimport \"./RealityModule.sol\";\nimport \"./interfaces/RealitioV3.sol\";\n\ncontract RealityModuleETH is RealityModule {\n /// @param _owner Address of the owner\n /// @param _avatar Address of the avatar (e.g. a Safe)\n /// @param _target Address of the contract that will call exec function\n /// @param _oracle Address of the oracle (e.g. Realitio)\n /// @param timeout Timeout in seconds that should be required for the oracle\n /// @param cooldown Cooldown in seconds that should be required after a oracle provided answer\n /// @param expiration Duration that a positive answer of the oracle is valid in seconds (or 0 if valid forever)\n /// @param bond Minimum bond that is required for an answer to be accepted\n /// @param templateId ID of the template that should be used for proposal questions (see https://github.com/realitio/realitio-dapp#structuring-and-fetching-information)\n /// @param arbitrator Address of the arbitrator that will secure the oracle resolution\n /// @notice There need to be at least 60 seconds between end of cooldown and expiration\n constructor(\n address _owner,\n address _avatar,\n address _target,\n RealitioV3 _oracle,\n uint32 timeout,\n uint32 cooldown,\n uint32 expiration,\n uint256 bond,\n uint256 templateId,\n address arbitrator\n )\n RealityModule(\n _owner,\n _avatar,\n _target,\n _oracle,\n timeout,\n cooldown,\n expiration,\n bond,\n templateId,\n arbitrator\n )\n {}\n\n function askQuestion(string memory question, uint256 nonce)\n internal\n override\n returns (bytes32)\n {\n // Ask the question with a starting time of 0, so that it can be immediately answered\n return\n RealitioV3ETH(address(oracle)).askQuestionWithMinBond(\n template,\n question,\n questionArbitrator,\n questionTimeout,\n 0,\n nonce,\n minimumBond\n );\n }\n}\n"
},
"contracts/interfaces/RealitioV3.sol": {
"content": "// SPDX-License-Identifier: LGPL-3.0-only\npragma solidity >=0.8.0;\n\ninterface RealitioV3 {\n /// @notice Report whether the answer to the specified question is finalized\n /// @param question_id The ID of the question\n /// @return Return true if finalized\n function isFinalized(bytes32 question_id) external view returns (bool);\n\n /// @notice Return the final answer to the specified question, or revert if there isn't one\n /// @param question_id The ID of the question\n /// @return The answer formatted as a bytes32\n function resultFor(bytes32 question_id) external view returns (bytes32);\n\n /// @notice Returns the timestamp at which the question will be/was finalized\n /// @param question_id The ID of the question\n function getFinalizeTS(bytes32 question_id) external view returns (uint32);\n\n /// @notice Returns whether the question is pending arbitration\n /// @param question_id The ID of the question\n function isPendingArbitration(bytes32 question_id)\n external\n view\n returns (bool);\n\n /// @notice Create a reusable template, which should be a JSON document.\n /// Placeholders should use gettext() syntax, eg %s.\n /// @dev Template data is only stored in the event logs, but its block number is kept in contract storage.\n /// @param content The template content\n /// @return The ID of the newly-created template, which is created sequentially.\n function createTemplate(string calldata content) external returns (uint256);\n\n /// @notice Returns the highest bond posted so far for a question\n /// @param question_id The ID of the question\n function getBond(bytes32 question_id) external view returns (uint256);\n\n /// @notice Returns the questions's content hash, identifying the question content\n /// @param question_id The ID of the question\n function getContentHash(bytes32 question_id)\n external\n view\n returns (bytes32);\n}\n\ninterface RealitioV3ETH is RealitioV3 {\n /// @notice Ask a new question and return the ID\n /// @dev Template data is only stored in the event logs, but its block number is kept in contract storage.\n /// @param template_id The ID number of the template the question will use\n /// @param question A string containing the parameters that will be passed into the template to make the question\n /// @param arbitrator The arbitration contract that will have the final word on the answer if there is a dispute\n /// @param timeout How long the contract should wait after the answer is changed before finalizing on that answer\n /// @param opening_ts If set, the earliest time it should be possible to answer the question.\n /// @param nonce A user-specified nonce used in the question ID. Change it to repeat a question.\n /// @param min_bond The minimum bond that may be used for an answer.\n /// @return The ID of the newly-created question, created deterministically.\n function askQuestionWithMinBond(\n uint256 template_id,\n string memory question,\n address arbitrator,\n uint32 timeout,\n uint32 opening_ts,\n uint256 nonce,\n uint256 min_bond\n ) external payable returns (bytes32);\n}\n\ninterface RealitioV3ERC20 is RealitioV3 {\n /// @notice Ask a new question and return the ID\n /// @dev Template data is only stored in the event logs, but its block number is kept in contract storage.\n /// @param template_id The ID number of the template the question will use\n /// @param question A string containing the parameters that will be passed into the template to make the question\n /// @param arbitrator The arbitration contract that will have the final word on the answer if there is a dispute\n /// @param timeout How long the contract should wait after the answer is changed before finalizing on that answer\n /// @param opening_ts If set, the earliest time it should be possible to answer the question.\n /// @param nonce A user-specified nonce used in the question ID. Change it to repeat a question.\n /// @param min_bond The minimum bond that may be used for an answer.\n /// @param tokens Number of tokens sent\n /// @return The ID of the newly-created question, created deterministically.\n function askQuestionWithMinBondERC20(\n uint256 template_id,\n string memory question,\n address arbitrator,\n uint32 timeout,\n uint32 opening_ts,\n uint256 nonce,\n uint256 min_bond,\n uint256 tokens\n ) external returns (bytes32);\n}\n"
}
}
}
},
"2.1.0": {
"contractName": "RealityModuleETH",
"sourceName": "contracts/RealityModuleETH.sol",
"contractVersion": "2.1.0",
"compilerVersion": "v0.8.20+commit.a1b79de6",
"factory": "0xce0042b868300000d44a59004da54a005ffdcf9f",
"address": "0xA44A02EBc824F2A038bE379A6564190E43cCe73D",
"bytecode": "0x60806040523480156200001157600080fd5b50604051620062d1380380620062d183398181016040528101906200003791906200103d565b8989898989898989898960008a8a8a8a8a8a8a8a8a8a604051602001620000689a99989796959493929190620011d1565b60405160208183030381529060405290506200008a81620000a560201b60201c565b505050505050505050505050505050505050505050620017cf565b6000620000b7620004dd60201b60201c565b905060008160000160089054906101000a900460ff1615905060008260000160009054906101000a900467ffffffffffffffff1690506000808267ffffffffffffffff16148015620001065750825b9050600060018367ffffffffffffffff161480156200013c575060003073ffffffffffffffffffffffffffffffffffffffff163b145b9050811580156200014b575080155b1562000183576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018560000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508315620001d45760018560000160086101000a81548160ff0219169083151502179055505b6000806000806000806000806000808f806020019051810190620001f99190620012c6565b99509950995099509950995099509950995099506200021e336200050560201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff160362000290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000287906200141d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff160362000302576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f9906200148f565b60405180910390fd5b62000313896200052960201b60201c565b6200032488620005fd60201b60201c565b6200033587620006d360201b60201c565b62000346846200076060201b60201c565b62000357866200084960201b60201c565b62000368856200095160201b60201c565b620003798162000a4160201b60201c565b6200038a8362000ad860201b60201c565b6200039b8262000b2b60201b60201c565b620003ac8a62000b7e60201b60201c565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8b8abdce7435e63696dbae9e46dc2ee5036195638ecfc5b45a3c45bcd7e3ed34600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051620004649190620014b1565b60405180910390a4505050505050505050508315620004d55760008560000160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d26001604051620004cc919062001525565b60405180910390a15b505050505050565b60007ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b6200051562000c1760201b60201c565b620005268162000c6060201b60201c565b50565b6200053962000cf960201b60201c565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f52ae88b092de36f87fb43fe794eb1381023b9c1bce563a871154022c63dce34260405160405180910390a35050565b6200060d62000cf960201b60201c565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90cc2f570a6eb594b1580ea3e41247d2d73a55281889e86bd4ec2fc29c7e62d660405160405180910390a35050565b620006e362000cf960201b60201c565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f3f32684a32a11dabdbb8c0177de80aa3ae36a004d75210335b49e544e48cd0aa8160405162000755919062001542565b60405180910390a150565b6200077062000cf960201b60201c565b60008163ffffffff161480620007aa5750603c60048054906101000a900463ffffffff1682620007a191906200158e565b63ffffffff1610155b620007ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e39062001669565b60405180910390fd5b80600460086101000a81548163ffffffff021916908363ffffffff1602179055507f32a94fdb92dde8a69818755d3831122d81a708e01d680d91a5c50c694362f383816040516200083e91906200168b565b60405180910390a150565b6200085962000cf960201b60201c565b60008163ffffffff1611620008a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200089c90620016f8565b60405180910390fd5b6301e133808163ffffffff1610620008f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008eb9062001790565b60405180910390fd5b80600460006101000a81548163ffffffff021916908363ffffffff1602179055507fc771b9c9d579a99b3c216a513759929fdd1f35d973700a471c1dd4555d0e5aed816040516200094691906200168b565b60405180910390a150565b6200096162000cf960201b60201c565b6000600460089054906101000a900463ffffffff16905060008163ffffffff161480620009a25750603c82826200099991906200158e565b63ffffffff1610155b620009e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009db9062001669565b60405180910390fd5b816004806101000a81548163ffffffff021916908363ffffffff1602179055507f67c3b081276489a149b6f9026c8fd66126916044ad7094df81a7cb094b59361b8260405162000a3591906200168b565b60405180910390a15050565b62000a5162000cf960201b60201c565b806004600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f53910d8ecf7b5b828433963dea4325f13b37cbdbfd212f83cb73ec179a60e12160405160405180910390a250565b62000ae862000cf960201b60201c565b806005819055507fe312c25b0d68ceec94d683edcac66d7abbaeff017ca15b4a87384f8641ddb0da8160405162000b209190620017b2565b60405180910390a150565b62000b3b62000cf960201b60201c565b806003819055507f3b5033b8609583d8d3fe242c57c15f8c36441fa3b92515a3b5eeb45f445374098160405162000b739190620017b2565b60405180910390a150565b62000b8e62000cf960201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000c035760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000bfa9190620014b1565b60405180910390fd5b62000c148162000d9b60201b60201c565b50565b62000c2762000e7a60201b60201c565b62000c5e576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b62000c7062000c1760201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000ce55760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000cdc9190620014b1565b60405180910390fd5b62000cf68162000d9b60201b60201c565b50565b62000d0962000ea260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000d2f62000eaa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000d995762000d5b62000ea260201b60201c565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040162000d909190620014b1565b60405180910390fd5b565b600062000dad62000eea60201b60201c565b905060008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050828260000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3505050565b600062000e8c620004dd60201b60201c565b60000160089054906101000a900460ff16905090565b600033905090565b60008062000ebd62000eea60201b60201c565b90508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691505090565b60007f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000f448262000f17565b9050919050565b62000f568162000f37565b811462000f6257600080fd5b50565b60008151905062000f768162000f4b565b92915050565b600062000f898262000f37565b9050919050565b62000f9b8162000f7c565b811462000fa757600080fd5b50565b60008151905062000fbb8162000f90565b92915050565b600063ffffffff82169050919050565b62000fdc8162000fc1565b811462000fe857600080fd5b50565b60008151905062000ffc8162000fd1565b92915050565b6000819050919050565b620010178162001002565b81146200102357600080fd5b50565b60008151905062001037816200100c565b92915050565b6000806000806000806000806000806101408b8d03121562001064576200106362000f12565b5b6000620010748d828e0162000f65565b9a50506020620010878d828e0162000f65565b99505060406200109a8d828e0162000f65565b9850506060620010ad8d828e0162000faa565b9750506080620010c08d828e0162000feb565b96505060a0620010d38d828e0162000feb565b95505060c0620010e68d828e0162000feb565b94505060e0620010f98d828e0162001026565b9350506101006200110d8d828e0162001026565b925050610120620011218d828e0162000f65565b9150509295989b9194979a5092959850565b6200113e8162000f37565b82525050565b6000819050919050565b60006200116f62001169620011638462000f17565b62001144565b62000f17565b9050919050565b600062001183826200114e565b9050919050565b6000620011978262001176565b9050919050565b620011a9816200118a565b82525050565b620011ba8162000fc1565b82525050565b620011cb8162001002565b82525050565b600061014082019050620011e9600083018d62001133565b620011f8602083018c62001133565b62001207604083018b62001133565b62001216606083018a6200119e565b620012256080830189620011af565b6200123460a0830188620011af565b6200124360c0830187620011af565b6200125260e0830186620011c0565b62001262610100830185620011c0565b6200127261012083018462001133565b9b9a5050505050505050505050565b60006200128e8262000f17565b9050919050565b620012a08162001281565b8114620012ac57600080fd5b50565b600081519050620012c08162001295565b92915050565b6000806000806000806000806000806101408b8d031215620012ed57620012ec62000f12565b5b6000620012fd8d828e01620012af565b9a50506020620013108d828e01620012af565b9950506040620013238d828e01620012af565b9850506060620013368d828e0162000faa565b9750506080620013498d828e0162000feb565b96505060a06200135c8d828e0162000feb565b95505060c06200136f8d828e0162000feb565b94505060e0620013828d828e0162001026565b935050610100620013968d828e0162001026565b925050610120620013aa8d828e01620012af565b9150509295989b9194979a5092959850565b600082825260208201905092915050565b7f4176617461722063616e206e6f74206265207a65726f20616464726573730000600082015250565b600062001405601e83620013bc565b91506200141282620013cd565b602082019050919050565b600060208201905081810360008301526200143881620013f6565b9050919050565b7f5461726765742063616e206e6f74206265207a65726f20616464726573730000600082015250565b600062001477601e83620013bc565b915062001484826200143f565b602082019050919050565b60006020820190508181036000830152620014aa8162001468565b9050919050565b6000602082019050620014c8600083018462001133565b92915050565b6000819050919050565b600067ffffffffffffffff82169050919050565b60006200150d620015076200150184620014ce565b62001144565b620014d8565b9050919050565b6200151f81620014ec565b82525050565b60006020820190506200153c600083018462001514565b92915050565b60006020820190506200155960008301846200119e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200159b8262000fc1565b9150620015a88362000fc1565b9250828203905063ffffffff811115620015c757620015c66200155f565b5b92915050565b7f5468657265206e65656420746f206265206174206c656173742036307320626560008201527f747765656e20656e64206f6620636f6f6c646f776e20616e642065787069726160208201527f74696f6e00000000000000000000000000000000000000000000000000000000604082015250565b600062001651604483620013bc565b91506200165e82620015cd565b606082019050919050565b60006020820190508181036000830152620016848162001642565b9050919050565b6000602082019050620016a26000830184620011af565b92915050565b7f54696d656f75742068617320746f206265206772656174657220300000000000600082015250565b6000620016e0601b83620013bc565b9150620016ed82620016a8565b602082019050919050565b600060208201905081810360008301526200171381620016d1565b9050919050565b7f74696d656f7574206d757374206265206c657373207468616e2033363520646160008201527f7973000000000000000000000000000000000000000000000000000000000000602082015250565b600062001778602283620013bc565b915062001785826200171a565b604082019050919050565b60006020820190508181036000830152620017ab8162001769565b9050919050565b6000602082019050620017c96000830184620011c0565b92915050565b614af280620017df6000396000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c8063715018a61161013b578063b0eefabe116100b8578063d4b839921161007c578063d4b8399214610664578063dc89a19814610682578063e319044b146106b2578063f2fde38b146106ce578063ff0394eb146106ea5761023d565b8063b0eefabe146105c0578063b5a73e75146105dc578063cc3b43b1146105fa578063cd3ef9511461062a578063d07acb5b146106465761023d565b80638da5cb5b116100ff5780638da5cb5b146105305780638dcd26611461054e5780639a674ed11461056a578063a4f9edbf14610586578063aa7517e1146105a25761023d565b8063715018a6146104b2578063776d1a01146104bc5780637adbf973146104d85780637dc0d1d0146104f457806388633b7b146105125761023d565b80633408e470116101c95780634e1b83741161018d5780634e1b83741461040e5780635aef7de61461043e5780635fc1188d1461045c5780636775ef69146104785780636f2ddd93146104945761023d565b80633408e4701461035857806339eafa6f146103765780633ea3c146146103a6578063425a2a3c146103c257806345c7980e146103f25761023d565b80631ba18b9b116102105780631ba18b9b146102b45780631db61b54146102d257806321e314cb146102f05780632351a8771461030c5780632b500041146103285761023d565b8063086cfca8146102425780631138a87e1461025e57806314604b8c1461027a57806314f5a39514610296575b600080fd5b61025c6004803603810190610257919061290f565b610708565b005b61027860048036038101906102739190612bb6565b6107d4565b005b610294600480360381019061028f9190612d07565b610a95565b005b61029e61111b565b6040516102ab9190612e1c565b60405180910390f35b6102bc61112f565b6040516102c99190612e1c565b60405180910390f35b6102da611145565b6040516102e79190612e46565b60405180910390f35b61030a60048036038101906103059190612e8d565b61116c565b005b61032660048036038101906103219190612eba565b61124c565b005b610342600480360381019061033d9190612f9b565b611264565b60405161034f9190612e46565b60405180910390f35b610360611285565b60405161036d9190613041565b60405180910390f35b610390600480360381019061038b919061305c565b611292565b60405161039d9190613153565b60405180910390f35b6103c060048036038101906103bb9190613175565b6112fa565b005b6103dc60048036038101906103d79190612f9b565b611340565b6040516103e991906131f7565b60405180910390f35b61040c6004803603810190610407919061305c565b61143b565b005b61042860048036038101906104239190613219565b611464565b6040516104359190613274565b60405180910390f35b610446611493565b604051610453919061329e565b60405180910390f35b610476600480360381019061047191906132b9565b6114b7565b005b610492600480360381019061048d9190612e8d565b611500565b005b61049c6115f8565b6040516104a99190613041565b60405180910390f35b6104ba6115fe565b005b6104d660048036038101906104d1919061290f565b611612565b005b6104f260048036038101906104ed9190613324565b6116e0565b005b6104fc611763565b60405161050991906133b0565b60405180910390f35b61051a611789565b6040516105279190612e46565b60405180910390f35b6105386117b0565b604051610545919061329e565b60405180910390f35b6105686004803603810190610563919061305c565b6117e8565b005b610584600480360381019061057f9190612e8d565b6117f8565b005b6105a0600480360381019061059b91906133cb565b6118d1565b005b6105aa611c97565b6040516105b79190613041565b60405180910390f35b6105da60048036038101906105d5919061290f565b611c9d565b005b6105e4611d2c565b6040516105f1919061329e565b60405180910390f35b610614600480360381019061060f9190613414565b611d52565b6040516106219190612e46565b60405180910390f35b610644600480360381019061063f91906132b9565b611e19565b005b61064e611e62565b60405161065b9190612e1c565b60405180910390f35b61066c611e78565b604051610679919061329e565b60405180910390f35b61069c60048036038101906106979190613175565b611e9e565b6040516106a99190612e46565b60405180910390f35b6106cc60048036038101906106c79190613175565b611eb6565b005b6106e860048036038101906106e3919061290f565b6121f3565b005b6106f2612279565b6040516106ff9190612e46565b60405180910390f35b6107106122a0565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f52ae88b092de36f87fb43fe794eb1381023b9c1bce563a871154022c63dce34260405160405180910390a35050565b60006107e08484611292565b9050600081805190602001209050600083111561097a576000600660008381526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b8103610874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086b906134e2565b60405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d09cc57e836040518263ffffffff1660e01b81526004016108f39190612e46565b602060405180830381865afa158015610910573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109349190613517565b14610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b906135b6565b60405180910390fd5b506109d3565b6000801b6006600083815260200190815260200160002054146109d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c990613648565b60405180910390fd5b5b60006109df8385611d52565b90508060066000848152602001908152602001600020819055506000610a058486612327565b9050808214610a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a40906136b4565b60405180910390fd5b86604051610a579190613710565b6040518091039020817fa1f5047031a658827550a2c4be07648493f3ac88a09c857b3961d1336429a31f60405160405180910390a350505050505050565b6000610aa18888611292565b8051906020012090506000600660008381526020019081526020016000205490506000801b8103610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90613799565b60405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b8103610b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6390613805565b60405180910390fd5b6000610b7b8888888888611264565b905080898581518110610b9157610b90613825565b5b602002602001015114610bd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd0906138a0565b60405180910390fd5b600160001b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d09cc57e846040518263ffffffff1660e01b8152600401610c399190612e46565b602060405180830381865afa158015610c56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7a9190613517565b14610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb19061390c565b60405180910390fd5b600060055490506000811480610d6b5750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166326d6c97b846040518263ffffffff1660e01b8152600401610d269190612e46565b602060405180830381865afa158015610d43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d679190613941565b8111155b610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da1906139ba565b60405180910390fd5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663acae8f4e856040518263ffffffff1660e01b8152600401610e079190612e46565b602060405180830381865afa158015610e24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4891906139ef565b90504260048054906101000a900463ffffffff1663ffffffff168263ffffffff16610e739190613a4b565b10610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90613acb565b60405180910390fd5b6000600460089054906101000a900463ffffffff16905060008163ffffffff161480610ef65750428163ffffffff168363ffffffff16610ef39190613a4b565b10155b610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c90613b37565b60405180910390fd5b6000871480610f9857506007600087815260200190815260200160002060008d60018a610f629190613b57565b81518110610f7357610f72613825565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff165b610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90613bfd565b60405180910390fd5b60076000878152602001908152602001600020600085815260200190815260200160002060009054906101000a900460ff1615611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090613c69565b60405180910390fd5b600160076000888152602001908152602001600020600086815260200190815260200160002060006101000a81548160ff0219169083151502179055506110928b8b8b8b612414565b6110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890613cd5565b60405180910390fd5b7fad3838e7eb1814c3b2c5a7688268692c060a82ebc5dff2627224e72b69a582098d858960405161110493929190613cf5565b60405180910390a150505050505050505050505050565b60048054906101000a900463ffffffff1681565b600460009054906101000a900463ffffffff1681565b7f47e79534a245952e8b16893a336b85a3d9ea9fa8c573f3d803afb92a7946921860001b81565b6111746122a0565b6000600460089054906101000a900463ffffffff16905060008163ffffffff1614806111b25750603c82826111a99190613d33565b63ffffffff1610155b6111f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e890613e03565b60405180910390fd5b816004806101000a81548163ffffffff021916908363ffffffff1602179055507f67c3b081276489a149b6f9026c8fd66126916044ad7094df81a7cb094b59361b826040516112409190612e1c565b60405180910390a15050565b61125c8686868686866000610a95565b505050505050565b60006112738686868686611340565b80519060200120905095945050505050565b6000804690508091505090565b606060006112c5836040516020016112aa9190613edb565b604051602081830303815290604052805190602001206124c4565b90508362e2909f60e81b826040516020016112e293929190613f3f565b60405160208183030381529060405291505092915050565b6113026122a0565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b600660008381526020019081526020016000208190555050565b6060600061134c611285565b905060007f47e79534a245952e8b16893a336b85a3d9ea9fa8c573f3d803afb92a7946921860001b823060405160200161138893929190613f95565b60405160208183030381529060405280519060200120905060007f72e9670a7ee00f5fbf1049b8c38e3f22fab7e9b85029e85cf9412f17fdd5c2ad60001b8989898051906020012089896040516020016113e796959493929190614043565b604051602081830303815290604052805190602001209050601960f81b600160f81b838360405160200161141e9493929190614112565b604051602081830303815290604052935050505095945050505050565b60006114478383611292565b905060008180519060200120905061145e816112fa565b50505050565b60076020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114bf6122a0565b806003819055507f3b5033b8609583d8d3fe242c57c15f8c36441fa3b92515a3b5eeb45f44537409816040516114f59190613041565b60405180910390a150565b6115086122a0565b60008163ffffffff1611611551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611548906141ac565b60405180910390fd5b6301e133808163ffffffff161061159d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115949061423e565b60405180910390fd5b80600460006101000a81548163ffffffff021916908363ffffffff1602179055507fc771b9c9d579a99b3c216a513759929fdd1f35d973700a471c1dd4555d0e5aed816040516115ed9190612e1c565b60405180910390a150565b60035481565b6116066122a0565b6116106000612637565b565b61161a6122a0565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90cc2f570a6eb594b1580ea3e41247d2d73a55281889e86bd4ec2fc29c7e62d660405160405180910390a35050565b6116e86122a0565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f3f32684a32a11dabdbb8c0177de80aa3ae36a004d75210335b49e544e48cd0aa8160405161175891906133b0565b60405180910390a150565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f72e9670a7ee00f5fbf1049b8c38e3f22fab7e9b85029e85cf9412f17fdd5c2ad60001b81565b6000806117bb61270e565b90508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691505090565b6117f4828260006107d4565b5050565b6118006122a0565b60008163ffffffff1614806118375750603c60048054906101000a900463ffffffff168261182e9190613d33565b63ffffffff1610155b611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90613e03565b60405180910390fd5b80600460086101000a81548163ffffffff021916908363ffffffff1602179055507f32a94fdb92dde8a69818755d3831122d81a708e01d680d91a5c50c694362f383816040516118c69190612e1c565b60405180910390a150565b60006118db612736565b905060008160000160089054906101000a900460ff1615905060008260000160009054906101000a900467ffffffffffffffff1690506000808267ffffffffffffffff161480156119295750825b9050600060018367ffffffffffffffff1614801561195e575060003073ffffffffffffffffffffffffffffffffffffffff163b145b90508115801561196c575080155b156119a3576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018560000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083156119f35760018560000160086101000a81548160ff0219169083151502179055505b6000806000806000806000806000808f806020019051810190611a1691906142b1565b9950995099509950995099509950995099509950611a333361275e565b600073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1603611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a99906143dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1603611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890614448565b60405180910390fd5b611b1a89610708565b611b2388611612565b611b2c876116e0565b611b35846117f8565b611b3e86611500565b611b478561116c565b611b5081611c9d565b611b5983611e19565b611b62826114b7565b611b6b8a6121f3565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8b8abdce7435e63696dbae9e46dc2ee5036195638ecfc5b45a3c45bcd7e3ed34600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051611c21919061329e565b60405180910390a4505050505050505050508315611c8f5760008560000160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d26001604051611c8691906144b7565b60405180910390a15b505050505050565b60055481565b611ca56122a0565b806004600c6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f53910d8ecf7b5b828433963dea4325f13b37cbdbfd212f83cb73ec179a60e12160405160405180910390a250565b6004600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080600354600085604051602001611d6d93929190614529565b604051602081830303815290604052805190602001209050806004600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900463ffffffff16600554600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff163088604051602001611dfa97969594939291906145d8565b6040516020818303038152906040528051906020012091505092915050565b611e216122a0565b806005819055507fe312c25b0d68ceec94d683edcac66d7abbaeff017ca15b4a87384f8641ddb0da81604051611e579190613041565b60405180910390a150565b600460089054906101000a900463ffffffff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60066020528060005260406000206000915090505481565b6000600460089054906101000a900463ffffffff16905060008163ffffffff1611611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d906146a5565b60405180910390fd5b6000600660008481526020019081526020016000205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b8103611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90614711565b60405180910390fd5b6000801b8103611fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcf90613799565b60405180910390fd5b600160001b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d09cc57e836040518263ffffffff1660e01b81526004016120389190612e46565b602060405180830381865afa158015612055573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120799190613517565b146120b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b09061477d565b60405180910390fd5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663acae8f4e836040518263ffffffff1660e01b81526004016121169190612e46565b602060405180830381865afa158015612133573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061215791906139ef565b9050428363ffffffff168263ffffffff166121729190613a4b565b106121b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a9906147e9565b60405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b600660008681526020019081526020016000208190555050505050565b6121fb6122a0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361226d5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401612264919061329e565b60405180910390fd5b61227681612637565b50565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b81565b6122a8612772565b73ffffffffffffffffffffffffffffffffffffffff166122c66117b0565b73ffffffffffffffffffffffffffffffffffffffff1614612325576122e9612772565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161231c919061329e565b60405180910390fd5b565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663484b93c4600354856004600c9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600460009054906101000a900463ffffffff166000886005546040518863ffffffff1660e01b81526004016123c99796959493929190614844565b6020604051808303816000875af11580156123e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061240c9190613517565b905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663468721a7868686866040518563ffffffff1660e01b815260040161247794939291906148ba565b6020604051808303816000875af1158015612496573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124ba9190614932565b9050949350505050565b60606000604067ffffffffffffffff8111156124e3576124e2612957565b5b6040519080825280601f01601f1916602001820160405280156125155781602001600182028036833780820191505090505b50905060005b602081101561262d576000600882612533919061495f565b85901b60f81c9050600060108261254a91906149dd565b9050600060108361255b9190614a0e565b90506125668261277a565b85856002612574919061495f565b8151811061258557612584613825565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506125bd8161277a565b8560018660026125cd919061495f565b6125d79190613a4b565b815181106125e8576125e7613825565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350505050808061262590614a3f565b91505061251b565b5080915050919050565b600061264161270e565b905060008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050828260000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3505050565b60007f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300905090565b60007ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b6127666127b7565b61276f816127f7565b50565b600033905090565b6000600a8260ff16101561279f576030826127959190614a87565b60f81b90506127b2565b6057826127ac9190614a87565b60f81b90505b919050565b6127bf61287d565b6127f5576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6127ff6127b7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036128715760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401612868919061329e565b60405180910390fd5b61287a81612637565b50565b6000612887612736565b60000160089054906101000a900460ff16905090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128dc826128b1565b9050919050565b6128ec816128d1565b81146128f757600080fd5b50565b600081359050612909816128e3565b92915050565b600060208284031215612925576129246128a7565b5b6000612933848285016128fa565b91505092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61298f82612946565b810181811067ffffffffffffffff821117156129ae576129ad612957565b5b80604052505050565b60006129c161289d565b90506129cd8282612986565b919050565b600067ffffffffffffffff8211156129ed576129ec612957565b5b6129f682612946565b9050602081019050919050565b82818337600083830152505050565b6000612a25612a20846129d2565b6129b7565b905082815260208101848484011115612a4157612a40612941565b5b612a4c848285612a03565b509392505050565b600082601f830112612a6957612a6861293c565b5b8135612a79848260208601612a12565b91505092915050565b600067ffffffffffffffff821115612a9d57612a9c612957565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b612ac681612ab3565b8114612ad157600080fd5b50565b600081359050612ae381612abd565b92915050565b6000612afc612af784612a82565b6129b7565b90508083825260208201905060208402830185811115612b1f57612b1e612aae565b5b835b81811015612b485780612b348882612ad4565b845260208401935050602081019050612b21565b5050509392505050565b600082601f830112612b6757612b6661293c565b5b8135612b77848260208601612ae9565b91505092915050565b6000819050919050565b612b9381612b80565b8114612b9e57600080fd5b50565b600081359050612bb081612b8a565b92915050565b600080600060608486031215612bcf57612bce6128a7565b5b600084013567ffffffffffffffff811115612bed57612bec6128ac565b5b612bf986828701612a54565b935050602084013567ffffffffffffffff811115612c1a57612c196128ac565b5b612c2686828701612b52565b9250506040612c3786828701612ba1565b9150509250925092565b600067ffffffffffffffff821115612c5c57612c5b612957565b5b612c6582612946565b9050602081019050919050565b6000612c85612c8084612c41565b6129b7565b905082815260208101848484011115612ca157612ca0612941565b5b612cac848285612a03565b509392505050565b600082601f830112612cc957612cc861293c565b5b8135612cd9848260208601612c72565b91505092915050565b60028110612cef57600080fd5b50565b600081359050612d0181612ce2565b92915050565b600080600080600080600060e0888a031215612d2657612d256128a7565b5b600088013567ffffffffffffffff811115612d4457612d436128ac565b5b612d508a828b01612a54565b975050602088013567ffffffffffffffff811115612d7157612d706128ac565b5b612d7d8a828b01612b52565b9650506040612d8e8a828b016128fa565b9550506060612d9f8a828b01612ba1565b945050608088013567ffffffffffffffff811115612dc057612dbf6128ac565b5b612dcc8a828b01612cb4565b93505060a0612ddd8a828b01612cf2565b92505060c0612dee8a828b01612ba1565b91505092959891949750929550565b600063ffffffff82169050919050565b612e1681612dfd565b82525050565b6000602082019050612e316000830184612e0d565b92915050565b612e4081612ab3565b82525050565b6000602082019050612e5b6000830184612e37565b92915050565b612e6a81612dfd565b8114612e7557600080fd5b50565b600081359050612e8781612e61565b92915050565b600060208284031215612ea357612ea26128a7565b5b6000612eb184828501612e78565b91505092915050565b60008060008060008060c08789031215612ed757612ed66128a7565b5b600087013567ffffffffffffffff811115612ef557612ef46128ac565b5b612f0189828a01612a54565b965050602087013567ffffffffffffffff811115612f2257612f216128ac565b5b612f2e89828a01612b52565b9550506040612f3f89828a016128fa565b9450506060612f5089828a01612ba1565b935050608087013567ffffffffffffffff811115612f7157612f706128ac565b5b612f7d89828a01612cb4565b92505060a0612f8e89828a01612cf2565b9150509295509295509295565b600080600080600060a08688031215612fb757612fb66128a7565b5b6000612fc5888289016128fa565b9550506020612fd688828901612ba1565b945050604086013567ffffffffffffffff811115612ff757612ff66128ac565b5b61300388828901612cb4565b935050606061301488828901612cf2565b925050608061302588828901612ba1565b9150509295509295909350565b61303b81612b80565b82525050565b60006020820190506130566000830184613032565b92915050565b60008060408385031215613073576130726128a7565b5b600083013567ffffffffffffffff811115613091576130906128ac565b5b61309d85828601612a54565b925050602083013567ffffffffffffffff8111156130be576130bd6128ac565b5b6130ca85828601612b52565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561310e5780820151818401526020810190506130f3565b60008484015250505050565b6000613125826130d4565b61312f81856130df565b935061313f8185602086016130f0565b61314881612946565b840191505092915050565b6000602082019050818103600083015261316d818461311a565b905092915050565b60006020828403121561318b5761318a6128a7565b5b600061319984828501612ad4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60006131c9826131a2565b6131d381856131ad565b93506131e38185602086016130f0565b6131ec81612946565b840191505092915050565b6000602082019050818103600083015261321181846131be565b905092915050565b600080604083850312156132305761322f6128a7565b5b600061323e85828601612ad4565b925050602061324f85828601612ad4565b9150509250929050565b60008115159050919050565b61326e81613259565b82525050565b60006020820190506132896000830184613265565b92915050565b613298816128d1565b82525050565b60006020820190506132b3600083018461328f565b92915050565b6000602082840312156132cf576132ce6128a7565b5b60006132dd84828501612ba1565b91505092915050565b60006132f1826128d1565b9050919050565b613301816132e6565b811461330c57600080fd5b50565b60008135905061331e816132f8565b92915050565b60006020828403121561333a576133396128a7565b5b60006133488482850161330f565b91505092915050565b6000819050919050565b600061337661337161336c846128b1565b613351565b6128b1565b9050919050565b60006133888261335b565b9050919050565b600061339a8261337d565b9050919050565b6133aa8161338f565b82525050565b60006020820190506133c560008301846133a1565b92915050565b6000602082840312156133e1576133e06128a7565b5b600082013567ffffffffffffffff8111156133ff576133fe6128ac565b5b61340b84828501612cb4565b91505092915050565b6000806040838503121561342b5761342a6128a7565b5b600083013567ffffffffffffffff811115613449576134486128ac565b5b61345585828601612a54565b925050602061346685828601612ba1565b9150509250929050565b7f546869732070726f706f73616c20686173206265656e206d61726b656420617360008201527f20696e76616c6964000000000000000000000000000000000000000000000000602082015250565b60006134cc6028836130df565b91506134d782613470565b604082019050919050565b600060208201905081810360008301526134fb816134bf565b9050919050565b60008151905061351181612abd565b92915050565b60006020828403121561352d5761352c6128a7565b5b600061353b84828501613502565b91505092915050565b7f50726576696f75732070726f706f73616c20776173206e6f7420696e76616c6960008201527f6461746564000000000000000000000000000000000000000000000000000000602082015250565b60006135a06025836130df565b91506135ab82613544565b604082019050919050565b600060208201905081810360008301526135cf81613593565b9050919050565b7f50726f706f73616c2068617320616c7265616479206265656e207375626d697460008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b60006136326023836130df565b915061363d826135d6565b604082019050919050565b6000602082019050818103600083015261366181613625565b9050919050565b7f556e6578706563746564207175657374696f6e20696400000000000000000000600082015250565b600061369e6016836130df565b91506136a982613668565b602082019050919050565b600060208201905081810360008301526136cd81613691565b9050919050565b600081905092915050565b60006136ea826130d4565b6136f481856136d4565b93506137048185602086016130f0565b80840191505092915050565b600061371c82846136df565b915081905092915050565b7f4e6f207175657374696f6e2069642073657420666f722070726f76696465642060008201527f70726f706f73616c000000000000000000000000000000000000000000000000602082015250565b60006137836028836130df565b915061378e82613727565b604082019050919050565b600060208201905081810360008301526137b281613776565b9050919050565b7f50726f706f73616c20686173206265656e20696e76616c696461746564000000600082015250565b60006137ef601d836130df565b91506137fa826137b9565b602082019050919050565b6000602082019050818103600083015261381e816137e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f556e6578706563746564207472616e73616374696f6e20686173680000000000600082015250565b600061388a601b836130df565b915061389582613854565b602082019050919050565b600060208201905081810360008301526138b98161387d565b9050919050565b7f5472616e73616374696f6e20776173206e6f7420617070726f76656400000000600082015250565b60006138f6601c836130df565b9150613901826138c0565b602082019050919050565b60006020820190508181036000830152613925816138e9565b9050919050565b60008151905061393b81612b8a565b92915050565b600060208284031215613957576139566128a7565b5b60006139658482850161392c565b91505092915050565b7f426f6e64206f6e207175657374696f6e206e6f74206869676820656e6f756768600082015250565b60006139a46020836130df565b91506139af8261396e565b602082019050919050565b600060208201905081810360008301526139d381613997565b9050919050565b6000815190506139e981612e61565b92915050565b600060208284031215613a0557613a046128a7565b5b6000613a13848285016139da565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a5682612b80565b9150613a6183612b80565b9250828201905080821115613a7957613a78613a1c565b5b92915050565b7f5761697420666f72206164646974696f6e616c20636f6f6c646f776e00000000600082015250565b6000613ab5601c836130df565b9150613ac082613a7f565b602082019050919050565b60006020820190508181036000830152613ae481613aa8565b9050919050565b7f416e737765722068617320657870697265640000000000000000000000000000600082015250565b6000613b216012836130df565b9150613b2c82613aeb565b602082019050919050565b60006020820190508181036000830152613b5081613b14565b9050919050565b6000613b6282612b80565b9150613b6d83612b80565b9250828203905081811115613b8557613b84613a1c565b5b92915050565b7f50726576696f7573207472616e73616374696f6e206e6f74206578656375746560008201527f6420796574000000000000000000000000000000000000000000000000000000602082015250565b6000613be76025836130df565b9150613bf282613b8b565b604082019050919050565b60006020820190508181036000830152613c1681613bda565b9050919050565b7f43616e6e6f742065786563757465207472616e73616374696f6e20616761696e600082015250565b6000613c536020836130df565b9150613c5e82613c1d565b602082019050919050565b60006020820190508181036000830152613c8281613c46565b9050919050565b7f4d6f64756c65207472616e73616374696f6e206661696c656400000000000000600082015250565b6000613cbf6019836130df565b9150613cca82613c89565b602082019050919050565b60006020820190508181036000830152613cee81613cb2565b9050919050565b60006060820190508181036000830152613d0f818661311a565b9050613d1e6020830185612e37565b613d2b6040830184613032565b949350505050565b6000613d3e82612dfd565b9150613d4983612dfd565b9250828203905063ffffffff811115613d6557613d64613a1c565b5b92915050565b7f5468657265206e65656420746f206265206174206c656173742036307320626560008201527f747765656e20656e64206f6620636f6f6c646f776e20616e642065787069726160208201527f74696f6e00000000000000000000000000000000000000000000000000000000604082015250565b6000613ded6044836130df565b9150613df882613d6b565b606082019050919050565b60006020820190508181036000830152613e1c81613de0565b9050919050565b600081519050919050565b600081905092915050565b6000819050602082019050919050565b613e5281612ab3565b82525050565b6000613e648383613e49565b60208301905092915050565b6000602082019050919050565b6000613e8882613e23565b613e928185613e2e565b9350613e9d83613e39565b8060005b83811015613ece578151613eb58882613e58565b9750613ec083613e70565b925050600181019050613ea1565b5085935050505092915050565b6000613ee78284613e7d565b915081905092915050565b60007fffffff000000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b613f39613f3482613ef2565b613f1e565b82525050565b6000613f4b82866136df565b9150613f578285613f28565b600382019150613f6782846136df565b9150819050949350505050565b6000613f7f8261337d565b9050919050565b613f8f81613f74565b82525050565b6000606082019050613faa6000830186612e37565b613fb76020830185613032565b613fc46040830184613f86565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6002811061400c5761400b613fcc565b5b50565b600081905061401d82613ffb565b919050565b600061402d8261400f565b9050919050565b61403d81614022565b82525050565b600060c0820190506140586000830189612e37565b614065602083018861328f565b6140726040830187613032565b61407f6060830186612e37565b61408c6080830185614034565b61409960a0830184613032565b979650505050505050565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b6140eb6140e6826140a4565b6140d0565b82525050565b6000819050919050565b61410c61410782612ab3565b6140f1565b82525050565b600061411e82876140da565b60018201915061412e82866140da565b60018201915061413e82856140fb565b60208201915061414e82846140fb565b60208201915081905095945050505050565b7f54696d656f75742068617320746f206265206772656174657220300000000000600082015250565b6000614196601b836130df565b91506141a182614160565b602082019050919050565b600060208201905081810360008301526141c581614189565b9050919050565b7f74696d656f7574206d757374206265206c657373207468616e2033363520646160008201527f7973000000000000000000000000000000000000000000000000000000000000602082015250565b60006142286022836130df565b9150614233826141cc565b604082019050919050565b600060208201905081810360008301526142578161421b565b9050919050565b6000614269826128b1565b9050919050565b6142798161425e565b811461428457600080fd5b50565b60008151905061429681614270565b92915050565b6000815190506142ab816132f8565b92915050565b6000806000806000806000806000806101408b8d0312156142d5576142d46128a7565b5b60006142e38d828e01614287565b9a505060206142f48d828e01614287565b99505060406143058d828e01614287565b98505060606143168d828e0161429c565b97505060806143278d828e016139da565b96505060a06143388d828e016139da565b95505060c06143498d828e016139da565b94505060e061435a8d828e0161392c565b93505061010061436c8d828e0161392c565b92505061012061437e8d828e01614287565b9150509295989b9194979a5092959850565b7f4176617461722063616e206e6f74206265207a65726f20616464726573730000600082015250565b60006143c6601e836130df565b91506143d182614390565b602082019050919050565b600060208201905081810360008301526143f5816143b9565b9050919050565b7f5461726765742063616e206e6f74206265207a65726f20616464726573730000600082015250565b6000614432601e836130df565b915061443d826143fc565b602082019050919050565b6000602082019050818103600083015261446181614425565b9050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b60006144a161449c61449784614468565b613351565b614472565b9050919050565b6144b181614486565b82525050565b60006020820190506144cc60008301846144a8565b92915050565b6000819050919050565b6144ed6144e882612b80565b6144d2565b82525050565b60008160e01b9050919050565b600061450b826144f3565b9050919050565b61452361451e82612dfd565b614500565b82525050565b600061453582866144dc565b6020820191506145458285614512565b60048201915061455582846136df565b9150819050949350505050565b60008160601b9050919050565b600061457a82614562565b9050919050565b600061458c8261456f565b9050919050565b6145a461459f826128d1565b614581565b82525050565b6145bb6145b68261338f565b614581565b82525050565b6145d26145cd82613f74565b614581565b82525050565b60006145e4828a6140fb565b6020820191506145f48289614593565b6014820191506146048288614512565b60048201915061461482876144dc565b60208201915061462482866145aa565b60148201915061463482856145c1565b60148201915061464482846144dc565b60208201915081905098975050505050505050565b7f416e7377657273206172652076616c696420666f726576657200000000000000600082015250565b600061468f6019836130df565b915061469a82614659565b602082019050919050565b600060208201905081810360008301526146be81614682565b9050919050565b7f50726f706f73616c20697320616c726561647920696e76616c69646174656400600082015250565b60006146fb601f836130df565b9150614706826146c5565b602082019050919050565b6000602082019050818103600083015261472a816146ee565b9050919050565b7f4f6e6c7920706f73697469766520616e73776572732063616e20657870697265600082015250565b60006147676020836130df565b915061477282614731565b602082019050919050565b600060208201905081810360008301526147968161475a565b9050919050565b7f416e7377657220686173206e6f74206578706972656420796574000000000000600082015250565b60006147d3601a836130df565b91506147de8261479d565b602082019050919050565b60006020820190508181036000830152614802816147c6565b9050919050565b6000819050919050565b600061482e61482961482484614809565b613351565b612dfd565b9050919050565b61483e81614813565b82525050565b600060e082019050614859600083018a613032565b818103602083015261486b818961311a565b905061487a604083018861328f565b6148876060830187612e0d565b6148946080830186614835565b6148a160a0830185613032565b6148ae60c0830184613032565b98975050505050505050565b60006080820190506148cf600083018761328f565b6148dc6020830186613032565b81810360408301526148ee81856131be565b90506148fd6060830184614034565b95945050505050565b61490f81613259565b811461491a57600080fd5b50565b60008151905061492c81614906565b92915050565b600060208284031215614948576149476128a7565b5b60006149568482850161491d565b91505092915050565b600061496a82612b80565b915061497583612b80565b925082820261498381612b80565b9150828204841483151761499a57614999613a1c565b5b5092915050565b600060ff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006149e8826149a1565b91506149f3836149a1565b925082614a0357614a026149ae565b5b828204905092915050565b6000614a19826149a1565b9150614a24836149a1565b925082614a3457614a336149ae565b5b828206905092915050565b6000614a4a82612b80565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614a7c57614a7b613a1c565b5b600182019050919050565b6000614a92826149a1565b9150614a9d836149a1565b9250828201905060ff811115614ab657614ab5613a1c565b5b9291505056fea264697066735822122045650d79d526af0732545016e8ea9bd0e9db04e82f05de6df7828805556c7c8364736f6c63430008140033",
"constructorArgs": {
"types": [
"address",
"address",
"address",
"address",
"uint32",
"uint32",
"uint32",
"uint256",
"uint256",