@keep-network/tbtc-v2 0.1.1-dev.100 → 0.1.1-dev.103
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/Bank.json +6 -6
- package/artifacts/Bridge.json +11 -11
- package/artifacts/BridgeGovernance.json +2931 -0
- package/artifacts/BridgeGovernanceParameters.json +1445 -0
- package/artifacts/Deposit.json +7 -7
- package/artifacts/DepositSweep.json +9 -9
- package/artifacts/EcdsaDkgValidator.json +3 -3
- package/artifacts/EcdsaInactivity.json +3 -3
- package/artifacts/EcdsaSortitionPool.json +5 -5
- package/artifacts/Fraud.json +7 -7
- package/artifacts/KeepRegistry.json +3 -3
- package/artifacts/KeepStake.json +5 -5
- package/artifacts/KeepToken.json +5 -5
- package/artifacts/KeepTokenStaking.json +3 -3
- package/artifacts/MaintainerProxy.json +1522 -0
- package/artifacts/MovingFunds.json +7 -7
- package/artifacts/NuCypherStakingEscrow.json +3 -3
- package/artifacts/NuCypherToken.json +5 -5
- package/artifacts/RandomBeaconStub.json +3 -3
- package/artifacts/Redemption.json +9 -9
- package/artifacts/ReimbursementPool.json +5 -5
- package/artifacts/Relay.json +9 -9
- package/artifacts/T.json +5 -5
- package/artifacts/TBTC.json +6 -6
- package/artifacts/TBTCToken.json +6 -6
- package/artifacts/TBTCVault.json +12 -12
- package/artifacts/TokenStaking.json +3 -3
- package/artifacts/TokenholderGovernor.json +19 -19
- package/artifacts/TokenholderTimelock.json +17 -17
- package/artifacts/VendingMachine.json +13 -13
- package/artifacts/VendingMachineKeep.json +3 -3
- package/artifacts/VendingMachineNuCypher.json +3 -3
- package/artifacts/WalletRegistry.json +11 -11
- package/artifacts/WalletRegistryGovernance.json +5 -5
- package/artifacts/Wallets.json +7 -7
- package/artifacts/solcInputs/{8b65103759482b36742c6820fa66b63b.json → 4d9b6f53ac50e0b0457be71c45eba893.json} +31 -22
- package/build/contracts/GovernanceUtils.sol/GovernanceUtils.dbg.json +1 -1
- package/build/contracts/bank/Bank.sol/Bank.dbg.json +1 -1
- package/build/contracts/bank/IReceiveBalanceApproval.sol/IReceiveBalanceApproval.dbg.json +1 -1
- package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.dbg.json +1 -1
- package/build/contracts/bridge/BitcoinTx.sol/BitcoinTx.json +2 -2
- package/build/contracts/bridge/Bridge.sol/Bridge.dbg.json +1 -1
- package/build/contracts/bridge/Bridge.sol/Bridge.json +2 -2
- package/build/contracts/bridge/BridgeGovernance.sol/BridgeGovernance.dbg.json +4 -0
- package/build/contracts/bridge/BridgeGovernance.sol/BridgeGovernance.json +2246 -0
- package/build/contracts/bridge/BridgeGovernanceParameters.sol/BridgeGovernanceParameters.dbg.json +4 -0
- package/build/contracts/bridge/BridgeGovernanceParameters.sol/BridgeGovernanceParameters.json +971 -0
- package/build/contracts/bridge/BridgeState.sol/BridgeState.dbg.json +1 -1
- package/build/contracts/bridge/BridgeState.sol/BridgeState.json +2 -2
- package/build/contracts/bridge/Deposit.sol/Deposit.dbg.json +1 -1
- package/build/contracts/bridge/Deposit.sol/Deposit.json +2 -2
- package/build/contracts/bridge/DepositSweep.sol/DepositSweep.dbg.json +1 -1
- package/build/contracts/bridge/DepositSweep.sol/DepositSweep.json +2 -2
- package/build/contracts/bridge/EcdsaLib.sol/EcdsaLib.dbg.json +1 -1
- package/build/contracts/bridge/Fraud.sol/Fraud.dbg.json +1 -1
- package/build/contracts/bridge/Fraud.sol/Fraud.json +2 -2
- package/build/contracts/bridge/Heartbeat.sol/Heartbeat.dbg.json +1 -1
- package/build/contracts/bridge/IRelay.sol/IRelay.dbg.json +1 -1
- package/build/contracts/bridge/MovingFunds.sol/MovingFunds.dbg.json +1 -1
- package/build/contracts/bridge/MovingFunds.sol/MovingFunds.json +2 -2
- package/build/contracts/bridge/Redemption.sol/OutboundTx.dbg.json +1 -1
- package/build/contracts/bridge/Redemption.sol/OutboundTx.json +2 -2
- package/build/contracts/bridge/Redemption.sol/Redemption.dbg.json +1 -1
- package/build/contracts/bridge/Redemption.sol/Redemption.json +2 -2
- package/build/contracts/bridge/VendingMachine.sol/VendingMachine.dbg.json +1 -1
- package/build/contracts/bridge/Wallets.sol/Wallets.dbg.json +1 -1
- package/build/contracts/bridge/Wallets.sol/Wallets.json +2 -2
- package/build/contracts/maintainer/MaintainerProxy.sol/MaintainerProxy.dbg.json +4 -0
- package/build/contracts/maintainer/MaintainerProxy.sol/MaintainerProxy.json +1111 -0
- package/build/contracts/token/TBTC.sol/TBTC.dbg.json +1 -1
- package/build/contracts/vault/DonationVault.sol/DonationVault.dbg.json +1 -1
- package/build/contracts/vault/IVault.sol/IVault.dbg.json +1 -1
- package/build/contracts/vault/TBTCVault.sol/TBTCVault.dbg.json +1 -1
- package/contracts/bridge/Bridge.sol +2 -2
- package/contracts/bridge/BridgeGovernance.sol +1533 -0
- package/contracts/bridge/BridgeGovernanceParameters.sol +1695 -0
- package/contracts/bridge/Redemption.sol +3 -3
- package/contracts/maintainer/MaintainerProxy.sol +512 -0
- package/deploy/07_deploy_bridge_governance.ts +40 -0
- package/deploy/08_deploy_maintainer_proxy.ts +30 -0
- package/deploy/{07_bank_update_bridge.ts → 09_bank_update_bridge.ts} +0 -0
- package/deploy/{08_transfer_bank_ownership.ts → 10_transfer_bank_ownership.ts} +0 -0
- package/deploy/{10_transfer_bridge_governance.ts → 11_transfer_bridge_governance.ts} +4 -2
- package/deploy/12_transfer_bridge_governance_ownership.ts +19 -0
- package/deploy/{09_transfer_tbtc_vault_ownership.ts → 13_transfer_tbtc_vault_ownership.ts} +0 -0
- package/deploy/14_transfer_maintainer_proxy_ownership.ts +19 -0
- package/deploy/{11_initialize_wallet_owner.ts → 15_initialize_wallet_owner.ts} +0 -0
- package/deploy/{11_transfer_proxy_admin_ownership.ts → 16_transfer_proxy_admin_ownership.ts} +0 -0
- package/deploy/17_authorize_maintainer_proxy.ts +22 -0
- package/deploy/18_transfer_reimbursement_pool_ownership.ts +19 -0
- package/deploy/{12_deploy_proxy_admin_with_deputy.ts → 19_deploy_proxy_admin_with_deputy.ts} +0 -0
- package/export.json +3812 -0
- package/package.json +1 -1
|
@@ -0,0 +1,2246 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "BridgeGovernance",
|
|
4
|
+
"sourceName": "contracts/bridge/BridgeGovernance.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "contract Bridge",
|
|
10
|
+
"name": "_bridge",
|
|
11
|
+
"type": "address"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"internalType": "uint256",
|
|
15
|
+
"name": "_governanceDelay",
|
|
16
|
+
"type": "uint256"
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"stateMutability": "nonpayable",
|
|
20
|
+
"type": "constructor"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"anonymous": false,
|
|
24
|
+
"inputs": [
|
|
25
|
+
{
|
|
26
|
+
"indexed": false,
|
|
27
|
+
"internalType": "address",
|
|
28
|
+
"name": "newBridgeGovernance",
|
|
29
|
+
"type": "address"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"indexed": false,
|
|
33
|
+
"internalType": "uint256",
|
|
34
|
+
"name": "timestamp",
|
|
35
|
+
"type": "uint256"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"name": "BridgeGovernanceTransferStarted",
|
|
39
|
+
"type": "event"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"anonymous": false,
|
|
43
|
+
"inputs": [
|
|
44
|
+
{
|
|
45
|
+
"indexed": false,
|
|
46
|
+
"internalType": "uint64",
|
|
47
|
+
"name": "newDepositDustThreshold",
|
|
48
|
+
"type": "uint64"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"indexed": false,
|
|
52
|
+
"internalType": "uint256",
|
|
53
|
+
"name": "timestamp",
|
|
54
|
+
"type": "uint256"
|
|
55
|
+
}
|
|
56
|
+
],
|
|
57
|
+
"name": "DepositDustThresholdUpdateStarted",
|
|
58
|
+
"type": "event"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"anonymous": false,
|
|
62
|
+
"inputs": [
|
|
63
|
+
{
|
|
64
|
+
"indexed": false,
|
|
65
|
+
"internalType": "uint64",
|
|
66
|
+
"name": "depositDustThreshold",
|
|
67
|
+
"type": "uint64"
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"name": "DepositDustThresholdUpdated",
|
|
71
|
+
"type": "event"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"anonymous": false,
|
|
75
|
+
"inputs": [
|
|
76
|
+
{
|
|
77
|
+
"indexed": false,
|
|
78
|
+
"internalType": "uint64",
|
|
79
|
+
"name": "depositTreasuryFeeDivisor",
|
|
80
|
+
"type": "uint64"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"indexed": false,
|
|
84
|
+
"internalType": "uint256",
|
|
85
|
+
"name": "timestamp",
|
|
86
|
+
"type": "uint256"
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"name": "DepositTreasuryFeeDivisorUpdateStarted",
|
|
90
|
+
"type": "event"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"anonymous": false,
|
|
94
|
+
"inputs": [
|
|
95
|
+
{
|
|
96
|
+
"indexed": false,
|
|
97
|
+
"internalType": "uint64",
|
|
98
|
+
"name": "depositTreasuryFeeDivisor",
|
|
99
|
+
"type": "uint64"
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"name": "DepositTreasuryFeeDivisorUpdated",
|
|
103
|
+
"type": "event"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"anonymous": false,
|
|
107
|
+
"inputs": [
|
|
108
|
+
{
|
|
109
|
+
"indexed": false,
|
|
110
|
+
"internalType": "uint64",
|
|
111
|
+
"name": "newDepositTxMaxFee",
|
|
112
|
+
"type": "uint64"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"indexed": false,
|
|
116
|
+
"internalType": "uint256",
|
|
117
|
+
"name": "timestamp",
|
|
118
|
+
"type": "uint256"
|
|
119
|
+
}
|
|
120
|
+
],
|
|
121
|
+
"name": "DepositTxMaxFeeUpdateStarted",
|
|
122
|
+
"type": "event"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"anonymous": false,
|
|
126
|
+
"inputs": [
|
|
127
|
+
{
|
|
128
|
+
"indexed": false,
|
|
129
|
+
"internalType": "uint64",
|
|
130
|
+
"name": "depositTxMaxFee",
|
|
131
|
+
"type": "uint64"
|
|
132
|
+
}
|
|
133
|
+
],
|
|
134
|
+
"name": "DepositTxMaxFeeUpdated",
|
|
135
|
+
"type": "event"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"anonymous": false,
|
|
139
|
+
"inputs": [
|
|
140
|
+
{
|
|
141
|
+
"indexed": false,
|
|
142
|
+
"internalType": "uint32",
|
|
143
|
+
"name": "newFraudChallengeDefeatTimeout",
|
|
144
|
+
"type": "uint32"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"indexed": false,
|
|
148
|
+
"internalType": "uint256",
|
|
149
|
+
"name": "timestamp",
|
|
150
|
+
"type": "uint256"
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"name": "FraudChallengeDefeatTimeoutUpdateStarted",
|
|
154
|
+
"type": "event"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"anonymous": false,
|
|
158
|
+
"inputs": [
|
|
159
|
+
{
|
|
160
|
+
"indexed": false,
|
|
161
|
+
"internalType": "uint32",
|
|
162
|
+
"name": "fraudChallengeDefeatTimeout",
|
|
163
|
+
"type": "uint32"
|
|
164
|
+
}
|
|
165
|
+
],
|
|
166
|
+
"name": "FraudChallengeDefeatTimeoutUpdated",
|
|
167
|
+
"type": "event"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"anonymous": false,
|
|
171
|
+
"inputs": [
|
|
172
|
+
{
|
|
173
|
+
"indexed": false,
|
|
174
|
+
"internalType": "uint96",
|
|
175
|
+
"name": "newFraudChallengeDepositAmount",
|
|
176
|
+
"type": "uint96"
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
"indexed": false,
|
|
180
|
+
"internalType": "uint256",
|
|
181
|
+
"name": "timestamp",
|
|
182
|
+
"type": "uint256"
|
|
183
|
+
}
|
|
184
|
+
],
|
|
185
|
+
"name": "FraudChallengeDepositAmountUpdateStarted",
|
|
186
|
+
"type": "event"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"anonymous": false,
|
|
190
|
+
"inputs": [
|
|
191
|
+
{
|
|
192
|
+
"indexed": false,
|
|
193
|
+
"internalType": "uint96",
|
|
194
|
+
"name": "fraudChallengeDepositAmount",
|
|
195
|
+
"type": "uint96"
|
|
196
|
+
}
|
|
197
|
+
],
|
|
198
|
+
"name": "FraudChallengeDepositAmountUpdated",
|
|
199
|
+
"type": "event"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"anonymous": false,
|
|
203
|
+
"inputs": [
|
|
204
|
+
{
|
|
205
|
+
"indexed": false,
|
|
206
|
+
"internalType": "uint32",
|
|
207
|
+
"name": "newFraudNotifierRewardMultiplier",
|
|
208
|
+
"type": "uint32"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"indexed": false,
|
|
212
|
+
"internalType": "uint256",
|
|
213
|
+
"name": "timestamp",
|
|
214
|
+
"type": "uint256"
|
|
215
|
+
}
|
|
216
|
+
],
|
|
217
|
+
"name": "FraudNotifierRewardMultiplierUpdateStarted",
|
|
218
|
+
"type": "event"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"anonymous": false,
|
|
222
|
+
"inputs": [
|
|
223
|
+
{
|
|
224
|
+
"indexed": false,
|
|
225
|
+
"internalType": "uint32",
|
|
226
|
+
"name": "fraudNotifierRewardMultiplier",
|
|
227
|
+
"type": "uint32"
|
|
228
|
+
}
|
|
229
|
+
],
|
|
230
|
+
"name": "FraudNotifierRewardMultiplierUpdated",
|
|
231
|
+
"type": "event"
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"anonymous": false,
|
|
235
|
+
"inputs": [
|
|
236
|
+
{
|
|
237
|
+
"indexed": false,
|
|
238
|
+
"internalType": "uint96",
|
|
239
|
+
"name": "newFraudSlashingAmount",
|
|
240
|
+
"type": "uint96"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"indexed": false,
|
|
244
|
+
"internalType": "uint256",
|
|
245
|
+
"name": "timestamp",
|
|
246
|
+
"type": "uint256"
|
|
247
|
+
}
|
|
248
|
+
],
|
|
249
|
+
"name": "FraudSlashingAmountUpdateStarted",
|
|
250
|
+
"type": "event"
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"anonymous": false,
|
|
254
|
+
"inputs": [
|
|
255
|
+
{
|
|
256
|
+
"indexed": false,
|
|
257
|
+
"internalType": "uint96",
|
|
258
|
+
"name": "fraudSlashingAmount",
|
|
259
|
+
"type": "uint96"
|
|
260
|
+
}
|
|
261
|
+
],
|
|
262
|
+
"name": "FraudSlashingAmountUpdated",
|
|
263
|
+
"type": "event"
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"anonymous": false,
|
|
267
|
+
"inputs": [
|
|
268
|
+
{
|
|
269
|
+
"indexed": false,
|
|
270
|
+
"internalType": "uint32",
|
|
271
|
+
"name": "newMovedFundsSweepTimeoutNotifierRewardMultiplier",
|
|
272
|
+
"type": "uint32"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"indexed": false,
|
|
276
|
+
"internalType": "uint256",
|
|
277
|
+
"name": "timestamp",
|
|
278
|
+
"type": "uint256"
|
|
279
|
+
}
|
|
280
|
+
],
|
|
281
|
+
"name": "MovedFundsSweepTimeoutNotifierRewardMultiplierUpdateStarted",
|
|
282
|
+
"type": "event"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"anonymous": false,
|
|
286
|
+
"inputs": [
|
|
287
|
+
{
|
|
288
|
+
"indexed": false,
|
|
289
|
+
"internalType": "uint32",
|
|
290
|
+
"name": "movedFundsSweepTimeoutNotifierRewardMultiplier",
|
|
291
|
+
"type": "uint32"
|
|
292
|
+
}
|
|
293
|
+
],
|
|
294
|
+
"name": "MovedFundsSweepTimeoutNotifierRewardMultiplierUpdated",
|
|
295
|
+
"type": "event"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"anonymous": false,
|
|
299
|
+
"inputs": [
|
|
300
|
+
{
|
|
301
|
+
"indexed": false,
|
|
302
|
+
"internalType": "uint96",
|
|
303
|
+
"name": "newMovedFundsSweepTimeoutSlashingAmount",
|
|
304
|
+
"type": "uint96"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"indexed": false,
|
|
308
|
+
"internalType": "uint256",
|
|
309
|
+
"name": "timestamp",
|
|
310
|
+
"type": "uint256"
|
|
311
|
+
}
|
|
312
|
+
],
|
|
313
|
+
"name": "MovedFundsSweepTimeoutSlashingAmountUpdateStarted",
|
|
314
|
+
"type": "event"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"anonymous": false,
|
|
318
|
+
"inputs": [
|
|
319
|
+
{
|
|
320
|
+
"indexed": false,
|
|
321
|
+
"internalType": "uint96",
|
|
322
|
+
"name": "movedFundsSweepTimeoutSlashingAmount",
|
|
323
|
+
"type": "uint96"
|
|
324
|
+
}
|
|
325
|
+
],
|
|
326
|
+
"name": "MovedFundsSweepTimeoutSlashingAmountUpdated",
|
|
327
|
+
"type": "event"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"anonymous": false,
|
|
331
|
+
"inputs": [
|
|
332
|
+
{
|
|
333
|
+
"indexed": false,
|
|
334
|
+
"internalType": "uint32",
|
|
335
|
+
"name": "newMovedFundsSweepTimeout",
|
|
336
|
+
"type": "uint32"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"indexed": false,
|
|
340
|
+
"internalType": "uint256",
|
|
341
|
+
"name": "timestamp",
|
|
342
|
+
"type": "uint256"
|
|
343
|
+
}
|
|
344
|
+
],
|
|
345
|
+
"name": "MovedFundsSweepTimeoutUpdateStarted",
|
|
346
|
+
"type": "event"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"anonymous": false,
|
|
350
|
+
"inputs": [
|
|
351
|
+
{
|
|
352
|
+
"indexed": false,
|
|
353
|
+
"internalType": "uint32",
|
|
354
|
+
"name": "movedFundsSweepTimeout",
|
|
355
|
+
"type": "uint32"
|
|
356
|
+
}
|
|
357
|
+
],
|
|
358
|
+
"name": "MovedFundsSweepTimeoutUpdated",
|
|
359
|
+
"type": "event"
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"anonymous": false,
|
|
363
|
+
"inputs": [
|
|
364
|
+
{
|
|
365
|
+
"indexed": false,
|
|
366
|
+
"internalType": "uint64",
|
|
367
|
+
"name": "newMovedFundsSweepTxMaxTotalFee",
|
|
368
|
+
"type": "uint64"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"indexed": false,
|
|
372
|
+
"internalType": "uint256",
|
|
373
|
+
"name": "timestamp",
|
|
374
|
+
"type": "uint256"
|
|
375
|
+
}
|
|
376
|
+
],
|
|
377
|
+
"name": "MovedFundsSweepTxMaxTotalFeeUpdateStarted",
|
|
378
|
+
"type": "event"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"anonymous": false,
|
|
382
|
+
"inputs": [
|
|
383
|
+
{
|
|
384
|
+
"indexed": false,
|
|
385
|
+
"internalType": "uint64",
|
|
386
|
+
"name": "movedFundsSweepTxMaxTotalFee",
|
|
387
|
+
"type": "uint64"
|
|
388
|
+
}
|
|
389
|
+
],
|
|
390
|
+
"name": "MovedFundsSweepTxMaxTotalFeeUpdated",
|
|
391
|
+
"type": "event"
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"anonymous": false,
|
|
395
|
+
"inputs": [
|
|
396
|
+
{
|
|
397
|
+
"indexed": false,
|
|
398
|
+
"internalType": "uint64",
|
|
399
|
+
"name": "newMovingFundsDustThreshold",
|
|
400
|
+
"type": "uint64"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"indexed": false,
|
|
404
|
+
"internalType": "uint256",
|
|
405
|
+
"name": "timestamp",
|
|
406
|
+
"type": "uint256"
|
|
407
|
+
}
|
|
408
|
+
],
|
|
409
|
+
"name": "MovingFundsDustThresholdUpdateStarted",
|
|
410
|
+
"type": "event"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"anonymous": false,
|
|
414
|
+
"inputs": [
|
|
415
|
+
{
|
|
416
|
+
"indexed": false,
|
|
417
|
+
"internalType": "uint64",
|
|
418
|
+
"name": "movingFundsDustThreshold",
|
|
419
|
+
"type": "uint64"
|
|
420
|
+
}
|
|
421
|
+
],
|
|
422
|
+
"name": "MovingFundsDustThresholdUpdated",
|
|
423
|
+
"type": "event"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"anonymous": false,
|
|
427
|
+
"inputs": [
|
|
428
|
+
{
|
|
429
|
+
"indexed": false,
|
|
430
|
+
"internalType": "uint32",
|
|
431
|
+
"name": "newMovingFundsTimeoutNotifierRewardMultiplier",
|
|
432
|
+
"type": "uint32"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"indexed": false,
|
|
436
|
+
"internalType": "uint256",
|
|
437
|
+
"name": "timestamp",
|
|
438
|
+
"type": "uint256"
|
|
439
|
+
}
|
|
440
|
+
],
|
|
441
|
+
"name": "MovingFundsTimeoutNotifierRewardMultiplierUpdateStarted",
|
|
442
|
+
"type": "event"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"anonymous": false,
|
|
446
|
+
"inputs": [
|
|
447
|
+
{
|
|
448
|
+
"indexed": false,
|
|
449
|
+
"internalType": "uint32",
|
|
450
|
+
"name": "movingFundsTimeoutNotifierRewardMultiplier",
|
|
451
|
+
"type": "uint32"
|
|
452
|
+
}
|
|
453
|
+
],
|
|
454
|
+
"name": "MovingFundsTimeoutNotifierRewardMultiplierUpdated",
|
|
455
|
+
"type": "event"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"anonymous": false,
|
|
459
|
+
"inputs": [
|
|
460
|
+
{
|
|
461
|
+
"indexed": false,
|
|
462
|
+
"internalType": "uint32",
|
|
463
|
+
"name": "newMovingFundsTimeoutResetDelay",
|
|
464
|
+
"type": "uint32"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"indexed": false,
|
|
468
|
+
"internalType": "uint256",
|
|
469
|
+
"name": "timestamp",
|
|
470
|
+
"type": "uint256"
|
|
471
|
+
}
|
|
472
|
+
],
|
|
473
|
+
"name": "MovingFundsTimeoutResetDelayUpdateStarted",
|
|
474
|
+
"type": "event"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"anonymous": false,
|
|
478
|
+
"inputs": [
|
|
479
|
+
{
|
|
480
|
+
"indexed": false,
|
|
481
|
+
"internalType": "uint32",
|
|
482
|
+
"name": "movingFundsTimeoutResetDelay",
|
|
483
|
+
"type": "uint32"
|
|
484
|
+
}
|
|
485
|
+
],
|
|
486
|
+
"name": "MovingFundsTimeoutResetDelayUpdated",
|
|
487
|
+
"type": "event"
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"anonymous": false,
|
|
491
|
+
"inputs": [
|
|
492
|
+
{
|
|
493
|
+
"indexed": false,
|
|
494
|
+
"internalType": "uint96",
|
|
495
|
+
"name": "newMovingFundsTimeoutSlashingAmount",
|
|
496
|
+
"type": "uint96"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"indexed": false,
|
|
500
|
+
"internalType": "uint256",
|
|
501
|
+
"name": "timestamp",
|
|
502
|
+
"type": "uint256"
|
|
503
|
+
}
|
|
504
|
+
],
|
|
505
|
+
"name": "MovingFundsTimeoutSlashingAmountUpdateStarted",
|
|
506
|
+
"type": "event"
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"anonymous": false,
|
|
510
|
+
"inputs": [
|
|
511
|
+
{
|
|
512
|
+
"indexed": false,
|
|
513
|
+
"internalType": "uint96",
|
|
514
|
+
"name": "movingFundsTimeoutSlashingAmount",
|
|
515
|
+
"type": "uint96"
|
|
516
|
+
}
|
|
517
|
+
],
|
|
518
|
+
"name": "MovingFundsTimeoutSlashingAmountUpdated",
|
|
519
|
+
"type": "event"
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"anonymous": false,
|
|
523
|
+
"inputs": [
|
|
524
|
+
{
|
|
525
|
+
"indexed": false,
|
|
526
|
+
"internalType": "uint32",
|
|
527
|
+
"name": "newMovingFundsTimeout",
|
|
528
|
+
"type": "uint32"
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"indexed": false,
|
|
532
|
+
"internalType": "uint256",
|
|
533
|
+
"name": "timestamp",
|
|
534
|
+
"type": "uint256"
|
|
535
|
+
}
|
|
536
|
+
],
|
|
537
|
+
"name": "MovingFundsTimeoutUpdateStarted",
|
|
538
|
+
"type": "event"
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"anonymous": false,
|
|
542
|
+
"inputs": [
|
|
543
|
+
{
|
|
544
|
+
"indexed": false,
|
|
545
|
+
"internalType": "uint32",
|
|
546
|
+
"name": "movingFundsTimeout",
|
|
547
|
+
"type": "uint32"
|
|
548
|
+
}
|
|
549
|
+
],
|
|
550
|
+
"name": "MovingFundsTimeoutUpdated",
|
|
551
|
+
"type": "event"
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"anonymous": false,
|
|
555
|
+
"inputs": [
|
|
556
|
+
{
|
|
557
|
+
"indexed": false,
|
|
558
|
+
"internalType": "uint64",
|
|
559
|
+
"name": "newMovingFundsTxMaxTotalFee",
|
|
560
|
+
"type": "uint64"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"indexed": false,
|
|
564
|
+
"internalType": "uint256",
|
|
565
|
+
"name": "timestamp",
|
|
566
|
+
"type": "uint256"
|
|
567
|
+
}
|
|
568
|
+
],
|
|
569
|
+
"name": "MovingFundsTxMaxTotalFeeUpdateStarted",
|
|
570
|
+
"type": "event"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"anonymous": false,
|
|
574
|
+
"inputs": [
|
|
575
|
+
{
|
|
576
|
+
"indexed": false,
|
|
577
|
+
"internalType": "uint64",
|
|
578
|
+
"name": "movingFundsTxMaxTotalFee",
|
|
579
|
+
"type": "uint64"
|
|
580
|
+
}
|
|
581
|
+
],
|
|
582
|
+
"name": "MovingFundsTxMaxTotalFeeUpdated",
|
|
583
|
+
"type": "event"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"anonymous": false,
|
|
587
|
+
"inputs": [
|
|
588
|
+
{
|
|
589
|
+
"indexed": true,
|
|
590
|
+
"internalType": "address",
|
|
591
|
+
"name": "previousOwner",
|
|
592
|
+
"type": "address"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"indexed": true,
|
|
596
|
+
"internalType": "address",
|
|
597
|
+
"name": "newOwner",
|
|
598
|
+
"type": "address"
|
|
599
|
+
}
|
|
600
|
+
],
|
|
601
|
+
"name": "OwnershipTransferred",
|
|
602
|
+
"type": "event"
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"anonymous": false,
|
|
606
|
+
"inputs": [
|
|
607
|
+
{
|
|
608
|
+
"indexed": false,
|
|
609
|
+
"internalType": "uint64",
|
|
610
|
+
"name": "newRedemptionDustThreshold",
|
|
611
|
+
"type": "uint64"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"indexed": false,
|
|
615
|
+
"internalType": "uint256",
|
|
616
|
+
"name": "timestamp",
|
|
617
|
+
"type": "uint256"
|
|
618
|
+
}
|
|
619
|
+
],
|
|
620
|
+
"name": "RedemptionDustThresholdUpdateStarted",
|
|
621
|
+
"type": "event"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"anonymous": false,
|
|
625
|
+
"inputs": [
|
|
626
|
+
{
|
|
627
|
+
"indexed": false,
|
|
628
|
+
"internalType": "uint64",
|
|
629
|
+
"name": "redemptionDustThreshold",
|
|
630
|
+
"type": "uint64"
|
|
631
|
+
}
|
|
632
|
+
],
|
|
633
|
+
"name": "RedemptionDustThresholdUpdated",
|
|
634
|
+
"type": "event"
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"anonymous": false,
|
|
638
|
+
"inputs": [
|
|
639
|
+
{
|
|
640
|
+
"indexed": false,
|
|
641
|
+
"internalType": "uint32",
|
|
642
|
+
"name": "newRedemptionTimeoutNotifierRewardMultiplier",
|
|
643
|
+
"type": "uint32"
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"indexed": false,
|
|
647
|
+
"internalType": "uint256",
|
|
648
|
+
"name": "timestamp",
|
|
649
|
+
"type": "uint256"
|
|
650
|
+
}
|
|
651
|
+
],
|
|
652
|
+
"name": "RedemptionTimeoutNotifierRewardMultiplierUpdateStarted",
|
|
653
|
+
"type": "event"
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"anonymous": false,
|
|
657
|
+
"inputs": [
|
|
658
|
+
{
|
|
659
|
+
"indexed": false,
|
|
660
|
+
"internalType": "uint32",
|
|
661
|
+
"name": "redemptionTimeoutNotifierRewardMultiplier",
|
|
662
|
+
"type": "uint32"
|
|
663
|
+
}
|
|
664
|
+
],
|
|
665
|
+
"name": "RedemptionTimeoutNotifierRewardMultiplierUpdated",
|
|
666
|
+
"type": "event"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"anonymous": false,
|
|
670
|
+
"inputs": [
|
|
671
|
+
{
|
|
672
|
+
"indexed": false,
|
|
673
|
+
"internalType": "uint96",
|
|
674
|
+
"name": "newRedemptionTimeoutSlashingAmount",
|
|
675
|
+
"type": "uint96"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"indexed": false,
|
|
679
|
+
"internalType": "uint256",
|
|
680
|
+
"name": "timestamp",
|
|
681
|
+
"type": "uint256"
|
|
682
|
+
}
|
|
683
|
+
],
|
|
684
|
+
"name": "RedemptionTimeoutSlashingAmountUpdateStarted",
|
|
685
|
+
"type": "event"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"anonymous": false,
|
|
689
|
+
"inputs": [
|
|
690
|
+
{
|
|
691
|
+
"indexed": false,
|
|
692
|
+
"internalType": "uint96",
|
|
693
|
+
"name": "redemptionTimeoutSlashingAmount",
|
|
694
|
+
"type": "uint96"
|
|
695
|
+
}
|
|
696
|
+
],
|
|
697
|
+
"name": "RedemptionTimeoutSlashingAmountUpdated",
|
|
698
|
+
"type": "event"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"anonymous": false,
|
|
702
|
+
"inputs": [
|
|
703
|
+
{
|
|
704
|
+
"indexed": false,
|
|
705
|
+
"internalType": "uint32",
|
|
706
|
+
"name": "newRedemptionTimeout",
|
|
707
|
+
"type": "uint32"
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"indexed": false,
|
|
711
|
+
"internalType": "uint256",
|
|
712
|
+
"name": "timestamp",
|
|
713
|
+
"type": "uint256"
|
|
714
|
+
}
|
|
715
|
+
],
|
|
716
|
+
"name": "RedemptionTimeoutUpdateStarted",
|
|
717
|
+
"type": "event"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"anonymous": false,
|
|
721
|
+
"inputs": [
|
|
722
|
+
{
|
|
723
|
+
"indexed": false,
|
|
724
|
+
"internalType": "uint32",
|
|
725
|
+
"name": "redemptionTimeout",
|
|
726
|
+
"type": "uint32"
|
|
727
|
+
}
|
|
728
|
+
],
|
|
729
|
+
"name": "RedemptionTimeoutUpdated",
|
|
730
|
+
"type": "event"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"anonymous": false,
|
|
734
|
+
"inputs": [
|
|
735
|
+
{
|
|
736
|
+
"indexed": false,
|
|
737
|
+
"internalType": "uint64",
|
|
738
|
+
"name": "newRedemptionTreasuryFeeDivisor",
|
|
739
|
+
"type": "uint64"
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"indexed": false,
|
|
743
|
+
"internalType": "uint256",
|
|
744
|
+
"name": "timestamp",
|
|
745
|
+
"type": "uint256"
|
|
746
|
+
}
|
|
747
|
+
],
|
|
748
|
+
"name": "RedemptionTreasuryFeeDivisorUpdateStarted",
|
|
749
|
+
"type": "event"
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"anonymous": false,
|
|
753
|
+
"inputs": [
|
|
754
|
+
{
|
|
755
|
+
"indexed": false,
|
|
756
|
+
"internalType": "uint64",
|
|
757
|
+
"name": "redemptionTreasuryFeeDivisor",
|
|
758
|
+
"type": "uint64"
|
|
759
|
+
}
|
|
760
|
+
],
|
|
761
|
+
"name": "RedemptionTreasuryFeeDivisorUpdated",
|
|
762
|
+
"type": "event"
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"anonymous": false,
|
|
766
|
+
"inputs": [
|
|
767
|
+
{
|
|
768
|
+
"indexed": false,
|
|
769
|
+
"internalType": "uint64",
|
|
770
|
+
"name": "newRedemptionTxMaxFee",
|
|
771
|
+
"type": "uint64"
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
"indexed": false,
|
|
775
|
+
"internalType": "uint256",
|
|
776
|
+
"name": "timestamp",
|
|
777
|
+
"type": "uint256"
|
|
778
|
+
}
|
|
779
|
+
],
|
|
780
|
+
"name": "RedemptionTxMaxFeeUpdateStarted",
|
|
781
|
+
"type": "event"
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
"anonymous": false,
|
|
785
|
+
"inputs": [
|
|
786
|
+
{
|
|
787
|
+
"indexed": false,
|
|
788
|
+
"internalType": "uint64",
|
|
789
|
+
"name": "redemptionTxMaxFee",
|
|
790
|
+
"type": "uint64"
|
|
791
|
+
}
|
|
792
|
+
],
|
|
793
|
+
"name": "RedemptionTxMaxFeeUpdated",
|
|
794
|
+
"type": "event"
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"anonymous": false,
|
|
798
|
+
"inputs": [
|
|
799
|
+
{
|
|
800
|
+
"indexed": false,
|
|
801
|
+
"internalType": "uint32",
|
|
802
|
+
"name": "newWalletClosingPeriod",
|
|
803
|
+
"type": "uint32"
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
"indexed": false,
|
|
807
|
+
"internalType": "uint256",
|
|
808
|
+
"name": "timestamp",
|
|
809
|
+
"type": "uint256"
|
|
810
|
+
}
|
|
811
|
+
],
|
|
812
|
+
"name": "WalletClosingPeriodUpdateStarted",
|
|
813
|
+
"type": "event"
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"anonymous": false,
|
|
817
|
+
"inputs": [
|
|
818
|
+
{
|
|
819
|
+
"indexed": false,
|
|
820
|
+
"internalType": "uint32",
|
|
821
|
+
"name": "walletClosingPeriod",
|
|
822
|
+
"type": "uint32"
|
|
823
|
+
}
|
|
824
|
+
],
|
|
825
|
+
"name": "WalletClosingPeriodUpdated",
|
|
826
|
+
"type": "event"
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"anonymous": false,
|
|
830
|
+
"inputs": [
|
|
831
|
+
{
|
|
832
|
+
"indexed": false,
|
|
833
|
+
"internalType": "uint64",
|
|
834
|
+
"name": "newWalletClosureMinBtcBalance",
|
|
835
|
+
"type": "uint64"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"indexed": false,
|
|
839
|
+
"internalType": "uint256",
|
|
840
|
+
"name": "timestamp",
|
|
841
|
+
"type": "uint256"
|
|
842
|
+
}
|
|
843
|
+
],
|
|
844
|
+
"name": "WalletClosureMinBtcBalanceUpdateStarted",
|
|
845
|
+
"type": "event"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"anonymous": false,
|
|
849
|
+
"inputs": [
|
|
850
|
+
{
|
|
851
|
+
"indexed": false,
|
|
852
|
+
"internalType": "uint64",
|
|
853
|
+
"name": "walletClosureMinBtcBalance",
|
|
854
|
+
"type": "uint64"
|
|
855
|
+
}
|
|
856
|
+
],
|
|
857
|
+
"name": "WalletClosureMinBtcBalanceUpdated",
|
|
858
|
+
"type": "event"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"anonymous": false,
|
|
862
|
+
"inputs": [
|
|
863
|
+
{
|
|
864
|
+
"indexed": false,
|
|
865
|
+
"internalType": "uint64",
|
|
866
|
+
"name": "newWalletCreationMaxBtcBalance",
|
|
867
|
+
"type": "uint64"
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"indexed": false,
|
|
871
|
+
"internalType": "uint256",
|
|
872
|
+
"name": "timestamp",
|
|
873
|
+
"type": "uint256"
|
|
874
|
+
}
|
|
875
|
+
],
|
|
876
|
+
"name": "WalletCreationMaxBtcBalanceUpdateStarted",
|
|
877
|
+
"type": "event"
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"anonymous": false,
|
|
881
|
+
"inputs": [
|
|
882
|
+
{
|
|
883
|
+
"indexed": false,
|
|
884
|
+
"internalType": "uint64",
|
|
885
|
+
"name": "walletCreationMaxBtcBalance",
|
|
886
|
+
"type": "uint64"
|
|
887
|
+
}
|
|
888
|
+
],
|
|
889
|
+
"name": "WalletCreationMaxBtcBalanceUpdated",
|
|
890
|
+
"type": "event"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"anonymous": false,
|
|
894
|
+
"inputs": [
|
|
895
|
+
{
|
|
896
|
+
"indexed": false,
|
|
897
|
+
"internalType": "uint64",
|
|
898
|
+
"name": "newWalletCreationMinBtcBalance",
|
|
899
|
+
"type": "uint64"
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"indexed": false,
|
|
903
|
+
"internalType": "uint256",
|
|
904
|
+
"name": "timestamp",
|
|
905
|
+
"type": "uint256"
|
|
906
|
+
}
|
|
907
|
+
],
|
|
908
|
+
"name": "WalletCreationMinBtcBalanceUpdateStarted",
|
|
909
|
+
"type": "event"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"anonymous": false,
|
|
913
|
+
"inputs": [
|
|
914
|
+
{
|
|
915
|
+
"indexed": false,
|
|
916
|
+
"internalType": "uint64",
|
|
917
|
+
"name": "walletCreationMinBtcBalance",
|
|
918
|
+
"type": "uint64"
|
|
919
|
+
}
|
|
920
|
+
],
|
|
921
|
+
"name": "WalletCreationMinBtcBalanceUpdated",
|
|
922
|
+
"type": "event"
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
"anonymous": false,
|
|
926
|
+
"inputs": [
|
|
927
|
+
{
|
|
928
|
+
"indexed": false,
|
|
929
|
+
"internalType": "uint32",
|
|
930
|
+
"name": "newWalletCreationPeriod",
|
|
931
|
+
"type": "uint32"
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"indexed": false,
|
|
935
|
+
"internalType": "uint256",
|
|
936
|
+
"name": "timestamp",
|
|
937
|
+
"type": "uint256"
|
|
938
|
+
}
|
|
939
|
+
],
|
|
940
|
+
"name": "WalletCreationPeriodUpdateStarted",
|
|
941
|
+
"type": "event"
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"anonymous": false,
|
|
945
|
+
"inputs": [
|
|
946
|
+
{
|
|
947
|
+
"indexed": false,
|
|
948
|
+
"internalType": "uint32",
|
|
949
|
+
"name": "walletCreationPeriod",
|
|
950
|
+
"type": "uint32"
|
|
951
|
+
}
|
|
952
|
+
],
|
|
953
|
+
"name": "WalletCreationPeriodUpdated",
|
|
954
|
+
"type": "event"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"anonymous": false,
|
|
958
|
+
"inputs": [
|
|
959
|
+
{
|
|
960
|
+
"indexed": false,
|
|
961
|
+
"internalType": "uint32",
|
|
962
|
+
"name": "newWalletMaxAge",
|
|
963
|
+
"type": "uint32"
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
"indexed": false,
|
|
967
|
+
"internalType": "uint256",
|
|
968
|
+
"name": "timestamp",
|
|
969
|
+
"type": "uint256"
|
|
970
|
+
}
|
|
971
|
+
],
|
|
972
|
+
"name": "WalletMaxAgeUpdateStarted",
|
|
973
|
+
"type": "event"
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
"anonymous": false,
|
|
977
|
+
"inputs": [
|
|
978
|
+
{
|
|
979
|
+
"indexed": false,
|
|
980
|
+
"internalType": "uint32",
|
|
981
|
+
"name": "walletMaxAge",
|
|
982
|
+
"type": "uint32"
|
|
983
|
+
}
|
|
984
|
+
],
|
|
985
|
+
"name": "WalletMaxAgeUpdated",
|
|
986
|
+
"type": "event"
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"anonymous": false,
|
|
990
|
+
"inputs": [
|
|
991
|
+
{
|
|
992
|
+
"indexed": false,
|
|
993
|
+
"internalType": "uint64",
|
|
994
|
+
"name": "newWalletMaxBtcTransfer",
|
|
995
|
+
"type": "uint64"
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
"indexed": false,
|
|
999
|
+
"internalType": "uint256",
|
|
1000
|
+
"name": "timestamp",
|
|
1001
|
+
"type": "uint256"
|
|
1002
|
+
}
|
|
1003
|
+
],
|
|
1004
|
+
"name": "WalletMaxBtcTransferUpdateStarted",
|
|
1005
|
+
"type": "event"
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
"anonymous": false,
|
|
1009
|
+
"inputs": [
|
|
1010
|
+
{
|
|
1011
|
+
"indexed": false,
|
|
1012
|
+
"internalType": "uint64",
|
|
1013
|
+
"name": "walletMaxBtcTransfer",
|
|
1014
|
+
"type": "uint64"
|
|
1015
|
+
}
|
|
1016
|
+
],
|
|
1017
|
+
"name": "WalletMaxBtcTransferUpdated",
|
|
1018
|
+
"type": "event"
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"inputs": [
|
|
1022
|
+
{
|
|
1023
|
+
"internalType": "address",
|
|
1024
|
+
"name": "_newBridgeGovernance",
|
|
1025
|
+
"type": "address"
|
|
1026
|
+
}
|
|
1027
|
+
],
|
|
1028
|
+
"name": "beginBridgeGovernanceTransfer",
|
|
1029
|
+
"outputs": [],
|
|
1030
|
+
"stateMutability": "nonpayable",
|
|
1031
|
+
"type": "function"
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
"inputs": [
|
|
1035
|
+
{
|
|
1036
|
+
"internalType": "uint64",
|
|
1037
|
+
"name": "_newDepositDustThreshold",
|
|
1038
|
+
"type": "uint64"
|
|
1039
|
+
}
|
|
1040
|
+
],
|
|
1041
|
+
"name": "beginDepositDustThresholdUpdate",
|
|
1042
|
+
"outputs": [],
|
|
1043
|
+
"stateMutability": "nonpayable",
|
|
1044
|
+
"type": "function"
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"inputs": [
|
|
1048
|
+
{
|
|
1049
|
+
"internalType": "uint64",
|
|
1050
|
+
"name": "_newDepositTreasuryFeeDivisor",
|
|
1051
|
+
"type": "uint64"
|
|
1052
|
+
}
|
|
1053
|
+
],
|
|
1054
|
+
"name": "beginDepositTreasuryFeeDivisorUpdate",
|
|
1055
|
+
"outputs": [],
|
|
1056
|
+
"stateMutability": "nonpayable",
|
|
1057
|
+
"type": "function"
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
"inputs": [
|
|
1061
|
+
{
|
|
1062
|
+
"internalType": "uint64",
|
|
1063
|
+
"name": "_newDepositTxMaxFee",
|
|
1064
|
+
"type": "uint64"
|
|
1065
|
+
}
|
|
1066
|
+
],
|
|
1067
|
+
"name": "beginDepositTxMaxFeeUpdate",
|
|
1068
|
+
"outputs": [],
|
|
1069
|
+
"stateMutability": "nonpayable",
|
|
1070
|
+
"type": "function"
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"inputs": [
|
|
1074
|
+
{
|
|
1075
|
+
"internalType": "uint32",
|
|
1076
|
+
"name": "_newFraudChallengeDefeatTimeout",
|
|
1077
|
+
"type": "uint32"
|
|
1078
|
+
}
|
|
1079
|
+
],
|
|
1080
|
+
"name": "beginFraudChallengeDefeatTimeoutUpdate",
|
|
1081
|
+
"outputs": [],
|
|
1082
|
+
"stateMutability": "nonpayable",
|
|
1083
|
+
"type": "function"
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
"inputs": [
|
|
1087
|
+
{
|
|
1088
|
+
"internalType": "uint96",
|
|
1089
|
+
"name": "_newFraudChallengeDepositAmount",
|
|
1090
|
+
"type": "uint96"
|
|
1091
|
+
}
|
|
1092
|
+
],
|
|
1093
|
+
"name": "beginFraudChallengeDepositAmountUpdate",
|
|
1094
|
+
"outputs": [],
|
|
1095
|
+
"stateMutability": "nonpayable",
|
|
1096
|
+
"type": "function"
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"inputs": [
|
|
1100
|
+
{
|
|
1101
|
+
"internalType": "uint32",
|
|
1102
|
+
"name": "_newFraudNotifierRewardMultiplier",
|
|
1103
|
+
"type": "uint32"
|
|
1104
|
+
}
|
|
1105
|
+
],
|
|
1106
|
+
"name": "beginFraudNotifierRewardMultiplierUpdate",
|
|
1107
|
+
"outputs": [],
|
|
1108
|
+
"stateMutability": "nonpayable",
|
|
1109
|
+
"type": "function"
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
"inputs": [
|
|
1113
|
+
{
|
|
1114
|
+
"internalType": "uint96",
|
|
1115
|
+
"name": "_newFraudSlashingAmount",
|
|
1116
|
+
"type": "uint96"
|
|
1117
|
+
}
|
|
1118
|
+
],
|
|
1119
|
+
"name": "beginFraudSlashingAmountUpdate",
|
|
1120
|
+
"outputs": [],
|
|
1121
|
+
"stateMutability": "nonpayable",
|
|
1122
|
+
"type": "function"
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
"inputs": [
|
|
1126
|
+
{
|
|
1127
|
+
"internalType": "uint256",
|
|
1128
|
+
"name": "_newGovernanceDelay",
|
|
1129
|
+
"type": "uint256"
|
|
1130
|
+
}
|
|
1131
|
+
],
|
|
1132
|
+
"name": "beginGovernanceDelayUpdate",
|
|
1133
|
+
"outputs": [],
|
|
1134
|
+
"stateMutability": "nonpayable",
|
|
1135
|
+
"type": "function"
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"inputs": [
|
|
1139
|
+
{
|
|
1140
|
+
"internalType": "uint32",
|
|
1141
|
+
"name": "_newMovedFundsSweepTimeoutNotifierRewardMultiplier",
|
|
1142
|
+
"type": "uint32"
|
|
1143
|
+
}
|
|
1144
|
+
],
|
|
1145
|
+
"name": "beginMovedFundsSweepTimeoutNotifierRewardMultiplierUpdate",
|
|
1146
|
+
"outputs": [],
|
|
1147
|
+
"stateMutability": "nonpayable",
|
|
1148
|
+
"type": "function"
|
|
1149
|
+
},
|
|
1150
|
+
{
|
|
1151
|
+
"inputs": [
|
|
1152
|
+
{
|
|
1153
|
+
"internalType": "uint96",
|
|
1154
|
+
"name": "_newMovedFundsSweepTimeoutSlashingAmount",
|
|
1155
|
+
"type": "uint96"
|
|
1156
|
+
}
|
|
1157
|
+
],
|
|
1158
|
+
"name": "beginMovedFundsSweepTimeoutSlashingAmountUpdate",
|
|
1159
|
+
"outputs": [],
|
|
1160
|
+
"stateMutability": "nonpayable",
|
|
1161
|
+
"type": "function"
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"inputs": [
|
|
1165
|
+
{
|
|
1166
|
+
"internalType": "uint32",
|
|
1167
|
+
"name": "_newMovedFundsSweepTimeout",
|
|
1168
|
+
"type": "uint32"
|
|
1169
|
+
}
|
|
1170
|
+
],
|
|
1171
|
+
"name": "beginMovedFundsSweepTimeoutUpdate",
|
|
1172
|
+
"outputs": [],
|
|
1173
|
+
"stateMutability": "nonpayable",
|
|
1174
|
+
"type": "function"
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
"inputs": [
|
|
1178
|
+
{
|
|
1179
|
+
"internalType": "uint64",
|
|
1180
|
+
"name": "_newMovedFundsSweepTxMaxTotalFee",
|
|
1181
|
+
"type": "uint64"
|
|
1182
|
+
}
|
|
1183
|
+
],
|
|
1184
|
+
"name": "beginMovedFundsSweepTxMaxTotalFeeUpdate",
|
|
1185
|
+
"outputs": [],
|
|
1186
|
+
"stateMutability": "nonpayable",
|
|
1187
|
+
"type": "function"
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
"inputs": [
|
|
1191
|
+
{
|
|
1192
|
+
"internalType": "uint64",
|
|
1193
|
+
"name": "_newMovingFundsDustThreshold",
|
|
1194
|
+
"type": "uint64"
|
|
1195
|
+
}
|
|
1196
|
+
],
|
|
1197
|
+
"name": "beginMovingFundsDustThresholdUpdate",
|
|
1198
|
+
"outputs": [],
|
|
1199
|
+
"stateMutability": "nonpayable",
|
|
1200
|
+
"type": "function"
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"inputs": [
|
|
1204
|
+
{
|
|
1205
|
+
"internalType": "uint32",
|
|
1206
|
+
"name": "_newMovingFundsTimeoutNotifierRewardMultiplier",
|
|
1207
|
+
"type": "uint32"
|
|
1208
|
+
}
|
|
1209
|
+
],
|
|
1210
|
+
"name": "beginMovingFundsTimeoutNotifierRewardMultiplierUpdate",
|
|
1211
|
+
"outputs": [],
|
|
1212
|
+
"stateMutability": "nonpayable",
|
|
1213
|
+
"type": "function"
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"inputs": [
|
|
1217
|
+
{
|
|
1218
|
+
"internalType": "uint32",
|
|
1219
|
+
"name": "_newMovingFundsTimeoutResetDelay",
|
|
1220
|
+
"type": "uint32"
|
|
1221
|
+
}
|
|
1222
|
+
],
|
|
1223
|
+
"name": "beginMovingFundsTimeoutResetDelayUpdate",
|
|
1224
|
+
"outputs": [],
|
|
1225
|
+
"stateMutability": "nonpayable",
|
|
1226
|
+
"type": "function"
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
"inputs": [
|
|
1230
|
+
{
|
|
1231
|
+
"internalType": "uint96",
|
|
1232
|
+
"name": "_newMovingFundsTimeoutSlashingAmount",
|
|
1233
|
+
"type": "uint96"
|
|
1234
|
+
}
|
|
1235
|
+
],
|
|
1236
|
+
"name": "beginMovingFundsTimeoutSlashingAmountUpdate",
|
|
1237
|
+
"outputs": [],
|
|
1238
|
+
"stateMutability": "nonpayable",
|
|
1239
|
+
"type": "function"
|
|
1240
|
+
},
|
|
1241
|
+
{
|
|
1242
|
+
"inputs": [
|
|
1243
|
+
{
|
|
1244
|
+
"internalType": "uint32",
|
|
1245
|
+
"name": "_newMovingFundsTimeout",
|
|
1246
|
+
"type": "uint32"
|
|
1247
|
+
}
|
|
1248
|
+
],
|
|
1249
|
+
"name": "beginMovingFundsTimeoutUpdate",
|
|
1250
|
+
"outputs": [],
|
|
1251
|
+
"stateMutability": "nonpayable",
|
|
1252
|
+
"type": "function"
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
"inputs": [
|
|
1256
|
+
{
|
|
1257
|
+
"internalType": "uint64",
|
|
1258
|
+
"name": "_newMovingFundsTxMaxTotalFee",
|
|
1259
|
+
"type": "uint64"
|
|
1260
|
+
}
|
|
1261
|
+
],
|
|
1262
|
+
"name": "beginMovingFundsTxMaxTotalFeeUpdate",
|
|
1263
|
+
"outputs": [],
|
|
1264
|
+
"stateMutability": "nonpayable",
|
|
1265
|
+
"type": "function"
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"inputs": [
|
|
1269
|
+
{
|
|
1270
|
+
"internalType": "uint64",
|
|
1271
|
+
"name": "_newRedemptionDustThreshold",
|
|
1272
|
+
"type": "uint64"
|
|
1273
|
+
}
|
|
1274
|
+
],
|
|
1275
|
+
"name": "beginRedemptionDustThresholdUpdate",
|
|
1276
|
+
"outputs": [],
|
|
1277
|
+
"stateMutability": "nonpayable",
|
|
1278
|
+
"type": "function"
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"inputs": [
|
|
1282
|
+
{
|
|
1283
|
+
"internalType": "uint32",
|
|
1284
|
+
"name": "_newRedemptionTimeoutNotifierRewardMultiplier",
|
|
1285
|
+
"type": "uint32"
|
|
1286
|
+
}
|
|
1287
|
+
],
|
|
1288
|
+
"name": "beginRedemptionTimeoutNotifierRewardMultiplierUpdate",
|
|
1289
|
+
"outputs": [],
|
|
1290
|
+
"stateMutability": "nonpayable",
|
|
1291
|
+
"type": "function"
|
|
1292
|
+
},
|
|
1293
|
+
{
|
|
1294
|
+
"inputs": [
|
|
1295
|
+
{
|
|
1296
|
+
"internalType": "uint96",
|
|
1297
|
+
"name": "_newRedemptionTimeoutSlashingAmount",
|
|
1298
|
+
"type": "uint96"
|
|
1299
|
+
}
|
|
1300
|
+
],
|
|
1301
|
+
"name": "beginRedemptionTimeoutSlashingAmountUpdate",
|
|
1302
|
+
"outputs": [],
|
|
1303
|
+
"stateMutability": "nonpayable",
|
|
1304
|
+
"type": "function"
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
"inputs": [
|
|
1308
|
+
{
|
|
1309
|
+
"internalType": "uint32",
|
|
1310
|
+
"name": "_newRedemptionTimeout",
|
|
1311
|
+
"type": "uint32"
|
|
1312
|
+
}
|
|
1313
|
+
],
|
|
1314
|
+
"name": "beginRedemptionTimeoutUpdate",
|
|
1315
|
+
"outputs": [],
|
|
1316
|
+
"stateMutability": "nonpayable",
|
|
1317
|
+
"type": "function"
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
"inputs": [
|
|
1321
|
+
{
|
|
1322
|
+
"internalType": "uint64",
|
|
1323
|
+
"name": "_newRedemptionTreasuryFeeDivisor",
|
|
1324
|
+
"type": "uint64"
|
|
1325
|
+
}
|
|
1326
|
+
],
|
|
1327
|
+
"name": "beginRedemptionTreasuryFeeDivisorUpdate",
|
|
1328
|
+
"outputs": [],
|
|
1329
|
+
"stateMutability": "nonpayable",
|
|
1330
|
+
"type": "function"
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"inputs": [
|
|
1334
|
+
{
|
|
1335
|
+
"internalType": "uint64",
|
|
1336
|
+
"name": "_newRedemptionTxMaxFee",
|
|
1337
|
+
"type": "uint64"
|
|
1338
|
+
}
|
|
1339
|
+
],
|
|
1340
|
+
"name": "beginRedemptionTxMaxFeeUpdate",
|
|
1341
|
+
"outputs": [],
|
|
1342
|
+
"stateMutability": "nonpayable",
|
|
1343
|
+
"type": "function"
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
"inputs": [
|
|
1347
|
+
{
|
|
1348
|
+
"internalType": "uint32",
|
|
1349
|
+
"name": "_newWalletClosingPeriod",
|
|
1350
|
+
"type": "uint32"
|
|
1351
|
+
}
|
|
1352
|
+
],
|
|
1353
|
+
"name": "beginWalletClosingPeriodUpdate",
|
|
1354
|
+
"outputs": [],
|
|
1355
|
+
"stateMutability": "nonpayable",
|
|
1356
|
+
"type": "function"
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
"inputs": [
|
|
1360
|
+
{
|
|
1361
|
+
"internalType": "uint64",
|
|
1362
|
+
"name": "_newWalletClosureMinBtcBalance",
|
|
1363
|
+
"type": "uint64"
|
|
1364
|
+
}
|
|
1365
|
+
],
|
|
1366
|
+
"name": "beginWalletClosureMinBtcBalanceUpdate",
|
|
1367
|
+
"outputs": [],
|
|
1368
|
+
"stateMutability": "nonpayable",
|
|
1369
|
+
"type": "function"
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
"inputs": [
|
|
1373
|
+
{
|
|
1374
|
+
"internalType": "uint64",
|
|
1375
|
+
"name": "_newWalletCreationMaxBtcBalance",
|
|
1376
|
+
"type": "uint64"
|
|
1377
|
+
}
|
|
1378
|
+
],
|
|
1379
|
+
"name": "beginWalletCreationMaxBtcBalanceUpdate",
|
|
1380
|
+
"outputs": [],
|
|
1381
|
+
"stateMutability": "nonpayable",
|
|
1382
|
+
"type": "function"
|
|
1383
|
+
},
|
|
1384
|
+
{
|
|
1385
|
+
"inputs": [
|
|
1386
|
+
{
|
|
1387
|
+
"internalType": "uint64",
|
|
1388
|
+
"name": "_newWalletCreationMinBtcBalance",
|
|
1389
|
+
"type": "uint64"
|
|
1390
|
+
}
|
|
1391
|
+
],
|
|
1392
|
+
"name": "beginWalletCreationMinBtcBalanceUpdate",
|
|
1393
|
+
"outputs": [],
|
|
1394
|
+
"stateMutability": "nonpayable",
|
|
1395
|
+
"type": "function"
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"inputs": [
|
|
1399
|
+
{
|
|
1400
|
+
"internalType": "uint32",
|
|
1401
|
+
"name": "_newWalletCreationPeriod",
|
|
1402
|
+
"type": "uint32"
|
|
1403
|
+
}
|
|
1404
|
+
],
|
|
1405
|
+
"name": "beginWalletCreationPeriodUpdate",
|
|
1406
|
+
"outputs": [],
|
|
1407
|
+
"stateMutability": "nonpayable",
|
|
1408
|
+
"type": "function"
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
"inputs": [
|
|
1412
|
+
{
|
|
1413
|
+
"internalType": "uint32",
|
|
1414
|
+
"name": "_newWalletMaxAge",
|
|
1415
|
+
"type": "uint32"
|
|
1416
|
+
}
|
|
1417
|
+
],
|
|
1418
|
+
"name": "beginWalletMaxAgeUpdate",
|
|
1419
|
+
"outputs": [],
|
|
1420
|
+
"stateMutability": "nonpayable",
|
|
1421
|
+
"type": "function"
|
|
1422
|
+
},
|
|
1423
|
+
{
|
|
1424
|
+
"inputs": [
|
|
1425
|
+
{
|
|
1426
|
+
"internalType": "uint64",
|
|
1427
|
+
"name": "_newWalletMaxBtcTransfer",
|
|
1428
|
+
"type": "uint64"
|
|
1429
|
+
}
|
|
1430
|
+
],
|
|
1431
|
+
"name": "beginWalletMaxBtcTransferUpdate",
|
|
1432
|
+
"outputs": [],
|
|
1433
|
+
"stateMutability": "nonpayable",
|
|
1434
|
+
"type": "function"
|
|
1435
|
+
},
|
|
1436
|
+
{
|
|
1437
|
+
"inputs": [],
|
|
1438
|
+
"name": "bridgeGovernanceTransferChangeInitiated",
|
|
1439
|
+
"outputs": [
|
|
1440
|
+
{
|
|
1441
|
+
"internalType": "uint256",
|
|
1442
|
+
"name": "",
|
|
1443
|
+
"type": "uint256"
|
|
1444
|
+
}
|
|
1445
|
+
],
|
|
1446
|
+
"stateMutability": "view",
|
|
1447
|
+
"type": "function"
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
"inputs": [],
|
|
1451
|
+
"name": "finalizeBridgeGovernanceTransfer",
|
|
1452
|
+
"outputs": [],
|
|
1453
|
+
"stateMutability": "nonpayable",
|
|
1454
|
+
"type": "function"
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"inputs": [],
|
|
1458
|
+
"name": "finalizeDepositDustThresholdUpdate",
|
|
1459
|
+
"outputs": [],
|
|
1460
|
+
"stateMutability": "nonpayable",
|
|
1461
|
+
"type": "function"
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
"inputs": [],
|
|
1465
|
+
"name": "finalizeDepositTreasuryFeeDivisorUpdate",
|
|
1466
|
+
"outputs": [],
|
|
1467
|
+
"stateMutability": "nonpayable",
|
|
1468
|
+
"type": "function"
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
"inputs": [],
|
|
1472
|
+
"name": "finalizeDepositTxMaxFeeUpdate",
|
|
1473
|
+
"outputs": [],
|
|
1474
|
+
"stateMutability": "nonpayable",
|
|
1475
|
+
"type": "function"
|
|
1476
|
+
},
|
|
1477
|
+
{
|
|
1478
|
+
"inputs": [],
|
|
1479
|
+
"name": "finalizeFraudChallengeDefeatTimeoutUpdate",
|
|
1480
|
+
"outputs": [],
|
|
1481
|
+
"stateMutability": "nonpayable",
|
|
1482
|
+
"type": "function"
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
"inputs": [],
|
|
1486
|
+
"name": "finalizeFraudChallengeDepositAmountUpdate",
|
|
1487
|
+
"outputs": [],
|
|
1488
|
+
"stateMutability": "nonpayable",
|
|
1489
|
+
"type": "function"
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
"inputs": [],
|
|
1493
|
+
"name": "finalizeFraudNotifierRewardMultiplierUpdate",
|
|
1494
|
+
"outputs": [],
|
|
1495
|
+
"stateMutability": "nonpayable",
|
|
1496
|
+
"type": "function"
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"inputs": [],
|
|
1500
|
+
"name": "finalizeFraudSlashingAmountUpdate",
|
|
1501
|
+
"outputs": [],
|
|
1502
|
+
"stateMutability": "nonpayable",
|
|
1503
|
+
"type": "function"
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
"inputs": [],
|
|
1507
|
+
"name": "finalizeGovernanceDelayUpdate",
|
|
1508
|
+
"outputs": [],
|
|
1509
|
+
"stateMutability": "nonpayable",
|
|
1510
|
+
"type": "function"
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
"inputs": [],
|
|
1514
|
+
"name": "finalizeMovedFundsSweepTimeoutNotifierRewardMultiplierUpdate",
|
|
1515
|
+
"outputs": [],
|
|
1516
|
+
"stateMutability": "nonpayable",
|
|
1517
|
+
"type": "function"
|
|
1518
|
+
},
|
|
1519
|
+
{
|
|
1520
|
+
"inputs": [],
|
|
1521
|
+
"name": "finalizeMovedFundsSweepTimeoutSlashingAmountUpdate",
|
|
1522
|
+
"outputs": [],
|
|
1523
|
+
"stateMutability": "nonpayable",
|
|
1524
|
+
"type": "function"
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
"inputs": [],
|
|
1528
|
+
"name": "finalizeMovedFundsSweepTimeoutUpdate",
|
|
1529
|
+
"outputs": [],
|
|
1530
|
+
"stateMutability": "nonpayable",
|
|
1531
|
+
"type": "function"
|
|
1532
|
+
},
|
|
1533
|
+
{
|
|
1534
|
+
"inputs": [],
|
|
1535
|
+
"name": "finalizeMovedFundsSweepTxMaxTotalFeeUpdate",
|
|
1536
|
+
"outputs": [],
|
|
1537
|
+
"stateMutability": "nonpayable",
|
|
1538
|
+
"type": "function"
|
|
1539
|
+
},
|
|
1540
|
+
{
|
|
1541
|
+
"inputs": [],
|
|
1542
|
+
"name": "finalizeMovingFundsDustThresholdUpdate",
|
|
1543
|
+
"outputs": [],
|
|
1544
|
+
"stateMutability": "nonpayable",
|
|
1545
|
+
"type": "function"
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
"inputs": [],
|
|
1549
|
+
"name": "finalizeMovingFundsTimeoutNotifierRewardMultiplierUpdate",
|
|
1550
|
+
"outputs": [],
|
|
1551
|
+
"stateMutability": "nonpayable",
|
|
1552
|
+
"type": "function"
|
|
1553
|
+
},
|
|
1554
|
+
{
|
|
1555
|
+
"inputs": [],
|
|
1556
|
+
"name": "finalizeMovingFundsTimeoutResetDelayUpdate",
|
|
1557
|
+
"outputs": [],
|
|
1558
|
+
"stateMutability": "nonpayable",
|
|
1559
|
+
"type": "function"
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
"inputs": [],
|
|
1563
|
+
"name": "finalizeMovingFundsTimeoutSlashingAmountUpdate",
|
|
1564
|
+
"outputs": [],
|
|
1565
|
+
"stateMutability": "nonpayable",
|
|
1566
|
+
"type": "function"
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
"inputs": [],
|
|
1570
|
+
"name": "finalizeMovingFundsTimeoutUpdate",
|
|
1571
|
+
"outputs": [],
|
|
1572
|
+
"stateMutability": "nonpayable",
|
|
1573
|
+
"type": "function"
|
|
1574
|
+
},
|
|
1575
|
+
{
|
|
1576
|
+
"inputs": [],
|
|
1577
|
+
"name": "finalizeMovingFundsTxMaxTotalFeeUpdate",
|
|
1578
|
+
"outputs": [],
|
|
1579
|
+
"stateMutability": "nonpayable",
|
|
1580
|
+
"type": "function"
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
"inputs": [],
|
|
1584
|
+
"name": "finalizeRedemptionDustThresholdUpdate",
|
|
1585
|
+
"outputs": [],
|
|
1586
|
+
"stateMutability": "nonpayable",
|
|
1587
|
+
"type": "function"
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
"inputs": [],
|
|
1591
|
+
"name": "finalizeRedemptionTimeoutNotifierRewardMultiplierUpdate",
|
|
1592
|
+
"outputs": [],
|
|
1593
|
+
"stateMutability": "nonpayable",
|
|
1594
|
+
"type": "function"
|
|
1595
|
+
},
|
|
1596
|
+
{
|
|
1597
|
+
"inputs": [],
|
|
1598
|
+
"name": "finalizeRedemptionTimeoutSlashingAmountUpdate",
|
|
1599
|
+
"outputs": [],
|
|
1600
|
+
"stateMutability": "nonpayable",
|
|
1601
|
+
"type": "function"
|
|
1602
|
+
},
|
|
1603
|
+
{
|
|
1604
|
+
"inputs": [],
|
|
1605
|
+
"name": "finalizeRedemptionTimeoutUpdate",
|
|
1606
|
+
"outputs": [],
|
|
1607
|
+
"stateMutability": "nonpayable",
|
|
1608
|
+
"type": "function"
|
|
1609
|
+
},
|
|
1610
|
+
{
|
|
1611
|
+
"inputs": [],
|
|
1612
|
+
"name": "finalizeRedemptionTreasuryFeeDivisorUpdate",
|
|
1613
|
+
"outputs": [],
|
|
1614
|
+
"stateMutability": "nonpayable",
|
|
1615
|
+
"type": "function"
|
|
1616
|
+
},
|
|
1617
|
+
{
|
|
1618
|
+
"inputs": [],
|
|
1619
|
+
"name": "finalizeRedemptionTxMaxFeeUpdate",
|
|
1620
|
+
"outputs": [],
|
|
1621
|
+
"stateMutability": "nonpayable",
|
|
1622
|
+
"type": "function"
|
|
1623
|
+
},
|
|
1624
|
+
{
|
|
1625
|
+
"inputs": [],
|
|
1626
|
+
"name": "finalizeWalletClosingPeriodUpdate",
|
|
1627
|
+
"outputs": [],
|
|
1628
|
+
"stateMutability": "nonpayable",
|
|
1629
|
+
"type": "function"
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
"inputs": [],
|
|
1633
|
+
"name": "finalizeWalletClosureMinBtcBalanceUpdate",
|
|
1634
|
+
"outputs": [],
|
|
1635
|
+
"stateMutability": "nonpayable",
|
|
1636
|
+
"type": "function"
|
|
1637
|
+
},
|
|
1638
|
+
{
|
|
1639
|
+
"inputs": [],
|
|
1640
|
+
"name": "finalizeWalletCreationMaxBtcBalanceUpdate",
|
|
1641
|
+
"outputs": [],
|
|
1642
|
+
"stateMutability": "nonpayable",
|
|
1643
|
+
"type": "function"
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
"inputs": [],
|
|
1647
|
+
"name": "finalizeWalletCreationMinBtcBalanceUpdate",
|
|
1648
|
+
"outputs": [],
|
|
1649
|
+
"stateMutability": "nonpayable",
|
|
1650
|
+
"type": "function"
|
|
1651
|
+
},
|
|
1652
|
+
{
|
|
1653
|
+
"inputs": [],
|
|
1654
|
+
"name": "finalizeWalletCreationPeriodUpdate",
|
|
1655
|
+
"outputs": [],
|
|
1656
|
+
"stateMutability": "nonpayable",
|
|
1657
|
+
"type": "function"
|
|
1658
|
+
},
|
|
1659
|
+
{
|
|
1660
|
+
"inputs": [],
|
|
1661
|
+
"name": "finalizeWalletMaxAgeUpdate",
|
|
1662
|
+
"outputs": [],
|
|
1663
|
+
"stateMutability": "nonpayable",
|
|
1664
|
+
"type": "function"
|
|
1665
|
+
},
|
|
1666
|
+
{
|
|
1667
|
+
"inputs": [],
|
|
1668
|
+
"name": "finalizeWalletMaxBtcTransferUpdate",
|
|
1669
|
+
"outputs": [],
|
|
1670
|
+
"stateMutability": "nonpayable",
|
|
1671
|
+
"type": "function"
|
|
1672
|
+
},
|
|
1673
|
+
{
|
|
1674
|
+
"inputs": [
|
|
1675
|
+
{
|
|
1676
|
+
"internalType": "uint256",
|
|
1677
|
+
"name": "",
|
|
1678
|
+
"type": "uint256"
|
|
1679
|
+
}
|
|
1680
|
+
],
|
|
1681
|
+
"name": "governanceDelays",
|
|
1682
|
+
"outputs": [
|
|
1683
|
+
{
|
|
1684
|
+
"internalType": "uint256",
|
|
1685
|
+
"name": "",
|
|
1686
|
+
"type": "uint256"
|
|
1687
|
+
}
|
|
1688
|
+
],
|
|
1689
|
+
"stateMutability": "view",
|
|
1690
|
+
"type": "function"
|
|
1691
|
+
},
|
|
1692
|
+
{
|
|
1693
|
+
"inputs": [],
|
|
1694
|
+
"name": "owner",
|
|
1695
|
+
"outputs": [
|
|
1696
|
+
{
|
|
1697
|
+
"internalType": "address",
|
|
1698
|
+
"name": "",
|
|
1699
|
+
"type": "address"
|
|
1700
|
+
}
|
|
1701
|
+
],
|
|
1702
|
+
"stateMutability": "view",
|
|
1703
|
+
"type": "function"
|
|
1704
|
+
},
|
|
1705
|
+
{
|
|
1706
|
+
"inputs": [],
|
|
1707
|
+
"name": "renounceOwnership",
|
|
1708
|
+
"outputs": [],
|
|
1709
|
+
"stateMutability": "nonpayable",
|
|
1710
|
+
"type": "function"
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
"inputs": [
|
|
1714
|
+
{
|
|
1715
|
+
"internalType": "address",
|
|
1716
|
+
"name": "vault",
|
|
1717
|
+
"type": "address"
|
|
1718
|
+
},
|
|
1719
|
+
{
|
|
1720
|
+
"internalType": "bool",
|
|
1721
|
+
"name": "isTrusted",
|
|
1722
|
+
"type": "bool"
|
|
1723
|
+
}
|
|
1724
|
+
],
|
|
1725
|
+
"name": "setVaultStatus",
|
|
1726
|
+
"outputs": [],
|
|
1727
|
+
"stateMutability": "nonpayable",
|
|
1728
|
+
"type": "function"
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
"inputs": [
|
|
1732
|
+
{
|
|
1733
|
+
"internalType": "address",
|
|
1734
|
+
"name": "newOwner",
|
|
1735
|
+
"type": "address"
|
|
1736
|
+
}
|
|
1737
|
+
],
|
|
1738
|
+
"name": "transferOwnership",
|
|
1739
|
+
"outputs": [],
|
|
1740
|
+
"stateMutability": "nonpayable",
|
|
1741
|
+
"type": "function"
|
|
1742
|
+
}
|
|
1743
|
+
],
|
|
1744
|
+
"bytecode": "0x60806040523480156200001157600080fd5b50604051620060dc380380620060dc8339810160408190526200003491620000ba565b6200003f336200006a565b603d80546001600160a01b0319166001600160a01b03841617905580603e6000015550620000f69050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060408385031215620000ce57600080fd5b82516001600160a01b0381168114620000e657600080fd5b6020939093015192949293505050565b615fd680620001066000396000f3fe608060405234801561001057600080fd5b50600436106104725760003560e01c806368fcf2a811610250578063b372e40311610150578063e7c7c8c8116100c8578063f44c0f3311610097578063f9f06a9a1161007c578063f9f06a9a1461082e578063fabcb8fa14610836578063fcbf9be71461084957600080fd5b8063f44c0f331461081e578063f604f5d31461082657600080fd5b8063e7c7c8c8146107dd578063f00b17d4146107f0578063f039ee9a146107f8578063f2fde38b1461080b57600080fd5b8063c79fb0111161011f578063d25cb94611610104578063d25cb946146107af578063dc46f09d146107c2578063dd6d0e68146107d557600080fd5b8063c79fb01114610794578063d1234d951461079c57600080fd5b8063b372e4031461075e578063c1104a2d14610771578063c63cba4614610784578063c789663b1461078c57600080fd5b80638b18a505116101e357806397845cc4116101b25780639b64dab8116101975780639b64dab814610730578063a855072514610738578063aa4d9ccc1461074b57600080fd5b806397845cc41461071557806397fd27fc1461071d57600080fd5b80638b18a505146106d65780638c382a53146106e95780638da5cb5b146106f2578063961312ce1461070d57600080fd5b80637256fde91161021f5780637256fde9146106a05780637318814c146106a857806380b2f2db146106bb57806385082d2c146106c357600080fd5b806368fcf2a8146106575780636a57a28b1461067d578063715018a61461069057806371c967581461069857600080fd5b80633860c357116103765780634cf19dde116102ee578063605da053116102bd578063625391f9116102a2578063625391f9146106345780636263b8831461063c5780636636b6551461064f57600080fd5b8063605da0531461061957806360d712fc1461062157600080fd5b80634cf19dde146105d85780634f5bfd2a146105eb578063541d6987146105fe5780636015124b1461061157600080fd5b806343b327c311610345578063480753671161032a57806348075367146105aa57806348dd7d66146105b25780634abef7d4146105c557600080fd5b806343b327c31461058f578063471c169f146105a257600080fd5b80633860c3571461054e5780633a1e363d146105565780634078dde01461056957806340c9ac421461057c57600080fd5b80631fb738bb1161040957806326c23dda116103d85780632eb97687116103bd5780632eb976871461052b5780632f65b50f1461053357806337fa5d511461053b57600080fd5b806326c23dda1461051057806329d8c91d1461051857600080fd5b80631fb738bb146104da57806322f1d80a146104ed57806324d6fa9d1461050057806326825a9d1461050857600080fd5b806311f08c3e1161044557806311f08c3e146104af57806312864337146104b757806315566135146104ca5780631b3d4e63146104d257600080fd5b806301a1f86f146104775780630403ac241461048c57806305a1d322146104945780630a303cd21461049c575b600080fd5b61048a610485366004615b4f565b610851565b005b61048a61092e565b61048a610b95565b61048a6104aa366004615b85565b610d9a565b61048a610e3f565b61048a6104c5366004615bb7565b61105e565b61048a611106565b61048a61130d565b61048a6104e8366004615bb7565b611503565b61048a6104fb366004615b4f565b6115ab565b61048a611654565b61048a611876565b61048a61197c565b61048a610526366004615b85565b611b44565b61048a611be9565b61048a611ded565b61048a610549366004615bd4565b611faa565b61048a611ffb565b61048a610564366004615b4f565b6121e0565b61048a610577366004615b4f565b612289565b61048a61058a366004615b4f565b612332565b61048a61059d366004615b4f565b6123db565b61048a612484565b61048a612646565b61048a6105c0366004615b4f565b6127e4565b61048a6105d3366004615b85565b61288d565b61048a6105e6366004615b85565b612932565b61048a6105f9366004615b85565b6129d7565b61048a61060c366004615b85565b612a7c565b61048a612b21565b61048a612d25565b61048a61062f366004615c09565b612ebb565b61048a612f7f565b61048a61064a366004615b4f565b613144565b61048a6131ed565b61066a610665366004615bd4565b6133b1565b6040519081526020015b60405180910390f35b61048a61068b366004615b4f565b6133c8565b61048a613471565b61048a6134c5565b61048a613661565b61048a6106b6366004615b85565b613862565b61048a613907565b61048a6106d1366004615bb7565b613a98565b61048a6106e4366004615c45565b613b40565b61066a60415481565b6000546040516001600160a01b039091168152602001610674565b61048a613bf6565b61048a613d86565b61048a61072b366004615b85565b613fd2565b61048a614077565b61048a610746366004615b85565b614282565b61048a610759366004615b85565b614327565b61048a61076c366004615b4f565b6143cc565b61048a61077f366004615b4f565b614475565b61048a61451e565b61048a61471e565b61048a6148e5565b61048a6107aa366004615bb7565b614b62565b61048a6107bd366004615b4f565b614c0a565b61048a6107d0366004615b85565b614cb3565b61048a614d58565b61048a6107eb366004615b85565b614f18565b61048a614f6e565b61048a610806366004615bb7565b61512e565b61048a610819366004615c45565b6151d6565b61048a6152a3565b61048a6154a4565b61048a615644565b61048a610844366004615b4f565b61580e565b61048a6158b7565b6000546001600160a01b0316331461089e5760405162461bcd60e51b81526020600482018190526024820152600080516020615f8183398151915260448201526064015b60405180910390fd5b6040517f810698b20000000000000000000000000000000000000000000000000000000081526001600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063810698b2906044015b60006040518083038186803b15801561091357600080fd5b505af4158015610927573d6000803e3d6000fd5b5050505050565b6000546001600160a01b031633146109765760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b1580156109d357600080fd5b505afa1580156109e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0b9190615c60565b50985098509850985098509850985098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a8a8a8a8a8a8a8a610a5d60136012015463ffffffff1690565b6040516001600160e01b031960e08d901b16815267ffffffffffffffff9a8b166004820152988a1660248a015263ffffffff97881660448a015295871660648901526001600160601b03948516608489015292861660a4880152961660c486015294831660e48501529093166101048301529190911661012482015261014401600060405180830381600087803b158015610af757600080fd5b505af1158015610b0b573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__637d105c799091610b36603e5490565b6040516001600160e01b031960e085901b1681526004810192909252602482015260440160006040518083038186803b158015610b7257600080fd5b505af4158015610b86573d6000803e3d6000fd5b50505050505050505050505050565b6000546001600160a01b03163314610bdd5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b158015610c3a57600080fd5b505afa158015610c4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c729190615c60565b99509950509850985098509850985098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a8a8a8a8a8a610cc26013600e015463ffffffff1690565b60405160e08a901b6001600160e01b031916815267ffffffffffffffff9889166004820152968816602488015263ffffffff958616604488015293851660648701526001600160601b03928316608487015290841660a486015290941660c4840152811660e483015291861661010482015290841661012482015261014401600060405180830381600087803b158015610d5b57600080fd5b505af1158015610d6f573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__638c0fc65a9091610b36603e5490565b6000546001600160a01b03163314610de25760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f161d610c0000000000000000000000000000000000000000000000000000000081526027600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063161d610c906044016108fb565b6000546001600160a01b03163314610e875760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b0316636e70ce416040518163ffffffff1660e01b815260040160c06040518083038186803b158015610edd57600080fd5b505afa158015610ef1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f159190615d39565b50603d54949950929750909550935091506001600160a01b031663a9b848968686868686610f4b6007600a015463ffffffff1690565b6040516001600160e01b031960e089901b16815267ffffffffffffffff9687166004820152948616602486015294909216604484015263ffffffff90811660648401526001600160601b0390911660848301529190911660a482015260c401600060405180830381600087803b158015610fc457600080fd5b505af1158015610fd8573d6000803e3d6000fd5b50505050600773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63728bd45d9091611003603e5490565b6040516001600160e01b031960e085901b1681526004810192909252602482015260440160006040518083038186803b15801561103f57600080fd5b505af4158015611053573d6000803e3d6000fd5b505050505050505050565b6000546001600160a01b031633146110a65760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fbf08acfc000000000000000000000000000000000000000000000000000000008152603560048201526001600160601b038216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063bf08acfc906044016108fb565b6000546001600160a01b0316331461114e5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b1580156111ab57600080fd5b505afa1580156111bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e39190615c60565b99509950995050985098509850985098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a8a8a8a8a6112366013600c015467ffffffffffffffff1690565b6040516001600160e01b031960e08a901b16815267ffffffffffffffff9788166004820152958716602487015263ffffffff948516604487015292841660648601526001600160601b039182166084860152831660a4850152931660c483015280881660e483015291861661010482015290841661012482015261014401600060405180830381600087803b1580156112ce57600080fd5b505af11580156112e2573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__634569ab889091610b36603e5490565b6000546001600160a01b031633146113555760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000603d60009054906101000a90046001600160a01b03166001600160a01b03166375b922d16040518163ffffffff1660e01b815260040160806040518083038186803b1580156113a857600080fd5b505afa1580156113bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e09190615dc0565b603d5492965090945092506001600160a01b0316905063dc49117b61140d6035546001600160601b031690565b6040516001600160e01b031960e084901b1681526001600160601b03918216600482015263ffffffff808816602483015291861660448201529084166064820152608401600060405180830381600087803b15801561146b57600080fd5b505af115801561147f573d6000803e3d6000fd5b50505050603573__$a76fe959a16b0ef92b5d2bd739d5cb0318$__638f2ca64590916114aa603e5490565b6040516001600160e01b031960e085901b1681526004810192909252602482015260440160006040518083038186803b1580156114e657600080fd5b505af41580156114fa573d6000803e3d6000fd5b50505050505050565b6000546001600160a01b0316331461154b5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fbbb64b5c000000000000000000000000000000000000000000000000000000008152600760048201526001600160601b038216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063bbb64b5c906044016108fb565b6000546001600160a01b031633146115f35760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fe961fd9e0000000000000000000000000000000000000000000000000000000081526027600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063e961fd9e906044016108fb565b6000546001600160a01b0316331461169c5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080600080600080603d60009054906101000a90046001600160a01b03166001600160a01b03166361ccf97a6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156116f357600080fd5b505afa158015611707573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172b9190615e1f565b603d54969c50949a50929850909650909450909250506001600160a01b031663883d6a118787878761176560276008015463ffffffff1690565b6040516001600160e01b031960e088901b16815263ffffffff958616600482015267ffffffffffffffff9485166024820152928416604484015290831660648301528316608482015290861660a482015290841660c482015260e401600060405180830381600087803b1580156117db57600080fd5b505af11580156117ef573d6000803e3d6000fd5b50505050602773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__6305be330f909161181a603e5490565b6040516001600160e01b031960e085901b1681526004810192909252602482015260440160006040518083038186803b15801561185657600080fd5b505af415801561186a573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146118be5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b60405461190d5760405162461bcd60e51b815260206004820152601460248201527f4368616e6765206e6f7420696e697469617465640000000000000000000000006044820152606401610895565b603e5460405461191d9042615ebb565b1161196a5760405162461bcd60e51b815260206004820181905260248201527f476f7665726e616e63652064656c617920686173206e6f7420656c61707365646044820152606401610895565b603f8054603e55600090819055604055565b6000546001600160a01b031633146119c45760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080600080600080603d60009054906101000a90046001600160a01b03166001600160a01b03166361ccf97a6040518163ffffffff1660e01b815260040160e06040518083038186803b158015611a1b57600080fd5b505afa158015611a2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a539190615e1f565b603d54969c50949a509298509650909450909250506001600160a01b031663883d6a11878787611a8f60276006015467ffffffffffffffff1690565b6040516001600160e01b031960e087901b16815263ffffffff948516600482015267ffffffffffffffff9384166024820152918316604483015282166064820152828816608482015290861660a482015290841660c482015260e401600060405180830381600087803b158015611b0557600080fd5b505af1158015611b19573d6000803e3d6000fd5b50505050602773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__633861f138909161181a603e5490565b6000546001600160a01b03163314611b8c5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f9707e9ad0000000000000000000000000000000000000000000000000000000081526013600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90639707e9ad906044016108fb565b6000546001600160a01b03163314611c315760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b158015611c8e57600080fd5b505afa158015611ca2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cc69190615c60565b99509950995099509950995099509950509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a611d1460136002015467ffffffffffffffff1690565b6040516001600160e01b031960e085901b16815267ffffffffffffffff9283166004820152908216602482015263ffffffff808d166044830152808c1660648301526001600160601b03808c166084840152818b1660a484015292891660c483015280881660e483015291861661010482015290841661012482015261014401600060405180830381600087803b158015611dae57600080fd5b505af1158015611dc2573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63d6964b979091610b36603e5490565b6000546001600160a01b03163314611e355760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b0316636e70ce416040518163ffffffff1660e01b815260040160c06040518083038186803b158015611e8b57600080fd5b505afa158015611e9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec39190615d39565b603d54949a50929850909650945092506001600160a01b0316905063a9b84896611ef660075467ffffffffffffffff1690565b6040516001600160e01b031960e084901b16815267ffffffffffffffff91821660048201528189166024820152908716604482015263ffffffff80871660648301526001600160601b0386166084830152841660a482015260c401600060405180830381600087803b158015611f6b57600080fd5b505af1158015611f7f573d6000803e3d6000fd5b50505050600773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63ec9f47609091611003603e5490565b6000546001600160a01b03163314611ff25760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b603f5542604055565b6000546001600160a01b031633146120435760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080603d60009054906101000a90046001600160a01b03166001600160a01b031663c42b64d06040518163ffffffff1660e01b815260040160606040518083038186803b15801561209457600080fd5b505afa1580156120a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120cc9190615ef9565b603d5491945092506001600160a01b031690506317c964006120f760015467ffffffffffffffff1690565b6040516001600160e01b031960e084901b16815267ffffffffffffffff918216600482015281861660248201529084166044820152606401600060405180830381600087803b15801561214957600080fd5b505af115801561215d573d6000803e3d6000fd5b50505050600173__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63ae2563839091612188603e5490565b6040516001600160e01b031960e085901b1681526004810192909252602482015260440160006040518083038186803b1580156121c457600080fd5b505af41580156121d8573d6000803e3d6000fd5b505050505050565b6000546001600160a01b031633146122285760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f68af50210000000000000000000000000000000000000000000000000000000081526007600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__906368af5021906044016108fb565b6000546001600160a01b031633146122d15760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f158c660e0000000000000000000000000000000000000000000000000000000081526001600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063158c660e906044016108fb565b6000546001600160a01b0316331461237a5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fcef037d80000000000000000000000000000000000000000000000000000000081526001600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063cef037d8906044016108fb565b6000546001600160a01b031633146124235760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f3c1274000000000000000000000000000000000000000000000000000000000081526007600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90633c127400906044016108fb565b6000546001600160a01b031633146124cc5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b0316636e70ce416040518163ffffffff1660e01b815260040160c06040518083038186803b15801561252257600080fd5b505afa158015612536573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061255a9190615d39565b603d54959a509398509096509450909250506001600160a01b031663a9b84896868661259260076004015467ffffffffffffffff1690565b60405160e085901b6001600160e01b031916815267ffffffffffffffff93841660048201529183166024830152909116604482015263ffffffff86811660648301526001600160601b0386166084830152841660a482015260c401600060405180830381600087803b15801561260757600080fd5b505af115801561261b573d6000803e3d6000fd5b50505050600773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__639232db3f9091611003603e5490565b6000546001600160a01b0316331461268e5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000603d60009054906101000a90046001600160a01b03166001600160a01b03166375b922d16040518163ffffffff1660e01b815260040160806040518083038186803b1580156126e157600080fd5b505afa1580156126f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127199190615dc0565b50603d5492955090935091506001600160a01b031663dc49117b84848461274860356006015463ffffffff1690565b6040516001600160e01b031960e087901b1681526001600160601b03948516600482015263ffffffff9384166024820152939091166044840152166064820152608401600060405180830381600087803b1580156127a557600080fd5b505af11580156127b9573d6000803e3d6000fd5b50505050603573__$a76fe959a16b0ef92b5d2bd739d5cb0318$__630c4e568690916114aa603e5490565b6000546001600160a01b0316331461282c5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f72c9ed960000000000000000000000000000000000000000000000000000000081526013600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__906372c9ed96906044016108fb565b6000546001600160a01b031633146128d55760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fc6244eda0000000000000000000000000000000000000000000000000000000081526013600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063c6244eda906044016108fb565b6000546001600160a01b0316331461297a5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f2d453d570000000000000000000000000000000000000000000000000000000081526035600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90632d453d57906044016108fb565b6000546001600160a01b03163314612a1f5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f7058858a0000000000000000000000000000000000000000000000000000000081526035600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90637058858a906044016108fb565b6000546001600160a01b03163314612ac45760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fe61a78860000000000000000000000000000000000000000000000000000000081526007600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063e61a7886906044016108fb565b6000546001600160a01b03163314612b695760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b158015612bc657600080fd5b505afa158015612bda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bfe9190615c60565b99509950995099505098509850985098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a8a8a8a612c4c6013600a015463ffffffff1690565b6040516001600160e01b031960e089901b16815267ffffffffffffffff9687166004820152948616602486015263ffffffff938416604486015291831660648501526001600160601b03908116608485015290821660a484015292891660c483015280881660e483015291861661010482015290841661012482015261014401600060405180830381600087803b158015612ce657600080fd5b505af1158015612cfa573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__631b3f064f9091610b36603e5490565b6000546001600160a01b03163314612d6d5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600060415411612dbf5760405162461bcd60e51b815260206004820152601460248201527f4368616e6765206e6f7420696e697469617465640000000000000000000000006044820152606401610895565b603e54604154612dcf9042615ebb565b1015612e1d5760405162461bcd60e51b815260206004820181905260248201527f476f7665726e616e63652064656c617920686173206e6f7420656c61707365646044820152606401610895565b603d546042546040517fd38bfff40000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015291169063d38bfff490602401600060405180830381600087803b158015612e7f57600080fd5b505af1158015612e93573d6000803e3d6000fd5b5050600060415550506042805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000546001600160a01b03163314612f035760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b603d546040517f60d712fc0000000000000000000000000000000000000000000000000000000081526001600160a01b0384811660048301528315156024830152909116906360d712fc90604401600060405180830381600087803b158015612f6b57600080fd5b505af11580156121d8573d6000803e3d6000fd5b6000546001600160a01b03163314612fc75760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080600080600080603d60009054906101000a90046001600160a01b03166001600160a01b03166361ccf97a6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561301e57600080fd5b505afa158015613032573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130569190615e1f565b50603d54959b509399509197509550935091506001600160a01b031663883d6a1187878787878761308f6027600c015463ffffffff1690565b60405160e089901b6001600160e01b031916815263ffffffff978816600482015267ffffffffffffffff968716602482015294861660448601529285166064850152908516608484015290921660a4820152911660c482015260e401600060405180830381600087803b15801561310557600080fd5b505af1158015613119573d6000803e3d6000fd5b50505050602773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63dbf83803909161181a603e5490565b6000546001600160a01b0316331461318c5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f8f53d8040000000000000000000000000000000000000000000000000000000081526013600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90638f53d804906044016108fb565b6000546001600160a01b031633146132355760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b0316636e70ce416040518163ffffffff1660e01b815260040160c06040518083038186803b15801561328b57600080fd5b505afa15801561329f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132c39190615d39565b603d54959a509398509196509450909250506001600160a01b031663a9b84896868686866132fc6007600801546001600160601b031690565b60405160e087901b6001600160e01b031916815267ffffffffffffffff9586166004820152938516602485015291909316604483015263ffffffff92831660648301526001600160601b0316608482015290841660a482015260c401600060405180830381600087803b15801561337257600080fd5b505af1158015613386573d6000803e3d6000fd5b50505050600773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63f818e43c9091611003603e5490565b603e81600381106133c157600080fd5b0154905081565b6000546001600160a01b031633146134105760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517ff543e37d0000000000000000000000000000000000000000000000000000000081526027600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063f543e37d906044016108fb565b6000546001600160a01b031633146134b95760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6134c36000615a7c565b565b6000546001600160a01b0316331461350d5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000603d60009054906101000a90046001600160a01b03166001600160a01b03166375b922d16040518163ffffffff1660e01b815260040160806040518083038186803b15801561356057600080fd5b505afa158015613574573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135989190615dc0565b603d549396509094509250506001600160a01b031663dc49117b846135c560356002015463ffffffff1690565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015263ffffffff9182166024820152918616604483015284166064820152608401600060405180830381600087803b15801561362257600080fd5b505af1158015613636573d6000803e3d6000fd5b50505050603573__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63d2a27c3390916114aa603e5490565b6000546001600160a01b031633146136a95760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b15801561370657600080fd5b505afa15801561371a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061373e9190615c60565b99509950995099509950995099505098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a61378960136004015463ffffffff1690565b6040516001600160e01b031960e086901b16815267ffffffffffffffff9384166004820152918316602483015263ffffffff9081166044830152808c1660648301526001600160601b03808c166084840152818b1660a484015292891660c483015280881660e483015291861661010482015290841661012482015261014401600060405180830381600087803b15801561382357600080fd5b505af1158015613837573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__6351a3d06e9091610b36603e5490565b6000546001600160a01b031633146138aa5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f93703bc80000000000000000000000000000000000000000000000000000000081526013600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__906393703bc8906044016108fb565b6000546001600160a01b0316331461394f5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080603d60009054906101000a90046001600160a01b03166001600160a01b031663c42b64d06040518163ffffffff1660e01b815260040160606040518083038186803b1580156139a057600080fd5b505afa1580156139b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139d89190615ef9565b50603d5491935091506001600160a01b03166317c964008383613a0760016004015467ffffffffffffffff1690565b60405160e085901b6001600160e01b031916815267ffffffffffffffff938416600482015291831660248301529091166044820152606401600060405180830381600087803b158015613a5957600080fd5b505af1158015613a6d573d6000803e3d6000fd5b50505050600173__$a76fe959a16b0ef92b5d2bd739d5cb0318$__6368decba29091612188603e5490565b6000546001600160a01b03163314613ae05760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f8ae0c434000000000000000000000000000000000000000000000000000000008152601360048201526001600160601b038216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90638ae0c434906044016108fb565b6000546001600160a01b03163314613b885760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6042805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091554260418190556040805192835260208301919091527f24973178c1aef0f16b3490f7b45109bb38df71d627a7ed575597447150837881910160405180910390a150565b6000546001600160a01b03163314613c3e5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080603d60009054906101000a90046001600160a01b03166001600160a01b031663c42b64d06040518163ffffffff1660e01b815260040160606040518083038186803b158015613c8f57600080fd5b505afa158015613ca3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cc79190615ef9565b603d549294509250506001600160a01b03166317c9640083613cf560016002015467ffffffffffffffff1690565b6040516001600160e01b031960e085901b16815267ffffffffffffffff928316600482015290821660248201529084166044820152606401600060405180830381600087803b158015613d4757600080fd5b505af1158015613d5b573d6000803e3d6000fd5b50505050600173__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63362c23729091612188603e5490565b6000546001600160a01b03163314613dce5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080600080600080603d60009054906101000a90046001600160a01b03166001600160a01b03166361ccf97a6040518163ffffffff1660e01b815260040160e06040518083038186803b158015613e2557600080fd5b505afa158015613e39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e5d9190615e1f565b603d546040517ff173110a00000000000000000000000000000000000000000000000000000000815260276004820152969d50949b50929950909750955093506001600160a01b0316915063883d6a119073__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063f173110a9060240160206040518083038186803b158015613ee557600080fd5b505af4158015613ef9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f1d9190615f46565b6040516001600160e01b031960e084901b16815263ffffffff918216600482015267ffffffffffffffff808b166024830152808a16604483015280891660648301528288166084830152861660a482015290841660c482015260e401600060405180830381600087803b158015613f9357600080fd5b505af1158015613fa7573d6000803e3d6000fd5b50505050602773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63a62029f6909161181a603e5490565b6000546001600160a01b0316331461401a5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f2647ff620000000000000000000000000000000000000000000000000000000081526013600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90632647ff62906044016108fb565b6000546001600160a01b031633146140bf5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b15801561411c57600080fd5b505afa158015614130573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141549190615c60565b99505098509850985098509850985098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a8a8a8a8a8a8a6141a86013601001546001600160601b031690565b60405160e08b901b6001600160e01b031916815267ffffffffffffffff998a166004820152978916602489015263ffffffff968716604489015294861660648801526001600160601b03938416608488015291851660a487015290951660c485015293821660e48401529290921661010482015290841661012482015261014401600060405180830381600087803b15801561424357600080fd5b505af1158015614257573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__636d5be9be9091610b36603e5490565b6000546001600160a01b031633146142ca5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fa6b0e7bd0000000000000000000000000000000000000000000000000000000081526013600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063a6b0e7bd906044016108fb565b6000546001600160a01b0316331461436f5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f313e9c000000000000000000000000000000000000000000000000000000000081526027600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063313e9c00906044016108fb565b6000546001600160a01b031633146144145760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f91346cbb0000000000000000000000000000000000000000000000000000000081526027600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__906391346cbb906044016108fb565b6000546001600160a01b031633146144bd5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f04b8e2eb0000000000000000000000000000000000000000000000000000000081526027600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__906304b8e2eb906044016108fb565b6000546001600160a01b031633146145665760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b1580156145c357600080fd5b505afa1580156145d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145fb9190615c60565b99509950995099509950995099509950995050603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf61464560135467ffffffffffffffff1690565b6040516001600160e01b031960e084901b16815267ffffffffffffffff9182166004820152818d16602482015263ffffffff808d166044830152808c1660648301526001600160601b03808c166084840152818b1660a484015292891660c483015280881660e483015291861661010482015290841661012482015261014401600060405180830381600087803b1580156146df57600080fd5b505af11580156146f3573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__630b5a08ed9091610b36603e5490565b6000546001600160a01b031633146147665760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080600080600080603d60009054906101000a90046001600160a01b03166001600160a01b03166361ccf97a6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156147bd57600080fd5b505afa1580156147d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147f59190615e1f565b603d54969c50949a5091985096509450909250506001600160a01b031663883d6a11878761482f60276004015467ffffffffffffffff1690565b6040516001600160e01b031960e086901b16815263ffffffff938416600482015267ffffffffffffffff928316602482015290821660448201528189166064820152828816608482015290861660a482015290841660c482015260e401600060405180830381600087803b1580156148a657600080fd5b505af11580156148ba573d6000803e3d6000fd5b50505050602773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63f08cac39909161181a603e5490565b6000546001600160a01b0316331461492d5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b15801561498a57600080fd5b505afa15801561499e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906149c29190615c60565b99509950995099509950509850985098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a8a8a601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63d66d1d2390916040518263ffffffff1660e01b8152600401614a3991815260200190565b60206040518083038186803b158015614a5157600080fd5b505af4158015614a65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614a899190615f63565b6040516001600160e01b031960e088901b16815267ffffffffffffffff9586166004820152938516602485015263ffffffff928316604485015290821660648401526001600160601b039081166084840152818b1660a484015292891660c483015280881660e483015291861661010482015290841661012482015261014401600060405180830381600087803b158015614b2357600080fd5b505af1158015614b37573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63ffbe06279091610b36603e5490565b6000546001600160a01b03163314614baa5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f8a397dd7000000000000000000000000000000000000000000000000000000008152603560048201526001600160601b038216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90638a397dd7906044016108fb565b6000546001600160a01b03163314614c525760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f3a5ade200000000000000000000000000000000000000000000000000000000081526013600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90633a5ade20906044016108fb565b6000546001600160a01b03163314614cfb5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fe37b9e1b0000000000000000000000000000000000000000000000000000000081526027600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063e37b9e1b906044016108fb565b6000546001600160a01b03163314614da05760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b0316636e70ce416040518163ffffffff1660e01b815260040160c06040518083038186803b158015614df657600080fd5b505afa158015614e0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614e2e9190615d39565b603d54959a50939850919650909450909250506001600160a01b031663a9b84896868686614e6460076006015463ffffffff1690565b6040516001600160e01b031960e087901b16815267ffffffffffffffff948516600482015292841660248401529216604482015263ffffffff91821660648201526001600160601b038616608482015290841660a482015260c401600060405180830381600087803b158015614ed957600080fd5b505af1158015614eed573d6000803e3d6000fd5b50505050600773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63a48814a59091611003603e5490565b6000546001600160a01b03163314614f605760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b614f6b600782615ad9565b50565b6000546001600160a01b03163314614fb65760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b0316636e70ce416040518163ffffffff1660e01b815260040160c06040518083038186803b15801561500c57600080fd5b505afa158015615020573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906150449190615d39565b603d54959a5092985090965094509250506001600160a01b031663a9b848968661507a60076002015467ffffffffffffffff1690565b6040516001600160e01b031960e085901b16815267ffffffffffffffff92831660048201529082166024820152908716604482015263ffffffff80871660648301526001600160601b0386166084830152841660a482015260c401600060405180830381600087803b1580156150ef57600080fd5b505af1158015615103573d6000803e3d6000fd5b50505050600773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63c4faa8679091611003603e5490565b6000546001600160a01b031633146151765760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f4a320d9c000000000000000000000000000000000000000000000000000000008152601360048201526001600160601b038216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90634a320d9c906044016108fb565b6000546001600160a01b0316331461521e5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6001600160a01b03811661529a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610895565b614f6b81615a7c565b6000546001600160a01b031633146152eb5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b15801561534857600080fd5b505afa15801561535c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906153809190615c60565b99509950995099509950995050985098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a8a6153cc60136006015463ffffffff1690565b6040516001600160e01b031960e087901b16815267ffffffffffffffff9485166004820152928416602484015263ffffffff9182166044840152811660648301526001600160601b03808c166084840152818b1660a484015292891660c483015280881660e483015291861661010482015290841661012482015261014401600060405180830381600087803b15801561546557600080fd5b505af1158015615479573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63dcce6cc89091610b36603e5490565b6000546001600160a01b031633146154ec5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000603d60009054906101000a90046001600160a01b03166001600160a01b03166375b922d16040518163ffffffff1660e01b815260040160806040518083038186803b15801561553f57600080fd5b505afa158015615553573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906155779190615dc0565b603d54939650919450909250506001600160a01b031663dc49117b84846155a96035600401546001600160601b031690565b6040516001600160e01b031960e086901b1681526001600160601b03938416600482015263ffffffff92831660248201529216604483015284166064820152608401600060405180830381600087803b15801561560557600080fd5b505af1158015615619573d6000803e3d6000fd5b50505050603573__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63a9e3176390916114aa603e5490565b6000546001600160a01b0316331461568c5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080600080600080603d60009054906101000a90046001600160a01b03166001600160a01b03166361ccf97a6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156156e357600080fd5b505afa1580156156f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061571b9190615e1f565b603d54969c50949a509298509096509450909250506001600160a01b031663883d6a1187878787876157596027600a015467ffffffffffffffff1690565b60405160e088901b6001600160e01b031916815263ffffffff968716600482015267ffffffffffffffff9586166024820152938516604485015291841660648401528416608483015290911660a482015290841660c482015260e401600060405180830381600087803b1580156157cf57600080fd5b505af11580156157e3573d6000803e3d6000fd5b50505050602773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63af11623a909161181a603e5490565b6000546001600160a01b031633146158565760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fbaa939730000000000000000000000000000000000000000000000000000000081526007600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063baa93973906044016108fb565b6000546001600160a01b031633146158ff5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080600080600080603d60009054906101000a90046001600160a01b03166001600160a01b03166361ccf97a6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561595657600080fd5b505afa15801561596a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061598e9190615e1f565b603d54969c50939a50919850965094509250506001600160a01b031663883d6a11876159c660276002015467ffffffffffffffff1690565b6040516001600160e01b031960e085901b16815263ffffffff928316600482015267ffffffffffffffff9182166024820152818a1660448201528189166064820152828816608482015290861660a482015290841660c482015260e401600060405180830381600087803b158015615a3d57600080fd5b505af1158015615a51573d6000803e3d6000fd5b50505050602773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__6381f5c03a909161181a603e5490565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600a8201805463ffffffff191663ffffffff831690811790915542600b84018190556040805192835260208301919091527f73b633ecce293f6df47e8252b90ddc40f544d6b85ac39fc0c6333648937b8d0d910160405180910390a15050565b67ffffffffffffffff81168114614f6b57600080fd5b600060208284031215615b6157600080fd5b8135615b6c81615b39565b9392505050565b63ffffffff81168114614f6b57600080fd5b600060208284031215615b9757600080fd5b8135615b6c81615b73565b6001600160601b0381168114614f6b57600080fd5b600060208284031215615bc957600080fd5b8135615b6c81615ba2565b600060208284031215615be657600080fd5b5035919050565b80356001600160a01b0381168114615c0457600080fd5b919050565b60008060408385031215615c1c57600080fd5b615c2583615bed565b915060208301358015158114615c3a57600080fd5b809150509250929050565b600060208284031215615c5757600080fd5b615b6c82615bed565b6000806000806000806000806000806101408b8d031215615c8057600080fd5b8a51615c8b81615b39565b60208c0151909a50615c9c81615b39565b60408c0151909950615cad81615b73565b60608c0151909850615cbe81615b73565b60808c0151909750615ccf81615ba2565b60a08c0151909650615ce081615b73565b60c08c0151909550615cf181615b39565b60e08c0151909450615d0281615b73565b6101008c0151909350615d1481615ba2565b6101208c0151909250615d2681615b73565b809150509295989b9194979a5092959850565b60008060008060008060c08789031215615d5257600080fd5b8651615d5d81615b39565b6020880151909650615d6e81615b39565b6040880151909550615d7f81615b39565b6060880151909450615d9081615b73565b6080880151909350615da181615ba2565b60a0880151909250615db281615b73565b809150509295509295509295565b60008060008060808587031215615dd657600080fd5b8451615de181615ba2565b6020860151909450615df281615b73565b6040860151909350615e0381615ba2565b6060860151909250615e1481615b73565b939692955090935050565b600080600080600080600060e0888a031215615e3a57600080fd5b8751615e4581615b73565b6020890151909750615e5681615b39565b6040890151909650615e6781615b39565b6060890151909550615e7881615b39565b6080890151909450615e8981615b73565b60a0890151909350615e9a81615b39565b60c0890151909250615eab81615b73565b8091505092959891949750929550565b600082821015615ef4577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500390565b600080600060608486031215615f0e57600080fd5b8351615f1981615b39565b6020850151909350615f2a81615b39565b6040850151909250615f3b81615b39565b809150509250925092565b600060208284031215615f5857600080fd5b8151615b6c81615b73565b600060208284031215615f7557600080fd5b8151615b6c81615ba256fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122027ec162aca9eb00617ebc209df7aca1c2fe257a81cfa08d65b00bab4070ccc1264736f6c63430008090033",
|
|
1745
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106104725760003560e01c806368fcf2a811610250578063b372e40311610150578063e7c7c8c8116100c8578063f44c0f3311610097578063f9f06a9a1161007c578063f9f06a9a1461082e578063fabcb8fa14610836578063fcbf9be71461084957600080fd5b8063f44c0f331461081e578063f604f5d31461082657600080fd5b8063e7c7c8c8146107dd578063f00b17d4146107f0578063f039ee9a146107f8578063f2fde38b1461080b57600080fd5b8063c79fb0111161011f578063d25cb94611610104578063d25cb946146107af578063dc46f09d146107c2578063dd6d0e68146107d557600080fd5b8063c79fb01114610794578063d1234d951461079c57600080fd5b8063b372e4031461075e578063c1104a2d14610771578063c63cba4614610784578063c789663b1461078c57600080fd5b80638b18a505116101e357806397845cc4116101b25780639b64dab8116101975780639b64dab814610730578063a855072514610738578063aa4d9ccc1461074b57600080fd5b806397845cc41461071557806397fd27fc1461071d57600080fd5b80638b18a505146106d65780638c382a53146106e95780638da5cb5b146106f2578063961312ce1461070d57600080fd5b80637256fde91161021f5780637256fde9146106a05780637318814c146106a857806380b2f2db146106bb57806385082d2c146106c357600080fd5b806368fcf2a8146106575780636a57a28b1461067d578063715018a61461069057806371c967581461069857600080fd5b80633860c357116103765780634cf19dde116102ee578063605da053116102bd578063625391f9116102a2578063625391f9146106345780636263b8831461063c5780636636b6551461064f57600080fd5b8063605da0531461061957806360d712fc1461062157600080fd5b80634cf19dde146105d85780634f5bfd2a146105eb578063541d6987146105fe5780636015124b1461061157600080fd5b806343b327c311610345578063480753671161032a57806348075367146105aa57806348dd7d66146105b25780634abef7d4146105c557600080fd5b806343b327c31461058f578063471c169f146105a257600080fd5b80633860c3571461054e5780633a1e363d146105565780634078dde01461056957806340c9ac421461057c57600080fd5b80631fb738bb1161040957806326c23dda116103d85780632eb97687116103bd5780632eb976871461052b5780632f65b50f1461053357806337fa5d511461053b57600080fd5b806326c23dda1461051057806329d8c91d1461051857600080fd5b80631fb738bb146104da57806322f1d80a146104ed57806324d6fa9d1461050057806326825a9d1461050857600080fd5b806311f08c3e1161044557806311f08c3e146104af57806312864337146104b757806315566135146104ca5780631b3d4e63146104d257600080fd5b806301a1f86f146104775780630403ac241461048c57806305a1d322146104945780630a303cd21461049c575b600080fd5b61048a610485366004615b4f565b610851565b005b61048a61092e565b61048a610b95565b61048a6104aa366004615b85565b610d9a565b61048a610e3f565b61048a6104c5366004615bb7565b61105e565b61048a611106565b61048a61130d565b61048a6104e8366004615bb7565b611503565b61048a6104fb366004615b4f565b6115ab565b61048a611654565b61048a611876565b61048a61197c565b61048a610526366004615b85565b611b44565b61048a611be9565b61048a611ded565b61048a610549366004615bd4565b611faa565b61048a611ffb565b61048a610564366004615b4f565b6121e0565b61048a610577366004615b4f565b612289565b61048a61058a366004615b4f565b612332565b61048a61059d366004615b4f565b6123db565b61048a612484565b61048a612646565b61048a6105c0366004615b4f565b6127e4565b61048a6105d3366004615b85565b61288d565b61048a6105e6366004615b85565b612932565b61048a6105f9366004615b85565b6129d7565b61048a61060c366004615b85565b612a7c565b61048a612b21565b61048a612d25565b61048a61062f366004615c09565b612ebb565b61048a612f7f565b61048a61064a366004615b4f565b613144565b61048a6131ed565b61066a610665366004615bd4565b6133b1565b6040519081526020015b60405180910390f35b61048a61068b366004615b4f565b6133c8565b61048a613471565b61048a6134c5565b61048a613661565b61048a6106b6366004615b85565b613862565b61048a613907565b61048a6106d1366004615bb7565b613a98565b61048a6106e4366004615c45565b613b40565b61066a60415481565b6000546040516001600160a01b039091168152602001610674565b61048a613bf6565b61048a613d86565b61048a61072b366004615b85565b613fd2565b61048a614077565b61048a610746366004615b85565b614282565b61048a610759366004615b85565b614327565b61048a61076c366004615b4f565b6143cc565b61048a61077f366004615b4f565b614475565b61048a61451e565b61048a61471e565b61048a6148e5565b61048a6107aa366004615bb7565b614b62565b61048a6107bd366004615b4f565b614c0a565b61048a6107d0366004615b85565b614cb3565b61048a614d58565b61048a6107eb366004615b85565b614f18565b61048a614f6e565b61048a610806366004615bb7565b61512e565b61048a610819366004615c45565b6151d6565b61048a6152a3565b61048a6154a4565b61048a615644565b61048a610844366004615b4f565b61580e565b61048a6158b7565b6000546001600160a01b0316331461089e5760405162461bcd60e51b81526020600482018190526024820152600080516020615f8183398151915260448201526064015b60405180910390fd5b6040517f810698b20000000000000000000000000000000000000000000000000000000081526001600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063810698b2906044015b60006040518083038186803b15801561091357600080fd5b505af4158015610927573d6000803e3d6000fd5b5050505050565b6000546001600160a01b031633146109765760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b1580156109d357600080fd5b505afa1580156109e7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0b9190615c60565b50985098509850985098509850985098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a8a8a8a8a8a8a8a610a5d60136012015463ffffffff1690565b6040516001600160e01b031960e08d901b16815267ffffffffffffffff9a8b166004820152988a1660248a015263ffffffff97881660448a015295871660648901526001600160601b03948516608489015292861660a4880152961660c486015294831660e48501529093166101048301529190911661012482015261014401600060405180830381600087803b158015610af757600080fd5b505af1158015610b0b573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__637d105c799091610b36603e5490565b6040516001600160e01b031960e085901b1681526004810192909252602482015260440160006040518083038186803b158015610b7257600080fd5b505af4158015610b86573d6000803e3d6000fd5b50505050505050505050505050565b6000546001600160a01b03163314610bdd5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b158015610c3a57600080fd5b505afa158015610c4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c729190615c60565b99509950509850985098509850985098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a8a8a8a8a8a610cc26013600e015463ffffffff1690565b60405160e08a901b6001600160e01b031916815267ffffffffffffffff9889166004820152968816602488015263ffffffff958616604488015293851660648701526001600160601b03928316608487015290841660a486015290941660c4840152811660e483015291861661010482015290841661012482015261014401600060405180830381600087803b158015610d5b57600080fd5b505af1158015610d6f573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__638c0fc65a9091610b36603e5490565b6000546001600160a01b03163314610de25760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f161d610c0000000000000000000000000000000000000000000000000000000081526027600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063161d610c906044016108fb565b6000546001600160a01b03163314610e875760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b0316636e70ce416040518163ffffffff1660e01b815260040160c06040518083038186803b158015610edd57600080fd5b505afa158015610ef1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f159190615d39565b50603d54949950929750909550935091506001600160a01b031663a9b848968686868686610f4b6007600a015463ffffffff1690565b6040516001600160e01b031960e089901b16815267ffffffffffffffff9687166004820152948616602486015294909216604484015263ffffffff90811660648401526001600160601b0390911660848301529190911660a482015260c401600060405180830381600087803b158015610fc457600080fd5b505af1158015610fd8573d6000803e3d6000fd5b50505050600773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63728bd45d9091611003603e5490565b6040516001600160e01b031960e085901b1681526004810192909252602482015260440160006040518083038186803b15801561103f57600080fd5b505af4158015611053573d6000803e3d6000fd5b505050505050505050565b6000546001600160a01b031633146110a65760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fbf08acfc000000000000000000000000000000000000000000000000000000008152603560048201526001600160601b038216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063bf08acfc906044016108fb565b6000546001600160a01b0316331461114e5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b1580156111ab57600080fd5b505afa1580156111bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e39190615c60565b99509950995050985098509850985098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a8a8a8a8a6112366013600c015467ffffffffffffffff1690565b6040516001600160e01b031960e08a901b16815267ffffffffffffffff9788166004820152958716602487015263ffffffff948516604487015292841660648601526001600160601b039182166084860152831660a4850152931660c483015280881660e483015291861661010482015290841661012482015261014401600060405180830381600087803b1580156112ce57600080fd5b505af11580156112e2573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__634569ab889091610b36603e5490565b6000546001600160a01b031633146113555760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000603d60009054906101000a90046001600160a01b03166001600160a01b03166375b922d16040518163ffffffff1660e01b815260040160806040518083038186803b1580156113a857600080fd5b505afa1580156113bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e09190615dc0565b603d5492965090945092506001600160a01b0316905063dc49117b61140d6035546001600160601b031690565b6040516001600160e01b031960e084901b1681526001600160601b03918216600482015263ffffffff808816602483015291861660448201529084166064820152608401600060405180830381600087803b15801561146b57600080fd5b505af115801561147f573d6000803e3d6000fd5b50505050603573__$a76fe959a16b0ef92b5d2bd739d5cb0318$__638f2ca64590916114aa603e5490565b6040516001600160e01b031960e085901b1681526004810192909252602482015260440160006040518083038186803b1580156114e657600080fd5b505af41580156114fa573d6000803e3d6000fd5b50505050505050565b6000546001600160a01b0316331461154b5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fbbb64b5c000000000000000000000000000000000000000000000000000000008152600760048201526001600160601b038216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063bbb64b5c906044016108fb565b6000546001600160a01b031633146115f35760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fe961fd9e0000000000000000000000000000000000000000000000000000000081526027600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063e961fd9e906044016108fb565b6000546001600160a01b0316331461169c5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080600080600080603d60009054906101000a90046001600160a01b03166001600160a01b03166361ccf97a6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156116f357600080fd5b505afa158015611707573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172b9190615e1f565b603d54969c50949a50929850909650909450909250506001600160a01b031663883d6a118787878761176560276008015463ffffffff1690565b6040516001600160e01b031960e088901b16815263ffffffff958616600482015267ffffffffffffffff9485166024820152928416604484015290831660648301528316608482015290861660a482015290841660c482015260e401600060405180830381600087803b1580156117db57600080fd5b505af11580156117ef573d6000803e3d6000fd5b50505050602773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__6305be330f909161181a603e5490565b6040516001600160e01b031960e085901b1681526004810192909252602482015260440160006040518083038186803b15801561185657600080fd5b505af415801561186a573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146118be5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b60405461190d5760405162461bcd60e51b815260206004820152601460248201527f4368616e6765206e6f7420696e697469617465640000000000000000000000006044820152606401610895565b603e5460405461191d9042615ebb565b1161196a5760405162461bcd60e51b815260206004820181905260248201527f476f7665726e616e63652064656c617920686173206e6f7420656c61707365646044820152606401610895565b603f8054603e55600090819055604055565b6000546001600160a01b031633146119c45760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080600080600080603d60009054906101000a90046001600160a01b03166001600160a01b03166361ccf97a6040518163ffffffff1660e01b815260040160e06040518083038186803b158015611a1b57600080fd5b505afa158015611a2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a539190615e1f565b603d54969c50949a509298509650909450909250506001600160a01b031663883d6a11878787611a8f60276006015467ffffffffffffffff1690565b6040516001600160e01b031960e087901b16815263ffffffff948516600482015267ffffffffffffffff9384166024820152918316604483015282166064820152828816608482015290861660a482015290841660c482015260e401600060405180830381600087803b158015611b0557600080fd5b505af1158015611b19573d6000803e3d6000fd5b50505050602773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__633861f138909161181a603e5490565b6000546001600160a01b03163314611b8c5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f9707e9ad0000000000000000000000000000000000000000000000000000000081526013600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90639707e9ad906044016108fb565b6000546001600160a01b03163314611c315760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b158015611c8e57600080fd5b505afa158015611ca2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cc69190615c60565b99509950995099509950995099509950509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a611d1460136002015467ffffffffffffffff1690565b6040516001600160e01b031960e085901b16815267ffffffffffffffff9283166004820152908216602482015263ffffffff808d166044830152808c1660648301526001600160601b03808c166084840152818b1660a484015292891660c483015280881660e483015291861661010482015290841661012482015261014401600060405180830381600087803b158015611dae57600080fd5b505af1158015611dc2573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63d6964b979091610b36603e5490565b6000546001600160a01b03163314611e355760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b0316636e70ce416040518163ffffffff1660e01b815260040160c06040518083038186803b158015611e8b57600080fd5b505afa158015611e9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec39190615d39565b603d54949a50929850909650945092506001600160a01b0316905063a9b84896611ef660075467ffffffffffffffff1690565b6040516001600160e01b031960e084901b16815267ffffffffffffffff91821660048201528189166024820152908716604482015263ffffffff80871660648301526001600160601b0386166084830152841660a482015260c401600060405180830381600087803b158015611f6b57600080fd5b505af1158015611f7f573d6000803e3d6000fd5b50505050600773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63ec9f47609091611003603e5490565b6000546001600160a01b03163314611ff25760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b603f5542604055565b6000546001600160a01b031633146120435760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080603d60009054906101000a90046001600160a01b03166001600160a01b031663c42b64d06040518163ffffffff1660e01b815260040160606040518083038186803b15801561209457600080fd5b505afa1580156120a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120cc9190615ef9565b603d5491945092506001600160a01b031690506317c964006120f760015467ffffffffffffffff1690565b6040516001600160e01b031960e084901b16815267ffffffffffffffff918216600482015281861660248201529084166044820152606401600060405180830381600087803b15801561214957600080fd5b505af115801561215d573d6000803e3d6000fd5b50505050600173__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63ae2563839091612188603e5490565b6040516001600160e01b031960e085901b1681526004810192909252602482015260440160006040518083038186803b1580156121c457600080fd5b505af41580156121d8573d6000803e3d6000fd5b505050505050565b6000546001600160a01b031633146122285760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f68af50210000000000000000000000000000000000000000000000000000000081526007600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__906368af5021906044016108fb565b6000546001600160a01b031633146122d15760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f158c660e0000000000000000000000000000000000000000000000000000000081526001600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063158c660e906044016108fb565b6000546001600160a01b0316331461237a5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fcef037d80000000000000000000000000000000000000000000000000000000081526001600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063cef037d8906044016108fb565b6000546001600160a01b031633146124235760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f3c1274000000000000000000000000000000000000000000000000000000000081526007600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90633c127400906044016108fb565b6000546001600160a01b031633146124cc5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b0316636e70ce416040518163ffffffff1660e01b815260040160c06040518083038186803b15801561252257600080fd5b505afa158015612536573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061255a9190615d39565b603d54959a509398509096509450909250506001600160a01b031663a9b84896868661259260076004015467ffffffffffffffff1690565b60405160e085901b6001600160e01b031916815267ffffffffffffffff93841660048201529183166024830152909116604482015263ffffffff86811660648301526001600160601b0386166084830152841660a482015260c401600060405180830381600087803b15801561260757600080fd5b505af115801561261b573d6000803e3d6000fd5b50505050600773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__639232db3f9091611003603e5490565b6000546001600160a01b0316331461268e5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000603d60009054906101000a90046001600160a01b03166001600160a01b03166375b922d16040518163ffffffff1660e01b815260040160806040518083038186803b1580156126e157600080fd5b505afa1580156126f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127199190615dc0565b50603d5492955090935091506001600160a01b031663dc49117b84848461274860356006015463ffffffff1690565b6040516001600160e01b031960e087901b1681526001600160601b03948516600482015263ffffffff9384166024820152939091166044840152166064820152608401600060405180830381600087803b1580156127a557600080fd5b505af11580156127b9573d6000803e3d6000fd5b50505050603573__$a76fe959a16b0ef92b5d2bd739d5cb0318$__630c4e568690916114aa603e5490565b6000546001600160a01b0316331461282c5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f72c9ed960000000000000000000000000000000000000000000000000000000081526013600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__906372c9ed96906044016108fb565b6000546001600160a01b031633146128d55760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fc6244eda0000000000000000000000000000000000000000000000000000000081526013600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063c6244eda906044016108fb565b6000546001600160a01b0316331461297a5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f2d453d570000000000000000000000000000000000000000000000000000000081526035600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90632d453d57906044016108fb565b6000546001600160a01b03163314612a1f5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f7058858a0000000000000000000000000000000000000000000000000000000081526035600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90637058858a906044016108fb565b6000546001600160a01b03163314612ac45760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fe61a78860000000000000000000000000000000000000000000000000000000081526007600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063e61a7886906044016108fb565b6000546001600160a01b03163314612b695760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b158015612bc657600080fd5b505afa158015612bda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bfe9190615c60565b99509950995099505098509850985098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a8a8a8a612c4c6013600a015463ffffffff1690565b6040516001600160e01b031960e089901b16815267ffffffffffffffff9687166004820152948616602486015263ffffffff938416604486015291831660648501526001600160601b03908116608485015290821660a484015292891660c483015280881660e483015291861661010482015290841661012482015261014401600060405180830381600087803b158015612ce657600080fd5b505af1158015612cfa573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__631b3f064f9091610b36603e5490565b6000546001600160a01b03163314612d6d5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600060415411612dbf5760405162461bcd60e51b815260206004820152601460248201527f4368616e6765206e6f7420696e697469617465640000000000000000000000006044820152606401610895565b603e54604154612dcf9042615ebb565b1015612e1d5760405162461bcd60e51b815260206004820181905260248201527f476f7665726e616e63652064656c617920686173206e6f7420656c61707365646044820152606401610895565b603d546042546040517fd38bfff40000000000000000000000000000000000000000000000000000000081526001600160a01b03918216600482015291169063d38bfff490602401600060405180830381600087803b158015612e7f57600080fd5b505af1158015612e93573d6000803e3d6000fd5b5050600060415550506042805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000546001600160a01b03163314612f035760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b603d546040517f60d712fc0000000000000000000000000000000000000000000000000000000081526001600160a01b0384811660048301528315156024830152909116906360d712fc90604401600060405180830381600087803b158015612f6b57600080fd5b505af11580156121d8573d6000803e3d6000fd5b6000546001600160a01b03163314612fc75760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080600080600080603d60009054906101000a90046001600160a01b03166001600160a01b03166361ccf97a6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561301e57600080fd5b505afa158015613032573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130569190615e1f565b50603d54959b509399509197509550935091506001600160a01b031663883d6a1187878787878761308f6027600c015463ffffffff1690565b60405160e089901b6001600160e01b031916815263ffffffff978816600482015267ffffffffffffffff968716602482015294861660448601529285166064850152908516608484015290921660a4820152911660c482015260e401600060405180830381600087803b15801561310557600080fd5b505af1158015613119573d6000803e3d6000fd5b50505050602773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63dbf83803909161181a603e5490565b6000546001600160a01b0316331461318c5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f8f53d8040000000000000000000000000000000000000000000000000000000081526013600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90638f53d804906044016108fb565b6000546001600160a01b031633146132355760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b0316636e70ce416040518163ffffffff1660e01b815260040160c06040518083038186803b15801561328b57600080fd5b505afa15801561329f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132c39190615d39565b603d54959a509398509196509450909250506001600160a01b031663a9b84896868686866132fc6007600801546001600160601b031690565b60405160e087901b6001600160e01b031916815267ffffffffffffffff9586166004820152938516602485015291909316604483015263ffffffff92831660648301526001600160601b0316608482015290841660a482015260c401600060405180830381600087803b15801561337257600080fd5b505af1158015613386573d6000803e3d6000fd5b50505050600773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63f818e43c9091611003603e5490565b603e81600381106133c157600080fd5b0154905081565b6000546001600160a01b031633146134105760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517ff543e37d0000000000000000000000000000000000000000000000000000000081526027600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063f543e37d906044016108fb565b6000546001600160a01b031633146134b95760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6134c36000615a7c565b565b6000546001600160a01b0316331461350d5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000603d60009054906101000a90046001600160a01b03166001600160a01b03166375b922d16040518163ffffffff1660e01b815260040160806040518083038186803b15801561356057600080fd5b505afa158015613574573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135989190615dc0565b603d549396509094509250506001600160a01b031663dc49117b846135c560356002015463ffffffff1690565b6040516001600160e01b031960e085901b1681526001600160601b03928316600482015263ffffffff9182166024820152918616604483015284166064820152608401600060405180830381600087803b15801561362257600080fd5b505af1158015613636573d6000803e3d6000fd5b50505050603573__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63d2a27c3390916114aa603e5490565b6000546001600160a01b031633146136a95760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b15801561370657600080fd5b505afa15801561371a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061373e9190615c60565b99509950995099509950995099505098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a61378960136004015463ffffffff1690565b6040516001600160e01b031960e086901b16815267ffffffffffffffff9384166004820152918316602483015263ffffffff9081166044830152808c1660648301526001600160601b03808c166084840152818b1660a484015292891660c483015280881660e483015291861661010482015290841661012482015261014401600060405180830381600087803b15801561382357600080fd5b505af1158015613837573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__6351a3d06e9091610b36603e5490565b6000546001600160a01b031633146138aa5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f93703bc80000000000000000000000000000000000000000000000000000000081526013600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__906393703bc8906044016108fb565b6000546001600160a01b0316331461394f5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080603d60009054906101000a90046001600160a01b03166001600160a01b031663c42b64d06040518163ffffffff1660e01b815260040160606040518083038186803b1580156139a057600080fd5b505afa1580156139b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139d89190615ef9565b50603d5491935091506001600160a01b03166317c964008383613a0760016004015467ffffffffffffffff1690565b60405160e085901b6001600160e01b031916815267ffffffffffffffff938416600482015291831660248301529091166044820152606401600060405180830381600087803b158015613a5957600080fd5b505af1158015613a6d573d6000803e3d6000fd5b50505050600173__$a76fe959a16b0ef92b5d2bd739d5cb0318$__6368decba29091612188603e5490565b6000546001600160a01b03163314613ae05760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f8ae0c434000000000000000000000000000000000000000000000000000000008152601360048201526001600160601b038216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90638ae0c434906044016108fb565b6000546001600160a01b03163314613b885760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6042805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091554260418190556040805192835260208301919091527f24973178c1aef0f16b3490f7b45109bb38df71d627a7ed575597447150837881910160405180910390a150565b6000546001600160a01b03163314613c3e5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080603d60009054906101000a90046001600160a01b03166001600160a01b031663c42b64d06040518163ffffffff1660e01b815260040160606040518083038186803b158015613c8f57600080fd5b505afa158015613ca3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cc79190615ef9565b603d549294509250506001600160a01b03166317c9640083613cf560016002015467ffffffffffffffff1690565b6040516001600160e01b031960e085901b16815267ffffffffffffffff928316600482015290821660248201529084166044820152606401600060405180830381600087803b158015613d4757600080fd5b505af1158015613d5b573d6000803e3d6000fd5b50505050600173__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63362c23729091612188603e5490565b6000546001600160a01b03163314613dce5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080600080600080603d60009054906101000a90046001600160a01b03166001600160a01b03166361ccf97a6040518163ffffffff1660e01b815260040160e06040518083038186803b158015613e2557600080fd5b505afa158015613e39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e5d9190615e1f565b603d546040517ff173110a00000000000000000000000000000000000000000000000000000000815260276004820152969d50949b50929950909750955093506001600160a01b0316915063883d6a119073__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063f173110a9060240160206040518083038186803b158015613ee557600080fd5b505af4158015613ef9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f1d9190615f46565b6040516001600160e01b031960e084901b16815263ffffffff918216600482015267ffffffffffffffff808b166024830152808a16604483015280891660648301528288166084830152861660a482015290841660c482015260e401600060405180830381600087803b158015613f9357600080fd5b505af1158015613fa7573d6000803e3d6000fd5b50505050602773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63a62029f6909161181a603e5490565b6000546001600160a01b0316331461401a5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f2647ff620000000000000000000000000000000000000000000000000000000081526013600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90632647ff62906044016108fb565b6000546001600160a01b031633146140bf5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b15801561411c57600080fd5b505afa158015614130573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141549190615c60565b99505098509850985098509850985098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a8a8a8a8a8a8a6141a86013601001546001600160601b031690565b60405160e08b901b6001600160e01b031916815267ffffffffffffffff998a166004820152978916602489015263ffffffff968716604489015294861660648801526001600160601b03938416608488015291851660a487015290951660c485015293821660e48401529290921661010482015290841661012482015261014401600060405180830381600087803b15801561424357600080fd5b505af1158015614257573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__636d5be9be9091610b36603e5490565b6000546001600160a01b031633146142ca5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fa6b0e7bd0000000000000000000000000000000000000000000000000000000081526013600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063a6b0e7bd906044016108fb565b6000546001600160a01b0316331461436f5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f313e9c000000000000000000000000000000000000000000000000000000000081526027600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063313e9c00906044016108fb565b6000546001600160a01b031633146144145760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f91346cbb0000000000000000000000000000000000000000000000000000000081526027600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__906391346cbb906044016108fb565b6000546001600160a01b031633146144bd5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f04b8e2eb0000000000000000000000000000000000000000000000000000000081526027600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__906304b8e2eb906044016108fb565b6000546001600160a01b031633146145665760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b1580156145c357600080fd5b505afa1580156145d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145fb9190615c60565b99509950995099509950995099509950995050603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf61464560135467ffffffffffffffff1690565b6040516001600160e01b031960e084901b16815267ffffffffffffffff9182166004820152818d16602482015263ffffffff808d166044830152808c1660648301526001600160601b03808c166084840152818b1660a484015292891660c483015280881660e483015291861661010482015290841661012482015261014401600060405180830381600087803b1580156146df57600080fd5b505af11580156146f3573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__630b5a08ed9091610b36603e5490565b6000546001600160a01b031633146147665760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080600080600080603d60009054906101000a90046001600160a01b03166001600160a01b03166361ccf97a6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156147bd57600080fd5b505afa1580156147d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147f59190615e1f565b603d54969c50949a5091985096509450909250506001600160a01b031663883d6a11878761482f60276004015467ffffffffffffffff1690565b6040516001600160e01b031960e086901b16815263ffffffff938416600482015267ffffffffffffffff928316602482015290821660448201528189166064820152828816608482015290861660a482015290841660c482015260e401600060405180830381600087803b1580156148a657600080fd5b505af11580156148ba573d6000803e3d6000fd5b50505050602773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63f08cac39909161181a603e5490565b6000546001600160a01b0316331461492d5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b15801561498a57600080fd5b505afa15801561499e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906149c29190615c60565b99509950995099509950509850985098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a8a8a601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63d66d1d2390916040518263ffffffff1660e01b8152600401614a3991815260200190565b60206040518083038186803b158015614a5157600080fd5b505af4158015614a65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614a899190615f63565b6040516001600160e01b031960e088901b16815267ffffffffffffffff9586166004820152938516602485015263ffffffff928316604485015290821660648401526001600160601b039081166084840152818b1660a484015292891660c483015280881660e483015291861661010482015290841661012482015261014401600060405180830381600087803b158015614b2357600080fd5b505af1158015614b37573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63ffbe06279091610b36603e5490565b6000546001600160a01b03163314614baa5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f8a397dd7000000000000000000000000000000000000000000000000000000008152603560048201526001600160601b038216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90638a397dd7906044016108fb565b6000546001600160a01b03163314614c525760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f3a5ade200000000000000000000000000000000000000000000000000000000081526013600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90633a5ade20906044016108fb565b6000546001600160a01b03163314614cfb5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fe37b9e1b0000000000000000000000000000000000000000000000000000000081526027600482015263ffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063e37b9e1b906044016108fb565b6000546001600160a01b03163314614da05760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b0316636e70ce416040518163ffffffff1660e01b815260040160c06040518083038186803b158015614df657600080fd5b505afa158015614e0a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614e2e9190615d39565b603d54959a50939850919650909450909250506001600160a01b031663a9b84896868686614e6460076006015463ffffffff1690565b6040516001600160e01b031960e087901b16815267ffffffffffffffff948516600482015292841660248401529216604482015263ffffffff91821660648201526001600160601b038616608482015290841660a482015260c401600060405180830381600087803b158015614ed957600080fd5b505af1158015614eed573d6000803e3d6000fd5b50505050600773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63a48814a59091611003603e5490565b6000546001600160a01b03163314614f605760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b614f6b600782615ad9565b50565b6000546001600160a01b03163314614fb65760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b0316636e70ce416040518163ffffffff1660e01b815260040160c06040518083038186803b15801561500c57600080fd5b505afa158015615020573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906150449190615d39565b603d54959a5092985090965094509250506001600160a01b031663a9b848968661507a60076002015467ffffffffffffffff1690565b6040516001600160e01b031960e085901b16815267ffffffffffffffff92831660048201529082166024820152908716604482015263ffffffff80871660648301526001600160601b0386166084830152841660a482015260c401600060405180830381600087803b1580156150ef57600080fd5b505af1158015615103573d6000803e3d6000fd5b50505050600773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63c4faa8679091611003603e5490565b6000546001600160a01b031633146151765760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517f4a320d9c000000000000000000000000000000000000000000000000000000008152601360048201526001600160601b038216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__90634a320d9c906044016108fb565b6000546001600160a01b0316331461521e5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6001600160a01b03811661529a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610895565b614f6b81615a7c565b6000546001600160a01b031633146152eb5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000806000806000806000603d60009054906101000a90046001600160a01b03166001600160a01b031663be05abe36040518163ffffffff1660e01b81526004016101406040518083038186803b15801561534857600080fd5b505afa15801561535c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906153809190615c60565b99509950995099509950995050985098509850603d60009054906101000a90046001600160a01b03166001600160a01b03166349a01abf8a8a8a6153cc60136006015463ffffffff1690565b6040516001600160e01b031960e087901b16815267ffffffffffffffff9485166004820152928416602484015263ffffffff9182166044840152811660648301526001600160601b03808c166084840152818b1660a484015292891660c483015280881660e483015291861661010482015290841661012482015261014401600060405180830381600087803b15801561546557600080fd5b505af1158015615479573d6000803e3d6000fd5b50505050601373__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63dcce6cc89091610b36603e5490565b6000546001600160a01b031633146154ec5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6000806000603d60009054906101000a90046001600160a01b03166001600160a01b03166375b922d16040518163ffffffff1660e01b815260040160806040518083038186803b15801561553f57600080fd5b505afa158015615553573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906155779190615dc0565b603d54939650919450909250506001600160a01b031663dc49117b84846155a96035600401546001600160601b031690565b6040516001600160e01b031960e086901b1681526001600160601b03938416600482015263ffffffff92831660248201529216604483015284166064820152608401600060405180830381600087803b15801561560557600080fd5b505af1158015615619573d6000803e3d6000fd5b50505050603573__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63a9e3176390916114aa603e5490565b6000546001600160a01b0316331461568c5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080600080600080603d60009054906101000a90046001600160a01b03166001600160a01b03166361ccf97a6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156156e357600080fd5b505afa1580156156f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061571b9190615e1f565b603d54969c50949a509298509096509450909250506001600160a01b031663883d6a1187878787876157596027600a015467ffffffffffffffff1690565b60405160e088901b6001600160e01b031916815263ffffffff968716600482015267ffffffffffffffff9586166024820152938516604485015291841660648401528416608483015290911660a482015290841660c482015260e401600060405180830381600087803b1580156157cf57600080fd5b505af11580156157e3573d6000803e3d6000fd5b50505050602773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__63af11623a909161181a603e5490565b6000546001600160a01b031633146158565760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b6040517fbaa939730000000000000000000000000000000000000000000000000000000081526007600482015267ffffffffffffffff8216602482015273__$a76fe959a16b0ef92b5d2bd739d5cb0318$__9063baa93973906044016108fb565b6000546001600160a01b031633146158ff5760405162461bcd60e51b81526020600482018190526024820152600080516020615f818339815191526044820152606401610895565b600080600080600080603d60009054906101000a90046001600160a01b03166001600160a01b03166361ccf97a6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561595657600080fd5b505afa15801561596a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061598e9190615e1f565b603d54969c50939a50919850965094509250506001600160a01b031663883d6a11876159c660276002015467ffffffffffffffff1690565b6040516001600160e01b031960e085901b16815263ffffffff928316600482015267ffffffffffffffff9182166024820152818a1660448201528189166064820152828816608482015290861660a482015290841660c482015260e401600060405180830381600087803b158015615a3d57600080fd5b505af1158015615a51573d6000803e3d6000fd5b50505050602773__$a76fe959a16b0ef92b5d2bd739d5cb0318$__6381f5c03a909161181a603e5490565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600a8201805463ffffffff191663ffffffff831690811790915542600b84018190556040805192835260208301919091527f73b633ecce293f6df47e8252b90ddc40f544d6b85ac39fc0c6333648937b8d0d910160405180910390a15050565b67ffffffffffffffff81168114614f6b57600080fd5b600060208284031215615b6157600080fd5b8135615b6c81615b39565b9392505050565b63ffffffff81168114614f6b57600080fd5b600060208284031215615b9757600080fd5b8135615b6c81615b73565b6001600160601b0381168114614f6b57600080fd5b600060208284031215615bc957600080fd5b8135615b6c81615ba2565b600060208284031215615be657600080fd5b5035919050565b80356001600160a01b0381168114615c0457600080fd5b919050565b60008060408385031215615c1c57600080fd5b615c2583615bed565b915060208301358015158114615c3a57600080fd5b809150509250929050565b600060208284031215615c5757600080fd5b615b6c82615bed565b6000806000806000806000806000806101408b8d031215615c8057600080fd5b8a51615c8b81615b39565b60208c0151909a50615c9c81615b39565b60408c0151909950615cad81615b73565b60608c0151909850615cbe81615b73565b60808c0151909750615ccf81615ba2565b60a08c0151909650615ce081615b73565b60c08c0151909550615cf181615b39565b60e08c0151909450615d0281615b73565b6101008c0151909350615d1481615ba2565b6101208c0151909250615d2681615b73565b809150509295989b9194979a5092959850565b60008060008060008060c08789031215615d5257600080fd5b8651615d5d81615b39565b6020880151909650615d6e81615b39565b6040880151909550615d7f81615b39565b6060880151909450615d9081615b73565b6080880151909350615da181615ba2565b60a0880151909250615db281615b73565b809150509295509295509295565b60008060008060808587031215615dd657600080fd5b8451615de181615ba2565b6020860151909450615df281615b73565b6040860151909350615e0381615ba2565b6060860151909250615e1481615b73565b939692955090935050565b600080600080600080600060e0888a031215615e3a57600080fd5b8751615e4581615b73565b6020890151909750615e5681615b39565b6040890151909650615e6781615b39565b6060890151909550615e7881615b39565b6080890151909450615e8981615b73565b60a0890151909350615e9a81615b39565b60c0890151909250615eab81615b73565b8091505092959891949750929550565b600082821015615ef4577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500390565b600080600060608486031215615f0e57600080fd5b8351615f1981615b39565b6020850151909350615f2a81615b39565b6040850151909250615f3b81615b39565b809150509250925092565b600060208284031215615f5857600080fd5b8151615b6c81615b73565b600060208284031215615f7557600080fd5b8151615b6c81615ba256fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122027ec162aca9eb00617ebc209df7aca1c2fe257a81cfa08d65b00bab4070ccc1264736f6c63430008090033",
|
|
1746
|
+
"linkReferences": {
|
|
1747
|
+
"contracts/bridge/BridgeGovernanceParameters.sol": {
|
|
1748
|
+
"BridgeGovernanceParameters": [
|
|
1749
|
+
{
|
|
1750
|
+
"length": 20,
|
|
1751
|
+
"start": 2531
|
|
1752
|
+
},
|
|
1753
|
+
{
|
|
1754
|
+
"length": 20,
|
|
1755
|
+
"start": 3097
|
|
1756
|
+
},
|
|
1757
|
+
{
|
|
1758
|
+
"length": 20,
|
|
1759
|
+
"start": 3709
|
|
1760
|
+
},
|
|
1761
|
+
{
|
|
1762
|
+
"length": 20,
|
|
1763
|
+
"start": 3875
|
|
1764
|
+
},
|
|
1765
|
+
{
|
|
1766
|
+
"length": 20,
|
|
1767
|
+
"start": 4326
|
|
1768
|
+
},
|
|
1769
|
+
{
|
|
1770
|
+
"length": 20,
|
|
1771
|
+
"start": 4586
|
|
1772
|
+
},
|
|
1773
|
+
{
|
|
1774
|
+
"length": 20,
|
|
1775
|
+
"start": 5104
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
"length": 20,
|
|
1779
|
+
"start": 5517
|
|
1780
|
+
},
|
|
1781
|
+
{
|
|
1782
|
+
"length": 20,
|
|
1783
|
+
"start": 5775
|
|
1784
|
+
},
|
|
1785
|
+
{
|
|
1786
|
+
"length": 20,
|
|
1787
|
+
"start": 5944
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
"length": 20,
|
|
1791
|
+
"start": 6397
|
|
1792
|
+
},
|
|
1793
|
+
{
|
|
1794
|
+
"length": 20,
|
|
1795
|
+
"start": 7207
|
|
1796
|
+
},
|
|
1797
|
+
{
|
|
1798
|
+
"length": 20,
|
|
1799
|
+
"start": 7373
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
"length": 20,
|
|
1803
|
+
"start": 7888
|
|
1804
|
+
},
|
|
1805
|
+
{
|
|
1806
|
+
"length": 20,
|
|
1807
|
+
"start": 8333
|
|
1808
|
+
},
|
|
1809
|
+
{
|
|
1810
|
+
"length": 20,
|
|
1811
|
+
"start": 8811
|
|
1812
|
+
},
|
|
1813
|
+
{
|
|
1814
|
+
"length": 20,
|
|
1815
|
+
"start": 9069
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
"length": 20,
|
|
1819
|
+
"start": 9238
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
"length": 20,
|
|
1823
|
+
"start": 9407
|
|
1824
|
+
},
|
|
1825
|
+
{
|
|
1826
|
+
"length": 20,
|
|
1827
|
+
"start": 9576
|
|
1828
|
+
},
|
|
1829
|
+
{
|
|
1830
|
+
"length": 20,
|
|
1831
|
+
"start": 10025
|
|
1832
|
+
},
|
|
1833
|
+
{
|
|
1834
|
+
"length": 20,
|
|
1835
|
+
"start": 10439
|
|
1836
|
+
},
|
|
1837
|
+
{
|
|
1838
|
+
"length": 20,
|
|
1839
|
+
"start": 10609
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
"length": 20,
|
|
1843
|
+
"start": 10774
|
|
1844
|
+
},
|
|
1845
|
+
{
|
|
1846
|
+
"length": 20,
|
|
1847
|
+
"start": 10939
|
|
1848
|
+
},
|
|
1849
|
+
{
|
|
1850
|
+
"length": 20,
|
|
1851
|
+
"start": 11104
|
|
1852
|
+
},
|
|
1853
|
+
{
|
|
1854
|
+
"length": 20,
|
|
1855
|
+
"start": 11269
|
|
1856
|
+
},
|
|
1857
|
+
{
|
|
1858
|
+
"length": 20,
|
|
1859
|
+
"start": 11784
|
|
1860
|
+
},
|
|
1861
|
+
{
|
|
1862
|
+
"length": 20,
|
|
1863
|
+
"start": 12839
|
|
1864
|
+
},
|
|
1865
|
+
{
|
|
1866
|
+
"length": 20,
|
|
1867
|
+
"start": 13009
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
"length": 20,
|
|
1871
|
+
"start": 13460
|
|
1872
|
+
},
|
|
1873
|
+
{
|
|
1874
|
+
"length": 20,
|
|
1875
|
+
"start": 13653
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
"length": 20,
|
|
1879
|
+
"start": 14148
|
|
1880
|
+
},
|
|
1881
|
+
{
|
|
1882
|
+
"length": 20,
|
|
1883
|
+
"start": 14661
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
"length": 20,
|
|
1887
|
+
"start": 14827
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
"length": 20,
|
|
1891
|
+
"start": 15227
|
|
1892
|
+
},
|
|
1893
|
+
{
|
|
1894
|
+
"length": 20,
|
|
1895
|
+
"start": 15396
|
|
1896
|
+
},
|
|
1897
|
+
{
|
|
1898
|
+
"length": 20,
|
|
1899
|
+
"start": 15977
|
|
1900
|
+
},
|
|
1901
|
+
{
|
|
1902
|
+
"length": 20,
|
|
1903
|
+
"start": 16310
|
|
1904
|
+
},
|
|
1905
|
+
{
|
|
1906
|
+
"length": 20,
|
|
1907
|
+
"start": 16565
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
"length": 20,
|
|
1911
|
+
"start": 16731
|
|
1912
|
+
},
|
|
1913
|
+
{
|
|
1914
|
+
"length": 20,
|
|
1915
|
+
"start": 17253
|
|
1916
|
+
},
|
|
1917
|
+
{
|
|
1918
|
+
"length": 20,
|
|
1919
|
+
"start": 17419
|
|
1920
|
+
},
|
|
1921
|
+
{
|
|
1922
|
+
"length": 20,
|
|
1923
|
+
"start": 17584
|
|
1924
|
+
},
|
|
1925
|
+
{
|
|
1926
|
+
"length": 20,
|
|
1927
|
+
"start": 17753
|
|
1928
|
+
},
|
|
1929
|
+
{
|
|
1930
|
+
"length": 20,
|
|
1931
|
+
"start": 17922
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
"length": 20,
|
|
1935
|
+
"start": 18433
|
|
1936
|
+
},
|
|
1937
|
+
{
|
|
1938
|
+
"length": 20,
|
|
1939
|
+
"start": 18888
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
"length": 20,
|
|
1943
|
+
"start": 19207
|
|
1944
|
+
},
|
|
1945
|
+
{
|
|
1946
|
+
"length": 20,
|
|
1947
|
+
"start": 19525
|
|
1948
|
+
},
|
|
1949
|
+
{
|
|
1950
|
+
"length": 20,
|
|
1951
|
+
"start": 19694
|
|
1952
|
+
},
|
|
1953
|
+
{
|
|
1954
|
+
"length": 20,
|
|
1955
|
+
"start": 19863
|
|
1956
|
+
},
|
|
1957
|
+
{
|
|
1958
|
+
"length": 20,
|
|
1959
|
+
"start": 20028
|
|
1960
|
+
},
|
|
1961
|
+
{
|
|
1962
|
+
"length": 20,
|
|
1963
|
+
"start": 20475
|
|
1964
|
+
},
|
|
1965
|
+
{
|
|
1966
|
+
"length": 20,
|
|
1967
|
+
"start": 21009
|
|
1968
|
+
},
|
|
1969
|
+
{
|
|
1970
|
+
"length": 20,
|
|
1971
|
+
"start": 21178
|
|
1972
|
+
},
|
|
1973
|
+
{
|
|
1974
|
+
"length": 20,
|
|
1975
|
+
"start": 21895
|
|
1976
|
+
},
|
|
1977
|
+
{
|
|
1978
|
+
"length": 20,
|
|
1979
|
+
"start": 22311
|
|
1980
|
+
},
|
|
1981
|
+
{
|
|
1982
|
+
"length": 20,
|
|
1983
|
+
"start": 22769
|
|
1984
|
+
},
|
|
1985
|
+
{
|
|
1986
|
+
"length": 20,
|
|
1987
|
+
"start": 22939
|
|
1988
|
+
},
|
|
1989
|
+
{
|
|
1990
|
+
"length": 20,
|
|
1991
|
+
"start": 23391
|
|
1992
|
+
}
|
|
1993
|
+
]
|
|
1994
|
+
}
|
|
1995
|
+
},
|
|
1996
|
+
"deployedLinkReferences": {
|
|
1997
|
+
"contracts/bridge/BridgeGovernanceParameters.sol": {
|
|
1998
|
+
"BridgeGovernanceParameters": [
|
|
1999
|
+
{
|
|
2000
|
+
"length": 20,
|
|
2001
|
+
"start": 2269
|
|
2002
|
+
},
|
|
2003
|
+
{
|
|
2004
|
+
"length": 20,
|
|
2005
|
+
"start": 2835
|
|
2006
|
+
},
|
|
2007
|
+
{
|
|
2008
|
+
"length": 20,
|
|
2009
|
+
"start": 3447
|
|
2010
|
+
},
|
|
2011
|
+
{
|
|
2012
|
+
"length": 20,
|
|
2013
|
+
"start": 3613
|
|
2014
|
+
},
|
|
2015
|
+
{
|
|
2016
|
+
"length": 20,
|
|
2017
|
+
"start": 4064
|
|
2018
|
+
},
|
|
2019
|
+
{
|
|
2020
|
+
"length": 20,
|
|
2021
|
+
"start": 4324
|
|
2022
|
+
},
|
|
2023
|
+
{
|
|
2024
|
+
"length": 20,
|
|
2025
|
+
"start": 4842
|
|
2026
|
+
},
|
|
2027
|
+
{
|
|
2028
|
+
"length": 20,
|
|
2029
|
+
"start": 5255
|
|
2030
|
+
},
|
|
2031
|
+
{
|
|
2032
|
+
"length": 20,
|
|
2033
|
+
"start": 5513
|
|
2034
|
+
},
|
|
2035
|
+
{
|
|
2036
|
+
"length": 20,
|
|
2037
|
+
"start": 5682
|
|
2038
|
+
},
|
|
2039
|
+
{
|
|
2040
|
+
"length": 20,
|
|
2041
|
+
"start": 6135
|
|
2042
|
+
},
|
|
2043
|
+
{
|
|
2044
|
+
"length": 20,
|
|
2045
|
+
"start": 6945
|
|
2046
|
+
},
|
|
2047
|
+
{
|
|
2048
|
+
"length": 20,
|
|
2049
|
+
"start": 7111
|
|
2050
|
+
},
|
|
2051
|
+
{
|
|
2052
|
+
"length": 20,
|
|
2053
|
+
"start": 7626
|
|
2054
|
+
},
|
|
2055
|
+
{
|
|
2056
|
+
"length": 20,
|
|
2057
|
+
"start": 8071
|
|
2058
|
+
},
|
|
2059
|
+
{
|
|
2060
|
+
"length": 20,
|
|
2061
|
+
"start": 8549
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
"length": 20,
|
|
2065
|
+
"start": 8807
|
|
2066
|
+
},
|
|
2067
|
+
{
|
|
2068
|
+
"length": 20,
|
|
2069
|
+
"start": 8976
|
|
2070
|
+
},
|
|
2071
|
+
{
|
|
2072
|
+
"length": 20,
|
|
2073
|
+
"start": 9145
|
|
2074
|
+
},
|
|
2075
|
+
{
|
|
2076
|
+
"length": 20,
|
|
2077
|
+
"start": 9314
|
|
2078
|
+
},
|
|
2079
|
+
{
|
|
2080
|
+
"length": 20,
|
|
2081
|
+
"start": 9763
|
|
2082
|
+
},
|
|
2083
|
+
{
|
|
2084
|
+
"length": 20,
|
|
2085
|
+
"start": 10177
|
|
2086
|
+
},
|
|
2087
|
+
{
|
|
2088
|
+
"length": 20,
|
|
2089
|
+
"start": 10347
|
|
2090
|
+
},
|
|
2091
|
+
{
|
|
2092
|
+
"length": 20,
|
|
2093
|
+
"start": 10512
|
|
2094
|
+
},
|
|
2095
|
+
{
|
|
2096
|
+
"length": 20,
|
|
2097
|
+
"start": 10677
|
|
2098
|
+
},
|
|
2099
|
+
{
|
|
2100
|
+
"length": 20,
|
|
2101
|
+
"start": 10842
|
|
2102
|
+
},
|
|
2103
|
+
{
|
|
2104
|
+
"length": 20,
|
|
2105
|
+
"start": 11007
|
|
2106
|
+
},
|
|
2107
|
+
{
|
|
2108
|
+
"length": 20,
|
|
2109
|
+
"start": 11522
|
|
2110
|
+
},
|
|
2111
|
+
{
|
|
2112
|
+
"length": 20,
|
|
2113
|
+
"start": 12577
|
|
2114
|
+
},
|
|
2115
|
+
{
|
|
2116
|
+
"length": 20,
|
|
2117
|
+
"start": 12747
|
|
2118
|
+
},
|
|
2119
|
+
{
|
|
2120
|
+
"length": 20,
|
|
2121
|
+
"start": 13198
|
|
2122
|
+
},
|
|
2123
|
+
{
|
|
2124
|
+
"length": 20,
|
|
2125
|
+
"start": 13391
|
|
2126
|
+
},
|
|
2127
|
+
{
|
|
2128
|
+
"length": 20,
|
|
2129
|
+
"start": 13886
|
|
2130
|
+
},
|
|
2131
|
+
{
|
|
2132
|
+
"length": 20,
|
|
2133
|
+
"start": 14399
|
|
2134
|
+
},
|
|
2135
|
+
{
|
|
2136
|
+
"length": 20,
|
|
2137
|
+
"start": 14565
|
|
2138
|
+
},
|
|
2139
|
+
{
|
|
2140
|
+
"length": 20,
|
|
2141
|
+
"start": 14965
|
|
2142
|
+
},
|
|
2143
|
+
{
|
|
2144
|
+
"length": 20,
|
|
2145
|
+
"start": 15134
|
|
2146
|
+
},
|
|
2147
|
+
{
|
|
2148
|
+
"length": 20,
|
|
2149
|
+
"start": 15715
|
|
2150
|
+
},
|
|
2151
|
+
{
|
|
2152
|
+
"length": 20,
|
|
2153
|
+
"start": 16048
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
"length": 20,
|
|
2157
|
+
"start": 16303
|
|
2158
|
+
},
|
|
2159
|
+
{
|
|
2160
|
+
"length": 20,
|
|
2161
|
+
"start": 16469
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
"length": 20,
|
|
2165
|
+
"start": 16991
|
|
2166
|
+
},
|
|
2167
|
+
{
|
|
2168
|
+
"length": 20,
|
|
2169
|
+
"start": 17157
|
|
2170
|
+
},
|
|
2171
|
+
{
|
|
2172
|
+
"length": 20,
|
|
2173
|
+
"start": 17322
|
|
2174
|
+
},
|
|
2175
|
+
{
|
|
2176
|
+
"length": 20,
|
|
2177
|
+
"start": 17491
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
"length": 20,
|
|
2181
|
+
"start": 17660
|
|
2182
|
+
},
|
|
2183
|
+
{
|
|
2184
|
+
"length": 20,
|
|
2185
|
+
"start": 18171
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
"length": 20,
|
|
2189
|
+
"start": 18626
|
|
2190
|
+
},
|
|
2191
|
+
{
|
|
2192
|
+
"length": 20,
|
|
2193
|
+
"start": 18945
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
"length": 20,
|
|
2197
|
+
"start": 19263
|
|
2198
|
+
},
|
|
2199
|
+
{
|
|
2200
|
+
"length": 20,
|
|
2201
|
+
"start": 19432
|
|
2202
|
+
},
|
|
2203
|
+
{
|
|
2204
|
+
"length": 20,
|
|
2205
|
+
"start": 19601
|
|
2206
|
+
},
|
|
2207
|
+
{
|
|
2208
|
+
"length": 20,
|
|
2209
|
+
"start": 19766
|
|
2210
|
+
},
|
|
2211
|
+
{
|
|
2212
|
+
"length": 20,
|
|
2213
|
+
"start": 20213
|
|
2214
|
+
},
|
|
2215
|
+
{
|
|
2216
|
+
"length": 20,
|
|
2217
|
+
"start": 20747
|
|
2218
|
+
},
|
|
2219
|
+
{
|
|
2220
|
+
"length": 20,
|
|
2221
|
+
"start": 20916
|
|
2222
|
+
},
|
|
2223
|
+
{
|
|
2224
|
+
"length": 20,
|
|
2225
|
+
"start": 21633
|
|
2226
|
+
},
|
|
2227
|
+
{
|
|
2228
|
+
"length": 20,
|
|
2229
|
+
"start": 22049
|
|
2230
|
+
},
|
|
2231
|
+
{
|
|
2232
|
+
"length": 20,
|
|
2233
|
+
"start": 22507
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
"length": 20,
|
|
2237
|
+
"start": 22677
|
|
2238
|
+
},
|
|
2239
|
+
{
|
|
2240
|
+
"length": 20,
|
|
2241
|
+
"start": 23129
|
|
2242
|
+
}
|
|
2243
|
+
]
|
|
2244
|
+
}
|
|
2245
|
+
}
|
|
2246
|
+
}
|