@palindromepay/sdk 1.9.4 → 1.9.6
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/LICENCE +1 -1
- package/README.md +5 -264
- package/dist/{PalindromeEscrowSDK.d.ts → PalindromePaySDK.d.ts} +7 -9
- package/dist/{PalindromeEscrowSDK.js → PalindromePaySDK.js} +17 -19
- package/dist/contract/PalindromePay.json +1180 -0
- package/dist/contract/{PalindromeEscrowWallet.json → PalindromePayWallet.json} +11 -11
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/dist/contract/PalindromeCryptoEscrow.json +0 -1180
|
@@ -0,0 +1,1180 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh3-artifact-1",
|
|
3
|
+
"contractName": "PalindromePay",
|
|
4
|
+
"sourceName": "contracts/PalindromePay.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "_feeReceiver",
|
|
11
|
+
"type": "address"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"stateMutability": "nonpayable",
|
|
15
|
+
"type": "constructor"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"inputs": [],
|
|
19
|
+
"name": "InvalidNonce",
|
|
20
|
+
"type": "error"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"inputs": [],
|
|
24
|
+
"name": "NotParticipant",
|
|
25
|
+
"type": "error"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"inputs": [],
|
|
29
|
+
"name": "OnlyArbiter",
|
|
30
|
+
"type": "error"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"inputs": [],
|
|
34
|
+
"name": "OnlyBuyer",
|
|
35
|
+
"type": "error"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"inputs": [],
|
|
39
|
+
"name": "OnlyBuyerOrSeller",
|
|
40
|
+
"type": "error"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"inputs": [],
|
|
44
|
+
"name": "OnlySeller",
|
|
45
|
+
"type": "error"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"inputs": [],
|
|
49
|
+
"name": "SignatureAlreadyUsed",
|
|
50
|
+
"type": "error"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"inputs": [],
|
|
54
|
+
"name": "SignatureLengthInvalid",
|
|
55
|
+
"type": "error"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"inputs": [],
|
|
59
|
+
"name": "SignatureSInvalid",
|
|
60
|
+
"type": "error"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"inputs": [],
|
|
64
|
+
"name": "SignatureVInvalid",
|
|
65
|
+
"type": "error"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"anonymous": false,
|
|
69
|
+
"inputs": [
|
|
70
|
+
{
|
|
71
|
+
"indexed": true,
|
|
72
|
+
"internalType": "uint256",
|
|
73
|
+
"name": "escrowId",
|
|
74
|
+
"type": "uint256"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"indexed": false,
|
|
78
|
+
"internalType": "bytes",
|
|
79
|
+
"name": "arbiterSig",
|
|
80
|
+
"type": "bytes"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"name": "ArbiterWalletSigAttached",
|
|
84
|
+
"type": "event"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"anonymous": false,
|
|
88
|
+
"inputs": [
|
|
89
|
+
{
|
|
90
|
+
"indexed": true,
|
|
91
|
+
"internalType": "uint256",
|
|
92
|
+
"name": "escrowId",
|
|
93
|
+
"type": "uint256"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"indexed": true,
|
|
97
|
+
"internalType": "address",
|
|
98
|
+
"name": "seller",
|
|
99
|
+
"type": "address"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"indexed": false,
|
|
103
|
+
"internalType": "uint256",
|
|
104
|
+
"name": "amount",
|
|
105
|
+
"type": "uint256"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"indexed": false,
|
|
109
|
+
"internalType": "uint256",
|
|
110
|
+
"name": "fee",
|
|
111
|
+
"type": "uint256"
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"name": "AutoReleased",
|
|
115
|
+
"type": "event"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"anonymous": false,
|
|
119
|
+
"inputs": [
|
|
120
|
+
{
|
|
121
|
+
"indexed": true,
|
|
122
|
+
"internalType": "uint256",
|
|
123
|
+
"name": "escrowId",
|
|
124
|
+
"type": "uint256"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"indexed": false,
|
|
128
|
+
"internalType": "bytes",
|
|
129
|
+
"name": "buyerSig",
|
|
130
|
+
"type": "bytes"
|
|
131
|
+
}
|
|
132
|
+
],
|
|
133
|
+
"name": "BuyerWalletSigAttached",
|
|
134
|
+
"type": "event"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"anonymous": false,
|
|
138
|
+
"inputs": [
|
|
139
|
+
{
|
|
140
|
+
"indexed": true,
|
|
141
|
+
"internalType": "uint256",
|
|
142
|
+
"name": "escrowId",
|
|
143
|
+
"type": "uint256"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"indexed": true,
|
|
147
|
+
"internalType": "address",
|
|
148
|
+
"name": "initiator",
|
|
149
|
+
"type": "address"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"indexed": false,
|
|
153
|
+
"internalType": "uint256",
|
|
154
|
+
"name": "amount",
|
|
155
|
+
"type": "uint256"
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
"name": "Canceled",
|
|
159
|
+
"type": "event"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"anonymous": false,
|
|
163
|
+
"inputs": [
|
|
164
|
+
{
|
|
165
|
+
"indexed": true,
|
|
166
|
+
"internalType": "uint256",
|
|
167
|
+
"name": "escrowId",
|
|
168
|
+
"type": "uint256"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"indexed": true,
|
|
172
|
+
"internalType": "address",
|
|
173
|
+
"name": "buyer",
|
|
174
|
+
"type": "address"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"indexed": true,
|
|
178
|
+
"internalType": "address",
|
|
179
|
+
"name": "seller",
|
|
180
|
+
"type": "address"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"indexed": false,
|
|
184
|
+
"internalType": "uint256",
|
|
185
|
+
"name": "amount",
|
|
186
|
+
"type": "uint256"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"indexed": false,
|
|
190
|
+
"internalType": "uint256",
|
|
191
|
+
"name": "fee",
|
|
192
|
+
"type": "uint256"
|
|
193
|
+
}
|
|
194
|
+
],
|
|
195
|
+
"name": "DeliveryConfirmed",
|
|
196
|
+
"type": "event"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"anonymous": false,
|
|
200
|
+
"inputs": [
|
|
201
|
+
{
|
|
202
|
+
"indexed": true,
|
|
203
|
+
"internalType": "uint256",
|
|
204
|
+
"name": "escrowId",
|
|
205
|
+
"type": "uint256"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"indexed": false,
|
|
209
|
+
"internalType": "uint256",
|
|
210
|
+
"name": "longDeadline",
|
|
211
|
+
"type": "uint256"
|
|
212
|
+
}
|
|
213
|
+
],
|
|
214
|
+
"name": "DisputeDeadlinesSet",
|
|
215
|
+
"type": "event"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"anonymous": false,
|
|
219
|
+
"inputs": [
|
|
220
|
+
{
|
|
221
|
+
"indexed": true,
|
|
222
|
+
"internalType": "uint256",
|
|
223
|
+
"name": "escrowId",
|
|
224
|
+
"type": "uint256"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"indexed": true,
|
|
228
|
+
"internalType": "address",
|
|
229
|
+
"name": "sender",
|
|
230
|
+
"type": "address"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"indexed": false,
|
|
234
|
+
"internalType": "enum PalindromePay.Role",
|
|
235
|
+
"name": "role",
|
|
236
|
+
"type": "uint8"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"indexed": false,
|
|
240
|
+
"internalType": "string",
|
|
241
|
+
"name": "ipfsHash",
|
|
242
|
+
"type": "string"
|
|
243
|
+
}
|
|
244
|
+
],
|
|
245
|
+
"name": "DisputeMessagePosted",
|
|
246
|
+
"type": "event"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"anonymous": false,
|
|
250
|
+
"inputs": [
|
|
251
|
+
{
|
|
252
|
+
"indexed": true,
|
|
253
|
+
"internalType": "uint256",
|
|
254
|
+
"name": "escrowId",
|
|
255
|
+
"type": "uint256"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"indexed": false,
|
|
259
|
+
"internalType": "enum PalindromePay.State",
|
|
260
|
+
"name": "resolution",
|
|
261
|
+
"type": "uint8"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"indexed": false,
|
|
265
|
+
"internalType": "address",
|
|
266
|
+
"name": "arbiter",
|
|
267
|
+
"type": "address"
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"indexed": false,
|
|
271
|
+
"internalType": "uint256",
|
|
272
|
+
"name": "amount",
|
|
273
|
+
"type": "uint256"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"indexed": false,
|
|
277
|
+
"internalType": "uint256",
|
|
278
|
+
"name": "fee",
|
|
279
|
+
"type": "uint256"
|
|
280
|
+
}
|
|
281
|
+
],
|
|
282
|
+
"name": "DisputeResolved",
|
|
283
|
+
"type": "event"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"anonymous": false,
|
|
287
|
+
"inputs": [
|
|
288
|
+
{
|
|
289
|
+
"indexed": true,
|
|
290
|
+
"internalType": "uint256",
|
|
291
|
+
"name": "escrowId",
|
|
292
|
+
"type": "uint256"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"indexed": true,
|
|
296
|
+
"internalType": "address",
|
|
297
|
+
"name": "initiator",
|
|
298
|
+
"type": "address"
|
|
299
|
+
}
|
|
300
|
+
],
|
|
301
|
+
"name": "DisputeStarted",
|
|
302
|
+
"type": "event"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"anonymous": false,
|
|
306
|
+
"inputs": [
|
|
307
|
+
{
|
|
308
|
+
"indexed": true,
|
|
309
|
+
"internalType": "uint256",
|
|
310
|
+
"name": "escrowId",
|
|
311
|
+
"type": "uint256"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
"indexed": true,
|
|
315
|
+
"internalType": "address",
|
|
316
|
+
"name": "buyer",
|
|
317
|
+
"type": "address"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"indexed": true,
|
|
321
|
+
"internalType": "address",
|
|
322
|
+
"name": "seller",
|
|
323
|
+
"type": "address"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"indexed": false,
|
|
327
|
+
"internalType": "address",
|
|
328
|
+
"name": "token",
|
|
329
|
+
"type": "address"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"indexed": false,
|
|
333
|
+
"internalType": "uint256",
|
|
334
|
+
"name": "amount",
|
|
335
|
+
"type": "uint256"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"indexed": false,
|
|
339
|
+
"internalType": "address",
|
|
340
|
+
"name": "arbiter",
|
|
341
|
+
"type": "address"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"indexed": false,
|
|
345
|
+
"internalType": "uint256",
|
|
346
|
+
"name": "maturityTime",
|
|
347
|
+
"type": "uint256"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"indexed": false,
|
|
351
|
+
"internalType": "string",
|
|
352
|
+
"name": "title",
|
|
353
|
+
"type": "string"
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"indexed": false,
|
|
357
|
+
"internalType": "string",
|
|
358
|
+
"name": "ipfsHash",
|
|
359
|
+
"type": "string"
|
|
360
|
+
}
|
|
361
|
+
],
|
|
362
|
+
"name": "EscrowCreated",
|
|
363
|
+
"type": "event"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"anonymous": false,
|
|
367
|
+
"inputs": [
|
|
368
|
+
{
|
|
369
|
+
"indexed": true,
|
|
370
|
+
"internalType": "uint256",
|
|
371
|
+
"name": "escrowId",
|
|
372
|
+
"type": "uint256"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"indexed": true,
|
|
376
|
+
"internalType": "address",
|
|
377
|
+
"name": "buyer",
|
|
378
|
+
"type": "address"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"indexed": false,
|
|
382
|
+
"internalType": "uint256",
|
|
383
|
+
"name": "amount",
|
|
384
|
+
"type": "uint256"
|
|
385
|
+
}
|
|
386
|
+
],
|
|
387
|
+
"name": "EscrowCreatedAndDeposited",
|
|
388
|
+
"type": "event"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"anonymous": false,
|
|
392
|
+
"inputs": [
|
|
393
|
+
{
|
|
394
|
+
"indexed": true,
|
|
395
|
+
"internalType": "uint256",
|
|
396
|
+
"name": "escrowId",
|
|
397
|
+
"type": "uint256"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"indexed": true,
|
|
401
|
+
"internalType": "address",
|
|
402
|
+
"name": "buyer",
|
|
403
|
+
"type": "address"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"indexed": false,
|
|
407
|
+
"internalType": "uint256",
|
|
408
|
+
"name": "amount",
|
|
409
|
+
"type": "uint256"
|
|
410
|
+
}
|
|
411
|
+
],
|
|
412
|
+
"name": "PaymentDeposited",
|
|
413
|
+
"type": "event"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"anonymous": false,
|
|
417
|
+
"inputs": [
|
|
418
|
+
{
|
|
419
|
+
"indexed": true,
|
|
420
|
+
"internalType": "uint256",
|
|
421
|
+
"name": "escrowId",
|
|
422
|
+
"type": "uint256"
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"indexed": false,
|
|
426
|
+
"internalType": "address",
|
|
427
|
+
"name": "recipient",
|
|
428
|
+
"type": "address"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"indexed": false,
|
|
432
|
+
"internalType": "uint256",
|
|
433
|
+
"name": "netAmount",
|
|
434
|
+
"type": "uint256"
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"indexed": false,
|
|
438
|
+
"internalType": "address",
|
|
439
|
+
"name": "feeRecipient",
|
|
440
|
+
"type": "address"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"indexed": false,
|
|
444
|
+
"internalType": "uint256",
|
|
445
|
+
"name": "feeAmount",
|
|
446
|
+
"type": "uint256"
|
|
447
|
+
}
|
|
448
|
+
],
|
|
449
|
+
"name": "PayoutProposed",
|
|
450
|
+
"type": "event"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"anonymous": false,
|
|
454
|
+
"inputs": [
|
|
455
|
+
{
|
|
456
|
+
"indexed": true,
|
|
457
|
+
"internalType": "uint256",
|
|
458
|
+
"name": "escrowId",
|
|
459
|
+
"type": "uint256"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"indexed": true,
|
|
463
|
+
"internalType": "address",
|
|
464
|
+
"name": "requester",
|
|
465
|
+
"type": "address"
|
|
466
|
+
}
|
|
467
|
+
],
|
|
468
|
+
"name": "RequestCancel",
|
|
469
|
+
"type": "event"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"anonymous": false,
|
|
473
|
+
"inputs": [
|
|
474
|
+
{
|
|
475
|
+
"indexed": true,
|
|
476
|
+
"internalType": "uint256",
|
|
477
|
+
"name": "escrowId",
|
|
478
|
+
"type": "uint256"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"indexed": true,
|
|
482
|
+
"internalType": "address",
|
|
483
|
+
"name": "seller",
|
|
484
|
+
"type": "address"
|
|
485
|
+
}
|
|
486
|
+
],
|
|
487
|
+
"name": "SellerAccepted",
|
|
488
|
+
"type": "event"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"anonymous": false,
|
|
492
|
+
"inputs": [
|
|
493
|
+
{
|
|
494
|
+
"indexed": true,
|
|
495
|
+
"internalType": "uint256",
|
|
496
|
+
"name": "escrowId",
|
|
497
|
+
"type": "uint256"
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"indexed": false,
|
|
501
|
+
"internalType": "bytes",
|
|
502
|
+
"name": "sellerSig",
|
|
503
|
+
"type": "bytes"
|
|
504
|
+
}
|
|
505
|
+
],
|
|
506
|
+
"name": "SellerWalletSigAttached",
|
|
507
|
+
"type": "event"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"anonymous": false,
|
|
511
|
+
"inputs": [
|
|
512
|
+
{
|
|
513
|
+
"indexed": true,
|
|
514
|
+
"internalType": "uint256",
|
|
515
|
+
"name": "escrowId",
|
|
516
|
+
"type": "uint256"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"indexed": false,
|
|
520
|
+
"internalType": "enum PalindromePay.State",
|
|
521
|
+
"name": "oldState",
|
|
522
|
+
"type": "uint8"
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"indexed": true,
|
|
526
|
+
"internalType": "enum PalindromePay.State",
|
|
527
|
+
"name": "newState",
|
|
528
|
+
"type": "uint8"
|
|
529
|
+
}
|
|
530
|
+
],
|
|
531
|
+
"name": "StateChanged",
|
|
532
|
+
"type": "event"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"anonymous": false,
|
|
536
|
+
"inputs": [
|
|
537
|
+
{
|
|
538
|
+
"indexed": true,
|
|
539
|
+
"internalType": "uint256",
|
|
540
|
+
"name": "escrowId",
|
|
541
|
+
"type": "uint256"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"indexed": true,
|
|
545
|
+
"internalType": "address",
|
|
546
|
+
"name": "wallet",
|
|
547
|
+
"type": "address"
|
|
548
|
+
}
|
|
549
|
+
],
|
|
550
|
+
"name": "WalletCreated",
|
|
551
|
+
"type": "event"
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"inputs": [],
|
|
555
|
+
"name": "DISPUTE_LONG_TIMEOUT",
|
|
556
|
+
"outputs": [
|
|
557
|
+
{
|
|
558
|
+
"internalType": "uint256",
|
|
559
|
+
"name": "",
|
|
560
|
+
"type": "uint256"
|
|
561
|
+
}
|
|
562
|
+
],
|
|
563
|
+
"stateMutability": "view",
|
|
564
|
+
"type": "function"
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"inputs": [],
|
|
568
|
+
"name": "DOMAIN_SEPARATOR",
|
|
569
|
+
"outputs": [
|
|
570
|
+
{
|
|
571
|
+
"internalType": "bytes32",
|
|
572
|
+
"name": "",
|
|
573
|
+
"type": "bytes32"
|
|
574
|
+
}
|
|
575
|
+
],
|
|
576
|
+
"stateMutability": "view",
|
|
577
|
+
"type": "function"
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"inputs": [],
|
|
581
|
+
"name": "TIMEOUT_BUFFER",
|
|
582
|
+
"outputs": [
|
|
583
|
+
{
|
|
584
|
+
"internalType": "uint256",
|
|
585
|
+
"name": "",
|
|
586
|
+
"type": "uint256"
|
|
587
|
+
}
|
|
588
|
+
],
|
|
589
|
+
"stateMutability": "view",
|
|
590
|
+
"type": "function"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"inputs": [],
|
|
594
|
+
"name": "WALLET_BYTECODE_HASH",
|
|
595
|
+
"outputs": [
|
|
596
|
+
{
|
|
597
|
+
"internalType": "bytes32",
|
|
598
|
+
"name": "",
|
|
599
|
+
"type": "bytes32"
|
|
600
|
+
}
|
|
601
|
+
],
|
|
602
|
+
"stateMutability": "view",
|
|
603
|
+
"type": "function"
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
"inputs": [
|
|
607
|
+
{
|
|
608
|
+
"internalType": "uint256",
|
|
609
|
+
"name": "escrowId",
|
|
610
|
+
"type": "uint256"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
"internalType": "bytes",
|
|
614
|
+
"name": "sellerWalletSig",
|
|
615
|
+
"type": "bytes"
|
|
616
|
+
}
|
|
617
|
+
],
|
|
618
|
+
"name": "acceptEscrow",
|
|
619
|
+
"outputs": [],
|
|
620
|
+
"stateMutability": "nonpayable",
|
|
621
|
+
"type": "function"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"inputs": [
|
|
625
|
+
{
|
|
626
|
+
"internalType": "uint256",
|
|
627
|
+
"name": "escrowId",
|
|
628
|
+
"type": "uint256"
|
|
629
|
+
}
|
|
630
|
+
],
|
|
631
|
+
"name": "autoRelease",
|
|
632
|
+
"outputs": [],
|
|
633
|
+
"stateMutability": "nonpayable",
|
|
634
|
+
"type": "function"
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"inputs": [
|
|
638
|
+
{
|
|
639
|
+
"internalType": "uint256",
|
|
640
|
+
"name": "escrowId",
|
|
641
|
+
"type": "uint256"
|
|
642
|
+
}
|
|
643
|
+
],
|
|
644
|
+
"name": "cancelByTimeout",
|
|
645
|
+
"outputs": [],
|
|
646
|
+
"stateMutability": "nonpayable",
|
|
647
|
+
"type": "function"
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"inputs": [
|
|
651
|
+
{
|
|
652
|
+
"internalType": "uint256",
|
|
653
|
+
"name": "escrowId",
|
|
654
|
+
"type": "uint256"
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"internalType": "bytes",
|
|
658
|
+
"name": "buyerWalletSig",
|
|
659
|
+
"type": "bytes"
|
|
660
|
+
}
|
|
661
|
+
],
|
|
662
|
+
"name": "confirmDelivery",
|
|
663
|
+
"outputs": [],
|
|
664
|
+
"stateMutability": "nonpayable",
|
|
665
|
+
"type": "function"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"inputs": [
|
|
669
|
+
{
|
|
670
|
+
"internalType": "uint256",
|
|
671
|
+
"name": "escrowId",
|
|
672
|
+
"type": "uint256"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"internalType": "bytes",
|
|
676
|
+
"name": "coordSignature",
|
|
677
|
+
"type": "bytes"
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"internalType": "uint256",
|
|
681
|
+
"name": "deadline",
|
|
682
|
+
"type": "uint256"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"internalType": "uint256",
|
|
686
|
+
"name": "nonce",
|
|
687
|
+
"type": "uint256"
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
"internalType": "bytes",
|
|
691
|
+
"name": "buyerWalletSig",
|
|
692
|
+
"type": "bytes"
|
|
693
|
+
}
|
|
694
|
+
],
|
|
695
|
+
"name": "confirmDeliverySigned",
|
|
696
|
+
"outputs": [],
|
|
697
|
+
"stateMutability": "nonpayable",
|
|
698
|
+
"type": "function"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"inputs": [
|
|
702
|
+
{
|
|
703
|
+
"internalType": "address",
|
|
704
|
+
"name": "token",
|
|
705
|
+
"type": "address"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"internalType": "address",
|
|
709
|
+
"name": "buyer",
|
|
710
|
+
"type": "address"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"internalType": "uint256",
|
|
714
|
+
"name": "amount",
|
|
715
|
+
"type": "uint256"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"internalType": "uint256",
|
|
719
|
+
"name": "maturityTimeDays",
|
|
720
|
+
"type": "uint256"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"internalType": "address",
|
|
724
|
+
"name": "arbiter",
|
|
725
|
+
"type": "address"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
"internalType": "string",
|
|
729
|
+
"name": "title",
|
|
730
|
+
"type": "string"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"internalType": "string",
|
|
734
|
+
"name": "ipfsHash",
|
|
735
|
+
"type": "string"
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"internalType": "bytes",
|
|
739
|
+
"name": "sellerWalletSig",
|
|
740
|
+
"type": "bytes"
|
|
741
|
+
}
|
|
742
|
+
],
|
|
743
|
+
"name": "createEscrow",
|
|
744
|
+
"outputs": [
|
|
745
|
+
{
|
|
746
|
+
"internalType": "uint256",
|
|
747
|
+
"name": "",
|
|
748
|
+
"type": "uint256"
|
|
749
|
+
}
|
|
750
|
+
],
|
|
751
|
+
"stateMutability": "nonpayable",
|
|
752
|
+
"type": "function"
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"inputs": [
|
|
756
|
+
{
|
|
757
|
+
"internalType": "address",
|
|
758
|
+
"name": "token",
|
|
759
|
+
"type": "address"
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"internalType": "address",
|
|
763
|
+
"name": "seller",
|
|
764
|
+
"type": "address"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"internalType": "uint256",
|
|
768
|
+
"name": "amount",
|
|
769
|
+
"type": "uint256"
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
"internalType": "uint256",
|
|
773
|
+
"name": "maturityTimeDays",
|
|
774
|
+
"type": "uint256"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"internalType": "address",
|
|
778
|
+
"name": "arbiter",
|
|
779
|
+
"type": "address"
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"internalType": "string",
|
|
783
|
+
"name": "title",
|
|
784
|
+
"type": "string"
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
"internalType": "string",
|
|
788
|
+
"name": "ipfsHash",
|
|
789
|
+
"type": "string"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"internalType": "bytes",
|
|
793
|
+
"name": "buyerWalletSig",
|
|
794
|
+
"type": "bytes"
|
|
795
|
+
}
|
|
796
|
+
],
|
|
797
|
+
"name": "createEscrowAndDeposit",
|
|
798
|
+
"outputs": [
|
|
799
|
+
{
|
|
800
|
+
"internalType": "uint256",
|
|
801
|
+
"name": "escrowId",
|
|
802
|
+
"type": "uint256"
|
|
803
|
+
}
|
|
804
|
+
],
|
|
805
|
+
"stateMutability": "nonpayable",
|
|
806
|
+
"type": "function"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"inputs": [
|
|
810
|
+
{
|
|
811
|
+
"internalType": "uint256",
|
|
812
|
+
"name": "escrowId",
|
|
813
|
+
"type": "uint256"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"internalType": "bytes",
|
|
817
|
+
"name": "buyerWalletSig",
|
|
818
|
+
"type": "bytes"
|
|
819
|
+
}
|
|
820
|
+
],
|
|
821
|
+
"name": "deposit",
|
|
822
|
+
"outputs": [],
|
|
823
|
+
"stateMutability": "nonpayable",
|
|
824
|
+
"type": "function"
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"inputs": [
|
|
828
|
+
{
|
|
829
|
+
"internalType": "uint256",
|
|
830
|
+
"name": "",
|
|
831
|
+
"type": "uint256"
|
|
832
|
+
}
|
|
833
|
+
],
|
|
834
|
+
"name": "disputeStatus",
|
|
835
|
+
"outputs": [
|
|
836
|
+
{
|
|
837
|
+
"internalType": "uint256",
|
|
838
|
+
"name": "",
|
|
839
|
+
"type": "uint256"
|
|
840
|
+
}
|
|
841
|
+
],
|
|
842
|
+
"stateMutability": "view",
|
|
843
|
+
"type": "function"
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
"inputs": [],
|
|
847
|
+
"name": "feeReceiver",
|
|
848
|
+
"outputs": [
|
|
849
|
+
{
|
|
850
|
+
"internalType": "address",
|
|
851
|
+
"name": "",
|
|
852
|
+
"type": "address"
|
|
853
|
+
}
|
|
854
|
+
],
|
|
855
|
+
"stateMutability": "view",
|
|
856
|
+
"type": "function"
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"inputs": [
|
|
860
|
+
{
|
|
861
|
+
"internalType": "uint256",
|
|
862
|
+
"name": "escrowId",
|
|
863
|
+
"type": "uint256"
|
|
864
|
+
}
|
|
865
|
+
],
|
|
866
|
+
"name": "getEscrow",
|
|
867
|
+
"outputs": [
|
|
868
|
+
{
|
|
869
|
+
"components": [
|
|
870
|
+
{
|
|
871
|
+
"internalType": "address",
|
|
872
|
+
"name": "token",
|
|
873
|
+
"type": "address"
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
"internalType": "address",
|
|
877
|
+
"name": "buyer",
|
|
878
|
+
"type": "address"
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"internalType": "address",
|
|
882
|
+
"name": "seller",
|
|
883
|
+
"type": "address"
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
"internalType": "address",
|
|
887
|
+
"name": "arbiter",
|
|
888
|
+
"type": "address"
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"internalType": "address",
|
|
892
|
+
"name": "wallet",
|
|
893
|
+
"type": "address"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"internalType": "uint256",
|
|
897
|
+
"name": "amount",
|
|
898
|
+
"type": "uint256"
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"internalType": "uint256",
|
|
902
|
+
"name": "depositTime",
|
|
903
|
+
"type": "uint256"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
"internalType": "uint256",
|
|
907
|
+
"name": "maturityTime",
|
|
908
|
+
"type": "uint256"
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
"internalType": "uint256",
|
|
912
|
+
"name": "disputeStartTime",
|
|
913
|
+
"type": "uint256"
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"internalType": "enum PalindromePay.State",
|
|
917
|
+
"name": "state",
|
|
918
|
+
"type": "uint8"
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
"internalType": "bool",
|
|
922
|
+
"name": "buyerCancelRequested",
|
|
923
|
+
"type": "bool"
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"internalType": "bool",
|
|
927
|
+
"name": "sellerCancelRequested",
|
|
928
|
+
"type": "bool"
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
"internalType": "uint8",
|
|
932
|
+
"name": "tokenDecimals",
|
|
933
|
+
"type": "uint8"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"internalType": "bytes",
|
|
937
|
+
"name": "sellerWalletSig",
|
|
938
|
+
"type": "bytes"
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"internalType": "bytes",
|
|
942
|
+
"name": "buyerWalletSig",
|
|
943
|
+
"type": "bytes"
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"internalType": "bytes",
|
|
947
|
+
"name": "arbiterWalletSig",
|
|
948
|
+
"type": "bytes"
|
|
949
|
+
}
|
|
950
|
+
],
|
|
951
|
+
"internalType": "struct PalindromePay.EscrowDeal",
|
|
952
|
+
"name": "",
|
|
953
|
+
"type": "tuple"
|
|
954
|
+
}
|
|
955
|
+
],
|
|
956
|
+
"stateMutability": "view",
|
|
957
|
+
"type": "function"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
"inputs": [
|
|
961
|
+
{
|
|
962
|
+
"internalType": "uint256",
|
|
963
|
+
"name": "escrowId",
|
|
964
|
+
"type": "uint256"
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
"internalType": "address",
|
|
968
|
+
"name": "signer",
|
|
969
|
+
"type": "address"
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"internalType": "uint256",
|
|
973
|
+
"name": "wordIndex",
|
|
974
|
+
"type": "uint256"
|
|
975
|
+
}
|
|
976
|
+
],
|
|
977
|
+
"name": "getNonceBitmap",
|
|
978
|
+
"outputs": [
|
|
979
|
+
{
|
|
980
|
+
"internalType": "uint256",
|
|
981
|
+
"name": "",
|
|
982
|
+
"type": "uint256"
|
|
983
|
+
}
|
|
984
|
+
],
|
|
985
|
+
"stateMutability": "view",
|
|
986
|
+
"type": "function"
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"inputs": [
|
|
990
|
+
{
|
|
991
|
+
"internalType": "uint256",
|
|
992
|
+
"name": "escrowId",
|
|
993
|
+
"type": "uint256"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"internalType": "address",
|
|
997
|
+
"name": "participant",
|
|
998
|
+
"type": "address"
|
|
999
|
+
}
|
|
1000
|
+
],
|
|
1001
|
+
"name": "getWalletAuthorizationDigest",
|
|
1002
|
+
"outputs": [
|
|
1003
|
+
{
|
|
1004
|
+
"internalType": "bytes32",
|
|
1005
|
+
"name": "digest",
|
|
1006
|
+
"type": "bytes32"
|
|
1007
|
+
}
|
|
1008
|
+
],
|
|
1009
|
+
"stateMutability": "view",
|
|
1010
|
+
"type": "function"
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"inputs": [],
|
|
1014
|
+
"name": "nextEscrowId",
|
|
1015
|
+
"outputs": [
|
|
1016
|
+
{
|
|
1017
|
+
"internalType": "uint256",
|
|
1018
|
+
"name": "",
|
|
1019
|
+
"type": "uint256"
|
|
1020
|
+
}
|
|
1021
|
+
],
|
|
1022
|
+
"stateMutability": "view",
|
|
1023
|
+
"type": "function"
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
"inputs": [
|
|
1027
|
+
{
|
|
1028
|
+
"internalType": "uint256",
|
|
1029
|
+
"name": "escrowId",
|
|
1030
|
+
"type": "uint256"
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
"internalType": "bytes",
|
|
1034
|
+
"name": "walletSig",
|
|
1035
|
+
"type": "bytes"
|
|
1036
|
+
}
|
|
1037
|
+
],
|
|
1038
|
+
"name": "requestCancel",
|
|
1039
|
+
"outputs": [],
|
|
1040
|
+
"stateMutability": "nonpayable",
|
|
1041
|
+
"type": "function"
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"inputs": [
|
|
1045
|
+
{
|
|
1046
|
+
"internalType": "uint256",
|
|
1047
|
+
"name": "escrowId",
|
|
1048
|
+
"type": "uint256"
|
|
1049
|
+
}
|
|
1050
|
+
],
|
|
1051
|
+
"name": "startDispute",
|
|
1052
|
+
"outputs": [],
|
|
1053
|
+
"stateMutability": "nonpayable",
|
|
1054
|
+
"type": "function"
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"inputs": [
|
|
1058
|
+
{
|
|
1059
|
+
"internalType": "uint256",
|
|
1060
|
+
"name": "escrowId",
|
|
1061
|
+
"type": "uint256"
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"internalType": "bytes",
|
|
1065
|
+
"name": "signature",
|
|
1066
|
+
"type": "bytes"
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
"internalType": "uint256",
|
|
1070
|
+
"name": "deadline",
|
|
1071
|
+
"type": "uint256"
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"internalType": "uint256",
|
|
1075
|
+
"name": "nonce",
|
|
1076
|
+
"type": "uint256"
|
|
1077
|
+
}
|
|
1078
|
+
],
|
|
1079
|
+
"name": "startDisputeSigned",
|
|
1080
|
+
"outputs": [],
|
|
1081
|
+
"stateMutability": "nonpayable",
|
|
1082
|
+
"type": "function"
|
|
1083
|
+
},
|
|
1084
|
+
{
|
|
1085
|
+
"inputs": [
|
|
1086
|
+
{
|
|
1087
|
+
"internalType": "uint256",
|
|
1088
|
+
"name": "escrowId",
|
|
1089
|
+
"type": "uint256"
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
"internalType": "enum PalindromePay.State",
|
|
1093
|
+
"name": "resolution",
|
|
1094
|
+
"type": "uint8"
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
"internalType": "string",
|
|
1098
|
+
"name": "ipfsHash",
|
|
1099
|
+
"type": "string"
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"internalType": "bytes",
|
|
1103
|
+
"name": "arbiterWalletSig",
|
|
1104
|
+
"type": "bytes"
|
|
1105
|
+
}
|
|
1106
|
+
],
|
|
1107
|
+
"name": "submitArbiterDecision",
|
|
1108
|
+
"outputs": [],
|
|
1109
|
+
"stateMutability": "nonpayable",
|
|
1110
|
+
"type": "function"
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"inputs": [
|
|
1114
|
+
{
|
|
1115
|
+
"internalType": "uint256",
|
|
1116
|
+
"name": "escrowId",
|
|
1117
|
+
"type": "uint256"
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"internalType": "enum PalindromePay.Role",
|
|
1121
|
+
"name": "role",
|
|
1122
|
+
"type": "uint8"
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
"internalType": "string",
|
|
1126
|
+
"name": "ipfsHash",
|
|
1127
|
+
"type": "string"
|
|
1128
|
+
}
|
|
1129
|
+
],
|
|
1130
|
+
"name": "submitDisputeMessage",
|
|
1131
|
+
"outputs": [],
|
|
1132
|
+
"stateMutability": "nonpayable",
|
|
1133
|
+
"type": "function"
|
|
1134
|
+
}
|
|
1135
|
+
],
|
|
1136
|
+
"bytecode": "0x61010080604052346101af5760208161751d803803809161002082856101b3565b8339810103126101af57516001600160a01b0381168082036101af5760015f551561017d576080524660e05260405161005a6040826101b3565b600d81526c50616c696e64726f6d6550617960981b602090910152604080517fafad4e164a3495a77e9cd6cc3b76ca3aa2b79f9ddc70f34392e4b3d17237f7d7916100a590826101b3565b600181526020810190603160f81b82525190206040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a0815261010960c0826101b3565b51902060c05261163360405161012260208301826101b3565b8181526020810191615eea833951902060a052604051615cff90816101eb823960805181818161097a0152818161275b015281816142e5015261437a015260a0518161197c015260c05181613bec015260e05181613bc60152f35b60405162461bcd60e51b815260206004820152600a602482015269466565546f207a65726f60b01b6044820152606490fd5b5f80fd5b601f909101601f19168101906001600160401b038211908210176101d657604052565b634e487b7160e01b5f52604160045260245ffdfe60a06040526004361015610011575f80fd5b5f3560e01c806306075a1514612f2c57806310f169e814612f025780631452483b14612ee55780632d34515b14612a6c5780632d471a50146123d85780632f9bfda214611f47578063311a2e5514611b6d5780633644e51514611b4b5780634186928c14611b2f578063459b860e1461199f578063589ac8e3146119655780635d303519146116d35780636232ef6014611453578063708f65ca146112095780637d19e59614610f3d5780638350415614610a1657806389cb29dd146109f95780639dede53c146109a9578063b3f0067414610965578063c0cfa7e5146107cf578063c37775a314610545578063d4ffbee4146103625763da183b0214610116575f80fd5b3461035e57602036600319011261035e57600435610132613af3565b61013f600154821061331d565b5f81815260026020526040902060010154610164906001600160a01b03161515613361565b5f818152600260205260409020600101546001600160a01b0316330361034f57805f52600260205260405f20600981015460ff8116600681101561033b5760016101ae9114613837565b6101bc60088301541561387b565b60ff8160081c16156103015760101c60ff166102c7576101e1600682015415156138b8565b60038101546001600160a01b03161561027657806102066007600593015442116138f1565b61021e6041610218600b84015461374d565b14613629565b61022783613e43565b600181015461023f906001600160a01b031684614339565b50500154906040519182527feb8b5b87fbea5b732b8f4fd82b65d9afef713c799d98da83090f22c45577998d60203393a360015f55005b60405162461bcd60e51b815260206004820152602360248201527f4172626974657220726571756972656420666f722074696d656f75742063616e60448201526218d95b60ea1b6064820152608490fd5b60405162461bcd60e51b81526020600482015260126024820152714d757475616c2063616e63656c20646f6e6560701b6044820152606490fd5b60405162461bcd60e51b8152602060048201526012602482015271135d5cdd081c995c5d595cdd08199a5c9cdd60721b6044820152606490fd5b634e487b7160e01b5f52602160045260245ffd5b6386efbb5560e01b5f5260045ffd5b5f80fd5b3461035e57604036600319011261035e5760043561037e6131ef565b61038b600154831061331d565b5f828152600260205260409020600101546103b0906001600160a01b03161515613361565b5f828152600260205260409020600181015490916001600160a01b0390811691168114801561052f575b8015610519575b156104e0576104556104d660209461046360409560138888516104048a82613443565b828152017214185b1a5b991c9bdb5954185e55d85b1b195d606a1b81522061042a613a88565b89815191012091600460018060a01b03910154169283916104558a519384928d840196469188613aa7565b03601f198101835282613443565b51902094865191888301937f783cf3fdc83d5b0c9e236f4e0bfa8f022a2090d21a4c53f5f99df0d607781fa185528884015260608301526080820152608081526104ae60a082613443565b51902084519283918783019586909160429261190160f01b8352600283015260228201520190565b5190209051908152f35b60405162461bcd60e51b8152602060048201526011602482015270139bdd0818481c185c9d1a58da5c185b9d607a1b6044820152606490fd5b5060038201546001600160a01b031681146103e1565b5060028201546001600160a01b031681146103da565b3461035e57610553366132bd565b9061055c613af3565b610569600154841061331d565b5f8381526002602052604090206001015461058e906001600160a01b03161515613361565b5f838152600260205260409020600101546001600160a01b0316330361034f57825f52600260205260405f209160ff600984015416600681101561033b5760016105d89114613837565b6105f060416105ea600a86015461374d565b146137f6565b6105fc60418214613629565b6106068183613b47565b600b8301916001600160401b0382116107bb578491610625845461374d565b601f8111610769575b505f93601f82116001146106f757815f516020615c4a5f395f51905f5294955f916106ec575b508260011b905f198460031b1c19161790555b61067e604051928392602084526020840191613785565b0390a261068a82613e12565b60028101546001600160a01b0316917f8bcf349ab354486b68c142cea7235e4f7f31f6a425466f569c8ac1d5bc4d000760406106c6858461425a565b9050600560018060a01b036001870154169501549082519182526020820152a460015f55005b905083013588610654565b601f198216815f5260205f20905f5b81811061074e575095835f516020615c4a5f395f51905f52969710610735575b5050600182811b019055610667565b8401355f19600385901b60f8161c191690558780610726565b8786013583556020978801978a975060019093019201610706565b90919250835f5260205f20601f830160051c810191602084106107b1575b90601f88959493920160051c01905b8181106107a3575061062e565b5f8155879450600101610796565b9091508190610787565b634e487b7160e01b5f52604160045260245ffd5b3461035e57602036600319011261035e576004356107eb613af3565b6107f8600154821061331d565b5f8181526002602052604090206001015461081d906001600160a01b03161515613361565b805f52600260205260405f2060018060a01b03600182015416331415908161094d575b5061093e575f81815260026020526040902060038101546001600160a01b03161561090a5760ff600982015416600681101561033b5760016108829114613837565b61088b82613da1565b60084291015562278d0042018042116108f6577f1a9502b6f661da8b0573a0617c121cabe2e93ea05d5239cfab6e9d1734b928c960208392604051908152a233907fd658effe7cf013e5a508b3f1a373b92566494d8b6a7c2970fc964932de1c4dab5f80a360015f55005b634e487b7160e01b5f52601160045260245ffd5b60405162461bcd60e51b815260206004820152600c60248201526b2d32b9379030b93134ba32b960a11b6044820152606490fd5b631cfe2f0560e11b5f5260045ffd5b600201546001600160a01b0316331415905082610840565b3461035e575f36600319011261035e576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b3461035e57606036600319011261035e576109c26131ef565b6004355f52600560205260405f209060018060a01b03165f5260205260405f206044355f52602052602060405f2054604051908152f35b3461035e575f36600319011261035e576020600154604051908152f35b3461035e57610a24366132bd565b90610a2d613af3565b610a3a600154841061331d565b5f83815260026020526040902060010154610a5f906001600160a01b03161515613361565b825f52600260205260405f2060018060a01b036001820154163314159081610f25575b5061093e57825f52600260205260405f2090600982019081549360ff8516600681101561033b576001610ab591146139ae565b610ac4600685015415156138b8565b610ad260088501541561387b565b60418103610eeb57610ae48183613b47565b600184019460018060a01b0386541633145f14610d3e575060ff835460081c16610cf957600b8401916001600160401b0382116107bb578691610b27845461374d565b601f8111610ca7575b505f93601f8211600114610c3557815f516020615c4a5f395f51905f5294955f91610c2a575b508260011b905f198460031b1c19161790555b610b80604051928392602084526020840191613785565b0390a2805461ff0019166101001781555b5460ff8160081c169081610c1c575b5015610bef5761023f600592610bbe6041610218600b86015461374d565b610bd060416105ea600a86015461374d565b610bd985613e43565b546001600160a01b031684614339565b60015f55005b505033907f88a867d5d9b489598a3f5e5c8d5c1da163ed116737b70444bac744920904a5735f80a3610be9565b60ff915060101c1684610ba0565b90508301358a610b56565b601f198216815f5260205f20905f5b818110610c8c575095835f516020615c4a5f395f51905f52969710610c73575b5050600182811b019055610b69565b8401355f19600385901b60f8161c191690558980610c64565b8786013583556020978801978c975060019093019201610c44565b90919250835f5260205f20601f830160051c81019160208410610cef575b90601f8a959493920160051c01905b818110610ce15750610b30565b5f8155899450600101610cd4565b9091508190610cc5565b60405162461bcd60e51b815260206004820152601760248201527f427579657220616c7265616479207265717565737465640000000000000000006044820152606490fd5b60101c60ff16610ea657600a8401916001600160401b0382116107bb578691610d67845461374d565b601f8111610e54575b505f93601f8211600114610de257815f516020615c2a5f395f51905f5294955f91610dd7575b508260011b905f198460031b1c19161790555b610dc0604051928392602084526020840191613785565b0390a2805462ff0000191662010000178155610b91565b90508301358a610d96565b601f198216815f5260205f20905f5b818110610e39575095835f516020615c2a5f395f51905f52969710610e20575b5050600182811b019055610da9565b8401355f19600385901b60f8161c191690558980610e11565b8786013583556020978801978c975060019093019201610df1565b90919250835f5260205f20601f830160051c81019160208410610e9c575b90601f8a959493920160051c01905b818110610e8e5750610d70565b5f8155899450600101610e81565b9091508190610e72565b60405162461bcd60e51b815260206004820152601860248201527f53656c6c657220616c72656164792072657175657374656400000000000000006044820152606490fd5b60405162461bcd60e51b81526020600482015260126024820152714d697373696e672077616c6c65742073696760701b6044820152606490fd5b600201546001600160a01b0316331415905084610a82565b3461035e57602036600319011261035e5760043560606101e0604051610f6281613427565b5f81525f60208201525f60408201525f838201525f60808201525f60a08201525f60c08201525f60e08201525f6101008201525f6101208201525f6101408201525f6101608201525f610180820152826101a0820152826101c08201520152610fce600154821061331d565b5f81815260026020526040902060010154610ff3906001600160a01b03161515613361565b5f52600260205260405f2060405161100a81613427565b81546001600160a01b0390811682526001830154811660208301526002830154811660408301526003830154811660608301526004830154166080820152600582015460a082015260068083015460c0830152600783015460e08301526008830154610100830152600983015460ff81169182101561033b576112059360ff600c926110e694610120870152818160081c161515610140870152818160101c16151561016087015260181c166101808501526110c8600a82016139e8565b6101a08501526110da600b82016139e8565b6101c0850152016139e8565b6101e08201526040519182916020835260018060a01b03815116602084015260018060a01b03602082015116604084015260018060a01b03604082015116606084015260018060a01b03606082015116608084015260018060a01b0360808201511660a084015260a081015160c084015260c081015160e084015260e081015161010084015261010081015161012084015261118c6101208201516101408501906132ec565b6101408101511515610160840152610160810151151561018084015260ff610180820151166101a08401526101e06111f06111da6101a08401516102006101c08801526102208701906132f9565b6101c0840151868203601f1901848801526132f9565b910151838203601f19016102008501526132f9565b0390f35b3461035e57611217366132bd565b9190611221613af3565b61122e600154831061331d565b5f82815260026020526040902060010154611253906001600160a01b03161515613361565b815f52600260205260405f2061127660018060a01b036002830154163314613934565b60ff60098201541690600682101561033b576112966001600a93146139ae565b019283546112a38161374d565b61141b576112b3604183146137f6565b6112bd8284613b47565b6001600160401b0382116107bb576112d49061374d565b601f81116113d6575b505f93601f821160011461136757815f516020615c2a5f395f51905f5294955f9161135c575b508260011b905f198460031b1c19161790555b61135360405192839233877f5b09e2f1aabe74a8fc19114f298046a9fa1214365ec1d728e534a291aff17a4f5f80a3602084526020840191613785565b0390a260015f55005b905083013586611303565b601f19821694815f5260205f20905f5b8781106113be5750835f516020615c2a5f395f51905f529697106113a5575b5050600182811b019055611316565b8401355f19600385901b60f8161c191690558580611396565b90916020600181928589013581550193019101611377565b845f5260205f20601f830160051c81019160208410611411575b601f0160051c01905b81811061140657506112dd565b5f81556001016113f9565b90915081906113f0565b60405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481858d8d95c1d195960821b6044820152606490fd5b3461035e57606036600319011261035e57600435602435906004821091821561035e576044356001600160401b03811161035e576114959036906004016131c2565b919061149f613af3565b6114ac600154851061331d565b5f848152600260205260409020600101546114d1906001600160a01b03161515613361565b835f52600260205260405f2060018060a01b0360018201541633141590816116bb575b816116a3575b5061169457835f52600260205260405f2060ff600982015416600681101561033b576002036116605761152d8483613ed0565b845f52600660205260405f205490600184145f146115f757600101546001600160a01b031633036115c5578061156760018093161561396e565b175b845f52600660205260405f2055604051941561033b577f4e71d2a3ce09c95d708a8bc888cb8838c8419bea1f25f6d07f2c601b173f720e926115b8928652604060208701526040860191613785565b928033940390a360015f55005b60405162461bcd60e51b815260206004820152600a60248201526927b7363c90313abcb2b960b11b6044820152606490fd5b906002840361162c5760029182015461161a906001600160a01b03163314613934565b6116268282161561396e565b17611569565b60405162461bcd60e51b815260206004820152600c60248201526b496e76616c696420726f6c6560a01b6044820152606490fd5b60405162461bcd60e51b815260206004820152600c60248201526b139bdd08191a5cdc1d5d195960a21b6044820152606490fd5b63721c7c6760e11b5f5260045ffd5b600301546001600160a01b03163314159050866114fa565b60028101546001600160a01b031633141591506114f4565b3461035e576116e1366132bd565b906116ea613af3565b6116f7600154841061331d565b5f8381526002602052604090206001015461171c906001600160a01b03161515613361565b5f838152600260205260409020600101546001600160a01b0316330361034f57825f52600260205260405f209160ff600984015416600681101561033b576119295761176a60418214613629565b6117748183613b47565b600b8301916001600160401b0382116107bb578491611793845461374d565b601f81116118d7575b505f93601f821160011461186557815f516020615c4a5f395f51905f5294955f9161185a575b508260011b905f198460031b1c19161790555b6117ec604051928392602084526020840191613785565b0390a280546004820154600583018054909392611817926001600160a01b0390811691339116614102565b60064291015561182682613de1565b54906040519182527f71284872bb4c088a81295dff2513729babbccfeda38a8d824bb1a73bcaab494e60203393a360015f55005b9050830135886117c2565b601f198216815f5260205f20905f5b8181106118bc575095835f516020615c4a5f395f51905f529697106118a3575b5050600182811b0190556117d5565b8401355f19600385901b60f8161c191690558780611894565b8786013583556020978801978a975060019093019201611874565b90919250835f5260205f20601f830160051c8101916020841061191f575b90601f88959493920160051c01905b818110611911575061179c565b5f8155879450600101611904565b90915081906118f5565b60405162461bcd60e51b8152602060048201526014602482015273139bdd08185dd85a5d1a5b99c81c185e5b595b9d60621b6044820152606490fd5b3461035e575f36600319011261035e5760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b3461035e57602036600319011261035e576004356119bb613af3565b6119c8600154821061331d565b5f818152600260205260409020600101546119ed906001600160a01b03161515613361565b5f81815260026020819052604090912001546001600160a01b03163303611b2057805f52600260205260405f2090600982015460ff811690600682101561033b57611a3c600160ff9314613837565b611a4a60088501541561387b565b60081c16611ae257611a61600683015415156138b8565b611a70600783015442116138f1565b611a8260416105ea600a85015461374d565b611a8b81613e12565b60028201546001600160a01b0316917f489d0b4f43659843daba0a17983382a3e77f5399083ac5405143fcf6806f8ca0906040906005611acb868661425a565b92905001549082519182526020820152a360015f55005b60405162461bcd60e51b8152602060048201526016602482015275109d5e595c881c995c5d595cdd19590818d85b98d95b60521b6044820152606490fd5b6342e8fb9360e11b5f5260045ffd5b3461035e575f36600319011261035e576020604051610e108152f35b3461035e575f36600319011261035e576020611b65613bc3565b604051908152f35b3461035e57611b7b36613205565b98611b92858794979c939a9c999899969596613e74565b611b9c8686613ed0565b611bb06001600160a01b0383161515613536565b6001600160a01b0316988915611f1557600198611bcf338c141561356f565b611bda8c15156135af565b611be7610e4389106135e9565b611bf3604183146137f6565b611bfd8282613b47565b611c0683613f20565b97611c1b8d611c148b614047565b1115613669565b8a8060a01b038a1698338a141580611f0b575b611c37906136a8565b8b54608052611c476080516136e6565b8c55611c54608051614061565b996080515f5260026020528d60405f209d8e818060a01b0389166001600160601b0360a01b82541617815501906001600160601b0360a01b82541617905560028d0160018060a01b0333166001600160601b0360a01b82541617905560038d01906001600160601b0360a01b82541617905560048c0160018060a01b038b166001600160601b0360a01b8254161790558d60058d0155611cf760018310156136f4565b620151808202918083046201518014901517156108f657611d1b611d41924261339f565b60078d015560098c01805463ff0000ff191660189290921b63ff00000016919091179055565b600a8a016001600160401b0383116107bb57611d5d815461374d565b601f8111611ec6575b505f601f8411600114611e3657611dd35f516020615c6a5f395f51905f529b9a999795938593611e1c9a98965f516020615c2a5f395f51905f52945f91611e2b575b508560011b905f198760031b1c19161790555b60405191829160208352608051956020840191613785565b0390a260405197889760018060a01b03166080517f470292d5e9c87e6d5a100a14c56a434c9f25e9e2be1d5efa70c3b5f9aeda505f5f80a3339c60076080519c015492896137a5565b0390a460206040516080518152f35b90508201355f611da8565b815f5260205f20905f5b601f1986168110611eae57505f516020615c6a5f395f51905f529b9a9997959385935f516020615c2a5f395f51905f5293611dd393611e1c9c9a98601f19811610611e95575b5050600185811b019055611dbb565b8301355f19600388901b60f8161c191690555f80611e86565b90916020600181928588013581550193019101611e40565b815f5260205f20601f850160051c81019160208610611f01575b601f0160051c01905b818110611ef65750611d66565b5f8155600101611ee9565b9091508190611ee0565b50898d1415611c2e565b60405162461bcd60e51b815260206004820152600a6024820152694275796572207a65726f60b01b6044820152606490fd5b3461035e5760a036600319011261035e576004356024356001600160401b03811161035e57611f7a9036906004016131c2565b9091604435916064356084356001600160401b03811161035e57611fa29036906004016131c2565b91611fab613af3565b611fb8600154861061331d565b5f85815260026020526040902060010154611fdd906001600160a01b03161515613361565b428611806123c3575b611fef906133ac565b845f52600260205260405f209060ff600983015416600681101561033b57600161201991146133eb565b6041850361238a5761202b8589613b47565b61203760418514613629565b6120418484613b47565b600a82015461204f9061374d565b60411461205b906137f6565b6001820197600160a01b6001900389541695600284019688600160a01b60019003895416600160a01b600190036003880154169b600160a01b600190038854169c600589019d8e549060068b0154926040519560208701977f2175432d6c7eab3a2ef5708fc419540c0f4d274cabd17912c92683ed8466b5e989526040880152886060880152608087015260a086015260c085015260e084015261010083015261012082015285610140820152610140815261211961016082613443565b519020612124613bc3565b60405161190160f01b60208201908152602282019290925260428082019390935291825290612154606282613443565b51902061216236848661347f565b61216b916143a8565b612174906143d9565b6001600160a01b03166121888115156134b5565b14612192906134f4565b61219c9188613c68565b87546121b291906001600160a01b031687613d28565b600b01916001600160401b0381116107bb57826121d086945461374d565b601f8111612336575b505f601f831160011461229b5792825f516020615c4a5f395f51905f5292604096947f8bcf349ab354486b68c142cea7235e4f7f31f6a425466f569c8ac1d5bc4d000798965f91612290575b508260011b905f198460031b1c19161790555b61224e8651928392602084526020840191613785565b0390a261225a84613e12565b546001600160a01b03169461226f868561425a565b91905060018060a01b0390541694549082519182526020820152a460015f55005b90508301358c612225565b601f19831690825f5260205f20915f5b81811061231b5750927f8bcf349ab354486b68c142cea7235e4f7f31f6a425466f569c8ac1d5bc4d00079795928592604098965f516020615c4a5f395f51905f529610612302575b5050600182811b019055612238565b8401355f19600385901b60f8161c191690558b806122f3565b828701358455899750600190930192602092830192016122ab565b9080929394505f5260205f20601f840160051c81019160208510612380575b90601f8896959493920160051c01905b81811061237257506121d9565b5f8155879550600101612365565b9091508190612355565b60405162461bcd60e51b81526020600482015260116024820152704d697373696e6720636f6f72642073696760781b6044820152606490fd5b506201518042018042116108f6578610611fe6565b3461035e57608036600319011261035e576004356024356006811090811561035e576044356001600160401b03811161035e576124199036906004016131c2565b9190926064356001600160401b03811161035e5761243b9036906004016131c2565b939091612446613af3565b612453600154881061331d565b5f87815260026020526040902060010154612478906001600160a01b03161515613361565b5f878152600260205260409020600301546001600160a01b03163303612a5d57865f52600260205260405f209560ff600988015416600681101561033b5760026124c291146133eb565b5f936003861496878015612a50575b15612a1657895f52600660205260405f20546001811615159081612a09575b5060088a015462278d008101908181116108f65762279b10018091116108f65781156129ff575b50156129ba57895f52600460205260ff60405f20541661298357895f52600460205260405f20600160ff19825416179055604181036129485761255a8183613b47565b600c8901916001600160401b0382116107bb578a91612579845461374d565b601f81116128f6575b505f93601f821160011461286657817f514a487b739611aef8577751109f3612aef90abf478bc73849af4cdd1fa2135a94955f9161285b575b508260011b905f198460031b1c19161790555b6125e5604051928392602084526020840191613785565b0390a2875f526002602052600960405f2001916126078660ff85541694613735565b1561033b5761266c7f4e71d2a3ce09c95d708a8bc888cb8838c8419bea1f25f6d07f2c601b173f720e91868a5f516020615caa5f395f51905f526020829761265260405180926132ec565ba36040519460038652604060208701526040860191613785565b928033940390a361033b5781156128475760028301546001600160a01b0316915b845f5260026020528460405f20915f14612804575060ff6009600583015492015460181c16600281115f146127fa576001190160ff81116108f6576126d190614036565b60648202828104606414831517156108f6576127109004908082106127f25750925b818410156127ad578382039182116108f6577ffc4c84ff0bf9d937dea068e6c13c3a16c307d76a1c5b5173c40f03f68f421e0094865f516020615c8a5f395f51905f5260806005948198965b6040519160018060a01b03168252602082015260018060a01b037f0000000000000000000000000000000000000000000000000000000000000000166040820152866060820152a2015461279660405180946132ec565b33602084015260408301526060820152a260015f55005b60405162461bcd60e51b815260206004820152601860248201527f416d6f756e7420746f6f20736d616c6c20666f722066656500000000000000006044820152606490fd5b9050926126f3565b506126d15f614036565b7ffc4c84ff0bf9d937dea068e6c13c3a16c307d76a1c5b5173c40f03f68f421e00946005915f516020615c8a5f395f51905f526080848198960154955f9661273f565b60018301546001600160a01b03169161268d565b90508301358e6125bb565b601f198216815f5260205f20905f5b8181106128d0575095837f514a487b739611aef8577751109f3612aef90abf478bc73849af4cdd1fa2135a9697106128b7575b5050600182811b0190556125ce565b8401355f19600385901b60f8161c191690558d806128a8565b92949693955090602060018192868a013581550194019201908e95939196949296612875565b90919250835f5260205f20601f830160051c8101916020841061293e575b90601f8e959493920160051c01905b8181106129305750612582565b5f81558d9450600101612923565b9091508190612914565b60405162461bcd60e51b81526020600482015260136024820152724d697373696e6720617262697465722073696760681b6044820152606490fd5b60405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e48191958da591959608a1b6044820152606490fd5b60405162461bcd60e51b815260206004820152601860248201527f4e6565642065766964656e6365206f722074696d656f757400000000000000006044820152606490fd5b905042118b612517565b600291501615158b6124f0565b60405162461bcd60e51b815260206004820152601260248201527124b73b30b634b2103932b9b7b63aba34b7b760711b6044820152606490fd5b505f9550600487146124d1565b6372cc71e760e11b5f5260045ffd5b3461035e57612a7a36613205565b969995612a8c99959199949294613af3565b612a968383613e74565b612aa08585613ed0565b612ab46001600160a01b0388161515613536565b6001600160a01b03861615612eb257612ad86001600160a01b03871633141561356f565b612ae38915156135af565b612af0610e438c106135e9565b612afc60418914613629565b612b06888b613b47565b612b0f87613f20565b99612b24612b1c8c614047565b8b1015613669565b6001600160a01b03821698338a141580612e9f575b612b42906136a8565b6001549c8d9c8d612b52816136e6565b600155612b5e90614061565b9e8f905f52600260205260405f209c8d8d600160a01b60019003166001600160601b0360a01b825416178155600101600160a01b6001900333166001600160601b0360a01b8254161790558d600281018d600160a01b60019003166001600160601b0360a01b825416179055600301906001600160601b0360a01b82541617905560048d0190600160a01b60019003166001600160601b0360a01b8254161790558c60058d01556001821015612c13906136f4565b620151808202918083046201518014901517156108f657611d1b612c37924261339f565b6001600160401b0381116107bb57612c52600b8b015461374d565b601f8111612e57575b50938a979360209d97938b9a97938e975f601f8211600114612d9257948b948b612d409f9a97958f9c5f516020615c4a5f395f51905f52819c97878f600b5f516020615c6a5f395f51905f529f9a612d2d9d5f91612d87575b508360011b905f198560031b1c1916179101555b612ce060405192602092849384526020840191613785565b0390a26040519889986001600160a01b03168c7f470292d5e9c87e6d5a100a14c56a434c9f25e9e2be1d5efa70c3b5f9aeda505f5f80a360018060a01b03169c6007339d015492896137a5565b0390a433906001600160a01b0316614102565b600642910155612d4f82613de1565b604051908152817f2c39794ba48d965361d6eb56f0d6366313044d1b5b1758c68643d3e3a39a2c4e843393a360015f55604051908152f35b90508401355f612cb4565b600b8e9a9998979695949e015f5260205f20905f5b601f1984168110612e1f5750938b612d409f8f9c9b8f98945f516020615c6a5f395f51905f529b97878f849f9d9993612d2d9c5f516020615c4a5f395f51905f5295601f19811610612e06575b5050600b600183811b01910155612cc8565b8401355f19600385901b60f8161c191690555f80612df4565b93969a5093979b9d969a9c50602091949850600182918588013581550193019101928f9793928f9c9a969d9b9793928f9a9693612da7565b600b8b015f5260205f20601f830160051c81019160208410612e95575b601f0160051c01905b818110612e8a5750612c5b565b5f8155600101612e7d565b9091508190612e74565b506001600160a01b0388168a1415612b39565b60405162461bcd60e51b815260206004820152600b60248201526a53656c6c6572207a65726f60a81b6044820152606490fd5b3461035e575f36600319011261035e57602060405162278d008152f35b3461035e57602036600319011261035e576004355f526006602052602060405f2054604051908152f35b3461035e57608036600319011261035e576004356024356001600160401b03811161035e57612f5f9036906004016131c2565b919060443592606435612f70613af3565b612f7d600154851061331d565b5f84815260026020526040902060010154612fa2906001600160a01b03161515613361565b428511806131ad575b612fb4906133ac565b835f52600260205260405f209260ff600985015416600681101561033b57613131936130ff92612fe9600161312b94146133eb565b612ff38282613b47565b61312560018060a01b03600189015416996130f78a8c60018060a01b0360028d015416938c600360018060a01b03910154168d60018060a01b0381541660066005830154920154926040519560208701977f3ec4667e1948e2e97f54b4602b6bbfa8f3f98ff1036916ce75d84c59f9558f0289526040880152606087015288608087015260a086015260c085015260e08401526101008301526101208201528961014082015261014081526130aa61016082613443565b5190206104556130e36130bb613bc3565b92604051928391602083019586909160429261190160f01b8352600283015260228201520190565b5190206130f136878761347f565b906143a8565b9690966143d9565b6001600160a01b0386169a6131158c15156134b5565b8b149081156131a3575b506134f4565b87613c68565b84613d28565b61313a82613da1565b60084291015562278d0042018042116108f6577f1a9502b6f661da8b0573a0617c121cabe2e93ea05d5239cfab6e9d1734b928c960208392604051908152a27fd658effe7cf013e5a508b3f1a373b92566494d8b6a7c2970fc964932de1c4dab5f80a360015f55005b90508a148b61311f565b506201518042018042116108f6578510612fab565b9181601f8401121561035e578235916001600160401b03831161035e576020838186019501011161035e57565b602435906001600160a01b038216820361035e57565b9061010060031983011261035e576004356001600160a01b038116810361035e57916024356001600160a01b038116810361035e579160443591606435916084356001600160a01b038116810361035e579160a4356001600160401b03811161035e5781613275916004016131c2565b9290929160c4356001600160401b03811161035e5781613297916004016131c2565b9290929160e435906001600160401b03821161035e576132b9916004016131c2565b9091565b90604060031983011261035e5760043591602435906001600160401b03821161035e576132b9916004016131c2565b90600682101561033b5752565b805180835260209291819084018484015e5f828201840152601f01601f1916010190565b1561332457565b60405162461bcd60e51b8152602060048201526015602482015274115cd8dc9bddc8191bd95cc81b9bdd08195e1a5cdd605a1b6044820152606490fd5b1561336857565b60405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b9a5d1a585b1a5e9959608a1b6044820152606490fd5b919082018092116108f657565b156133b357565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c696420646561646c696e6560801b6044820152606490fd5b156133f257565b60405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420737461746560981b6044820152606490fd5b61020081019081106001600160401b038211176107bb57604052565b90601f801991011681019081106001600160401b038211176107bb57604052565b6001600160401b0381116107bb57601f01601f191660200190565b92919261348b82613464565b916134996040519384613443565b82948184528183011161035e578281602093845f960137010152565b156134bc57565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207265636f7665727960801b6044820152606490fd5b156134fb57565b60405162461bcd60e51b81526020600482015260136024820152722ab730baba3437b934bd32b21039b4b3b732b960691b6044820152606490fd5b1561353d57565b60405162461bcd60e51b815260206004820152600a602482015269546f6b656e207a65726f60b01b6044820152606490fd5b1561357657565b60405162461bcd60e51b815260206004820152601160248201527042757965722073656c6c65722073616d6560781b6044820152606490fd5b156135b657565b60405162461bcd60e51b815260206004820152600b60248201526a416d6f756e74207a65726f60a81b6044820152606490fd5b156135f057565b60405162461bcd60e51b81526020600482015260116024820152704d6174757269747920746f6f206c6f6e6760781b6044820152606490fd5b1561363057565b60405162461bcd60e51b81526020600482015260116024820152704d697373696e672062757965722073696760781b6044820152606490fd5b1561367057565b60405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081d1bdbc81cdb585b1b60821b6044820152606490fd5b156136af57565b60405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b21030b93134ba32b960891b6044820152606490fd5b5f1981146108f65760010190565b156136fb57565b60405162461bcd60e51b81526020600482015260126024820152714d696e203120646179206d6174757269747960701b6044820152606490fd5b90600681101561033b5760ff80198354169116179055565b90600182811c9216801561377b575b602083101461376757565b634e487b7160e01b5f52602260045260245ffd5b91607f169161375c565b908060209392818452848401375f828201840152601f01601f1916010190565b9694926137f39896926137e5959260018060a01b03168952602089015260018060a01b03166040880152606087015260c0608087015260c0860191613785565b9260a0818503910152613785565b90565b156137fd57565b60405162461bcd60e51b81526020600482015260126024820152714d697373696e672073656c6c65722073696760701b6044820152606490fd5b1561383e57565b60405162461bcd60e51b81526020600482015260156024820152744e6f74206177616974696e672064656c697665727960581b6044820152606490fd5b1561388257565b60405162461bcd60e51b815260206004820152600e60248201526d446973707574652061637469766560901b6044820152606490fd5b156138bf57565b60405162461bcd60e51b815260206004820152600a602482015269139bc819195c1bdcda5d60b21b6044820152606490fd5b156138f857565b60405162461bcd60e51b815260206004820152601460248201527313585d1d5c9a5d1e481b9bdd081c995858da195960621b6044820152606490fd5b1561393b57565b60405162461bcd60e51b815260206004820152600b60248201526a27b7363c9039b2b63632b960a91b6044820152606490fd5b1561397557565b60405162461bcd60e51b8152602060048201526011602482015270105b1c9958591e481cdd589b5a5d1d1959607a1b6044820152606490fd5b156139b557565b60405162461bcd60e51b815260206004820152600b60248201526a57726f6e6720737461746560a81b6044820152606490fd5b9060405191825f8254926139fb8461374d565b8084529360018116908115613a665750600114613a22575b50613a2092500383613443565b565b90505f9291925260205f20905f915b818310613a4a575050906020613a20928201015f613a13565b6020919350806001915483858901015201910190918492613a31565b905060209250613a2094915060ff191682840152151560051b8201015f613a13565b60405190613a97604083613443565b60018252603160f81b6020830152565b926080929594919560a08501967f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f865260208601526040850152606084015260018060a01b0316910152565b60025f5414613b025760025f55565b60405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606490fd5b90604103613bb4576fa2a8918ca85bafe22016d0b997e4df60600160ff1b03602060408301355f1a92013511613ba557601b8114159081613b99575b50613b8a57565b6307839aef60e21b5f5260045ffd5b601c915014155f613b83565b6354b34b0360e01b5f5260045ffd5b6354f3472360e01b5f5260045ffd5b467f000000000000000000000000000000000000000000000000000000000000000003613c0e577f000000000000000000000000000000000000000000000000000000000000000090565b600d6020604051613c20604082613443565b828152016c50616c696e64726f6d6550617960981b815220610455613c62613c46613a88565b6020815191012060405192839160208301953091469188613aa7565b51902090565b91604103613bb457602081013560408201355f1a6fa2a8918ca85bafe22016d0b997e4df60600160ff1b038211613ba557601b8114159081613d1c575b50613b8a576040519160208301933060601b85526034840152356054830152607482015246609482015260948152613cde60b482613443565b519020805f52600360205260ff60405f205416613d0d575f52600360205260405f20600160ff19825416179055565b63900bb2c960e01b5f5260045ffd5b601c915014155f613ca5565b91908160081c90835f52600560205260405f2060018060a01b0382165f5260205260405f20825f52602052600160ff60405f205494161b93848416613d92575f52600560205260405f209060018060a01b03165f5260205260405f20905f526020521760405f2055565b633ab3447f60e11b5f5260045ffd5b600290805f52816020525f516020615caa5f395f51905f526020600960405f2001613dd18560ff83541692613735565b613dde60405180926132ec565ba3565b600190805f5260026020525f516020615caa5f395f51905f526020600960405f2001613dd18560ff83541692613735565b600390805f5260026020525f516020615caa5f395f51905f526020600960405f2001613dd18560ff83541692613735565b600590805f5260026020525f516020615caa5f395f51905f526020600960405f2001613dd18560ff83541692613735565b508015159081613ec3575b5015613e8757565b60405162461bcd60e51b8152602060048201526014602482015273092dcecc2d8d2c840e8d2e8d8ca40d8cadccee8d60631b6044820152606490fd5b6101f4915011155f613e7f565b506101f410613edb57565b60405162461bcd60e51b815260206004820152601860248201527f496e76616c696420495046532068617368206c656e67746800000000000000006044820152606490fd5b60405163313ce56760e01b815290602090829060049082906001600160a01b0316617530fa5f9181613ff8575b50613f975760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e206d75737420696d706c656d656e7420646563696d616c732829006044820152606490fd5b60ff811660068110159081613fec575b5015613fb05790565b60405162461bcd60e51b8152602060048201526014602482015273556e737570706f7274656420646563696d616c7360601b6044820152606490fd5b6012915011155f613fa7565b9091506020813d60201161402e575b8161401460209383613443565b8101031261035e575160ff8116810361035e57905f613f4d565b3d9150614007565b60ff16604d81116108f657600a0a90565b61405090614036565b80600a0290600a8204036108f65790565b60405160208101908282526020815261407b604082613443565b51902060405190916140f56116336140966020820185613443565b80845260208401906145f78239602060405193818501903082526040860152604085526140c4606086613443565b60405194859383850197518091895e840190838201905f8252519283915e01015f815203601f198101835282613443565b51905ff590811561035e57565b6040516323b872dd60e01b602082019081526001600160a01b0393841660248301529290931660448401526064808401949094529282526141c1925f90819061414c608486613443565b60018060a01b03169260405194614164604087613443565b602086527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646020870152519082855af13d15614252573d916141a583613464565b926141b36040519485613443565b83523d5f602085013e614559565b805190811591821561422f575b5050156141d757565b60405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608490fd5b819250906020918101031261035e5760200151801515810361035e575f806141ce565b606091614559565b91825f52600260205260405f209260ff6009600586015495015460181c16600281115f1461432f576001190160ff81116108f65761429790614036565b60648502858104606414861517156108f6576127109004908082106143275750925b848410156127ad578385039485116108f657604080516001600160a01b039283168152602081018790527f000000000000000000000000000000000000000000000000000000000000000090921690820152606081018490525f516020615c8a5f395f51905f5290608090a2565b9050926142b9565b506142975f614036565b91825f526002602052600560405f200154925f516020615c8a5f395f51905f5260805f946040519060018060a01b0316815286602082015260018060a01b037f00000000000000000000000000000000000000000000000000000000000000001660408201525f6060820152a2565b9060418151145f146143d0576132b991602082015190606060408401519301515f1a906144dd565b50505f90600290565b600581101561033b57806143ea5750565b600181036144375760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606490fd5b600281036144845760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606490fd5b60031461448d57565b60405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608490fd5b6fa2a8918ca85bafe22016d0b997e4df60600160ff1b03841161454e576020935f9360ff60809460405194855216868401526040830152606082015282805260015afa15614543575f516001600160a01b0381161561453b57905f90565b505f90600190565b6040513d5f823e3d90fd5b505050505f90600390565b919290156145bb575081511561456d575090565b3b156145765790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b8251909150156145ce5750805190602001fd5b60405162461bcd60e51b8152602060048201529081906145f29060248301906132f9565b0390fdfe61010080604052346101ce57604081611633803803809161002082856101d2565b8339810103126101ce5780516001600160a01b038116918282036101ce57602001519160015f551561019b5760805260a0524660e0526040516100646040826101d2565b601381527f50616c696e64726f6d6550617957616c6c657400000000000000000000000000602090910152604080517f87935900cf85ca6189e663d7248e1662ff19d0d4c4fd1ac66e148650615f0137916100bf90826101d2565b600181526020810190603160f81b82525190206040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a0815261012360c0826101d2565b51902060c052604051611429908161020a82396080518181816101b3015281816106990152818161073601528181610a0f0152610b20015260a0518181816101830152818161062c0152818161066e015281816109dc01528181610aec0152610d1b015260c05181610e79015260e05181610d9f0152f35b60405162461bcd60e51b815260206004820152600b60248201526a457363726f77207a65726f60a81b6044820152606490fd5b5f80fd5b601f909101601f19168101906001600160401b038211908210176101f557604052565b634e487b7160e01b5f52604160045260245ffdfe60806040526004361015610011575f80fd5b5f3560e01c806312065fe0146100a4578063145d07051461009f5780632a5851a21461009a5780633644e515146100955780633ccfd60b146100905780635753d9891461008b57806393e74d7f14610086578063c80ec522146100815763e42a96e71461007c575f80fd5b610721565b6106ff565b61064f565b610615565b61014d565b610133565b61010c565b6100db565b346100c6575f3660031901126100c65760206100be6109cd565b604051908152f35b5f80fd5b6001600160a01b038116036100c657565b346100c65760203660031901126100c65760206101026004356100fd816100ca565b610add565b6040519015158152f35b346100c65760203660031901126100c65760206100be60043561012e816100ca565b610cee565b346100c6575f3660031901126100c65760206100be610d9d565b346100c6575f3660031901126100c65760025f54146105d05760025f5560015460ff166105c157604051633e8cf2cb60e11b81527f0000000000000000000000000000000000000000000000000000000000000000600482018190526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000165f83602481845afa928315610412575f9361059d575b50610120830151916101fa83610c37565b61020383610c37565b6003831493841580610589575b80610575575b6105665780516001600160a01b0316156105575760208101805190919061024d906001600160a01b03165b6001600160a01b031690565b33141580610537575b80610517575b61050857600261026b82610ec2565b106104f957610281600160ff1981541617600155565b8051610295906001600160a01b0316610241565b6040516370a0823160e01b81523060048201526001600160a01b0382169790969193916020886024818c5afa978815610412575f986104d4575b506102d990610c37565b156104685750604081015160049291906020906001600160a01b03169560405194858092632cfc019d60e21b82525afa928315610412575f93610437575b506001600160a01b038316958615610428577f2b50bbeab304785e1247f1e22da0321897c428768d93e80ab1811e9baa9559019361036861037b926103626101808a96015160ff1690565b9061109c565b94819891928680610417575b5050610f59565b6040805195865260208601929092526001600160a01b031693a45b6040516370a0823160e01b815230600482015290602090829060249082905afa908115610412575f916103e3575b506103d4576103d260015f55565b005b631fea47ef60e01b5f5260045ffd5b610405915060203d60201161040b575b6103fd8183610779565b8101906109be565b5f6103c4565b503d6103f3565b6109b3565b6104219183610f59565b5f86610374565b630665334760e11b5f5260045ffd5b61045a91935060203d602011610461575b6104528183610779565b810190610c46565b915f610317565b503d610448565b515f9594507f2b50bbeab304785e1247f1e22da0321897c428768d93e80ab1811e9baa955901926104cc9250906104ab9086906001600160a01b03168093610f59565b604080519586525f60208701526001600160a01b0390911694918291820190565b0390a4610396565b6102d99198506104f29060203d60201161040b576103fd8183610779565b97906102cf565b633724e34360e11b5f5260045ffd5b630eebd6cd60e21b5f5260045ffd5b50606081015161052f906001600160a01b0316610241565b33141561025c565b50604081015161054f906001600160a01b0316610241565b331415610256565b6381c609f760e01b5f5260045ffd5b635448814d60e11b5f5260045ffd5b5061057f84610c37565b6005841415610216565b5061059384610c37565b6004841415610210565b6105ba9193503d805f833e6105b28183610779565b810190610847565b915f6101e9565b636507689f60e01b5f5260045ffd5b60405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606490fd5b346100c6575f3660031901126100c65760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b346100c6575f3660031901126100c657604051633e8cf2cb60e11b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa8015610412576106da915f916106e5575b50610ec2565b604051908152602090f35b6106f991503d805f833e6105b28183610779565b5f6106d4565b346100c6575f3660031901126100c657602060ff600154166040519015158152f35b346100c6575f3660031901126100c6576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b634e487b7160e01b5f52604160045260245ffd5b90601f8019910116810190811067ffffffffffffffff82111761079b57604052565b610765565b604051906107b061020083610779565b565b51906107b0826100ca565b519060068210156100c657565b519081151582036100c657565b519060ff821682036100c657565b67ffffffffffffffff811161079b57601f01601f191660200190565b81601f820112156100c657805190610818826107e5565b926108266040519485610779565b828452602083830101116100c657815f9260208093018386015e8301015290565b6020818303126100c65780519067ffffffffffffffff82116100c65701610200818303126100c6576108776107a0565b91610881826107b2565b835261088f602083016107b2565b60208401526108a0604083016107b2565b60408401526108b1606083016107b2565b60608401526108c2608083016107b2565b608084015260a082015160a084015260c082015160c084015260e082015160e08401526101008201516101008401526108fe61012083016107bd565b61012084015261091161014083016107ca565b61014084015261092461016083016107ca565b61016084015261093761018083016107d7565b6101808401526101a082015167ffffffffffffffff81116100c6578161095e918401610801565b6101a08401526101c082015167ffffffffffffffff81116100c65781610985918401610801565b6101c08401526101e082015167ffffffffffffffff81116100c6576109aa9201610801565b6101e082015290565b6040513d5f823e3d90fd5b908160209103126100c6575190565b604051633e8cf2cb60e11b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f816024816001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa801561041257610a50915f91610ac3575b50516001600160a01b031690565b6001600160a01b03811615610abe57610a71906001600160a01b0316610241565b6040516370a0823160e01b815230600482015290602090829060249082905afa908115610412575f91610aa2575090565b610abb915060203d60201161040b576103fd8183610779565b90565b505f90565b610ad791503d805f833e6105b28183610779565b5f610a42565b604051633e8cf2cb60e11b81527f00000000000000000000000000000000000000000000000000000000000000006004820152905f826024816001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa918215610412575f92610c07575b50602082018051909190610b6c906001600160a01b0316610241565b6001600160a01b03909116908103610b9e57506101c091909101519051610abb91906001600160a01b03165b90610c5b565b604083018051909250610bb9906001600160a01b0316610241565b8103610bdd57506101a091909101519051610abb91906001600160a01b0316610b98565b60608301516001600160a01b031691508114610bf95750505f90565b6101e0610abb920151610c5b565b610c1c9192503d805f833e6105b28183610779565b905f610b50565b634e487b7160e01b5f52602160045260245ffd5b60061115610c4157565b610c23565b908160209103126100c65751610abb816100ca565b6041815103610ce8576001600160a01b038216918215610ce157602082015191606060408201519101515f1a926fa2a8918ca85bafe22016d0b997e4df60600160ff1b038211610ccd57601b84141580610cd6575b610ccd57610cc993610cc461024194610cee565b611110565b1490565b50505050505f90565b50601c841415610cb0565b5050505f90565b50505f90565b60405160208101917f783cf3fdc83d5b0c9e236f4e0bfa8f022a2090d21a4c53f5f99df0d607781fa183527f0000000000000000000000000000000000000000000000000000000000000000604083015230606083015260018060a01b0316608082015260808152610d6160a082610779565b519020610d6c610d9d565b9060405190602082019261190160f01b84526022830152604282015260428152610d97606282610779565b51902090565b7f00000000000000000000000000000000000000000000000000000000000000004614610e77576040610e69610d97601360208451610ddc8682610779565b828152017214185b1a5b991c9bdb5954185e55d85b1b195d606a1b81522092600160208251610e0b8482610779565b828152603160f81b91019081522090517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201908152604082019590955260608101919091524660808201523060a082015291829060c0820190565b03601f198101835282610779565b7f000000000000000000000000000000000000000000000000000000000000000090565b634e487b7160e01b5f52601160045260245ffd5b5f198114610ebd5760010190565b610e9b565b6101c081015160208201515f939291610ee4916001600160a01b031690610c5b565b610f50575b610f056101a082015160018060a01b0360408401511690610c5b565b610f3b575b6101e0810151606090910151610f2b916001600160a01b0390911690610c5b565b610f3157565b90610abb90610eaf565b91610f48610f2b91610eaf565b929050610f0a565b60019250610ee9565b9161100d915f806107b09560405194602086019463a9059cbb60e01b865260018060a01b03166024870152604486015260448552610f98606486610779565b60018060a01b03169260405194610fb0604087610779565b602086527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646020870152519082855af13d1561103b573d91610ff1836107e5565b92610fff6040519485610779565b83523d5f602085013e611381565b8051908115918215611021575b505061113b565b6110349250602080918301019101611127565b5f8061101a565b606091611381565b1561104a57565b60405162461bcd60e51b815260206004820152601860248201527f416d6f756e7420746f6f20736d616c6c20666f722066656500000000000000006044820152606490fd5b91908203918211610ebd57565b9060ff166002811115611107576001190160ff8111610ebd5760ff905b16604d8111610ebd57600a0a606482029082820460641483151715610ebd576110fd9161271090049080821061110057505b80926110f8818310611043565b61108f565b91565b90506110eb565b5060ff5f6110b9565b91610abb939161111f9361119a565b919091611215565b908160209103126100c657610abb906107ca565b1561114257565b60405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608490fd5b6fa2a8918ca85bafe22016d0b997e4df60600160ff1b038411611200576020935f9360ff60809460405194855216868401526040830152606082015282805260015afa15610412575f516001600160a01b038116156111f857905f90565b505f90600190565b505050505f90600390565b60051115610c4157565b61121e8161120b565b806112265750565b61122f8161120b565b6001810361127c5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606490fd5b6112858161120b565b600281036112d25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606490fd5b806112de60039261120b565b146112e557565b60405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608490fd5b1561133c57565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b919290156113a15750815115611395575090565b610abb903b1515611335565b8251909150156113b45750805190602001fd5b604460209160405192839162461bcd60e51b83528160048401528051918291826024860152018484015e5f828201840152601f01601f19168101030190fdfea2646970667358221220daeaa85eaa9e7ca5a9b1b81c77bb7f59be17f6575d4c33af61742834a38212c264736f6c634300081d00339a98d2f378553651c1f49353593985b1cda0f6d7e9ab1062bb365dc9172a5cd5db73a95b5021282afa069105f6341730da3d69b308a9167526d1d9d4855ce6e6d3e0574cb952cf8d88c9c2b97882e6000237da1d62a64753eaddaf4d9ce7351b4efd0eb8137437cc21ded7c1b056cd5a6e457ad8830e42d74bb9ba46144dbe8318e785d11512625ba8e5486b7d963f337dfc0a628752fe18e284b0375eefe46ca2646970667358221220a8d3728845aa66b53145f84faa14006c049394825894bf7816db4d90009810ce64736f6c634300081d003361010080604052346101ce57604081611633803803809161002082856101d2565b8339810103126101ce5780516001600160a01b038116918282036101ce57602001519160015f551561019b5760805260a0524660e0526040516100646040826101d2565b601381527f50616c696e64726f6d6550617957616c6c657400000000000000000000000000602090910152604080517f87935900cf85ca6189e663d7248e1662ff19d0d4c4fd1ac66e148650615f0137916100bf90826101d2565b600181526020810190603160f81b82525190206040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a0815261012360c0826101d2565b51902060c052604051611429908161020a82396080518181816101b3015281816106990152818161073601528181610a0f0152610b20015260a0518181816101830152818161062c0152818161066e015281816109dc01528181610aec0152610d1b015260c05181610e79015260e05181610d9f0152f35b60405162461bcd60e51b815260206004820152600b60248201526a457363726f77207a65726f60a81b6044820152606490fd5b5f80fd5b601f909101601f19168101906001600160401b038211908210176101f557604052565b634e487b7160e01b5f52604160045260245ffdfe60806040526004361015610011575f80fd5b5f3560e01c806312065fe0146100a4578063145d07051461009f5780632a5851a21461009a5780633644e515146100955780633ccfd60b146100905780635753d9891461008b57806393e74d7f14610086578063c80ec522146100815763e42a96e71461007c575f80fd5b610721565b6106ff565b61064f565b610615565b61014d565b610133565b61010c565b6100db565b346100c6575f3660031901126100c65760206100be6109cd565b604051908152f35b5f80fd5b6001600160a01b038116036100c657565b346100c65760203660031901126100c65760206101026004356100fd816100ca565b610add565b6040519015158152f35b346100c65760203660031901126100c65760206100be60043561012e816100ca565b610cee565b346100c6575f3660031901126100c65760206100be610d9d565b346100c6575f3660031901126100c65760025f54146105d05760025f5560015460ff166105c157604051633e8cf2cb60e11b81527f0000000000000000000000000000000000000000000000000000000000000000600482018190526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000165f83602481845afa928315610412575f9361059d575b50610120830151916101fa83610c37565b61020383610c37565b6003831493841580610589575b80610575575b6105665780516001600160a01b0316156105575760208101805190919061024d906001600160a01b03165b6001600160a01b031690565b33141580610537575b80610517575b61050857600261026b82610ec2565b106104f957610281600160ff1981541617600155565b8051610295906001600160a01b0316610241565b6040516370a0823160e01b81523060048201526001600160a01b0382169790969193916020886024818c5afa978815610412575f986104d4575b506102d990610c37565b156104685750604081015160049291906020906001600160a01b03169560405194858092632cfc019d60e21b82525afa928315610412575f93610437575b506001600160a01b038316958615610428577f2b50bbeab304785e1247f1e22da0321897c428768d93e80ab1811e9baa9559019361036861037b926103626101808a96015160ff1690565b9061109c565b94819891928680610417575b5050610f59565b6040805195865260208601929092526001600160a01b031693a45b6040516370a0823160e01b815230600482015290602090829060249082905afa908115610412575f916103e3575b506103d4576103d260015f55565b005b631fea47ef60e01b5f5260045ffd5b610405915060203d60201161040b575b6103fd8183610779565b8101906109be565b5f6103c4565b503d6103f3565b6109b3565b6104219183610f59565b5f86610374565b630665334760e11b5f5260045ffd5b61045a91935060203d602011610461575b6104528183610779565b810190610c46565b915f610317565b503d610448565b515f9594507f2b50bbeab304785e1247f1e22da0321897c428768d93e80ab1811e9baa955901926104cc9250906104ab9086906001600160a01b03168093610f59565b604080519586525f60208701526001600160a01b0390911694918291820190565b0390a4610396565b6102d99198506104f29060203d60201161040b576103fd8183610779565b97906102cf565b633724e34360e11b5f5260045ffd5b630eebd6cd60e21b5f5260045ffd5b50606081015161052f906001600160a01b0316610241565b33141561025c565b50604081015161054f906001600160a01b0316610241565b331415610256565b6381c609f760e01b5f5260045ffd5b635448814d60e11b5f5260045ffd5b5061057f84610c37565b6005841415610216565b5061059384610c37565b6004841415610210565b6105ba9193503d805f833e6105b28183610779565b810190610847565b915f6101e9565b636507689f60e01b5f5260045ffd5b60405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606490fd5b346100c6575f3660031901126100c65760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b346100c6575f3660031901126100c657604051633e8cf2cb60e11b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa8015610412576106da915f916106e5575b50610ec2565b604051908152602090f35b6106f991503d805f833e6105b28183610779565b5f6106d4565b346100c6575f3660031901126100c657602060ff600154166040519015158152f35b346100c6575f3660031901126100c6576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b634e487b7160e01b5f52604160045260245ffd5b90601f8019910116810190811067ffffffffffffffff82111761079b57604052565b610765565b604051906107b061020083610779565b565b51906107b0826100ca565b519060068210156100c657565b519081151582036100c657565b519060ff821682036100c657565b67ffffffffffffffff811161079b57601f01601f191660200190565b81601f820112156100c657805190610818826107e5565b926108266040519485610779565b828452602083830101116100c657815f9260208093018386015e8301015290565b6020818303126100c65780519067ffffffffffffffff82116100c65701610200818303126100c6576108776107a0565b91610881826107b2565b835261088f602083016107b2565b60208401526108a0604083016107b2565b60408401526108b1606083016107b2565b60608401526108c2608083016107b2565b608084015260a082015160a084015260c082015160c084015260e082015160e08401526101008201516101008401526108fe61012083016107bd565b61012084015261091161014083016107ca565b61014084015261092461016083016107ca565b61016084015261093761018083016107d7565b6101808401526101a082015167ffffffffffffffff81116100c6578161095e918401610801565b6101a08401526101c082015167ffffffffffffffff81116100c65781610985918401610801565b6101c08401526101e082015167ffffffffffffffff81116100c6576109aa9201610801565b6101e082015290565b6040513d5f823e3d90fd5b908160209103126100c6575190565b604051633e8cf2cb60e11b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f816024816001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa801561041257610a50915f91610ac3575b50516001600160a01b031690565b6001600160a01b03811615610abe57610a71906001600160a01b0316610241565b6040516370a0823160e01b815230600482015290602090829060249082905afa908115610412575f91610aa2575090565b610abb915060203d60201161040b576103fd8183610779565b90565b505f90565b610ad791503d805f833e6105b28183610779565b5f610a42565b604051633e8cf2cb60e11b81527f00000000000000000000000000000000000000000000000000000000000000006004820152905f826024816001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa918215610412575f92610c07575b50602082018051909190610b6c906001600160a01b0316610241565b6001600160a01b03909116908103610b9e57506101c091909101519051610abb91906001600160a01b03165b90610c5b565b604083018051909250610bb9906001600160a01b0316610241565b8103610bdd57506101a091909101519051610abb91906001600160a01b0316610b98565b60608301516001600160a01b031691508114610bf95750505f90565b6101e0610abb920151610c5b565b610c1c9192503d805f833e6105b28183610779565b905f610b50565b634e487b7160e01b5f52602160045260245ffd5b60061115610c4157565b610c23565b908160209103126100c65751610abb816100ca565b6041815103610ce8576001600160a01b038216918215610ce157602082015191606060408201519101515f1a926fa2a8918ca85bafe22016d0b997e4df60600160ff1b038211610ccd57601b84141580610cd6575b610ccd57610cc993610cc461024194610cee565b611110565b1490565b50505050505f90565b50601c841415610cb0565b5050505f90565b50505f90565b60405160208101917f783cf3fdc83d5b0c9e236f4e0bfa8f022a2090d21a4c53f5f99df0d607781fa183527f0000000000000000000000000000000000000000000000000000000000000000604083015230606083015260018060a01b0316608082015260808152610d6160a082610779565b519020610d6c610d9d565b9060405190602082019261190160f01b84526022830152604282015260428152610d97606282610779565b51902090565b7f00000000000000000000000000000000000000000000000000000000000000004614610e77576040610e69610d97601360208451610ddc8682610779565b828152017214185b1a5b991c9bdb5954185e55d85b1b195d606a1b81522092600160208251610e0b8482610779565b828152603160f81b91019081522090517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201908152604082019590955260608101919091524660808201523060a082015291829060c0820190565b03601f198101835282610779565b7f000000000000000000000000000000000000000000000000000000000000000090565b634e487b7160e01b5f52601160045260245ffd5b5f198114610ebd5760010190565b610e9b565b6101c081015160208201515f939291610ee4916001600160a01b031690610c5b565b610f50575b610f056101a082015160018060a01b0360408401511690610c5b565b610f3b575b6101e0810151606090910151610f2b916001600160a01b0390911690610c5b565b610f3157565b90610abb90610eaf565b91610f48610f2b91610eaf565b929050610f0a565b60019250610ee9565b9161100d915f806107b09560405194602086019463a9059cbb60e01b865260018060a01b03166024870152604486015260448552610f98606486610779565b60018060a01b03169260405194610fb0604087610779565b602086527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646020870152519082855af13d1561103b573d91610ff1836107e5565b92610fff6040519485610779565b83523d5f602085013e611381565b8051908115918215611021575b505061113b565b6110349250602080918301019101611127565b5f8061101a565b606091611381565b1561104a57565b60405162461bcd60e51b815260206004820152601860248201527f416d6f756e7420746f6f20736d616c6c20666f722066656500000000000000006044820152606490fd5b91908203918211610ebd57565b9060ff166002811115611107576001190160ff8111610ebd5760ff905b16604d8111610ebd57600a0a606482029082820460641483151715610ebd576110fd9161271090049080821061110057505b80926110f8818310611043565b61108f565b91565b90506110eb565b5060ff5f6110b9565b91610abb939161111f9361119a565b919091611215565b908160209103126100c657610abb906107ca565b1561114257565b60405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608490fd5b6fa2a8918ca85bafe22016d0b997e4df60600160ff1b038411611200576020935f9360ff60809460405194855216868401526040830152606082015282805260015afa15610412575f516001600160a01b038116156111f857905f90565b505f90600190565b505050505f90600390565b60051115610c4157565b61121e8161120b565b806112265750565b61122f8161120b565b6001810361127c5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606490fd5b6112858161120b565b600281036112d25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606490fd5b806112de60039261120b565b146112e557565b60405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608490fd5b1561133c57565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b919290156113a15750815115611395575090565b610abb903b1515611335565b8251909150156113b45750805190602001fd5b604460209160405192839162461bcd60e51b83528160048401528051918291826024860152018484015e5f828201840152601f01601f19168101030190fdfea2646970667358221220daeaa85eaa9e7ca5a9b1b81c77bb7f59be17f6575d4c33af61742834a38212c264736f6c634300081d0033",
|
|
1137
|
+
"deployedBytecode": "0x60a06040526004361015610011575f80fd5b5f3560e01c806306075a1514612f2c57806310f169e814612f025780631452483b14612ee55780632d34515b14612a6c5780632d471a50146123d85780632f9bfda214611f47578063311a2e5514611b6d5780633644e51514611b4b5780634186928c14611b2f578063459b860e1461199f578063589ac8e3146119655780635d303519146116d35780636232ef6014611453578063708f65ca146112095780637d19e59614610f3d5780638350415614610a1657806389cb29dd146109f95780639dede53c146109a9578063b3f0067414610965578063c0cfa7e5146107cf578063c37775a314610545578063d4ffbee4146103625763da183b0214610116575f80fd5b3461035e57602036600319011261035e57600435610132613af3565b61013f600154821061331d565b5f81815260026020526040902060010154610164906001600160a01b03161515613361565b5f818152600260205260409020600101546001600160a01b0316330361034f57805f52600260205260405f20600981015460ff8116600681101561033b5760016101ae9114613837565b6101bc60088301541561387b565b60ff8160081c16156103015760101c60ff166102c7576101e1600682015415156138b8565b60038101546001600160a01b03161561027657806102066007600593015442116138f1565b61021e6041610218600b84015461374d565b14613629565b61022783613e43565b600181015461023f906001600160a01b031684614339565b50500154906040519182527feb8b5b87fbea5b732b8f4fd82b65d9afef713c799d98da83090f22c45577998d60203393a360015f55005b60405162461bcd60e51b815260206004820152602360248201527f4172626974657220726571756972656420666f722074696d656f75742063616e60448201526218d95b60ea1b6064820152608490fd5b60405162461bcd60e51b81526020600482015260126024820152714d757475616c2063616e63656c20646f6e6560701b6044820152606490fd5b60405162461bcd60e51b8152602060048201526012602482015271135d5cdd081c995c5d595cdd08199a5c9cdd60721b6044820152606490fd5b634e487b7160e01b5f52602160045260245ffd5b6386efbb5560e01b5f5260045ffd5b5f80fd5b3461035e57604036600319011261035e5760043561037e6131ef565b61038b600154831061331d565b5f828152600260205260409020600101546103b0906001600160a01b03161515613361565b5f828152600260205260409020600181015490916001600160a01b0390811691168114801561052f575b8015610519575b156104e0576104556104d660209461046360409560138888516104048a82613443565b828152017214185b1a5b991c9bdb5954185e55d85b1b195d606a1b81522061042a613a88565b89815191012091600460018060a01b03910154169283916104558a519384928d840196469188613aa7565b03601f198101835282613443565b51902094865191888301937f783cf3fdc83d5b0c9e236f4e0bfa8f022a2090d21a4c53f5f99df0d607781fa185528884015260608301526080820152608081526104ae60a082613443565b51902084519283918783019586909160429261190160f01b8352600283015260228201520190565b5190209051908152f35b60405162461bcd60e51b8152602060048201526011602482015270139bdd0818481c185c9d1a58da5c185b9d607a1b6044820152606490fd5b5060038201546001600160a01b031681146103e1565b5060028201546001600160a01b031681146103da565b3461035e57610553366132bd565b9061055c613af3565b610569600154841061331d565b5f8381526002602052604090206001015461058e906001600160a01b03161515613361565b5f838152600260205260409020600101546001600160a01b0316330361034f57825f52600260205260405f209160ff600984015416600681101561033b5760016105d89114613837565b6105f060416105ea600a86015461374d565b146137f6565b6105fc60418214613629565b6106068183613b47565b600b8301916001600160401b0382116107bb578491610625845461374d565b601f8111610769575b505f93601f82116001146106f757815f516020615c4a5f395f51905f5294955f916106ec575b508260011b905f198460031b1c19161790555b61067e604051928392602084526020840191613785565b0390a261068a82613e12565b60028101546001600160a01b0316917f8bcf349ab354486b68c142cea7235e4f7f31f6a425466f569c8ac1d5bc4d000760406106c6858461425a565b9050600560018060a01b036001870154169501549082519182526020820152a460015f55005b905083013588610654565b601f198216815f5260205f20905f5b81811061074e575095835f516020615c4a5f395f51905f52969710610735575b5050600182811b019055610667565b8401355f19600385901b60f8161c191690558780610726565b8786013583556020978801978a975060019093019201610706565b90919250835f5260205f20601f830160051c810191602084106107b1575b90601f88959493920160051c01905b8181106107a3575061062e565b5f8155879450600101610796565b9091508190610787565b634e487b7160e01b5f52604160045260245ffd5b3461035e57602036600319011261035e576004356107eb613af3565b6107f8600154821061331d565b5f8181526002602052604090206001015461081d906001600160a01b03161515613361565b805f52600260205260405f2060018060a01b03600182015416331415908161094d575b5061093e575f81815260026020526040902060038101546001600160a01b03161561090a5760ff600982015416600681101561033b5760016108829114613837565b61088b82613da1565b60084291015562278d0042018042116108f6577f1a9502b6f661da8b0573a0617c121cabe2e93ea05d5239cfab6e9d1734b928c960208392604051908152a233907fd658effe7cf013e5a508b3f1a373b92566494d8b6a7c2970fc964932de1c4dab5f80a360015f55005b634e487b7160e01b5f52601160045260245ffd5b60405162461bcd60e51b815260206004820152600c60248201526b2d32b9379030b93134ba32b960a11b6044820152606490fd5b631cfe2f0560e11b5f5260045ffd5b600201546001600160a01b0316331415905082610840565b3461035e575f36600319011261035e576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b3461035e57606036600319011261035e576109c26131ef565b6004355f52600560205260405f209060018060a01b03165f5260205260405f206044355f52602052602060405f2054604051908152f35b3461035e575f36600319011261035e576020600154604051908152f35b3461035e57610a24366132bd565b90610a2d613af3565b610a3a600154841061331d565b5f83815260026020526040902060010154610a5f906001600160a01b03161515613361565b825f52600260205260405f2060018060a01b036001820154163314159081610f25575b5061093e57825f52600260205260405f2090600982019081549360ff8516600681101561033b576001610ab591146139ae565b610ac4600685015415156138b8565b610ad260088501541561387b565b60418103610eeb57610ae48183613b47565b600184019460018060a01b0386541633145f14610d3e575060ff835460081c16610cf957600b8401916001600160401b0382116107bb578691610b27845461374d565b601f8111610ca7575b505f93601f8211600114610c3557815f516020615c4a5f395f51905f5294955f91610c2a575b508260011b905f198460031b1c19161790555b610b80604051928392602084526020840191613785565b0390a2805461ff0019166101001781555b5460ff8160081c169081610c1c575b5015610bef5761023f600592610bbe6041610218600b86015461374d565b610bd060416105ea600a86015461374d565b610bd985613e43565b546001600160a01b031684614339565b60015f55005b505033907f88a867d5d9b489598a3f5e5c8d5c1da163ed116737b70444bac744920904a5735f80a3610be9565b60ff915060101c1684610ba0565b90508301358a610b56565b601f198216815f5260205f20905f5b818110610c8c575095835f516020615c4a5f395f51905f52969710610c73575b5050600182811b019055610b69565b8401355f19600385901b60f8161c191690558980610c64565b8786013583556020978801978c975060019093019201610c44565b90919250835f5260205f20601f830160051c81019160208410610cef575b90601f8a959493920160051c01905b818110610ce15750610b30565b5f8155899450600101610cd4565b9091508190610cc5565b60405162461bcd60e51b815260206004820152601760248201527f427579657220616c7265616479207265717565737465640000000000000000006044820152606490fd5b60101c60ff16610ea657600a8401916001600160401b0382116107bb578691610d67845461374d565b601f8111610e54575b505f93601f8211600114610de257815f516020615c2a5f395f51905f5294955f91610dd7575b508260011b905f198460031b1c19161790555b610dc0604051928392602084526020840191613785565b0390a2805462ff0000191662010000178155610b91565b90508301358a610d96565b601f198216815f5260205f20905f5b818110610e39575095835f516020615c2a5f395f51905f52969710610e20575b5050600182811b019055610da9565b8401355f19600385901b60f8161c191690558980610e11565b8786013583556020978801978c975060019093019201610df1565b90919250835f5260205f20601f830160051c81019160208410610e9c575b90601f8a959493920160051c01905b818110610e8e5750610d70565b5f8155899450600101610e81565b9091508190610e72565b60405162461bcd60e51b815260206004820152601860248201527f53656c6c657220616c72656164792072657175657374656400000000000000006044820152606490fd5b60405162461bcd60e51b81526020600482015260126024820152714d697373696e672077616c6c65742073696760701b6044820152606490fd5b600201546001600160a01b0316331415905084610a82565b3461035e57602036600319011261035e5760043560606101e0604051610f6281613427565b5f81525f60208201525f60408201525f838201525f60808201525f60a08201525f60c08201525f60e08201525f6101008201525f6101208201525f6101408201525f6101608201525f610180820152826101a0820152826101c08201520152610fce600154821061331d565b5f81815260026020526040902060010154610ff3906001600160a01b03161515613361565b5f52600260205260405f2060405161100a81613427565b81546001600160a01b0390811682526001830154811660208301526002830154811660408301526003830154811660608301526004830154166080820152600582015460a082015260068083015460c0830152600783015460e08301526008830154610100830152600983015460ff81169182101561033b576112059360ff600c926110e694610120870152818160081c161515610140870152818160101c16151561016087015260181c166101808501526110c8600a82016139e8565b6101a08501526110da600b82016139e8565b6101c0850152016139e8565b6101e08201526040519182916020835260018060a01b03815116602084015260018060a01b03602082015116604084015260018060a01b03604082015116606084015260018060a01b03606082015116608084015260018060a01b0360808201511660a084015260a081015160c084015260c081015160e084015260e081015161010084015261010081015161012084015261118c6101208201516101408501906132ec565b6101408101511515610160840152610160810151151561018084015260ff610180820151166101a08401526101e06111f06111da6101a08401516102006101c08801526102208701906132f9565b6101c0840151868203601f1901848801526132f9565b910151838203601f19016102008501526132f9565b0390f35b3461035e57611217366132bd565b9190611221613af3565b61122e600154831061331d565b5f82815260026020526040902060010154611253906001600160a01b03161515613361565b815f52600260205260405f2061127660018060a01b036002830154163314613934565b60ff60098201541690600682101561033b576112966001600a93146139ae565b019283546112a38161374d565b61141b576112b3604183146137f6565b6112bd8284613b47565b6001600160401b0382116107bb576112d49061374d565b601f81116113d6575b505f93601f821160011461136757815f516020615c2a5f395f51905f5294955f9161135c575b508260011b905f198460031b1c19161790555b61135360405192839233877f5b09e2f1aabe74a8fc19114f298046a9fa1214365ec1d728e534a291aff17a4f5f80a3602084526020840191613785565b0390a260015f55005b905083013586611303565b601f19821694815f5260205f20905f5b8781106113be5750835f516020615c2a5f395f51905f529697106113a5575b5050600182811b019055611316565b8401355f19600385901b60f8161c191690558580611396565b90916020600181928589013581550193019101611377565b845f5260205f20601f830160051c81019160208410611411575b601f0160051c01905b81811061140657506112dd565b5f81556001016113f9565b90915081906113f0565b60405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481858d8d95c1d195960821b6044820152606490fd5b3461035e57606036600319011261035e57600435602435906004821091821561035e576044356001600160401b03811161035e576114959036906004016131c2565b919061149f613af3565b6114ac600154851061331d565b5f848152600260205260409020600101546114d1906001600160a01b03161515613361565b835f52600260205260405f2060018060a01b0360018201541633141590816116bb575b816116a3575b5061169457835f52600260205260405f2060ff600982015416600681101561033b576002036116605761152d8483613ed0565b845f52600660205260405f205490600184145f146115f757600101546001600160a01b031633036115c5578061156760018093161561396e565b175b845f52600660205260405f2055604051941561033b577f4e71d2a3ce09c95d708a8bc888cb8838c8419bea1f25f6d07f2c601b173f720e926115b8928652604060208701526040860191613785565b928033940390a360015f55005b60405162461bcd60e51b815260206004820152600a60248201526927b7363c90313abcb2b960b11b6044820152606490fd5b906002840361162c5760029182015461161a906001600160a01b03163314613934565b6116268282161561396e565b17611569565b60405162461bcd60e51b815260206004820152600c60248201526b496e76616c696420726f6c6560a01b6044820152606490fd5b60405162461bcd60e51b815260206004820152600c60248201526b139bdd08191a5cdc1d5d195960a21b6044820152606490fd5b63721c7c6760e11b5f5260045ffd5b600301546001600160a01b03163314159050866114fa565b60028101546001600160a01b031633141591506114f4565b3461035e576116e1366132bd565b906116ea613af3565b6116f7600154841061331d565b5f8381526002602052604090206001015461171c906001600160a01b03161515613361565b5f838152600260205260409020600101546001600160a01b0316330361034f57825f52600260205260405f209160ff600984015416600681101561033b576119295761176a60418214613629565b6117748183613b47565b600b8301916001600160401b0382116107bb578491611793845461374d565b601f81116118d7575b505f93601f821160011461186557815f516020615c4a5f395f51905f5294955f9161185a575b508260011b905f198460031b1c19161790555b6117ec604051928392602084526020840191613785565b0390a280546004820154600583018054909392611817926001600160a01b0390811691339116614102565b60064291015561182682613de1565b54906040519182527f71284872bb4c088a81295dff2513729babbccfeda38a8d824bb1a73bcaab494e60203393a360015f55005b9050830135886117c2565b601f198216815f5260205f20905f5b8181106118bc575095835f516020615c4a5f395f51905f529697106118a3575b5050600182811b0190556117d5565b8401355f19600385901b60f8161c191690558780611894565b8786013583556020978801978a975060019093019201611874565b90919250835f5260205f20601f830160051c8101916020841061191f575b90601f88959493920160051c01905b818110611911575061179c565b5f8155879450600101611904565b90915081906118f5565b60405162461bcd60e51b8152602060048201526014602482015273139bdd08185dd85a5d1a5b99c81c185e5b595b9d60621b6044820152606490fd5b3461035e575f36600319011261035e5760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b3461035e57602036600319011261035e576004356119bb613af3565b6119c8600154821061331d565b5f818152600260205260409020600101546119ed906001600160a01b03161515613361565b5f81815260026020819052604090912001546001600160a01b03163303611b2057805f52600260205260405f2090600982015460ff811690600682101561033b57611a3c600160ff9314613837565b611a4a60088501541561387b565b60081c16611ae257611a61600683015415156138b8565b611a70600783015442116138f1565b611a8260416105ea600a85015461374d565b611a8b81613e12565b60028201546001600160a01b0316917f489d0b4f43659843daba0a17983382a3e77f5399083ac5405143fcf6806f8ca0906040906005611acb868661425a565b92905001549082519182526020820152a360015f55005b60405162461bcd60e51b8152602060048201526016602482015275109d5e595c881c995c5d595cdd19590818d85b98d95b60521b6044820152606490fd5b6342e8fb9360e11b5f5260045ffd5b3461035e575f36600319011261035e576020604051610e108152f35b3461035e575f36600319011261035e576020611b65613bc3565b604051908152f35b3461035e57611b7b36613205565b98611b92858794979c939a9c999899969596613e74565b611b9c8686613ed0565b611bb06001600160a01b0383161515613536565b6001600160a01b0316988915611f1557600198611bcf338c141561356f565b611bda8c15156135af565b611be7610e4389106135e9565b611bf3604183146137f6565b611bfd8282613b47565b611c0683613f20565b97611c1b8d611c148b614047565b1115613669565b8a8060a01b038a1698338a141580611f0b575b611c37906136a8565b8b54608052611c476080516136e6565b8c55611c54608051614061565b996080515f5260026020528d60405f209d8e818060a01b0389166001600160601b0360a01b82541617815501906001600160601b0360a01b82541617905560028d0160018060a01b0333166001600160601b0360a01b82541617905560038d01906001600160601b0360a01b82541617905560048c0160018060a01b038b166001600160601b0360a01b8254161790558d60058d0155611cf760018310156136f4565b620151808202918083046201518014901517156108f657611d1b611d41924261339f565b60078d015560098c01805463ff0000ff191660189290921b63ff00000016919091179055565b600a8a016001600160401b0383116107bb57611d5d815461374d565b601f8111611ec6575b505f601f8411600114611e3657611dd35f516020615c6a5f395f51905f529b9a999795938593611e1c9a98965f516020615c2a5f395f51905f52945f91611e2b575b508560011b905f198760031b1c19161790555b60405191829160208352608051956020840191613785565b0390a260405197889760018060a01b03166080517f470292d5e9c87e6d5a100a14c56a434c9f25e9e2be1d5efa70c3b5f9aeda505f5f80a3339c60076080519c015492896137a5565b0390a460206040516080518152f35b90508201355f611da8565b815f5260205f20905f5b601f1986168110611eae57505f516020615c6a5f395f51905f529b9a9997959385935f516020615c2a5f395f51905f5293611dd393611e1c9c9a98601f19811610611e95575b5050600185811b019055611dbb565b8301355f19600388901b60f8161c191690555f80611e86565b90916020600181928588013581550193019101611e40565b815f5260205f20601f850160051c81019160208610611f01575b601f0160051c01905b818110611ef65750611d66565b5f8155600101611ee9565b9091508190611ee0565b50898d1415611c2e565b60405162461bcd60e51b815260206004820152600a6024820152694275796572207a65726f60b01b6044820152606490fd5b3461035e5760a036600319011261035e576004356024356001600160401b03811161035e57611f7a9036906004016131c2565b9091604435916064356084356001600160401b03811161035e57611fa29036906004016131c2565b91611fab613af3565b611fb8600154861061331d565b5f85815260026020526040902060010154611fdd906001600160a01b03161515613361565b428611806123c3575b611fef906133ac565b845f52600260205260405f209060ff600983015416600681101561033b57600161201991146133eb565b6041850361238a5761202b8589613b47565b61203760418514613629565b6120418484613b47565b600a82015461204f9061374d565b60411461205b906137f6565b6001820197600160a01b6001900389541695600284019688600160a01b60019003895416600160a01b600190036003880154169b600160a01b600190038854169c600589019d8e549060068b0154926040519560208701977f2175432d6c7eab3a2ef5708fc419540c0f4d274cabd17912c92683ed8466b5e989526040880152886060880152608087015260a086015260c085015260e084015261010083015261012082015285610140820152610140815261211961016082613443565b519020612124613bc3565b60405161190160f01b60208201908152602282019290925260428082019390935291825290612154606282613443565b51902061216236848661347f565b61216b916143a8565b612174906143d9565b6001600160a01b03166121888115156134b5565b14612192906134f4565b61219c9188613c68565b87546121b291906001600160a01b031687613d28565b600b01916001600160401b0381116107bb57826121d086945461374d565b601f8111612336575b505f601f831160011461229b5792825f516020615c4a5f395f51905f5292604096947f8bcf349ab354486b68c142cea7235e4f7f31f6a425466f569c8ac1d5bc4d000798965f91612290575b508260011b905f198460031b1c19161790555b61224e8651928392602084526020840191613785565b0390a261225a84613e12565b546001600160a01b03169461226f868561425a565b91905060018060a01b0390541694549082519182526020820152a460015f55005b90508301358c612225565b601f19831690825f5260205f20915f5b81811061231b5750927f8bcf349ab354486b68c142cea7235e4f7f31f6a425466f569c8ac1d5bc4d00079795928592604098965f516020615c4a5f395f51905f529610612302575b5050600182811b019055612238565b8401355f19600385901b60f8161c191690558b806122f3565b828701358455899750600190930192602092830192016122ab565b9080929394505f5260205f20601f840160051c81019160208510612380575b90601f8896959493920160051c01905b81811061237257506121d9565b5f8155879550600101612365565b9091508190612355565b60405162461bcd60e51b81526020600482015260116024820152704d697373696e6720636f6f72642073696760781b6044820152606490fd5b506201518042018042116108f6578610611fe6565b3461035e57608036600319011261035e576004356024356006811090811561035e576044356001600160401b03811161035e576124199036906004016131c2565b9190926064356001600160401b03811161035e5761243b9036906004016131c2565b939091612446613af3565b612453600154881061331d565b5f87815260026020526040902060010154612478906001600160a01b03161515613361565b5f878152600260205260409020600301546001600160a01b03163303612a5d57865f52600260205260405f209560ff600988015416600681101561033b5760026124c291146133eb565b5f936003861496878015612a50575b15612a1657895f52600660205260405f20546001811615159081612a09575b5060088a015462278d008101908181116108f65762279b10018091116108f65781156129ff575b50156129ba57895f52600460205260ff60405f20541661298357895f52600460205260405f20600160ff19825416179055604181036129485761255a8183613b47565b600c8901916001600160401b0382116107bb578a91612579845461374d565b601f81116128f6575b505f93601f821160011461286657817f514a487b739611aef8577751109f3612aef90abf478bc73849af4cdd1fa2135a94955f9161285b575b508260011b905f198460031b1c19161790555b6125e5604051928392602084526020840191613785565b0390a2875f526002602052600960405f2001916126078660ff85541694613735565b1561033b5761266c7f4e71d2a3ce09c95d708a8bc888cb8838c8419bea1f25f6d07f2c601b173f720e91868a5f516020615caa5f395f51905f526020829761265260405180926132ec565ba36040519460038652604060208701526040860191613785565b928033940390a361033b5781156128475760028301546001600160a01b0316915b845f5260026020528460405f20915f14612804575060ff6009600583015492015460181c16600281115f146127fa576001190160ff81116108f6576126d190614036565b60648202828104606414831517156108f6576127109004908082106127f25750925b818410156127ad578382039182116108f6577ffc4c84ff0bf9d937dea068e6c13c3a16c307d76a1c5b5173c40f03f68f421e0094865f516020615c8a5f395f51905f5260806005948198965b6040519160018060a01b03168252602082015260018060a01b037f0000000000000000000000000000000000000000000000000000000000000000166040820152866060820152a2015461279660405180946132ec565b33602084015260408301526060820152a260015f55005b60405162461bcd60e51b815260206004820152601860248201527f416d6f756e7420746f6f20736d616c6c20666f722066656500000000000000006044820152606490fd5b9050926126f3565b506126d15f614036565b7ffc4c84ff0bf9d937dea068e6c13c3a16c307d76a1c5b5173c40f03f68f421e00946005915f516020615c8a5f395f51905f526080848198960154955f9661273f565b60018301546001600160a01b03169161268d565b90508301358e6125bb565b601f198216815f5260205f20905f5b8181106128d0575095837f514a487b739611aef8577751109f3612aef90abf478bc73849af4cdd1fa2135a9697106128b7575b5050600182811b0190556125ce565b8401355f19600385901b60f8161c191690558d806128a8565b92949693955090602060018192868a013581550194019201908e95939196949296612875565b90919250835f5260205f20601f830160051c8101916020841061293e575b90601f8e959493920160051c01905b8181106129305750612582565b5f81558d9450600101612923565b9091508190612914565b60405162461bcd60e51b81526020600482015260136024820152724d697373696e6720617262697465722073696760681b6044820152606490fd5b60405162461bcd60e51b815260206004820152600f60248201526e105b1c9958591e48191958da591959608a1b6044820152606490fd5b60405162461bcd60e51b815260206004820152601860248201527f4e6565642065766964656e6365206f722074696d656f757400000000000000006044820152606490fd5b905042118b612517565b600291501615158b6124f0565b60405162461bcd60e51b815260206004820152601260248201527124b73b30b634b2103932b9b7b63aba34b7b760711b6044820152606490fd5b505f9550600487146124d1565b6372cc71e760e11b5f5260045ffd5b3461035e57612a7a36613205565b969995612a8c99959199949294613af3565b612a968383613e74565b612aa08585613ed0565b612ab46001600160a01b0388161515613536565b6001600160a01b03861615612eb257612ad86001600160a01b03871633141561356f565b612ae38915156135af565b612af0610e438c106135e9565b612afc60418914613629565b612b06888b613b47565b612b0f87613f20565b99612b24612b1c8c614047565b8b1015613669565b6001600160a01b03821698338a141580612e9f575b612b42906136a8565b6001549c8d9c8d612b52816136e6565b600155612b5e90614061565b9e8f905f52600260205260405f209c8d8d600160a01b60019003166001600160601b0360a01b825416178155600101600160a01b6001900333166001600160601b0360a01b8254161790558d600281018d600160a01b60019003166001600160601b0360a01b825416179055600301906001600160601b0360a01b82541617905560048d0190600160a01b60019003166001600160601b0360a01b8254161790558c60058d01556001821015612c13906136f4565b620151808202918083046201518014901517156108f657611d1b612c37924261339f565b6001600160401b0381116107bb57612c52600b8b015461374d565b601f8111612e57575b50938a979360209d97938b9a97938e975f601f8211600114612d9257948b948b612d409f9a97958f9c5f516020615c4a5f395f51905f52819c97878f600b5f516020615c6a5f395f51905f529f9a612d2d9d5f91612d87575b508360011b905f198560031b1c1916179101555b612ce060405192602092849384526020840191613785565b0390a26040519889986001600160a01b03168c7f470292d5e9c87e6d5a100a14c56a434c9f25e9e2be1d5efa70c3b5f9aeda505f5f80a360018060a01b03169c6007339d015492896137a5565b0390a433906001600160a01b0316614102565b600642910155612d4f82613de1565b604051908152817f2c39794ba48d965361d6eb56f0d6366313044d1b5b1758c68643d3e3a39a2c4e843393a360015f55604051908152f35b90508401355f612cb4565b600b8e9a9998979695949e015f5260205f20905f5b601f1984168110612e1f5750938b612d409f8f9c9b8f98945f516020615c6a5f395f51905f529b97878f849f9d9993612d2d9c5f516020615c4a5f395f51905f5295601f19811610612e06575b5050600b600183811b01910155612cc8565b8401355f19600385901b60f8161c191690555f80612df4565b93969a5093979b9d969a9c50602091949850600182918588013581550193019101928f9793928f9c9a969d9b9793928f9a9693612da7565b600b8b015f5260205f20601f830160051c81019160208410612e95575b601f0160051c01905b818110612e8a5750612c5b565b5f8155600101612e7d565b9091508190612e74565b506001600160a01b0388168a1415612b39565b60405162461bcd60e51b815260206004820152600b60248201526a53656c6c6572207a65726f60a81b6044820152606490fd5b3461035e575f36600319011261035e57602060405162278d008152f35b3461035e57602036600319011261035e576004355f526006602052602060405f2054604051908152f35b3461035e57608036600319011261035e576004356024356001600160401b03811161035e57612f5f9036906004016131c2565b919060443592606435612f70613af3565b612f7d600154851061331d565b5f84815260026020526040902060010154612fa2906001600160a01b03161515613361565b428511806131ad575b612fb4906133ac565b835f52600260205260405f209260ff600985015416600681101561033b57613131936130ff92612fe9600161312b94146133eb565b612ff38282613b47565b61312560018060a01b03600189015416996130f78a8c60018060a01b0360028d015416938c600360018060a01b03910154168d60018060a01b0381541660066005830154920154926040519560208701977f3ec4667e1948e2e97f54b4602b6bbfa8f3f98ff1036916ce75d84c59f9558f0289526040880152606087015288608087015260a086015260c085015260e08401526101008301526101208201528961014082015261014081526130aa61016082613443565b5190206104556130e36130bb613bc3565b92604051928391602083019586909160429261190160f01b8352600283015260228201520190565b5190206130f136878761347f565b906143a8565b9690966143d9565b6001600160a01b0386169a6131158c15156134b5565b8b149081156131a3575b506134f4565b87613c68565b84613d28565b61313a82613da1565b60084291015562278d0042018042116108f6577f1a9502b6f661da8b0573a0617c121cabe2e93ea05d5239cfab6e9d1734b928c960208392604051908152a27fd658effe7cf013e5a508b3f1a373b92566494d8b6a7c2970fc964932de1c4dab5f80a360015f55005b90508a148b61311f565b506201518042018042116108f6578510612fab565b9181601f8401121561035e578235916001600160401b03831161035e576020838186019501011161035e57565b602435906001600160a01b038216820361035e57565b9061010060031983011261035e576004356001600160a01b038116810361035e57916024356001600160a01b038116810361035e579160443591606435916084356001600160a01b038116810361035e579160a4356001600160401b03811161035e5781613275916004016131c2565b9290929160c4356001600160401b03811161035e5781613297916004016131c2565b9290929160e435906001600160401b03821161035e576132b9916004016131c2565b9091565b90604060031983011261035e5760043591602435906001600160401b03821161035e576132b9916004016131c2565b90600682101561033b5752565b805180835260209291819084018484015e5f828201840152601f01601f1916010190565b1561332457565b60405162461bcd60e51b8152602060048201526015602482015274115cd8dc9bddc8191bd95cc81b9bdd08195e1a5cdd605a1b6044820152606490fd5b1561336857565b60405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b9a5d1a585b1a5e9959608a1b6044820152606490fd5b919082018092116108f657565b156133b357565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c696420646561646c696e6560801b6044820152606490fd5b156133f257565b60405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420737461746560981b6044820152606490fd5b61020081019081106001600160401b038211176107bb57604052565b90601f801991011681019081106001600160401b038211176107bb57604052565b6001600160401b0381116107bb57601f01601f191660200190565b92919261348b82613464565b916134996040519384613443565b82948184528183011161035e578281602093845f960137010152565b156134bc57565b60405162461bcd60e51b815260206004820152601060248201526f496e76616c6964207265636f7665727960801b6044820152606490fd5b156134fb57565b60405162461bcd60e51b81526020600482015260136024820152722ab730baba3437b934bd32b21039b4b3b732b960691b6044820152606490fd5b1561353d57565b60405162461bcd60e51b815260206004820152600a602482015269546f6b656e207a65726f60b01b6044820152606490fd5b1561357657565b60405162461bcd60e51b815260206004820152601160248201527042757965722073656c6c65722073616d6560781b6044820152606490fd5b156135b657565b60405162461bcd60e51b815260206004820152600b60248201526a416d6f756e74207a65726f60a81b6044820152606490fd5b156135f057565b60405162461bcd60e51b81526020600482015260116024820152704d6174757269747920746f6f206c6f6e6760781b6044820152606490fd5b1561363057565b60405162461bcd60e51b81526020600482015260116024820152704d697373696e672062757965722073696760781b6044820152606490fd5b1561367057565b60405162461bcd60e51b815260206004820152601060248201526f105b5bdd5b9d081d1bdbc81cdb585b1b60821b6044820152606490fd5b156136af57565b60405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b21030b93134ba32b960891b6044820152606490fd5b5f1981146108f65760010190565b156136fb57565b60405162461bcd60e51b81526020600482015260126024820152714d696e203120646179206d6174757269747960701b6044820152606490fd5b90600681101561033b5760ff80198354169116179055565b90600182811c9216801561377b575b602083101461376757565b634e487b7160e01b5f52602260045260245ffd5b91607f169161375c565b908060209392818452848401375f828201840152601f01601f1916010190565b9694926137f39896926137e5959260018060a01b03168952602089015260018060a01b03166040880152606087015260c0608087015260c0860191613785565b9260a0818503910152613785565b90565b156137fd57565b60405162461bcd60e51b81526020600482015260126024820152714d697373696e672073656c6c65722073696760701b6044820152606490fd5b1561383e57565b60405162461bcd60e51b81526020600482015260156024820152744e6f74206177616974696e672064656c697665727960581b6044820152606490fd5b1561388257565b60405162461bcd60e51b815260206004820152600e60248201526d446973707574652061637469766560901b6044820152606490fd5b156138bf57565b60405162461bcd60e51b815260206004820152600a602482015269139bc819195c1bdcda5d60b21b6044820152606490fd5b156138f857565b60405162461bcd60e51b815260206004820152601460248201527313585d1d5c9a5d1e481b9bdd081c995858da195960621b6044820152606490fd5b1561393b57565b60405162461bcd60e51b815260206004820152600b60248201526a27b7363c9039b2b63632b960a91b6044820152606490fd5b1561397557565b60405162461bcd60e51b8152602060048201526011602482015270105b1c9958591e481cdd589b5a5d1d1959607a1b6044820152606490fd5b156139b557565b60405162461bcd60e51b815260206004820152600b60248201526a57726f6e6720737461746560a81b6044820152606490fd5b9060405191825f8254926139fb8461374d565b8084529360018116908115613a665750600114613a22575b50613a2092500383613443565b565b90505f9291925260205f20905f915b818310613a4a575050906020613a20928201015f613a13565b6020919350806001915483858901015201910190918492613a31565b905060209250613a2094915060ff191682840152151560051b8201015f613a13565b60405190613a97604083613443565b60018252603160f81b6020830152565b926080929594919560a08501967f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f865260208601526040850152606084015260018060a01b0316910152565b60025f5414613b025760025f55565b60405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606490fd5b90604103613bb4576fa2a8918ca85bafe22016d0b997e4df60600160ff1b03602060408301355f1a92013511613ba557601b8114159081613b99575b50613b8a57565b6307839aef60e21b5f5260045ffd5b601c915014155f613b83565b6354b34b0360e01b5f5260045ffd5b6354f3472360e01b5f5260045ffd5b467f000000000000000000000000000000000000000000000000000000000000000003613c0e577f000000000000000000000000000000000000000000000000000000000000000090565b600d6020604051613c20604082613443565b828152016c50616c696e64726f6d6550617960981b815220610455613c62613c46613a88565b6020815191012060405192839160208301953091469188613aa7565b51902090565b91604103613bb457602081013560408201355f1a6fa2a8918ca85bafe22016d0b997e4df60600160ff1b038211613ba557601b8114159081613d1c575b50613b8a576040519160208301933060601b85526034840152356054830152607482015246609482015260948152613cde60b482613443565b519020805f52600360205260ff60405f205416613d0d575f52600360205260405f20600160ff19825416179055565b63900bb2c960e01b5f5260045ffd5b601c915014155f613ca5565b91908160081c90835f52600560205260405f2060018060a01b0382165f5260205260405f20825f52602052600160ff60405f205494161b93848416613d92575f52600560205260405f209060018060a01b03165f5260205260405f20905f526020521760405f2055565b633ab3447f60e11b5f5260045ffd5b600290805f52816020525f516020615caa5f395f51905f526020600960405f2001613dd18560ff83541692613735565b613dde60405180926132ec565ba3565b600190805f5260026020525f516020615caa5f395f51905f526020600960405f2001613dd18560ff83541692613735565b600390805f5260026020525f516020615caa5f395f51905f526020600960405f2001613dd18560ff83541692613735565b600590805f5260026020525f516020615caa5f395f51905f526020600960405f2001613dd18560ff83541692613735565b508015159081613ec3575b5015613e8757565b60405162461bcd60e51b8152602060048201526014602482015273092dcecc2d8d2c840e8d2e8d8ca40d8cadccee8d60631b6044820152606490fd5b6101f4915011155f613e7f565b506101f410613edb57565b60405162461bcd60e51b815260206004820152601860248201527f496e76616c696420495046532068617368206c656e67746800000000000000006044820152606490fd5b60405163313ce56760e01b815290602090829060049082906001600160a01b0316617530fa5f9181613ff8575b50613f975760405162461bcd60e51b815260206004820152601f60248201527f546f6b656e206d75737420696d706c656d656e7420646563696d616c732829006044820152606490fd5b60ff811660068110159081613fec575b5015613fb05790565b60405162461bcd60e51b8152602060048201526014602482015273556e737570706f7274656420646563696d616c7360601b6044820152606490fd5b6012915011155f613fa7565b9091506020813d60201161402e575b8161401460209383613443565b8101031261035e575160ff8116810361035e57905f613f4d565b3d9150614007565b60ff16604d81116108f657600a0a90565b61405090614036565b80600a0290600a8204036108f65790565b60405160208101908282526020815261407b604082613443565b51902060405190916140f56116336140966020820185613443565b80845260208401906145f78239602060405193818501903082526040860152604085526140c4606086613443565b60405194859383850197518091895e840190838201905f8252519283915e01015f815203601f198101835282613443565b51905ff590811561035e57565b6040516323b872dd60e01b602082019081526001600160a01b0393841660248301529290931660448401526064808401949094529282526141c1925f90819061414c608486613443565b60018060a01b03169260405194614164604087613443565b602086527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646020870152519082855af13d15614252573d916141a583613464565b926141b36040519485613443565b83523d5f602085013e614559565b805190811591821561422f575b5050156141d757565b60405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608490fd5b819250906020918101031261035e5760200151801515810361035e575f806141ce565b606091614559565b91825f52600260205260405f209260ff6009600586015495015460181c16600281115f1461432f576001190160ff81116108f65761429790614036565b60648502858104606414861517156108f6576127109004908082106143275750925b848410156127ad578385039485116108f657604080516001600160a01b039283168152602081018790527f000000000000000000000000000000000000000000000000000000000000000090921690820152606081018490525f516020615c8a5f395f51905f5290608090a2565b9050926142b9565b506142975f614036565b91825f526002602052600560405f200154925f516020615c8a5f395f51905f5260805f946040519060018060a01b0316815286602082015260018060a01b037f00000000000000000000000000000000000000000000000000000000000000001660408201525f6060820152a2565b9060418151145f146143d0576132b991602082015190606060408401519301515f1a906144dd565b50505f90600290565b600581101561033b57806143ea5750565b600181036144375760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606490fd5b600281036144845760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606490fd5b60031461448d57565b60405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608490fd5b6fa2a8918ca85bafe22016d0b997e4df60600160ff1b03841161454e576020935f9360ff60809460405194855216868401526040830152606082015282805260015afa15614543575f516001600160a01b0381161561453b57905f90565b505f90600190565b6040513d5f823e3d90fd5b505050505f90600390565b919290156145bb575081511561456d575090565b3b156145765790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b8251909150156145ce5750805190602001fd5b60405162461bcd60e51b8152602060048201529081906145f29060248301906132f9565b0390fdfe61010080604052346101ce57604081611633803803809161002082856101d2565b8339810103126101ce5780516001600160a01b038116918282036101ce57602001519160015f551561019b5760805260a0524660e0526040516100646040826101d2565b601381527f50616c696e64726f6d6550617957616c6c657400000000000000000000000000602090910152604080517f87935900cf85ca6189e663d7248e1662ff19d0d4c4fd1ac66e148650615f0137916100bf90826101d2565b600181526020810190603160f81b82525190206040519060208201927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604083015260608201524660808201523060a082015260a0815261012360c0826101d2565b51902060c052604051611429908161020a82396080518181816101b3015281816106990152818161073601528181610a0f0152610b20015260a0518181816101830152818161062c0152818161066e015281816109dc01528181610aec0152610d1b015260c05181610e79015260e05181610d9f0152f35b60405162461bcd60e51b815260206004820152600b60248201526a457363726f77207a65726f60a81b6044820152606490fd5b5f80fd5b601f909101601f19168101906001600160401b038211908210176101f557604052565b634e487b7160e01b5f52604160045260245ffdfe60806040526004361015610011575f80fd5b5f3560e01c806312065fe0146100a4578063145d07051461009f5780632a5851a21461009a5780633644e515146100955780633ccfd60b146100905780635753d9891461008b57806393e74d7f14610086578063c80ec522146100815763e42a96e71461007c575f80fd5b610721565b6106ff565b61064f565b610615565b61014d565b610133565b61010c565b6100db565b346100c6575f3660031901126100c65760206100be6109cd565b604051908152f35b5f80fd5b6001600160a01b038116036100c657565b346100c65760203660031901126100c65760206101026004356100fd816100ca565b610add565b6040519015158152f35b346100c65760203660031901126100c65760206100be60043561012e816100ca565b610cee565b346100c6575f3660031901126100c65760206100be610d9d565b346100c6575f3660031901126100c65760025f54146105d05760025f5560015460ff166105c157604051633e8cf2cb60e11b81527f0000000000000000000000000000000000000000000000000000000000000000600482018190526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000165f83602481845afa928315610412575f9361059d575b50610120830151916101fa83610c37565b61020383610c37565b6003831493841580610589575b80610575575b6105665780516001600160a01b0316156105575760208101805190919061024d906001600160a01b03165b6001600160a01b031690565b33141580610537575b80610517575b61050857600261026b82610ec2565b106104f957610281600160ff1981541617600155565b8051610295906001600160a01b0316610241565b6040516370a0823160e01b81523060048201526001600160a01b0382169790969193916020886024818c5afa978815610412575f986104d4575b506102d990610c37565b156104685750604081015160049291906020906001600160a01b03169560405194858092632cfc019d60e21b82525afa928315610412575f93610437575b506001600160a01b038316958615610428577f2b50bbeab304785e1247f1e22da0321897c428768d93e80ab1811e9baa9559019361036861037b926103626101808a96015160ff1690565b9061109c565b94819891928680610417575b5050610f59565b6040805195865260208601929092526001600160a01b031693a45b6040516370a0823160e01b815230600482015290602090829060249082905afa908115610412575f916103e3575b506103d4576103d260015f55565b005b631fea47ef60e01b5f5260045ffd5b610405915060203d60201161040b575b6103fd8183610779565b8101906109be565b5f6103c4565b503d6103f3565b6109b3565b6104219183610f59565b5f86610374565b630665334760e11b5f5260045ffd5b61045a91935060203d602011610461575b6104528183610779565b810190610c46565b915f610317565b503d610448565b515f9594507f2b50bbeab304785e1247f1e22da0321897c428768d93e80ab1811e9baa955901926104cc9250906104ab9086906001600160a01b03168093610f59565b604080519586525f60208701526001600160a01b0390911694918291820190565b0390a4610396565b6102d99198506104f29060203d60201161040b576103fd8183610779565b97906102cf565b633724e34360e11b5f5260045ffd5b630eebd6cd60e21b5f5260045ffd5b50606081015161052f906001600160a01b0316610241565b33141561025c565b50604081015161054f906001600160a01b0316610241565b331415610256565b6381c609f760e01b5f5260045ffd5b635448814d60e11b5f5260045ffd5b5061057f84610c37565b6005841415610216565b5061059384610c37565b6004841415610210565b6105ba9193503d805f833e6105b28183610779565b810190610847565b915f6101e9565b636507689f60e01b5f5260045ffd5b60405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606490fd5b346100c6575f3660031901126100c65760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b346100c6575f3660031901126100c657604051633e8cf2cb60e11b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f816024817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa8015610412576106da915f916106e5575b50610ec2565b604051908152602090f35b6106f991503d805f833e6105b28183610779565b5f6106d4565b346100c6575f3660031901126100c657602060ff600154166040519015158152f35b346100c6575f3660031901126100c6576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b634e487b7160e01b5f52604160045260245ffd5b90601f8019910116810190811067ffffffffffffffff82111761079b57604052565b610765565b604051906107b061020083610779565b565b51906107b0826100ca565b519060068210156100c657565b519081151582036100c657565b519060ff821682036100c657565b67ffffffffffffffff811161079b57601f01601f191660200190565b81601f820112156100c657805190610818826107e5565b926108266040519485610779565b828452602083830101116100c657815f9260208093018386015e8301015290565b6020818303126100c65780519067ffffffffffffffff82116100c65701610200818303126100c6576108776107a0565b91610881826107b2565b835261088f602083016107b2565b60208401526108a0604083016107b2565b60408401526108b1606083016107b2565b60608401526108c2608083016107b2565b608084015260a082015160a084015260c082015160c084015260e082015160e08401526101008201516101008401526108fe61012083016107bd565b61012084015261091161014083016107ca565b61014084015261092461016083016107ca565b61016084015261093761018083016107d7565b6101808401526101a082015167ffffffffffffffff81116100c6578161095e918401610801565b6101a08401526101c082015167ffffffffffffffff81116100c65781610985918401610801565b6101c08401526101e082015167ffffffffffffffff81116100c6576109aa9201610801565b6101e082015290565b6040513d5f823e3d90fd5b908160209103126100c6575190565b604051633e8cf2cb60e11b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f816024816001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa801561041257610a50915f91610ac3575b50516001600160a01b031690565b6001600160a01b03811615610abe57610a71906001600160a01b0316610241565b6040516370a0823160e01b815230600482015290602090829060249082905afa908115610412575f91610aa2575090565b610abb915060203d60201161040b576103fd8183610779565b90565b505f90565b610ad791503d805f833e6105b28183610779565b5f610a42565b604051633e8cf2cb60e11b81527f00000000000000000000000000000000000000000000000000000000000000006004820152905f826024816001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000165afa918215610412575f92610c07575b50602082018051909190610b6c906001600160a01b0316610241565b6001600160a01b03909116908103610b9e57506101c091909101519051610abb91906001600160a01b03165b90610c5b565b604083018051909250610bb9906001600160a01b0316610241565b8103610bdd57506101a091909101519051610abb91906001600160a01b0316610b98565b60608301516001600160a01b031691508114610bf95750505f90565b6101e0610abb920151610c5b565b610c1c9192503d805f833e6105b28183610779565b905f610b50565b634e487b7160e01b5f52602160045260245ffd5b60061115610c4157565b610c23565b908160209103126100c65751610abb816100ca565b6041815103610ce8576001600160a01b038216918215610ce157602082015191606060408201519101515f1a926fa2a8918ca85bafe22016d0b997e4df60600160ff1b038211610ccd57601b84141580610cd6575b610ccd57610cc993610cc461024194610cee565b611110565b1490565b50505050505f90565b50601c841415610cb0565b5050505f90565b50505f90565b60405160208101917f783cf3fdc83d5b0c9e236f4e0bfa8f022a2090d21a4c53f5f99df0d607781fa183527f0000000000000000000000000000000000000000000000000000000000000000604083015230606083015260018060a01b0316608082015260808152610d6160a082610779565b519020610d6c610d9d565b9060405190602082019261190160f01b84526022830152604282015260428152610d97606282610779565b51902090565b7f00000000000000000000000000000000000000000000000000000000000000004614610e77576040610e69610d97601360208451610ddc8682610779565b828152017214185b1a5b991c9bdb5954185e55d85b1b195d606a1b81522092600160208251610e0b8482610779565b828152603160f81b91019081522090517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201908152604082019590955260608101919091524660808201523060a082015291829060c0820190565b03601f198101835282610779565b7f000000000000000000000000000000000000000000000000000000000000000090565b634e487b7160e01b5f52601160045260245ffd5b5f198114610ebd5760010190565b610e9b565b6101c081015160208201515f939291610ee4916001600160a01b031690610c5b565b610f50575b610f056101a082015160018060a01b0360408401511690610c5b565b610f3b575b6101e0810151606090910151610f2b916001600160a01b0390911690610c5b565b610f3157565b90610abb90610eaf565b91610f48610f2b91610eaf565b929050610f0a565b60019250610ee9565b9161100d915f806107b09560405194602086019463a9059cbb60e01b865260018060a01b03166024870152604486015260448552610f98606486610779565b60018060a01b03169260405194610fb0604087610779565b602086527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646020870152519082855af13d1561103b573d91610ff1836107e5565b92610fff6040519485610779565b83523d5f602085013e611381565b8051908115918215611021575b505061113b565b6110349250602080918301019101611127565b5f8061101a565b606091611381565b1561104a57565b60405162461bcd60e51b815260206004820152601860248201527f416d6f756e7420746f6f20736d616c6c20666f722066656500000000000000006044820152606490fd5b91908203918211610ebd57565b9060ff166002811115611107576001190160ff8111610ebd5760ff905b16604d8111610ebd57600a0a606482029082820460641483151715610ebd576110fd9161271090049080821061110057505b80926110f8818310611043565b61108f565b91565b90506110eb565b5060ff5f6110b9565b91610abb939161111f9361119a565b919091611215565b908160209103126100c657610abb906107ca565b1561114257565b60405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608490fd5b6fa2a8918ca85bafe22016d0b997e4df60600160ff1b038411611200576020935f9360ff60809460405194855216868401526040830152606082015282805260015afa15610412575f516001600160a01b038116156111f857905f90565b505f90600190565b505050505f90600390565b60051115610c4157565b61121e8161120b565b806112265750565b61122f8161120b565b6001810361127c5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606490fd5b6112858161120b565b600281036112d25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606490fd5b806112de60039261120b565b146112e557565b60405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608490fd5b1561133c57565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b919290156113a15750815115611395575090565b610abb903b1515611335565b8251909150156113b45750805190602001fd5b604460209160405192839162461bcd60e51b83528160048401528051918291826024860152018484015e5f828201840152601f01601f19168101030190fdfea2646970667358221220daeaa85eaa9e7ca5a9b1b81c77bb7f59be17f6575d4c33af61742834a38212c264736f6c634300081d00339a98d2f378553651c1f49353593985b1cda0f6d7e9ab1062bb365dc9172a5cd5db73a95b5021282afa069105f6341730da3d69b308a9167526d1d9d4855ce6e6d3e0574cb952cf8d88c9c2b97882e6000237da1d62a64753eaddaf4d9ce7351b4efd0eb8137437cc21ded7c1b056cd5a6e457ad8830e42d74bb9ba46144dbe8318e785d11512625ba8e5486b7d963f337dfc0a628752fe18e284b0375eefe46ca2646970667358221220a8d3728845aa66b53145f84faa14006c049394825894bf7816db4d90009810ce64736f6c634300081d0033",
|
|
1138
|
+
"linkReferences": {},
|
|
1139
|
+
"deployedLinkReferences": {},
|
|
1140
|
+
"immutableReferences": {
|
|
1141
|
+
"2565": [
|
|
1142
|
+
{
|
|
1143
|
+
"length": 32,
|
|
1144
|
+
"start": 2426
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"length": 32,
|
|
1148
|
+
"start": 10075
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
"length": 32,
|
|
1152
|
+
"start": 17125
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
"length": 32,
|
|
1156
|
+
"start": 17274
|
|
1157
|
+
}
|
|
1158
|
+
],
|
|
1159
|
+
"2568": [
|
|
1160
|
+
{
|
|
1161
|
+
"length": 32,
|
|
1162
|
+
"start": 6524
|
|
1163
|
+
}
|
|
1164
|
+
],
|
|
1165
|
+
"2571": [
|
|
1166
|
+
{
|
|
1167
|
+
"length": 32,
|
|
1168
|
+
"start": 15340
|
|
1169
|
+
}
|
|
1170
|
+
],
|
|
1171
|
+
"2574": [
|
|
1172
|
+
{
|
|
1173
|
+
"length": 32,
|
|
1174
|
+
"start": 15302
|
|
1175
|
+
}
|
|
1176
|
+
]
|
|
1177
|
+
},
|
|
1178
|
+
"inputSourceName": "project/contracts/PalindromePay.sol",
|
|
1179
|
+
"buildInfoId": "solc-0_8_29-ac7efe6dec024ae99366bc2df99af957ef433f3d"
|
|
1180
|
+
}
|