@layerzerolabs/onesig-evm 0.0.8 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/contracts/ExecutorStore.sol/ExecutorStore.json +164 -0
- package/artifacts/contracts/MultiSig.sol/MultiSig.json +2 -2
- package/artifacts/contracts/OneSig.sol/OneSig.json +198 -11
- package/artifacts/contracts/lib/SelfCallable.sol/SelfCallable.json +16 -0
- package/artifacts-tron/contracts/ExecutorStore.sol/ExecutorStore.json +164 -0
- package/artifacts-tron/contracts/MultiSig.sol/MultiSig.json +2 -2
- package/artifacts-tron/contracts/OneSig.sol/OneSig.json +198 -11
- package/artifacts-tron/contracts/lib/SelfCallable.sol/SelfCallable.json +16 -0
- package/artifacts-zk/contracts/ExecutorStore.sol/ExecutorStore.json +165 -0
- package/artifacts-zk/contracts/MultiSig.sol/MultiSig.json +2 -2
- package/artifacts-zk/contracts/OneSig.sol/OneSig.json +198 -11
- package/artifacts-zk/contracts/lib/SelfCallable.sol/SelfCallable.json +17 -0
- package/contracts/ExecutorStore.sol +137 -0
- package/contracts/MultiSig.sol +15 -20
- package/contracts/OneSig.sol +53 -26
- package/contracts/lib/SelfCallable.sol +16 -0
- package/dist/index.js +1 -0
- package/package.json +5 -4
- package/typechain-types/@openzeppelin/contracts/utils/ReentrancyGuard.ts +55 -0
- package/typechain-types/@openzeppelin/contracts/utils/index.ts +1 -0
- package/typechain-types/contracts/ExecutorStore.ts +286 -0
- package/typechain-types/contracts/MultiSig.ts +5 -2
- package/typechain-types/contracts/OneSig.ts +248 -3
- package/typechain-types/contracts/index.ts +3 -0
- package/typechain-types/contracts/lib/SelfCallable.ts +55 -0
- package/typechain-types/contracts/lib/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.ts +31 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.ts +1 -1
- package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/MerkleProof__factory.ts +1 -1
- package/typechain-types/factories/@openzeppelin/contracts/utils/index.ts +1 -0
- package/typechain-types/factories/contracts/ExecutorStore__factory.ts +179 -0
- package/typechain-types/factories/contracts/MultiSig__factory.ts +2 -2
- package/typechain-types/factories/contracts/OneSig__factory.ts +209 -14
- package/typechain-types/factories/contracts/index.ts +2 -0
- package/typechain-types/factories/contracts/lib/SelfCallable__factory.ts +31 -0
- package/typechain-types/factories/contracts/lib/index.ts +4 -0
- package/typechain-types/factories/contracts/mocks/MockOApp__factory.ts +1 -1
- package/typechain-types/hardhat.d.ts +27 -0
- package/typechain-types/index.ts +6 -0
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "ExecutorStore",
|
|
4
|
+
"sourceName": "contracts/ExecutorStore.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "executor",
|
|
11
|
+
"type": "address"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"name": "ExecutorAlreadyActive",
|
|
15
|
+
"type": "error"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"inputs": [
|
|
19
|
+
{
|
|
20
|
+
"internalType": "address",
|
|
21
|
+
"name": "executor",
|
|
22
|
+
"type": "address"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"name": "ExecutorNotFound",
|
|
26
|
+
"type": "error"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"inputs": [],
|
|
30
|
+
"name": "InvalidExecutor",
|
|
31
|
+
"type": "error"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"inputs": [],
|
|
35
|
+
"name": "OnlySelfCall",
|
|
36
|
+
"type": "error"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"anonymous": false,
|
|
40
|
+
"inputs": [
|
|
41
|
+
{
|
|
42
|
+
"indexed": false,
|
|
43
|
+
"internalType": "bool",
|
|
44
|
+
"name": "required",
|
|
45
|
+
"type": "bool"
|
|
46
|
+
}
|
|
47
|
+
],
|
|
48
|
+
"name": "ExecutorRequiredSet",
|
|
49
|
+
"type": "event"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"anonymous": false,
|
|
53
|
+
"inputs": [
|
|
54
|
+
{
|
|
55
|
+
"indexed": true,
|
|
56
|
+
"internalType": "address",
|
|
57
|
+
"name": "executor",
|
|
58
|
+
"type": "address"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"indexed": false,
|
|
62
|
+
"internalType": "bool",
|
|
63
|
+
"name": "active",
|
|
64
|
+
"type": "bool"
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"name": "ExecutorSet",
|
|
68
|
+
"type": "event"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"inputs": [],
|
|
72
|
+
"name": "executorRequired",
|
|
73
|
+
"outputs": [
|
|
74
|
+
{
|
|
75
|
+
"internalType": "bool",
|
|
76
|
+
"name": "",
|
|
77
|
+
"type": "bool"
|
|
78
|
+
}
|
|
79
|
+
],
|
|
80
|
+
"stateMutability": "view",
|
|
81
|
+
"type": "function"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"inputs": [],
|
|
85
|
+
"name": "getExecutors",
|
|
86
|
+
"outputs": [
|
|
87
|
+
{
|
|
88
|
+
"internalType": "address[]",
|
|
89
|
+
"name": "",
|
|
90
|
+
"type": "address[]"
|
|
91
|
+
}
|
|
92
|
+
],
|
|
93
|
+
"stateMutability": "view",
|
|
94
|
+
"type": "function"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"inputs": [
|
|
98
|
+
{
|
|
99
|
+
"internalType": "address",
|
|
100
|
+
"name": "_executor",
|
|
101
|
+
"type": "address"
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"name": "isExecutor",
|
|
105
|
+
"outputs": [
|
|
106
|
+
{
|
|
107
|
+
"internalType": "bool",
|
|
108
|
+
"name": "",
|
|
109
|
+
"type": "bool"
|
|
110
|
+
}
|
|
111
|
+
],
|
|
112
|
+
"stateMutability": "view",
|
|
113
|
+
"type": "function"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"inputs": [
|
|
117
|
+
{
|
|
118
|
+
"internalType": "address",
|
|
119
|
+
"name": "_executor",
|
|
120
|
+
"type": "address"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"internalType": "bool",
|
|
124
|
+
"name": "_active",
|
|
125
|
+
"type": "bool"
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"name": "setExecutor",
|
|
129
|
+
"outputs": [],
|
|
130
|
+
"stateMutability": "nonpayable",
|
|
131
|
+
"type": "function"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"inputs": [
|
|
135
|
+
{
|
|
136
|
+
"internalType": "bool",
|
|
137
|
+
"name": "_executorRequired",
|
|
138
|
+
"type": "bool"
|
|
139
|
+
}
|
|
140
|
+
],
|
|
141
|
+
"name": "setExecutorRequired",
|
|
142
|
+
"outputs": [],
|
|
143
|
+
"stateMutability": "nonpayable",
|
|
144
|
+
"type": "function"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"inputs": [],
|
|
148
|
+
"name": "totalExecutors",
|
|
149
|
+
"outputs": [
|
|
150
|
+
{
|
|
151
|
+
"internalType": "uint256",
|
|
152
|
+
"name": "",
|
|
153
|
+
"type": "uint256"
|
|
154
|
+
}
|
|
155
|
+
],
|
|
156
|
+
"stateMutability": "view",
|
|
157
|
+
"type": "function"
|
|
158
|
+
}
|
|
159
|
+
],
|
|
160
|
+
"bytecode": "0x",
|
|
161
|
+
"deployedBytecode": "0x",
|
|
162
|
+
"linkReferences": {},
|
|
163
|
+
"deployedLinkReferences": {}
|
|
164
|
+
}
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
39
|
"inputs": [],
|
|
40
|
-
"name": "
|
|
40
|
+
"name": "OnlySelfCall",
|
|
41
41
|
"type": "error"
|
|
42
42
|
},
|
|
43
43
|
{
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"anonymous": false,
|
|
98
98
|
"inputs": [
|
|
99
99
|
{
|
|
100
|
-
"indexed":
|
|
100
|
+
"indexed": true,
|
|
101
101
|
"internalType": "address",
|
|
102
102
|
"name": "signer",
|
|
103
103
|
"type": "address"
|
|
@@ -5,6 +5,11 @@
|
|
|
5
5
|
"abi": [
|
|
6
6
|
{
|
|
7
7
|
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "uint64",
|
|
10
|
+
"name": "_oneSigId",
|
|
11
|
+
"type": "uint64"
|
|
12
|
+
},
|
|
8
13
|
{
|
|
9
14
|
"internalType": "address[]",
|
|
10
15
|
"name": "_signers",
|
|
@@ -16,9 +21,14 @@
|
|
|
16
21
|
"type": "uint256"
|
|
17
22
|
},
|
|
18
23
|
{
|
|
19
|
-
"internalType": "
|
|
20
|
-
"name": "
|
|
21
|
-
"type": "
|
|
24
|
+
"internalType": "address[]",
|
|
25
|
+
"name": "_executors",
|
|
26
|
+
"type": "address[]"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"internalType": "bool",
|
|
30
|
+
"name": "_executorRequired",
|
|
31
|
+
"type": "bool"
|
|
22
32
|
},
|
|
23
33
|
{
|
|
24
34
|
"internalType": "bytes32",
|
|
@@ -67,6 +77,33 @@
|
|
|
67
77
|
"name": "ExecutionFailed",
|
|
68
78
|
"type": "error"
|
|
69
79
|
},
|
|
80
|
+
{
|
|
81
|
+
"inputs": [
|
|
82
|
+
{
|
|
83
|
+
"internalType": "address",
|
|
84
|
+
"name": "executor",
|
|
85
|
+
"type": "address"
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"name": "ExecutorAlreadyActive",
|
|
89
|
+
"type": "error"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"inputs": [
|
|
93
|
+
{
|
|
94
|
+
"internalType": "address",
|
|
95
|
+
"name": "executor",
|
|
96
|
+
"type": "address"
|
|
97
|
+
}
|
|
98
|
+
],
|
|
99
|
+
"name": "ExecutorNotFound",
|
|
100
|
+
"type": "error"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"inputs": [],
|
|
104
|
+
"name": "InvalidExecutor",
|
|
105
|
+
"type": "error"
|
|
106
|
+
},
|
|
70
107
|
{
|
|
71
108
|
"inputs": [],
|
|
72
109
|
"name": "InvalidProofOrNonce",
|
|
@@ -84,7 +121,17 @@
|
|
|
84
121
|
},
|
|
85
122
|
{
|
|
86
123
|
"inputs": [],
|
|
87
|
-
"name": "
|
|
124
|
+
"name": "OnlyExecutorOrSigner",
|
|
125
|
+
"type": "error"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"inputs": [],
|
|
129
|
+
"name": "OnlySelfCall",
|
|
130
|
+
"type": "error"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"inputs": [],
|
|
134
|
+
"name": "ReentrancyGuardReentrantCall",
|
|
88
135
|
"type": "error"
|
|
89
136
|
},
|
|
90
137
|
{
|
|
@@ -140,6 +187,38 @@
|
|
|
140
187
|
"name": "ZeroThreshold",
|
|
141
188
|
"type": "error"
|
|
142
189
|
},
|
|
190
|
+
{
|
|
191
|
+
"anonymous": false,
|
|
192
|
+
"inputs": [
|
|
193
|
+
{
|
|
194
|
+
"indexed": false,
|
|
195
|
+
"internalType": "bool",
|
|
196
|
+
"name": "required",
|
|
197
|
+
"type": "bool"
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"name": "ExecutorRequiredSet",
|
|
201
|
+
"type": "event"
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"anonymous": false,
|
|
205
|
+
"inputs": [
|
|
206
|
+
{
|
|
207
|
+
"indexed": true,
|
|
208
|
+
"internalType": "address",
|
|
209
|
+
"name": "executor",
|
|
210
|
+
"type": "address"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"indexed": false,
|
|
214
|
+
"internalType": "bool",
|
|
215
|
+
"name": "active",
|
|
216
|
+
"type": "bool"
|
|
217
|
+
}
|
|
218
|
+
],
|
|
219
|
+
"name": "ExecutorSet",
|
|
220
|
+
"type": "event"
|
|
221
|
+
},
|
|
143
222
|
{
|
|
144
223
|
"anonymous": false,
|
|
145
224
|
"inputs": [
|
|
@@ -157,7 +236,7 @@
|
|
|
157
236
|
"anonymous": false,
|
|
158
237
|
"inputs": [
|
|
159
238
|
{
|
|
160
|
-
"indexed":
|
|
239
|
+
"indexed": true,
|
|
161
240
|
"internalType": "address",
|
|
162
241
|
"name": "signer",
|
|
163
242
|
"type": "address"
|
|
@@ -246,9 +325,28 @@
|
|
|
246
325
|
{
|
|
247
326
|
"inputs": [
|
|
248
327
|
{
|
|
249
|
-
"internalType": "
|
|
328
|
+
"internalType": "address",
|
|
329
|
+
"name": "_sender",
|
|
330
|
+
"type": "address"
|
|
331
|
+
}
|
|
332
|
+
],
|
|
333
|
+
"name": "canExecuteTransaction",
|
|
334
|
+
"outputs": [
|
|
335
|
+
{
|
|
336
|
+
"internalType": "bool",
|
|
337
|
+
"name": "",
|
|
338
|
+
"type": "bool"
|
|
339
|
+
}
|
|
340
|
+
],
|
|
341
|
+
"stateMutability": "view",
|
|
342
|
+
"type": "function"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"inputs": [
|
|
346
|
+
{
|
|
347
|
+
"internalType": "uint64",
|
|
250
348
|
"name": "_nonce",
|
|
251
|
-
"type": "
|
|
349
|
+
"type": "uint64"
|
|
252
350
|
},
|
|
253
351
|
{
|
|
254
352
|
"components": [
|
|
@@ -341,6 +439,32 @@
|
|
|
341
439
|
"stateMutability": "payable",
|
|
342
440
|
"type": "function"
|
|
343
441
|
},
|
|
442
|
+
{
|
|
443
|
+
"inputs": [],
|
|
444
|
+
"name": "executorRequired",
|
|
445
|
+
"outputs": [
|
|
446
|
+
{
|
|
447
|
+
"internalType": "bool",
|
|
448
|
+
"name": "",
|
|
449
|
+
"type": "bool"
|
|
450
|
+
}
|
|
451
|
+
],
|
|
452
|
+
"stateMutability": "view",
|
|
453
|
+
"type": "function"
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"inputs": [],
|
|
457
|
+
"name": "getExecutors",
|
|
458
|
+
"outputs": [
|
|
459
|
+
{
|
|
460
|
+
"internalType": "address[]",
|
|
461
|
+
"name": "",
|
|
462
|
+
"type": "address[]"
|
|
463
|
+
}
|
|
464
|
+
],
|
|
465
|
+
"stateMutability": "view",
|
|
466
|
+
"type": "function"
|
|
467
|
+
},
|
|
344
468
|
{
|
|
345
469
|
"inputs": [],
|
|
346
470
|
"name": "getSigners",
|
|
@@ -354,6 +478,25 @@
|
|
|
354
478
|
"stateMutability": "view",
|
|
355
479
|
"type": "function"
|
|
356
480
|
},
|
|
481
|
+
{
|
|
482
|
+
"inputs": [
|
|
483
|
+
{
|
|
484
|
+
"internalType": "address",
|
|
485
|
+
"name": "_executor",
|
|
486
|
+
"type": "address"
|
|
487
|
+
}
|
|
488
|
+
],
|
|
489
|
+
"name": "isExecutor",
|
|
490
|
+
"outputs": [
|
|
491
|
+
{
|
|
492
|
+
"internalType": "bool",
|
|
493
|
+
"name": "",
|
|
494
|
+
"type": "bool"
|
|
495
|
+
}
|
|
496
|
+
],
|
|
497
|
+
"stateMutability": "view",
|
|
498
|
+
"type": "function"
|
|
499
|
+
},
|
|
357
500
|
{
|
|
358
501
|
"inputs": [
|
|
359
502
|
{
|
|
@@ -378,9 +521,9 @@
|
|
|
378
521
|
"name": "nonce",
|
|
379
522
|
"outputs": [
|
|
380
523
|
{
|
|
381
|
-
"internalType": "
|
|
524
|
+
"internalType": "uint64",
|
|
382
525
|
"name": "",
|
|
383
|
-
"type": "
|
|
526
|
+
"type": "uint64"
|
|
384
527
|
}
|
|
385
528
|
],
|
|
386
529
|
"stateMutability": "view",
|
|
@@ -399,6 +542,37 @@
|
|
|
399
542
|
"stateMutability": "view",
|
|
400
543
|
"type": "function"
|
|
401
544
|
},
|
|
545
|
+
{
|
|
546
|
+
"inputs": [
|
|
547
|
+
{
|
|
548
|
+
"internalType": "address",
|
|
549
|
+
"name": "_executor",
|
|
550
|
+
"type": "address"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"internalType": "bool",
|
|
554
|
+
"name": "_active",
|
|
555
|
+
"type": "bool"
|
|
556
|
+
}
|
|
557
|
+
],
|
|
558
|
+
"name": "setExecutor",
|
|
559
|
+
"outputs": [],
|
|
560
|
+
"stateMutability": "nonpayable",
|
|
561
|
+
"type": "function"
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"inputs": [
|
|
565
|
+
{
|
|
566
|
+
"internalType": "bool",
|
|
567
|
+
"name": "_executorRequired",
|
|
568
|
+
"type": "bool"
|
|
569
|
+
}
|
|
570
|
+
],
|
|
571
|
+
"name": "setExecutorRequired",
|
|
572
|
+
"outputs": [],
|
|
573
|
+
"stateMutability": "nonpayable",
|
|
574
|
+
"type": "function"
|
|
575
|
+
},
|
|
402
576
|
{
|
|
403
577
|
"inputs": [
|
|
404
578
|
{
|
|
@@ -456,6 +630,19 @@
|
|
|
456
630
|
"stateMutability": "view",
|
|
457
631
|
"type": "function"
|
|
458
632
|
},
|
|
633
|
+
{
|
|
634
|
+
"inputs": [],
|
|
635
|
+
"name": "totalExecutors",
|
|
636
|
+
"outputs": [
|
|
637
|
+
{
|
|
638
|
+
"internalType": "uint256",
|
|
639
|
+
"name": "",
|
|
640
|
+
"type": "uint256"
|
|
641
|
+
}
|
|
642
|
+
],
|
|
643
|
+
"stateMutability": "view",
|
|
644
|
+
"type": "function"
|
|
645
|
+
},
|
|
459
646
|
{
|
|
460
647
|
"inputs": [],
|
|
461
648
|
"name": "totalSigners",
|
|
@@ -585,8 +772,8 @@
|
|
|
585
772
|
"type": "receive"
|
|
586
773
|
}
|
|
587
774
|
],
|
|
588
|
-
"bytecode": "0x60a06040523480156200001157600080fd5b5060405162001ba838038062001ba88339810160408190526200003491620002f1565b838360005b82518110156200007957620000708382815181106200005c576200005c620003e9565b6020026020010151620000d660201b60201c565b60010162000039565b5062000085816200017f565b50506001600160401b03821660805260038190556040518181527f36d9c0a688d366a03517cca4843dfff4e45db3869d5fd86fb9d15a1b45ce0e5a9060200160405180910390a150505050620003ff565b6001600160a01b038116620000fe57604051632057875960e21b815260040160405180910390fd5b6200010b60008262000217565b62000139576040516327ec359360e21b81526001600160a01b03821660048201526024015b60405180910390fd5b604080516001600160a01b0383168152600160208201527ffc4acb499491cd850a8a21ab98c7f128850c0f0e5f1a875a62b7fa055c2ecf1991015b60405180910390a150565b80600003620001a15760405163831761d760e01b815260040160405180910390fd5b80620001ac62000237565b1015620001e157620001bd62000237565b60405162daa43760e71b815260048101919091526024810182905260440162000130565b60028190556040518181527f6e8a187d7944998085dbd1f16b84c51c903bb727536cdba86962439aded2cfd79060200162000174565b60006200022e836001600160a01b03841662000249565b90505b92915050565b600062000244816200029b565b905090565b6000818152600183016020526040812054620002925750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000231565b50600062000231565b600062000231825490565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b0381168114620002d457600080fd5b919050565b80516001600160401b0381168114620002d457600080fd5b600080600080608085870312156200030857600080fd5b84516001600160401b03808211156200032057600080fd5b818701915087601f8301126200033557600080fd5b81516020828211156200034c576200034c620002a6565b8160051b604051601f19603f83011681018181108682111715620003745762000374620002a6565b60405292835281830193508481018201928b8411156200039357600080fd5b948201945b83861015620003bc57620003ac86620002bc565b8552948201949382019362000398565b809950505080890151965050505050620003d960408601620002d9565b6060959095015193969295505050565b634e487b7160e01b600052603260045260246000fd5b608051611786620004226000396000818161032301526109a001526117866000f3fe60806040526004361061010d5760003560e01c806394cf795e11610095578063d1a6264811610064578063d1a62648146102bc578063d63f97c9146102d1578063e3bd0362146102f1578063e9ec3f5814610311578063ffa1ad741461035e57600080fd5b806394cf795e14610244578063960bfe0414610266578063affed0e014610286578063c7a823e01461029c57600080fd5b806349dcfdd5116100dc57806349dcfdd5146101a45780636419ebde146101cb5780637d94792a146101eb5780637df73e27146102015780638e6725bd1461023157600080fd5b80632b03f6ab1461011957806331cb61051461013b578063347024ff1461015b57806342cde4e81461017b57600080fd5b3661011457005b600080fd5b34801561012557600080fd5b506101396101343660046110cd565b61039c565b005b34801561014757600080fd5b5061013961015636600461113c565b61053e565b34801561016757600080fd5b50610139610176366004611178565b61057a565b34801561018757600080fd5b5061019160025481565b6040519081526020015b60405180910390f35b3480156101b057600080fd5b506101b9600181565b60405160ff909116815260200161019b565b3480156101d757600080fd5b506101396101e6366004611191565b6105d6565b3480156101f757600080fd5b5061019160035481565b34801561020d57600080fd5b5061022161021c3660046111e4565b610725565b604051901515815260200161019b565b61013961023f366004611217565b610737565b34801561025057600080fd5b506102596108e9565b60405161019b9190611295565b34801561027257600080fd5b50610139610281366004611178565b6108fa565b34801561029257600080fd5b5061019160045481565b3480156102a857600080fd5b506101396102b73660046112e2565b610926565b3480156102c857600080fd5b50610191610939565b3480156102dd57600080fd5b506101396102ec36600461132e565b610945565b3480156102fd57600080fd5b5061019161030c366004611375565b61099a565b34801561031d57600080fd5b506103457f000000000000000000000000000000000000000000000000000000000000000081565b60405167ffffffffffffffff909116815260200161019b565b34801561036a57600080fd5b5061038f60405180604001604052806005815260200164302e302e3160d81b81525081565b60405161019b9190611418565b824211156103bd57604051634f01675560e01b815260040160405180910390fd5b6040805180820182526002815261190160f01b6020808301919091528251808401845260068152654f6e6553696760d01b90820152825180840184526005815264302e302e3160d81b9082015282517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527fbd7855a8d66a83be54ebc7fa5f2e3fb658ab6007afa89cd93dfca08ad1b97ec8818501527fae209a0b48f21c054280f2455d32cf309387644879d9acbd8ffc19916381188560608201526001608082015261dead60a0808301919091528451808303909101815260c0820185528051908301206003547f642ed5d2b77bc7ccb98e10da4c02d7cd8231228da4222a9f88a80c15545074ed60e0840152610100830152610120820189905261014080830189905285518084039091018152610160830190955284519490920193909320600093610514939291906101800161144b565b604051602081830303815290604052805190602001209050610537818484610926565b5050505050565b33301461055e57604051634afb817760e11b815260040160405180910390fd5b80156105715761056d82610a20565b5050565b61056d82610ab9565b33301461059a57604051634afb817760e11b815260040160405180910390fd5b60038190556040518181527f36d9c0a688d366a03517cca4843dfff4e45db3869d5fd86fb9d15a1b45ce0e5a906020015b60405180910390a150565b806000036105f75760405163831761d760e01b815260040160405180910390fd5b610602816041611488565b82146106215760405163669233e360e11b815260040160405180910390fd5b6000805b8281101561071d57366000868661063d856041611488565b9061064986600161149f565b610654906041611488565b92610661939291906114b2565b9150915060006106a78984848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610b6892505050565b9050846001600160a01b0316816001600160a01b0316116106db5760405163d02ef0e560e01b815260040160405180910390fd5b6106e481610725565b610711576040516353b1def160e01b81526001600160a01b03821660048201526024015b60405180910390fd5b93505050600101610625565b505050505050565b60006107318183610b92565b92915050565b6107438484848461039c565b61074d8486610945565b600480546000918261075e836114dc565b91905055905060005b61077187806114f5565b90508110156108a757600061078688806114f5565b838181106107965761079661153f565b90506020028101906107a89190611555565b6107b69060208101906111e4565b6001600160a01b03166107c989806114f5565b848181106107d9576107d961153f565b90506020028101906107eb9190611555565b602001356107f98a806114f5565b858181106108095761080961153f565b905060200281019061081b9190611555565b610829906040810190611575565b6040516108379291906115bc565b60006040518083038185875af1925050503d8060008114610874576040519150601f19603f3d011682016040523d82523d6000602084013e610879565b606091505b505090508061089e57604051632497eb8760e11b815260048101839052602401610708565b50600101610767565b5060408051868152602081018390527fd9a0df418868c38712b1f6eab685bc77a2e49596edd77667ab34d5448f5f941c910160405180910390a1505050505050565b60606108f56000610bb7565b905090565b33301461091a57604051634afb817760e11b815260040160405180910390fd5b61092381610bc4565b50565b6109348383836002546105d6565b505050565b60006108f56000610c54565b6004546000906109599061030c84806114f5565b9050600061097461096d60208501856114f5565b8685610c5e565b9050806109945760405163150b827160e11b815260040160405180910390fd5b50505050565b600060017f0000000000000000000000000000000000000000000000000000000000000000306001600160a01b031660001b8686866040516020016109e09291906115cc565b60408051601f1981840301815290829052610a0195949392916020016116bd565b6040516020818303038152906040528051906020012090509392505050565b6001600160a01b038116610a4757604051632057875960e21b815260040160405180910390fd5b610a52600082610c76565b610a7a576040516327ec359360e21b81526001600160a01b0382166004820152602401610708565b604080516001600160a01b0383168152600160208201527ffc4acb499491cd850a8a21ab98c7f128850c0f0e5f1a875a62b7fa055c2ecf1991016105cb565b610ac4600082610c8b565b610aec576040516353b1def160e01b81526001600160a01b0382166004820152602401610708565b600254610af7610939565b1015610b2957610b05610939565b60025460405162daa43760e71b815260048101929092526024820152604401610708565b604080516001600160a01b0383168152600060208201527ffc4acb499491cd850a8a21ab98c7f128850c0f0e5f1a875a62b7fa055c2ecf1991016105cb565b600080600080610b788686610ca0565b925092509250610b888282610ced565b5090949350505050565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b60606000610bb083610da6565b80600003610be55760405163831761d760e01b815260040160405180910390fd5b80610bee610939565b1015610c1f57610bfc610939565b60405162daa43760e71b8152600481019190915260248101829052604401610708565b60028190556040518181527f6e8a187d7944998085dbd1f16b84c51c903bb727536cdba86962439aded2cfd7906020016105cb565b6000610731825490565b600082610c6c868685610e02565b1495945050505050565b6000610bb0836001600160a01b038416610e44565b6000610bb0836001600160a01b038416610e93565b60008060008351604103610cda5760208401516040850151606086015160001a610ccc88828585610f86565b955095509550505050610ce6565b50508151600091506002905b9250925092565b6000826003811115610d0157610d01611711565b03610d0a575050565b6001826003811115610d1e57610d1e611711565b03610d3c5760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610d5057610d50611711565b03610d715760405163fce698f760e01b815260048101829052602401610708565b6003826003811115610d8557610d85611711565b0361056d576040516335e2f38360e21b815260048101829052602401610708565b606081600001805480602002602001604051908101604052809291908181526020018280548015610df657602002820191906000526020600020905b815481526020019060010190808311610de2575b50505050509050919050565b600081815b84811015610e3b57610e3182878784818110610e2557610e2561153f565b90506020020135611055565b9150600101610e07565b50949350505050565b6000818152600183016020526040812054610e8b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610731565b506000610731565b60008181526001830160205260408120548015610f7c576000610eb7600183611727565b8554909150600090610ecb90600190611727565b9050808214610f30576000866000018281548110610eeb57610eeb61153f565b9060005260206000200154905080876000018481548110610f0e57610f0e61153f565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080610f4157610f4161173a565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610731565b6000915050610731565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610fc1575060009150600390508261104b565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015611015573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166110415750600092506001915082905061104b565b9250600091508190505b9450945094915050565b6000818310611071576000828152602084905260409020610bb0565b6000838152602083905260409020610bb0565b60008083601f84011261109657600080fd5b50813567ffffffffffffffff8111156110ae57600080fd5b6020830191508360208285010111156110c657600080fd5b9250929050565b600080600080606085870312156110e357600080fd5b8435935060208501359250604085013567ffffffffffffffff81111561110857600080fd5b61111487828801611084565b95989497509550505050565b80356001600160a01b038116811461113757600080fd5b919050565b6000806040838503121561114f57600080fd5b61115883611120565b91506020830135801515811461116d57600080fd5b809150509250929050565b60006020828403121561118a57600080fd5b5035919050565b600080600080606085870312156111a757600080fd5b84359350602085013567ffffffffffffffff8111156111c557600080fd5b6111d187828801611084565b9598909750949560400135949350505050565b6000602082840312156111f657600080fd5b610bb082611120565b60006040828403121561121157600080fd5b50919050565b60008060008060006080868803121561122f57600080fd5b853567ffffffffffffffff8082111561124757600080fd5b61125389838a016111ff565b96506020880135955060408801359450606088013591508082111561127757600080fd5b5061128488828901611084565b969995985093965092949392505050565b6020808252825182820181905260009190848201906040850190845b818110156112d65783516001600160a01b0316835292840192918401916001016112b1565b50909695505050505050565b6000806000604084860312156112f757600080fd5b83359250602084013567ffffffffffffffff81111561131557600080fd5b61132186828701611084565b9497909650939450505050565b6000806040838503121561134157600080fd5b82359150602083013567ffffffffffffffff81111561135f57600080fd5b61136b858286016111ff565b9150509250929050565b60008060006040848603121561138a57600080fd5b83359250602084013567ffffffffffffffff808211156113a957600080fd5b818601915086601f8301126113bd57600080fd5b8135818111156113cc57600080fd5b8760208260051b85010111156113e157600080fd5b6020830194508093505050509250925092565b60005b8381101561140f5781810151838201526020016113f7565b50506000910152565b60208152600082518060208401526114378160408501602087016113f4565b601f01601f19169190910160400192915050565b6000845161145d8184602089016113f4565b91909101928352506020820152604001919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761073157610731611472565b8082018082111561073157610731611472565b600080858511156114c257600080fd5b838611156114cf57600080fd5b5050820193919092039150565b6000600182016114ee576114ee611472565b5060010190565b6000808335601e1984360301811261150c57600080fd5b83018035915067ffffffffffffffff82111561152757600080fd5b6020019150600581901b36038213156110c657600080fd5b634e487b7160e01b600052603260045260246000fd5b60008235605e1983360301811261156b57600080fd5b9190910192915050565b6000808335601e1984360301811261158c57600080fd5b83018035915067ffffffffffffffff8211156115a757600080fd5b6020019150368190038213156110c657600080fd5b8183823760009101908152919050565b60208082528181018390526000906040808401600586901b8501820187855b888110156116af57878303603f190184528135368b9003605e1901811261161157600080fd5b8a0160606001600160a01b0361162683611120565b168552878201358886015286820135601e1983360301811261164757600080fd5b90910187810191903567ffffffffffffffff81111561166557600080fd5b80360383131561167457600080fd5b8188870152808287015260809150808383880137600086820183015295880195601f01601f19169094019093019250908501906001016115eb565b509098975050505050505050565b60ff60f81b8660f81b16815267ffffffffffffffff60c01b8560c01b166001820152836009820152826029820152600082516117008160498501602087016113f4565b919091016049019695505050505050565b634e487b7160e01b600052602160045260246000fd5b8181038181111561073157610731611472565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f75eeb618af747412876c57e0e081f9b6202936e5d65735218b7d9463394a24964736f6c63430008160033",
|
|
589
|
-
"deployedBytecode": "0x60806040526004361061010d5760003560e01c806394cf795e11610095578063d1a6264811610064578063d1a62648146102bc578063d63f97c9146102d1578063e3bd0362146102f1578063e9ec3f5814610311578063ffa1ad741461035e57600080fd5b806394cf795e14610244578063960bfe0414610266578063affed0e014610286578063c7a823e01461029c57600080fd5b806349dcfdd5116100dc57806349dcfdd5146101a45780636419ebde146101cb5780637d94792a146101eb5780637df73e27146102015780638e6725bd1461023157600080fd5b80632b03f6ab1461011957806331cb61051461013b578063347024ff1461015b57806342cde4e81461017b57600080fd5b3661011457005b600080fd5b34801561012557600080fd5b506101396101343660046110cd565b61039c565b005b34801561014757600080fd5b5061013961015636600461113c565b61053e565b34801561016757600080fd5b50610139610176366004611178565b61057a565b34801561018757600080fd5b5061019160025481565b6040519081526020015b60405180910390f35b3480156101b057600080fd5b506101b9600181565b60405160ff909116815260200161019b565b3480156101d757600080fd5b506101396101e6366004611191565b6105d6565b3480156101f757600080fd5b5061019160035481565b34801561020d57600080fd5b5061022161021c3660046111e4565b610725565b604051901515815260200161019b565b61013961023f366004611217565b610737565b34801561025057600080fd5b506102596108e9565b60405161019b9190611295565b34801561027257600080fd5b50610139610281366004611178565b6108fa565b34801561029257600080fd5b5061019160045481565b3480156102a857600080fd5b506101396102b73660046112e2565b610926565b3480156102c857600080fd5b50610191610939565b3480156102dd57600080fd5b506101396102ec36600461132e565b610945565b3480156102fd57600080fd5b5061019161030c366004611375565b61099a565b34801561031d57600080fd5b506103457f000000000000000000000000000000000000000000000000000000000000000081565b60405167ffffffffffffffff909116815260200161019b565b34801561036a57600080fd5b5061038f60405180604001604052806005815260200164302e302e3160d81b81525081565b60405161019b9190611418565b824211156103bd57604051634f01675560e01b815260040160405180910390fd5b6040805180820182526002815261190160f01b6020808301919091528251808401845260068152654f6e6553696760d01b90820152825180840184526005815264302e302e3160d81b9082015282517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527fbd7855a8d66a83be54ebc7fa5f2e3fb658ab6007afa89cd93dfca08ad1b97ec8818501527fae209a0b48f21c054280f2455d32cf309387644879d9acbd8ffc19916381188560608201526001608082015261dead60a0808301919091528451808303909101815260c0820185528051908301206003547f642ed5d2b77bc7ccb98e10da4c02d7cd8231228da4222a9f88a80c15545074ed60e0840152610100830152610120820189905261014080830189905285518084039091018152610160830190955284519490920193909320600093610514939291906101800161144b565b604051602081830303815290604052805190602001209050610537818484610926565b5050505050565b33301461055e57604051634afb817760e11b815260040160405180910390fd5b80156105715761056d82610a20565b5050565b61056d82610ab9565b33301461059a57604051634afb817760e11b815260040160405180910390fd5b60038190556040518181527f36d9c0a688d366a03517cca4843dfff4e45db3869d5fd86fb9d15a1b45ce0e5a906020015b60405180910390a150565b806000036105f75760405163831761d760e01b815260040160405180910390fd5b610602816041611488565b82146106215760405163669233e360e11b815260040160405180910390fd5b6000805b8281101561071d57366000868661063d856041611488565b9061064986600161149f565b610654906041611488565b92610661939291906114b2565b9150915060006106a78984848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610b6892505050565b9050846001600160a01b0316816001600160a01b0316116106db5760405163d02ef0e560e01b815260040160405180910390fd5b6106e481610725565b610711576040516353b1def160e01b81526001600160a01b03821660048201526024015b60405180910390fd5b93505050600101610625565b505050505050565b60006107318183610b92565b92915050565b6107438484848461039c565b61074d8486610945565b600480546000918261075e836114dc565b91905055905060005b61077187806114f5565b90508110156108a757600061078688806114f5565b838181106107965761079661153f565b90506020028101906107a89190611555565b6107b69060208101906111e4565b6001600160a01b03166107c989806114f5565b848181106107d9576107d961153f565b90506020028101906107eb9190611555565b602001356107f98a806114f5565b858181106108095761080961153f565b905060200281019061081b9190611555565b610829906040810190611575565b6040516108379291906115bc565b60006040518083038185875af1925050503d8060008114610874576040519150601f19603f3d011682016040523d82523d6000602084013e610879565b606091505b505090508061089e57604051632497eb8760e11b815260048101839052602401610708565b50600101610767565b5060408051868152602081018390527fd9a0df418868c38712b1f6eab685bc77a2e49596edd77667ab34d5448f5f941c910160405180910390a1505050505050565b60606108f56000610bb7565b905090565b33301461091a57604051634afb817760e11b815260040160405180910390fd5b61092381610bc4565b50565b6109348383836002546105d6565b505050565b60006108f56000610c54565b6004546000906109599061030c84806114f5565b9050600061097461096d60208501856114f5565b8685610c5e565b9050806109945760405163150b827160e11b815260040160405180910390fd5b50505050565b600060017f0000000000000000000000000000000000000000000000000000000000000000306001600160a01b031660001b8686866040516020016109e09291906115cc565b60408051601f1981840301815290829052610a0195949392916020016116bd565b6040516020818303038152906040528051906020012090509392505050565b6001600160a01b038116610a4757604051632057875960e21b815260040160405180910390fd5b610a52600082610c76565b610a7a576040516327ec359360e21b81526001600160a01b0382166004820152602401610708565b604080516001600160a01b0383168152600160208201527ffc4acb499491cd850a8a21ab98c7f128850c0f0e5f1a875a62b7fa055c2ecf1991016105cb565b610ac4600082610c8b565b610aec576040516353b1def160e01b81526001600160a01b0382166004820152602401610708565b600254610af7610939565b1015610b2957610b05610939565b60025460405162daa43760e71b815260048101929092526024820152604401610708565b604080516001600160a01b0383168152600060208201527ffc4acb499491cd850a8a21ab98c7f128850c0f0e5f1a875a62b7fa055c2ecf1991016105cb565b600080600080610b788686610ca0565b925092509250610b888282610ced565b5090949350505050565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b60606000610bb083610da6565b80600003610be55760405163831761d760e01b815260040160405180910390fd5b80610bee610939565b1015610c1f57610bfc610939565b60405162daa43760e71b8152600481019190915260248101829052604401610708565b60028190556040518181527f6e8a187d7944998085dbd1f16b84c51c903bb727536cdba86962439aded2cfd7906020016105cb565b6000610731825490565b600082610c6c868685610e02565b1495945050505050565b6000610bb0836001600160a01b038416610e44565b6000610bb0836001600160a01b038416610e93565b60008060008351604103610cda5760208401516040850151606086015160001a610ccc88828585610f86565b955095509550505050610ce6565b50508151600091506002905b9250925092565b6000826003811115610d0157610d01611711565b03610d0a575050565b6001826003811115610d1e57610d1e611711565b03610d3c5760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610d5057610d50611711565b03610d715760405163fce698f760e01b815260048101829052602401610708565b6003826003811115610d8557610d85611711565b0361056d576040516335e2f38360e21b815260048101829052602401610708565b606081600001805480602002602001604051908101604052809291908181526020018280548015610df657602002820191906000526020600020905b815481526020019060010190808311610de2575b50505050509050919050565b600081815b84811015610e3b57610e3182878784818110610e2557610e2561153f565b90506020020135611055565b9150600101610e07565b50949350505050565b6000818152600183016020526040812054610e8b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610731565b506000610731565b60008181526001830160205260408120548015610f7c576000610eb7600183611727565b8554909150600090610ecb90600190611727565b9050808214610f30576000866000018281548110610eeb57610eeb61153f565b9060005260206000200154905080876000018481548110610f0e57610f0e61153f565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080610f4157610f4161173a565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610731565b6000915050610731565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610fc1575060009150600390508261104b565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015611015573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166110415750600092506001915082905061104b565b9250600091508190505b9450945094915050565b6000818310611071576000828152602084905260409020610bb0565b6000838152602083905260409020610bb0565b60008083601f84011261109657600080fd5b50813567ffffffffffffffff8111156110ae57600080fd5b6020830191508360208285010111156110c657600080fd5b9250929050565b600080600080606085870312156110e357600080fd5b8435935060208501359250604085013567ffffffffffffffff81111561110857600080fd5b61111487828801611084565b95989497509550505050565b80356001600160a01b038116811461113757600080fd5b919050565b6000806040838503121561114f57600080fd5b61115883611120565b91506020830135801515811461116d57600080fd5b809150509250929050565b60006020828403121561118a57600080fd5b5035919050565b600080600080606085870312156111a757600080fd5b84359350602085013567ffffffffffffffff8111156111c557600080fd5b6111d187828801611084565b9598909750949560400135949350505050565b6000602082840312156111f657600080fd5b610bb082611120565b60006040828403121561121157600080fd5b50919050565b60008060008060006080868803121561122f57600080fd5b853567ffffffffffffffff8082111561124757600080fd5b61125389838a016111ff565b96506020880135955060408801359450606088013591508082111561127757600080fd5b5061128488828901611084565b969995985093965092949392505050565b6020808252825182820181905260009190848201906040850190845b818110156112d65783516001600160a01b0316835292840192918401916001016112b1565b50909695505050505050565b6000806000604084860312156112f757600080fd5b83359250602084013567ffffffffffffffff81111561131557600080fd5b61132186828701611084565b9497909650939450505050565b6000806040838503121561134157600080fd5b82359150602083013567ffffffffffffffff81111561135f57600080fd5b61136b858286016111ff565b9150509250929050565b60008060006040848603121561138a57600080fd5b83359250602084013567ffffffffffffffff808211156113a957600080fd5b818601915086601f8301126113bd57600080fd5b8135818111156113cc57600080fd5b8760208260051b85010111156113e157600080fd5b6020830194508093505050509250925092565b60005b8381101561140f5781810151838201526020016113f7565b50506000910152565b60208152600082518060208401526114378160408501602087016113f4565b601f01601f19169190910160400192915050565b6000845161145d8184602089016113f4565b91909101928352506020820152604001919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761073157610731611472565b8082018082111561073157610731611472565b600080858511156114c257600080fd5b838611156114cf57600080fd5b5050820193919092039150565b6000600182016114ee576114ee611472565b5060010190565b6000808335601e1984360301811261150c57600080fd5b83018035915067ffffffffffffffff82111561152757600080fd5b6020019150600581901b36038213156110c657600080fd5b634e487b7160e01b600052603260045260246000fd5b60008235605e1983360301811261156b57600080fd5b9190910192915050565b6000808335601e1984360301811261158c57600080fd5b83018035915067ffffffffffffffff8211156115a757600080fd5b6020019150368190038213156110c657600080fd5b8183823760009101908152919050565b60208082528181018390526000906040808401600586901b8501820187855b888110156116af57878303603f190184528135368b9003605e1901811261161157600080fd5b8a0160606001600160a01b0361162683611120565b168552878201358886015286820135601e1983360301811261164757600080fd5b90910187810191903567ffffffffffffffff81111561166557600080fd5b80360383131561167457600080fd5b8188870152808287015260809150808383880137600086820183015295880195601f01601f19169094019093019250908501906001016115eb565b509098975050505050505050565b60ff60f81b8660f81b16815267ffffffffffffffff60c01b8560c01b166001820152836009820152826029820152600082516117008160498501602087016113f4565b919091016049019695505050505050565b634e487b7160e01b600052602160045260246000fd5b8181038181111561073157610731611472565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f75eeb618af747412876c57e0e081f9b6202936e5d65735218b7d9463394a24964736f6c63430008160033",
|
|
775
|
+
"bytecode": "0x60a06040523480156200001157600080fd5b50604051620021d3380380620021d38339810160408190526200003491620004cd565b8282868660005b82518110156200007b57620000728382815181106200005e576200005e6200057d565b60200260200101516200010360201b60201c565b6001016200003b565b506200008781620001a9565b5050600160035560005b8251811015620000d157620000c8838281518110620000b457620000b46200057d565b60200260200101516200024760201b60201c565b60010162000091565b50620000dd81620002e3565b50506001600160401b038616608052620000f78162000325565b50505050505062000593565b6001600160a01b0381166200012b57604051632057875960e21b815260040160405180910390fd5b620001386000826200035b565b62000166576040516327ec359360e21b81526001600160a01b03821660048201526024015b60405180910390fd5b604051600181526001600160a01b038216907ffc4acb499491cd850a8a21ab98c7f128850c0f0e5f1a875a62b7fa055c2ecf19906020015b60405180910390a250565b80600003620001cb5760405163831761d760e01b815260040160405180910390fd5b80620001d66200037b565b10156200020b57620001e76200037b565b60405162daa43760e71b81526004810191909152602481018290526044016200015d565b60028190556040518181527f6e8a187d7944998085dbd1f16b84c51c903bb727536cdba86962439aded2cfd7906020015b60405180910390a150565b6001600160a01b0381166200026f5760405163710c949760e01b815260040160405180910390fd5b6200027c6004826200035b565b620002a65760405163c06cd70160e01b81526001600160a01b03821660048201526024016200015d565b604051600181526001600160a01b038216907f278b09622564dd3991fe7744514513d64ea2c8ed2b2b9ec1150ad964fde80a99906020016200019e565b6006805460ff19168215159081179091556040519081527faf318623f8b8327d379709bc2f6846f21be20c305509acd41dccf7e07a485347906020016200023c565b60078190556040518181527f36d9c0a688d366a03517cca4843dfff4e45db3869d5fd86fb9d15a1b45ce0e5a906020016200023c565b600062000372836001600160a01b0384166200038d565b90505b92915050565b60006200038881620003df565b905090565b6000818152600183016020526040812054620003d65750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000375565b50600062000375565b600062000375825490565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200041857600080fd5b919050565b600082601f8301126200042f57600080fd5b815160206001600160401b03808311156200044e576200044e620003ea565b8260051b604051601f19603f83011681018181108482111715620004765762000476620003ea565b60405293845260208187018101949081019250878511156200049757600080fd5b6020870191505b84821015620004c257620004b28262000400565b835291830191908301906200049e565b979650505050505050565b60008060008060008060c08789031215620004e757600080fd5b86516001600160401b0380821682146200050057600080fd5b6020890151919750808211156200051657600080fd5b620005248a838b016200041d565b96506040890151955060608901519150808211156200054257600080fd5b506200055189828a016200041d565b935050608087015180151581146200056857600080fd5b8092505060a087015190509295509295509295565b634e487b7160e01b600052603260045260246000fd5b608051611c1d620005b66000396000818161043c0152610afe0152611c1d6000f3fe60806040526004361061016a5760003560e01c8063960bfe04116100d1578063d63f97c91161008a578063e9ec3f5811610064578063e9ec3f581461042a578063ef09e78f1461045e578063f621ff6014610473578063ffa1ad741461048857600080fd5b8063d63f97c9146103ca578063debfda30146103ea578063e1ed81761461040a57600080fd5b8063960bfe04146102fd578063affed0e01461031d578063b677cde414610355578063c7a823e014610375578063cf734e8a14610395578063d1a62648146103b557600080fd5b8063606c22e011610123578063606c22e0146102485780636419ebde146102725780637d94792a146102925780637df73e27146102a85780638e6725bd146102c857806394cf795e146102db57600080fd5b80631e1bff3f146101765780632b03f6ab1461019857806331cb6105146101b8578063347024ff146101d857806342cde4e8146101f857806349dcfdd51461022157600080fd5b3661017157005b600080fd5b34801561018257600080fd5b506101966101913660046114ce565b6104c6565b005b3480156101a457600080fd5b506101966101b3366004611549565b610505565b3480156101c457600080fd5b506101966101d33660046114ce565b6106a7565b3480156101e457600080fd5b506101966101f336600461159b565b6106e2565b34801561020457600080fd5b5061020e60025481565b6040519081526020015b60405180910390f35b34801561022d57600080fd5b50610236600181565b60405160ff9091168152602001610218565b34801561025457600080fd5b506006546102629060ff1681565b6040519015158152602001610218565b34801561027e57600080fd5b5061019661028d3660046115b4565b610711565b34801561029e57600080fd5b5061020e60075481565b3480156102b457600080fd5b506102626102c3366004611606565b610891565b6101966102d6366004611639565b6108a3565b3480156102e757600080fd5b506102f0610abb565b60405161021891906116b6565b34801561030957600080fd5b5061019661031836600461159b565b610acc565b34801561032957600080fd5b5060085461033d906001600160401b031681565b6040516001600160401b039091168152602001610218565b34801561036157600080fd5b5061020e610370366004611703565b610af8565b34801561038157600080fd5b50610196610390366004611791565b610b9b565b3480156103a157600080fd5b506101966103b03660046117dc565b610bae565b3480156103c157600080fd5b5061020e610bda565b3480156103d657600080fd5b506101966103e53660046117f7565b610be6565b3480156103f657600080fd5b50610262610405366004611606565b610c44565b34801561041657600080fd5b50610262610425366004611606565b610c51565b34801561043657600080fd5b5061033d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561046a57600080fd5b506102f0610c79565b34801561047f57600080fd5b5061020e610c85565b34801561049457600080fd5b506104b960405180604001604052806005815260200164302e302e3160d81b81525081565b6040516102189190611861565b3330146104e957604051600162ab40b560e01b0319815260040160405180910390fd5b80156104fc576104f882610c91565b5050565b6104f882610d2e565b8242111561052657604051634f01675560e01b815260040160405180910390fd5b6040805180820182526002815261190160f01b6020808301919091528251808401845260068152654f6e6553696760d01b90820152825180840184526005815264302e302e3160d81b9082015282517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527fbd7855a8d66a83be54ebc7fa5f2e3fb658ab6007afa89cd93dfca08ad1b97ec8818501527fae209a0b48f21c054280f2455d32cf309387644879d9acbd8ffc19916381188560608201526001608082015261dead60a0808301919091528451808303909101815260c0820185528051908301206007547f642ed5d2b77bc7ccb98e10da4c02d7cd8231228da4222a9f88a80c15545074ed60e084015261010083015261012082018990526101408083018990528551808403909101815261016083019095528451949092019390932060009361067d9392919061018001611894565b6040516020818303038152906040528051906020012090506106a0818484610b9b565b5050505050565b3330146106ca57604051600162ab40b560e01b0319815260040160405180910390fd5b80156106d9576104f882610d9d565b6104f882610e33565b33301461070557604051600162ab40b560e01b0319815260040160405180910390fd5b61070e81610edf565b50565b806000036107325760405163831761d760e01b815260040160405180910390fd5b61073d6041836118d1565b1561075b5760405163669233e360e11b815260040160405180910390fd5b60006107686041846118fb565b90508181101561078b5760405163669233e360e11b815260040160405180910390fd5b6000805b828110156108885736600087876107a760418661190f565b9060416107b5876001611926565b6107bf919061190f565b926107cc93929190611939565b9150915060006108128a84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610f1b92505050565b9050846001600160a01b0316816001600160a01b0316116108465760405163d02ef0e560e01b815260040160405180910390fd5b61084f81610891565b61087c576040516353b1def160e01b81526001600160a01b03821660048201526024015b60405180910390fd5b9350505060010161078f565b50505050505050565b600061089d8183610f45565b92915050565b6108ab610f6a565b6108b433610c51565b6108d15760405163245b1c3160e01b815260040160405180910390fd5b6108dd84848484610505565b6108e78486610be6565b600880546000916001600160401b03909116908261090483611963565b91906101000a8154816001600160401b0302191690836001600160401b031602179055506001600160401b0316905060005b6109408780611989565b9050811015610a765760006109558880611989565b83818110610965576109656119d2565b905060200281019061097791906119e8565b610985906020810190611606565b6001600160a01b03166109988980611989565b848181106109a8576109a86119d2565b90506020028101906109ba91906119e8565b602001356109c88a80611989565b858181106109d8576109d86119d2565b90506020028101906109ea91906119e8565b6109f8906040810190611a08565b604051610a06929190611a4e565b60006040518083038185875af1925050503d8060008114610a43576040519150601f19603f3d011682016040523d82523d6000602084013e610a48565b606091505b5050905080610a6d57604051632497eb8760e11b815260048101839052602401610873565b50600101610936565b5060408051868152602081018390527fd9a0df418868c38712b1f6eab685bc77a2e49596edd77667ab34d5448f5f941c910160405180910390a1506106a06001600355565b6060610ac76000610f94565b905090565b333014610aef57604051600162ab40b560e01b0319815260040160405180910390fd5b61070e81610fa1565b600060017f0000000000000000000000000000000000000000000000000000000000000000306001600160a01b031660001b868686604051602001610b3e929190611a5e565b60408051601f1981840301815290829052610b5f9594939291602001611b4e565b60408051601f19818403018152828252805160209182012090830152016040516020818303038152906040528051906020012090509392505050565b610ba9838383600254610711565b505050565b333014610bd157604051600162ab40b560e01b0319815260040160405180910390fd5b61070e81611031565b6000610ac76000611072565b600854600090610c03906001600160401b03166103708480611989565b90506000610c1e610c176020850185611989565b868561107c565b905080610c3e5760405163150b827160e11b815260040160405180910390fd5b50505050565b600061089d600483610f45565b60065460009060ff161580610c6a5750610c6a82610c44565b8061089d575061089d82610891565b6060610ac76004610f94565b6000610ac76004611072565b6001600160a01b038116610cb85760405163710c949760e01b815260040160405180910390fd5b610cc3600482611094565b610ceb5760405163c06cd70160e01b81526001600160a01b0382166004820152602401610873565b604051600181526001600160a01b038216907f278b09622564dd3991fe7744514513d64ea2c8ed2b2b9ec1150ad964fde80a99906020015b60405180910390a250565b610d396004826110a9565b610d61576040516302cf3fb360e51b81526001600160a01b0382166004820152602401610873565b604051600081526001600160a01b038216907f278b09622564dd3991fe7744514513d64ea2c8ed2b2b9ec1150ad964fde80a9990602001610d23565b6001600160a01b038116610dc457604051632057875960e21b815260040160405180910390fd5b610dcf600082611094565b610df7576040516327ec359360e21b81526001600160a01b0382166004820152602401610873565b604051600181526001600160a01b038216907ffc4acb499491cd850a8a21ab98c7f128850c0f0e5f1a875a62b7fa055c2ecf1990602001610d23565b610e3e6000826110a9565b610e66576040516353b1def160e01b81526001600160a01b0382166004820152602401610873565b600254610e71610bda565b1015610ea357610e7f610bda565b60025460405162daa43760e71b815260048101929092526024820152604401610873565b604051600081526001600160a01b038216907ffc4acb499491cd850a8a21ab98c7f128850c0f0e5f1a875a62b7fa055c2ecf1990602001610d23565b60078190556040518181527f36d9c0a688d366a03517cca4843dfff4e45db3869d5fd86fb9d15a1b45ce0e5a906020015b60405180910390a150565b600080600080610f2b86866110be565b925092509250610f3b828261110b565b5090949350505050565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b600260035403610f8d57604051633ee5aeb560e01b815260040160405180910390fd5b6002600355565b60606000610f63836111c4565b80600003610fc25760405163831761d760e01b815260040160405180910390fd5b80610fcb610bda565b1015610ffc57610fd9610bda565b60405162daa43760e71b8152600481019190915260248101829052604401610873565b60028190556040518181527f6e8a187d7944998085dbd1f16b84c51c903bb727536cdba86962439aded2cfd790602001610f10565b6006805460ff19168215159081179091556040519081527faf318623f8b8327d379709bc2f6846f21be20c305509acd41dccf7e07a48534790602001610f10565b600061089d825490565b60008261108a868685611220565b1495945050505050565b6000610f63836001600160a01b038416611262565b6000610f63836001600160a01b0384166112b1565b600080600083516041036110f85760208401516040850151606086015160001a6110ea888285856113a4565b955095509550505050611104565b50508151600091506002905b9250925092565b600082600381111561111f5761111f611ba8565b03611128575050565b600182600381111561113c5761113c611ba8565b0361115a5760405163f645eedf60e01b815260040160405180910390fd5b600282600381111561116e5761116e611ba8565b0361118f5760405163fce698f760e01b815260048101829052602401610873565b60038260038111156111a3576111a3611ba8565b036104f8576040516335e2f38360e21b815260048101829052602401610873565b60608160000180548060200260200160405190810160405280929190818152602001828054801561121457602002820191906000526020600020905b815481526020019060010190808311611200575b50505050509050919050565b600081815b848110156112595761124f82878784818110611243576112436119d2565b90506020020135611473565b9150600101611225565b50949350505050565b60008181526001830160205260408120546112a95750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561089d565b50600061089d565b6000818152600183016020526040812054801561139a5760006112d5600183611bbe565b85549091506000906112e990600190611bbe565b905080821461134e576000866000018281548110611309576113096119d2565b906000526020600020015490508087600001848154811061132c5761132c6119d2565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061135f5761135f611bd1565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061089d565b600091505061089d565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411156113df5750600091506003905082611469565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015611433573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661145f57506000925060019150829050611469565b9250600091508190505b9450945094915050565b600081831061148f576000828152602084905260409020610f63565b6000838152602083905260409020610f63565b80356001600160a01b03811681146114b957600080fd5b919050565b803580151581146114b957600080fd5b600080604083850312156114e157600080fd5b6114ea836114a2565b91506114f8602084016114be565b90509250929050565b60008083601f84011261151357600080fd5b5081356001600160401b0381111561152a57600080fd5b60208301915083602082850101111561154257600080fd5b9250929050565b6000806000806060858703121561155f57600080fd5b843593506020850135925060408501356001600160401b0381111561158357600080fd5b61158f87828801611501565b95989497509550505050565b6000602082840312156115ad57600080fd5b5035919050565b600080600080606085870312156115ca57600080fd5b8435935060208501356001600160401b038111156115e757600080fd5b6115f387828801611501565b9598909750949560400135949350505050565b60006020828403121561161857600080fd5b610f63826114a2565b60006040828403121561163357600080fd5b50919050565b60008060008060006080868803121561165157600080fd5b85356001600160401b038082111561166857600080fd5b61167489838a01611621565b96506020880135955060408801359450606088013591508082111561169857600080fd5b506116a588828901611501565b969995985093965092949392505050565b6020808252825182820181905260009190848201906040850190845b818110156116f75783516001600160a01b0316835292840192918401916001016116d2565b50909695505050505050565b60008060006040848603121561171857600080fd5b83356001600160401b03808216821461173057600080fd5b9093506020850135908082111561174657600080fd5b818601915086601f83011261175a57600080fd5b81358181111561176957600080fd5b8760208260051b850101111561177e57600080fd5b6020830194508093505050509250925092565b6000806000604084860312156117a657600080fd5b8335925060208401356001600160401b038111156117c357600080fd5b6117cf86828701611501565b9497909650939450505050565b6000602082840312156117ee57600080fd5b610f63826114be565b6000806040838503121561180a57600080fd5b8235915060208301356001600160401b0381111561182757600080fd5b61183385828601611621565b9150509250929050565b60005b83811015611858578181015183820152602001611840565b50506000910152565b602081526000825180602084015261188081604085016020870161183d565b601f01601f19169190910160400192915050565b600084516118a681846020890161183d565b91909101928352506020820152604001919050565b634e487b7160e01b600052601260045260246000fd5b6000826118e0576118e06118bb565b500690565b634e487b7160e01b600052601160045260246000fd5b60008261190a5761190a6118bb565b500490565b808202811582820484141761089d5761089d6118e5565b8082018082111561089d5761089d6118e5565b6000808585111561194957600080fd5b8386111561195657600080fd5b5050820193919092039150565b60006001600160401b0380831681810361197f5761197f6118e5565b6001019392505050565b6000808335601e198436030181126119a057600080fd5b8301803591506001600160401b038211156119ba57600080fd5b6020019150600581901b360382131561154257600080fd5b634e487b7160e01b600052603260045260246000fd5b60008235605e198336030181126119fe57600080fd5b9190910192915050565b6000808335601e19843603018112611a1f57600080fd5b8301803591506001600160401b03821115611a3957600080fd5b60200191503681900382131561154257600080fd5b8183823760009101908152919050565b60208082528181018390526000906040808401600586901b8501820187855b88811015611b4057878303603f190184528135368b9003605e19018112611aa357600080fd5b8a0160606001600160a01b03611ab8836114a2565b168552878201358886015286820135601e19833603018112611ad957600080fd5b9091018781019190356001600160401b03811115611af657600080fd5b803603831315611b0557600080fd5b8188870152808287015260809150808383880137600086820183015295880195601f01601f1916909401909301925090850190600101611a7d565b509098975050505050505050565b60ff60f81b8660f81b16815260006001600160401b0360c01b808760c01b166001840152856009840152808560c01b166029840152508251611b9781603185016020870161183d565b919091016031019695505050505050565b634e487b7160e01b600052602160045260246000fd5b8181038181111561089d5761089d6118e5565b634e487b7160e01b600052603160045260246000fdfea26469706673582212209df5bd235c00f855a6c854f8852441d38c69947c7eae9a6de4177d9ab5095b0464736f6c63430008160033",
|
|
776
|
+
"deployedBytecode": "0x60806040526004361061016a5760003560e01c8063960bfe04116100d1578063d63f97c91161008a578063e9ec3f5811610064578063e9ec3f581461042a578063ef09e78f1461045e578063f621ff6014610473578063ffa1ad741461048857600080fd5b8063d63f97c9146103ca578063debfda30146103ea578063e1ed81761461040a57600080fd5b8063960bfe04146102fd578063affed0e01461031d578063b677cde414610355578063c7a823e014610375578063cf734e8a14610395578063d1a62648146103b557600080fd5b8063606c22e011610123578063606c22e0146102485780636419ebde146102725780637d94792a146102925780637df73e27146102a85780638e6725bd146102c857806394cf795e146102db57600080fd5b80631e1bff3f146101765780632b03f6ab1461019857806331cb6105146101b8578063347024ff146101d857806342cde4e8146101f857806349dcfdd51461022157600080fd5b3661017157005b600080fd5b34801561018257600080fd5b506101966101913660046114ce565b6104c6565b005b3480156101a457600080fd5b506101966101b3366004611549565b610505565b3480156101c457600080fd5b506101966101d33660046114ce565b6106a7565b3480156101e457600080fd5b506101966101f336600461159b565b6106e2565b34801561020457600080fd5b5061020e60025481565b6040519081526020015b60405180910390f35b34801561022d57600080fd5b50610236600181565b60405160ff9091168152602001610218565b34801561025457600080fd5b506006546102629060ff1681565b6040519015158152602001610218565b34801561027e57600080fd5b5061019661028d3660046115b4565b610711565b34801561029e57600080fd5b5061020e60075481565b3480156102b457600080fd5b506102626102c3366004611606565b610891565b6101966102d6366004611639565b6108a3565b3480156102e757600080fd5b506102f0610abb565b60405161021891906116b6565b34801561030957600080fd5b5061019661031836600461159b565b610acc565b34801561032957600080fd5b5060085461033d906001600160401b031681565b6040516001600160401b039091168152602001610218565b34801561036157600080fd5b5061020e610370366004611703565b610af8565b34801561038157600080fd5b50610196610390366004611791565b610b9b565b3480156103a157600080fd5b506101966103b03660046117dc565b610bae565b3480156103c157600080fd5b5061020e610bda565b3480156103d657600080fd5b506101966103e53660046117f7565b610be6565b3480156103f657600080fd5b50610262610405366004611606565b610c44565b34801561041657600080fd5b50610262610425366004611606565b610c51565b34801561043657600080fd5b5061033d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561046a57600080fd5b506102f0610c79565b34801561047f57600080fd5b5061020e610c85565b34801561049457600080fd5b506104b960405180604001604052806005815260200164302e302e3160d81b81525081565b6040516102189190611861565b3330146104e957604051600162ab40b560e01b0319815260040160405180910390fd5b80156104fc576104f882610c91565b5050565b6104f882610d2e565b8242111561052657604051634f01675560e01b815260040160405180910390fd5b6040805180820182526002815261190160f01b6020808301919091528251808401845260068152654f6e6553696760d01b90820152825180840184526005815264302e302e3160d81b9082015282517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527fbd7855a8d66a83be54ebc7fa5f2e3fb658ab6007afa89cd93dfca08ad1b97ec8818501527fae209a0b48f21c054280f2455d32cf309387644879d9acbd8ffc19916381188560608201526001608082015261dead60a0808301919091528451808303909101815260c0820185528051908301206007547f642ed5d2b77bc7ccb98e10da4c02d7cd8231228da4222a9f88a80c15545074ed60e084015261010083015261012082018990526101408083018990528551808403909101815261016083019095528451949092019390932060009361067d9392919061018001611894565b6040516020818303038152906040528051906020012090506106a0818484610b9b565b5050505050565b3330146106ca57604051600162ab40b560e01b0319815260040160405180910390fd5b80156106d9576104f882610d9d565b6104f882610e33565b33301461070557604051600162ab40b560e01b0319815260040160405180910390fd5b61070e81610edf565b50565b806000036107325760405163831761d760e01b815260040160405180910390fd5b61073d6041836118d1565b1561075b5760405163669233e360e11b815260040160405180910390fd5b60006107686041846118fb565b90508181101561078b5760405163669233e360e11b815260040160405180910390fd5b6000805b828110156108885736600087876107a760418661190f565b9060416107b5876001611926565b6107bf919061190f565b926107cc93929190611939565b9150915060006108128a84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610f1b92505050565b9050846001600160a01b0316816001600160a01b0316116108465760405163d02ef0e560e01b815260040160405180910390fd5b61084f81610891565b61087c576040516353b1def160e01b81526001600160a01b03821660048201526024015b60405180910390fd5b9350505060010161078f565b50505050505050565b600061089d8183610f45565b92915050565b6108ab610f6a565b6108b433610c51565b6108d15760405163245b1c3160e01b815260040160405180910390fd5b6108dd84848484610505565b6108e78486610be6565b600880546000916001600160401b03909116908261090483611963565b91906101000a8154816001600160401b0302191690836001600160401b031602179055506001600160401b0316905060005b6109408780611989565b9050811015610a765760006109558880611989565b83818110610965576109656119d2565b905060200281019061097791906119e8565b610985906020810190611606565b6001600160a01b03166109988980611989565b848181106109a8576109a86119d2565b90506020028101906109ba91906119e8565b602001356109c88a80611989565b858181106109d8576109d86119d2565b90506020028101906109ea91906119e8565b6109f8906040810190611a08565b604051610a06929190611a4e565b60006040518083038185875af1925050503d8060008114610a43576040519150601f19603f3d011682016040523d82523d6000602084013e610a48565b606091505b5050905080610a6d57604051632497eb8760e11b815260048101839052602401610873565b50600101610936565b5060408051868152602081018390527fd9a0df418868c38712b1f6eab685bc77a2e49596edd77667ab34d5448f5f941c910160405180910390a1506106a06001600355565b6060610ac76000610f94565b905090565b333014610aef57604051600162ab40b560e01b0319815260040160405180910390fd5b61070e81610fa1565b600060017f0000000000000000000000000000000000000000000000000000000000000000306001600160a01b031660001b868686604051602001610b3e929190611a5e565b60408051601f1981840301815290829052610b5f9594939291602001611b4e565b60408051601f19818403018152828252805160209182012090830152016040516020818303038152906040528051906020012090509392505050565b610ba9838383600254610711565b505050565b333014610bd157604051600162ab40b560e01b0319815260040160405180910390fd5b61070e81611031565b6000610ac76000611072565b600854600090610c03906001600160401b03166103708480611989565b90506000610c1e610c176020850185611989565b868561107c565b905080610c3e5760405163150b827160e11b815260040160405180910390fd5b50505050565b600061089d600483610f45565b60065460009060ff161580610c6a5750610c6a82610c44565b8061089d575061089d82610891565b6060610ac76004610f94565b6000610ac76004611072565b6001600160a01b038116610cb85760405163710c949760e01b815260040160405180910390fd5b610cc3600482611094565b610ceb5760405163c06cd70160e01b81526001600160a01b0382166004820152602401610873565b604051600181526001600160a01b038216907f278b09622564dd3991fe7744514513d64ea2c8ed2b2b9ec1150ad964fde80a99906020015b60405180910390a250565b610d396004826110a9565b610d61576040516302cf3fb360e51b81526001600160a01b0382166004820152602401610873565b604051600081526001600160a01b038216907f278b09622564dd3991fe7744514513d64ea2c8ed2b2b9ec1150ad964fde80a9990602001610d23565b6001600160a01b038116610dc457604051632057875960e21b815260040160405180910390fd5b610dcf600082611094565b610df7576040516327ec359360e21b81526001600160a01b0382166004820152602401610873565b604051600181526001600160a01b038216907ffc4acb499491cd850a8a21ab98c7f128850c0f0e5f1a875a62b7fa055c2ecf1990602001610d23565b610e3e6000826110a9565b610e66576040516353b1def160e01b81526001600160a01b0382166004820152602401610873565b600254610e71610bda565b1015610ea357610e7f610bda565b60025460405162daa43760e71b815260048101929092526024820152604401610873565b604051600081526001600160a01b038216907ffc4acb499491cd850a8a21ab98c7f128850c0f0e5f1a875a62b7fa055c2ecf1990602001610d23565b60078190556040518181527f36d9c0a688d366a03517cca4843dfff4e45db3869d5fd86fb9d15a1b45ce0e5a906020015b60405180910390a150565b600080600080610f2b86866110be565b925092509250610f3b828261110b565b5090949350505050565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b600260035403610f8d57604051633ee5aeb560e01b815260040160405180910390fd5b6002600355565b60606000610f63836111c4565b80600003610fc25760405163831761d760e01b815260040160405180910390fd5b80610fcb610bda565b1015610ffc57610fd9610bda565b60405162daa43760e71b8152600481019190915260248101829052604401610873565b60028190556040518181527f6e8a187d7944998085dbd1f16b84c51c903bb727536cdba86962439aded2cfd790602001610f10565b6006805460ff19168215159081179091556040519081527faf318623f8b8327d379709bc2f6846f21be20c305509acd41dccf7e07a48534790602001610f10565b600061089d825490565b60008261108a868685611220565b1495945050505050565b6000610f63836001600160a01b038416611262565b6000610f63836001600160a01b0384166112b1565b600080600083516041036110f85760208401516040850151606086015160001a6110ea888285856113a4565b955095509550505050611104565b50508151600091506002905b9250925092565b600082600381111561111f5761111f611ba8565b03611128575050565b600182600381111561113c5761113c611ba8565b0361115a5760405163f645eedf60e01b815260040160405180910390fd5b600282600381111561116e5761116e611ba8565b0361118f5760405163fce698f760e01b815260048101829052602401610873565b60038260038111156111a3576111a3611ba8565b036104f8576040516335e2f38360e21b815260048101829052602401610873565b60608160000180548060200260200160405190810160405280929190818152602001828054801561121457602002820191906000526020600020905b815481526020019060010190808311611200575b50505050509050919050565b600081815b848110156112595761124f82878784818110611243576112436119d2565b90506020020135611473565b9150600101611225565b50949350505050565b60008181526001830160205260408120546112a95750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561089d565b50600061089d565b6000818152600183016020526040812054801561139a5760006112d5600183611bbe565b85549091506000906112e990600190611bbe565b905080821461134e576000866000018281548110611309576113096119d2565b906000526020600020015490508087600001848154811061132c5761132c6119d2565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061135f5761135f611bd1565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061089d565b600091505061089d565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411156113df5750600091506003905082611469565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015611433573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661145f57506000925060019150829050611469565b9250600091508190505b9450945094915050565b600081831061148f576000828152602084905260409020610f63565b6000838152602083905260409020610f63565b80356001600160a01b03811681146114b957600080fd5b919050565b803580151581146114b957600080fd5b600080604083850312156114e157600080fd5b6114ea836114a2565b91506114f8602084016114be565b90509250929050565b60008083601f84011261151357600080fd5b5081356001600160401b0381111561152a57600080fd5b60208301915083602082850101111561154257600080fd5b9250929050565b6000806000806060858703121561155f57600080fd5b843593506020850135925060408501356001600160401b0381111561158357600080fd5b61158f87828801611501565b95989497509550505050565b6000602082840312156115ad57600080fd5b5035919050565b600080600080606085870312156115ca57600080fd5b8435935060208501356001600160401b038111156115e757600080fd5b6115f387828801611501565b9598909750949560400135949350505050565b60006020828403121561161857600080fd5b610f63826114a2565b60006040828403121561163357600080fd5b50919050565b60008060008060006080868803121561165157600080fd5b85356001600160401b038082111561166857600080fd5b61167489838a01611621565b96506020880135955060408801359450606088013591508082111561169857600080fd5b506116a588828901611501565b969995985093965092949392505050565b6020808252825182820181905260009190848201906040850190845b818110156116f75783516001600160a01b0316835292840192918401916001016116d2565b50909695505050505050565b60008060006040848603121561171857600080fd5b83356001600160401b03808216821461173057600080fd5b9093506020850135908082111561174657600080fd5b818601915086601f83011261175a57600080fd5b81358181111561176957600080fd5b8760208260051b850101111561177e57600080fd5b6020830194508093505050509250925092565b6000806000604084860312156117a657600080fd5b8335925060208401356001600160401b038111156117c357600080fd5b6117cf86828701611501565b9497909650939450505050565b6000602082840312156117ee57600080fd5b610f63826114be565b6000806040838503121561180a57600080fd5b8235915060208301356001600160401b0381111561182757600080fd5b61183385828601611621565b9150509250929050565b60005b83811015611858578181015183820152602001611840565b50506000910152565b602081526000825180602084015261188081604085016020870161183d565b601f01601f19169190910160400192915050565b600084516118a681846020890161183d565b91909101928352506020820152604001919050565b634e487b7160e01b600052601260045260246000fd5b6000826118e0576118e06118bb565b500690565b634e487b7160e01b600052601160045260246000fd5b60008261190a5761190a6118bb565b500490565b808202811582820484141761089d5761089d6118e5565b8082018082111561089d5761089d6118e5565b6000808585111561194957600080fd5b8386111561195657600080fd5b5050820193919092039150565b60006001600160401b0380831681810361197f5761197f6118e5565b6001019392505050565b6000808335601e198436030181126119a057600080fd5b8301803591506001600160401b038211156119ba57600080fd5b6020019150600581901b360382131561154257600080fd5b634e487b7160e01b600052603260045260246000fd5b60008235605e198336030181126119fe57600080fd5b9190910192915050565b6000808335601e19843603018112611a1f57600080fd5b8301803591506001600160401b03821115611a3957600080fd5b60200191503681900382131561154257600080fd5b8183823760009101908152919050565b60208082528181018390526000906040808401600586901b8501820187855b88811015611b4057878303603f190184528135368b9003605e19018112611aa357600080fd5b8a0160606001600160a01b03611ab8836114a2565b168552878201358886015286820135601e19833603018112611ad957600080fd5b9091018781019190356001600160401b03811115611af657600080fd5b803603831315611b0557600080fd5b8188870152808287015260809150808383880137600086820183015295880195601f01601f1916909401909301925090850190600101611a7d565b509098975050505050505050565b60ff60f81b8660f81b16815260006001600160401b0360c01b808760c01b166001840152856009840152808560c01b166029840152508251611b9781603185016020870161183d565b919091016031019695505050505050565b634e487b7160e01b600052602160045260246000fd5b8181038181111561089d5761089d6118e5565b634e487b7160e01b600052603160045260246000fdfea26469706673582212209df5bd235c00f855a6c854f8852441d38c69947c7eae9a6de4177d9ab5095b0464736f6c63430008160033",
|
|
590
777
|
"linkReferences": {},
|
|
591
778
|
"deployedLinkReferences": {}
|
|
592
779
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "SelfCallable",
|
|
4
|
+
"sourceName": "contracts/lib/SelfCallable.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [],
|
|
8
|
+
"name": "OnlySelfCall",
|
|
9
|
+
"type": "error"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"bytecode": "0x",
|
|
13
|
+
"deployedBytecode": "0x",
|
|
14
|
+
"linkReferences": {},
|
|
15
|
+
"deployedLinkReferences": {}
|
|
16
|
+
}
|