@venusprotocol/governance-contracts 1.4.0-dev.2 → 1.4.0-dev.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. package/artifacts/@openzeppelin/contracts/access/AccessControl.sol/AccessControl.dbg.json +1 -1
  2. package/artifacts/@openzeppelin/contracts/access/IAccessControl.sol/IAccessControl.dbg.json +1 -1
  3. package/artifacts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json +1 -1
  4. package/artifacts/@openzeppelin/contracts/utils/Strings.sol/Strings.dbg.json +1 -1
  5. package/artifacts/@openzeppelin/contracts/utils/introspection/ERC165.sol/ERC165.dbg.json +1 -1
  6. package/artifacts/@openzeppelin/contracts/utils/introspection/IERC165.sol/IERC165.dbg.json +1 -1
  7. package/artifacts/@openzeppelin/contracts/utils/math/Math.sol/Math.dbg.json +1 -1
  8. package/artifacts/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol/Ownable2StepUpgradeable.dbg.json +1 -1
  9. package/artifacts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json +1 -1
  10. package/artifacts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json +1 -1
  11. package/artifacts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json +1 -1
  12. package/artifacts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json +1 -1
  13. package/artifacts/build-info/5c939a36c2c6b8a9a6706a808e87cc78.json +1 -0
  14. package/artifacts/contracts/Governance/AccessControlManager.sol/AccessControlManager.dbg.json +1 -1
  15. package/artifacts/contracts/Governance/AccessControlledV8.sol/AccessControlledV8.dbg.json +1 -1
  16. package/artifacts/contracts/Governance/IAccessControlManagerV8.sol/IAccessControlManagerV8.dbg.json +1 -1
  17. package/artifacts/contracts/Governance/TimelockV8.sol/TimelockV8.dbg.json +4 -0
  18. package/artifacts/contracts/Governance/TimelockV8.sol/TimelockV8.json +445 -0
  19. package/artifacts/contracts/test/MockAccessTest.sol/MockAccessTest.dbg.json +1 -1
  20. package/artifacts/contracts/test/TestTimelockV8.sol/TestTimelockV8.dbg.json +4 -0
  21. package/artifacts/contracts/test/TestTimelockV8.sol/TestTimelockV8.json +445 -0
  22. package/contracts/Governance/TimelockV8.sol +229 -0
  23. package/contracts/test/TestTimelockV8.sol +19 -0
  24. package/package.json +4 -1
  25. package/artifacts/build-info/0e028ff5062f0f59a7ffef92b702c074.json +0 -1
@@ -0,0 +1,445 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "TestTimelockV8",
4
+ "sourceName": "contracts/test/TestTimelockV8.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "admin_",
11
+ "type": "address"
12
+ },
13
+ {
14
+ "internalType": "uint256",
15
+ "name": "delay_",
16
+ "type": "uint256"
17
+ }
18
+ ],
19
+ "stateMutability": "nonpayable",
20
+ "type": "constructor"
21
+ },
22
+ {
23
+ "inputs": [],
24
+ "name": "ZeroAddressNotAllowed",
25
+ "type": "error"
26
+ },
27
+ {
28
+ "anonymous": false,
29
+ "inputs": [
30
+ {
31
+ "indexed": true,
32
+ "internalType": "bytes32",
33
+ "name": "txHash",
34
+ "type": "bytes32"
35
+ },
36
+ {
37
+ "indexed": true,
38
+ "internalType": "address",
39
+ "name": "target",
40
+ "type": "address"
41
+ },
42
+ {
43
+ "indexed": false,
44
+ "internalType": "uint256",
45
+ "name": "value",
46
+ "type": "uint256"
47
+ },
48
+ {
49
+ "indexed": false,
50
+ "internalType": "string",
51
+ "name": "signature",
52
+ "type": "string"
53
+ },
54
+ {
55
+ "indexed": false,
56
+ "internalType": "bytes",
57
+ "name": "data",
58
+ "type": "bytes"
59
+ },
60
+ {
61
+ "indexed": false,
62
+ "internalType": "uint256",
63
+ "name": "eta",
64
+ "type": "uint256"
65
+ }
66
+ ],
67
+ "name": "CancelTransaction",
68
+ "type": "event"
69
+ },
70
+ {
71
+ "anonymous": false,
72
+ "inputs": [
73
+ {
74
+ "indexed": true,
75
+ "internalType": "bytes32",
76
+ "name": "txHash",
77
+ "type": "bytes32"
78
+ },
79
+ {
80
+ "indexed": true,
81
+ "internalType": "address",
82
+ "name": "target",
83
+ "type": "address"
84
+ },
85
+ {
86
+ "indexed": false,
87
+ "internalType": "uint256",
88
+ "name": "value",
89
+ "type": "uint256"
90
+ },
91
+ {
92
+ "indexed": false,
93
+ "internalType": "string",
94
+ "name": "signature",
95
+ "type": "string"
96
+ },
97
+ {
98
+ "indexed": false,
99
+ "internalType": "bytes",
100
+ "name": "data",
101
+ "type": "bytes"
102
+ },
103
+ {
104
+ "indexed": false,
105
+ "internalType": "uint256",
106
+ "name": "eta",
107
+ "type": "uint256"
108
+ }
109
+ ],
110
+ "name": "ExecuteTransaction",
111
+ "type": "event"
112
+ },
113
+ {
114
+ "anonymous": false,
115
+ "inputs": [
116
+ {
117
+ "indexed": true,
118
+ "internalType": "address",
119
+ "name": "newAdmin",
120
+ "type": "address"
121
+ }
122
+ ],
123
+ "name": "NewAdmin",
124
+ "type": "event"
125
+ },
126
+ {
127
+ "anonymous": false,
128
+ "inputs": [
129
+ {
130
+ "indexed": true,
131
+ "internalType": "uint256",
132
+ "name": "newDelay",
133
+ "type": "uint256"
134
+ }
135
+ ],
136
+ "name": "NewDelay",
137
+ "type": "event"
138
+ },
139
+ {
140
+ "anonymous": false,
141
+ "inputs": [
142
+ {
143
+ "indexed": true,
144
+ "internalType": "address",
145
+ "name": "newPendingAdmin",
146
+ "type": "address"
147
+ }
148
+ ],
149
+ "name": "NewPendingAdmin",
150
+ "type": "event"
151
+ },
152
+ {
153
+ "anonymous": false,
154
+ "inputs": [
155
+ {
156
+ "indexed": true,
157
+ "internalType": "bytes32",
158
+ "name": "txHash",
159
+ "type": "bytes32"
160
+ },
161
+ {
162
+ "indexed": true,
163
+ "internalType": "address",
164
+ "name": "target",
165
+ "type": "address"
166
+ },
167
+ {
168
+ "indexed": false,
169
+ "internalType": "uint256",
170
+ "name": "value",
171
+ "type": "uint256"
172
+ },
173
+ {
174
+ "indexed": false,
175
+ "internalType": "string",
176
+ "name": "signature",
177
+ "type": "string"
178
+ },
179
+ {
180
+ "indexed": false,
181
+ "internalType": "bytes",
182
+ "name": "data",
183
+ "type": "bytes"
184
+ },
185
+ {
186
+ "indexed": false,
187
+ "internalType": "uint256",
188
+ "name": "eta",
189
+ "type": "uint256"
190
+ }
191
+ ],
192
+ "name": "QueueTransaction",
193
+ "type": "event"
194
+ },
195
+ {
196
+ "stateMutability": "payable",
197
+ "type": "fallback"
198
+ },
199
+ {
200
+ "inputs": [],
201
+ "name": "acceptAdmin",
202
+ "outputs": [],
203
+ "stateMutability": "nonpayable",
204
+ "type": "function"
205
+ },
206
+ {
207
+ "inputs": [],
208
+ "name": "admin",
209
+ "outputs": [
210
+ {
211
+ "internalType": "address",
212
+ "name": "",
213
+ "type": "address"
214
+ }
215
+ ],
216
+ "stateMutability": "view",
217
+ "type": "function"
218
+ },
219
+ {
220
+ "inputs": [
221
+ {
222
+ "internalType": "address",
223
+ "name": "target",
224
+ "type": "address"
225
+ },
226
+ {
227
+ "internalType": "uint256",
228
+ "name": "value",
229
+ "type": "uint256"
230
+ },
231
+ {
232
+ "internalType": "string",
233
+ "name": "signature",
234
+ "type": "string"
235
+ },
236
+ {
237
+ "internalType": "bytes",
238
+ "name": "data",
239
+ "type": "bytes"
240
+ },
241
+ {
242
+ "internalType": "uint256",
243
+ "name": "eta",
244
+ "type": "uint256"
245
+ }
246
+ ],
247
+ "name": "cancelTransaction",
248
+ "outputs": [],
249
+ "stateMutability": "nonpayable",
250
+ "type": "function"
251
+ },
252
+ {
253
+ "inputs": [],
254
+ "name": "delay",
255
+ "outputs": [
256
+ {
257
+ "internalType": "uint256",
258
+ "name": "",
259
+ "type": "uint256"
260
+ }
261
+ ],
262
+ "stateMutability": "view",
263
+ "type": "function"
264
+ },
265
+ {
266
+ "inputs": [
267
+ {
268
+ "internalType": "address",
269
+ "name": "target",
270
+ "type": "address"
271
+ },
272
+ {
273
+ "internalType": "uint256",
274
+ "name": "value",
275
+ "type": "uint256"
276
+ },
277
+ {
278
+ "internalType": "string",
279
+ "name": "signature",
280
+ "type": "string"
281
+ },
282
+ {
283
+ "internalType": "bytes",
284
+ "name": "data",
285
+ "type": "bytes"
286
+ },
287
+ {
288
+ "internalType": "uint256",
289
+ "name": "eta",
290
+ "type": "uint256"
291
+ }
292
+ ],
293
+ "name": "executeTransaction",
294
+ "outputs": [
295
+ {
296
+ "internalType": "bytes",
297
+ "name": "",
298
+ "type": "bytes"
299
+ }
300
+ ],
301
+ "stateMutability": "payable",
302
+ "type": "function"
303
+ },
304
+ {
305
+ "inputs": [],
306
+ "name": "getGracePeriod",
307
+ "outputs": [
308
+ {
309
+ "internalType": "uint256",
310
+ "name": "",
311
+ "type": "uint256"
312
+ }
313
+ ],
314
+ "stateMutability": "view",
315
+ "type": "function"
316
+ },
317
+ {
318
+ "inputs": [],
319
+ "name": "getMaximumDelay",
320
+ "outputs": [
321
+ {
322
+ "internalType": "uint256",
323
+ "name": "",
324
+ "type": "uint256"
325
+ }
326
+ ],
327
+ "stateMutability": "view",
328
+ "type": "function"
329
+ },
330
+ {
331
+ "inputs": [],
332
+ "name": "getMinimumDelay",
333
+ "outputs": [
334
+ {
335
+ "internalType": "uint256",
336
+ "name": "",
337
+ "type": "uint256"
338
+ }
339
+ ],
340
+ "stateMutability": "view",
341
+ "type": "function"
342
+ },
343
+ {
344
+ "inputs": [],
345
+ "name": "pendingAdmin",
346
+ "outputs": [
347
+ {
348
+ "internalType": "address",
349
+ "name": "",
350
+ "type": "address"
351
+ }
352
+ ],
353
+ "stateMutability": "view",
354
+ "type": "function"
355
+ },
356
+ {
357
+ "inputs": [
358
+ {
359
+ "internalType": "address",
360
+ "name": "target",
361
+ "type": "address"
362
+ },
363
+ {
364
+ "internalType": "uint256",
365
+ "name": "value",
366
+ "type": "uint256"
367
+ },
368
+ {
369
+ "internalType": "string",
370
+ "name": "signature",
371
+ "type": "string"
372
+ },
373
+ {
374
+ "internalType": "bytes",
375
+ "name": "data",
376
+ "type": "bytes"
377
+ },
378
+ {
379
+ "internalType": "uint256",
380
+ "name": "eta",
381
+ "type": "uint256"
382
+ }
383
+ ],
384
+ "name": "queueTransaction",
385
+ "outputs": [
386
+ {
387
+ "internalType": "bytes32",
388
+ "name": "",
389
+ "type": "bytes32"
390
+ }
391
+ ],
392
+ "stateMutability": "nonpayable",
393
+ "type": "function"
394
+ },
395
+ {
396
+ "inputs": [
397
+ {
398
+ "internalType": "bytes32",
399
+ "name": "",
400
+ "type": "bytes32"
401
+ }
402
+ ],
403
+ "name": "queuedTransactions",
404
+ "outputs": [
405
+ {
406
+ "internalType": "bool",
407
+ "name": "",
408
+ "type": "bool"
409
+ }
410
+ ],
411
+ "stateMutability": "view",
412
+ "type": "function"
413
+ },
414
+ {
415
+ "inputs": [
416
+ {
417
+ "internalType": "uint256",
418
+ "name": "delay_",
419
+ "type": "uint256"
420
+ }
421
+ ],
422
+ "name": "setDelay",
423
+ "outputs": [],
424
+ "stateMutability": "nonpayable",
425
+ "type": "function"
426
+ },
427
+ {
428
+ "inputs": [
429
+ {
430
+ "internalType": "address",
431
+ "name": "pendingAdmin_",
432
+ "type": "address"
433
+ }
434
+ ],
435
+ "name": "setPendingAdmin",
436
+ "outputs": [],
437
+ "stateMutability": "nonpayable",
438
+ "type": "function"
439
+ }
440
+ ],
441
+ "bytecode": "0x608060405234801561001057600080fd5b506040516113bc3803806113bc83398101604081905261002f91610184565b818160018110156100ad5760405162461bcd60e51b815260206004820152603760248201527f54696d656c6f636b3a3a636f6e7374727563746f723a2044656c6179206d757360448201527f7420657863656564206d696e696d756d2064656c61792e00000000000000000060648201526084015b60405180910390fd5b610e108111156101255760405162461bcd60e51b815260206004820152603860248201527f54696d656c6f636b3a3a73657444656c61793a2044656c6179206d757374206e60448201527f6f7420657863656564206d6178696d756d2064656c61792e000000000000000060648201526084016100a4565b61012e8261015a565b600080546001600160a01b0319166001600160a01b039390931692909217909155600255506101be9050565b6001600160a01b038116610181576040516342bcdf7f60e11b815260040160405180910390fd5b50565b6000806040838503121561019757600080fd5b82516001600160a01b03811681146101ae57600080fd5b6020939093015192949293505050565b6111ef806101cd6000396000f3fe6080604052600436106100c95760003560e01c8063591fcdfe11610079578063dbd1838811610056578063dbd18388146100cb578063e177246e14610200578063f2b0653714610220578063f851a4401461026057005b8063591fcdfe146101b55780636a42b8f8146101d5578063d89aac39146101eb57005b806326782247116100a757806326782247146101235780633a66f901146101755780634dd18bf51461019557005b806303c27621146100cb5780630825f38f146100ee5780630e18b6811461010e575b005b3480156100d757600080fd5b5060015b6040519081526020015b60405180910390f35b6101016100fc366004610f06565b61028d565b6040516100e59190611031565b34801561011a57600080fd5b506100c96106ca565b34801561012f57600080fd5b506001546101509073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100e5565b34801561018157600080fd5b506100db610190366004610f06565b6107b8565b3480156101a157600080fd5b506100c96101b036600461104b565b6109d6565b3480156101c157600080fd5b506100c96101d0366004610f06565b610ac3565b3480156101e157600080fd5b506100db60025481565b3480156101f757600080fd5b50610e106100db565b34801561020c57600080fd5b506100c961021b366004611066565b610c33565b34801561022c57600080fd5b5061025061023b366004611066565b60036020526000908152604090205460ff1681565b60405190151581526020016100e5565b34801561026c57600080fd5b506000546101509073ffffffffffffffffffffffffffffffffffffffff1681565b60005460609073ffffffffffffffffffffffffffffffffffffffff1633146103225760405162461bcd60e51b815260206004820152603860248201527f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20436160448201527f6c6c206d75737420636f6d652066726f6d2061646d696e2e000000000000000060648201526084015b60405180910390fd5b6000868686868660405160200161033d95949392919061107f565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291815281516020928301206000818152600390935291205490915060ff166103f85760405162461bcd60e51b815260206004820152603d60248201527f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260448201527f616e73616374696f6e206861736e2774206265656e207175657565642e0000006064820152608401610319565b824210156104945760405162461bcd60e51b815260206004820152604560248201527f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260448201527f616e73616374696f6e206861736e2774207375727061737365642074696d652060648201527f6c6f636b2e000000000000000000000000000000000000000000000000000000608482015260a401610319565b61049f6001846110d9565b4211156105145760405162461bcd60e51b815260206004820152603360248201527f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260448201527f616e73616374696f6e206973207374616c652e000000000000000000000000006064820152608401610319565b600081815260036020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055855160609103610559575083610585565b858051906020012085604051602001610573929190611118565b60405160208183030381529060405290505b6000808973ffffffffffffffffffffffffffffffffffffffff1689846040516105ae9190611160565b60006040518083038185875af1925050503d80600081146105eb576040519150601f19603f3d011682016040523d82523d6000602084013e6105f0565b606091505b5091509150816106685760405162461bcd60e51b815260206004820152603d60248201527f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260448201527f616e73616374696f6e20657865637574696f6e2072657665727465642e0000006064820152608401610319565b8973ffffffffffffffffffffffffffffffffffffffff16847fa560e3198060a2f10670c1ec5b403077ea6ae93ca8de1c32b451dc1a943cd6e78b8b8b8b6040516106b5949392919061117c565b60405180910390a39998505050505050505050565b60015473ffffffffffffffffffffffffffffffffffffffff1633146107575760405162461bcd60e51b815260206004820152603860248201527f54696d656c6f636b3a3a61636365707441646d696e3a2043616c6c206d75737460448201527f20636f6d652066726f6d2070656e64696e6741646d696e2e00000000000000006064820152608401610319565b60008054337fffffffffffffffffffffffff0000000000000000000000000000000000000000918216811783556001805490921690915560405190917f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c91a2565b6000805473ffffffffffffffffffffffffffffffffffffffff1633146108465760405162461bcd60e51b815260206004820152603660248201527f54696d656c6f636b3a3a71756575655472616e73616374696f6e3a2043616c6c60448201527f206d75737420636f6d652066726f6d2061646d696e2e000000000000000000006064820152608401610319565b60025461085390426110d9565b8210156108ee5760405162461bcd60e51b815260206004820152604960248201527f54696d656c6f636b3a3a71756575655472616e73616374696f6e3a204573746960448201527f6d6174656420657865637574696f6e20626c6f636b206d75737420736174697360648201527f66792064656c61792e0000000000000000000000000000000000000000000000608482015260a401610319565b6000868686868660405160200161090995949392919061107f565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815282825280516020918201206000818152600390925291902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055915073ffffffffffffffffffffffffffffffffffffffff88169082907f76e2796dc3a81d57b0e8504b647febcbeeb5f4af818e164f11eef8131a6a763f906109c4908a908a908a908a9061117c565b60405180910390a39695505050505050565b333014610a4b5760405162461bcd60e51b815260206004820152603860248201527f54696d656c6f636b3a3a73657450656e64696e6741646d696e3a2043616c6c2060448201527f6d75737420636f6d652066726f6d2054696d656c6f636b2e00000000000000006064820152608401610319565b610a5481610dca565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f69d78e38a01985fbb1462961809b4b2d65531bc93b2b94037f3334b82ca4a75690600090a250565b60005473ffffffffffffffffffffffffffffffffffffffff163314610b505760405162461bcd60e51b815260206004820152603760248201527f54696d656c6f636b3a3a63616e63656c5472616e73616374696f6e3a2043616c60448201527f6c206d75737420636f6d652066726f6d2061646d696e2e0000000000000000006064820152608401610319565b60008585858585604051602001610b6b95949392919061107f565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815282825280516020918201206000818152600390925291902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055915073ffffffffffffffffffffffffffffffffffffffff87169082907f2fffc091a501fd91bfbff27141450d3acb40fb8e6d8382b243ec7a812a3aaf8790610c2390899089908990899061117c565b60405180910390a3505050505050565b333014610ca85760405162461bcd60e51b815260206004820152603160248201527f54696d656c6f636b3a3a73657444656c61793a2043616c6c206d75737420636f60448201527f6d652066726f6d2054696d656c6f636b2e0000000000000000000000000000006064820152608401610319565b6001811015610d1f5760405162461bcd60e51b815260206004820152603460248201527f54696d656c6f636b3a3a73657444656c61793a2044656c6179206d757374206560448201527f7863656564206d696e696d756d2064656c61792e0000000000000000000000006064820152608401610319565b610e10811115610d975760405162461bcd60e51b815260206004820152603860248201527f54696d656c6f636b3a3a73657444656c61793a2044656c6179206d757374206e60448201527f6f7420657863656564206d6178696d756d2064656c61792e00000000000000006064820152608401610319565b600281905560405181907f948b1f6a42ee138b7e34058ba85a37f716d55ff25ff05a763f15bed6a04c8d2c90600090a250565b73ffffffffffffffffffffffffffffffffffffffff8116610e17576040517f8579befe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b803573ffffffffffffffffffffffffffffffffffffffff81168114610e3e57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115610e8d57610e8d610e43565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715610ed357610ed3610e43565b81604052809350858152868686011115610eec57600080fd5b858560208301376000602087830101525050509392505050565b600080600080600060a08688031215610f1e57600080fd5b610f2786610e1a565b945060208601359350604086013567ffffffffffffffff80821115610f4b57600080fd5b818801915088601f830112610f5f57600080fd5b610f6e89833560208501610e72565b94506060880135915080821115610f8457600080fd5b508601601f81018813610f9657600080fd5b610fa588823560208401610e72565b95989497509295608001359392505050565b60005b83811015610fd2578181015183820152602001610fba565b83811115610fe1576000848401525b50505050565b60008151808452610fff816020860160208601610fb7565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006110446020830184610fe7565b9392505050565b60006020828403121561105d57600080fd5b61104482610e1a565b60006020828403121561107857600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8616815284602082015260a0604082015260006110b460a0830186610fe7565b82810360608401526110c68186610fe7565b9150508260808301529695505050505050565b60008219821115611113577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b7fffffffff000000000000000000000000000000000000000000000000000000008316815260008251611152816004850160208701610fb7565b919091016004019392505050565b60008251611172818460208701610fb7565b9190910192915050565b8481526080602082015260006111956080830186610fe7565b82810360408401526111a78186610fe7565b9150508260608301529594505050505056fea264697066735822122086207ada28363c6a4d4b8e9bf8a1f3937322b1787cc0618456de220df022b2f164736f6c634300080d0033",
442
+ "deployedBytecode": "0x6080604052600436106100c95760003560e01c8063591fcdfe11610079578063dbd1838811610056578063dbd18388146100cb578063e177246e14610200578063f2b0653714610220578063f851a4401461026057005b8063591fcdfe146101b55780636a42b8f8146101d5578063d89aac39146101eb57005b806326782247116100a757806326782247146101235780633a66f901146101755780634dd18bf51461019557005b806303c27621146100cb5780630825f38f146100ee5780630e18b6811461010e575b005b3480156100d757600080fd5b5060015b6040519081526020015b60405180910390f35b6101016100fc366004610f06565b61028d565b6040516100e59190611031565b34801561011a57600080fd5b506100c96106ca565b34801561012f57600080fd5b506001546101509073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100e5565b34801561018157600080fd5b506100db610190366004610f06565b6107b8565b3480156101a157600080fd5b506100c96101b036600461104b565b6109d6565b3480156101c157600080fd5b506100c96101d0366004610f06565b610ac3565b3480156101e157600080fd5b506100db60025481565b3480156101f757600080fd5b50610e106100db565b34801561020c57600080fd5b506100c961021b366004611066565b610c33565b34801561022c57600080fd5b5061025061023b366004611066565b60036020526000908152604090205460ff1681565b60405190151581526020016100e5565b34801561026c57600080fd5b506000546101509073ffffffffffffffffffffffffffffffffffffffff1681565b60005460609073ffffffffffffffffffffffffffffffffffffffff1633146103225760405162461bcd60e51b815260206004820152603860248201527f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20436160448201527f6c6c206d75737420636f6d652066726f6d2061646d696e2e000000000000000060648201526084015b60405180910390fd5b6000868686868660405160200161033d95949392919061107f565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291815281516020928301206000818152600390935291205490915060ff166103f85760405162461bcd60e51b815260206004820152603d60248201527f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260448201527f616e73616374696f6e206861736e2774206265656e207175657565642e0000006064820152608401610319565b824210156104945760405162461bcd60e51b815260206004820152604560248201527f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260448201527f616e73616374696f6e206861736e2774207375727061737365642074696d652060648201527f6c6f636b2e000000000000000000000000000000000000000000000000000000608482015260a401610319565b61049f6001846110d9565b4211156105145760405162461bcd60e51b815260206004820152603360248201527f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260448201527f616e73616374696f6e206973207374616c652e000000000000000000000000006064820152608401610319565b600081815260036020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055855160609103610559575083610585565b858051906020012085604051602001610573929190611118565b60405160208183030381529060405290505b6000808973ffffffffffffffffffffffffffffffffffffffff1689846040516105ae9190611160565b60006040518083038185875af1925050503d80600081146105eb576040519150601f19603f3d011682016040523d82523d6000602084013e6105f0565b606091505b5091509150816106685760405162461bcd60e51b815260206004820152603d60248201527f54696d656c6f636b3a3a657865637574655472616e73616374696f6e3a20547260448201527f616e73616374696f6e20657865637574696f6e2072657665727465642e0000006064820152608401610319565b8973ffffffffffffffffffffffffffffffffffffffff16847fa560e3198060a2f10670c1ec5b403077ea6ae93ca8de1c32b451dc1a943cd6e78b8b8b8b6040516106b5949392919061117c565b60405180910390a39998505050505050505050565b60015473ffffffffffffffffffffffffffffffffffffffff1633146107575760405162461bcd60e51b815260206004820152603860248201527f54696d656c6f636b3a3a61636365707441646d696e3a2043616c6c206d75737460448201527f20636f6d652066726f6d2070656e64696e6741646d696e2e00000000000000006064820152608401610319565b60008054337fffffffffffffffffffffffff0000000000000000000000000000000000000000918216811783556001805490921690915560405190917f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c91a2565b6000805473ffffffffffffffffffffffffffffffffffffffff1633146108465760405162461bcd60e51b815260206004820152603660248201527f54696d656c6f636b3a3a71756575655472616e73616374696f6e3a2043616c6c60448201527f206d75737420636f6d652066726f6d2061646d696e2e000000000000000000006064820152608401610319565b60025461085390426110d9565b8210156108ee5760405162461bcd60e51b815260206004820152604960248201527f54696d656c6f636b3a3a71756575655472616e73616374696f6e3a204573746960448201527f6d6174656420657865637574696f6e20626c6f636b206d75737420736174697360648201527f66792064656c61792e0000000000000000000000000000000000000000000000608482015260a401610319565b6000868686868660405160200161090995949392919061107f565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815282825280516020918201206000818152600390925291902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055915073ffffffffffffffffffffffffffffffffffffffff88169082907f76e2796dc3a81d57b0e8504b647febcbeeb5f4af818e164f11eef8131a6a763f906109c4908a908a908a908a9061117c565b60405180910390a39695505050505050565b333014610a4b5760405162461bcd60e51b815260206004820152603860248201527f54696d656c6f636b3a3a73657450656e64696e6741646d696e3a2043616c6c2060448201527f6d75737420636f6d652066726f6d2054696d656c6f636b2e00000000000000006064820152608401610319565b610a5481610dca565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517f69d78e38a01985fbb1462961809b4b2d65531bc93b2b94037f3334b82ca4a75690600090a250565b60005473ffffffffffffffffffffffffffffffffffffffff163314610b505760405162461bcd60e51b815260206004820152603760248201527f54696d656c6f636b3a3a63616e63656c5472616e73616374696f6e3a2043616c60448201527f6c206d75737420636f6d652066726f6d2061646d696e2e0000000000000000006064820152608401610319565b60008585858585604051602001610b6b95949392919061107f565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815282825280516020918201206000818152600390925291902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055915073ffffffffffffffffffffffffffffffffffffffff87169082907f2fffc091a501fd91bfbff27141450d3acb40fb8e6d8382b243ec7a812a3aaf8790610c2390899089908990899061117c565b60405180910390a3505050505050565b333014610ca85760405162461bcd60e51b815260206004820152603160248201527f54696d656c6f636b3a3a73657444656c61793a2043616c6c206d75737420636f60448201527f6d652066726f6d2054696d656c6f636b2e0000000000000000000000000000006064820152608401610319565b6001811015610d1f5760405162461bcd60e51b815260206004820152603460248201527f54696d656c6f636b3a3a73657444656c61793a2044656c6179206d757374206560448201527f7863656564206d696e696d756d2064656c61792e0000000000000000000000006064820152608401610319565b610e10811115610d975760405162461bcd60e51b815260206004820152603860248201527f54696d656c6f636b3a3a73657444656c61793a2044656c6179206d757374206e60448201527f6f7420657863656564206d6178696d756d2064656c61792e00000000000000006064820152608401610319565b600281905560405181907f948b1f6a42ee138b7e34058ba85a37f716d55ff25ff05a763f15bed6a04c8d2c90600090a250565b73ffffffffffffffffffffffffffffffffffffffff8116610e17576040517f8579befe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b803573ffffffffffffffffffffffffffffffffffffffff81168114610e3e57600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115610e8d57610e8d610e43565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715610ed357610ed3610e43565b81604052809350858152868686011115610eec57600080fd5b858560208301376000602087830101525050509392505050565b600080600080600060a08688031215610f1e57600080fd5b610f2786610e1a565b945060208601359350604086013567ffffffffffffffff80821115610f4b57600080fd5b818801915088601f830112610f5f57600080fd5b610f6e89833560208501610e72565b94506060880135915080821115610f8457600080fd5b508601601f81018813610f9657600080fd5b610fa588823560208401610e72565b95989497509295608001359392505050565b60005b83811015610fd2578181015183820152602001610fba565b83811115610fe1576000848401525b50505050565b60008151808452610fff816020860160208601610fb7565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006110446020830184610fe7565b9392505050565b60006020828403121561105d57600080fd5b61104482610e1a565b60006020828403121561107857600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8616815284602082015260a0604082015260006110b460a0830186610fe7565b82810360608401526110c68186610fe7565b9150508260808301529695505050505050565b60008219821115611113577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b7fffffffff000000000000000000000000000000000000000000000000000000008316815260008251611152816004850160208701610fb7565b919091016004019392505050565b60008251611172818460208701610fb7565b9190910192915050565b8481526080602082015260006111956080830186610fe7565b82810360408401526111a78186610fe7565b9150508260608301529594505050505056fea264697066735822122086207ada28363c6a4d4b8e9bf8a1f3937322b1787cc0618456de220df022b2f164736f6c634300080d0033",
443
+ "linkReferences": {},
444
+ "deployedLinkReferences": {}
445
+ }