@lfdecentralizedtrust/paladin-sdk 0.13.0-rc.1
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/README.md +21 -0
- package/build/domains/abis/INoto.json +448 -0
- package/build/domains/abis/INotoPrivate.json +347 -0
- package/build/domains/abis/IZetoFungible.json +197 -0
- package/build/domains/abis/PentePrivacyGroup.json +613 -0
- package/build/domains/abis/Zeto_Anon.json +1263 -0
- package/build/domains/noto.d.ts +117 -0
- package/build/domains/noto.js +292 -0
- package/build/domains/pente.d.ts +84 -0
- package/build/domains/pente.js +191 -0
- package/build/domains/zeto.d.ts +83 -0
- package/build/domains/zeto.js +201 -0
- package/build/index.d.ts +9 -0
- package/build/index.js +28 -0
- package/build/interfaces/algorithms.d.ts +3 -0
- package/build/interfaces/algorithms.js +9 -0
- package/build/interfaces/blockchainevent.d.ts +15 -0
- package/build/interfaces/blockchainevent.js +2 -0
- package/build/interfaces/blockindex.d.ts +30 -0
- package/build/interfaces/blockindex.js +2 -0
- package/build/interfaces/domains.d.ts +9 -0
- package/build/interfaces/domains.js +2 -0
- package/build/interfaces/index.d.ts +15 -0
- package/build/interfaces/index.js +31 -0
- package/build/interfaces/keymanager.d.ts +32 -0
- package/build/interfaces/keymanager.js +2 -0
- package/build/interfaces/logger.d.ts +8 -0
- package/build/interfaces/logger.js +2 -0
- package/build/interfaces/paladin.d.ts +14 -0
- package/build/interfaces/paladin.js +2 -0
- package/build/interfaces/privacygroups.d.ts +76 -0
- package/build/interfaces/privacygroups.js +2 -0
- package/build/interfaces/query.d.ts +33 -0
- package/build/interfaces/query.js +2 -0
- package/build/interfaces/registry.d.ts +26 -0
- package/build/interfaces/registry.js +2 -0
- package/build/interfaces/states.d.ts +61 -0
- package/build/interfaces/states.js +2 -0
- package/build/interfaces/transaction.d.ts +159 -0
- package/build/interfaces/transaction.js +12 -0
- package/build/interfaces/transport.d.ts +32 -0
- package/build/interfaces/transport.js +2 -0
- package/build/interfaces/verifiers.d.ts +6 -0
- package/build/interfaces/verifiers.js +10 -0
- package/build/interfaces/websocket.d.ts +57 -0
- package/build/interfaces/websocket.js +2 -0
- package/build/paladin.d.ts +265 -0
- package/build/paladin.js +739 -0
- package/build/transaction.d.ts +8 -0
- package/build/transaction.js +17 -0
- package/build/utils.d.ts +5 -0
- package/build/utils.js +49 -0
- package/build/verifier.d.ts +16 -0
- package/build/verifier.js +24 -0
- package/build/websocket.d.ts +35 -0
- package/build/websocket.js +177 -0
- package/build.gradle +75 -0
- package/package.json +32 -0
- package/scripts/abi.mjs +19 -0
- package/scripts/contracts.mjs +20 -0
- package/scripts/download.mjs +27 -0
- package/scripts/util.mjs +42 -0
- package/src/domains/noto.ts +420 -0
- package/src/domains/pente.ts +287 -0
- package/src/domains/zeto.ts +282 -0
- package/src/index.ts +10 -0
- package/src/interfaces/algorithms.ts +6 -0
- package/src/interfaces/blockchainevent.ts +18 -0
- package/src/interfaces/blockindex.ts +33 -0
- package/src/interfaces/domains.ts +10 -0
- package/src/interfaces/index.ts +15 -0
- package/src/interfaces/keymanager.ts +35 -0
- package/src/interfaces/logger.ts +8 -0
- package/src/interfaces/paladin.ts +17 -0
- package/src/interfaces/privacygroups.ts +86 -0
- package/src/interfaces/query.ts +37 -0
- package/src/interfaces/registry.ts +27 -0
- package/src/interfaces/states.ts +77 -0
- package/src/interfaces/transaction.ts +179 -0
- package/src/interfaces/transport.ts +35 -0
- package/src/interfaces/verifiers.ts +6 -0
- package/src/interfaces/websocket.ts +67 -0
- package/src/paladin.ts +1295 -0
- package/src/transaction.ts +17 -0
- package/src/utils.ts +24 -0
- package/src/verifier.ts +27 -0
- package/src/websocket.ts +217 -0
- package/tsconfig.json +14 -0
|
@@ -0,0 +1,1263 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "Zeto_Anon",
|
|
4
|
+
"sourceName": "contracts/zeto_anon.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "target",
|
|
11
|
+
"type": "address"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"name": "AddressEmptyCode",
|
|
15
|
+
"type": "error"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"inputs": [
|
|
19
|
+
{
|
|
20
|
+
"internalType": "address",
|
|
21
|
+
"name": "implementation",
|
|
22
|
+
"type": "address"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"name": "ERC1967InvalidImplementation",
|
|
26
|
+
"type": "error"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"inputs": [],
|
|
30
|
+
"name": "ERC1967NonPayable",
|
|
31
|
+
"type": "error"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"inputs": [],
|
|
35
|
+
"name": "FailedCall",
|
|
36
|
+
"type": "error"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"inputs": [],
|
|
40
|
+
"name": "InvalidInitialization",
|
|
41
|
+
"type": "error"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"inputs": [],
|
|
45
|
+
"name": "NotInitializing",
|
|
46
|
+
"type": "error"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"inputs": [
|
|
50
|
+
{
|
|
51
|
+
"internalType": "uint256",
|
|
52
|
+
"name": "utxo",
|
|
53
|
+
"type": "uint256"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"internalType": "address",
|
|
57
|
+
"name": "delegate",
|
|
58
|
+
"type": "address"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"internalType": "address",
|
|
62
|
+
"name": "sender",
|
|
63
|
+
"type": "address"
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
"name": "NotLockDelegate",
|
|
67
|
+
"type": "error"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"inputs": [
|
|
71
|
+
{
|
|
72
|
+
"internalType": "address",
|
|
73
|
+
"name": "owner",
|
|
74
|
+
"type": "address"
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
"name": "OwnableInvalidOwner",
|
|
78
|
+
"type": "error"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"inputs": [
|
|
82
|
+
{
|
|
83
|
+
"internalType": "address",
|
|
84
|
+
"name": "account",
|
|
85
|
+
"type": "address"
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
"name": "OwnableUnauthorizedAccount",
|
|
89
|
+
"type": "error"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"inputs": [
|
|
93
|
+
{
|
|
94
|
+
"internalType": "uint256",
|
|
95
|
+
"name": "utxo",
|
|
96
|
+
"type": "uint256"
|
|
97
|
+
}
|
|
98
|
+
],
|
|
99
|
+
"name": "UTXOAlreadyLocked",
|
|
100
|
+
"type": "error"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"inputs": [
|
|
104
|
+
{
|
|
105
|
+
"internalType": "uint256",
|
|
106
|
+
"name": "utxo",
|
|
107
|
+
"type": "uint256"
|
|
108
|
+
}
|
|
109
|
+
],
|
|
110
|
+
"name": "UTXOAlreadyOwned",
|
|
111
|
+
"type": "error"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"inputs": [
|
|
115
|
+
{
|
|
116
|
+
"internalType": "uint256",
|
|
117
|
+
"name": "utxo",
|
|
118
|
+
"type": "uint256"
|
|
119
|
+
}
|
|
120
|
+
],
|
|
121
|
+
"name": "UTXOAlreadySpent",
|
|
122
|
+
"type": "error"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"inputs": [
|
|
126
|
+
{
|
|
127
|
+
"internalType": "uint256",
|
|
128
|
+
"name": "maxAllowed",
|
|
129
|
+
"type": "uint256"
|
|
130
|
+
}
|
|
131
|
+
],
|
|
132
|
+
"name": "UTXOArrayTooLarge",
|
|
133
|
+
"type": "error"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"inputs": [
|
|
137
|
+
{
|
|
138
|
+
"internalType": "uint256",
|
|
139
|
+
"name": "utxo",
|
|
140
|
+
"type": "uint256"
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"name": "UTXODuplicate",
|
|
144
|
+
"type": "error"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"inputs": [
|
|
148
|
+
{
|
|
149
|
+
"internalType": "uint256",
|
|
150
|
+
"name": "utxo",
|
|
151
|
+
"type": "uint256"
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
"name": "UTXONotLocked",
|
|
155
|
+
"type": "error"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"inputs": [
|
|
159
|
+
{
|
|
160
|
+
"internalType": "uint256",
|
|
161
|
+
"name": "utxo",
|
|
162
|
+
"type": "uint256"
|
|
163
|
+
}
|
|
164
|
+
],
|
|
165
|
+
"name": "UTXONotMinted",
|
|
166
|
+
"type": "error"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"inputs": [],
|
|
170
|
+
"name": "UUPSUnauthorizedCallContext",
|
|
171
|
+
"type": "error"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"inputs": [
|
|
175
|
+
{
|
|
176
|
+
"internalType": "bytes32",
|
|
177
|
+
"name": "slot",
|
|
178
|
+
"type": "bytes32"
|
|
179
|
+
}
|
|
180
|
+
],
|
|
181
|
+
"name": "UUPSUnsupportedProxiableUUID",
|
|
182
|
+
"type": "error"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"inputs": [
|
|
186
|
+
{
|
|
187
|
+
"internalType": "uint256",
|
|
188
|
+
"name": "maxAllowed",
|
|
189
|
+
"type": "uint256"
|
|
190
|
+
}
|
|
191
|
+
],
|
|
192
|
+
"name": "WithdrawArrayTooLarge",
|
|
193
|
+
"type": "error"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"anonymous": false,
|
|
197
|
+
"inputs": [
|
|
198
|
+
{
|
|
199
|
+
"indexed": false,
|
|
200
|
+
"internalType": "uint64",
|
|
201
|
+
"name": "version",
|
|
202
|
+
"type": "uint64"
|
|
203
|
+
}
|
|
204
|
+
],
|
|
205
|
+
"name": "Initialized",
|
|
206
|
+
"type": "event"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"anonymous": false,
|
|
210
|
+
"inputs": [
|
|
211
|
+
{
|
|
212
|
+
"indexed": false,
|
|
213
|
+
"internalType": "uint256[]",
|
|
214
|
+
"name": "lockedOutputs",
|
|
215
|
+
"type": "uint256[]"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"indexed": true,
|
|
219
|
+
"internalType": "address",
|
|
220
|
+
"name": "oldDelegate",
|
|
221
|
+
"type": "address"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"indexed": true,
|
|
225
|
+
"internalType": "address",
|
|
226
|
+
"name": "newDelegate",
|
|
227
|
+
"type": "address"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"indexed": false,
|
|
231
|
+
"internalType": "bytes",
|
|
232
|
+
"name": "data",
|
|
233
|
+
"type": "bytes"
|
|
234
|
+
}
|
|
235
|
+
],
|
|
236
|
+
"name": "LockDelegateChanged",
|
|
237
|
+
"type": "event"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"anonymous": false,
|
|
241
|
+
"inputs": [
|
|
242
|
+
{
|
|
243
|
+
"indexed": true,
|
|
244
|
+
"internalType": "address",
|
|
245
|
+
"name": "previousOwner",
|
|
246
|
+
"type": "address"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"indexed": true,
|
|
250
|
+
"internalType": "address",
|
|
251
|
+
"name": "newOwner",
|
|
252
|
+
"type": "address"
|
|
253
|
+
}
|
|
254
|
+
],
|
|
255
|
+
"name": "OwnershipTransferred",
|
|
256
|
+
"type": "event"
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"anonymous": false,
|
|
260
|
+
"inputs": [
|
|
261
|
+
{
|
|
262
|
+
"indexed": false,
|
|
263
|
+
"internalType": "uint256[]",
|
|
264
|
+
"name": "inputs",
|
|
265
|
+
"type": "uint256[]"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"indexed": false,
|
|
269
|
+
"internalType": "uint256",
|
|
270
|
+
"name": "output",
|
|
271
|
+
"type": "uint256"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"indexed": true,
|
|
275
|
+
"internalType": "address",
|
|
276
|
+
"name": "submitter",
|
|
277
|
+
"type": "address"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"indexed": false,
|
|
281
|
+
"internalType": "bytes",
|
|
282
|
+
"name": "data",
|
|
283
|
+
"type": "bytes"
|
|
284
|
+
}
|
|
285
|
+
],
|
|
286
|
+
"name": "UTXOBurn",
|
|
287
|
+
"type": "event"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"anonymous": false,
|
|
291
|
+
"inputs": [
|
|
292
|
+
{
|
|
293
|
+
"indexed": false,
|
|
294
|
+
"internalType": "uint256[]",
|
|
295
|
+
"name": "outputs",
|
|
296
|
+
"type": "uint256[]"
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
"indexed": true,
|
|
300
|
+
"internalType": "address",
|
|
301
|
+
"name": "submitter",
|
|
302
|
+
"type": "address"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"indexed": false,
|
|
306
|
+
"internalType": "bytes",
|
|
307
|
+
"name": "data",
|
|
308
|
+
"type": "bytes"
|
|
309
|
+
}
|
|
310
|
+
],
|
|
311
|
+
"name": "UTXOMint",
|
|
312
|
+
"type": "event"
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"anonymous": false,
|
|
316
|
+
"inputs": [
|
|
317
|
+
{
|
|
318
|
+
"indexed": false,
|
|
319
|
+
"internalType": "uint256[]",
|
|
320
|
+
"name": "inputs",
|
|
321
|
+
"type": "uint256[]"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"indexed": false,
|
|
325
|
+
"internalType": "uint256[]",
|
|
326
|
+
"name": "outputs",
|
|
327
|
+
"type": "uint256[]"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"indexed": true,
|
|
331
|
+
"internalType": "address",
|
|
332
|
+
"name": "submitter",
|
|
333
|
+
"type": "address"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"indexed": false,
|
|
337
|
+
"internalType": "bytes",
|
|
338
|
+
"name": "data",
|
|
339
|
+
"type": "bytes"
|
|
340
|
+
}
|
|
341
|
+
],
|
|
342
|
+
"name": "UTXOTransfer",
|
|
343
|
+
"type": "event"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"anonymous": false,
|
|
347
|
+
"inputs": [
|
|
348
|
+
{
|
|
349
|
+
"indexed": false,
|
|
350
|
+
"internalType": "uint256[]",
|
|
351
|
+
"name": "inputs",
|
|
352
|
+
"type": "uint256[]"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"indexed": false,
|
|
356
|
+
"internalType": "uint256[]",
|
|
357
|
+
"name": "outputs",
|
|
358
|
+
"type": "uint256[]"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"indexed": false,
|
|
362
|
+
"internalType": "uint256",
|
|
363
|
+
"name": "encryptionNonce",
|
|
364
|
+
"type": "uint256"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"indexed": false,
|
|
368
|
+
"internalType": "uint256[2]",
|
|
369
|
+
"name": "ecdhPublicKey",
|
|
370
|
+
"type": "uint256[2]"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"indexed": false,
|
|
374
|
+
"internalType": "uint256[]",
|
|
375
|
+
"name": "encryptedValues",
|
|
376
|
+
"type": "uint256[]"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"indexed": true,
|
|
380
|
+
"internalType": "address",
|
|
381
|
+
"name": "submitter",
|
|
382
|
+
"type": "address"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"indexed": false,
|
|
386
|
+
"internalType": "bytes",
|
|
387
|
+
"name": "data",
|
|
388
|
+
"type": "bytes"
|
|
389
|
+
}
|
|
390
|
+
],
|
|
391
|
+
"name": "UTXOTransferWithEncryptedValues",
|
|
392
|
+
"type": "event"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"anonymous": false,
|
|
396
|
+
"inputs": [
|
|
397
|
+
{
|
|
398
|
+
"indexed": false,
|
|
399
|
+
"internalType": "uint256",
|
|
400
|
+
"name": "amount",
|
|
401
|
+
"type": "uint256"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"indexed": false,
|
|
405
|
+
"internalType": "uint256[]",
|
|
406
|
+
"name": "inputs",
|
|
407
|
+
"type": "uint256[]"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"indexed": false,
|
|
411
|
+
"internalType": "uint256",
|
|
412
|
+
"name": "output",
|
|
413
|
+
"type": "uint256"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"indexed": true,
|
|
417
|
+
"internalType": "address",
|
|
418
|
+
"name": "submitter",
|
|
419
|
+
"type": "address"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"indexed": false,
|
|
423
|
+
"internalType": "bytes",
|
|
424
|
+
"name": "data",
|
|
425
|
+
"type": "bytes"
|
|
426
|
+
}
|
|
427
|
+
],
|
|
428
|
+
"name": "UTXOWithdraw",
|
|
429
|
+
"type": "event"
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"anonymous": false,
|
|
433
|
+
"inputs": [
|
|
434
|
+
{
|
|
435
|
+
"indexed": false,
|
|
436
|
+
"internalType": "uint256[]",
|
|
437
|
+
"name": "inputs",
|
|
438
|
+
"type": "uint256[]"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"indexed": false,
|
|
442
|
+
"internalType": "uint256[]",
|
|
443
|
+
"name": "outputs",
|
|
444
|
+
"type": "uint256[]"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"indexed": false,
|
|
448
|
+
"internalType": "uint256[]",
|
|
449
|
+
"name": "lockedOutputs",
|
|
450
|
+
"type": "uint256[]"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"indexed": true,
|
|
454
|
+
"internalType": "address",
|
|
455
|
+
"name": "delegate",
|
|
456
|
+
"type": "address"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"indexed": true,
|
|
460
|
+
"internalType": "address",
|
|
461
|
+
"name": "submitter",
|
|
462
|
+
"type": "address"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"indexed": false,
|
|
466
|
+
"internalType": "bytes",
|
|
467
|
+
"name": "data",
|
|
468
|
+
"type": "bytes"
|
|
469
|
+
}
|
|
470
|
+
],
|
|
471
|
+
"name": "UTXOsLocked",
|
|
472
|
+
"type": "event"
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"anonymous": false,
|
|
476
|
+
"inputs": [
|
|
477
|
+
{
|
|
478
|
+
"indexed": true,
|
|
479
|
+
"internalType": "address",
|
|
480
|
+
"name": "implementation",
|
|
481
|
+
"type": "address"
|
|
482
|
+
}
|
|
483
|
+
],
|
|
484
|
+
"name": "Upgraded",
|
|
485
|
+
"type": "event"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"inputs": [],
|
|
489
|
+
"name": "UPGRADE_INTERFACE_VERSION",
|
|
490
|
+
"outputs": [
|
|
491
|
+
{
|
|
492
|
+
"internalType": "string",
|
|
493
|
+
"name": "",
|
|
494
|
+
"type": "string"
|
|
495
|
+
}
|
|
496
|
+
],
|
|
497
|
+
"stateMutability": "view",
|
|
498
|
+
"type": "function"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"inputs": [
|
|
502
|
+
{
|
|
503
|
+
"internalType": "contract Groth16Verifier_Deposit",
|
|
504
|
+
"name": "depositVerifier",
|
|
505
|
+
"type": "address"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"internalType": "contract Groth16Verifier_Withdraw",
|
|
509
|
+
"name": "withdrawVerifier",
|
|
510
|
+
"type": "address"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"internalType": "contract Groth16Verifier_WithdrawBatch",
|
|
514
|
+
"name": "batchWithdrawVerifier",
|
|
515
|
+
"type": "address"
|
|
516
|
+
}
|
|
517
|
+
],
|
|
518
|
+
"name": "__ZetoFungibleWithdraw_init",
|
|
519
|
+
"outputs": [],
|
|
520
|
+
"stateMutability": "nonpayable",
|
|
521
|
+
"type": "function"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"inputs": [
|
|
525
|
+
{
|
|
526
|
+
"internalType": "contract Groth16Verifier_Deposit",
|
|
527
|
+
"name": "depositVerifier",
|
|
528
|
+
"type": "address"
|
|
529
|
+
}
|
|
530
|
+
],
|
|
531
|
+
"name": "__ZetoFungible_init",
|
|
532
|
+
"outputs": [],
|
|
533
|
+
"stateMutability": "nonpayable",
|
|
534
|
+
"type": "function"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"inputs": [
|
|
538
|
+
{
|
|
539
|
+
"internalType": "uint256",
|
|
540
|
+
"name": "amount",
|
|
541
|
+
"type": "uint256"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"internalType": "uint256[]",
|
|
545
|
+
"name": "outputs",
|
|
546
|
+
"type": "uint256[]"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"components": [
|
|
550
|
+
{
|
|
551
|
+
"internalType": "uint256[2]",
|
|
552
|
+
"name": "pA",
|
|
553
|
+
"type": "uint256[2]"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"internalType": "uint256[2][2]",
|
|
557
|
+
"name": "pB",
|
|
558
|
+
"type": "uint256[2][2]"
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"internalType": "uint256[2]",
|
|
562
|
+
"name": "pC",
|
|
563
|
+
"type": "uint256[2]"
|
|
564
|
+
}
|
|
565
|
+
],
|
|
566
|
+
"internalType": "struct Commonlib.Proof",
|
|
567
|
+
"name": "proof",
|
|
568
|
+
"type": "tuple"
|
|
569
|
+
}
|
|
570
|
+
],
|
|
571
|
+
"name": "_deposit",
|
|
572
|
+
"outputs": [],
|
|
573
|
+
"stateMutability": "nonpayable",
|
|
574
|
+
"type": "function"
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
"inputs": [
|
|
578
|
+
{
|
|
579
|
+
"internalType": "uint256",
|
|
580
|
+
"name": "amount",
|
|
581
|
+
"type": "uint256"
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
"internalType": "uint256[]",
|
|
585
|
+
"name": "inputs",
|
|
586
|
+
"type": "uint256[]"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"internalType": "uint256",
|
|
590
|
+
"name": "output",
|
|
591
|
+
"type": "uint256"
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"components": [
|
|
595
|
+
{
|
|
596
|
+
"internalType": "uint256[2]",
|
|
597
|
+
"name": "pA",
|
|
598
|
+
"type": "uint256[2]"
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
"internalType": "uint256[2][2]",
|
|
602
|
+
"name": "pB",
|
|
603
|
+
"type": "uint256[2][2]"
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"internalType": "uint256[2]",
|
|
607
|
+
"name": "pC",
|
|
608
|
+
"type": "uint256[2]"
|
|
609
|
+
}
|
|
610
|
+
],
|
|
611
|
+
"internalType": "struct Commonlib.Proof",
|
|
612
|
+
"name": "proof",
|
|
613
|
+
"type": "tuple"
|
|
614
|
+
}
|
|
615
|
+
],
|
|
616
|
+
"name": "_withdraw",
|
|
617
|
+
"outputs": [],
|
|
618
|
+
"stateMutability": "nonpayable",
|
|
619
|
+
"type": "function"
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"inputs": [
|
|
623
|
+
{
|
|
624
|
+
"internalType": "uint256[]",
|
|
625
|
+
"name": "commitments",
|
|
626
|
+
"type": "uint256[]"
|
|
627
|
+
}
|
|
628
|
+
],
|
|
629
|
+
"name": "checkAndPadCommitments",
|
|
630
|
+
"outputs": [
|
|
631
|
+
{
|
|
632
|
+
"internalType": "uint256[]",
|
|
633
|
+
"name": "",
|
|
634
|
+
"type": "uint256[]"
|
|
635
|
+
}
|
|
636
|
+
],
|
|
637
|
+
"stateMutability": "pure",
|
|
638
|
+
"type": "function"
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"inputs": [],
|
|
642
|
+
"name": "decimals",
|
|
643
|
+
"outputs": [
|
|
644
|
+
{
|
|
645
|
+
"internalType": "uint8",
|
|
646
|
+
"name": "",
|
|
647
|
+
"type": "uint8"
|
|
648
|
+
}
|
|
649
|
+
],
|
|
650
|
+
"stateMutability": "view",
|
|
651
|
+
"type": "function"
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"inputs": [
|
|
655
|
+
{
|
|
656
|
+
"internalType": "uint256[]",
|
|
657
|
+
"name": "utxos",
|
|
658
|
+
"type": "uint256[]"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"internalType": "address",
|
|
662
|
+
"name": "delegate",
|
|
663
|
+
"type": "address"
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"internalType": "bytes",
|
|
667
|
+
"name": "data",
|
|
668
|
+
"type": "bytes"
|
|
669
|
+
}
|
|
670
|
+
],
|
|
671
|
+
"name": "delegateLock",
|
|
672
|
+
"outputs": [],
|
|
673
|
+
"stateMutability": "nonpayable",
|
|
674
|
+
"type": "function"
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
"inputs": [
|
|
678
|
+
{
|
|
679
|
+
"internalType": "uint256",
|
|
680
|
+
"name": "amount",
|
|
681
|
+
"type": "uint256"
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"internalType": "uint256[]",
|
|
685
|
+
"name": "outputs",
|
|
686
|
+
"type": "uint256[]"
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"components": [
|
|
690
|
+
{
|
|
691
|
+
"internalType": "uint256[2]",
|
|
692
|
+
"name": "pA",
|
|
693
|
+
"type": "uint256[2]"
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"internalType": "uint256[2][2]",
|
|
697
|
+
"name": "pB",
|
|
698
|
+
"type": "uint256[2][2]"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"internalType": "uint256[2]",
|
|
702
|
+
"name": "pC",
|
|
703
|
+
"type": "uint256[2]"
|
|
704
|
+
}
|
|
705
|
+
],
|
|
706
|
+
"internalType": "struct Commonlib.Proof",
|
|
707
|
+
"name": "proof",
|
|
708
|
+
"type": "tuple"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
"internalType": "bytes",
|
|
712
|
+
"name": "data",
|
|
713
|
+
"type": "bytes"
|
|
714
|
+
}
|
|
715
|
+
],
|
|
716
|
+
"name": "deposit",
|
|
717
|
+
"outputs": [],
|
|
718
|
+
"stateMutability": "nonpayable",
|
|
719
|
+
"type": "function"
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"inputs": [
|
|
723
|
+
{
|
|
724
|
+
"internalType": "string",
|
|
725
|
+
"name": "name",
|
|
726
|
+
"type": "string"
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
"internalType": "string",
|
|
730
|
+
"name": "symbol",
|
|
731
|
+
"type": "string"
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"internalType": "address",
|
|
735
|
+
"name": "initialOwner",
|
|
736
|
+
"type": "address"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"components": [
|
|
740
|
+
{
|
|
741
|
+
"internalType": "address",
|
|
742
|
+
"name": "verifier",
|
|
743
|
+
"type": "address"
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
"internalType": "address",
|
|
747
|
+
"name": "depositVerifier",
|
|
748
|
+
"type": "address"
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
"internalType": "address",
|
|
752
|
+
"name": "withdrawVerifier",
|
|
753
|
+
"type": "address"
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"internalType": "address",
|
|
757
|
+
"name": "lockVerifier",
|
|
758
|
+
"type": "address"
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"internalType": "address",
|
|
762
|
+
"name": "burnVerifier",
|
|
763
|
+
"type": "address"
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"internalType": "address",
|
|
767
|
+
"name": "batchVerifier",
|
|
768
|
+
"type": "address"
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"internalType": "address",
|
|
772
|
+
"name": "batchWithdrawVerifier",
|
|
773
|
+
"type": "address"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"internalType": "address",
|
|
777
|
+
"name": "batchLockVerifier",
|
|
778
|
+
"type": "address"
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"internalType": "address",
|
|
782
|
+
"name": "batchBurnVerifier",
|
|
783
|
+
"type": "address"
|
|
784
|
+
}
|
|
785
|
+
],
|
|
786
|
+
"internalType": "struct IZetoInitializable.VerifiersInfo",
|
|
787
|
+
"name": "verifiers",
|
|
788
|
+
"type": "tuple"
|
|
789
|
+
}
|
|
790
|
+
],
|
|
791
|
+
"name": "initialize",
|
|
792
|
+
"outputs": [],
|
|
793
|
+
"stateMutability": "nonpayable",
|
|
794
|
+
"type": "function"
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"inputs": [
|
|
798
|
+
{
|
|
799
|
+
"internalType": "uint256[]",
|
|
800
|
+
"name": "inputs",
|
|
801
|
+
"type": "uint256[]"
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"internalType": "uint256[]",
|
|
805
|
+
"name": "outputs",
|
|
806
|
+
"type": "uint256[]"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"internalType": "uint256[]",
|
|
810
|
+
"name": "lockedOutputs",
|
|
811
|
+
"type": "uint256[]"
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"components": [
|
|
815
|
+
{
|
|
816
|
+
"internalType": "uint256[2]",
|
|
817
|
+
"name": "pA",
|
|
818
|
+
"type": "uint256[2]"
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"internalType": "uint256[2][2]",
|
|
822
|
+
"name": "pB",
|
|
823
|
+
"type": "uint256[2][2]"
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
"internalType": "uint256[2]",
|
|
827
|
+
"name": "pC",
|
|
828
|
+
"type": "uint256[2]"
|
|
829
|
+
}
|
|
830
|
+
],
|
|
831
|
+
"internalType": "struct Commonlib.Proof",
|
|
832
|
+
"name": "proof",
|
|
833
|
+
"type": "tuple"
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
"internalType": "address",
|
|
837
|
+
"name": "delegate",
|
|
838
|
+
"type": "address"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"internalType": "bytes",
|
|
842
|
+
"name": "data",
|
|
843
|
+
"type": "bytes"
|
|
844
|
+
}
|
|
845
|
+
],
|
|
846
|
+
"name": "lock",
|
|
847
|
+
"outputs": [],
|
|
848
|
+
"stateMutability": "nonpayable",
|
|
849
|
+
"type": "function"
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"inputs": [
|
|
853
|
+
{
|
|
854
|
+
"internalType": "uint256",
|
|
855
|
+
"name": "utxo",
|
|
856
|
+
"type": "uint256"
|
|
857
|
+
}
|
|
858
|
+
],
|
|
859
|
+
"name": "locked",
|
|
860
|
+
"outputs": [
|
|
861
|
+
{
|
|
862
|
+
"internalType": "bool",
|
|
863
|
+
"name": "",
|
|
864
|
+
"type": "bool"
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
"internalType": "address",
|
|
868
|
+
"name": "",
|
|
869
|
+
"type": "address"
|
|
870
|
+
}
|
|
871
|
+
],
|
|
872
|
+
"stateMutability": "view",
|
|
873
|
+
"type": "function"
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
"inputs": [
|
|
877
|
+
{
|
|
878
|
+
"internalType": "uint256[]",
|
|
879
|
+
"name": "utxos",
|
|
880
|
+
"type": "uint256[]"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"internalType": "bytes",
|
|
884
|
+
"name": "data",
|
|
885
|
+
"type": "bytes"
|
|
886
|
+
}
|
|
887
|
+
],
|
|
888
|
+
"name": "mint",
|
|
889
|
+
"outputs": [],
|
|
890
|
+
"stateMutability": "nonpayable",
|
|
891
|
+
"type": "function"
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"inputs": [],
|
|
895
|
+
"name": "name",
|
|
896
|
+
"outputs": [
|
|
897
|
+
{
|
|
898
|
+
"internalType": "string",
|
|
899
|
+
"name": "",
|
|
900
|
+
"type": "string"
|
|
901
|
+
}
|
|
902
|
+
],
|
|
903
|
+
"stateMutability": "view",
|
|
904
|
+
"type": "function"
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
"inputs": [],
|
|
908
|
+
"name": "owner",
|
|
909
|
+
"outputs": [
|
|
910
|
+
{
|
|
911
|
+
"internalType": "address",
|
|
912
|
+
"name": "",
|
|
913
|
+
"type": "address"
|
|
914
|
+
}
|
|
915
|
+
],
|
|
916
|
+
"stateMutability": "view",
|
|
917
|
+
"type": "function"
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"inputs": [],
|
|
921
|
+
"name": "proxiableUUID",
|
|
922
|
+
"outputs": [
|
|
923
|
+
{
|
|
924
|
+
"internalType": "bytes32",
|
|
925
|
+
"name": "",
|
|
926
|
+
"type": "bytes32"
|
|
927
|
+
}
|
|
928
|
+
],
|
|
929
|
+
"stateMutability": "view",
|
|
930
|
+
"type": "function"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"inputs": [],
|
|
934
|
+
"name": "renounceOwnership",
|
|
935
|
+
"outputs": [],
|
|
936
|
+
"stateMutability": "nonpayable",
|
|
937
|
+
"type": "function"
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
"inputs": [
|
|
941
|
+
{
|
|
942
|
+
"internalType": "contract IERC20",
|
|
943
|
+
"name": "erc20",
|
|
944
|
+
"type": "address"
|
|
945
|
+
}
|
|
946
|
+
],
|
|
947
|
+
"name": "setERC20",
|
|
948
|
+
"outputs": [],
|
|
949
|
+
"stateMutability": "nonpayable",
|
|
950
|
+
"type": "function"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"inputs": [
|
|
954
|
+
{
|
|
955
|
+
"internalType": "uint256",
|
|
956
|
+
"name": "txo",
|
|
957
|
+
"type": "uint256"
|
|
958
|
+
}
|
|
959
|
+
],
|
|
960
|
+
"name": "spent",
|
|
961
|
+
"outputs": [
|
|
962
|
+
{
|
|
963
|
+
"internalType": "bool",
|
|
964
|
+
"name": "",
|
|
965
|
+
"type": "bool"
|
|
966
|
+
}
|
|
967
|
+
],
|
|
968
|
+
"stateMutability": "view",
|
|
969
|
+
"type": "function"
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"inputs": [],
|
|
973
|
+
"name": "symbol",
|
|
974
|
+
"outputs": [
|
|
975
|
+
{
|
|
976
|
+
"internalType": "string",
|
|
977
|
+
"name": "",
|
|
978
|
+
"type": "string"
|
|
979
|
+
}
|
|
980
|
+
],
|
|
981
|
+
"stateMutability": "view",
|
|
982
|
+
"type": "function"
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"inputs": [
|
|
986
|
+
{
|
|
987
|
+
"internalType": "uint256[]",
|
|
988
|
+
"name": "inputs",
|
|
989
|
+
"type": "uint256[]"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"internalType": "uint256[]",
|
|
993
|
+
"name": "outputs",
|
|
994
|
+
"type": "uint256[]"
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
"components": [
|
|
998
|
+
{
|
|
999
|
+
"internalType": "uint256[2]",
|
|
1000
|
+
"name": "pA",
|
|
1001
|
+
"type": "uint256[2]"
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"internalType": "uint256[2][2]",
|
|
1005
|
+
"name": "pB",
|
|
1006
|
+
"type": "uint256[2][2]"
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
"internalType": "uint256[2]",
|
|
1010
|
+
"name": "pC",
|
|
1011
|
+
"type": "uint256[2]"
|
|
1012
|
+
}
|
|
1013
|
+
],
|
|
1014
|
+
"internalType": "struct Commonlib.Proof",
|
|
1015
|
+
"name": "proof",
|
|
1016
|
+
"type": "tuple"
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"internalType": "bytes",
|
|
1020
|
+
"name": "data",
|
|
1021
|
+
"type": "bytes"
|
|
1022
|
+
}
|
|
1023
|
+
],
|
|
1024
|
+
"name": "transfer",
|
|
1025
|
+
"outputs": [
|
|
1026
|
+
{
|
|
1027
|
+
"internalType": "bool",
|
|
1028
|
+
"name": "",
|
|
1029
|
+
"type": "bool"
|
|
1030
|
+
}
|
|
1031
|
+
],
|
|
1032
|
+
"stateMutability": "nonpayable",
|
|
1033
|
+
"type": "function"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"inputs": [
|
|
1037
|
+
{
|
|
1038
|
+
"internalType": "uint256[]",
|
|
1039
|
+
"name": "inputs",
|
|
1040
|
+
"type": "uint256[]"
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"internalType": "uint256[]",
|
|
1044
|
+
"name": "outputs",
|
|
1045
|
+
"type": "uint256[]"
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"components": [
|
|
1049
|
+
{
|
|
1050
|
+
"internalType": "uint256[2]",
|
|
1051
|
+
"name": "pA",
|
|
1052
|
+
"type": "uint256[2]"
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
"internalType": "uint256[2][2]",
|
|
1056
|
+
"name": "pB",
|
|
1057
|
+
"type": "uint256[2][2]"
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"internalType": "uint256[2]",
|
|
1061
|
+
"name": "pC",
|
|
1062
|
+
"type": "uint256[2]"
|
|
1063
|
+
}
|
|
1064
|
+
],
|
|
1065
|
+
"internalType": "struct Commonlib.Proof",
|
|
1066
|
+
"name": "proof",
|
|
1067
|
+
"type": "tuple"
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"internalType": "bytes",
|
|
1071
|
+
"name": "data",
|
|
1072
|
+
"type": "bytes"
|
|
1073
|
+
}
|
|
1074
|
+
],
|
|
1075
|
+
"name": "transferLocked",
|
|
1076
|
+
"outputs": [
|
|
1077
|
+
{
|
|
1078
|
+
"internalType": "bool",
|
|
1079
|
+
"name": "",
|
|
1080
|
+
"type": "bool"
|
|
1081
|
+
}
|
|
1082
|
+
],
|
|
1083
|
+
"stateMutability": "nonpayable",
|
|
1084
|
+
"type": "function"
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
"inputs": [
|
|
1088
|
+
{
|
|
1089
|
+
"internalType": "address",
|
|
1090
|
+
"name": "newOwner",
|
|
1091
|
+
"type": "address"
|
|
1092
|
+
}
|
|
1093
|
+
],
|
|
1094
|
+
"name": "transferOwnership",
|
|
1095
|
+
"outputs": [],
|
|
1096
|
+
"stateMutability": "nonpayable",
|
|
1097
|
+
"type": "function"
|
|
1098
|
+
},
|
|
1099
|
+
{
|
|
1100
|
+
"inputs": [
|
|
1101
|
+
{
|
|
1102
|
+
"internalType": "uint256[]",
|
|
1103
|
+
"name": "inputs",
|
|
1104
|
+
"type": "uint256[]"
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
"internalType": "uint256[]",
|
|
1108
|
+
"name": "outputs",
|
|
1109
|
+
"type": "uint256[]"
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
"components": [
|
|
1113
|
+
{
|
|
1114
|
+
"internalType": "uint256[2]",
|
|
1115
|
+
"name": "pA",
|
|
1116
|
+
"type": "uint256[2]"
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
"internalType": "uint256[2][2]",
|
|
1120
|
+
"name": "pB",
|
|
1121
|
+
"type": "uint256[2][2]"
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
"internalType": "uint256[2]",
|
|
1125
|
+
"name": "pC",
|
|
1126
|
+
"type": "uint256[2]"
|
|
1127
|
+
}
|
|
1128
|
+
],
|
|
1129
|
+
"internalType": "struct Commonlib.Proof",
|
|
1130
|
+
"name": "proof",
|
|
1131
|
+
"type": "tuple"
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
"internalType": "bytes",
|
|
1135
|
+
"name": "data",
|
|
1136
|
+
"type": "bytes"
|
|
1137
|
+
}
|
|
1138
|
+
],
|
|
1139
|
+
"name": "unlock",
|
|
1140
|
+
"outputs": [],
|
|
1141
|
+
"stateMutability": "nonpayable",
|
|
1142
|
+
"type": "function"
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
"inputs": [
|
|
1146
|
+
{
|
|
1147
|
+
"internalType": "address",
|
|
1148
|
+
"name": "newImplementation",
|
|
1149
|
+
"type": "address"
|
|
1150
|
+
},
|
|
1151
|
+
{
|
|
1152
|
+
"internalType": "bytes",
|
|
1153
|
+
"name": "data",
|
|
1154
|
+
"type": "bytes"
|
|
1155
|
+
}
|
|
1156
|
+
],
|
|
1157
|
+
"name": "upgradeToAndCall",
|
|
1158
|
+
"outputs": [],
|
|
1159
|
+
"stateMutability": "payable",
|
|
1160
|
+
"type": "function"
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
"inputs": [
|
|
1164
|
+
{
|
|
1165
|
+
"internalType": "uint256[]",
|
|
1166
|
+
"name": "inputs",
|
|
1167
|
+
"type": "uint256[]"
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
"internalType": "uint256[]",
|
|
1171
|
+
"name": "outputs",
|
|
1172
|
+
"type": "uint256[]"
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
"components": [
|
|
1176
|
+
{
|
|
1177
|
+
"internalType": "uint256[2]",
|
|
1178
|
+
"name": "pA",
|
|
1179
|
+
"type": "uint256[2]"
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
"internalType": "uint256[2][2]",
|
|
1183
|
+
"name": "pB",
|
|
1184
|
+
"type": "uint256[2][2]"
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
"internalType": "uint256[2]",
|
|
1188
|
+
"name": "pC",
|
|
1189
|
+
"type": "uint256[2]"
|
|
1190
|
+
}
|
|
1191
|
+
],
|
|
1192
|
+
"internalType": "struct Commonlib.Proof",
|
|
1193
|
+
"name": "proof",
|
|
1194
|
+
"type": "tuple"
|
|
1195
|
+
}
|
|
1196
|
+
],
|
|
1197
|
+
"name": "verifyProof",
|
|
1198
|
+
"outputs": [
|
|
1199
|
+
{
|
|
1200
|
+
"internalType": "bool",
|
|
1201
|
+
"name": "",
|
|
1202
|
+
"type": "bool"
|
|
1203
|
+
}
|
|
1204
|
+
],
|
|
1205
|
+
"stateMutability": "view",
|
|
1206
|
+
"type": "function"
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"inputs": [
|
|
1210
|
+
{
|
|
1211
|
+
"internalType": "uint256",
|
|
1212
|
+
"name": "amount",
|
|
1213
|
+
"type": "uint256"
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"internalType": "uint256[]",
|
|
1217
|
+
"name": "inputs",
|
|
1218
|
+
"type": "uint256[]"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"internalType": "uint256",
|
|
1222
|
+
"name": "output",
|
|
1223
|
+
"type": "uint256"
|
|
1224
|
+
},
|
|
1225
|
+
{
|
|
1226
|
+
"components": [
|
|
1227
|
+
{
|
|
1228
|
+
"internalType": "uint256[2]",
|
|
1229
|
+
"name": "pA",
|
|
1230
|
+
"type": "uint256[2]"
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
"internalType": "uint256[2][2]",
|
|
1234
|
+
"name": "pB",
|
|
1235
|
+
"type": "uint256[2][2]"
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"internalType": "uint256[2]",
|
|
1239
|
+
"name": "pC",
|
|
1240
|
+
"type": "uint256[2]"
|
|
1241
|
+
}
|
|
1242
|
+
],
|
|
1243
|
+
"internalType": "struct Commonlib.Proof",
|
|
1244
|
+
"name": "proof",
|
|
1245
|
+
"type": "tuple"
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
"internalType": "bytes",
|
|
1249
|
+
"name": "data",
|
|
1250
|
+
"type": "bytes"
|
|
1251
|
+
}
|
|
1252
|
+
],
|
|
1253
|
+
"name": "withdraw",
|
|
1254
|
+
"outputs": [],
|
|
1255
|
+
"stateMutability": "nonpayable",
|
|
1256
|
+
"type": "function"
|
|
1257
|
+
}
|
|
1258
|
+
],
|
|
1259
|
+
"bytecode": "0x60a060405230608052348015601357600080fd5b50608051613a4761003d60003960008181611c9d01528181611cc60152611e440152613a476000f3fe6080604052600436106101ac5760003560e01c80638da5cb5b116100ec578063cd523c731161008a578063da805f1111610064578063da805f1114610506578063f2fde38b14610526578063f586acdb14610546578063fb85d41c1461056657600080fd5b8063cd523c73146104a6578063d46e446a146104c6578063d5b5cc23146104e657600080fd5b8063a4ef9ad1116100c6578063a4ef9ad1146103de578063ad3cb1cc146103fe578063b45a3c0e14610447578063c29a6fda1461048657600080fd5b80638da5cb5b1461036257806395d89b41146103a95780639fcc50af146103be57600080fd5b8063313ce567116101595780634f1ef286116101335780634f1ef286146102f757806352d1902d1461030a578063715018a61461032d5780638bb2513b1461034257600080fd5b8063313ce5671461029b5780633e96e273146102b75780634ad89929146102d757600080fd5b80630b1a03581161018a5780630b1a03581461022e578063165252211461024e57806324ce729e1461026e57600080fd5b80630107eb4a146101b157806306fdde03146101d35780630a978c84146101fe575b600080fd5b3480156101bd57600080fd5b506101d16101cc366004612d1c565b610586565b005b3480156101df57600080fd5b506101e86105c6565b6040516101f59190612d8b565b60405180910390f35b34801561020a57600080fd5b5061021e610219366004612eea565b610658565b60405190151581526020016101f5565b34801561023a57600080fd5b5061021e610249366004612f99565b6106ed565b34801561025a57600080fd5b506101d1610269366004613024565b610974565b34801561027a57600080fd5b5061028e610289366004613110565b610aab565b6040516101f59190613181565b3480156102a757600080fd5b50604051600481526020016101f5565b3480156102c357600080fd5b5061021e6102d2366004612eea565b610b19565b3480156102e357600080fd5b506101d16102f2366004613194565b610b40565b6101d1610305366004613253565b610ebb565b34801561031657600080fd5b5061031f610eda565b6040519081526020016101f5565b34801561033957600080fd5b506101d1610f09565b34801561034e57600080fd5b506101d161035d3660046132b7565b610f1d565b34801561036e57600080fd5b507f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546040516001600160a01b0390911681526020016101f5565b3480156103b557600080fd5b506101e8610f35565b3480156103ca57600080fd5b506101d16103d9366004613325565b610f44565b3480156103ea57600080fd5b506101d16103f9366004613342565b610f6e565b34801561040a57600080fd5b506101e86040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b34801561045357600080fd5b506104676104623660046133c0565b6110e4565b6040805192151583526001600160a01b039091166020830152016101f5565b34801561049257600080fd5b506101d16104a1366004613325565b61113e565b3480156104b257600080fd5b506101d16104c13660046133d9565b611168565b3480156104d257600080fd5b506101d16104e1366004612eea565b611185565b3480156104f257600080fd5b5061021e6105013660046133c0565b61119a565b34801561051257600080fd5b506101d1610521366004613410565b6111f2565b34801561053257600080fd5b506101d1610541366004613325565b61138c565b34801561055257600080fd5b506101d1610561366004613464565b6113e3565b34801561057257600080fd5b506101d16105813660046134fc565b611526565b61058e611620565b61059783610f44565b600780546001600160a01b039384166001600160a01b0319918216179091556008805492909316911617905550565b6060600080546105d590613592565b80601f016020809104026020016040519081016040528092919081815260200182805461060190613592565b801561064e5780601f106106235761010080835404028352916020019161064e565b820191906000526020600020905b81548152906001019060200180831161063157829003601f168201915b5050505050905090565b600061066386610aab565b955061066e85610aab565b9450606061067f8787836001611687565b5061068b8787876106ed565b50610699878783600061179f565b336001600160a01b03167fcb56a7130431b68e0e636f24584d40580490c1bf882bef3701f317d47ba98c38888887876040516106d894939291906135ef565b60405180910390a25060019695505050505050565b6000600284511180610700575060028351115b15610850576000610713858560146117bb565b905061071d612c8d565b60005b60148110156107625782818151811061073b5761073b613634565b602002602001015182826014811061075557610755613634565b6020020152600101610720565b50600a54604080517fe56ac42f0000000000000000000000000000000000000000000000000000000081526001600160a01b039092169163e56ac42f916107b791889182019060c0830190879060040161366f565b602060405180830381865afa1580156107d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f891906136c2565b6108495760405162461bcd60e51b815260206004820152601560248201527f496e76616c69642070726f6f662028626174636829000000000000000000000060448201526064015b60405180910390fd5b5050610969565b600061085e858560046117bb565b9050610868612cac565b60005b60048110156108ad5782818151811061088657610886613634565b60200260200101518282600481106108a0576108a0613634565b602002015260010161086b565b5060095460408051635fe8c13b60e01b81526001600160a01b0390921691635fe8c13b916108e991889182019060c083019087906004016136e4565b602060405180830381865afa158015610906573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092a91906136c2565b6109665760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610840565b50505b5060015b9392505050565b6109818787876000611687565b506000855187516109929190613741565b67ffffffffffffffff8111156109aa576109aa612dbe565b6040519080825280602002602001820160405280156109d3578160200160208202803683370190505b50905060005b8751811015610a21578781815181106109f4576109f4613634565b6020026020010151828281518110610a0e57610a0e613634565b60209081029190910101526001016109d9565b5060005b8651811015610a7957868181518110610a4057610a40613634565b602002602001015182828a51610a569190613741565b81518110610a6657610a66613634565b6020908102919091010152600101610a25565b50610a858882876106ed565b50610a93888888600061179f565b610aa18888888787876118bb565b5050505050505050565b8051606090600a811115610aee576040517f9ebbc98e000000000000000000000000000000000000000000000000000000008152600a6004820152602401610840565b60006002821115610b015750600a610b05565b5060025b610b1184826000611ab6565b949350505050565b6000610b2486610aab565b9550610b2f85610aab565b9450606061067f8787836000611687565b600283511115610cc057600c83511115610b89576040517f71798fb5000000000000000000000000000000000000000000000000000000008152600c6004820152602401610840565b6000610b98858585600c611b94565b9050610ba2612cca565b60005b600c811015610be757828181518110610bc057610bc0613634565b60200260200101518282600c8110610bda57610bda613634565b6020020152600101610ba5565b50600854604080517f8cbac0fa0000000000000000000000000000000000000000000000000000000081526001600160a01b0390921691638cbac0fa91610c3c91879182019060c08301908790600401613754565b602060405180830381865afa158015610c59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7d91906136c2565b610cb95760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610840565b5050610dda565b6000610ccf8585856004611b94565b9050610cd9612cac565b60005b6004811015610d1e57828181518110610cf757610cf7613634565b6020026020010151828260048110610d1157610d11613634565b6020020152600101610cdc565b5060075460408051635fe8c13b60e01b81526001600160a01b0390921691635fe8c13b91610d5a91879182019060c083019087906004016136e4565b602060405180830381865afa158015610d77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9b91906136c2565b610dd75760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610840565b50505b6006546040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018690526001600160a01b039091169063a9059cbb906044015b6020604051808303816000875af1158015610e45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6991906136c2565b610eb55760405162461bcd60e51b815260206004820152601f60248201527f4661696c656420746f207472616e7366657220455243323020746f6b656e73006044820152606401610840565b50505050565b610ec3611c92565b610ecc82611d49565b610ed68282611d51565b5050565b6000610ee4611e39565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b610f11611e82565b610f1b6000611ef6565b565b610f25611e82565b610f30838383611f67565b505050565b6060600180546105d590613592565b610f4c611620565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b60005b845181101561108e57848181518110610f8c57610f8c613634565b60200260200101516000031561108657336001600160a01b031660046000878481518110610fbc57610fbc613634565b6020908102919091018101518252810191909152604001600020546001600160a01b03161461103457848181518110610ff757610ff7613634565b6020908102919091010151604051639fec262f60e01b815260048101919091526001600160a01b0385166024820152336044820152606401610840565b836004600087848151811061104b5761104b613634565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b600101610f71565b50826001600160a01b0316336001600160a01b03167fb81fc4239cf1f8a9964a337bb7866ffeb712f9e482d9cef0f5fac9fe3bd655b28685856040516110d69392919061379b565b60405180910390a350505050565b600080600160008481526003602052604090205460ff16600281111561110c5761110c6137c1565b036111335750506000908152600460205260409020546001916001600160a01b0390911690565b506000928392509050565b611146611e82565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6111738585856111f2565b61117e848383611f67565b5050505050565b6111928585858585610658565b505050505050565b600081815260026020819052604082205460ff16818111156111be576111be6137c1565b14806111ec5750600260008381526003602052604090205460ff1660028111156111ea576111ea6137c1565b145b92915050565b6111fa612ce9565b8381528251839060009061121057611210613634565b60200260200101518160016003811061122b5761122b613634565b602002015282518390600190811061124557611245613634565b60200260200101518160026003811061126057611260613634565b6020020152600554604080517f11479fea0000000000000000000000000000000000000000000000000000000081526001600160a01b03909216916311479fea916112b991869182019060c083019087906004016137d7565b602060405180830381865afa1580156112d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fa91906136c2565b6113365760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610840565b6006546040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018690526001600160a01b03909116906323b872dd90606401610e26565b611394611e82565b6001600160a01b0381166113d7576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610840565b6113e081611ef6565b50565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff1660008115801561142e5750825b905060008267ffffffffffffffff16600114801561144b5750303b155b905081158015611459575080155b15611490576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156114c457845468ff00000000000000001916680100000000000000001785555b6114d089898989611fc3565b831561151b57845468ff000000000000000019168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b6000855167ffffffffffffffff81111561154257611542612dbe565b60405190808252806020026020018201604052801561156b578160200160208202803683370190505b509050848160008151811061158257611582613634565b60200260200101818152505061159786610aab565b95506115a281610aab565b905060606115b38783836000611687565b506115c088888888610b40565b6115cd878383600061179f565b336001600160a01b03167f7d8a8f009bcd9cd0dc27e36fe37cc7cfe2bbd1469c0970d31046d3c12ec7f48c898989888860405161160e95949392919061381e565b60405180910390a25050505050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16610f1b576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080835185516116989190613741565b67ffffffffffffffff8111156116b0576116b0612dbe565b6040519080825280602002602001820160405280156116d9578160200160208202803683370190505b50905060005b8551811015611727578581815181106116fa576116fa613634565b602002602001015182828151811061171457611714613634565b60209081029190910101526001016116df565b5060005b845181101561177f5784818151811061174657611746613634565b60200260200101518282885161175c9190613741565b8151811061176c5761176c613634565b602090810291909101015260010161172b565b5061178a868461206c565b6117938161249d565b50600195945050505050565b6117a984826126ef565b6117b28361278b565b610eb582612815565b60608167ffffffffffffffff8111156117d6576117d6612dbe565b6040519080825280602002602001820160405280156117ff578160200160208202803683370190505b5090506000805b855181101561185a5785818151811061182157611821613634565b60200260200101518383806118359061385c565b94508151811061184757611847613634565b6020908102919091010152600101611806565b5060005b84518110156118b25784818151811061187957611879613634565b602002602001015183838061188d9061385c565b94508151811061189f5761189f613634565b602090810291909101015260010161185e565b50509392505050565b60005b8451811015611a5a578481815181106118d9576118d9613634565b602002602001015160000315611a525760006001600160a01b03166004600087848151811061190a5761190a613634565b6020908102919091018101518252810191909152604001600020546001600160a01b03161480159061197e5750336001600160a01b03166004600087848151811061195757611957613634565b6020908102919091018101518252810191909152604001600020546001600160a01b031614155b15611a005784818151811061199557611995613634565b6020026020010151600460008784815181106119b3576119b3613634565b60209081029190910181015182528101919091526040908101600020549051639fec262f60e01b815260048101929092526001600160a01b03166024820152336044820152606401610840565b8360046000878481518110611a1757611a17613634565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b6001016118be565b50336001600160a01b0316836001600160a01b03167f2478e2370a2c14a2eb7579b8a4a140dc020d4d75daf0016542656bee955395f38888888787604051611aa6959493929190613875565b60405180910390a3505050505050565b606082845103611ac757508261096d565b60008367ffffffffffffffff811115611ae257611ae2612dbe565b604051908082528060200260200182016040528015611b0b578160200160208202803683370190505b50905060005b8551811015611b5957858181518110611b2c57611b2c613634565b6020026020010151828281518110611b4657611b46613634565b6020908102919091010152600101611b11565b5084515b84811015611b8b5783828281518110611b7857611b78613634565b6020908102919091010152600101611b5d565b50949350505050565b60608167ffffffffffffffff811115611baf57611baf612dbe565b604051908082528060200260200182016040528015611bd8578160200160208202803683370190505b5090506000858282611be98161385c565b935081518110611bfb57611bfb613634565b60200260200101818152505060005b8551811015611c5e57858181518110611c2557611c25613634565b6020026020010151838380611c399061385c565b945081518110611c4b57611c4b613634565b6020908102919091010152600101611c0a565b50838282611c6b8161385c565b935081518110611c7d57611c7d613634565b60200260200101818152505050949350505050565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480611d2b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611d1f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b031614155b15610f1b5760405163703e46dd60e11b815260040160405180910390fd5b6113e0611e82565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611dab575060408051601f3d908101601f19168201909252611da8918101906138c3565b60015b611dd357604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610840565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc8114611e2f576040517faa1d49a400000000000000000000000000000000000000000000000000000000815260048101829052602401610840565b610f30838361289f565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f1b5760405163703e46dd60e11b815260040160405180910390fd5b33611eb47f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b031614610f1b576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610840565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b611f708361249d565b611f798361278b565b336001600160a01b03167f7ff08e0ca1fce6b202b83128811e4f6ceda54930aa074cd365bf68f95c20ce19848484604051611fb69392919061379b565b60405180910390a2505050565b611fcb611620565b611fd68484846128f5565b612009611fe96040830160208401613325565b611ff96060840160408501613325565b6101cc60e0850160c08601613325565b6120166020820182613325565b600980546001600160a01b0319166001600160a01b039290921691909117905561204660c0820160a08301613325565b600a80546001600160a01b0319166001600160a01b039290921691909117905550505050565b600061207783612908565b905060005b8151811015610eb55781818151811061209757612097613634565b602002602001015160000315612495576000811180156120f25750816120be6001836138dc565b815181106120ce576120ce613634565b60200260200101518282815181106120e8576120e8613634565b6020026020010151145b156121465781818151811061210957612109613634565b60200260200101516040517fdd57483100000000000000000000000000000000000000000000000000000000815260040161084091815260200190565b60006003600084848151811061215e5761215e613634565b60209081029190910181015182528101919091526040016000205460ff16600281111561218d5761218d6137c1565b1480156121de57506000600260008484815181106121ad576121ad613634565b60209081029190910181015182528101919091526040016000205460ff1660028111156121dc576121dc6137c1565b145b15612232578181815181106121f5576121f5613634565b60200260200101516040517f8392512700000000000000000000000000000000000000000000000000000000815260040161084091815260200190565b60026003600084848151811061224a5761224a613634565b60209081029190910181015182528101919091526040016000205460ff166002811115612279576122796137c1565b14806122c85750600280600084848151811061229757612297613634565b60209081029190910181015182528101919091526040016000205460ff1660028111156122c6576122c66137c1565b145b1561231c578181815181106122df576122df613634565b60200260200101516040517f41a06d2800000000000000000000000000000000000000000000000000000000815260040161084091815260200190565b8215801561236e575060016003600084848151811061233d5761233d613634565b60209081029190910181015182528101919091526040016000205460ff16600281111561236c5761236c6137c1565b145b156123c25781818151811061238557612385613634565b60200260200101516040517fd60f4acc00000000000000000000000000000000000000000000000000000000815260040161084091815260200190565b8280156124115750336001600160a01b0316600460008484815181106123ea576123ea613634565b6020908102919091018101518252810191909152604001600020546001600160a01b031614155b8015612460575060006001600160a01b03166004600084848151811061243957612439613634565b6020908102919091018101518252810191909152604001600020546001600160a01b031614155b156124955781818151811061247757612477613634565b6020026020010151600460008484815181106119b3576119b3613634565b60010161207c565b60006124a882612908565b905060005b8151811015612542578181815181106124c8576124c8613634565b60200260200101516000031561253a576000811180156125235750816124ef6001836138dc565b815181106124ff576124ff613634565b602002602001015182828151811061251957612519613634565b6020026020010151145b1561253a5781818151811061210957612109613634565b6001016124ad565b5060005b8251811015610f3057600280600085848151811061256657612566613634565b60209081029190910181015182528101919091526040016000205460ff166002811115612595576125956137c1565b14806125e557506002600360008584815181106125b4576125b4613634565b60209081029190910181015182528101919091526040016000205460ff1660028111156125e3576125e36137c1565b145b156125fc578281815181106122df576122df613634565b60016002600085848151811061261457612614613634565b60209081029190910181015182528101919091526040016000205460ff166002811115612643576126436137c1565b1480612693575060016003600085848151811061266257612662613634565b60209081029190910181015182528101919091526040016000205460ff166002811115612691576126916137c1565b145b156126e7578281815181106126aa576126aa613634565b60200260200101516040517f79e1da4700000000000000000000000000000000000000000000000000000000815260040161084091815260200190565b600101612546565b6000816126fd576002612700565b60035b905060005b8351811015610eb55783818151811061272057612720613634565b602002602001015160001461278357600282600086848151811061274657612746613634565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083600281111561277d5761277d6137c1565b02179055505b600101612705565b60005b8151811015610ed6578181815181106127a9576127a9613634565b602002602001015160001461280d576001600260008484815181106127d0576127d0613634565b6020026020010151815260200190815260200160002060006101000a81548160ff02191690836002811115612807576128076137c1565b02179055505b60010161278e565b60005b8151811015610ed65781818151811061283357612833613634565b60200260200101516000146128975760016003600084848151811061285a5761285a613634565b6020026020010151815260200190815260200160002060006101000a81548160ff02191690836002811115612891576128916137c1565b02179055505b600101612818565b6128a8826129a7565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156128ed57610f308282612a1e565b610ed6612a94565b6128fd611620565b610f30838383612acc565b60606000825167ffffffffffffffff81111561292657612926612dbe565b60405190808252806020026020018201604052801561294f578160200160208202803683370190505b50905060005b835181101561299d5783818151811061297057612970613634565b602002602001015182828151811061298a5761298a613634565b6020908102919091010152600101612955565b5061096d81612af6565b806001600160a01b03163b6000036129dd57604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610840565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b031684604051612a3b91906138ef565b600060405180830381855af49150503d8060008114612a76576040519150601f19603f3d011682016040523d82523d6000602084013e612a7b565b606091505b5091509150612a8b858383612b0b565b95945050505050565b3415610f1b576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ad4611620565b612add81612b80565b6000612ae98482613952565b506001610eb58382613952565b6060612b0482612b91612b95565b5090919050565b606082612b2057612b1b82612bad565b61096d565b8151158015612b3757506001600160a01b0384163b155b15612b79576040517f9996b3150000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610840565b508061096d565b612b88611620565b6113e081612bef565b1190565b6060612b0460208401612ba785612bf7565b84612c0f565b805115612bbd5780518082602001fd5b6040517fd6bda27500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611394611620565b60008151602002612c088360200190565b0192915050565b60408383031015612c1f57505050565b6000612c29845190565b905083602081015b84811015612c6b57612c4e612c44825190565b848663ffffffff16565b15612c63576020919091018051825182528252905b602001612c31565b508451815186528152612c7f858285612c0f565b61117e816020018585612c0f565b6040518061028001604052806014906020820280368337509192915050565b60405180608001604052806004906020820280368337509192915050565b604051806101800160405280600c906020820280368337509192915050565b60405180606001604052806003906020820280368337509192915050565b6001600160a01b03811681146113e057600080fd5b600080600060608486031215612d3157600080fd5b8335612d3c81612d07565b92506020840135612d4c81612d07565b91506040840135612d5c81612d07565b809150509250925092565b60005b83811015612d82578181015183820152602001612d6a565b50506000910152565b6020815260008251806020840152612daa816040850160208701612d67565b601f01601f19169190910160400192915050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612dfd57612dfd612dbe565b604052919050565b600082601f830112612e1657600080fd5b813567ffffffffffffffff811115612e3057612e30612dbe565b8060051b612e4060208201612dd4565b91825260208185018101929081019086841115612e5c57600080fd5b6020860192505b83831015612e7e578235825260209283019290910190612e63565b9695505050505050565b60006101008284031215612e9b57600080fd5b50919050565b60008083601f840112612eb357600080fd5b50813567ffffffffffffffff811115612ecb57600080fd5b602083019150836020828501011115612ee357600080fd5b9250929050565b60008060008060006101608688031215612f0357600080fd5b853567ffffffffffffffff811115612f1a57600080fd5b612f2688828901612e05565b955050602086013567ffffffffffffffff811115612f4357600080fd5b612f4f88828901612e05565b945050612f5f8760408801612e88565b925061014086013567ffffffffffffffff811115612f7c57600080fd5b612f8888828901612ea1565b969995985093965092949392505050565b60008060006101408486031215612faf57600080fd5b833567ffffffffffffffff811115612fc657600080fd5b612fd286828701612e05565b935050602084013567ffffffffffffffff811115612fef57600080fd5b612ffb86828701612e05565b92505061300b8560408601612e88565b90509250925092565b803561301f81612d07565b919050565b60008060008060008060006101a0888a03121561304057600080fd5b873567ffffffffffffffff81111561305757600080fd5b6130638a828b01612e05565b975050602088013567ffffffffffffffff81111561308057600080fd5b61308c8a828b01612e05565b965050604088013567ffffffffffffffff8111156130a957600080fd5b6130b58a828b01612e05565b9550506130c58960608a01612e88565b93506130d46101608901613014565b925061018088013567ffffffffffffffff8111156130f157600080fd5b6130fd8a828b01612ea1565b989b979a50959850939692959293505050565b60006020828403121561312257600080fd5b813567ffffffffffffffff81111561313957600080fd5b610b1184828501612e05565b600081518084526020840193506020830160005b82811015613177578151865260209586019590910190600101613159565b5093949350505050565b60208152600061096d6020830184613145565b60008060008061016085870312156131ab57600080fd5b84359350602085013567ffffffffffffffff8111156131c957600080fd5b6131d587828801612e05565b935050604085013591506131ec8660608701612e88565b905092959194509250565b60008067ffffffffffffffff84111561321257613212612dbe565b50601f8301601f191660200161322781612dd4565b91505082815283838301111561323c57600080fd5b828260208301376000602084830101529392505050565b6000806040838503121561326657600080fd5b823561327181612d07565b9150602083013567ffffffffffffffff81111561328d57600080fd5b8301601f8101851361329e57600080fd5b6132ad858235602084016131f7565b9150509250929050565b6000806000604084860312156132cc57600080fd5b833567ffffffffffffffff8111156132e357600080fd5b6132ef86828701612e05565b935050602084013567ffffffffffffffff81111561330c57600080fd5b61331886828701612ea1565b9497909650939450505050565b60006020828403121561333757600080fd5b813561096d81612d07565b6000806000806060858703121561335857600080fd5b843567ffffffffffffffff81111561336f57600080fd5b61337b87828801612e05565b945050602085013561338c81612d07565b9250604085013567ffffffffffffffff8111156133a857600080fd5b6133b487828801612ea1565b95989497509550505050565b6000602082840312156133d257600080fd5b5035919050565b600080600080600061016086880312156133f257600080fd5b85359450602086013567ffffffffffffffff811115612f4357600080fd5b6000806000610140848603121561342657600080fd5b83359250602084013567ffffffffffffffff811115612fef57600080fd5b600082601f83011261345557600080fd5b61096d838335602085016131f7565b60008060008084860361018081121561347c57600080fd5b853567ffffffffffffffff81111561349357600080fd5b61349f88828901613444565b955050602086013567ffffffffffffffff8111156134bc57600080fd5b6134c888828901613444565b94505060408601356134d981612d07565b9250610120605f19820112156134ee57600080fd5b509295919450926060019150565b600080600080600080610180878903121561351657600080fd5b86359550602087013567ffffffffffffffff81111561353457600080fd5b61354089828a01612e05565b955050604087013593506135578860608901612e88565b925061016087013567ffffffffffffffff81111561357457600080fd5b61358089828a01612ea1565b979a9699509497509295939492505050565b600181811c908216806135a657607f821691505b602082108103612e9b57634e487b7160e01b600052602260045260246000fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6060815260006136026060830187613145565b82810360208401526136148187613145565b905082810360408401526136298185876135c6565b979650505050505050565b634e487b7160e01b600052603260045260246000fd5b8060005b6002811015610eb5576040828537604093840193919091019060010161364e565b61038081016040868337613686604083018661364a565b60408460c084013761010082018360005b60148110156136b6578151835260209283019290910190600101613697565b50505095945050505050565b6000602082840312156136d457600080fd5b8151801515811461096d57600080fd5b610180810160408683376136fb604083018661364a565b60408460c084013761010082018360005b60048110156136b657815183526020928301929091019060010161370c565b634e487b7160e01b600052601160045260246000fd5b808201808211156111ec576111ec61372b565b6102808101604086833761376b604083018661364a565b60408460c084013761010082018360005b600c8110156136b657815183526020928301929091019060010161377c565b6040815260006137ae6040830186613145565b8281036020840152612e7e8185876135c6565b634e487b7160e01b600052602160045260246000fd5b610160810160408683376137ee604083018661364a565b60408460c084013761010082018360005b60038110156136b65781518352602092830192909101906001016137ff565b8581526080602082015260006138376080830187613145565b85604084015282810360608401526138508185876135c6565b98975050505050505050565b60006001820161386e5761386e61372b565b5060010190565b6080815260006138886080830188613145565b828103602084015261389a8188613145565b905082810360408401526138ae8187613145565b905082810360608401526138508185876135c6565b6000602082840312156138d557600080fd5b5051919050565b818103818111156111ec576111ec61372b565b60008251613901818460208701612d67565b9190910192915050565b601f821115610f3057806000526020600020601f840160051c810160208510156139325750805b601f840160051c820191505b8181101561117e576000815560010161393e565b815167ffffffffffffffff81111561396c5761396c612dbe565b6139808161397a8454613592565b8461390b565b6020601f8211600181146139b4576000831561399c5750848201515b600019600385901b1c1916600184901b17845561117e565b600084815260208120601f198516915b828110156139e457878501518255602094850194600190920191016139c4565b5084821015613a025786840151600019600387901b60f8161c191681555b50505050600190811b0190555056fea2646970667358221220a91365bff65936c822614daf95d9eb357522c18f3a91b2cd9c752cbe72664c0164736f6c634300081b0033",
|
|
1260
|
+
"deployedBytecode": "0x6080604052600436106101ac5760003560e01c80638da5cb5b116100ec578063cd523c731161008a578063da805f1111610064578063da805f1114610506578063f2fde38b14610526578063f586acdb14610546578063fb85d41c1461056657600080fd5b8063cd523c73146104a6578063d46e446a146104c6578063d5b5cc23146104e657600080fd5b8063a4ef9ad1116100c6578063a4ef9ad1146103de578063ad3cb1cc146103fe578063b45a3c0e14610447578063c29a6fda1461048657600080fd5b80638da5cb5b1461036257806395d89b41146103a95780639fcc50af146103be57600080fd5b8063313ce567116101595780634f1ef286116101335780634f1ef286146102f757806352d1902d1461030a578063715018a61461032d5780638bb2513b1461034257600080fd5b8063313ce5671461029b5780633e96e273146102b75780634ad89929146102d757600080fd5b80630b1a03581161018a5780630b1a03581461022e578063165252211461024e57806324ce729e1461026e57600080fd5b80630107eb4a146101b157806306fdde03146101d35780630a978c84146101fe575b600080fd5b3480156101bd57600080fd5b506101d16101cc366004612d1c565b610586565b005b3480156101df57600080fd5b506101e86105c6565b6040516101f59190612d8b565b60405180910390f35b34801561020a57600080fd5b5061021e610219366004612eea565b610658565b60405190151581526020016101f5565b34801561023a57600080fd5b5061021e610249366004612f99565b6106ed565b34801561025a57600080fd5b506101d1610269366004613024565b610974565b34801561027a57600080fd5b5061028e610289366004613110565b610aab565b6040516101f59190613181565b3480156102a757600080fd5b50604051600481526020016101f5565b3480156102c357600080fd5b5061021e6102d2366004612eea565b610b19565b3480156102e357600080fd5b506101d16102f2366004613194565b610b40565b6101d1610305366004613253565b610ebb565b34801561031657600080fd5b5061031f610eda565b6040519081526020016101f5565b34801561033957600080fd5b506101d1610f09565b34801561034e57600080fd5b506101d161035d3660046132b7565b610f1d565b34801561036e57600080fd5b507f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546040516001600160a01b0390911681526020016101f5565b3480156103b557600080fd5b506101e8610f35565b3480156103ca57600080fd5b506101d16103d9366004613325565b610f44565b3480156103ea57600080fd5b506101d16103f9366004613342565b610f6e565b34801561040a57600080fd5b506101e86040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b34801561045357600080fd5b506104676104623660046133c0565b6110e4565b6040805192151583526001600160a01b039091166020830152016101f5565b34801561049257600080fd5b506101d16104a1366004613325565b61113e565b3480156104b257600080fd5b506101d16104c13660046133d9565b611168565b3480156104d257600080fd5b506101d16104e1366004612eea565b611185565b3480156104f257600080fd5b5061021e6105013660046133c0565b61119a565b34801561051257600080fd5b506101d1610521366004613410565b6111f2565b34801561053257600080fd5b506101d1610541366004613325565b61138c565b34801561055257600080fd5b506101d1610561366004613464565b6113e3565b34801561057257600080fd5b506101d16105813660046134fc565b611526565b61058e611620565b61059783610f44565b600780546001600160a01b039384166001600160a01b0319918216179091556008805492909316911617905550565b6060600080546105d590613592565b80601f016020809104026020016040519081016040528092919081815260200182805461060190613592565b801561064e5780601f106106235761010080835404028352916020019161064e565b820191906000526020600020905b81548152906001019060200180831161063157829003601f168201915b5050505050905090565b600061066386610aab565b955061066e85610aab565b9450606061067f8787836001611687565b5061068b8787876106ed565b50610699878783600061179f565b336001600160a01b03167fcb56a7130431b68e0e636f24584d40580490c1bf882bef3701f317d47ba98c38888887876040516106d894939291906135ef565b60405180910390a25060019695505050505050565b6000600284511180610700575060028351115b15610850576000610713858560146117bb565b905061071d612c8d565b60005b60148110156107625782818151811061073b5761073b613634565b602002602001015182826014811061075557610755613634565b6020020152600101610720565b50600a54604080517fe56ac42f0000000000000000000000000000000000000000000000000000000081526001600160a01b039092169163e56ac42f916107b791889182019060c0830190879060040161366f565b602060405180830381865afa1580156107d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f891906136c2565b6108495760405162461bcd60e51b815260206004820152601560248201527f496e76616c69642070726f6f662028626174636829000000000000000000000060448201526064015b60405180910390fd5b5050610969565b600061085e858560046117bb565b9050610868612cac565b60005b60048110156108ad5782818151811061088657610886613634565b60200260200101518282600481106108a0576108a0613634565b602002015260010161086b565b5060095460408051635fe8c13b60e01b81526001600160a01b0390921691635fe8c13b916108e991889182019060c083019087906004016136e4565b602060405180830381865afa158015610906573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092a91906136c2565b6109665760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610840565b50505b5060015b9392505050565b6109818787876000611687565b506000855187516109929190613741565b67ffffffffffffffff8111156109aa576109aa612dbe565b6040519080825280602002602001820160405280156109d3578160200160208202803683370190505b50905060005b8751811015610a21578781815181106109f4576109f4613634565b6020026020010151828281518110610a0e57610a0e613634565b60209081029190910101526001016109d9565b5060005b8651811015610a7957868181518110610a4057610a40613634565b602002602001015182828a51610a569190613741565b81518110610a6657610a66613634565b6020908102919091010152600101610a25565b50610a858882876106ed565b50610a93888888600061179f565b610aa18888888787876118bb565b5050505050505050565b8051606090600a811115610aee576040517f9ebbc98e000000000000000000000000000000000000000000000000000000008152600a6004820152602401610840565b60006002821115610b015750600a610b05565b5060025b610b1184826000611ab6565b949350505050565b6000610b2486610aab565b9550610b2f85610aab565b9450606061067f8787836000611687565b600283511115610cc057600c83511115610b89576040517f71798fb5000000000000000000000000000000000000000000000000000000008152600c6004820152602401610840565b6000610b98858585600c611b94565b9050610ba2612cca565b60005b600c811015610be757828181518110610bc057610bc0613634565b60200260200101518282600c8110610bda57610bda613634565b6020020152600101610ba5565b50600854604080517f8cbac0fa0000000000000000000000000000000000000000000000000000000081526001600160a01b0390921691638cbac0fa91610c3c91879182019060c08301908790600401613754565b602060405180830381865afa158015610c59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7d91906136c2565b610cb95760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610840565b5050610dda565b6000610ccf8585856004611b94565b9050610cd9612cac565b60005b6004811015610d1e57828181518110610cf757610cf7613634565b6020026020010151828260048110610d1157610d11613634565b6020020152600101610cdc565b5060075460408051635fe8c13b60e01b81526001600160a01b0390921691635fe8c13b91610d5a91879182019060c083019087906004016136e4565b602060405180830381865afa158015610d77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9b91906136c2565b610dd75760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610840565b50505b6006546040517fa9059cbb000000000000000000000000000000000000000000000000000000008152336004820152602481018690526001600160a01b039091169063a9059cbb906044015b6020604051808303816000875af1158015610e45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6991906136c2565b610eb55760405162461bcd60e51b815260206004820152601f60248201527f4661696c656420746f207472616e7366657220455243323020746f6b656e73006044820152606401610840565b50505050565b610ec3611c92565b610ecc82611d49565b610ed68282611d51565b5050565b6000610ee4611e39565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b610f11611e82565b610f1b6000611ef6565b565b610f25611e82565b610f30838383611f67565b505050565b6060600180546105d590613592565b610f4c611620565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b60005b845181101561108e57848181518110610f8c57610f8c613634565b60200260200101516000031561108657336001600160a01b031660046000878481518110610fbc57610fbc613634565b6020908102919091018101518252810191909152604001600020546001600160a01b03161461103457848181518110610ff757610ff7613634565b6020908102919091010151604051639fec262f60e01b815260048101919091526001600160a01b0385166024820152336044820152606401610840565b836004600087848151811061104b5761104b613634565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b600101610f71565b50826001600160a01b0316336001600160a01b03167fb81fc4239cf1f8a9964a337bb7866ffeb712f9e482d9cef0f5fac9fe3bd655b28685856040516110d69392919061379b565b60405180910390a350505050565b600080600160008481526003602052604090205460ff16600281111561110c5761110c6137c1565b036111335750506000908152600460205260409020546001916001600160a01b0390911690565b506000928392509050565b611146611e82565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6111738585856111f2565b61117e848383611f67565b5050505050565b6111928585858585610658565b505050505050565b600081815260026020819052604082205460ff16818111156111be576111be6137c1565b14806111ec5750600260008381526003602052604090205460ff1660028111156111ea576111ea6137c1565b145b92915050565b6111fa612ce9565b8381528251839060009061121057611210613634565b60200260200101518160016003811061122b5761122b613634565b602002015282518390600190811061124557611245613634565b60200260200101518160026003811061126057611260613634565b6020020152600554604080517f11479fea0000000000000000000000000000000000000000000000000000000081526001600160a01b03909216916311479fea916112b991869182019060c083019087906004016137d7565b602060405180830381865afa1580156112d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fa91906136c2565b6113365760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610840565b6006546040517f23b872dd000000000000000000000000000000000000000000000000000000008152336004820152306024820152604481018690526001600160a01b03909116906323b872dd90606401610e26565b611394611e82565b6001600160a01b0381166113d7576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610840565b6113e081611ef6565b50565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff1660008115801561142e5750825b905060008267ffffffffffffffff16600114801561144b5750303b155b905081158015611459575080155b15611490576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156114c457845468ff00000000000000001916680100000000000000001785555b6114d089898989611fc3565b831561151b57845468ff000000000000000019168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b505050505050505050565b6000855167ffffffffffffffff81111561154257611542612dbe565b60405190808252806020026020018201604052801561156b578160200160208202803683370190505b509050848160008151811061158257611582613634565b60200260200101818152505061159786610aab565b95506115a281610aab565b905060606115b38783836000611687565b506115c088888888610b40565b6115cd878383600061179f565b336001600160a01b03167f7d8a8f009bcd9cd0dc27e36fe37cc7cfe2bbd1469c0970d31046d3c12ec7f48c898989888860405161160e95949392919061381e565b60405180910390a25050505050505050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16610f1b576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080835185516116989190613741565b67ffffffffffffffff8111156116b0576116b0612dbe565b6040519080825280602002602001820160405280156116d9578160200160208202803683370190505b50905060005b8551811015611727578581815181106116fa576116fa613634565b602002602001015182828151811061171457611714613634565b60209081029190910101526001016116df565b5060005b845181101561177f5784818151811061174657611746613634565b60200260200101518282885161175c9190613741565b8151811061176c5761176c613634565b602090810291909101015260010161172b565b5061178a868461206c565b6117938161249d565b50600195945050505050565b6117a984826126ef565b6117b28361278b565b610eb582612815565b60608167ffffffffffffffff8111156117d6576117d6612dbe565b6040519080825280602002602001820160405280156117ff578160200160208202803683370190505b5090506000805b855181101561185a5785818151811061182157611821613634565b60200260200101518383806118359061385c565b94508151811061184757611847613634565b6020908102919091010152600101611806565b5060005b84518110156118b25784818151811061187957611879613634565b602002602001015183838061188d9061385c565b94508151811061189f5761189f613634565b602090810291909101015260010161185e565b50509392505050565b60005b8451811015611a5a578481815181106118d9576118d9613634565b602002602001015160000315611a525760006001600160a01b03166004600087848151811061190a5761190a613634565b6020908102919091018101518252810191909152604001600020546001600160a01b03161480159061197e5750336001600160a01b03166004600087848151811061195757611957613634565b6020908102919091018101518252810191909152604001600020546001600160a01b031614155b15611a005784818151811061199557611995613634565b6020026020010151600460008784815181106119b3576119b3613634565b60209081029190910181015182528101919091526040908101600020549051639fec262f60e01b815260048101929092526001600160a01b03166024820152336044820152606401610840565b8360046000878481518110611a1757611a17613634565b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b6001016118be565b50336001600160a01b0316836001600160a01b03167f2478e2370a2c14a2eb7579b8a4a140dc020d4d75daf0016542656bee955395f38888888787604051611aa6959493929190613875565b60405180910390a3505050505050565b606082845103611ac757508261096d565b60008367ffffffffffffffff811115611ae257611ae2612dbe565b604051908082528060200260200182016040528015611b0b578160200160208202803683370190505b50905060005b8551811015611b5957858181518110611b2c57611b2c613634565b6020026020010151828281518110611b4657611b46613634565b6020908102919091010152600101611b11565b5084515b84811015611b8b5783828281518110611b7857611b78613634565b6020908102919091010152600101611b5d565b50949350505050565b60608167ffffffffffffffff811115611baf57611baf612dbe565b604051908082528060200260200182016040528015611bd8578160200160208202803683370190505b5090506000858282611be98161385c565b935081518110611bfb57611bfb613634565b60200260200101818152505060005b8551811015611c5e57858181518110611c2557611c25613634565b6020026020010151838380611c399061385c565b945081518110611c4b57611c4b613634565b6020908102919091010152600101611c0a565b50838282611c6b8161385c565b935081518110611c7d57611c7d613634565b60200260200101818152505050949350505050565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480611d2b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316611d1f7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b031614155b15610f1b5760405163703e46dd60e11b815260040160405180910390fd5b6113e0611e82565b816001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611dab575060408051601f3d908101601f19168201909252611da8918101906138c3565b60015b611dd357604051634c9c8ce360e01b81526001600160a01b0383166004820152602401610840565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc8114611e2f576040517faa1d49a400000000000000000000000000000000000000000000000000000000815260048101829052602401610840565b610f30838361289f565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610f1b5760405163703e46dd60e11b815260040160405180910390fd5b33611eb47f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300546001600160a01b031690565b6001600160a01b031614610f1b576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610840565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930080546001600160a01b031981166001600160a01b03848116918217845560405192169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b611f708361249d565b611f798361278b565b336001600160a01b03167f7ff08e0ca1fce6b202b83128811e4f6ceda54930aa074cd365bf68f95c20ce19848484604051611fb69392919061379b565b60405180910390a2505050565b611fcb611620565b611fd68484846128f5565b612009611fe96040830160208401613325565b611ff96060840160408501613325565b6101cc60e0850160c08601613325565b6120166020820182613325565b600980546001600160a01b0319166001600160a01b039290921691909117905561204660c0820160a08301613325565b600a80546001600160a01b0319166001600160a01b039290921691909117905550505050565b600061207783612908565b905060005b8151811015610eb55781818151811061209757612097613634565b602002602001015160000315612495576000811180156120f25750816120be6001836138dc565b815181106120ce576120ce613634565b60200260200101518282815181106120e8576120e8613634565b6020026020010151145b156121465781818151811061210957612109613634565b60200260200101516040517fdd57483100000000000000000000000000000000000000000000000000000000815260040161084091815260200190565b60006003600084848151811061215e5761215e613634565b60209081029190910181015182528101919091526040016000205460ff16600281111561218d5761218d6137c1565b1480156121de57506000600260008484815181106121ad576121ad613634565b60209081029190910181015182528101919091526040016000205460ff1660028111156121dc576121dc6137c1565b145b15612232578181815181106121f5576121f5613634565b60200260200101516040517f8392512700000000000000000000000000000000000000000000000000000000815260040161084091815260200190565b60026003600084848151811061224a5761224a613634565b60209081029190910181015182528101919091526040016000205460ff166002811115612279576122796137c1565b14806122c85750600280600084848151811061229757612297613634565b60209081029190910181015182528101919091526040016000205460ff1660028111156122c6576122c66137c1565b145b1561231c578181815181106122df576122df613634565b60200260200101516040517f41a06d2800000000000000000000000000000000000000000000000000000000815260040161084091815260200190565b8215801561236e575060016003600084848151811061233d5761233d613634565b60209081029190910181015182528101919091526040016000205460ff16600281111561236c5761236c6137c1565b145b156123c25781818151811061238557612385613634565b60200260200101516040517fd60f4acc00000000000000000000000000000000000000000000000000000000815260040161084091815260200190565b8280156124115750336001600160a01b0316600460008484815181106123ea576123ea613634565b6020908102919091018101518252810191909152604001600020546001600160a01b031614155b8015612460575060006001600160a01b03166004600084848151811061243957612439613634565b6020908102919091018101518252810191909152604001600020546001600160a01b031614155b156124955781818151811061247757612477613634565b6020026020010151600460008484815181106119b3576119b3613634565b60010161207c565b60006124a882612908565b905060005b8151811015612542578181815181106124c8576124c8613634565b60200260200101516000031561253a576000811180156125235750816124ef6001836138dc565b815181106124ff576124ff613634565b602002602001015182828151811061251957612519613634565b6020026020010151145b1561253a5781818151811061210957612109613634565b6001016124ad565b5060005b8251811015610f3057600280600085848151811061256657612566613634565b60209081029190910181015182528101919091526040016000205460ff166002811115612595576125956137c1565b14806125e557506002600360008584815181106125b4576125b4613634565b60209081029190910181015182528101919091526040016000205460ff1660028111156125e3576125e36137c1565b145b156125fc578281815181106122df576122df613634565b60016002600085848151811061261457612614613634565b60209081029190910181015182528101919091526040016000205460ff166002811115612643576126436137c1565b1480612693575060016003600085848151811061266257612662613634565b60209081029190910181015182528101919091526040016000205460ff166002811115612691576126916137c1565b145b156126e7578281815181106126aa576126aa613634565b60200260200101516040517f79e1da4700000000000000000000000000000000000000000000000000000000815260040161084091815260200190565b600101612546565b6000816126fd576002612700565b60035b905060005b8351811015610eb55783818151811061272057612720613634565b602002602001015160001461278357600282600086848151811061274657612746613634565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083600281111561277d5761277d6137c1565b02179055505b600101612705565b60005b8151811015610ed6578181815181106127a9576127a9613634565b602002602001015160001461280d576001600260008484815181106127d0576127d0613634565b6020026020010151815260200190815260200160002060006101000a81548160ff02191690836002811115612807576128076137c1565b02179055505b60010161278e565b60005b8151811015610ed65781818151811061283357612833613634565b60200260200101516000146128975760016003600084848151811061285a5761285a613634565b6020026020010151815260200190815260200160002060006101000a81548160ff02191690836002811115612891576128916137c1565b02179055505b600101612818565b6128a8826129a7565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a28051156128ed57610f308282612a1e565b610ed6612a94565b6128fd611620565b610f30838383612acc565b60606000825167ffffffffffffffff81111561292657612926612dbe565b60405190808252806020026020018201604052801561294f578160200160208202803683370190505b50905060005b835181101561299d5783818151811061297057612970613634565b602002602001015182828151811061298a5761298a613634565b6020908102919091010152600101612955565b5061096d81612af6565b806001600160a01b03163b6000036129dd57604051634c9c8ce360e01b81526001600160a01b0382166004820152602401610840565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b031684604051612a3b91906138ef565b600060405180830381855af49150503d8060008114612a76576040519150601f19603f3d011682016040523d82523d6000602084013e612a7b565b606091505b5091509150612a8b858383612b0b565b95945050505050565b3415610f1b576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ad4611620565b612add81612b80565b6000612ae98482613952565b506001610eb58382613952565b6060612b0482612b91612b95565b5090919050565b606082612b2057612b1b82612bad565b61096d565b8151158015612b3757506001600160a01b0384163b155b15612b79576040517f9996b3150000000000000000000000000000000000000000000000000000000081526001600160a01b0385166004820152602401610840565b508061096d565b612b88611620565b6113e081612bef565b1190565b6060612b0460208401612ba785612bf7565b84612c0f565b805115612bbd5780518082602001fd5b6040517fd6bda27500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611394611620565b60008151602002612c088360200190565b0192915050565b60408383031015612c1f57505050565b6000612c29845190565b905083602081015b84811015612c6b57612c4e612c44825190565b848663ffffffff16565b15612c63576020919091018051825182528252905b602001612c31565b508451815186528152612c7f858285612c0f565b61117e816020018585612c0f565b6040518061028001604052806014906020820280368337509192915050565b60405180608001604052806004906020820280368337509192915050565b604051806101800160405280600c906020820280368337509192915050565b60405180606001604052806003906020820280368337509192915050565b6001600160a01b03811681146113e057600080fd5b600080600060608486031215612d3157600080fd5b8335612d3c81612d07565b92506020840135612d4c81612d07565b91506040840135612d5c81612d07565b809150509250925092565b60005b83811015612d82578181015183820152602001612d6a565b50506000910152565b6020815260008251806020840152612daa816040850160208701612d67565b601f01601f19169190910160400192915050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612dfd57612dfd612dbe565b604052919050565b600082601f830112612e1657600080fd5b813567ffffffffffffffff811115612e3057612e30612dbe565b8060051b612e4060208201612dd4565b91825260208185018101929081019086841115612e5c57600080fd5b6020860192505b83831015612e7e578235825260209283019290910190612e63565b9695505050505050565b60006101008284031215612e9b57600080fd5b50919050565b60008083601f840112612eb357600080fd5b50813567ffffffffffffffff811115612ecb57600080fd5b602083019150836020828501011115612ee357600080fd5b9250929050565b60008060008060006101608688031215612f0357600080fd5b853567ffffffffffffffff811115612f1a57600080fd5b612f2688828901612e05565b955050602086013567ffffffffffffffff811115612f4357600080fd5b612f4f88828901612e05565b945050612f5f8760408801612e88565b925061014086013567ffffffffffffffff811115612f7c57600080fd5b612f8888828901612ea1565b969995985093965092949392505050565b60008060006101408486031215612faf57600080fd5b833567ffffffffffffffff811115612fc657600080fd5b612fd286828701612e05565b935050602084013567ffffffffffffffff811115612fef57600080fd5b612ffb86828701612e05565b92505061300b8560408601612e88565b90509250925092565b803561301f81612d07565b919050565b60008060008060008060006101a0888a03121561304057600080fd5b873567ffffffffffffffff81111561305757600080fd5b6130638a828b01612e05565b975050602088013567ffffffffffffffff81111561308057600080fd5b61308c8a828b01612e05565b965050604088013567ffffffffffffffff8111156130a957600080fd5b6130b58a828b01612e05565b9550506130c58960608a01612e88565b93506130d46101608901613014565b925061018088013567ffffffffffffffff8111156130f157600080fd5b6130fd8a828b01612ea1565b989b979a50959850939692959293505050565b60006020828403121561312257600080fd5b813567ffffffffffffffff81111561313957600080fd5b610b1184828501612e05565b600081518084526020840193506020830160005b82811015613177578151865260209586019590910190600101613159565b5093949350505050565b60208152600061096d6020830184613145565b60008060008061016085870312156131ab57600080fd5b84359350602085013567ffffffffffffffff8111156131c957600080fd5b6131d587828801612e05565b935050604085013591506131ec8660608701612e88565b905092959194509250565b60008067ffffffffffffffff84111561321257613212612dbe565b50601f8301601f191660200161322781612dd4565b91505082815283838301111561323c57600080fd5b828260208301376000602084830101529392505050565b6000806040838503121561326657600080fd5b823561327181612d07565b9150602083013567ffffffffffffffff81111561328d57600080fd5b8301601f8101851361329e57600080fd5b6132ad858235602084016131f7565b9150509250929050565b6000806000604084860312156132cc57600080fd5b833567ffffffffffffffff8111156132e357600080fd5b6132ef86828701612e05565b935050602084013567ffffffffffffffff81111561330c57600080fd5b61331886828701612ea1565b9497909650939450505050565b60006020828403121561333757600080fd5b813561096d81612d07565b6000806000806060858703121561335857600080fd5b843567ffffffffffffffff81111561336f57600080fd5b61337b87828801612e05565b945050602085013561338c81612d07565b9250604085013567ffffffffffffffff8111156133a857600080fd5b6133b487828801612ea1565b95989497509550505050565b6000602082840312156133d257600080fd5b5035919050565b600080600080600061016086880312156133f257600080fd5b85359450602086013567ffffffffffffffff811115612f4357600080fd5b6000806000610140848603121561342657600080fd5b83359250602084013567ffffffffffffffff811115612fef57600080fd5b600082601f83011261345557600080fd5b61096d838335602085016131f7565b60008060008084860361018081121561347c57600080fd5b853567ffffffffffffffff81111561349357600080fd5b61349f88828901613444565b955050602086013567ffffffffffffffff8111156134bc57600080fd5b6134c888828901613444565b94505060408601356134d981612d07565b9250610120605f19820112156134ee57600080fd5b509295919450926060019150565b600080600080600080610180878903121561351657600080fd5b86359550602087013567ffffffffffffffff81111561353457600080fd5b61354089828a01612e05565b955050604087013593506135578860608901612e88565b925061016087013567ffffffffffffffff81111561357457600080fd5b61358089828a01612ea1565b979a9699509497509295939492505050565b600181811c908216806135a657607f821691505b602082108103612e9b57634e487b7160e01b600052602260045260246000fd5b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6060815260006136026060830187613145565b82810360208401526136148187613145565b905082810360408401526136298185876135c6565b979650505050505050565b634e487b7160e01b600052603260045260246000fd5b8060005b6002811015610eb5576040828537604093840193919091019060010161364e565b61038081016040868337613686604083018661364a565b60408460c084013761010082018360005b60148110156136b6578151835260209283019290910190600101613697565b50505095945050505050565b6000602082840312156136d457600080fd5b8151801515811461096d57600080fd5b610180810160408683376136fb604083018661364a565b60408460c084013761010082018360005b60048110156136b657815183526020928301929091019060010161370c565b634e487b7160e01b600052601160045260246000fd5b808201808211156111ec576111ec61372b565b6102808101604086833761376b604083018661364a565b60408460c084013761010082018360005b600c8110156136b657815183526020928301929091019060010161377c565b6040815260006137ae6040830186613145565b8281036020840152612e7e8185876135c6565b634e487b7160e01b600052602160045260246000fd5b610160810160408683376137ee604083018661364a565b60408460c084013761010082018360005b60038110156136b65781518352602092830192909101906001016137ff565b8581526080602082015260006138376080830187613145565b85604084015282810360608401526138508185876135c6565b98975050505050505050565b60006001820161386e5761386e61372b565b5060010190565b6080815260006138886080830188613145565b828103602084015261389a8188613145565b905082810360408401526138ae8187613145565b905082810360608401526138508185876135c6565b6000602082840312156138d557600080fd5b5051919050565b818103818111156111ec576111ec61372b565b60008251613901818460208701612d67565b9190910192915050565b601f821115610f3057806000526020600020601f840160051c810160208510156139325750805b601f840160051c820191505b8181101561117e576000815560010161393e565b815167ffffffffffffffff81111561396c5761396c612dbe565b6139808161397a8454613592565b8461390b565b6020601f8211600181146139b4576000831561399c5750848201515b600019600385901b1c1916600184901b17845561117e565b600084815260208120601f198516915b828110156139e457878501518255602094850194600190920191016139c4565b5084821015613a025786840151600019600387901b60f8161c191681555b50505050600190811b0190555056fea2646970667358221220a91365bff65936c822614daf95d9eb357522c18f3a91b2cd9c752cbe72664c0164736f6c634300081b0033",
|
|
1261
|
+
"linkReferences": {},
|
|
1262
|
+
"deployedLinkReferences": {}
|
|
1263
|
+
}
|