@venusprotocol/oracle 2.5.0-dev.5 → 2.5.0-dev.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,749 @@
1
+ {
2
+ "address": "0x37878481A040E4F6a8856315bdF02Be4a1B4bd6C",
3
+ "abi": [
4
+ {
5
+ "inputs": [],
6
+ "stateMutability": "nonpayable",
7
+ "type": "constructor"
8
+ },
9
+ {
10
+ "inputs": [
11
+ {
12
+ "internalType": "address",
13
+ "name": "sender",
14
+ "type": "address"
15
+ },
16
+ {
17
+ "internalType": "address",
18
+ "name": "calledContract",
19
+ "type": "address"
20
+ },
21
+ {
22
+ "internalType": "string",
23
+ "name": "methodSignature",
24
+ "type": "string"
25
+ }
26
+ ],
27
+ "name": "Unauthorized",
28
+ "type": "error"
29
+ },
30
+ {
31
+ "anonymous": false,
32
+ "inputs": [
33
+ {
34
+ "indexed": false,
35
+ "internalType": "uint8",
36
+ "name": "version",
37
+ "type": "uint8"
38
+ }
39
+ ],
40
+ "name": "Initialized",
41
+ "type": "event"
42
+ },
43
+ {
44
+ "anonymous": false,
45
+ "inputs": [
46
+ {
47
+ "indexed": false,
48
+ "internalType": "address",
49
+ "name": "oldAccessControlManager",
50
+ "type": "address"
51
+ },
52
+ {
53
+ "indexed": false,
54
+ "internalType": "address",
55
+ "name": "newAccessControlManager",
56
+ "type": "address"
57
+ }
58
+ ],
59
+ "name": "NewAccessControlManager",
60
+ "type": "event"
61
+ },
62
+ {
63
+ "anonymous": false,
64
+ "inputs": [
65
+ {
66
+ "indexed": true,
67
+ "internalType": "address",
68
+ "name": "previousOwner",
69
+ "type": "address"
70
+ },
71
+ {
72
+ "indexed": true,
73
+ "internalType": "address",
74
+ "name": "newOwner",
75
+ "type": "address"
76
+ }
77
+ ],
78
+ "name": "OwnershipTransferStarted",
79
+ "type": "event"
80
+ },
81
+ {
82
+ "anonymous": false,
83
+ "inputs": [
84
+ {
85
+ "indexed": true,
86
+ "internalType": "address",
87
+ "name": "previousOwner",
88
+ "type": "address"
89
+ },
90
+ {
91
+ "indexed": true,
92
+ "internalType": "address",
93
+ "name": "newOwner",
94
+ "type": "address"
95
+ }
96
+ ],
97
+ "name": "OwnershipTransferred",
98
+ "type": "event"
99
+ },
100
+ {
101
+ "anonymous": false,
102
+ "inputs": [
103
+ {
104
+ "indexed": true,
105
+ "internalType": "address",
106
+ "name": "asset",
107
+ "type": "address"
108
+ },
109
+ {
110
+ "indexed": true,
111
+ "internalType": "uint256",
112
+ "name": "upperBound",
113
+ "type": "uint256"
114
+ },
115
+ {
116
+ "indexed": true,
117
+ "internalType": "uint256",
118
+ "name": "lowerBound",
119
+ "type": "uint256"
120
+ }
121
+ ],
122
+ "name": "ValidateConfigAdded",
123
+ "type": "event"
124
+ },
125
+ {
126
+ "inputs": [],
127
+ "name": "acceptOwnership",
128
+ "outputs": [],
129
+ "stateMutability": "nonpayable",
130
+ "type": "function"
131
+ },
132
+ {
133
+ "inputs": [],
134
+ "name": "accessControlManager",
135
+ "outputs": [
136
+ {
137
+ "internalType": "contract IAccessControlManagerV8",
138
+ "name": "",
139
+ "type": "address"
140
+ }
141
+ ],
142
+ "stateMutability": "view",
143
+ "type": "function"
144
+ },
145
+ {
146
+ "inputs": [
147
+ {
148
+ "internalType": "address",
149
+ "name": "accessControlManager_",
150
+ "type": "address"
151
+ }
152
+ ],
153
+ "name": "initialize",
154
+ "outputs": [],
155
+ "stateMutability": "nonpayable",
156
+ "type": "function"
157
+ },
158
+ {
159
+ "inputs": [],
160
+ "name": "owner",
161
+ "outputs": [
162
+ {
163
+ "internalType": "address",
164
+ "name": "",
165
+ "type": "address"
166
+ }
167
+ ],
168
+ "stateMutability": "view",
169
+ "type": "function"
170
+ },
171
+ {
172
+ "inputs": [],
173
+ "name": "pendingOwner",
174
+ "outputs": [
175
+ {
176
+ "internalType": "address",
177
+ "name": "",
178
+ "type": "address"
179
+ }
180
+ ],
181
+ "stateMutability": "view",
182
+ "type": "function"
183
+ },
184
+ {
185
+ "inputs": [],
186
+ "name": "renounceOwnership",
187
+ "outputs": [],
188
+ "stateMutability": "nonpayable",
189
+ "type": "function"
190
+ },
191
+ {
192
+ "inputs": [
193
+ {
194
+ "internalType": "address",
195
+ "name": "accessControlManager_",
196
+ "type": "address"
197
+ }
198
+ ],
199
+ "name": "setAccessControlManager",
200
+ "outputs": [],
201
+ "stateMutability": "nonpayable",
202
+ "type": "function"
203
+ },
204
+ {
205
+ "inputs": [
206
+ {
207
+ "components": [
208
+ {
209
+ "internalType": "address",
210
+ "name": "asset",
211
+ "type": "address"
212
+ },
213
+ {
214
+ "internalType": "uint256",
215
+ "name": "upperBoundRatio",
216
+ "type": "uint256"
217
+ },
218
+ {
219
+ "internalType": "uint256",
220
+ "name": "lowerBoundRatio",
221
+ "type": "uint256"
222
+ }
223
+ ],
224
+ "internalType": "struct BoundValidator.ValidateConfig",
225
+ "name": "config",
226
+ "type": "tuple"
227
+ }
228
+ ],
229
+ "name": "setValidateConfig",
230
+ "outputs": [],
231
+ "stateMutability": "nonpayable",
232
+ "type": "function"
233
+ },
234
+ {
235
+ "inputs": [
236
+ {
237
+ "components": [
238
+ {
239
+ "internalType": "address",
240
+ "name": "asset",
241
+ "type": "address"
242
+ },
243
+ {
244
+ "internalType": "uint256",
245
+ "name": "upperBoundRatio",
246
+ "type": "uint256"
247
+ },
248
+ {
249
+ "internalType": "uint256",
250
+ "name": "lowerBoundRatio",
251
+ "type": "uint256"
252
+ }
253
+ ],
254
+ "internalType": "struct BoundValidator.ValidateConfig[]",
255
+ "name": "configs",
256
+ "type": "tuple[]"
257
+ }
258
+ ],
259
+ "name": "setValidateConfigs",
260
+ "outputs": [],
261
+ "stateMutability": "nonpayable",
262
+ "type": "function"
263
+ },
264
+ {
265
+ "inputs": [
266
+ {
267
+ "internalType": "address",
268
+ "name": "newOwner",
269
+ "type": "address"
270
+ }
271
+ ],
272
+ "name": "transferOwnership",
273
+ "outputs": [],
274
+ "stateMutability": "nonpayable",
275
+ "type": "function"
276
+ },
277
+ {
278
+ "inputs": [
279
+ {
280
+ "internalType": "address",
281
+ "name": "",
282
+ "type": "address"
283
+ }
284
+ ],
285
+ "name": "validateConfigs",
286
+ "outputs": [
287
+ {
288
+ "internalType": "address",
289
+ "name": "asset",
290
+ "type": "address"
291
+ },
292
+ {
293
+ "internalType": "uint256",
294
+ "name": "upperBoundRatio",
295
+ "type": "uint256"
296
+ },
297
+ {
298
+ "internalType": "uint256",
299
+ "name": "lowerBoundRatio",
300
+ "type": "uint256"
301
+ }
302
+ ],
303
+ "stateMutability": "view",
304
+ "type": "function"
305
+ },
306
+ {
307
+ "inputs": [
308
+ {
309
+ "internalType": "address",
310
+ "name": "asset",
311
+ "type": "address"
312
+ },
313
+ {
314
+ "internalType": "uint256",
315
+ "name": "reportedPrice",
316
+ "type": "uint256"
317
+ },
318
+ {
319
+ "internalType": "uint256",
320
+ "name": "anchorPrice",
321
+ "type": "uint256"
322
+ }
323
+ ],
324
+ "name": "validatePriceWithAnchorPrice",
325
+ "outputs": [
326
+ {
327
+ "internalType": "bool",
328
+ "name": "",
329
+ "type": "bool"
330
+ }
331
+ ],
332
+ "stateMutability": "view",
333
+ "type": "function"
334
+ }
335
+ ],
336
+ "transactionHash": "0x727cf9845c19b6d81d6ae36239a5483758cd3f33aebcc76f435364654368b589",
337
+ "receipt": {
338
+ "to": "0x0000000000000000000000000000000000008006",
339
+ "from": "0x7f423E50147930e197dAaE9F637198E66746D597",
340
+ "contractAddress": "0x37878481A040E4F6a8856315bdF02Be4a1B4bd6C",
341
+ "transactionIndex": 1,
342
+ "gasUsed": "1866274",
343
+ "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
344
+ "blockHash": "0x538cc5bd63fa88b15c44eb23570a3f0fc5c26355b691b5dc7f1654273a94ef81",
345
+ "transactionHash": "0x727cf9845c19b6d81d6ae36239a5483758cd3f33aebcc76f435364654368b589",
346
+ "logs": [
347
+ {
348
+ "transactionIndex": 1,
349
+ "blockNumber": 42315237,
350
+ "transactionHash": "0x727cf9845c19b6d81d6ae36239a5483758cd3f33aebcc76f435364654368b589",
351
+ "address": "0x000000000000000000000000000000000000800A",
352
+ "topics": [
353
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
354
+ "0x0000000000000000000000007f423e50147930e197daae9f637198e66746d597",
355
+ "0x0000000000000000000000000000000000000000000000000000000000008001"
356
+ ],
357
+ "data": "0x00000000000000000000000000000000000000000000000000007c96f5fa24f0",
358
+ "logIndex": 6,
359
+ "blockHash": "0x538cc5bd63fa88b15c44eb23570a3f0fc5c26355b691b5dc7f1654273a94ef81"
360
+ },
361
+ {
362
+ "transactionIndex": 1,
363
+ "blockNumber": 42315237,
364
+ "transactionHash": "0x727cf9845c19b6d81d6ae36239a5483758cd3f33aebcc76f435364654368b589",
365
+ "address": "0x0000000000000000000000000000000000008008",
366
+ "topics": ["0x27fe8c0b49f49507b9d4fe5968c9f49edfe5c9df277d433a07a0717ede97638d"],
367
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000010880000000000000000000000000000000000000000000000000000000000008008000000000000000000000000000000000000000000000000000000000000800e9aa085c5bd0d8b90e1bdfe16c2c95eb2e15f0e0eb14af795c51c201af5f0bdb2",
368
+ "logIndex": 7,
369
+ "blockHash": "0x538cc5bd63fa88b15c44eb23570a3f0fc5c26355b691b5dc7f1654273a94ef81"
370
+ },
371
+ {
372
+ "transactionIndex": 1,
373
+ "blockNumber": 42315237,
374
+ "transactionHash": "0x727cf9845c19b6d81d6ae36239a5483758cd3f33aebcc76f435364654368b589",
375
+ "address": "0x0000000000000000000000000000000000008008",
376
+ "topics": [
377
+ "0x3a36e47291f4201faf137fab081d92295bce2d53be2c6ca68ba82c7faa9ce241",
378
+ "0x000000000000000000000000000000000000000000000000000000000000800e",
379
+ "0x9aa085c5bd0d8b90e1bdfe16c2c95eb2e15f0e0eb14af795c51c201af5f0bdb2"
380
+ ],
381
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000246202f50000000000000000000000000021043500000532000104300000014d010080410000014d0010009cffffffffffffffff0000035e0000c13d0000000100200190000000c00110021000000000010004140000000001000019000000000001004b0000000000320435000000000101043b0000035e0000213d0000800d020000390000035e0000413d0000014e01000041000000000001042d000000240140003900000044014000390000014d020080410000014d0020009c0530052b0000040f000000000002004b0000035e0000613d000005310001042e000000000201041a000000000003004b0000000000100435053005260000040f000000800010043f000000000101041a000000040140003900000000001404350000000002000019000000400100043d00000170011001c700000166011001c7000000000200041600000000010004160200000000000000000000200030008c000000400110021000000020020000390000002402100039000000440210003900008010020000390000016405200197000000000021041b00000165022001970000003301000039000000200010043f000000c901000039000000240020008c000000200100003900000040014002100000014d040080410000014d0040009c000000400220021000000000040340190000002004000039000000000112019f000000000707043b000000970200003900000187011001c7000000000032004b00000003030000390000017f01000041000000040010043f0000017e01000041000000c40010043f000000a40010043f000000840010043f000000000202041a00000004011003700000000103000039000000000010041b0000ff000010019000000065010000396f6e7472616374207a61626c653a2063496e697469616c690000000008980436000000007907043c000000000701034f000000000121019f000000040200002900000005055002100000000000430435000000c00220021000000000020004140000008a0000213d000000400200043d000000000004004b0000016d011001c7000000000302041a0000000000150435000000010200003900000064021000390000000602000029000000000202043b0000016f04000041000000000035004b0000016402200197000001ea0000013d0000017c0000c13d0000015101000041000000e40010043f000000000012004b0000000001000411000000040020008cffffffffffffffe07fffffffffffffff696e76616c69642000000020000000000000002400000000000000200000008000000000ffffffff000004800000613d000004880000613d000000000a0004110000006001300210000000000161019f00000000014101cf000000000141022f0000010004400089000000000646022f00000000064601cf000000000605043300000003044002100000000005520019000000000151034f000000000068004b0000000008020019000000000652001900000005053002720000001f0430018f0000002c020000390000018402000041000001830200004100000064014000390000001b02000039000001880200004100000060011002100000000001210049053005020000040f000000000109001900000064024000390000018901000041000000000200041000000060020000390000001602000039000001860200004100000185040000410000000403000039000000000071041b000000000702043300000003020000290000000201100039000000000062041b00000001021000390000000006020433000000000252019f000000000202043300000000030604330000004006800039000003600000613d000000000205043300000164011001980000000051080434000000000021004b000000010200c039000000400040043f0000000100100190000001780040009c0000000101004039000000000014004b000000600110018f0000001f01400039000000000003001f00000000006504350000014d0330019700000060033002700000000003010019000000000343019f00000040044002100000014d0400004100000060033002100000014d030080410000014d0030009c000000640330003900000195033001970000001f03300039000000000300003100000000000104350000002005500039000000000076043500000000070704330000000007150019000000000645001900000000050000190000000000340435000000000309043300000182030000410000004004000039000000000029043500000021020000390000018102000041000000200190003900000180020000410000004001900039000000400010043f0000006001900039000000400900043d000400000005001d000000800100043d000000200300003900000004021000390000014e0200004100000171040000410000016402300197000000000042041b0000016504300197000000000001042f000000050200002900000004030000290000020f0000013d000000000005004b000000000031041b000000000363019f00000165032001970000016406100197000500000002001d000001b50000613d000001910000c13d000600000004001d00000005022002100000000002000415000000000401043b000600000002001d0000000000200435000001770000013d0000004401100370000000800020043f000001640020009c0000000402100370000000640020008c00000000030004110000004101000039000000000024004b0000016401100197000001640010009c0000015304000041000000000100041a000000000301043bffffffffffffffa0ffffffffffffff00000000400000008000000064000000806865206f776e65726973206e6f7420742063616c6c6572204f776e61626c653a72000000000000006e6577206f776e656e6f7420746865206c6c657220697320537465703a2063614f776e61626c6532697374000000000067206e6f742065786f6e20636f6e666976616c696461746964000000000000006e6f742076616c697269636520697320616e63686f7220700de0b6b3a76400006c656e677468000020636f6e6669672076616c69646174654a3fa29300000000657373000000000065726f20616464726e2774206265207a617373657420636100000064000000007369746976650000737420626520706f626f756e64206d750a914196c550e6d1e15230239c0aee4a203e40d159d27ec228e2d96bdcf74fe66572207468616e202062652068696768756e64206d757374757070657220626f6f756e64000000006c6f776e6572206218c5e8ab000000007465436f6e666967672856616c696461617465436f6e666973657456616c696429000000000000004e487b7100000000ffffffffffffff9fffffffffffffff7f000000000000000100000060000000806973206e6f742069696e6700000000006e697469616c697a6e616765722061646e74726f6c206d61616365737320636f647265737300000031fe014601293aa0fe4e111b00cd2b0ca5c30e0888f3093e66fd58e82f7b31a20000004000000000e3b4186f6b6457e019497f9722a3daaf1344cd1fd0a4f2848be0079c53165914ffffffffffff00000000008400000000697320616c726561616c697a65640000647920696e6974690200000200000000023a8d90e8508b8302500962caba6a1568e884a7374b41e01806aa1896bbf265d8c362d765e22700fa1faef420bfe791c7c124b9cd0de2d338d16b8cac22d99fffffffff000000000000000079ba509700000000715018a6000000000e32cb86000000009c3576150000000097c7033e000000008da5cb5b000000008da5cb5a00000000bca9e11600000000b4a0bdf300000000af9e6c5b00000000f2fde38b00000000e30c397800000000c4d66de800000000c4d66de700000000af9e6c5a0000004000000100000000020000000060cefb38474024988a09c465da9592146a682f133852f6797f26b83ff96e1f2b0000008400000080616c697a696e6700697320696e69746908c379a00000000000000530000004320000052e002104230000052900210421000005240000613d000000000121001900000195022001970000001f0230003900000000000204350000000002310019000005070000413d00000020022000390000000006060433000000000624001900000000052100190000050e0000613d00000000013204360000000043010434000005000000613d000000000032041b00000165033001970000006502000039000004e30000613d000004d10000c13d000004d50000613d000400000004001d0000000000a10435000004ab0000013d0000000202000029000004b60000a13d000300000005001d000200000006001d000004a60000613d0000048e0000613d000004800000c13d00000000010b0433000004800000a13d0000001f0030008c000004820000c13d000004820000213d0000000004b100190000000408000029000004c90000613d00000003090000290000000000560435000000000585019f00000000055701cf000000000757022f0000010005500089000000000858022f00000000085801cf0000000008060433000000030550021000000000066b0019000000000761034f00000005066002100000042f0000613d0000041c0000c13d0000000000a8004b00000000080b0019000004200000613d00000005064002720000001f0540018f000000020b000029000000010a00002900010000000c001d00020000000b001d000000000113019f00000000040b40190000014d00b0009c000300000009001d000004350000013d000003fc0000c13d000400000008001d0000000001340019000003ea0000413d000003f10000613d0000006404b000390000004404b000390000000000a304350000000403b00039000000000c3b04360000002403b00039000000400b00043d000004820000813d000001960090009c00000000080100190004000000000002000003c20000613d000003b00000c13d000003b40000613d000000000200041100000032010000390000038a0000013d000001ed0000013d0000029e0000413d000000020020006c0000000102200039000003950000a13d000300000006001d000003850000613d0000036c0000613d00000000010a04330000008a0000c13d0000000004a100190000000508000029000003a80000613d0000000409000029000000000686019f00000000066701cf000000000767022f0000010006600089000000000868022f00000000086801cf0000000008050433000000030660021000000000055a0019000000000751034f000003090000613d0000001f06400190000002f60000c13d000000000097004b0000000007870436000000006806043c00000000070a0019000000000601034f000002fa0000613d0000000505400272000000030a000029000000010900002900010000000b001d00030000000a001d000000000131019f00000000040a40190000014d00a0009c000400000009001d0000030e0000013d000002d70000c13d000500000008001d0000000001430019000002c40000413d000002cb0000613d0000006404a000390000004404a0003900000000040004110000000403a00039000000000b3a04360000002403a00039000000400a00043d0000000008010433000000a001100039000000050110021000000006010000290000017d0090009c000003660000813d000000060010006b000600000000001d00000172011001c70000000000310435000000040110017f0000ff010100008a000001ed0000c13d000000050000006b00000000005204350000002002100039000000000454019f0000001101000039000002200000013d00000001010080390000000201300039000002200000213d000000010130003900000005023000fa000500000004001d0000026b0000c13d0000018b0010009c00000000013500d90000018b053000d1000001ca0000013d000000400500043d0000029d0000c13d000200000001001d000002290000413d000000000043004b0000006003300039000000000565043600000000007804350000004008600039000000000771034f00000040073000390000000000870435000000000808043b000000000881034f00000020083000390000000007760436000001640070009c000000000731034f000000400070043f00000060076000390000017d0060009c000000400600043d000000600060008c0000017c0060009c0000000006320049000000a0050000390000018c011001c700000040012002100000000000120435000000010110018f0000024b0000c13d000000010110036700000024010000390000002e030000390000016c030000410000016b03000041000000000100001f0000000501100270000000050100002900000019030000390000018d030000410000021a0000c13d000000050300002900000193011001c7000000a00010043f000000000414019f00000040015002100000014d050080410000014d0050009c00000004015000390000001e0200003900000024015000390000018a020000410000004401500039000002280000c13d000000000006004b000000000434001900000060046000c90000002403300039000000800060043f000000400050043f00000080054000390000002b03000039000001760300004100000175030000410000014a0000c13d00000001011001bf0000019401300197000001440000613d000000030000006b000002060000c13d000000000201001f00000005022002700000000101006039000000010010008c000000ff0130018f000002030000c13d000001bf0000613d00008002020000390000016a011001c70000000400100443000000000100041000000000001004390000016901000041000400000003001d000300000001001d00000190010000410000018f010000410000002901000039000001920100004100000191010000410000016801000041000000250300003900000174030000410000017303000041000002710000c13d000400000001001d000000060500002900000101011001bf0000016e01300197000000ff00300190000000070220008a0000ff0001300190000000000300041a000000080220008a000001640040009c000001f80000013d0000001b030000390000018e03000041000001ef0000c13d0000000101100039000500000001001d0000009701000039053003c80000040f0000008001000039000000c00010043f000000a00020043f0000002402100370000000400020043f000000e0020000390000000006000019000000000043041b0000016504400197000000000403041a0000006503000039000001730100004100000174010000410000002501000039000001da0000c13d00000033020000390000016704000041000000000262019f000000000015004b0000016405100197000001640060009c000000000601043b000001590030009c000001730000613d000001580030009c0000012f0000613d000001570030009c000001c00000a13d0000017b0040009c0000017a044001970000003f0440003900000005046002100000008a0000813d000001790060009c000000000604043b000000000441034f00000004043000390000035e0000813d0000002304300039000001780030009c000000000303043b00000004031003700000000003000416000001600030009c000001090000613d0000015f0030009c000001040000613d0000015e0030009c00000150010000410000014f0100004100000027010000390000017701000041000000c00020043f000000a00030043f000000000303041a00000001031000390000000202100039053005150000040f0000015c0030009c000000ff0000613d0000015b0030009c000000e90000613d0000015a0030009c000000900000213d000001560030009c00000154010000410000012000000443000001000010044300000152011001c7000000ff01000039000000ff011001bf0000003c0000613d000000ff0020008c000000ff0210018f000000620000c13d053004e90000040f000001850000c13d0000016402100197000001630030009c000000d00000613d000001620030009c000000b30000613d000001610030009c0000006e0000213d0000015d0030009c000000410000213d000001550030009c000000e0033002700000014d0220019700000060022002700000000002010019000000240000c13d000000400030043f000000800300003900010000000103550008000000000002000200000000000202f402f302f202f102f0000702ef02ee02ed02ec006f001000ff02eb02ea02e902e802e702e602e502e402e302e200060028000b0006004f002002e1006e006d02e002df000a001a0028000b000600fe004e02de02dd02dc02db02da004d02d9001f000900040003000802d8000f004c00fd001e00070019003702d702d602d5001a02d402d302d202d102d002cf02ce000600360010002700180006004b000d00fc000e001d00350034000a02cd02cc004a02cb02ca002000fb001f02c902c802c7001a0011001f0037004902c6004802c5004702c4006c006b000202c302c202c102c002bf00060036001002be001c000602bd02bc02bb000e02ba00fa02b902b802b702b602b502b402b302b202b102b002af0046001d00f900450044000202ae02ad02ac02ab02aa000600360010002700180006004b02a902a8000e0033002002a7006e02a6006a004f001b003202a5003100090004000300080026000f004302a4006900360010002700180006004b000d00fc000e02a3004a006800f80042006a000b02a20011001f0037004902a1004802a00047029f006c006b00020028000b00060033001b003000f80067006a029e029d029c029b0032003100090004000300080026000f00430066029a006900f700100027001800060299029800f6006500f5000e00f402970065029600f3000d029502940293000a001a0028000b0006029200f20028000b0006003300f200f7001000270018000600f6006500f5000e00f3000d029100f1003500340009000400030008002500f0002f0017000700640019000d02900020000b028f0024002e028e000c002d028d028c00360010002700180006004b00ef028b000e00ee028a00ed0289028800ec00eb00ee028700ed028600eb028502840023004d004e00ea00e9004f001b00320031006e00e80033001b00e700e600e5000900300004000300080026000f00430066001e02830007001900fe004e00ea0282002400e4028100630280000c002e027f000c002d027e00e30028000b0006004f002000fb001f027d001a0011001f003700490048027c0047027b00020011001f00370049027a0048027900470278006c006b000200e902770276027502740273027200090004000300080271027000170007026f000d000b026e00e2026d026c000a026b00e1026a0269026802670266026500620264004d004e0263002400630262000c002e0261000c002d026000e300e0025f025e025d025c025b025a00fa000e02590258025702560001025502540001001100610253002c0001025202510250004100020040006000df024f00de00dd00f4024e0009000400030008024d000f004c00dc001e00070019000a001a024c001c024b0024002e024a000c002d0249000c00db000100da00d9000c00040003002b00410002024802470246002400630245000c002e0244000c002d0243000c00db000100da00d9000c00040003002b005f00020242024100ef005e000a0240023f005d023e00160015023d023c001a023b023a0239000e0238001002370236005c023502340233003f0232000e02310230022f022e022d022c022b003f022a0229022802270226022500d80224000b0223022202210220021f021e021d00d7021c00f10035003400090004000300080025002f00170007001900e2021b00ff021a0020006d000a021902180020006d000a021702160046001d02150045004400020040006000df021400de0213021200dd000100040003002b005b00160015005a003e0025000f004c00dc001e0007001902110210020f020e004d0024004c020d00040003002b005b00160015005a003e020c000f00fd0069020b00d8020a020900d60208005c020702060205020400d500d400d300d2000100d100d0000100cf00ce0040004a0203020200cd005900cc0201020001ff005900cb01fe00ca01fd001c01fc00c900c800c700c600c500c4006701fb006801fa00c30009006f01f901f800c2002a003d003c01f701f600c100c000bf00be00bd00bc01f500bb01f400ba00b900040003000801f301f201f1001701f001ef00b800b700b6002a003d003c01ee01ed01ec01eb01ea01e901e801e701e601e5005801e401e301e201e101e001df003f01de01dd01dc01db00b500b4000701da01d901d800b300b201d700b1000a00b000af005c00ae01d600ad002a001001d5000b002300ac00ab0006000b01d400aa00a901d300a8001800a700a600a5001c00a701d200d7004201d1001d0035003400090004000300080025002f0017000700e1001900a40030000d001b003200a30031005700a200a100a0009f009e009d009c00090004000300080026000f009b009a001e00070019006401d000f001cf01ce01cd000a00020014009900010013009801cc0046001d01cb00450044000200140097000100130096000100950022002101ca00010094009300ec00920064009100040003001600150090003b005600020014008f00010013008e0001001100220021002c0001003a0039003800410002008d008c00010014008b00010013008a0001001100220021002c0001003a00390038005f0002005d00890088005801c900870055008600540053008501c8005e01c700840083008200810080007f000d007e007d007c007b0061007a00160015003b003e000201c601c500d601c401c300d500d400d300d2000100d100d0000100cf00ce0040004a01c201c100cd005900cc01c001bf007901be00cb01bd00ca01bc0068001c01bb00c900c800c700c600c500c4006701ba01b900c30009006f01b801b700c2002a003d003c01b601b500c100c000bf00be00bd00bc01b400bb01b300ba00b900040003000801b201b101b0001701af01ae00b800b700b6002a003d003c01ad01ac01ab005501aa0054005301a901a800e401a701a601a501a401a301a201a101a0003f019f019e019d019c019b00b40007019a00790199019800b300b2019700b1000a00b000af019600ae019500ad019401930192000b002300ac00ab0191000b019000aa00a9018f00a80018007800a600a5001c0078018e018d0042018c001d0035003400090004000300080025002f001700070057007700a40030000d001b003200a30031009e00a200a100a0009f018b009d009c00090004000300080026000f009b009a001e000700770012000a00020046001d00f900450044000200140099000100130098018a001400970001001300960001009500220021018900940093018800920057009100040003001600150090003b005600020014008f00010013008e0001001100220021002c0001003a0039003800410002008d008c00010014008b00010013008a0001001100220021002c0001003a00390038005f0002005d00890088005801870087005500860054005300850186005e018500840083008200810080007f000d007e007d007c007b0061007a00160015003b003e0002018400600183018200e80033001b00e700e600e5000900300004000300080026000f00430066001e000701810012000a00020180017f001c017e0023017d017c017b00b5017a0042017901780177017601750174001200e0005b00160015005a00040003002b00560025002f001700070173000d0012000a000201720062001200230012017100620012002300120170001a000200000000000000000076016f000000000000005200510050016e016d00000000000000000000016c00000029000000750000016b016a016901680167000001660000000000000000016500000000000001640000000000000163000000000000016200000000000001610000000000000160000000000000015f000000000000015e000000000000015d000000000000015c000000000000015b000000000000015a0000000000000159000000000000015800000000000001570000007600050005000501560000000000290000000000000155015401530152000000000075000001510150014f014e014d000000740000014c014b00000000005200510050014a0000000001490000000500050005014801470146014501440029000001430000014201410140013f0029000000730000013e0000000000000072013d013c013b013a0139000000000052005100500138000000000137000000000000000000050000000001360000007100050005007000000000000001350071000500050005000000000000013401330000000000000000000000740000013200000000000001310130012f012e012d000000000000012c012b00000000012a0129012801270126012501240123012201210120000000000000011f0000011e011d011c011b011a000000000000007201190118011700000000000001160000000000730000011501140113011201110110010f010e010d010c010b010a0109010800000000010701060105010400000000010300000029000001020000000500050005010100050005000500700000000000000100000000000000000000000000000000000000000000000000000000000000",
382
+ "logIndex": 8,
383
+ "blockHash": "0x538cc5bd63fa88b15c44eb23570a3f0fc5c26355b691b5dc7f1654273a94ef81"
384
+ },
385
+ {
386
+ "transactionIndex": 1,
387
+ "blockNumber": 42315237,
388
+ "transactionHash": "0x727cf9845c19b6d81d6ae36239a5483758cd3f33aebcc76f435364654368b589",
389
+ "address": "0x0000000000000000000000000000000000008004",
390
+ "topics": [
391
+ "0xc94722ff13eacf53547c4741dab5228353a05938ffcdd5d4a2d533ae0e618287",
392
+ "0x010001975d079876c2a539e3a3c66e4cda57de3f99fe6797de7db1740c3b7c08",
393
+ "0x0000000000000000000000000000000000000000000000000000000000000000"
394
+ ],
395
+ "data": "0x",
396
+ "logIndex": 9,
397
+ "blockHash": "0x538cc5bd63fa88b15c44eb23570a3f0fc5c26355b691b5dc7f1654273a94ef81"
398
+ },
399
+ {
400
+ "transactionIndex": 1,
401
+ "blockNumber": 42315237,
402
+ "transactionHash": "0x727cf9845c19b6d81d6ae36239a5483758cd3f33aebcc76f435364654368b589",
403
+ "address": "0x37878481A040E4F6a8856315bdF02Be4a1B4bd6C",
404
+ "topics": ["0x7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498"],
405
+ "data": "0x00000000000000000000000000000000000000000000000000000000000000ff",
406
+ "logIndex": 10,
407
+ "blockHash": "0x538cc5bd63fa88b15c44eb23570a3f0fc5c26355b691b5dc7f1654273a94ef81"
408
+ },
409
+ {
410
+ "transactionIndex": 1,
411
+ "blockNumber": 42315237,
412
+ "transactionHash": "0x727cf9845c19b6d81d6ae36239a5483758cd3f33aebcc76f435364654368b589",
413
+ "address": "0x0000000000000000000000000000000000008006",
414
+ "topics": [
415
+ "0x290afdae231a3fc0bbae8b1af63698b0a1d79b21ad17df0342dfb952fe74f8e5",
416
+ "0x0000000000000000000000007f423e50147930e197daae9f637198e66746d597",
417
+ "0x010001975d079876c2a539e3a3c66e4cda57de3f99fe6797de7db1740c3b7c08",
418
+ "0x00000000000000000000000037878481a040e4f6a8856315bdf02be4a1b4bd6c"
419
+ ],
420
+ "data": "0x",
421
+ "logIndex": 11,
422
+ "blockHash": "0x538cc5bd63fa88b15c44eb23570a3f0fc5c26355b691b5dc7f1654273a94ef81"
423
+ },
424
+ {
425
+ "transactionIndex": 1,
426
+ "blockNumber": 42315237,
427
+ "transactionHash": "0x727cf9845c19b6d81d6ae36239a5483758cd3f33aebcc76f435364654368b589",
428
+ "address": "0x000000000000000000000000000000000000800A",
429
+ "topics": [
430
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
431
+ "0x0000000000000000000000000000000000000000000000000000000000008001",
432
+ "0x0000000000000000000000007f423e50147930e197daae9f637198e66746d597"
433
+ ],
434
+ "data": "0x00000000000000000000000000000000000000000000000000002fc8ab615f50",
435
+ "logIndex": 12,
436
+ "blockHash": "0x538cc5bd63fa88b15c44eb23570a3f0fc5c26355b691b5dc7f1654273a94ef81"
437
+ }
438
+ ],
439
+ "blockNumber": 42315237,
440
+ "cumulativeGasUsed": "0",
441
+ "status": 1,
442
+ "byzantium": true
443
+ },
444
+ "args": [],
445
+ "numDeployments": 1,
446
+ "solcInputHash": "d14112d82bb23a35dc687350b4e61e84",
447
+ "metadata": {
448
+ "llvm_options": [],
449
+ "optimizer_settings": {
450
+ "is_debug_logging_enabled": false,
451
+ "is_fallback_to_size_enabled": false,
452
+ "is_verify_each_enabled": false,
453
+ "level_back_end": "Aggressive",
454
+ "level_middle_end": "Aggressive",
455
+ "level_middle_end_size": "Zero"
456
+ },
457
+ "solc_metadata": "{\"compiler\":{\"version\":\"0.8.25+commit.47b979f3\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"calledContract\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"methodSignature\",\"type\":\"string\"}],\"name\":\"Unauthorized\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint8\",\"name\":\"version\",\"type\":\"uint8\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"oldAccessControlManager\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAccessControlManager\",\"type\":\"address\"}],\"name\":\"NewAccessControlManager\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferStarted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"upperBound\",\"type\":\"uint256\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"lowerBound\",\"type\":\"uint256\"}],\"name\":\"ValidateConfigAdded\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"acceptOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"accessControlManager\",\"outputs\":[{\"internalType\":\"contract IAccessControlManagerV8\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"accessControlManager_\",\"type\":\"address\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pendingOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"accessControlManager_\",\"type\":\"address\"}],\"name\":\"setAccessControlManager\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"upperBoundRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lowerBoundRatio\",\"type\":\"uint256\"}],\"internalType\":\"struct BoundValidator.ValidateConfig\",\"name\":\"config\",\"type\":\"tuple\"}],\"name\":\"setValidateConfig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"upperBoundRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lowerBoundRatio\",\"type\":\"uint256\"}],\"internalType\":\"struct BoundValidator.ValidateConfig[]\",\"name\":\"configs\",\"type\":\"tuple[]\"}],\"name\":\"setValidateConfigs\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"validateConfigs\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"upperBoundRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lowerBoundRatio\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"reportedPrice\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"anchorPrice\",\"type\":\"uint256\"}],\"name\":\"validatePriceWithAnchorPrice\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Venus\",\"events\":{\"Initialized(uint8)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{\"acceptOwnership()\":{\"details\":\"The new owner accepts the ownership transfer.\"},\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"initialize(address)\":{\"params\":{\"accessControlManager_\":\"Address of the access control manager contract\"}},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"pendingOwner()\":{\"details\":\"Returns the address of the pending owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"setAccessControlManager(address)\":{\"custom:access\":\"Only Governance\",\"custom:event\":\"Emits NewAccessControlManager event\",\"details\":\"Admin function to set address of AccessControlManager\",\"params\":{\"accessControlManager_\":\"The new address of the AccessControlManager\"}},\"setValidateConfig((address,uint256,uint256))\":{\"custom:access\":\"Only Governance\",\"custom:error\":\"Null address error is thrown if asset address is nullRange error thrown if bound ratio is not positiveRange error thrown if lower bound is greater than or equal to upper bound\",\"custom:event\":\"Emits ValidateConfigAdded when a validation config is successfully set\",\"params\":{\"config\":\"Validation config struct\"}},\"setValidateConfigs((address,uint256,uint256)[])\":{\"custom:access\":\"Only Governance\",\"custom:error\":\"Zero length error is thrown if length of the config array is 0\",\"custom:event\":\"Emits ValidateConfigAdded for each validation config that is successfully set\",\"params\":{\"configs\":\"Array of validation configs\"}},\"transferOwnership(address)\":{\"details\":\"Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. Can only be called by the current owner.\"},\"validatePriceWithAnchorPrice(address,uint256,uint256)\":{\"custom:error\":\"Missing error thrown if asset config is not setPrice error thrown if anchor price is not valid\",\"params\":{\"asset\":\"asset address\",\"reportedPrice\":\"The price to be tested\"}}},\"title\":\"BoundValidator\",\"version\":1},\"userdoc\":{\"errors\":{\"Unauthorized(address,address,string)\":[{\"notice\":\"Thrown when the action is prohibited by AccessControlManager\"}]},\"events\":{\"NewAccessControlManager(address,address)\":{\"notice\":\"Emitted when access control manager contract address is changed\"},\"ValidateConfigAdded(address,uint256,uint256)\":{\"notice\":\"Emit this event when new validation configs are added\"}},\"kind\":\"user\",\"methods\":{\"accessControlManager()\":{\"notice\":\"Returns the address of the access control manager contract\"},\"constructor\":{\"notice\":\"Constructor for the implementation contract. Sets immutable variables.\"},\"initialize(address)\":{\"notice\":\"Initializes the owner of the contract\"},\"setAccessControlManager(address)\":{\"notice\":\"Sets the address of AccessControlManager\"},\"setValidateConfig((address,uint256,uint256))\":{\"notice\":\"Add a single validation config\"},\"setValidateConfigs((address,uint256,uint256)[])\":{\"notice\":\"Add multiple validation configs at the same time\"},\"validateConfigs(address)\":{\"notice\":\"validation configs by asset\"},\"validatePriceWithAnchorPrice(address,uint256,uint256)\":{\"notice\":\"Test reported asset price against anchor price\"}},\"notice\":\"The BoundValidator contract is used to validate prices fetched from two different sources. Each asset has an upper and lower bound ratio set in the config. In order for a price to be valid it must fall within this range of the validator price.\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/oracles/BoundValidator.sol\":\"BoundValidator\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"details\":{\"constantOptimizer\":false,\"cse\":false,\"deduplicate\":false,\"inliner\":false,\"jumpdestRemover\":false,\"orderLiterals\":false,\"peephole\":false,\"simpleCounterForLoopUncheckedIncrement\":true,\"yul\":true,\"yulDetails\":{\"optimizerSteps\":\"dhfoDgvulfnTUtnIf[xa[r]EscLMcCTUtTOntnfDIulLculVcul [j]Tpeulxa[rul]xa[r]cLgvifCTUca[r]LSsTFOtfDnca[r]Iulc]jmul[jul] VcTOcul jmul:fDnTOcmu\",\"stackAllocation\":true}},\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol\":{\"keccak256\":\"0x9140dabc466abab21b48b72dbda26736b1183a310d0e677d3719d201df026510\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://75267b14b60dc216d01d596a4008189a6c44d3314e53eded0edb1e757d95be16\",\"dweb:/ipfs/QmQoMaxTRT6V7uQj9USfdQH9jh1crywB9auVjThzUSAbG2\"]},\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"keccak256\":\"0x359a1ab89b46b9aba7bcad3fb651924baf4893d15153049b9976b0fc9be1358e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e89863421b4014b96a4b62be76eb3b9f0a8afe9684664a6f389124c0964bfe5c\",\"dweb:/ipfs/Qmbk7xr1irpDuU1WdxXgxELBXxs61rHhCgod7heVcvFx16\"]},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f103ee2e4aecd37aac6ceefe670709cdd7613dee25fa2d4d9feaf7fc0aaa155e\",\"dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv\"]},\"@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol\":{\"keccak256\":\"0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://310136ad60820af4177a11a61d77a3686faf5fca4942b600e08fc940db38396b\",\"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0x75097e35253e7fb282ee4d7f27a80eaacfa759923185bf17302a89cbc059c5ef\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8b06267c5f80bad727af3e48b1382333d591dad51376399ef2f6b0ee6d58bf95\",\"dweb:/ipfs/QmdU5La1agcQvghnfMpWZGDPz2TUDTCxUwTLKmuMRXBpAx\"]},\"@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0x59ce320a585d7e1f163cd70390a0ef2ff9cec832e2aa544293a00692465a7a57\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bb2c137c343ef0c4c7ce7b18c1d108afdc9d315a04e48307288d2d05adcbde3a\",\"dweb:/ipfs/QmUxhrAQM3MM3FF5j7AtcXLXguWCJBHJ14BRdVtuoQc8Fh\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5\",\"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd\",\"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8\"]},\"@venusprotocol/governance-contracts/contracts/Governance/AccessControlledV8.sol\":{\"keccak256\":\"0x0dcf283925f4dddc23ca0ee71d2cb96a9dd6e4cf08061b69fde1697ea39dc514\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://38db65a77297d8df3345797277a624d81706bde2e9ede230a140e8ca2a027040\",\"dweb:/ipfs/QmWKcmtyyvi3dhAJHkdAKGNrsKcMxKQ6c82ArtDqe8tncG\"]},\"@venusprotocol/governance-contracts/contracts/Governance/IAccessControlManagerV8.sol\":{\"keccak256\":\"0xaa29b098440d0b3a131c5ecdf25ce548790c1b5ac7bf9b5c0264b6af6f7a1e0b\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://8120bda3990193388d0cc5f551510ef1eab685387a58a88ab607b5149e51acde\",\"dweb:/ipfs/QmNSX9ai6GbN4wQukM29rFkcWDFhqStUTtKe6XtreTvRcN\"]},\"contracts/interfaces/OracleInterface.sol\":{\"keccak256\":\"0x2432799b0d824fc701beb4c30146e912b9aeecf77b5c1635dde6c5fbe6bfc3a7\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://a0de4c46c1bb912ebf9eed630e210d17e2952b8076fcfd429672c7e6271ed665\",\"dweb:/ipfs/QmVuqSWTJSxpudZSJMpRC7pmw9iEjyZnnhm3n9RvmKXxTg\"]},\"contracts/interfaces/VBep20Interface.sol\":{\"keccak256\":\"0x6e71c3df86501df5c0e4bace1333c0c91f9f9cced252a54fb99eeda219b789d5\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://a321e0a5c0c913b127fc2bc19025c8d6e3a3c1f5a9c9e52a4e8e382deab1b349\",\"dweb:/ipfs/QmezcySRTNkHtDBBAh4cN64u2tt9dbYFwiNCSBt74ShisK\"]},\"contracts/oracles/BoundValidator.sol\":{\"keccak256\":\"0xd0b567c1f744befdbb493233c59469f39d94d88d882d768e985b8126172fb64a\",\"license\":\"BSD-3-Clause\",\"urls\":[\"bzz-raw://2bbc7cb0a57cb500706b930363cbb78d01e6d8d256d69827e41cc542fb66fed0\",\"dweb:/ipfs/QmSg29wrAjEMHz7N2eXTGbEjE5wT1BTpkUJMb8WpBBimaP\"]}},\"version\":1}",
458
+ "solc_version": "0.8.25",
459
+ "solc_zkvm_edition": "1.0.1",
460
+ "zk_version": "1.5.1"
461
+ },
462
+ "bytecode": "0x0002000000000002000800000000000200010000000103550000008003000039000000400030043f0000000100200190000000240000c13d000000000201001900000060022002700000014d02200197000000040020008c0000035e0000413d000000000301043b000000e003300270000001550030009c000000410000213d0000015d0030009c0000006e0000213d000001610030009c000000b30000613d000001620030009c000000d00000613d000001630030009c0000035e0000c13d0000000001000416000000000001004b0000035e0000c13d0000006501000039000000000101041a00000164021001970000000001000411000000000012004b000001850000c13d053004e90000040f0000000001000019000005310001042e0000000001000416000000000001004b0000035e0000c13d000000000100041a0000ff0000100190000000620000c13d000000ff0210018f000000ff0020008c0000003c0000613d000000ff011001bf000000000010041b000000ff01000039000000800010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000152011001c70000800d0200003900000001030000390000015304000041053005260000040f00000001002001900000035e0000613d0000002001000039000001000010044300000120000004430000015401000041000005310001042e000001560030009c000000900000213d0000015a0030009c000000e90000613d0000015b0030009c000000ff0000613d0000015c0030009c0000035e0000c13d000000240020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d0000000401100370000000000101043b000001640010009c0000035e0000213d0000000000100435000000c901000039000000200010043f0000000001000019053005150000040f0000000202100039000000000202041a0000000103100039000000000303041a000000000101041a0000016401100197000000800010043f000000a00030043f000000c00020043f0000017701000041000005310001042e0000014e01000041000000800010043f0000002001000039000000840010043f0000002701000039000000a40010043f0000014f01000041000000c40010043f0000015001000041000000e40010043f000001510100004100000532000104300000015e0030009c000001040000613d0000015f0030009c000001090000613d000001600030009c0000035e0000c13d000000240020008c0000035e0000413d0000000003000416000000000003004b0000035e0000c13d0000000403100370000000000303043b000001780030009c0000035e0000213d0000002304300039000000000024004b0000035e0000813d0000000404300039000000000441034f000000000604043b000001790060009c0000008a0000813d00000005046002100000003f044000390000017a044001970000017b0040009c000001c00000a13d0000017e0100004100000000001004350000004101000039000000040010043f0000017f010000410000053200010430000001570030009c0000012f0000613d000001580030009c000001730000613d000001590030009c0000035e0000c13d000000240020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d0000000401100370000000000601043b000001640060009c0000035e0000213d0000003301000039000000000101041a00000164051001970000000001000411000000000015004b0000017c0000c13d0000006501000039000000000201041a0000016502200197000000000262019f000000000021041b00000000010004140000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000003030000390000016704000041000001ea0000013d000000240020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d0000000401100370000000000101043b000001640010009c0000035e0000213d0000003302000039000000000202041a00000164022001970000000003000411000000000032004b0000017c0000c13d000000000001004b000001da0000c13d0000014e01000041000000800010043f0000002001000039000000840010043f0000002501000039000000a40010043f0000017401000041000000c40010043f0000017301000041000000e40010043f000001510100004100000532000104300000000001000416000000000001004b0000035e0000c13d0000003301000039000000000201041a00000164052001970000000003000411000000000035004b0000017c0000c13d0000006503000039000000000403041a0000016504400197000000000043041b0000016502200197000000000021041b00000000010004140000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000003030000390000016f040000410000000006000019000001ea0000013d000000640020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d000000e002000039000000400020043f0000000402100370000000000202043b000001640020009c0000035e0000213d000000800020043f0000002402100370000000000202043b000000a00020043f0000004401100370000000000101043b000000c00010043f0000008001000039053003c80000040f0000000001000019000005310001042e0000000001000416000000000001004b0000035e0000c13d0000009701000039000001770000013d0000000001000416000000000001004b0000035e0000c13d0000003301000039000001770000013d000000640020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d0000000402100370000000000202043b000001640020009c0000035e0000213d0000004401100370000000000101043b000500000001001d0000000000200435000000c901000039000000200010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000170011001c7000600000002001d00008010020000390530052b0000040f000000010020019000000006020000290000035e0000613d000000000101043b0000000101100039000000000101041a000000000001004b000001ef0000c13d000000400100043d00000044021000390000018e03000041000000000032043500000024021000390000001b03000039000001f80000013d000000240020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d0000000401100370000000000401043b000001640040009c0000035e0000213d0000000002000415000000080220008a0000000502200210000000000300041a0000ff0001300190000600000004001d000001910000c13d0000000002000415000000070220008a0000000502200210000000ff00300190000001910000c13d0000016e0130019700000101011001bf0000000002000019000000000010041b0000ff0000100190000001b50000613d000500000002001d0000006501000039000000000201041a0000016502200197000000000021041b000000000100041100000164061001970000003301000039000000000201041a0000016503200197000000000363019f000000000031041b000000000100041400000164052001970000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000003030000390000016f04000041053005260000040f000000060500002900000001002001900000035e0000613d000000000100041a0000ff0000100190000001b50000613d000400000001001d000000400100043d000000000005004b000002710000c13d000000640210003900000173030000410000000000320435000000440210003900000174030000410000000000320435000000240210003900000025030000390000020f0000013d0000000001000416000000000001004b0000035e0000c13d0000006501000039000000000101041a0000016401100197000000800010043f0000016801000041000005310001042e0000014e01000041000000800010043f0000002001000039000000840010043f000000a40010043f0000019101000041000000c40010043f000001920100004100000532000104300000014e01000041000000800010043f0000002001000039000000840010043f0000002901000039000000a40010043f0000018f01000041000000c40010043f0000019001000041000000e40010043f00000151010000410000053200010430000500000002001d000300000001001d000400000003001d000001690100004100000000001004390000000001000410000000040010044300000000010004140000014d0010009c0000014d01008041000000c0011002100000016a011001c700008002020000390530052b0000040f0000000100200190000001bf0000613d000000000101043b000000000001004b000002030000c13d0000000403000029000000ff0130018f000000010010008c0000000001000019000000010100603900000005020000290000000502200270000000000201001f000002060000c13d000000030000006b000001440000613d0000019401300197000000010200003900000001011001bf000000000010041b0000ff00001001900000014a0000c13d000000400100043d00000064021000390000017503000041000000000032043500000044021000390000017603000041000000000032043500000024021000390000002b030000390000020f0000013d000000000001042f0000008005400039000000400050043f000000800060043f000000240330003900000060046000c90000000004340019000000000024004b0000035e0000213d000000000006004b000002280000c13d00000044015000390000018a02000041000000000021043500000024015000390000001e0200003900000000002104350000014e0100004100000000001504350000000401500039000000200200003900000000002104350000014d0050009c0000014d05008041000000400150021000000187011001c700000532000104300000009702000039000000000302041a0000016504300197000000000414019f000000000042041b0000016402300197000000800020043f000000a00010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000193011001c70000800d0200003900000001030000390000017104000041053005260000040f00000001002001900000035e0000613d0000000001000019000005310001042e0000000503000029000000000003004b0000021a0000c13d000000400100043d00000044021000390000018d0300004100000000003204350000002402100039000000190300003900000000003204350000014e0200004100000000002104350000000402100039000000200300003900000000003204350000014d0010009c0000014d01008041000000400110021000000187011001c7000005320001043000000005010000290000000501100270000000000100001f000000400100043d00000064021000390000016b03000041000000000032043500000044021000390000016c03000041000000000032043500000024021000390000002e0300003900000000003204350000014e0200004100000000002104350000000402100039000000200300003900000000003204350000014d0010009c0000014d0100804100000040011002100000016d011001c7000005320001043000000024010000390000000101100367000000000401043b000000000004004b00000000010000190000024b0000c13d000000010110018f000000400200043d00000000001204350000014d0020009c0000014d0200804100000040012002100000018c011001c7000005310001042e000000a00500003900000000063200490000017c0060009c0000035e0000213d000000600060008c0000035e0000413d000000400600043d0000017d0060009c0000008a0000213d0000006007600039000000400070043f000000000731034f000000000707043b000001640070009c0000035e0000213d00000000077604360000002008300039000000000881034f000000000808043b00000000008704350000004007300039000000000771034f000000000707043b0000004008600039000000000078043500000000056504360000006003300039000000000043004b000002290000413d000000800100043d000200000001001d000000000001004b0000029d0000c13d000000400500043d000001ca0000013d0000018b053000d100000000013500d90000018b0010009c0000026b0000c13d000400000005001d000500000004001d0000000000200435000000c901000039000000200010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000170011001c700008010020000390530052b0000040f00000001002001900000035e0000613d000000040300002900000005023000fa000000000301043b0000000101300039000000000101041a000000000012004b0000000001000019000002200000213d0000000201300039000000000101041a000000000012004b00000000010000190000000101008039000002200000013d0000017e0100004100000000001004350000001101000039000000040010043f0000017f0100004100000532000104300000009702000039000000000302041a0000016504300197000000000454019f000000000042041b00000020021000390000000000520435000001640230019700000000002104350000014d0010009c0000014d01008041000000400110021000000000020004140000014d0020009c0000014d02008041000000c002200210000000000112019f00000170011001c70000800d0200003900000001030000390000017104000041053005260000040f00000001002001900000035e0000613d000000050000006b000001ed0000c13d0000ff010100008a000000040110017f000000000010041b000000400100043d000000010300003900000000003104350000014d0010009c0000014d01008041000000400110021000000000020004140000014d0020009c0000014d02008041000000c002200210000000000112019f00000172011001c70000800d020000390000015304000041000001ea0000013d000600000000001d000000800100043d000000060010006b000003660000813d000000400900043d0000017d0090009c0000008a0000213d00000006010000290000000501100210000000a00110003900000000080104330000006001900039000000400010043f000000400190003900000180020000410000000000210435000000200190003900000181020000410000000000210435000000210200003900000000002904350000009702000039000000000202041a000000400a00043d0000002403a00039000000400400003900000000004304350000018203000041000000000b3a04360000000403a000390000000004000411000000000043043500000000030904330000004404a0003900000000003404350000006404a00039000000000003004b000002cb0000613d000000000500001900000000064500190000000007150019000000000707043300000000007604350000002005500039000000000035004b000002c40000413d0000016402200197000000000143001900000000000104350000000001000414000000040020008c000500000008001d000002d70000c13d0000000003000031000000200030008c000000200400003900000000040340190000030e0000013d000400000009001d0000001f03300039000001950330019700000064033000390000014d0030009c0000014d0300804100000060033002100000014d00a0009c0000014d0400004100000000040a40190000004004400210000000000343019f0000014d0010009c0000014d01008041000000c001100210000000000131019f00030000000a001d00010000000b001d0530052b0000040f0000000109000029000000030a000029000000000301001900000060033002700000014d03300197000000200030008c000000200400003900000000040340190000000505400272000002fa0000613d000000000601034f00000000070a0019000000006806043c0000000007870436000000000097004b000002f60000c13d0000001f06400190000003090000613d0000000505500210000000000751034f00000000055a00190000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000000409000029000003a80000613d00000005080000290000001f01400039000000600110018f0000000004a10019000000000014004b00000000010000190000000101004039000001780040009c0000008a0000213d00000001001001900000008a0000c13d000000400040043f000000200030008c0000035e0000413d00000000010a0433000000000001004b0000000002000019000000010200c039000000000021004b0000035e0000c13d000000000001004b0000036c0000613d00000000510804340000016401100198000003850000613d0000000002050433000000000002004b000003600000613d00000040068000390000000003060433000000000003004b000003600000613d000300000006001d000400000005001d000000000032004b000003950000a13d0000000000100435000000c901000039000000200010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000170011001c700008010020000390530052b0000040f000000010020019000000005020000290000035e0000613d00000000020204330000016405200197000000000101043b000000000201041a0000016502200197000000000252019f000000000021041b000000040200002900000000060204330000000102100039000000000062041b000000020110003900000003020000290000000007020433000000000071041b00000000010004140000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000004030000390000018504000041053005260000040f00000001002001900000035e0000613d00000006020000290000000102200039000600000002001d000000020020006c0000029e0000413d000001ed0000013d00000000010000190000053200010430000000440140003900000186020000410000000000210435000000240140003900000016020000390000038a0000013d0000017e0100004100000000001004350000003201000039000000040010043f0000017f0100004100000532000104300000004401400039000000600200003900000000002104350000002401400039000000000200041000000000002104350000018901000041000000000014043500000004014000390000000002000411000000000021043500000064024000390000000001090019000600000004001d053005020000040f000000060200002900000000012100490000014d0010009c0000014d010080410000014d0020009c0000014d0200804100000060011002100000004002200210000000000121019f000005320001043000000044014000390000018802000041000000000021043500000024014000390000001b0200003900000000002104350000014e0100004100000000001404350000000401400039000000200200003900000000002104350000014d0040009c0000014d04008041000000400140021000000187011001c7000005320001043000000064014000390000018302000041000000000021043500000044014000390000018402000041000000000021043500000024014000390000002c0200003900000000002104350000014e0100004100000000001404350000000401400039000000200200003900000000002104350000014d0040009c0000014d0400804100000040014002100000016d011001c70000053200010430000000400200043d0000001f0430018f00000005053002720000000505500210000003b40000613d0000000006520019000000000701034f0000000008020019000000007907043c0000000008980436000000000068004b000003b00000c13d000000000004004b000003c20000613d000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f000000000015043500000060013002100000014d0020009c0000014d020080410000004002200210000000000112019f000005320001043000040000000000020000000008010019000000400900043d000001960090009c000004820000813d0000006001900039000000400010043f000000400190003900000180020000410000000000210435000000200190003900000181020000410000000000210435000000210200003900000000002904350000009702000039000000000202041a000000400b00043d0000002403b00039000000400400003900000000004304350000018203000041000000000c3b04360000000403b00039000000000a0004110000000000a3043500000000030904330000004404b0003900000000003404350000006404b000390000016402200197000000000003004b000003f10000613d000000000500001900000000064500190000000007150019000000000707043300000000007604350000002005500039000000000035004b000003ea0000413d000000000134001900000000000104350000000001000414000000040020008c000400000008001d000003fc0000c13d0000000003000031000000200030008c00000020040000390000000004034019000004350000013d000300000009001d0000001f03300039000001950330019700000064033000390000014d0030009c0000014d0300804100000060033002100000014d00b0009c0000014d0400004100000000040b40190000004004400210000000000343019f0000014d0010009c0000014d01008041000000c001100210000000000113019f00020000000b001d00010000000c001d0530052b0000040f000000010a000029000000020b000029000000000301001900000060033002700000014d03300197000000200030008c000000200400003900000000040340190000001f0540018f0000000506400272000004200000613d000000000701034f00000000080b0019000000007907043c00000000089804360000000000a8004b0000041c0000c13d000000000005004b0000042f0000613d0000000506600210000000000761034f00000000066b00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000003001f00000001002001900000000309000029000000000a000411000004c90000613d00000004080000290000001f01400039000000600110018f0000000004b10019000000000014004b00000000010000190000000101004039000001780040009c000004820000213d0000000100100190000004820000c13d000000400040043f0000001f0030008c000004800000a13d00000000010b0433000000000001004b0000000002000019000000010200c039000000000021004b000004800000c13d000000000001004b0000048e0000613d00000000510804340000016401100198000004a60000613d0000000002050433000000000002004b000004880000613d00000040068000390000000003060433000000000003004b000004880000613d000200000006001d000300000005001d000000000032004b000004b60000a13d0000000000100435000000c901000039000000200010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000170011001c700008010020000390530052b0000040f00000001002001900000000402000029000004800000613d00000000020204330000016405200197000000000101043b000000000201041a0000016502200197000000000252019f000000000021041b000000030200002900000000060204330000000102100039000000000062041b000000020110003900000002020000290000000007020433000000000071041b00000000010004140000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000004030000390000018504000041053005260000040f0000000100200190000004800000613d000000000001042d000000000100001900000532000104300000017e0100004100000000001004350000004101000039000000040010043f0000017f01000041000005320001043000000044014000390000018602000041000000000021043500000024014000390000001602000039000004ab0000013d0000004401400039000000600200003900000000002104350000002401400039000000000200041000000000002104350000018901000041000000000014043500000004014000390000000000a1043500000064024000390000000001090019000400000004001d053005020000040f000000040200002900000000012100490000014d0010009c0000014d010080410000014d0020009c0000014d0200804100000060011002100000004002200210000000000121019f000005320001043000000044014000390000018802000041000000000021043500000024014000390000001b0200003900000000002104350000014e0100004100000000001404350000000401400039000000200200003900000000002104350000014d0040009c0000014d04008041000000400140021000000187011001c7000005320001043000000064014000390000018302000041000000000021043500000044014000390000018402000041000000000021043500000024014000390000002c0200003900000000002104350000014e0100004100000000001404350000000401400039000000200200003900000000002104350000014d0040009c0000014d0400804100000040014002100000016d011001c70000053200010430000000400200043d0000001f0430018f00000005053002720000000505500210000004d50000613d0000000006520019000000000701034f0000000008020019000000007907043c0000000008980436000000000068004b000004d10000c13d000000000004004b000004e30000613d000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f000000000015043500000060013002100000014d0020009c0000014d020080410000004002200210000000000112019f00000532000104300000006502000039000000000302041a0000016503300197000000000032041b00000164061001970000003301000039000000000201041a0000016503200197000000000363019f000000000031041b000000000100041400000164052001970000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000003030000390000016f04000041053005260000040f0000000100200190000005000000613d000000000001042d0000000001000019000005320001043000000000430104340000000001320436000000000003004b0000050e0000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b000005070000413d000000000231001900000000000204350000001f0230003900000195022001970000000001210019000000000001042d000000000001042f00000000020004140000014d0020009c0000014d02008041000000c0022002100000014d0010009c0000014d010080410000004001100210000000000121019f00000170011001c700008010020000390530052b0000040f0000000100200190000005240000613d000000000101043b000000000001042d0000000001000019000005320001043000000529002104210000000102000039000000000001042d0000000002000019000000000001042d0000052e002104230000000102000039000000000001042d0000000002000019000000000001042d0000053000000432000005310001042e0000053200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff08c379a000000000000000000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320696e697469616c697a696e6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000002000000000000000000000000000000000000200000008000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000af9e6c5a00000000000000000000000000000000000000000000000000000000c4d66de700000000000000000000000000000000000000000000000000000000c4d66de800000000000000000000000000000000000000000000000000000000e30c397800000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000af9e6c5b00000000000000000000000000000000000000000000000000000000b4a0bdf300000000000000000000000000000000000000000000000000000000bca9e116000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000097c7033e000000000000000000000000000000000000000000000000000000009c357615000000000000000000000000000000000000000000000000000000000e32cb8600000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000079ba5097000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000038d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270000000000000000000000000000000000000000200000008000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000647920696e697469616c697a6564000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c7265610000000000000000000000000000000000000084000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0020000000000000000000000000000000000004000000000000000000000000066fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa002000000000000000000000000000000000000200000000000000000000000006472657373000000000000000000000000000000000000000000000000000000696e76616c696420616365737320636f6e74726f6c206d616e616765722061646e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420690000000000000000000000000000000000000060000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000000000000000000000000000000000000100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff9f4e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000290000000000000000000000000000000000000000000000000000000000000073657456616c6964617465436f6e6669672856616c6964617465436f6e66696718c5e8ab000000000000000000000000000000000000000000000000000000006c6f776e657220626f756e640000000000000000000000000000000000000000757070657220626f756e64206d75737420626520686967686572207468616e2028e2d96bdcf74fe6203e40d159d27ec2e15230239c0aee4a0a914196c550e6d1626f756e64206d75737420626520706f73697469766500000000000000000000000000000000000000000000000000000000006400000000000000000000000061737365742063616e2774206265207a65726f206164647265737300000000004a3fa29300000000000000000000000000000000000000000000000000000000696e76616c69642076616c696461746520636f6e666967206c656e67746800000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000020000000000000000000000000616e63686f72207072696365206973206e6f742076616c69640000000000000076616c69646174696f6e20636f6e666967206e6f7420657869737400000000004f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206e6577206f776e657200000000000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000008000000000000000000200000000000000000000000000000000000040000000800000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffffa0",
463
+ "deployedBytecode": "0x0002000000000002000800000000000200010000000103550000008003000039000000400030043f0000000100200190000000240000c13d000000000201001900000060022002700000014d02200197000000040020008c0000035e0000413d000000000301043b000000e003300270000001550030009c000000410000213d0000015d0030009c0000006e0000213d000001610030009c000000b30000613d000001620030009c000000d00000613d000001630030009c0000035e0000c13d0000000001000416000000000001004b0000035e0000c13d0000006501000039000000000101041a00000164021001970000000001000411000000000012004b000001850000c13d053004e90000040f0000000001000019000005310001042e0000000001000416000000000001004b0000035e0000c13d000000000100041a0000ff0000100190000000620000c13d000000ff0210018f000000ff0020008c0000003c0000613d000000ff011001bf000000000010041b000000ff01000039000000800010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000152011001c70000800d0200003900000001030000390000015304000041053005260000040f00000001002001900000035e0000613d0000002001000039000001000010044300000120000004430000015401000041000005310001042e000001560030009c000000900000213d0000015a0030009c000000e90000613d0000015b0030009c000000ff0000613d0000015c0030009c0000035e0000c13d000000240020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d0000000401100370000000000101043b000001640010009c0000035e0000213d0000000000100435000000c901000039000000200010043f0000000001000019053005150000040f0000000202100039000000000202041a0000000103100039000000000303041a000000000101041a0000016401100197000000800010043f000000a00030043f000000c00020043f0000017701000041000005310001042e0000014e01000041000000800010043f0000002001000039000000840010043f0000002701000039000000a40010043f0000014f01000041000000c40010043f0000015001000041000000e40010043f000001510100004100000532000104300000015e0030009c000001040000613d0000015f0030009c000001090000613d000001600030009c0000035e0000c13d000000240020008c0000035e0000413d0000000003000416000000000003004b0000035e0000c13d0000000403100370000000000303043b000001780030009c0000035e0000213d0000002304300039000000000024004b0000035e0000813d0000000404300039000000000441034f000000000604043b000001790060009c0000008a0000813d00000005046002100000003f044000390000017a044001970000017b0040009c000001c00000a13d0000017e0100004100000000001004350000004101000039000000040010043f0000017f010000410000053200010430000001570030009c0000012f0000613d000001580030009c000001730000613d000001590030009c0000035e0000c13d000000240020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d0000000401100370000000000601043b000001640060009c0000035e0000213d0000003301000039000000000101041a00000164051001970000000001000411000000000015004b0000017c0000c13d0000006501000039000000000201041a0000016502200197000000000262019f000000000021041b00000000010004140000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000003030000390000016704000041000001ea0000013d000000240020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d0000000401100370000000000101043b000001640010009c0000035e0000213d0000003302000039000000000202041a00000164022001970000000003000411000000000032004b0000017c0000c13d000000000001004b000001da0000c13d0000014e01000041000000800010043f0000002001000039000000840010043f0000002501000039000000a40010043f0000017401000041000000c40010043f0000017301000041000000e40010043f000001510100004100000532000104300000000001000416000000000001004b0000035e0000c13d0000003301000039000000000201041a00000164052001970000000003000411000000000035004b0000017c0000c13d0000006503000039000000000403041a0000016504400197000000000043041b0000016502200197000000000021041b00000000010004140000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000003030000390000016f040000410000000006000019000001ea0000013d000000640020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d000000e002000039000000400020043f0000000402100370000000000202043b000001640020009c0000035e0000213d000000800020043f0000002402100370000000000202043b000000a00020043f0000004401100370000000000101043b000000c00010043f0000008001000039053003c80000040f0000000001000019000005310001042e0000000001000416000000000001004b0000035e0000c13d0000009701000039000001770000013d0000000001000416000000000001004b0000035e0000c13d0000003301000039000001770000013d000000640020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d0000000402100370000000000202043b000001640020009c0000035e0000213d0000004401100370000000000101043b000500000001001d0000000000200435000000c901000039000000200010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000170011001c7000600000002001d00008010020000390530052b0000040f000000010020019000000006020000290000035e0000613d000000000101043b0000000101100039000000000101041a000000000001004b000001ef0000c13d000000400100043d00000044021000390000018e03000041000000000032043500000024021000390000001b03000039000001f80000013d000000240020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d0000000401100370000000000401043b000001640040009c0000035e0000213d0000000002000415000000080220008a0000000502200210000000000300041a0000ff0001300190000600000004001d000001910000c13d0000000002000415000000070220008a0000000502200210000000ff00300190000001910000c13d0000016e0130019700000101011001bf0000000002000019000000000010041b0000ff0000100190000001b50000613d000500000002001d0000006501000039000000000201041a0000016502200197000000000021041b000000000100041100000164061001970000003301000039000000000201041a0000016503200197000000000363019f000000000031041b000000000100041400000164052001970000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000003030000390000016f04000041053005260000040f000000060500002900000001002001900000035e0000613d000000000100041a0000ff0000100190000001b50000613d000400000001001d000000400100043d000000000005004b000002710000c13d000000640210003900000173030000410000000000320435000000440210003900000174030000410000000000320435000000240210003900000025030000390000020f0000013d0000000001000416000000000001004b0000035e0000c13d0000006501000039000000000101041a0000016401100197000000800010043f0000016801000041000005310001042e0000014e01000041000000800010043f0000002001000039000000840010043f000000a40010043f0000019101000041000000c40010043f000001920100004100000532000104300000014e01000041000000800010043f0000002001000039000000840010043f0000002901000039000000a40010043f0000018f01000041000000c40010043f0000019001000041000000e40010043f00000151010000410000053200010430000500000002001d000300000001001d000400000003001d000001690100004100000000001004390000000001000410000000040010044300000000010004140000014d0010009c0000014d01008041000000c0011002100000016a011001c700008002020000390530052b0000040f0000000100200190000001bf0000613d000000000101043b000000000001004b000002030000c13d0000000403000029000000ff0130018f000000010010008c0000000001000019000000010100603900000005020000290000000502200270000000000201001f000002060000c13d000000030000006b000001440000613d0000019401300197000000010200003900000001011001bf000000000010041b0000ff00001001900000014a0000c13d000000400100043d00000064021000390000017503000041000000000032043500000044021000390000017603000041000000000032043500000024021000390000002b030000390000020f0000013d000000000001042f0000008005400039000000400050043f000000800060043f000000240330003900000060046000c90000000004340019000000000024004b0000035e0000213d000000000006004b000002280000c13d00000044015000390000018a02000041000000000021043500000024015000390000001e0200003900000000002104350000014e0100004100000000001504350000000401500039000000200200003900000000002104350000014d0050009c0000014d05008041000000400150021000000187011001c700000532000104300000009702000039000000000302041a0000016504300197000000000414019f000000000042041b0000016402300197000000800020043f000000a00010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000193011001c70000800d0200003900000001030000390000017104000041053005260000040f00000001002001900000035e0000613d0000000001000019000005310001042e0000000503000029000000000003004b0000021a0000c13d000000400100043d00000044021000390000018d0300004100000000003204350000002402100039000000190300003900000000003204350000014e0200004100000000002104350000000402100039000000200300003900000000003204350000014d0010009c0000014d01008041000000400110021000000187011001c7000005320001043000000005010000290000000501100270000000000100001f000000400100043d00000064021000390000016b03000041000000000032043500000044021000390000016c03000041000000000032043500000024021000390000002e0300003900000000003204350000014e0200004100000000002104350000000402100039000000200300003900000000003204350000014d0010009c0000014d0100804100000040011002100000016d011001c7000005320001043000000024010000390000000101100367000000000401043b000000000004004b00000000010000190000024b0000c13d000000010110018f000000400200043d00000000001204350000014d0020009c0000014d0200804100000040012002100000018c011001c7000005310001042e000000a00500003900000000063200490000017c0060009c0000035e0000213d000000600060008c0000035e0000413d000000400600043d0000017d0060009c0000008a0000213d0000006007600039000000400070043f000000000731034f000000000707043b000001640070009c0000035e0000213d00000000077604360000002008300039000000000881034f000000000808043b00000000008704350000004007300039000000000771034f000000000707043b0000004008600039000000000078043500000000056504360000006003300039000000000043004b000002290000413d000000800100043d000200000001001d000000000001004b0000029d0000c13d000000400500043d000001ca0000013d0000018b053000d100000000013500d90000018b0010009c0000026b0000c13d000400000005001d000500000004001d0000000000200435000000c901000039000000200010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000170011001c700008010020000390530052b0000040f00000001002001900000035e0000613d000000040300002900000005023000fa000000000301043b0000000101300039000000000101041a000000000012004b0000000001000019000002200000213d0000000201300039000000000101041a000000000012004b00000000010000190000000101008039000002200000013d0000017e0100004100000000001004350000001101000039000000040010043f0000017f0100004100000532000104300000009702000039000000000302041a0000016504300197000000000454019f000000000042041b00000020021000390000000000520435000001640230019700000000002104350000014d0010009c0000014d01008041000000400110021000000000020004140000014d0020009c0000014d02008041000000c002200210000000000112019f00000170011001c70000800d0200003900000001030000390000017104000041053005260000040f00000001002001900000035e0000613d000000050000006b000001ed0000c13d0000ff010100008a000000040110017f000000000010041b000000400100043d000000010300003900000000003104350000014d0010009c0000014d01008041000000400110021000000000020004140000014d0020009c0000014d02008041000000c002200210000000000112019f00000172011001c70000800d020000390000015304000041000001ea0000013d000600000000001d000000800100043d000000060010006b000003660000813d000000400900043d0000017d0090009c0000008a0000213d00000006010000290000000501100210000000a00110003900000000080104330000006001900039000000400010043f000000400190003900000180020000410000000000210435000000200190003900000181020000410000000000210435000000210200003900000000002904350000009702000039000000000202041a000000400a00043d0000002403a00039000000400400003900000000004304350000018203000041000000000b3a04360000000403a000390000000004000411000000000043043500000000030904330000004404a0003900000000003404350000006404a00039000000000003004b000002cb0000613d000000000500001900000000064500190000000007150019000000000707043300000000007604350000002005500039000000000035004b000002c40000413d0000016402200197000000000143001900000000000104350000000001000414000000040020008c000500000008001d000002d70000c13d0000000003000031000000200030008c000000200400003900000000040340190000030e0000013d000400000009001d0000001f03300039000001950330019700000064033000390000014d0030009c0000014d0300804100000060033002100000014d00a0009c0000014d0400004100000000040a40190000004004400210000000000343019f0000014d0010009c0000014d01008041000000c001100210000000000131019f00030000000a001d00010000000b001d0530052b0000040f0000000109000029000000030a000029000000000301001900000060033002700000014d03300197000000200030008c000000200400003900000000040340190000000505400272000002fa0000613d000000000601034f00000000070a0019000000006806043c0000000007870436000000000097004b000002f60000c13d0000001f06400190000003090000613d0000000505500210000000000751034f00000000055a00190000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000000409000029000003a80000613d00000005080000290000001f01400039000000600110018f0000000004a10019000000000014004b00000000010000190000000101004039000001780040009c0000008a0000213d00000001001001900000008a0000c13d000000400040043f000000200030008c0000035e0000413d00000000010a0433000000000001004b0000000002000019000000010200c039000000000021004b0000035e0000c13d000000000001004b0000036c0000613d00000000510804340000016401100198000003850000613d0000000002050433000000000002004b000003600000613d00000040068000390000000003060433000000000003004b000003600000613d000300000006001d000400000005001d000000000032004b000003950000a13d0000000000100435000000c901000039000000200010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000170011001c700008010020000390530052b0000040f000000010020019000000005020000290000035e0000613d00000000020204330000016405200197000000000101043b000000000201041a0000016502200197000000000252019f000000000021041b000000040200002900000000060204330000000102100039000000000062041b000000020110003900000003020000290000000007020433000000000071041b00000000010004140000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000004030000390000018504000041053005260000040f00000001002001900000035e0000613d00000006020000290000000102200039000600000002001d000000020020006c0000029e0000413d000001ed0000013d00000000010000190000053200010430000000440140003900000186020000410000000000210435000000240140003900000016020000390000038a0000013d0000017e0100004100000000001004350000003201000039000000040010043f0000017f0100004100000532000104300000004401400039000000600200003900000000002104350000002401400039000000000200041000000000002104350000018901000041000000000014043500000004014000390000000002000411000000000021043500000064024000390000000001090019000600000004001d053005020000040f000000060200002900000000012100490000014d0010009c0000014d010080410000014d0020009c0000014d0200804100000060011002100000004002200210000000000121019f000005320001043000000044014000390000018802000041000000000021043500000024014000390000001b0200003900000000002104350000014e0100004100000000001404350000000401400039000000200200003900000000002104350000014d0040009c0000014d04008041000000400140021000000187011001c7000005320001043000000064014000390000018302000041000000000021043500000044014000390000018402000041000000000021043500000024014000390000002c0200003900000000002104350000014e0100004100000000001404350000000401400039000000200200003900000000002104350000014d0040009c0000014d0400804100000040014002100000016d011001c70000053200010430000000400200043d0000001f0430018f00000005053002720000000505500210000003b40000613d0000000006520019000000000701034f0000000008020019000000007907043c0000000008980436000000000068004b000003b00000c13d000000000004004b000003c20000613d000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f000000000015043500000060013002100000014d0020009c0000014d020080410000004002200210000000000112019f000005320001043000040000000000020000000008010019000000400900043d000001960090009c000004820000813d0000006001900039000000400010043f000000400190003900000180020000410000000000210435000000200190003900000181020000410000000000210435000000210200003900000000002904350000009702000039000000000202041a000000400b00043d0000002403b00039000000400400003900000000004304350000018203000041000000000c3b04360000000403b00039000000000a0004110000000000a3043500000000030904330000004404b0003900000000003404350000006404b000390000016402200197000000000003004b000003f10000613d000000000500001900000000064500190000000007150019000000000707043300000000007604350000002005500039000000000035004b000003ea0000413d000000000134001900000000000104350000000001000414000000040020008c000400000008001d000003fc0000c13d0000000003000031000000200030008c00000020040000390000000004034019000004350000013d000300000009001d0000001f03300039000001950330019700000064033000390000014d0030009c0000014d0300804100000060033002100000014d00b0009c0000014d0400004100000000040b40190000004004400210000000000343019f0000014d0010009c0000014d01008041000000c001100210000000000113019f00020000000b001d00010000000c001d0530052b0000040f000000010a000029000000020b000029000000000301001900000060033002700000014d03300197000000200030008c000000200400003900000000040340190000001f0540018f0000000506400272000004200000613d000000000701034f00000000080b0019000000007907043c00000000089804360000000000a8004b0000041c0000c13d000000000005004b0000042f0000613d0000000506600210000000000761034f00000000066b00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000003001f00000001002001900000000309000029000000000a000411000004c90000613d00000004080000290000001f01400039000000600110018f0000000004b10019000000000014004b00000000010000190000000101004039000001780040009c000004820000213d0000000100100190000004820000c13d000000400040043f0000001f0030008c000004800000a13d00000000010b0433000000000001004b0000000002000019000000010200c039000000000021004b000004800000c13d000000000001004b0000048e0000613d00000000510804340000016401100198000004a60000613d0000000002050433000000000002004b000004880000613d00000040068000390000000003060433000000000003004b000004880000613d000200000006001d000300000005001d000000000032004b000004b60000a13d0000000000100435000000c901000039000000200010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000170011001c700008010020000390530052b0000040f00000001002001900000000402000029000004800000613d00000000020204330000016405200197000000000101043b000000000201041a0000016502200197000000000252019f000000000021041b000000030200002900000000060204330000000102100039000000000062041b000000020110003900000002020000290000000007020433000000000071041b00000000010004140000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000004030000390000018504000041053005260000040f0000000100200190000004800000613d000000000001042d000000000100001900000532000104300000017e0100004100000000001004350000004101000039000000040010043f0000017f01000041000005320001043000000044014000390000018602000041000000000021043500000024014000390000001602000039000004ab0000013d0000004401400039000000600200003900000000002104350000002401400039000000000200041000000000002104350000018901000041000000000014043500000004014000390000000000a1043500000064024000390000000001090019000400000004001d053005020000040f000000040200002900000000012100490000014d0010009c0000014d010080410000014d0020009c0000014d0200804100000060011002100000004002200210000000000121019f000005320001043000000044014000390000018802000041000000000021043500000024014000390000001b0200003900000000002104350000014e0100004100000000001404350000000401400039000000200200003900000000002104350000014d0040009c0000014d04008041000000400140021000000187011001c7000005320001043000000064014000390000018302000041000000000021043500000044014000390000018402000041000000000021043500000024014000390000002c0200003900000000002104350000014e0100004100000000001404350000000401400039000000200200003900000000002104350000014d0040009c0000014d0400804100000040014002100000016d011001c70000053200010430000000400200043d0000001f0430018f00000005053002720000000505500210000004d50000613d0000000006520019000000000701034f0000000008020019000000007907043c0000000008980436000000000068004b000004d10000c13d000000000004004b000004e30000613d000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f000000000015043500000060013002100000014d0020009c0000014d020080410000004002200210000000000112019f00000532000104300000006502000039000000000302041a0000016503300197000000000032041b00000164061001970000003301000039000000000201041a0000016503200197000000000363019f000000000031041b000000000100041400000164052001970000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000003030000390000016f04000041053005260000040f0000000100200190000005000000613d000000000001042d0000000001000019000005320001043000000000430104340000000001320436000000000003004b0000050e0000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b000005070000413d000000000231001900000000000204350000001f0230003900000195022001970000000001210019000000000001042d000000000001042f00000000020004140000014d0020009c0000014d02008041000000c0022002100000014d0010009c0000014d010080410000004001100210000000000121019f00000170011001c700008010020000390530052b0000040f0000000100200190000005240000613d000000000101043b000000000001042d0000000001000019000005320001043000000529002104210000000102000039000000000001042d0000000002000019000000000001042d0000052e002104230000000102000039000000000001042d0000000002000019000000000001042d0000053000000432000005310001042e0000053200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff08c379a000000000000000000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320696e697469616c697a696e6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000002000000000000000000000000000000000000200000008000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000af9e6c5a00000000000000000000000000000000000000000000000000000000c4d66de700000000000000000000000000000000000000000000000000000000c4d66de800000000000000000000000000000000000000000000000000000000e30c397800000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000af9e6c5b00000000000000000000000000000000000000000000000000000000b4a0bdf300000000000000000000000000000000000000000000000000000000bca9e116000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000097c7033e000000000000000000000000000000000000000000000000000000009c357615000000000000000000000000000000000000000000000000000000000e32cb8600000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000079ba5097000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000038d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270000000000000000000000000000000000000000200000008000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000647920696e697469616c697a6564000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c7265610000000000000000000000000000000000000084000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0020000000000000000000000000000000000004000000000000000000000000066fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa002000000000000000000000000000000000000200000000000000000000000006472657373000000000000000000000000000000000000000000000000000000696e76616c696420616365737320636f6e74726f6c206d616e616765722061646e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420690000000000000000000000000000000000000060000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000000000000000000000000000000000000100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff9f4e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000290000000000000000000000000000000000000000000000000000000000000073657456616c6964617465436f6e6669672856616c6964617465436f6e66696718c5e8ab000000000000000000000000000000000000000000000000000000006c6f776e657220626f756e640000000000000000000000000000000000000000757070657220626f756e64206d75737420626520686967686572207468616e2028e2d96bdcf74fe6203e40d159d27ec2e15230239c0aee4a0a914196c550e6d1626f756e64206d75737420626520706f73697469766500000000000000000000000000000000000000000000000000000000006400000000000000000000000061737365742063616e2774206265207a65726f206164647265737300000000004a3fa29300000000000000000000000000000000000000000000000000000000696e76616c69642076616c696461746520636f6e666967206c656e67746800000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000020000000000000000000000000616e63686f72207072696365206973206e6f742076616c69640000000000000076616c69646174696f6e20636f6e666967206e6f7420657869737400000000004f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206e6577206f776e657200000000000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000008000000000000000000200000000000000000000000000000000000040000000800000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffffa0",
464
+ "devdoc": {
465
+ "author": "Venus",
466
+ "events": {
467
+ "Initialized(uint8)": {
468
+ "details": "Triggered when the contract has been initialized or reinitialized."
469
+ }
470
+ },
471
+ "kind": "dev",
472
+ "methods": {
473
+ "acceptOwnership()": {
474
+ "details": "The new owner accepts the ownership transfer."
475
+ },
476
+ "constructor": {
477
+ "custom:oz-upgrades-unsafe-allow": "constructor"
478
+ },
479
+ "initialize(address)": {
480
+ "params": {
481
+ "accessControlManager_": "Address of the access control manager contract"
482
+ }
483
+ },
484
+ "owner()": {
485
+ "details": "Returns the address of the current owner."
486
+ },
487
+ "pendingOwner()": {
488
+ "details": "Returns the address of the pending owner."
489
+ },
490
+ "renounceOwnership()": {
491
+ "details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
492
+ },
493
+ "setAccessControlManager(address)": {
494
+ "custom:access": "Only Governance",
495
+ "custom:event": "Emits NewAccessControlManager event",
496
+ "details": "Admin function to set address of AccessControlManager",
497
+ "params": {
498
+ "accessControlManager_": "The new address of the AccessControlManager"
499
+ }
500
+ },
501
+ "setValidateConfig((address,uint256,uint256))": {
502
+ "custom:access": "Only Governance",
503
+ "custom:error": "Null address error is thrown if asset address is nullRange error thrown if bound ratio is not positiveRange error thrown if lower bound is greater than or equal to upper bound",
504
+ "custom:event": "Emits ValidateConfigAdded when a validation config is successfully set",
505
+ "params": {
506
+ "config": "Validation config struct"
507
+ }
508
+ },
509
+ "setValidateConfigs((address,uint256,uint256)[])": {
510
+ "custom:access": "Only Governance",
511
+ "custom:error": "Zero length error is thrown if length of the config array is 0",
512
+ "custom:event": "Emits ValidateConfigAdded for each validation config that is successfully set",
513
+ "params": {
514
+ "configs": "Array of validation configs"
515
+ }
516
+ },
517
+ "transferOwnership(address)": {
518
+ "details": "Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. Can only be called by the current owner."
519
+ },
520
+ "validatePriceWithAnchorPrice(address,uint256,uint256)": {
521
+ "custom:error": "Missing error thrown if asset config is not setPrice error thrown if anchor price is not valid",
522
+ "params": {
523
+ "asset": "asset address",
524
+ "reportedPrice": "The price to be tested"
525
+ }
526
+ }
527
+ },
528
+ "title": "BoundValidator",
529
+ "version": 1
530
+ },
531
+ "userdoc": {
532
+ "errors": {
533
+ "Unauthorized(address,address,string)": [
534
+ {
535
+ "notice": "Thrown when the action is prohibited by AccessControlManager"
536
+ }
537
+ ]
538
+ },
539
+ "events": {
540
+ "NewAccessControlManager(address,address)": {
541
+ "notice": "Emitted when access control manager contract address is changed"
542
+ },
543
+ "ValidateConfigAdded(address,uint256,uint256)": {
544
+ "notice": "Emit this event when new validation configs are added"
545
+ }
546
+ },
547
+ "kind": "user",
548
+ "methods": {
549
+ "accessControlManager()": {
550
+ "notice": "Returns the address of the access control manager contract"
551
+ },
552
+ "constructor": {
553
+ "notice": "Constructor for the implementation contract. Sets immutable variables."
554
+ },
555
+ "initialize(address)": {
556
+ "notice": "Initializes the owner of the contract"
557
+ },
558
+ "setAccessControlManager(address)": {
559
+ "notice": "Sets the address of AccessControlManager"
560
+ },
561
+ "setValidateConfig((address,uint256,uint256))": {
562
+ "notice": "Add a single validation config"
563
+ },
564
+ "setValidateConfigs((address,uint256,uint256)[])": {
565
+ "notice": "Add multiple validation configs at the same time"
566
+ },
567
+ "validateConfigs(address)": {
568
+ "notice": "validation configs by asset"
569
+ },
570
+ "validatePriceWithAnchorPrice(address,uint256,uint256)": {
571
+ "notice": "Test reported asset price against anchor price"
572
+ }
573
+ },
574
+ "notice": "The BoundValidator contract is used to validate prices fetched from two different sources. Each asset has an upper and lower bound ratio set in the config. In order for a price to be valid it must fall within this range of the validator price.",
575
+ "version": 1
576
+ },
577
+ "storageLayout": {
578
+ "storage": [
579
+ {
580
+ "astId": 349,
581
+ "contract": "contracts/oracles/BoundValidator.sol:BoundValidator",
582
+ "label": "_initialized",
583
+ "offset": 0,
584
+ "slot": "0",
585
+ "type": "t_uint8"
586
+ },
587
+ {
588
+ "astId": 352,
589
+ "contract": "contracts/oracles/BoundValidator.sol:BoundValidator",
590
+ "label": "_initializing",
591
+ "offset": 1,
592
+ "slot": "0",
593
+ "type": "t_bool"
594
+ },
595
+ {
596
+ "astId": 1019,
597
+ "contract": "contracts/oracles/BoundValidator.sol:BoundValidator",
598
+ "label": "__gap",
599
+ "offset": 0,
600
+ "slot": "1",
601
+ "type": "t_array(t_uint256)50_storage"
602
+ },
603
+ {
604
+ "astId": 221,
605
+ "contract": "contracts/oracles/BoundValidator.sol:BoundValidator",
606
+ "label": "_owner",
607
+ "offset": 0,
608
+ "slot": "51",
609
+ "type": "t_address"
610
+ },
611
+ {
612
+ "astId": 341,
613
+ "contract": "contracts/oracles/BoundValidator.sol:BoundValidator",
614
+ "label": "__gap",
615
+ "offset": 0,
616
+ "slot": "52",
617
+ "type": "t_array(t_uint256)49_storage"
618
+ },
619
+ {
620
+ "astId": 114,
621
+ "contract": "contracts/oracles/BoundValidator.sol:BoundValidator",
622
+ "label": "_pendingOwner",
623
+ "offset": 0,
624
+ "slot": "101",
625
+ "type": "t_address"
626
+ },
627
+ {
628
+ "astId": 208,
629
+ "contract": "contracts/oracles/BoundValidator.sol:BoundValidator",
630
+ "label": "__gap",
631
+ "offset": 0,
632
+ "slot": "102",
633
+ "type": "t_array(t_uint256)49_storage"
634
+ },
635
+ {
636
+ "astId": 6686,
637
+ "contract": "contracts/oracles/BoundValidator.sol:BoundValidator",
638
+ "label": "_accessControlManager",
639
+ "offset": 0,
640
+ "slot": "151",
641
+ "type": "t_contract(IAccessControlManagerV8)6871"
642
+ },
643
+ {
644
+ "astId": 6691,
645
+ "contract": "contracts/oracles/BoundValidator.sol:BoundValidator",
646
+ "label": "__gap",
647
+ "offset": 0,
648
+ "slot": "152",
649
+ "type": "t_array(t_uint256)49_storage"
650
+ },
651
+ {
652
+ "astId": 9075,
653
+ "contract": "contracts/oracles/BoundValidator.sol:BoundValidator",
654
+ "label": "validateConfigs",
655
+ "offset": 0,
656
+ "slot": "201",
657
+ "type": "t_mapping(t_address,t_struct(ValidateConfig)9069_storage)"
658
+ },
659
+ {
660
+ "astId": 9303,
661
+ "contract": "contracts/oracles/BoundValidator.sol:BoundValidator",
662
+ "label": "__gap",
663
+ "offset": 0,
664
+ "slot": "202",
665
+ "type": "t_array(t_uint256)49_storage"
666
+ }
667
+ ],
668
+ "types": {
669
+ "t_address": {
670
+ "encoding": "inplace",
671
+ "label": "address",
672
+ "numberOfBytes": "20"
673
+ },
674
+ "t_array(t_uint256)49_storage": {
675
+ "base": "t_uint256",
676
+ "encoding": "inplace",
677
+ "label": "uint256[49]",
678
+ "numberOfBytes": "1568"
679
+ },
680
+ "t_array(t_uint256)50_storage": {
681
+ "base": "t_uint256",
682
+ "encoding": "inplace",
683
+ "label": "uint256[50]",
684
+ "numberOfBytes": "1600"
685
+ },
686
+ "t_bool": {
687
+ "encoding": "inplace",
688
+ "label": "bool",
689
+ "numberOfBytes": "1"
690
+ },
691
+ "t_contract(IAccessControlManagerV8)6871": {
692
+ "encoding": "inplace",
693
+ "label": "contract IAccessControlManagerV8",
694
+ "numberOfBytes": "20"
695
+ },
696
+ "t_mapping(t_address,t_struct(ValidateConfig)9069_storage)": {
697
+ "encoding": "mapping",
698
+ "key": "t_address",
699
+ "label": "mapping(address => struct BoundValidator.ValidateConfig)",
700
+ "numberOfBytes": "32",
701
+ "value": "t_struct(ValidateConfig)9069_storage"
702
+ },
703
+ "t_struct(ValidateConfig)9069_storage": {
704
+ "encoding": "inplace",
705
+ "label": "struct BoundValidator.ValidateConfig",
706
+ "members": [
707
+ {
708
+ "astId": 9062,
709
+ "contract": "contracts/oracles/BoundValidator.sol:BoundValidator",
710
+ "label": "asset",
711
+ "offset": 0,
712
+ "slot": "0",
713
+ "type": "t_address"
714
+ },
715
+ {
716
+ "astId": 9065,
717
+ "contract": "contracts/oracles/BoundValidator.sol:BoundValidator",
718
+ "label": "upperBoundRatio",
719
+ "offset": 0,
720
+ "slot": "1",
721
+ "type": "t_uint256"
722
+ },
723
+ {
724
+ "astId": 9068,
725
+ "contract": "contracts/oracles/BoundValidator.sol:BoundValidator",
726
+ "label": "lowerBoundRatio",
727
+ "offset": 0,
728
+ "slot": "2",
729
+ "type": "t_uint256"
730
+ }
731
+ ],
732
+ "numberOfBytes": "96"
733
+ },
734
+ "t_uint256": {
735
+ "encoding": "inplace",
736
+ "label": "uint256",
737
+ "numberOfBytes": "32"
738
+ },
739
+ "t_uint8": {
740
+ "encoding": "inplace",
741
+ "label": "uint8",
742
+ "numberOfBytes": "1"
743
+ }
744
+ }
745
+ },
746
+ "factoryDeps": [
747
+ "0x0002000000000002000800000000000200010000000103550000008003000039000000400030043f0000000100200190000000240000c13d000000000201001900000060022002700000014d02200197000000040020008c0000035e0000413d000000000301043b000000e003300270000001550030009c000000410000213d0000015d0030009c0000006e0000213d000001610030009c000000b30000613d000001620030009c000000d00000613d000001630030009c0000035e0000c13d0000000001000416000000000001004b0000035e0000c13d0000006501000039000000000101041a00000164021001970000000001000411000000000012004b000001850000c13d053004e90000040f0000000001000019000005310001042e0000000001000416000000000001004b0000035e0000c13d000000000100041a0000ff0000100190000000620000c13d000000ff0210018f000000ff0020008c0000003c0000613d000000ff011001bf000000000010041b000000ff01000039000000800010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000152011001c70000800d0200003900000001030000390000015304000041053005260000040f00000001002001900000035e0000613d0000002001000039000001000010044300000120000004430000015401000041000005310001042e000001560030009c000000900000213d0000015a0030009c000000e90000613d0000015b0030009c000000ff0000613d0000015c0030009c0000035e0000c13d000000240020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d0000000401100370000000000101043b000001640010009c0000035e0000213d0000000000100435000000c901000039000000200010043f0000000001000019053005150000040f0000000202100039000000000202041a0000000103100039000000000303041a000000000101041a0000016401100197000000800010043f000000a00030043f000000c00020043f0000017701000041000005310001042e0000014e01000041000000800010043f0000002001000039000000840010043f0000002701000039000000a40010043f0000014f01000041000000c40010043f0000015001000041000000e40010043f000001510100004100000532000104300000015e0030009c000001040000613d0000015f0030009c000001090000613d000001600030009c0000035e0000c13d000000240020008c0000035e0000413d0000000003000416000000000003004b0000035e0000c13d0000000403100370000000000303043b000001780030009c0000035e0000213d0000002304300039000000000024004b0000035e0000813d0000000404300039000000000441034f000000000604043b000001790060009c0000008a0000813d00000005046002100000003f044000390000017a044001970000017b0040009c000001c00000a13d0000017e0100004100000000001004350000004101000039000000040010043f0000017f010000410000053200010430000001570030009c0000012f0000613d000001580030009c000001730000613d000001590030009c0000035e0000c13d000000240020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d0000000401100370000000000601043b000001640060009c0000035e0000213d0000003301000039000000000101041a00000164051001970000000001000411000000000015004b0000017c0000c13d0000006501000039000000000201041a0000016502200197000000000262019f000000000021041b00000000010004140000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000003030000390000016704000041000001ea0000013d000000240020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d0000000401100370000000000101043b000001640010009c0000035e0000213d0000003302000039000000000202041a00000164022001970000000003000411000000000032004b0000017c0000c13d000000000001004b000001da0000c13d0000014e01000041000000800010043f0000002001000039000000840010043f0000002501000039000000a40010043f0000017401000041000000c40010043f0000017301000041000000e40010043f000001510100004100000532000104300000000001000416000000000001004b0000035e0000c13d0000003301000039000000000201041a00000164052001970000000003000411000000000035004b0000017c0000c13d0000006503000039000000000403041a0000016504400197000000000043041b0000016502200197000000000021041b00000000010004140000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000003030000390000016f040000410000000006000019000001ea0000013d000000640020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d000000e002000039000000400020043f0000000402100370000000000202043b000001640020009c0000035e0000213d000000800020043f0000002402100370000000000202043b000000a00020043f0000004401100370000000000101043b000000c00010043f0000008001000039053003c80000040f0000000001000019000005310001042e0000000001000416000000000001004b0000035e0000c13d0000009701000039000001770000013d0000000001000416000000000001004b0000035e0000c13d0000003301000039000001770000013d000000640020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d0000000402100370000000000202043b000001640020009c0000035e0000213d0000004401100370000000000101043b000500000001001d0000000000200435000000c901000039000000200010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000170011001c7000600000002001d00008010020000390530052b0000040f000000010020019000000006020000290000035e0000613d000000000101043b0000000101100039000000000101041a000000000001004b000001ef0000c13d000000400100043d00000044021000390000018e03000041000000000032043500000024021000390000001b03000039000001f80000013d000000240020008c0000035e0000413d0000000002000416000000000002004b0000035e0000c13d0000000401100370000000000401043b000001640040009c0000035e0000213d0000000002000415000000080220008a0000000502200210000000000300041a0000ff0001300190000600000004001d000001910000c13d0000000002000415000000070220008a0000000502200210000000ff00300190000001910000c13d0000016e0130019700000101011001bf0000000002000019000000000010041b0000ff0000100190000001b50000613d000500000002001d0000006501000039000000000201041a0000016502200197000000000021041b000000000100041100000164061001970000003301000039000000000201041a0000016503200197000000000363019f000000000031041b000000000100041400000164052001970000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000003030000390000016f04000041053005260000040f000000060500002900000001002001900000035e0000613d000000000100041a0000ff0000100190000001b50000613d000400000001001d000000400100043d000000000005004b000002710000c13d000000640210003900000173030000410000000000320435000000440210003900000174030000410000000000320435000000240210003900000025030000390000020f0000013d0000000001000416000000000001004b0000035e0000c13d0000006501000039000000000101041a0000016401100197000000800010043f0000016801000041000005310001042e0000014e01000041000000800010043f0000002001000039000000840010043f000000a40010043f0000019101000041000000c40010043f000001920100004100000532000104300000014e01000041000000800010043f0000002001000039000000840010043f0000002901000039000000a40010043f0000018f01000041000000c40010043f0000019001000041000000e40010043f00000151010000410000053200010430000500000002001d000300000001001d000400000003001d000001690100004100000000001004390000000001000410000000040010044300000000010004140000014d0010009c0000014d01008041000000c0011002100000016a011001c700008002020000390530052b0000040f0000000100200190000001bf0000613d000000000101043b000000000001004b000002030000c13d0000000403000029000000ff0130018f000000010010008c0000000001000019000000010100603900000005020000290000000502200270000000000201001f000002060000c13d000000030000006b000001440000613d0000019401300197000000010200003900000001011001bf000000000010041b0000ff00001001900000014a0000c13d000000400100043d00000064021000390000017503000041000000000032043500000044021000390000017603000041000000000032043500000024021000390000002b030000390000020f0000013d000000000001042f0000008005400039000000400050043f000000800060043f000000240330003900000060046000c90000000004340019000000000024004b0000035e0000213d000000000006004b000002280000c13d00000044015000390000018a02000041000000000021043500000024015000390000001e0200003900000000002104350000014e0100004100000000001504350000000401500039000000200200003900000000002104350000014d0050009c0000014d05008041000000400150021000000187011001c700000532000104300000009702000039000000000302041a0000016504300197000000000414019f000000000042041b0000016402300197000000800020043f000000a00010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000193011001c70000800d0200003900000001030000390000017104000041053005260000040f00000001002001900000035e0000613d0000000001000019000005310001042e0000000503000029000000000003004b0000021a0000c13d000000400100043d00000044021000390000018d0300004100000000003204350000002402100039000000190300003900000000003204350000014e0200004100000000002104350000000402100039000000200300003900000000003204350000014d0010009c0000014d01008041000000400110021000000187011001c7000005320001043000000005010000290000000501100270000000000100001f000000400100043d00000064021000390000016b03000041000000000032043500000044021000390000016c03000041000000000032043500000024021000390000002e0300003900000000003204350000014e0200004100000000002104350000000402100039000000200300003900000000003204350000014d0010009c0000014d0100804100000040011002100000016d011001c7000005320001043000000024010000390000000101100367000000000401043b000000000004004b00000000010000190000024b0000c13d000000010110018f000000400200043d00000000001204350000014d0020009c0000014d0200804100000040012002100000018c011001c7000005310001042e000000a00500003900000000063200490000017c0060009c0000035e0000213d000000600060008c0000035e0000413d000000400600043d0000017d0060009c0000008a0000213d0000006007600039000000400070043f000000000731034f000000000707043b000001640070009c0000035e0000213d00000000077604360000002008300039000000000881034f000000000808043b00000000008704350000004007300039000000000771034f000000000707043b0000004008600039000000000078043500000000056504360000006003300039000000000043004b000002290000413d000000800100043d000200000001001d000000000001004b0000029d0000c13d000000400500043d000001ca0000013d0000018b053000d100000000013500d90000018b0010009c0000026b0000c13d000400000005001d000500000004001d0000000000200435000000c901000039000000200010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000170011001c700008010020000390530052b0000040f00000001002001900000035e0000613d000000040300002900000005023000fa000000000301043b0000000101300039000000000101041a000000000012004b0000000001000019000002200000213d0000000201300039000000000101041a000000000012004b00000000010000190000000101008039000002200000013d0000017e0100004100000000001004350000001101000039000000040010043f0000017f0100004100000532000104300000009702000039000000000302041a0000016504300197000000000454019f000000000042041b00000020021000390000000000520435000001640230019700000000002104350000014d0010009c0000014d01008041000000400110021000000000020004140000014d0020009c0000014d02008041000000c002200210000000000112019f00000170011001c70000800d0200003900000001030000390000017104000041053005260000040f00000001002001900000035e0000613d000000050000006b000001ed0000c13d0000ff010100008a000000040110017f000000000010041b000000400100043d000000010300003900000000003104350000014d0010009c0000014d01008041000000400110021000000000020004140000014d0020009c0000014d02008041000000c002200210000000000112019f00000172011001c70000800d020000390000015304000041000001ea0000013d000600000000001d000000800100043d000000060010006b000003660000813d000000400900043d0000017d0090009c0000008a0000213d00000006010000290000000501100210000000a00110003900000000080104330000006001900039000000400010043f000000400190003900000180020000410000000000210435000000200190003900000181020000410000000000210435000000210200003900000000002904350000009702000039000000000202041a000000400a00043d0000002403a00039000000400400003900000000004304350000018203000041000000000b3a04360000000403a000390000000004000411000000000043043500000000030904330000004404a0003900000000003404350000006404a00039000000000003004b000002cb0000613d000000000500001900000000064500190000000007150019000000000707043300000000007604350000002005500039000000000035004b000002c40000413d0000016402200197000000000143001900000000000104350000000001000414000000040020008c000500000008001d000002d70000c13d0000000003000031000000200030008c000000200400003900000000040340190000030e0000013d000400000009001d0000001f03300039000001950330019700000064033000390000014d0030009c0000014d0300804100000060033002100000014d00a0009c0000014d0400004100000000040a40190000004004400210000000000343019f0000014d0010009c0000014d01008041000000c001100210000000000131019f00030000000a001d00010000000b001d0530052b0000040f0000000109000029000000030a000029000000000301001900000060033002700000014d03300197000000200030008c000000200400003900000000040340190000000505400272000002fa0000613d000000000601034f00000000070a0019000000006806043c0000000007870436000000000097004b000002f60000c13d0000001f06400190000003090000613d0000000505500210000000000751034f00000000055a00190000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000000003001f00000001002001900000000409000029000003a80000613d00000005080000290000001f01400039000000600110018f0000000004a10019000000000014004b00000000010000190000000101004039000001780040009c0000008a0000213d00000001001001900000008a0000c13d000000400040043f000000200030008c0000035e0000413d00000000010a0433000000000001004b0000000002000019000000010200c039000000000021004b0000035e0000c13d000000000001004b0000036c0000613d00000000510804340000016401100198000003850000613d0000000002050433000000000002004b000003600000613d00000040068000390000000003060433000000000003004b000003600000613d000300000006001d000400000005001d000000000032004b000003950000a13d0000000000100435000000c901000039000000200010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000170011001c700008010020000390530052b0000040f000000010020019000000005020000290000035e0000613d00000000020204330000016405200197000000000101043b000000000201041a0000016502200197000000000252019f000000000021041b000000040200002900000000060204330000000102100039000000000062041b000000020110003900000003020000290000000007020433000000000071041b00000000010004140000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000004030000390000018504000041053005260000040f00000001002001900000035e0000613d00000006020000290000000102200039000600000002001d000000020020006c0000029e0000413d000001ed0000013d00000000010000190000053200010430000000440140003900000186020000410000000000210435000000240140003900000016020000390000038a0000013d0000017e0100004100000000001004350000003201000039000000040010043f0000017f0100004100000532000104300000004401400039000000600200003900000000002104350000002401400039000000000200041000000000002104350000018901000041000000000014043500000004014000390000000002000411000000000021043500000064024000390000000001090019000600000004001d053005020000040f000000060200002900000000012100490000014d0010009c0000014d010080410000014d0020009c0000014d0200804100000060011002100000004002200210000000000121019f000005320001043000000044014000390000018802000041000000000021043500000024014000390000001b0200003900000000002104350000014e0100004100000000001404350000000401400039000000200200003900000000002104350000014d0040009c0000014d04008041000000400140021000000187011001c7000005320001043000000064014000390000018302000041000000000021043500000044014000390000018402000041000000000021043500000024014000390000002c0200003900000000002104350000014e0100004100000000001404350000000401400039000000200200003900000000002104350000014d0040009c0000014d0400804100000040014002100000016d011001c70000053200010430000000400200043d0000001f0430018f00000005053002720000000505500210000003b40000613d0000000006520019000000000701034f0000000008020019000000007907043c0000000008980436000000000068004b000003b00000c13d000000000004004b000003c20000613d000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f000000000015043500000060013002100000014d0020009c0000014d020080410000004002200210000000000112019f000005320001043000040000000000020000000008010019000000400900043d000001960090009c000004820000813d0000006001900039000000400010043f000000400190003900000180020000410000000000210435000000200190003900000181020000410000000000210435000000210200003900000000002904350000009702000039000000000202041a000000400b00043d0000002403b00039000000400400003900000000004304350000018203000041000000000c3b04360000000403b00039000000000a0004110000000000a3043500000000030904330000004404b0003900000000003404350000006404b000390000016402200197000000000003004b000003f10000613d000000000500001900000000064500190000000007150019000000000707043300000000007604350000002005500039000000000035004b000003ea0000413d000000000134001900000000000104350000000001000414000000040020008c000400000008001d000003fc0000c13d0000000003000031000000200030008c00000020040000390000000004034019000004350000013d000300000009001d0000001f03300039000001950330019700000064033000390000014d0030009c0000014d0300804100000060033002100000014d00b0009c0000014d0400004100000000040b40190000004004400210000000000343019f0000014d0010009c0000014d01008041000000c001100210000000000113019f00020000000b001d00010000000c001d0530052b0000040f000000010a000029000000020b000029000000000301001900000060033002700000014d03300197000000200030008c000000200400003900000000040340190000001f0540018f0000000506400272000004200000613d000000000701034f00000000080b0019000000007907043c00000000089804360000000000a8004b0000041c0000c13d000000000005004b0000042f0000613d0000000506600210000000000761034f00000000066b00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000003001f00000001002001900000000309000029000000000a000411000004c90000613d00000004080000290000001f01400039000000600110018f0000000004b10019000000000014004b00000000010000190000000101004039000001780040009c000004820000213d0000000100100190000004820000c13d000000400040043f0000001f0030008c000004800000a13d00000000010b0433000000000001004b0000000002000019000000010200c039000000000021004b000004800000c13d000000000001004b0000048e0000613d00000000510804340000016401100198000004a60000613d0000000002050433000000000002004b000004880000613d00000040068000390000000003060433000000000003004b000004880000613d000200000006001d000300000005001d000000000032004b000004b60000a13d0000000000100435000000c901000039000000200010043f00000000010004140000014d0010009c0000014d01008041000000c00110021000000170011001c700008010020000390530052b0000040f00000001002001900000000402000029000004800000613d00000000020204330000016405200197000000000101043b000000000201041a0000016502200197000000000252019f000000000021041b000000030200002900000000060204330000000102100039000000000062041b000000020110003900000002020000290000000007020433000000000071041b00000000010004140000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000004030000390000018504000041053005260000040f0000000100200190000004800000613d000000000001042d000000000100001900000532000104300000017e0100004100000000001004350000004101000039000000040010043f0000017f01000041000005320001043000000044014000390000018602000041000000000021043500000024014000390000001602000039000004ab0000013d0000004401400039000000600200003900000000002104350000002401400039000000000200041000000000002104350000018901000041000000000014043500000004014000390000000000a1043500000064024000390000000001090019000400000004001d053005020000040f000000040200002900000000012100490000014d0010009c0000014d010080410000014d0020009c0000014d0200804100000060011002100000004002200210000000000121019f000005320001043000000044014000390000018802000041000000000021043500000024014000390000001b0200003900000000002104350000014e0100004100000000001404350000000401400039000000200200003900000000002104350000014d0040009c0000014d04008041000000400140021000000187011001c7000005320001043000000064014000390000018302000041000000000021043500000044014000390000018402000041000000000021043500000024014000390000002c0200003900000000002104350000014e0100004100000000001404350000000401400039000000200200003900000000002104350000014d0040009c0000014d0400804100000040014002100000016d011001c70000053200010430000000400200043d0000001f0430018f00000005053002720000000505500210000004d50000613d0000000006520019000000000701034f0000000008020019000000007907043c0000000008980436000000000068004b000004d10000c13d000000000004004b000004e30000613d000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f000000000015043500000060013002100000014d0020009c0000014d020080410000004002200210000000000112019f00000532000104300000006502000039000000000302041a0000016503300197000000000032041b00000164061001970000003301000039000000000201041a0000016503200197000000000363019f000000000031041b000000000100041400000164052001970000014d0010009c0000014d01008041000000c00110021000000166011001c70000800d0200003900000003030000390000016f04000041053005260000040f0000000100200190000005000000613d000000000001042d0000000001000019000005320001043000000000430104340000000001320436000000000003004b0000050e0000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b000005070000413d000000000231001900000000000204350000001f0230003900000195022001970000000001210019000000000001042d000000000001042f00000000020004140000014d0020009c0000014d02008041000000c0022002100000014d0010009c0000014d010080410000004001100210000000000121019f00000170011001c700008010020000390530052b0000040f0000000100200190000005240000613d000000000101043b000000000001042d0000000001000019000005320001043000000529002104210000000102000039000000000001042d0000000002000019000000000001042d0000052e002104230000000102000039000000000001042d0000000002000019000000000001042d0000053000000432000005310001042e0000053200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff08c379a000000000000000000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320696e697469616c697a696e6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000002000000000000000000000000000000000000200000008000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000af9e6c5a00000000000000000000000000000000000000000000000000000000c4d66de700000000000000000000000000000000000000000000000000000000c4d66de800000000000000000000000000000000000000000000000000000000e30c397800000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000af9e6c5b00000000000000000000000000000000000000000000000000000000b4a0bdf300000000000000000000000000000000000000000000000000000000bca9e116000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000097c7033e000000000000000000000000000000000000000000000000000000009c357615000000000000000000000000000000000000000000000000000000000e32cb8600000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000079ba5097000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000038d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270000000000000000000000000000000000000000200000008000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000647920696e697469616c697a6564000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c7265610000000000000000000000000000000000000084000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0020000000000000000000000000000000000004000000000000000000000000066fd58e82f7b31a2a5c30e0888f3093efe4e111b00cd2b0c31fe014601293aa002000000000000000000000000000000000000200000000000000000000000006472657373000000000000000000000000000000000000000000000000000000696e76616c696420616365737320636f6e74726f6c206d616e616765722061646e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420690000000000000000000000000000000000000060000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000000000000000000000000000000000000100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff9f4e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000290000000000000000000000000000000000000000000000000000000000000073657456616c6964617465436f6e6669672856616c6964617465436f6e66696718c5e8ab000000000000000000000000000000000000000000000000000000006c6f776e657220626f756e640000000000000000000000000000000000000000757070657220626f756e64206d75737420626520686967686572207468616e2028e2d96bdcf74fe6203e40d159d27ec2e15230239c0aee4a0a914196c550e6d1626f756e64206d75737420626520706f73697469766500000000000000000000000000000000000000000000000000000000006400000000000000000000000061737365742063616e2774206265207a65726f206164647265737300000000004a3fa29300000000000000000000000000000000000000000000000000000000696e76616c69642076616c696461746520636f6e666967206c656e67746800000000000000000000000000000000000000000000000000000de0b6b3a76400000000000000000000000000000000000000000020000000000000000000000000616e63686f72207072696365206973206e6f742076616c69640000000000000076616c69646174696f6e20636f6e666967206e6f7420657869737400000000004f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206e6577206f776e657200000000000000000000000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000008000000000000000000200000000000000000000000000000000000040000000800000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffffa0"
748
+ ]
749
+ }