@venusprotocol/isolated-pools 3.6.0 → 3.7.0-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,557 @@
1
+ {
2
+ "address": "0x512F8b4a3c466a30e8c9BAC9c64638dd710968c2",
3
+ "abi": [
4
+ {
5
+ "inputs": [
6
+ {
7
+ "internalType": "string",
8
+ "name": "name_",
9
+ "type": "string"
10
+ },
11
+ {
12
+ "internalType": "string",
13
+ "name": "symbol_",
14
+ "type": "string"
15
+ },
16
+ {
17
+ "internalType": "uint8",
18
+ "name": "decimals_",
19
+ "type": "uint8"
20
+ }
21
+ ],
22
+ "stateMutability": "nonpayable",
23
+ "type": "constructor"
24
+ },
25
+ {
26
+ "anonymous": false,
27
+ "inputs": [
28
+ {
29
+ "indexed": true,
30
+ "internalType": "address",
31
+ "name": "owner",
32
+ "type": "address"
33
+ },
34
+ {
35
+ "indexed": true,
36
+ "internalType": "address",
37
+ "name": "spender",
38
+ "type": "address"
39
+ },
40
+ {
41
+ "indexed": false,
42
+ "internalType": "uint256",
43
+ "name": "value",
44
+ "type": "uint256"
45
+ }
46
+ ],
47
+ "name": "Approval",
48
+ "type": "event"
49
+ },
50
+ {
51
+ "anonymous": false,
52
+ "inputs": [
53
+ {
54
+ "indexed": true,
55
+ "internalType": "address",
56
+ "name": "from",
57
+ "type": "address"
58
+ },
59
+ {
60
+ "indexed": true,
61
+ "internalType": "address",
62
+ "name": "to",
63
+ "type": "address"
64
+ },
65
+ {
66
+ "indexed": false,
67
+ "internalType": "uint256",
68
+ "name": "value",
69
+ "type": "uint256"
70
+ }
71
+ ],
72
+ "name": "Transfer",
73
+ "type": "event"
74
+ },
75
+ {
76
+ "inputs": [
77
+ {
78
+ "internalType": "address",
79
+ "name": "owner",
80
+ "type": "address"
81
+ },
82
+ {
83
+ "internalType": "address",
84
+ "name": "spender",
85
+ "type": "address"
86
+ }
87
+ ],
88
+ "name": "allowance",
89
+ "outputs": [
90
+ {
91
+ "internalType": "uint256",
92
+ "name": "",
93
+ "type": "uint256"
94
+ }
95
+ ],
96
+ "stateMutability": "view",
97
+ "type": "function"
98
+ },
99
+ {
100
+ "inputs": [
101
+ {
102
+ "internalType": "address",
103
+ "name": "spender",
104
+ "type": "address"
105
+ },
106
+ {
107
+ "internalType": "uint256",
108
+ "name": "amount",
109
+ "type": "uint256"
110
+ }
111
+ ],
112
+ "name": "approve",
113
+ "outputs": [
114
+ {
115
+ "internalType": "bool",
116
+ "name": "",
117
+ "type": "bool"
118
+ }
119
+ ],
120
+ "stateMutability": "nonpayable",
121
+ "type": "function"
122
+ },
123
+ {
124
+ "inputs": [
125
+ {
126
+ "internalType": "address",
127
+ "name": "account",
128
+ "type": "address"
129
+ }
130
+ ],
131
+ "name": "balanceOf",
132
+ "outputs": [
133
+ {
134
+ "internalType": "uint256",
135
+ "name": "",
136
+ "type": "uint256"
137
+ }
138
+ ],
139
+ "stateMutability": "view",
140
+ "type": "function"
141
+ },
142
+ {
143
+ "inputs": [],
144
+ "name": "decimals",
145
+ "outputs": [
146
+ {
147
+ "internalType": "uint8",
148
+ "name": "",
149
+ "type": "uint8"
150
+ }
151
+ ],
152
+ "stateMutability": "view",
153
+ "type": "function"
154
+ },
155
+ {
156
+ "inputs": [
157
+ {
158
+ "internalType": "address",
159
+ "name": "spender",
160
+ "type": "address"
161
+ },
162
+ {
163
+ "internalType": "uint256",
164
+ "name": "subtractedValue",
165
+ "type": "uint256"
166
+ }
167
+ ],
168
+ "name": "decreaseAllowance",
169
+ "outputs": [
170
+ {
171
+ "internalType": "bool",
172
+ "name": "",
173
+ "type": "bool"
174
+ }
175
+ ],
176
+ "stateMutability": "nonpayable",
177
+ "type": "function"
178
+ },
179
+ {
180
+ "inputs": [
181
+ {
182
+ "internalType": "uint256",
183
+ "name": "amount",
184
+ "type": "uint256"
185
+ }
186
+ ],
187
+ "name": "faucet",
188
+ "outputs": [],
189
+ "stateMutability": "nonpayable",
190
+ "type": "function"
191
+ },
192
+ {
193
+ "inputs": [
194
+ {
195
+ "internalType": "address",
196
+ "name": "spender",
197
+ "type": "address"
198
+ },
199
+ {
200
+ "internalType": "uint256",
201
+ "name": "addedValue",
202
+ "type": "uint256"
203
+ }
204
+ ],
205
+ "name": "increaseAllowance",
206
+ "outputs": [
207
+ {
208
+ "internalType": "bool",
209
+ "name": "",
210
+ "type": "bool"
211
+ }
212
+ ],
213
+ "stateMutability": "nonpayable",
214
+ "type": "function"
215
+ },
216
+ {
217
+ "inputs": [],
218
+ "name": "name",
219
+ "outputs": [
220
+ {
221
+ "internalType": "string",
222
+ "name": "",
223
+ "type": "string"
224
+ }
225
+ ],
226
+ "stateMutability": "view",
227
+ "type": "function"
228
+ },
229
+ {
230
+ "inputs": [],
231
+ "name": "symbol",
232
+ "outputs": [
233
+ {
234
+ "internalType": "string",
235
+ "name": "",
236
+ "type": "string"
237
+ }
238
+ ],
239
+ "stateMutability": "view",
240
+ "type": "function"
241
+ },
242
+ {
243
+ "inputs": [],
244
+ "name": "totalSupply",
245
+ "outputs": [
246
+ {
247
+ "internalType": "uint256",
248
+ "name": "",
249
+ "type": "uint256"
250
+ }
251
+ ],
252
+ "stateMutability": "view",
253
+ "type": "function"
254
+ },
255
+ {
256
+ "inputs": [
257
+ {
258
+ "internalType": "address",
259
+ "name": "to",
260
+ "type": "address"
261
+ },
262
+ {
263
+ "internalType": "uint256",
264
+ "name": "amount",
265
+ "type": "uint256"
266
+ }
267
+ ],
268
+ "name": "transfer",
269
+ "outputs": [
270
+ {
271
+ "internalType": "bool",
272
+ "name": "",
273
+ "type": "bool"
274
+ }
275
+ ],
276
+ "stateMutability": "nonpayable",
277
+ "type": "function"
278
+ },
279
+ {
280
+ "inputs": [
281
+ {
282
+ "internalType": "address",
283
+ "name": "from",
284
+ "type": "address"
285
+ },
286
+ {
287
+ "internalType": "address",
288
+ "name": "to",
289
+ "type": "address"
290
+ },
291
+ {
292
+ "internalType": "uint256",
293
+ "name": "amount",
294
+ "type": "uint256"
295
+ }
296
+ ],
297
+ "name": "transferFrom",
298
+ "outputs": [
299
+ {
300
+ "internalType": "bool",
301
+ "name": "",
302
+ "type": "bool"
303
+ }
304
+ ],
305
+ "stateMutability": "nonpayable",
306
+ "type": "function"
307
+ }
308
+ ],
309
+ "transactionHash": "0x45c478f9fb6ae89a3c96d0226175098fa8d10a9d557be5d870849db243e28fa5",
310
+ "receipt": {
311
+ "to": "0x0000000000000000000000000000000000008006",
312
+ "from": "0xE8C6Cf867CF962d289305ECE9b139a4116674541",
313
+ "contractAddress": "0x512F8b4a3c466a30e8c9BAC9c64638dd710968c2",
314
+ "transactionIndex": 0,
315
+ "gasUsed": "5819663",
316
+ "logsBloom": "0x00000000000400080000010000000000000000000000400000000000000000000000000000000000000000000001000000000000000000000000000000000000100100000020040000000228000040000400000000040000000000000000180000000000020100000000000000000800000000000000400000000018000000000000001000000000002004000100000000000100000000000000002000000080800000000000900000000000804100000000000000000000002000010000000000000002008000000000000000000000000410000100000000000000000120000000000000000000000000000000000000000040000000000000000080000000",
317
+ "blockHash": "0x9182186d461782c3998ea13d391e443a8592c7ceda458285670101252fabbcf0",
318
+ "transactionHash": "0x45c478f9fb6ae89a3c96d0226175098fa8d10a9d557be5d870849db243e28fa5",
319
+ "logs": [
320
+ {
321
+ "transactionIndex": 0,
322
+ "blockNumber": 4119832,
323
+ "transactionHash": "0x45c478f9fb6ae89a3c96d0226175098fa8d10a9d557be5d870849db243e28fa5",
324
+ "address": "0x000000000000000000000000000000000000800A",
325
+ "topics": [
326
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
327
+ "0x000000000000000000000000e8c6cf867cf962d289305ece9b139a4116674541",
328
+ "0x0000000000000000000000000000000000000000000000000000000000008001"
329
+ ],
330
+ "data": "0x00000000000000000000000000000000000000000000000000017fd87936ab00",
331
+ "logIndex": 0,
332
+ "blockHash": "0x9182186d461782c3998ea13d391e443a8592c7ceda458285670101252fabbcf0"
333
+ },
334
+ {
335
+ "transactionIndex": 0,
336
+ "blockNumber": 4119832,
337
+ "transactionHash": "0x45c478f9fb6ae89a3c96d0226175098fa8d10a9d557be5d870849db243e28fa5",
338
+ "address": "0x0000000000000000000000000000000000008008",
339
+ "topics": ["0x27fe8c0b49f49507b9d4fe5968c9f49edfe5c9df277d433a07a0717ede97638d"],
340
+ "data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001f90000000000000000000000000000000000000000000000000000000000008008000000000000000000000000000000000000000000000000000000000000800eab86d3d326da49b7aea2b26122f0884d4282846e0b9c69c38d6e8f96ba2694ad",
341
+ "logIndex": 1,
342
+ "blockHash": "0x9182186d461782c3998ea13d391e443a8592c7ceda458285670101252fabbcf0"
343
+ },
344
+ {
345
+ "transactionIndex": 0,
346
+ "blockNumber": 4119832,
347
+ "transactionHash": "0x45c478f9fb6ae89a3c96d0226175098fa8d10a9d557be5d870849db243e28fa5",
348
+ "address": "0x0000000000000000000000000000000000008008",
349
+ "topics": [
350
+ "0x3a36e47291f4201faf137fab081d92295bce2d53be2c6ca68ba82c7faa9ce241",
351
+ "0x000000000000000000000000000000000000000000000000000000000000800e",
352
+ "0xab86d3d326da49b7aea2b26122f0884d4282846e0b9c69c38d6e8f96ba2694ad"
353
+ ],
354
+ "data": "0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000001d8a025400000000000000000000012301008041000001230010009c000000000101043b000000010020019000000000003204350000003d0000c13d048704820000040f0000801002000039000000c0011002100000000001000414000000000010043f0000003d0000213dffffffffffffffff0000048900010430000000000001004b0000003d0000613d0000013c011001c70000000001000416000000400100043d0000000001000019000000200010043f000000000001042d000000400110021000000020030000390000003d0000413d000004880001042e00000007020000290000000401800370000000000021041b0000012302008041000001230020009c0000002402100039000000440210003900000128011001c7000000000101041a0000000101000039000000000012004b000000640210003900000000002104350000007a0000213d000700000001001d000000800010043f000000000112019f000000000301043b0000000001000411000001390010009c000000440010008c000000000030043f0000042a0000613d0000014c022001670000014c0220027f0000000102000039000000c0022002100000000002000414000000200000043f00000004021000390000013f020000410000002401800370000000030300003900000007010000290000000001010433000000000020043f00000000050000190000000102200039000000000005004b0000001f0010008c72616e736665722045524332303a20740200000000000000000003c10000613d0000000401000039000000000121019f0487047d0000040f0000800d02000039000000000201041a0487038a0000040f00000140011001c70000002001000039000000050110027000000007030000290000000301000039000000000505043300000000020000190000000004310019000001260010009c00000020033000390000014b022001970000001f0230003900000040020000390000014701000041000000040010043f0000014601000041000000000014004b0000000004000019000001820000c13d000000000004004b000000000002004b45524332303a2061000000200000000000000000ffffffff000000000001042f000004490000013d0000013901100198000000020100002900000006010000290000000100100190000000000012041b0000000101100210000000000223016f0000000003030433000000f80220018f0000000302200210000000070020006c000000000041004b0000000101100039000000000051041b000000000563001900000001044000390000000503300270000000010320008a0000000102400210000000000121016f00000003024002100000000704000029000000070000006b00000000010400190000014304000041000000000031043500000000023200190000013b011001c7048703e10000040f0000013a01000041000001390020009c000000000201043b000000250300003900000006040000290000000002000411000000240010008c0000000702200180000000200200008a000000000002041b000000000223001900000000011300190000001f0110003900000003010000290000000002004019000000200030008c0000000502200270000200000003001d000000000024004b0000014b044001970000000000030435000000000003004b0000007a0000c13d0000000002000039048704550000040f000001390030009c00000000032100190000036f0000413d000600000001001d000001260030009c0000012705004041000001260040009c00000020043000390000000000450435000000a005300039000000000402041a0000000003040019000000020020008c0000000100600190000000000662013f0000000106002039000000000600003900000000010460190000007f0410018f00000001012002700000000105200190000000000203041a0000000201000039000000400020043f00000080020000391dfca2f62f59688bb51809b984aa619496765d9821a4921a6c6ab6f0804a9f9f00000044000000000200000200000000ab882de59d99a32eff553aecb10793d015d089f94afb7896310ab089e4439a4c207a65726f20616466726f6d20746865647265737300000065726f2061646472746f20746865207a65737300000000007863656564732062616d6f756e742065616c616e636500007a65726f20616464726f6d20746865207070726f766520667265737300000000726f2061646472656f20746865207a657070726f7665207473730000000000005b200ac8c7c3b925dd0314c0f7b2291ed14f71427d1e84f38c5be1e5ebec7d5bffffffffffffff00ffffffffffffffe05e2516446f71f85b69c3395a3b0502d0f959f8c92f12db28c2575a0e9e593c00000000640000000077616e6365000000656e7420616c6c6f6e7375666669636945524332303a206900000024000000004e487b7100000000000000640000008061646472657373006865207a65726f20696e7420746f207445524332303a206d28f55a4df523b3ef952ba7f163c4a11669c2b068fc378daaddf252ad1be2c89bffffffffffffff7fb64bfe7fe36bd19b8e8600b4aa8c65c639ae7d344fd709f28a35acfbc15ff81a000000840000000008c379a00000000063652062656c6f7720616c6c6f77616e656372656173656445524332303a2064207a65726f000000000000400000000000000020000000800000000018160ddd00000000095ea7b30000000006fdde03000000003950935100000000313ce5670000000023b872dd0000000023b872dc0000000095d89b410000000070a08231000000005791589700000000dd62ed3e00000000a9059cbb00000000a457c2d700000000a457c2d6000000005791589600000080000001000000000200000000800000000000000000000000ffffffe000000001ffffffe00000048700000432000004850021042300000480002104210000047c0000613d00008005020000390000015b011001c7000000240010044300000001010100310000000400200443000000000201003100000000002004430000015a02000041000004680000613d00000159011001c70000006002200210000000260300003900000154030000410000015303000041000000230300003900000156030000410000015503000041000001580300004100000157030000410000000206000029000000030500002900000004030000290000000102000029000004400000413d0001000400100074000300000001001d000004360000613d000201390020019c0000042c0000613d000400000003001d0004000000000002000000220300003900000150030000410000014f03000041000003d60000013d00000024030000390000015203000041000001510300004100000001050000290000014e04000041000000020200002900000003060000290000000303000029000100000001001d000003cd0000613d000301390020019c000003c30000613d000300000000000200000000012100190000001f022000390000037d0000413d00000020044000390000000000650435000000000606043300000000064300190000000005410019000003840000613d0000004001100039000000000024043500000000320204340000000004310436000000110100003900000129010000410000012000100443000001000010044300000160001004430000014000000443000000040200003900000004033000290000035f0000813d0000034d0000c13d0000000406000029000003620000013d0000000101000029000003400000613d000003540000013d000003470000c13d0000033b0000a13d000003230000413d000003270000813d000003270000413d000000200010008c000000000121013f00000001020020390000001f0020008c000600000002001d0000007f0220618f00000001021002700000000401000029000000030200003900000001011001bf0000000603300029000002f20000813d000002e00000c13d0000000606000029000002f50000013d0000000501000029000002d20000613d0000029e0000013d0000000503000029000000400220021000000060011002100000000001210049048703750000040f000000400010043f0000008001100039000001420010009c0000014b01100197000000610110008a000000c001300039000002a80000413d0000014a02000041000002b50000013d000002a60000813d00000000060004110000000002420019000700000004001d000000000042001a000002b10000013d000000a001006039000000c001000039000000a00010043f0000014d01200197000002960000c13d00000040012002100000000000120435000000400200043d000000ff0110018f0487046a0000040f0000000501100210000000090110008a0000000001000415000800000000003d000900000001001d0000000001000412000002590000013d0000013e030000410000013d030000410000029b0000813d000000060310006c00000149011001c70000001d030000390000014803000041000002c40000813d000000050310006c000002c80000613d0000014c0010009c000600000003001d000500000001001d0000004401800370000000640010008c0000014501000041000000c40010043f0000014401000041000000a40010043f0000001f01000039000000840010043f0000013f010000410000026a0000c13d0000000003000411000000000401043b0000002201000039000002610000613d000002e70000013d000002da0000c13d000002cd0000a13d0000015b0000413d0000015f0000813d0000015f0000413d000000200040008c000300000004001d000400000006001d000100000007001d000000010100203900000000010000390000001f0040008c0000007f0440618f00000001041002700000000102100190000600000009001d00050000000a001d0000000001090433000000ff0030008c000000e00300043d000000000001043500000020011000390000000001610019000001200000413d0000002002200039000000000054043500000000053200190000000004270019000001270000613d000000c0033000390000000007160436000000400040043f000000010050019000000001050040390000000005000039000000000064004b0000000004460019000000400600043d0000003f044000390000001f04100039000000a001300039000000000501c019000001270040009c000001270440019700000127010080410000001f04300039000000c00300043d0000000003930019000000ed0000413d000000000035004b000000200550003900000000007604350000000007070433000000000745001900000000065a0019000000f40000613d000000000025004b0000000005430019000000c004400039000000000a390436000000400050043f000000a002100039000001260050009c0000000102004039000000000095004b0000000005290019000000400900043d0000003f02200039000002390000013d000700000003001d000000000302043b00000024028003700000012e0020009c0000024c0000613d0000012d0020009c000001df0000613d0000012c0020009c0000029b0000013d000000000021001a00000006020000290000002401300370000000060300035f0006000000080353000001350020009c0000023e0000613d000001340020009c0000019c0000613d000001330020009c0000004101000039000000d60000a13d0000000003020433000000a002400039000000000503c019000001270020009c0000012702200197000001270300804100000000030000190000001f02400039000000a00400043d000002b00000013d0000005e0000413d0000014102000041000002990000413d000002640000613d0000000403000039000001310020009c0000022c0000613d000001300020009c000001880000613d0000012f0020009c000000b60000213d0000012b0020009c000000670000813d000000600010008c000000000353019f00000000034301cf000000000343022f0000010004400089000000000303043b000000000545022f00000000054501cf00000000050204330000000304400210000000000358034f0000003b0000613d0000002a0000c13d000000000023004b0000000003730436000000006706043c000000000608034f0000002e0000613d000000a00250003900000125051001980000001f0410018f000000a00220003900000124022001970000001f021000390000000002000416000000400030043f000000a0030000390000023a0000013d000001380020009c0000021e0000613d000001370020009c000001730000613d000001360020009c000000800000213d000001320020009c0000003f0000213d0000012a0020009c000000e002200270000000000208043b000000040010008c0000001c0000c13d000001230110019700000060011002700000000001080019000000000801034f00090000000000020253025202510250024f0004024e00b500b4024d0019024c024b024a0249024802470246024502440243024200060012000f000600b302410240023f023e00610006023d023c023b00b4023a02390238023702360235023402330232006002310230022f022e022d022c022b022a0229022802270005022602250014000e02240223022202210220021f021e00060012000f0006021d00b200b100b000af00ae004200ad00ac00ab00aa005f002a0041021c003000a9021b021a005e00a800a700a600a5004000a4005d02190218021700a3000c021600250215021402130061003f00a202120211004100060210020f00a1020e005c000b020d005b005a000e020c020b020a020902080006002f00190012000f0006001c00030029002e000c002d000b00240015000a00020001000900110008020700070206000400100003001b003e00150205000300a0000a000200010009001100080007000400100003002302040203009f009e02020201020001ff01fe01fd0006002f00190012000f0006001c0003002e000c01fc01fb009d000c000b002400150059001401fa009c001b003e00150014005901f90058005701f8005701f701f601f5009b01f401f300280004009a01f201f101f001ef01ee01ed000c009901ec003f01eb01ea01e901e801e701e601e501e40056009801e300a1000c01e2005d001401e101e00060003f00a201df01de0041000601dd003d0055002801dc009701db009701da01d901d801d701d600a3002801d5009a01d401d301d200540096000c000f01d1005301d001cf005201ce01cd002501cc01cb01ca01c901c801c7000c01c600550028002901c501c40051002301c301c201c101c001bf01be0025005f01bd009501bc01bb01ba01b90051000b000a0002000100090022000800070004001000500058009400930092002c00910090004f008f008e002501b8008d0040002501b7003c004201b60051000b000a0002000100090022000800070004008c0010008b000301b5001801b40012000f0006003b00b200b100b000af00ae004200ad00ac00ab00aa01b3005c000b01b2005b005a000e008a00190012000f0006001c01b101b0009901af01ae002a004e01ad01ac01ab01aa01a901a8000e01a700190012000f0006001c002c009d000c003a00030029002e000c01a6000301a5003000240015000a0002000100090011000801a400070004001000030089003e0015000a0002000100090011000800070088000400100003002301a301a201a101a000130021019f00050020019e000500390027003800180005000200010017019d000e002f00190012000f0006001c00030029002e000c003a000300a0002d000b00240015000a000200010009001100080007000400100003001b003e0015000a0002000100090011000800070004001000030023019c019b00130026019a000500210199000500200087000500390027003800180005000200010017004d000e002f00190012000f0006001c00860085000c003a002c002d004c0198008a00190012000f0006001c0003002e000c000b003700590014009c0023002a0084001a0012000f000601970196019501940193019201910190002a0084001a002f00190012000f0006001c00860085000c003a002c002d00830024018f018e001f001e018d0082001a002a0041018c018b018a006001890188018700b3004b0186009f01850184001d00300037000a000200010009001100080007000400100003004b00500081001d001300800002000100170036001f001e0035002b0022004a003b007f003f01830049000400100014001a003000a90182004e0181002d001b004c0013003400270002000100170082001a0180005e00a800a700a600a5004000a4005d017f017e017d017c017b0028017a0029017900b50178001b0177000200010176001f001e01750048001a007e0089004c0088007e001b017400830173007d001401720171003d007c007b00330032007a00790048017000780077005400180076016f007500520074005600730072016e0071016d001b0070006f00330032016c006e006d001d003c006c016b016a006b0169003d00290055002800470023006a0168016701660165009b01640163006a005f0069016201610047000b000a0002000100090022000800070004001000500058009400930092002c00690090004f008f008e00250160008d00400025015f003c0042015e0047000b000a0002000100090022000800070004008c0010008b0003015d0018015c007d0014015b015a003d007c007b00330032007a00790159007800770054001800760158007500520074005600730072015700710156001b0070006f003300320155006e006d001d003c006c003400480154006b0068002a01530152004e015100240150014f001a005c000b014e005b005a000e0018014d014c014b014a00610149005e0148014701460145014400960143009e0098014200570141001601400067013f0095013e013d013c000b00240015000a0002000100090011000800070004013b0046000300300015000a000200010009001100080007013a0004004600030139001d001300270002000100170036001f001e0035002b0022004a003b0138013700490004004600160014000e0013002601360005002101350005002001340133001300260132000500210131000500200130000500390027003800180005000200010017004d000e012f012e0067012d012c012b012a000b0037000a0002000100090011000800070004003100030023012901280091000b0037000a0002000100090011000800070004003100030127001d0068000b000a000200010009001100080007000400310003004b01260081001d001300800002000100170036001f001e0035002b0022004a003b007f0125012400490004003100160014000e001300260123000500210122000500200087006600130026012100050021012000050020011f006600130026011e00050021011d00050020011c000500390027003800180005000200010017004d000e0065000200010017001f001e011b002b0036001f001e0035002b011a0008000700040119000300160014000e01180117004f0116011501140113000a00020001000901120111000700040110000300160065010f0034001600530016010e0034001600530016010d001a000e000000000000000000000064000000000000010c000000000000010b000000000000000d010a000000000000004500000063000001090000010800000000000000000107000000000000010600000000000001050000000000000104000000000000010300000000000001020000000000000101000000000000010000000000000000ff00000000000000fe00000000000000fd00000000000000fc00000000000000fb00000000000000fa00000000000000f900000064000d000d0000000000f8000000000000006300000045000000f7000000f600000000000000f500f400f300f200f10000000000000000000000f0000000ef00ee00ed00ec00000000000000eb00ea00e900e800e700e600e500e400e30000000000e2000000e10000000000000000000000e0000000df00de00dd00dc0000000000db000000da00d900d800d7000d000d000d00d6000d000d000d000d000d000d000d00d500d400d300d200d100d0000000000000006200cf00ce00cd00cc000000000000006200cb00ca00c900c80000000000000044004300c700c600c50000000000000044004300c400c300c20000000000000044004300c100c0004500000000000000bf00be00bd00bc00bb000000ba000000b900b800b700b600000000000000000000000000000000000000000000",
355
+ "logIndex": 2,
356
+ "blockHash": "0x9182186d461782c3998ea13d391e443a8592c7ceda458285670101252fabbcf0"
357
+ },
358
+ {
359
+ "transactionIndex": 0,
360
+ "blockNumber": 4119832,
361
+ "transactionHash": "0x45c478f9fb6ae89a3c96d0226175098fa8d10a9d557be5d870849db243e28fa5",
362
+ "address": "0x0000000000000000000000000000000000008004",
363
+ "topics": [
364
+ "0xc94722ff13eacf53547c4741dab5228353a05938ffcdd5d4a2d533ae0e618287",
365
+ "0x0100015d8d86d1186371d7c8640f30b64d416b1bd95d7fd3d64d2528a43770d8",
366
+ "0x0000000000000000000000000000000000000000000000000000000000000000"
367
+ ],
368
+ "data": "0x",
369
+ "logIndex": 3,
370
+ "blockHash": "0x9182186d461782c3998ea13d391e443a8592c7ceda458285670101252fabbcf0"
371
+ },
372
+ {
373
+ "transactionIndex": 0,
374
+ "blockNumber": 4119832,
375
+ "transactionHash": "0x45c478f9fb6ae89a3c96d0226175098fa8d10a9d557be5d870849db243e28fa5",
376
+ "address": "0x0000000000000000000000000000000000008006",
377
+ "topics": [
378
+ "0x290afdae231a3fc0bbae8b1af63698b0a1d79b21ad17df0342dfb952fe74f8e5",
379
+ "0x000000000000000000000000e8c6cf867cf962d289305ece9b139a4116674541",
380
+ "0x0100015d8d86d1186371d7c8640f30b64d416b1bd95d7fd3d64d2528a43770d8",
381
+ "0x000000000000000000000000512f8b4a3c466a30e8c9bac9c64638dd710968c2"
382
+ ],
383
+ "data": "0x",
384
+ "logIndex": 4,
385
+ "blockHash": "0x9182186d461782c3998ea13d391e443a8592c7ceda458285670101252fabbcf0"
386
+ },
387
+ {
388
+ "transactionIndex": 0,
389
+ "blockNumber": 4119832,
390
+ "transactionHash": "0x45c478f9fb6ae89a3c96d0226175098fa8d10a9d557be5d870849db243e28fa5",
391
+ "address": "0x000000000000000000000000000000000000800A",
392
+ "topics": [
393
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
394
+ "0x0000000000000000000000000000000000000000000000000000000000008001",
395
+ "0x000000000000000000000000e8c6cf867cf962d289305ece9b139a4116674541"
396
+ ],
397
+ "data": "0x0000000000000000000000000000000000000000000000000000fb8593915f40",
398
+ "logIndex": 5,
399
+ "blockHash": "0x9182186d461782c3998ea13d391e443a8592c7ceda458285670101252fabbcf0"
400
+ }
401
+ ],
402
+ "blockNumber": 4119832,
403
+ "cumulativeGasUsed": "0",
404
+ "status": 1,
405
+ "byzantium": true
406
+ },
407
+ "args": ["USDC", "USDC", 6],
408
+ "numDeployments": 1,
409
+ "solcInputHash": "d76281ebfc364775b25298b192a96581",
410
+ "metadata": {
411
+ "llvm_options": [],
412
+ "optimizer_settings": {
413
+ "is_debug_logging_enabled": false,
414
+ "is_fallback_to_size_enabled": false,
415
+ "is_verify_each_enabled": false,
416
+ "level_back_end": "Aggressive",
417
+ "level_middle_end": "Aggressive",
418
+ "level_middle_end_size": "Zero"
419
+ },
420
+ "solc_version": "0.8.25",
421
+ "solc_zkvm_edition": "1.0.1",
422
+ "source_metadata": "{\"compiler\":{\"version\":\"0.8.25+commit.47b979f3\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name_\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol_\",\"type\":\"string\"},{\"internalType\":\"uint8\",\"name\":\"decimals_\",\"type\":\"uint8\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"subtractedValue\",\"type\":\"uint256\"}],\"name\":\"decreaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"faucet\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"addedValue\",\"type\":\"uint256\"}],\"name\":\"increaseAllowance\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}.\"},\"decreaseAllowance(address,uint256)\":{\"details\":\"Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`.\"},\"increaseAllowance(address,uint256)\":{\"details\":\"Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/test/Mocks/MockToken.sol\":\"MockToken\"},\"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/token/ERC20/ERC20.sol\":{\"keccak256\":\"0xa56ca923f70c1748830700250b19c61b70db9a683516dc5e216694a50445d99c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://cac938788bc4be12101e59d45588b4e059579f4e61062e1cda8d6b06c0191b15\",\"dweb:/ipfs/QmV2JKCyjTVH3rkWNrfdJRhAT7tZ3usAN2XcnD4h53Mvih\"]},\"@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\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c\",\"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h\"]},\"contracts/test/Mocks/MockToken.sol\":{\"keccak256\":\"0x60985130406108e7c07e140da7ba3c71f94ae0fbb658cffdeee7758fc2f33a8d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://486b1fa9e94763f9e0bf6708853025d3a493f3d976f115dd312ab0a27116c5f0\",\"dweb:/ipfs/QmStPyMU7adoU15vjWBePzp2EXmu3e41dWD4Xvk4h2aSae\"]}},\"version\":1}",
423
+ "zk_version": "1.5.3"
424
+ },
425
+ "bytecode": "0x0009000000000002000000000801034f00000000010800190000006001100270000001230110019700000001002001900000001c0000c13d0000008002000039000000400020043f000000040010008c0000003d0000413d000000000208043b000000e0022002700000012a0020009c0000003f0000213d000001320020009c000000800000213d000001360020009c000001730000613d000001370020009c0000021e0000613d000001380020009c0000003d0000c13d0000000001000416000000000001004b0000003d0000c13d00000002010000390000023a0000013d000000a003000039000000400030043f0000000002000416000000000002004b0000003d0000c13d0000001f021000390000012402200197000000a002200039000000400020043f0000001f0410018f0000012505100198000000a0025000390000002e0000613d000000000608034f000000006706043c0000000003730436000000000023004b0000002a0000c13d000000000004004b0000003b0000613d000000000358034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000600010008c000000670000813d000000000100001900000489000104300000012b0020009c000000b60000213d0000012f0020009c000001880000613d000001300020009c0000022c0000613d000001310020009c0000003d0000c13d0000000001000416000000000001004b0000003d0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001820000c13d000000800010043f000000000005004b000002640000613d000000000030043f000000020020008c000002990000413d000001410200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000005e0000413d000002b00000013d000000a00400043d000001260040009c0000003d0000213d0000001f02400039000000000012004b000000000300001900000127030080410000012702200197000000000002004b00000000050000190000012705004041000001270020009c000000000503c019000000000005004b0000003d0000c13d000000a0024000390000000003020433000001260030009c000000d60000a13d0000014601000041000000000010043f0000004101000039000000040010043f00000147010000410000048900010430000001330020009c0000019c0000613d000001340020009c0000023e0000613d000001350020009c0000003d0000c13d000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c700008010020000390006000000080353048704820000040f000000060300035f00000001002001900000003d0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000002401300370000000000101043b000600000001001d0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000101041a0000000602000029000000000021001a0000036f0000413d00000000032100190000029b0000013d0000012c0020009c000001df0000613d0000012d0020009c0000024c0000613d0000012e0020009c0000003d0000c13d000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000001390010009c0000003d0000213d0000002402800370000000000302043b000001390030009c0000003d0000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019000700000003001d048704550000040f0000000702000029000000000020043f000000200010043f00000000010000190000004002000039000002390000013d0000001f023000390000014b022001970000003f022000390000014b02200197000000400900043d0000000005290019000000000095004b00000000020000390000000102004039000001260050009c0000007a0000213d00000001002001900000007a0000c13d000000a002100039000000400050043f000000000a390436000000c0044000390000000005430019000000000025004b0000003d0000213d000000000003004b000000f40000613d000000000500001900000000065a00190000000007450019000000000707043300000000007604350000002005500039000000000035004b000000ed0000413d000000000393001900000020033000390000000000030435000000c00300043d000001260030009c0000003d0000213d0000001f04300039000000000014004b000000000100001900000127010080410000012704400197000000000004004b00000000050000190000012705004041000001270040009c000000000501c019000000000005004b0000003d0000c13d000000a0013000390000000001010433000001260010009c0000007a0000213d0000001f041000390000014b044001970000003f044000390000014b04400197000000400600043d0000000004460019000000000064004b00000000050000390000000105004039000001260040009c0000007a0000213d00000001005001900000007a0000c13d000000400040043f0000000007160436000000c0033000390000000004310019000000000024004b0000003d0000213d000000000001004b000001270000613d000000000200001900000000042700190000000005320019000000000505043300000000005404350000002002200039000000000012004b000001200000413d000000000161001900000020011000390000000000010435000000e00300043d000000ff0030008c0000003d0000213d0000000001090433000001260010009c0000007a0000213d000700000001001d00050000000a001d000600000009001d0000000301000039000000000101041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000010000390000000101002039000000000012004b000001820000c13d000100000007001d000200000003001d000400000006001d000300000004001d000000200040008c0000015f0000413d0000000301000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f00000001002001900000003d0000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000015f0000813d000000000002041b0000000102200039000000000012004b0000015b0000413d00000007010000290000001f0010008c000002cd0000a13d0000000301000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f0000000100200190000000200200008a0000003d0000613d0000000702200180000000000101043b000002da0000c13d0000002003000039000002e70000013d0000000001000416000000000001004b0000003d0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000002610000613d0000014601000041000000000010043f0000002201000039000000040010043f00000147010000410000048900010430000000240010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000401043b0000000003000411000000000003004b0000026a0000c13d0000013f01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000014401000041000000c40010043f00000145010000410000048900010430000000640010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000301043b000001390030009c0000003d0000213d0000002401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000004401800370000000000101043b000500000001001d000000000030043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039000600000003001d048704820000040f00000001002001900000003d0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f000000060400002900000001002001900000003d0000613d000000000101043b000000000101041a0000014c0010009c000002c80000613d000000050310006c000002c40000813d000000400100043d00000044021000390000014803000041000000000032043500000024021000390000001d0300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000149011001c70000048900010430000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000002401800370000000000101043b000600000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000101041a000000060310006c0000029b0000813d000000400100043d00000064021000390000013d03000041000000000032043500000044021000390000013e0300004100000000003204350000002402100039000000250300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c70000048900010430000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000201043b000001390020009c0000003d0000213d0000002401800370000000000301043b00000000010004110487038a0000040f000002590000013d000000240010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000001390010009c0000003d0000213d000000000010043f000000200000043f00000040020000390000000001000019048704550000040f000000000101041a000000800010043f0000013a01000041000004880001042e0000000001000416000000000001004b0000003d0000c13d0000000001000412000900000001001d000800000000003d0000000001000415000000090110008a00000005011002100487046a0000040f000000ff0110018f000000800010043f0000013a01000041000004880001042e000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000201043b000001390020009c0000003d0000213d0000002401800370000000000301043b0000000001000411048703e10000040f0000000101000039000000400200043d0000000000120435000001230020009c000001230200804100000040012002100000013b011001c7000004880001042e000000800010043f000000000005004b000002960000c13d0000014d01200197000000a00010043f000000000004004b000000c001000039000000a001006039000002b10000013d0000000201000039000000000201041a000000000042001a0000036f0000413d000700000004001d0000000002420019000000000021041b000000000030043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000201041a00000007030000290000000002320019000000000021041b000000400100043d0000000000310435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014304000041000000000500001900000000060004110487047d0000040f00000001002001900000003d0000613d0000000001000019000004880001042e000000000030043f000000020020008c000002a60000813d0000002001000039000002b50000013d000000000100041100000007020000290487038a0000040f000000400100043d00000001020000390000000000210435000001230010009c000001230100804100000040011002100000013b011001c7000004880001042e0000014a0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002a80000413d000000c001300039000000610110008a0000014b01100197000001420010009c0000007a0000213d0000008001100039000700000001001d000000400010043f0000008002000039048703750000040f00000007020000290000000001210049000001230010009c00000123010080410000006001100210000001230020009c00000123020080410000004002200210000000000121019f000004880001042e000000000104001900000000020004110487038a0000040f0000000604000029000000000104001900000007020000290000000503000029048703e10000040f0000029e0000013d000000070000006b0000000001000019000002d20000613d00000005010000290000000001010433000000070400002900000003024002100000014c0220027f0000014c02200167000000000121016f0000000102400210000000000121019f000002f50000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000060600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000002e00000c13d000000070020006c000002f20000813d00000007020000290000000302200210000000f80220018f0000014c0220027f0000014c0220016700000006033000290000000003030433000000000223016f000000000021041b0000000701000029000000010110021000000001011001bf0000000302000039000000000012041b00000004010000290000000001010433000700000001001d000001260010009c0000007a0000213d0000000401000039000000000101041a000000010010019000000001021002700000007f0220618f000600000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000001820000c13d0000000601000029000000200010008c000003270000413d0000000401000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f00000001002001900000003d0000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000006010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000003270000813d000000000002041b0000000102200039000000000012004b000003230000413d00000007010000290000001f0010008c0000033b0000a13d0000000401000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f0000000100200190000000200200008a0000003d0000613d0000000702200180000000000101043b000003470000c13d0000002003000039000003540000013d000000070000006b0000000001000019000003400000613d00000001010000290000000001010433000000070400002900000003024002100000014c0220027f0000014c02200167000000000121016f0000000102400210000003620000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000040600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000034d0000c13d000000070020006c0000035f0000813d00000007020000290000000302200210000000f80220018f0000014c0220027f0000014c0220016700000004033000290000000003030433000000000223016f000000000021041b000000070100002900000001011002100000000102000039000000000121019f0000000402000039000000000012041b0000000201000029000000800010043f0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000012901000041000004880001042e0000014601000041000000000010043f0000001101000039000000040010043f0000014701000041000004890001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000003840000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000037d0000413d000000000321001900000000000304350000001f022000390000014b022001970000000001210019000000000001042d00030000000000020000013901100198000003c30000613d000200000003001d000301390020019c000003cd0000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000000303000029000003c10000613d000000000101043b000000000030043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000003060000290000000100200190000003c10000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014e0400004100000001050000290487047d0000040f0000000100200190000003c10000613d000000000001042d00000000010000190000048900010430000000400100043d00000064021000390000015103000041000000000032043500000044021000390000015203000041000000000032043500000024021000390000002403000039000003d60000013d000000400100043d00000064021000390000014f0300004100000000003204350000004402100039000001500300004100000000003204350000002402100039000000220300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c700000489000104300004000000000002000400000003001d00000139011001980000042c0000613d000201390020019c000004360000613d000300000001001d000000000010043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b000000000101041a0001000400100074000004400000413d0000000301000029000000000010043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014304000041000000030500002900000002060000290487047d0000040f00000001002001900000042a0000613d000000000001042d00000000010000190000048900010430000000400100043d00000064021000390000015703000041000000000032043500000044021000390000015803000041000000000032043500000024021000390000002503000039000004490000013d000000400100043d00000064021000390000015503000041000000000032043500000044021000390000015603000041000000000032043500000024021000390000002303000039000004490000013d000000400100043d0000006402100039000001530300004100000000003204350000004402100039000001540300004100000000003204350000002402100039000000260300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c70000048900010430000000000001042f000001230010009c00000123010080410000004001100210000001230020009c00000123020080410000006002200210000000000112019f0000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000159011001c70000801002000039048704820000040f0000000100200190000004680000613d000000000101043b000000000001042d000000000100001900000489000104300000015a020000410000000000200443000000050110027000000000020100310000000400200443000000010101003100000024001004430000000001000414000001230010009c0000012301008041000000c0011002100000015b011001c70000800502000039048704820000040f00000001002001900000047c0000613d000000000101043b000000000001042d000000000001042f00000480002104210000000102000039000000000001042d0000000002000019000000000001042d00000485002104230000000102000039000000000001042d0000000002000019000000000001042d0000048700000432000004880001042e00000489000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff800000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000200000000000000000000000000000000200000000000000000000000000000080000001000000000000000000000000000000000000000000000000000000000000000000000000005791589600000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000579158970000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000200000000000000000000000000200000000000000000000000000000000000040000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7708c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b000000000000000000000000000000000000000000000000ffffffffffffff7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206d696e7420746f20746865207a65726f20616464726573730000000000000000000000000000000000000000640000008000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e63650000000000000000000000000000000000000000000064000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061640200000000000000000000000000000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000006c6ab6f0804a9f9f96765d9821a4921ab51809b984aa61941dfca2f62f59688b",
426
+ "deployedBytecode": "0x0009000000000002000000000801034f00000000010800190000006001100270000001230110019700000001002001900000001c0000c13d0000008002000039000000400020043f000000040010008c0000003d0000413d000000000208043b000000e0022002700000012a0020009c0000003f0000213d000001320020009c000000800000213d000001360020009c000001730000613d000001370020009c0000021e0000613d000001380020009c0000003d0000c13d0000000001000416000000000001004b0000003d0000c13d00000002010000390000023a0000013d000000a003000039000000400030043f0000000002000416000000000002004b0000003d0000c13d0000001f021000390000012402200197000000a002200039000000400020043f0000001f0410018f0000012505100198000000a0025000390000002e0000613d000000000608034f000000006706043c0000000003730436000000000023004b0000002a0000c13d000000000004004b0000003b0000613d000000000358034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000600010008c000000670000813d000000000100001900000489000104300000012b0020009c000000b60000213d0000012f0020009c000001880000613d000001300020009c0000022c0000613d000001310020009c0000003d0000c13d0000000001000416000000000001004b0000003d0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001820000c13d000000800010043f000000000005004b000002640000613d000000000030043f000000020020008c000002990000413d000001410200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000005e0000413d000002b00000013d000000a00400043d000001260040009c0000003d0000213d0000001f02400039000000000012004b000000000300001900000127030080410000012702200197000000000002004b00000000050000190000012705004041000001270020009c000000000503c019000000000005004b0000003d0000c13d000000a0024000390000000003020433000001260030009c000000d60000a13d0000014601000041000000000010043f0000004101000039000000040010043f00000147010000410000048900010430000001330020009c0000019c0000613d000001340020009c0000023e0000613d000001350020009c0000003d0000c13d000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c700008010020000390006000000080353048704820000040f000000060300035f00000001002001900000003d0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000002401300370000000000101043b000600000001001d0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000101041a0000000602000029000000000021001a0000036f0000413d00000000032100190000029b0000013d0000012c0020009c000001df0000613d0000012d0020009c0000024c0000613d0000012e0020009c0000003d0000c13d000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000001390010009c0000003d0000213d0000002402800370000000000302043b000001390030009c0000003d0000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019000700000003001d048704550000040f0000000702000029000000000020043f000000200010043f00000000010000190000004002000039000002390000013d0000001f023000390000014b022001970000003f022000390000014b02200197000000400900043d0000000005290019000000000095004b00000000020000390000000102004039000001260050009c0000007a0000213d00000001002001900000007a0000c13d000000a002100039000000400050043f000000000a390436000000c0044000390000000005430019000000000025004b0000003d0000213d000000000003004b000000f40000613d000000000500001900000000065a00190000000007450019000000000707043300000000007604350000002005500039000000000035004b000000ed0000413d000000000393001900000020033000390000000000030435000000c00300043d000001260030009c0000003d0000213d0000001f04300039000000000014004b000000000100001900000127010080410000012704400197000000000004004b00000000050000190000012705004041000001270040009c000000000501c019000000000005004b0000003d0000c13d000000a0013000390000000001010433000001260010009c0000007a0000213d0000001f041000390000014b044001970000003f044000390000014b04400197000000400600043d0000000004460019000000000064004b00000000050000390000000105004039000001260040009c0000007a0000213d00000001005001900000007a0000c13d000000400040043f0000000007160436000000c0033000390000000004310019000000000024004b0000003d0000213d000000000001004b000001270000613d000000000200001900000000042700190000000005320019000000000505043300000000005404350000002002200039000000000012004b000001200000413d000000000161001900000020011000390000000000010435000000e00300043d000000ff0030008c0000003d0000213d0000000001090433000001260010009c0000007a0000213d000700000001001d00050000000a001d000600000009001d0000000301000039000000000101041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000010000390000000101002039000000000012004b000001820000c13d000100000007001d000200000003001d000400000006001d000300000004001d000000200040008c0000015f0000413d0000000301000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f00000001002001900000003d0000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000015f0000813d000000000002041b0000000102200039000000000012004b0000015b0000413d00000007010000290000001f0010008c000002cd0000a13d0000000301000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f0000000100200190000000200200008a0000003d0000613d0000000702200180000000000101043b000002da0000c13d0000002003000039000002e70000013d0000000001000416000000000001004b0000003d0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000002610000613d0000014601000041000000000010043f0000002201000039000000040010043f00000147010000410000048900010430000000240010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000401043b0000000003000411000000000003004b0000026a0000c13d0000013f01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000014401000041000000c40010043f00000145010000410000048900010430000000640010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000301043b000001390030009c0000003d0000213d0000002401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000004401800370000000000101043b000500000001001d000000000030043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039000600000003001d048704820000040f00000001002001900000003d0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f000000060400002900000001002001900000003d0000613d000000000101043b000000000101041a0000014c0010009c000002c80000613d000000050310006c000002c40000813d000000400100043d00000044021000390000014803000041000000000032043500000024021000390000001d0300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000149011001c70000048900010430000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000002401800370000000000101043b000600000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000101041a000000060310006c0000029b0000813d000000400100043d00000064021000390000013d03000041000000000032043500000044021000390000013e0300004100000000003204350000002402100039000000250300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c70000048900010430000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000201043b000001390020009c0000003d0000213d0000002401800370000000000301043b00000000010004110487038a0000040f000002590000013d000000240010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000001390010009c0000003d0000213d000000000010043f000000200000043f00000040020000390000000001000019048704550000040f000000000101041a000000800010043f0000013a01000041000004880001042e0000000001000416000000000001004b0000003d0000c13d0000000001000412000900000001001d000800000000003d0000000001000415000000090110008a00000005011002100487046a0000040f000000ff0110018f000000800010043f0000013a01000041000004880001042e000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000201043b000001390020009c0000003d0000213d0000002401800370000000000301043b0000000001000411048703e10000040f0000000101000039000000400200043d0000000000120435000001230020009c000001230200804100000040012002100000013b011001c7000004880001042e000000800010043f000000000005004b000002960000c13d0000014d01200197000000a00010043f000000000004004b000000c001000039000000a001006039000002b10000013d0000000201000039000000000201041a000000000042001a0000036f0000413d000700000004001d0000000002420019000000000021041b000000000030043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000201041a00000007030000290000000002320019000000000021041b000000400100043d0000000000310435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014304000041000000000500001900000000060004110487047d0000040f00000001002001900000003d0000613d0000000001000019000004880001042e000000000030043f000000020020008c000002a60000813d0000002001000039000002b50000013d000000000100041100000007020000290487038a0000040f000000400100043d00000001020000390000000000210435000001230010009c000001230100804100000040011002100000013b011001c7000004880001042e0000014a0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002a80000413d000000c001300039000000610110008a0000014b01100197000001420010009c0000007a0000213d0000008001100039000700000001001d000000400010043f0000008002000039048703750000040f00000007020000290000000001210049000001230010009c00000123010080410000006001100210000001230020009c00000123020080410000004002200210000000000121019f000004880001042e000000000104001900000000020004110487038a0000040f0000000604000029000000000104001900000007020000290000000503000029048703e10000040f0000029e0000013d000000070000006b0000000001000019000002d20000613d00000005010000290000000001010433000000070400002900000003024002100000014c0220027f0000014c02200167000000000121016f0000000102400210000000000121019f000002f50000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000060600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000002e00000c13d000000070020006c000002f20000813d00000007020000290000000302200210000000f80220018f0000014c0220027f0000014c0220016700000006033000290000000003030433000000000223016f000000000021041b0000000701000029000000010110021000000001011001bf0000000302000039000000000012041b00000004010000290000000001010433000700000001001d000001260010009c0000007a0000213d0000000401000039000000000101041a000000010010019000000001021002700000007f0220618f000600000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000001820000c13d0000000601000029000000200010008c000003270000413d0000000401000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f00000001002001900000003d0000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000006010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000003270000813d000000000002041b0000000102200039000000000012004b000003230000413d00000007010000290000001f0010008c0000033b0000a13d0000000401000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f0000000100200190000000200200008a0000003d0000613d0000000702200180000000000101043b000003470000c13d0000002003000039000003540000013d000000070000006b0000000001000019000003400000613d00000001010000290000000001010433000000070400002900000003024002100000014c0220027f0000014c02200167000000000121016f0000000102400210000003620000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000040600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000034d0000c13d000000070020006c0000035f0000813d00000007020000290000000302200210000000f80220018f0000014c0220027f0000014c0220016700000004033000290000000003030433000000000223016f000000000021041b000000070100002900000001011002100000000102000039000000000121019f0000000402000039000000000012041b0000000201000029000000800010043f0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000012901000041000004880001042e0000014601000041000000000010043f0000001101000039000000040010043f0000014701000041000004890001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000003840000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000037d0000413d000000000321001900000000000304350000001f022000390000014b022001970000000001210019000000000001042d00030000000000020000013901100198000003c30000613d000200000003001d000301390020019c000003cd0000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000000303000029000003c10000613d000000000101043b000000000030043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000003060000290000000100200190000003c10000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014e0400004100000001050000290487047d0000040f0000000100200190000003c10000613d000000000001042d00000000010000190000048900010430000000400100043d00000064021000390000015103000041000000000032043500000044021000390000015203000041000000000032043500000024021000390000002403000039000003d60000013d000000400100043d00000064021000390000014f0300004100000000003204350000004402100039000001500300004100000000003204350000002402100039000000220300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c700000489000104300004000000000002000400000003001d00000139011001980000042c0000613d000201390020019c000004360000613d000300000001001d000000000010043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b000000000101041a0001000400100074000004400000413d0000000301000029000000000010043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014304000041000000030500002900000002060000290487047d0000040f00000001002001900000042a0000613d000000000001042d00000000010000190000048900010430000000400100043d00000064021000390000015703000041000000000032043500000044021000390000015803000041000000000032043500000024021000390000002503000039000004490000013d000000400100043d00000064021000390000015503000041000000000032043500000044021000390000015603000041000000000032043500000024021000390000002303000039000004490000013d000000400100043d0000006402100039000001530300004100000000003204350000004402100039000001540300004100000000003204350000002402100039000000260300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c70000048900010430000000000001042f000001230010009c00000123010080410000004001100210000001230020009c00000123020080410000006002200210000000000112019f0000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000159011001c70000801002000039048704820000040f0000000100200190000004680000613d000000000101043b000000000001042d000000000100001900000489000104300000015a020000410000000000200443000000050110027000000000020100310000000400200443000000010101003100000024001004430000000001000414000001230010009c0000012301008041000000c0011002100000015b011001c70000800502000039048704820000040f00000001002001900000047c0000613d000000000101043b000000000001042d000000000001042f00000480002104210000000102000039000000000001042d0000000002000019000000000001042d00000485002104230000000102000039000000000001042d0000000002000019000000000001042d0000048700000432000004880001042e00000489000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff800000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000200000000000000000000000000000000200000000000000000000000000000080000001000000000000000000000000000000000000000000000000000000000000000000000000005791589600000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000579158970000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000200000000000000000000000000200000000000000000000000000000000000040000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7708c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b000000000000000000000000000000000000000000000000ffffffffffffff7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206d696e7420746f20746865207a65726f20616464726573730000000000000000000000000000000000000000640000008000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e63650000000000000000000000000000000000000000000064000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061640200000000000000000000000000000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000006c6ab6f0804a9f9f96765d9821a4921ab51809b984aa61941dfca2f62f59688b",
427
+ "devdoc": {
428
+ "events": {
429
+ "Approval(address,address,uint256)": {
430
+ "details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
431
+ },
432
+ "Transfer(address,address,uint256)": {
433
+ "details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
434
+ }
435
+ },
436
+ "kind": "dev",
437
+ "methods": {
438
+ "allowance(address,address)": {
439
+ "details": "See {IERC20-allowance}."
440
+ },
441
+ "approve(address,uint256)": {
442
+ "details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."
443
+ },
444
+ "balanceOf(address)": {
445
+ "details": "See {IERC20-balanceOf}."
446
+ },
447
+ "decimals()": {
448
+ "details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the default value returned by this function, unless it's overridden. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
449
+ },
450
+ "decreaseAllowance(address,uint256)": {
451
+ "details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
452
+ },
453
+ "increaseAllowance(address,uint256)": {
454
+ "details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
455
+ },
456
+ "name()": {
457
+ "details": "Returns the name of the token."
458
+ },
459
+ "symbol()": {
460
+ "details": "Returns the symbol of the token, usually a shorter version of the name."
461
+ },
462
+ "totalSupply()": {
463
+ "details": "See {IERC20-totalSupply}."
464
+ },
465
+ "transfer(address,uint256)": {
466
+ "details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`."
467
+ },
468
+ "transferFrom(address,address,uint256)": {
469
+ "details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`."
470
+ }
471
+ },
472
+ "version": 1
473
+ },
474
+ "userdoc": {
475
+ "kind": "user",
476
+ "methods": {},
477
+ "version": 1
478
+ },
479
+ "storageLayout": {
480
+ "storage": [
481
+ {
482
+ "astId": 4804,
483
+ "contract": "contracts/test/Mocks/MockToken.sol:MockToken",
484
+ "label": "_balances",
485
+ "offset": 0,
486
+ "slot": "0",
487
+ "type": "t_mapping(t_address,t_uint256)"
488
+ },
489
+ {
490
+ "astId": 4810,
491
+ "contract": "contracts/test/Mocks/MockToken.sol:MockToken",
492
+ "label": "_allowances",
493
+ "offset": 0,
494
+ "slot": "1",
495
+ "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
496
+ },
497
+ {
498
+ "astId": 4812,
499
+ "contract": "contracts/test/Mocks/MockToken.sol:MockToken",
500
+ "label": "_totalSupply",
501
+ "offset": 0,
502
+ "slot": "2",
503
+ "type": "t_uint256"
504
+ },
505
+ {
506
+ "astId": 4814,
507
+ "contract": "contracts/test/Mocks/MockToken.sol:MockToken",
508
+ "label": "_name",
509
+ "offset": 0,
510
+ "slot": "3",
511
+ "type": "t_string_storage"
512
+ },
513
+ {
514
+ "astId": 4816,
515
+ "contract": "contracts/test/Mocks/MockToken.sol:MockToken",
516
+ "label": "_symbol",
517
+ "offset": 0,
518
+ "slot": "4",
519
+ "type": "t_string_storage"
520
+ }
521
+ ],
522
+ "types": {
523
+ "t_address": {
524
+ "encoding": "inplace",
525
+ "label": "address",
526
+ "numberOfBytes": "20"
527
+ },
528
+ "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
529
+ "encoding": "mapping",
530
+ "key": "t_address",
531
+ "label": "mapping(address => mapping(address => uint256))",
532
+ "numberOfBytes": "32",
533
+ "value": "t_mapping(t_address,t_uint256)"
534
+ },
535
+ "t_mapping(t_address,t_uint256)": {
536
+ "encoding": "mapping",
537
+ "key": "t_address",
538
+ "label": "mapping(address => uint256)",
539
+ "numberOfBytes": "32",
540
+ "value": "t_uint256"
541
+ },
542
+ "t_string_storage": {
543
+ "encoding": "bytes",
544
+ "label": "string",
545
+ "numberOfBytes": "32"
546
+ },
547
+ "t_uint256": {
548
+ "encoding": "inplace",
549
+ "label": "uint256",
550
+ "numberOfBytes": "32"
551
+ }
552
+ }
553
+ },
554
+ "factoryDeps": [
555
+ "0x0009000000000002000000000801034f00000000010800190000006001100270000001230110019700000001002001900000001c0000c13d0000008002000039000000400020043f000000040010008c0000003d0000413d000000000208043b000000e0022002700000012a0020009c0000003f0000213d000001320020009c000000800000213d000001360020009c000001730000613d000001370020009c0000021e0000613d000001380020009c0000003d0000c13d0000000001000416000000000001004b0000003d0000c13d00000002010000390000023a0000013d000000a003000039000000400030043f0000000002000416000000000002004b0000003d0000c13d0000001f021000390000012402200197000000a002200039000000400020043f0000001f0410018f0000012505100198000000a0025000390000002e0000613d000000000608034f000000006706043c0000000003730436000000000023004b0000002a0000c13d000000000004004b0000003b0000613d000000000358034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000600010008c000000670000813d000000000100001900000489000104300000012b0020009c000000b60000213d0000012f0020009c000001880000613d000001300020009c0000022c0000613d000001310020009c0000003d0000c13d0000000001000416000000000001004b0000003d0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001820000c13d000000800010043f000000000005004b000002640000613d000000000030043f000000020020008c000002990000413d000001410200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000005e0000413d000002b00000013d000000a00400043d000001260040009c0000003d0000213d0000001f02400039000000000012004b000000000300001900000127030080410000012702200197000000000002004b00000000050000190000012705004041000001270020009c000000000503c019000000000005004b0000003d0000c13d000000a0024000390000000003020433000001260030009c000000d60000a13d0000014601000041000000000010043f0000004101000039000000040010043f00000147010000410000048900010430000001330020009c0000019c0000613d000001340020009c0000023e0000613d000001350020009c0000003d0000c13d000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c700008010020000390006000000080353048704820000040f000000060300035f00000001002001900000003d0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000002401300370000000000101043b000600000001001d0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000101041a0000000602000029000000000021001a0000036f0000413d00000000032100190000029b0000013d0000012c0020009c000001df0000613d0000012d0020009c0000024c0000613d0000012e0020009c0000003d0000c13d000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000001390010009c0000003d0000213d0000002402800370000000000302043b000001390030009c0000003d0000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019000700000003001d048704550000040f0000000702000029000000000020043f000000200010043f00000000010000190000004002000039000002390000013d0000001f023000390000014b022001970000003f022000390000014b02200197000000400900043d0000000005290019000000000095004b00000000020000390000000102004039000001260050009c0000007a0000213d00000001002001900000007a0000c13d000000a002100039000000400050043f000000000a390436000000c0044000390000000005430019000000000025004b0000003d0000213d000000000003004b000000f40000613d000000000500001900000000065a00190000000007450019000000000707043300000000007604350000002005500039000000000035004b000000ed0000413d000000000393001900000020033000390000000000030435000000c00300043d000001260030009c0000003d0000213d0000001f04300039000000000014004b000000000100001900000127010080410000012704400197000000000004004b00000000050000190000012705004041000001270040009c000000000501c019000000000005004b0000003d0000c13d000000a0013000390000000001010433000001260010009c0000007a0000213d0000001f041000390000014b044001970000003f044000390000014b04400197000000400600043d0000000004460019000000000064004b00000000050000390000000105004039000001260040009c0000007a0000213d00000001005001900000007a0000c13d000000400040043f0000000007160436000000c0033000390000000004310019000000000024004b0000003d0000213d000000000001004b000001270000613d000000000200001900000000042700190000000005320019000000000505043300000000005404350000002002200039000000000012004b000001200000413d000000000161001900000020011000390000000000010435000000e00300043d000000ff0030008c0000003d0000213d0000000001090433000001260010009c0000007a0000213d000700000001001d00050000000a001d000600000009001d0000000301000039000000000101041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000010000390000000101002039000000000012004b000001820000c13d000100000007001d000200000003001d000400000006001d000300000004001d000000200040008c0000015f0000413d0000000301000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f00000001002001900000003d0000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000015f0000813d000000000002041b0000000102200039000000000012004b0000015b0000413d00000007010000290000001f0010008c000002cd0000a13d0000000301000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f0000000100200190000000200200008a0000003d0000613d0000000702200180000000000101043b000002da0000c13d0000002003000039000002e70000013d0000000001000416000000000001004b0000003d0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000002610000613d0000014601000041000000000010043f0000002201000039000000040010043f00000147010000410000048900010430000000240010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000401043b0000000003000411000000000003004b0000026a0000c13d0000013f01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000014401000041000000c40010043f00000145010000410000048900010430000000640010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000301043b000001390030009c0000003d0000213d0000002401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000004401800370000000000101043b000500000001001d000000000030043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039000600000003001d048704820000040f00000001002001900000003d0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f000000060400002900000001002001900000003d0000613d000000000101043b000000000101041a0000014c0010009c000002c80000613d000000050310006c000002c40000813d000000400100043d00000044021000390000014803000041000000000032043500000024021000390000001d0300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000149011001c70000048900010430000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000002401800370000000000101043b000600000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000101041a000000060310006c0000029b0000813d000000400100043d00000064021000390000013d03000041000000000032043500000044021000390000013e0300004100000000003204350000002402100039000000250300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c70000048900010430000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000201043b000001390020009c0000003d0000213d0000002401800370000000000301043b00000000010004110487038a0000040f000002590000013d000000240010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000001390010009c0000003d0000213d000000000010043f000000200000043f00000040020000390000000001000019048704550000040f000000000101041a000000800010043f0000013a01000041000004880001042e0000000001000416000000000001004b0000003d0000c13d0000000001000412000900000001001d000800000000003d0000000001000415000000090110008a00000005011002100487046a0000040f000000ff0110018f000000800010043f0000013a01000041000004880001042e000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000201043b000001390020009c0000003d0000213d0000002401800370000000000301043b0000000001000411048703e10000040f0000000101000039000000400200043d0000000000120435000001230020009c000001230200804100000040012002100000013b011001c7000004880001042e000000800010043f000000000005004b000002960000c13d0000014d01200197000000a00010043f000000000004004b000000c001000039000000a001006039000002b10000013d0000000201000039000000000201041a000000000042001a0000036f0000413d000700000004001d0000000002420019000000000021041b000000000030043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000201041a00000007030000290000000002320019000000000021041b000000400100043d0000000000310435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014304000041000000000500001900000000060004110487047d0000040f00000001002001900000003d0000613d0000000001000019000004880001042e000000000030043f000000020020008c000002a60000813d0000002001000039000002b50000013d000000000100041100000007020000290487038a0000040f000000400100043d00000001020000390000000000210435000001230010009c000001230100804100000040011002100000013b011001c7000004880001042e0000014a0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002a80000413d000000c001300039000000610110008a0000014b01100197000001420010009c0000007a0000213d0000008001100039000700000001001d000000400010043f0000008002000039048703750000040f00000007020000290000000001210049000001230010009c00000123010080410000006001100210000001230020009c00000123020080410000004002200210000000000121019f000004880001042e000000000104001900000000020004110487038a0000040f0000000604000029000000000104001900000007020000290000000503000029048703e10000040f0000029e0000013d000000070000006b0000000001000019000002d20000613d00000005010000290000000001010433000000070400002900000003024002100000014c0220027f0000014c02200167000000000121016f0000000102400210000000000121019f000002f50000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000060600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000002e00000c13d000000070020006c000002f20000813d00000007020000290000000302200210000000f80220018f0000014c0220027f0000014c0220016700000006033000290000000003030433000000000223016f000000000021041b0000000701000029000000010110021000000001011001bf0000000302000039000000000012041b00000004010000290000000001010433000700000001001d000001260010009c0000007a0000213d0000000401000039000000000101041a000000010010019000000001021002700000007f0220618f000600000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000001820000c13d0000000601000029000000200010008c000003270000413d0000000401000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f00000001002001900000003d0000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000006010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000003270000813d000000000002041b0000000102200039000000000012004b000003230000413d00000007010000290000001f0010008c0000033b0000a13d0000000401000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f0000000100200190000000200200008a0000003d0000613d0000000702200180000000000101043b000003470000c13d0000002003000039000003540000013d000000070000006b0000000001000019000003400000613d00000001010000290000000001010433000000070400002900000003024002100000014c0220027f0000014c02200167000000000121016f0000000102400210000003620000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000040600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000034d0000c13d000000070020006c0000035f0000813d00000007020000290000000302200210000000f80220018f0000014c0220027f0000014c0220016700000004033000290000000003030433000000000223016f000000000021041b000000070100002900000001011002100000000102000039000000000121019f0000000402000039000000000012041b0000000201000029000000800010043f0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000012901000041000004880001042e0000014601000041000000000010043f0000001101000039000000040010043f0000014701000041000004890001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000003840000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000037d0000413d000000000321001900000000000304350000001f022000390000014b022001970000000001210019000000000001042d00030000000000020000013901100198000003c30000613d000200000003001d000301390020019c000003cd0000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000000303000029000003c10000613d000000000101043b000000000030043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000003060000290000000100200190000003c10000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014e0400004100000001050000290487047d0000040f0000000100200190000003c10000613d000000000001042d00000000010000190000048900010430000000400100043d00000064021000390000015103000041000000000032043500000044021000390000015203000041000000000032043500000024021000390000002403000039000003d60000013d000000400100043d00000064021000390000014f0300004100000000003204350000004402100039000001500300004100000000003204350000002402100039000000220300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c700000489000104300004000000000002000400000003001d00000139011001980000042c0000613d000201390020019c000004360000613d000300000001001d000000000010043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b000000000101041a0001000400100074000004400000413d0000000301000029000000000010043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014304000041000000030500002900000002060000290487047d0000040f00000001002001900000042a0000613d000000000001042d00000000010000190000048900010430000000400100043d00000064021000390000015703000041000000000032043500000044021000390000015803000041000000000032043500000024021000390000002503000039000004490000013d000000400100043d00000064021000390000015503000041000000000032043500000044021000390000015603000041000000000032043500000024021000390000002303000039000004490000013d000000400100043d0000006402100039000001530300004100000000003204350000004402100039000001540300004100000000003204350000002402100039000000260300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c70000048900010430000000000001042f000001230010009c00000123010080410000004001100210000001230020009c00000123020080410000006002200210000000000112019f0000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000159011001c70000801002000039048704820000040f0000000100200190000004680000613d000000000101043b000000000001042d000000000100001900000489000104300000015a020000410000000000200443000000050110027000000000020100310000000400200443000000010101003100000024001004430000000001000414000001230010009c0000012301008041000000c0011002100000015b011001c70000800502000039048704820000040f00000001002001900000047c0000613d000000000101043b000000000001042d000000000001042f00000480002104210000000102000039000000000001042d0000000002000019000000000001042d00000485002104230000000102000039000000000001042d0000000002000019000000000001042d0000048700000432000004880001042e00000489000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff800000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000200000000000000000000000000000000200000000000000000000000000000080000001000000000000000000000000000000000000000000000000000000000000000000000000005791589600000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000579158970000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000200000000000000000000000000200000000000000000000000000000000000040000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7708c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b000000000000000000000000000000000000000000000000ffffffffffffff7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206d696e7420746f20746865207a65726f20616464726573730000000000000000000000000000000000000000640000008000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e63650000000000000000000000000000000000000000000064000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061640200000000000000000000000000000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000006c6ab6f0804a9f9f96765d9821a4921ab51809b984aa61941dfca2f62f59688b"
556
+ ]
557
+ }