@venusprotocol/isolated-pools 3.8.0-dev.4 → 3.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. package/deployments/zksyncmainnet/JumpRateModelV2_base0bps_slope687bps_jump25000bps_kink8000bps.json +668 -0
  2. package/deployments/zksyncmainnet/VToken_vwUSDM_Core.json +317 -0
  3. package/deployments/zksyncmainnet/solcInputs/c84b0f085ad65b3aa38a5f0d3790c387.json +448 -0
  4. package/deployments/zksyncmainnet.json +434 -0
  5. package/deployments/zksyncmainnet_addresses.json +3 -1
  6. package/deployments/zksyncsepolia/JumpRateModelV2_base0bps_slope687bps_jump25000bps_kink8000bps.json +668 -0
  7. package/deployments/zksyncsepolia/MockUSDM.json +519 -0
  8. package/deployments/zksyncsepolia/MockwUSDM.json +576 -0
  9. package/deployments/zksyncsepolia/VToken_vwUSDM_Core.json +317 -0
  10. package/deployments/zksyncsepolia/solcInputs/c84b0f085ad65b3aa38a5f0d3790c387.json +448 -0
  11. package/deployments/zksyncsepolia.json +1160 -89
  12. package/deployments/zksyncsepolia_addresses.json +5 -1
  13. package/dist/deploy/001-deploy-mock-tokens.js +3 -2
  14. package/dist/deploy/009-deploy-vtokens.js +10 -1
  15. package/dist/deployments/zksyncmainnet.json +434 -0
  16. package/dist/deployments/zksyncsepolia.json +1160 -89
  17. package/dist/hardhat.config.js +7 -0
  18. package/dist/helpers/deploymentConfig.d.ts +1 -0
  19. package/dist/helpers/deploymentConfig.js +71 -6
  20. package/dist/helpers/deploymentUtils.d.ts +2 -0
  21. package/dist/helpers/deploymentUtils.js +6 -1
  22. package/dist/typechain/factories/PoolRegistryInterface__factory.d.ts +2 -16
  23. package/dist/typechain/factories/PoolRegistryInterface__factory.js +0 -119
  24. package/package.json +1 -1
  25. package/typechain/PoolRegistryInterface.d.ts +0 -178
  26. package/typechain/factories/PoolRegistryInterface__factory.ts +0 -119
@@ -0,0 +1,519 @@
1
+ {
2
+ "address": "0x5d5334dBa9C727eD81b549b6106aE37Ea137076D",
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": "0x0b4ca5877334ec777d1655edd542adbd56b7b030ee54d286845e790e6b48ea9a",
310
+ "receipt": {
311
+ "to": "0x0000000000000000000000000000000000008006",
312
+ "from": "0x2Ce1d0ffD7E869D9DF33e28552b12DdDed326706",
313
+ "contractAddress": "0x5d5334dBa9C727eD81b549b6106aE37Ea137076D",
314
+ "transactionIndex": 0,
315
+ "gasUsed": "153681",
316
+ "logsBloom": "0x10000000000400000000000000000000000000000000000000000008000000000000000000000000000000000000000000800000000000000000000000004004000000000000040000000208000040000000000000000000000000000000080000000000000000000000400000000000000000000000000000000018000000000000000000000000002004000000000000000100000000000000000000000000000000000000100000000000800000000000000000000000002000010000000000000002008000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
317
+ "blockHash": "0x990c8d8bafdf793d01f34d9daf8c73c574c82723a62814ade85f8c25e63d5230",
318
+ "transactionHash": "0x0b4ca5877334ec777d1655edd542adbd56b7b030ee54d286845e790e6b48ea9a",
319
+ "logs": [
320
+ {
321
+ "transactionIndex": 0,
322
+ "blockNumber": 4487261,
323
+ "transactionHash": "0x0b4ca5877334ec777d1655edd542adbd56b7b030ee54d286845e790e6b48ea9a",
324
+ "address": "0x000000000000000000000000000000000000800A",
325
+ "topics": [
326
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
327
+ "0x0000000000000000000000002ce1d0ffd7e869d9df33e28552b12ddded326706",
328
+ "0x0000000000000000000000000000000000000000000000000000000000008001"
329
+ ],
330
+ "data": "0x000000000000000000000000000000000000000000000000000008f99b934980",
331
+ "logIndex": 0,
332
+ "blockHash": "0x990c8d8bafdf793d01f34d9daf8c73c574c82723a62814ade85f8c25e63d5230"
333
+ },
334
+ {
335
+ "transactionIndex": 0,
336
+ "blockNumber": 4487261,
337
+ "transactionHash": "0x0b4ca5877334ec777d1655edd542adbd56b7b030ee54d286845e790e6b48ea9a",
338
+ "address": "0x0000000000000000000000000000000000008006",
339
+ "topics": [
340
+ "0x290afdae231a3fc0bbae8b1af63698b0a1d79b21ad17df0342dfb952fe74f8e5",
341
+ "0x0000000000000000000000002ce1d0ffd7e869d9df33e28552b12ddded326706",
342
+ "0x0100015d8d86d1186371d7c8640f30b64d416b1bd95d7fd3d64d2528a43770d8",
343
+ "0x0000000000000000000000005d5334dba9c727ed81b549b6106ae37ea137076d"
344
+ ],
345
+ "data": "0x",
346
+ "logIndex": 1,
347
+ "blockHash": "0x990c8d8bafdf793d01f34d9daf8c73c574c82723a62814ade85f8c25e63d5230"
348
+ },
349
+ {
350
+ "transactionIndex": 0,
351
+ "blockNumber": 4487261,
352
+ "transactionHash": "0x0b4ca5877334ec777d1655edd542adbd56b7b030ee54d286845e790e6b48ea9a",
353
+ "address": "0x000000000000000000000000000000000000800A",
354
+ "topics": [
355
+ "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
356
+ "0x0000000000000000000000000000000000000000000000000000000000008001",
357
+ "0x0000000000000000000000002ce1d0ffd7e869d9df33e28552b12ddded326706"
358
+ ],
359
+ "data": "0x0000000000000000000000000000000000000000000000000000057b110a3d40",
360
+ "logIndex": 2,
361
+ "blockHash": "0x990c8d8bafdf793d01f34d9daf8c73c574c82723a62814ade85f8c25e63d5230"
362
+ }
363
+ ],
364
+ "blockNumber": 4487261,
365
+ "cumulativeGasUsed": "0",
366
+ "status": 1,
367
+ "byzantium": true
368
+ },
369
+ "args": ["Mountain Protocol USD", "USDM", 18],
370
+ "numDeployments": 1,
371
+ "solcInputHash": "c84b0f085ad65b3aa38a5f0d3790c387",
372
+ "metadata": {
373
+ "llvm_options": [],
374
+ "optimizer_settings": {
375
+ "is_debug_logging_enabled": false,
376
+ "is_fallback_to_size_enabled": false,
377
+ "is_verify_each_enabled": false,
378
+ "level_back_end": "Aggressive",
379
+ "level_middle_end": "Aggressive",
380
+ "level_middle_end_size": "Zero"
381
+ },
382
+ "solc_version": "0.8.25",
383
+ "solc_zkvm_edition": "1.0.1",
384
+ "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}",
385
+ "zk_version": "1.5.3"
386
+ },
387
+ "bytecode": "0x0009000000000002000000000801034f00000000010800190000006001100270000001230110019700000001002001900000001c0000c13d0000008002000039000000400020043f000000040010008c0000003d0000413d000000000208043b000000e0022002700000012a0020009c0000003f0000213d000001320020009c000000800000213d000001360020009c000001730000613d000001370020009c0000021e0000613d000001380020009c0000003d0000c13d0000000001000416000000000001004b0000003d0000c13d00000002010000390000023a0000013d000000a003000039000000400030043f0000000002000416000000000002004b0000003d0000c13d0000001f021000390000012402200197000000a002200039000000400020043f0000001f0410018f0000012505100198000000a0025000390000002e0000613d000000000608034f000000006706043c0000000003730436000000000023004b0000002a0000c13d000000000004004b0000003b0000613d000000000358034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000600010008c000000670000813d000000000100001900000489000104300000012b0020009c000000b60000213d0000012f0020009c000001880000613d000001300020009c0000022c0000613d000001310020009c0000003d0000c13d0000000001000416000000000001004b0000003d0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001820000c13d000000800010043f000000000005004b000002640000613d000000000030043f000000020020008c000002990000413d000001410200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000005e0000413d000002b00000013d000000a00400043d000001260040009c0000003d0000213d0000001f02400039000000000012004b000000000300001900000127030080410000012702200197000000000002004b00000000050000190000012705004041000001270020009c000000000503c019000000000005004b0000003d0000c13d000000a0024000390000000003020433000001260030009c000000d60000a13d0000014601000041000000000010043f0000004101000039000000040010043f00000147010000410000048900010430000001330020009c0000019c0000613d000001340020009c0000023e0000613d000001350020009c0000003d0000c13d000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c700008010020000390006000000080353048704820000040f000000060300035f00000001002001900000003d0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000002401300370000000000101043b000600000001001d0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000101041a0000000602000029000000000021001a0000036f0000413d00000000032100190000029b0000013d0000012c0020009c000001df0000613d0000012d0020009c0000024c0000613d0000012e0020009c0000003d0000c13d000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000001390010009c0000003d0000213d0000002402800370000000000302043b000001390030009c0000003d0000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019000700000003001d048704550000040f0000000702000029000000000020043f000000200010043f00000000010000190000004002000039000002390000013d0000001f023000390000014b022001970000003f022000390000014b02200197000000400900043d0000000005290019000000000095004b00000000020000390000000102004039000001260050009c0000007a0000213d00000001002001900000007a0000c13d000000a002100039000000400050043f000000000a390436000000c0044000390000000005430019000000000025004b0000003d0000213d000000000003004b000000f40000613d000000000500001900000000065a00190000000007450019000000000707043300000000007604350000002005500039000000000035004b000000ed0000413d000000000393001900000020033000390000000000030435000000c00300043d000001260030009c0000003d0000213d0000001f04300039000000000014004b000000000100001900000127010080410000012704400197000000000004004b00000000050000190000012705004041000001270040009c000000000501c019000000000005004b0000003d0000c13d000000a0013000390000000001010433000001260010009c0000007a0000213d0000001f041000390000014b044001970000003f044000390000014b04400197000000400600043d0000000004460019000000000064004b00000000050000390000000105004039000001260040009c0000007a0000213d00000001005001900000007a0000c13d000000400040043f0000000007160436000000c0033000390000000004310019000000000024004b0000003d0000213d000000000001004b000001270000613d000000000200001900000000042700190000000005320019000000000505043300000000005404350000002002200039000000000012004b000001200000413d000000000161001900000020011000390000000000010435000000e00300043d000000ff0030008c0000003d0000213d0000000001090433000001260010009c0000007a0000213d000700000001001d00050000000a001d000600000009001d0000000301000039000000000101041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000010000390000000101002039000000000012004b000001820000c13d000100000007001d000200000003001d000400000006001d000300000004001d000000200040008c0000015f0000413d0000000301000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f00000001002001900000003d0000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000015f0000813d000000000002041b0000000102200039000000000012004b0000015b0000413d00000007010000290000001f0010008c000002cd0000a13d0000000301000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f0000000100200190000000200200008a0000003d0000613d0000000702200180000000000101043b000002da0000c13d0000002003000039000002e70000013d0000000001000416000000000001004b0000003d0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000002610000613d0000014601000041000000000010043f0000002201000039000000040010043f00000147010000410000048900010430000000240010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000401043b0000000003000411000000000003004b0000026a0000c13d0000013f01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000014401000041000000c40010043f00000145010000410000048900010430000000640010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000301043b000001390030009c0000003d0000213d0000002401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000004401800370000000000101043b000500000001001d000000000030043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039000600000003001d048704820000040f00000001002001900000003d0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f000000060400002900000001002001900000003d0000613d000000000101043b000000000101041a0000014c0010009c000002c80000613d000000050310006c000002c40000813d000000400100043d00000044021000390000014803000041000000000032043500000024021000390000001d0300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000149011001c70000048900010430000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000002401800370000000000101043b000600000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000101041a000000060310006c0000029b0000813d000000400100043d00000064021000390000013d03000041000000000032043500000044021000390000013e0300004100000000003204350000002402100039000000250300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c70000048900010430000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000201043b000001390020009c0000003d0000213d0000002401800370000000000301043b00000000010004110487038a0000040f000002590000013d000000240010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000001390010009c0000003d0000213d000000000010043f000000200000043f00000040020000390000000001000019048704550000040f000000000101041a000000800010043f0000013a01000041000004880001042e0000000001000416000000000001004b0000003d0000c13d0000000001000412000900000001001d000800000000003d0000000001000415000000090110008a00000005011002100487046a0000040f000000ff0110018f000000800010043f0000013a01000041000004880001042e000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000201043b000001390020009c0000003d0000213d0000002401800370000000000301043b0000000001000411048703e10000040f0000000101000039000000400200043d0000000000120435000001230020009c000001230200804100000040012002100000013b011001c7000004880001042e000000800010043f000000000005004b000002960000c13d0000014d01200197000000a00010043f000000000004004b000000c001000039000000a001006039000002b10000013d0000000201000039000000000201041a000000000042001a0000036f0000413d000700000004001d0000000002420019000000000021041b000000000030043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000201041a00000007030000290000000002320019000000000021041b000000400100043d0000000000310435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014304000041000000000500001900000000060004110487047d0000040f00000001002001900000003d0000613d0000000001000019000004880001042e000000000030043f000000020020008c000002a60000813d0000002001000039000002b50000013d000000000100041100000007020000290487038a0000040f000000400100043d00000001020000390000000000210435000001230010009c000001230100804100000040011002100000013b011001c7000004880001042e0000014a0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002a80000413d000000c001300039000000610110008a0000014b01100197000001420010009c0000007a0000213d0000008001100039000700000001001d000000400010043f0000008002000039048703750000040f00000007020000290000000001210049000001230010009c00000123010080410000006001100210000001230020009c00000123020080410000004002200210000000000121019f000004880001042e000000000104001900000000020004110487038a0000040f0000000604000029000000000104001900000007020000290000000503000029048703e10000040f0000029e0000013d000000070000006b0000000001000019000002d20000613d00000005010000290000000001010433000000070400002900000003024002100000014c0220027f0000014c02200167000000000121016f0000000102400210000000000121019f000002f50000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000060600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000002e00000c13d000000070020006c000002f20000813d00000007020000290000000302200210000000f80220018f0000014c0220027f0000014c0220016700000006033000290000000003030433000000000223016f000000000021041b0000000701000029000000010110021000000001011001bf0000000302000039000000000012041b00000004010000290000000001010433000700000001001d000001260010009c0000007a0000213d0000000401000039000000000101041a000000010010019000000001021002700000007f0220618f000600000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000001820000c13d0000000601000029000000200010008c000003270000413d0000000401000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f00000001002001900000003d0000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000006010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000003270000813d000000000002041b0000000102200039000000000012004b000003230000413d00000007010000290000001f0010008c0000033b0000a13d0000000401000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f0000000100200190000000200200008a0000003d0000613d0000000702200180000000000101043b000003470000c13d0000002003000039000003540000013d000000070000006b0000000001000019000003400000613d00000001010000290000000001010433000000070400002900000003024002100000014c0220027f0000014c02200167000000000121016f0000000102400210000003620000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000040600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000034d0000c13d000000070020006c0000035f0000813d00000007020000290000000302200210000000f80220018f0000014c0220027f0000014c0220016700000004033000290000000003030433000000000223016f000000000021041b000000070100002900000001011002100000000102000039000000000121019f0000000402000039000000000012041b0000000201000029000000800010043f0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000012901000041000004880001042e0000014601000041000000000010043f0000001101000039000000040010043f0000014701000041000004890001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000003840000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000037d0000413d000000000321001900000000000304350000001f022000390000014b022001970000000001210019000000000001042d00030000000000020000013901100198000003c30000613d000200000003001d000301390020019c000003cd0000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000000303000029000003c10000613d000000000101043b000000000030043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000003060000290000000100200190000003c10000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014e0400004100000001050000290487047d0000040f0000000100200190000003c10000613d000000000001042d00000000010000190000048900010430000000400100043d00000064021000390000015103000041000000000032043500000044021000390000015203000041000000000032043500000024021000390000002403000039000003d60000013d000000400100043d00000064021000390000014f0300004100000000003204350000004402100039000001500300004100000000003204350000002402100039000000220300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c700000489000104300004000000000002000400000003001d00000139011001980000042c0000613d000201390020019c000004360000613d000300000001001d000000000010043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b000000000101041a0001000400100074000004400000413d0000000301000029000000000010043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014304000041000000030500002900000002060000290487047d0000040f00000001002001900000042a0000613d000000000001042d00000000010000190000048900010430000000400100043d00000064021000390000015703000041000000000032043500000044021000390000015803000041000000000032043500000024021000390000002503000039000004490000013d000000400100043d00000064021000390000015503000041000000000032043500000044021000390000015603000041000000000032043500000024021000390000002303000039000004490000013d000000400100043d0000006402100039000001530300004100000000003204350000004402100039000001540300004100000000003204350000002402100039000000260300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c70000048900010430000000000001042f000001230010009c00000123010080410000004001100210000001230020009c00000123020080410000006002200210000000000112019f0000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000159011001c70000801002000039048704820000040f0000000100200190000004680000613d000000000101043b000000000001042d000000000100001900000489000104300000015a020000410000000000200443000000050110027000000000020100310000000400200443000000010101003100000024001004430000000001000414000001230010009c0000012301008041000000c0011002100000015b011001c70000800502000039048704820000040f00000001002001900000047c0000613d000000000101043b000000000001042d000000000001042f00000480002104210000000102000039000000000001042d0000000002000019000000000001042d00000485002104230000000102000039000000000001042d0000000002000019000000000001042d0000048700000432000004880001042e00000489000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff800000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000200000000000000000000000000000000200000000000000000000000000000080000001000000000000000000000000000000000000000000000000000000000000000000000000005791589600000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000579158970000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000200000000000000000000000000200000000000000000000000000000000000040000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7708c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b000000000000000000000000000000000000000000000000ffffffffffffff7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206d696e7420746f20746865207a65726f20616464726573730000000000000000000000000000000000000000640000008000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e63650000000000000000000000000000000000000000000064000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061640200000000000000000000000000000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000006c6ab6f0804a9f9f96765d9821a4921ab51809b984aa61941dfca2f62f59688b",
388
+ "deployedBytecode": "0x0009000000000002000000000801034f00000000010800190000006001100270000001230110019700000001002001900000001c0000c13d0000008002000039000000400020043f000000040010008c0000003d0000413d000000000208043b000000e0022002700000012a0020009c0000003f0000213d000001320020009c000000800000213d000001360020009c000001730000613d000001370020009c0000021e0000613d000001380020009c0000003d0000c13d0000000001000416000000000001004b0000003d0000c13d00000002010000390000023a0000013d000000a003000039000000400030043f0000000002000416000000000002004b0000003d0000c13d0000001f021000390000012402200197000000a002200039000000400020043f0000001f0410018f0000012505100198000000a0025000390000002e0000613d000000000608034f000000006706043c0000000003730436000000000023004b0000002a0000c13d000000000004004b0000003b0000613d000000000358034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000600010008c000000670000813d000000000100001900000489000104300000012b0020009c000000b60000213d0000012f0020009c000001880000613d000001300020009c0000022c0000613d000001310020009c0000003d0000c13d0000000001000416000000000001004b0000003d0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001820000c13d000000800010043f000000000005004b000002640000613d000000000030043f000000020020008c000002990000413d000001410200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000005e0000413d000002b00000013d000000a00400043d000001260040009c0000003d0000213d0000001f02400039000000000012004b000000000300001900000127030080410000012702200197000000000002004b00000000050000190000012705004041000001270020009c000000000503c019000000000005004b0000003d0000c13d000000a0024000390000000003020433000001260030009c000000d60000a13d0000014601000041000000000010043f0000004101000039000000040010043f00000147010000410000048900010430000001330020009c0000019c0000613d000001340020009c0000023e0000613d000001350020009c0000003d0000c13d000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c700008010020000390006000000080353048704820000040f000000060300035f00000001002001900000003d0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000002401300370000000000101043b000600000001001d0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000101041a0000000602000029000000000021001a0000036f0000413d00000000032100190000029b0000013d0000012c0020009c000001df0000613d0000012d0020009c0000024c0000613d0000012e0020009c0000003d0000c13d000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000001390010009c0000003d0000213d0000002402800370000000000302043b000001390030009c0000003d0000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019000700000003001d048704550000040f0000000702000029000000000020043f000000200010043f00000000010000190000004002000039000002390000013d0000001f023000390000014b022001970000003f022000390000014b02200197000000400900043d0000000005290019000000000095004b00000000020000390000000102004039000001260050009c0000007a0000213d00000001002001900000007a0000c13d000000a002100039000000400050043f000000000a390436000000c0044000390000000005430019000000000025004b0000003d0000213d000000000003004b000000f40000613d000000000500001900000000065a00190000000007450019000000000707043300000000007604350000002005500039000000000035004b000000ed0000413d000000000393001900000020033000390000000000030435000000c00300043d000001260030009c0000003d0000213d0000001f04300039000000000014004b000000000100001900000127010080410000012704400197000000000004004b00000000050000190000012705004041000001270040009c000000000501c019000000000005004b0000003d0000c13d000000a0013000390000000001010433000001260010009c0000007a0000213d0000001f041000390000014b044001970000003f044000390000014b04400197000000400600043d0000000004460019000000000064004b00000000050000390000000105004039000001260040009c0000007a0000213d00000001005001900000007a0000c13d000000400040043f0000000007160436000000c0033000390000000004310019000000000024004b0000003d0000213d000000000001004b000001270000613d000000000200001900000000042700190000000005320019000000000505043300000000005404350000002002200039000000000012004b000001200000413d000000000161001900000020011000390000000000010435000000e00300043d000000ff0030008c0000003d0000213d0000000001090433000001260010009c0000007a0000213d000700000001001d00050000000a001d000600000009001d0000000301000039000000000101041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000010000390000000101002039000000000012004b000001820000c13d000100000007001d000200000003001d000400000006001d000300000004001d000000200040008c0000015f0000413d0000000301000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f00000001002001900000003d0000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000015f0000813d000000000002041b0000000102200039000000000012004b0000015b0000413d00000007010000290000001f0010008c000002cd0000a13d0000000301000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f0000000100200190000000200200008a0000003d0000613d0000000702200180000000000101043b000002da0000c13d0000002003000039000002e70000013d0000000001000416000000000001004b0000003d0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000002610000613d0000014601000041000000000010043f0000002201000039000000040010043f00000147010000410000048900010430000000240010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000401043b0000000003000411000000000003004b0000026a0000c13d0000013f01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000014401000041000000c40010043f00000145010000410000048900010430000000640010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000301043b000001390030009c0000003d0000213d0000002401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000004401800370000000000101043b000500000001001d000000000030043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039000600000003001d048704820000040f00000001002001900000003d0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f000000060400002900000001002001900000003d0000613d000000000101043b000000000101041a0000014c0010009c000002c80000613d000000050310006c000002c40000813d000000400100043d00000044021000390000014803000041000000000032043500000024021000390000001d0300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000149011001c70000048900010430000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000002401800370000000000101043b000600000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000101041a000000060310006c0000029b0000813d000000400100043d00000064021000390000013d03000041000000000032043500000044021000390000013e0300004100000000003204350000002402100039000000250300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c70000048900010430000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000201043b000001390020009c0000003d0000213d0000002401800370000000000301043b00000000010004110487038a0000040f000002590000013d000000240010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000001390010009c0000003d0000213d000000000010043f000000200000043f00000040020000390000000001000019048704550000040f000000000101041a000000800010043f0000013a01000041000004880001042e0000000001000416000000000001004b0000003d0000c13d0000000001000412000900000001001d000800000000003d0000000001000415000000090110008a00000005011002100487046a0000040f000000ff0110018f000000800010043f0000013a01000041000004880001042e000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000201043b000001390020009c0000003d0000213d0000002401800370000000000301043b0000000001000411048703e10000040f0000000101000039000000400200043d0000000000120435000001230020009c000001230200804100000040012002100000013b011001c7000004880001042e000000800010043f000000000005004b000002960000c13d0000014d01200197000000a00010043f000000000004004b000000c001000039000000a001006039000002b10000013d0000000201000039000000000201041a000000000042001a0000036f0000413d000700000004001d0000000002420019000000000021041b000000000030043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000201041a00000007030000290000000002320019000000000021041b000000400100043d0000000000310435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014304000041000000000500001900000000060004110487047d0000040f00000001002001900000003d0000613d0000000001000019000004880001042e000000000030043f000000020020008c000002a60000813d0000002001000039000002b50000013d000000000100041100000007020000290487038a0000040f000000400100043d00000001020000390000000000210435000001230010009c000001230100804100000040011002100000013b011001c7000004880001042e0000014a0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002a80000413d000000c001300039000000610110008a0000014b01100197000001420010009c0000007a0000213d0000008001100039000700000001001d000000400010043f0000008002000039048703750000040f00000007020000290000000001210049000001230010009c00000123010080410000006001100210000001230020009c00000123020080410000004002200210000000000121019f000004880001042e000000000104001900000000020004110487038a0000040f0000000604000029000000000104001900000007020000290000000503000029048703e10000040f0000029e0000013d000000070000006b0000000001000019000002d20000613d00000005010000290000000001010433000000070400002900000003024002100000014c0220027f0000014c02200167000000000121016f0000000102400210000000000121019f000002f50000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000060600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000002e00000c13d000000070020006c000002f20000813d00000007020000290000000302200210000000f80220018f0000014c0220027f0000014c0220016700000006033000290000000003030433000000000223016f000000000021041b0000000701000029000000010110021000000001011001bf0000000302000039000000000012041b00000004010000290000000001010433000700000001001d000001260010009c0000007a0000213d0000000401000039000000000101041a000000010010019000000001021002700000007f0220618f000600000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000001820000c13d0000000601000029000000200010008c000003270000413d0000000401000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f00000001002001900000003d0000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000006010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000003270000813d000000000002041b0000000102200039000000000012004b000003230000413d00000007010000290000001f0010008c0000033b0000a13d0000000401000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f0000000100200190000000200200008a0000003d0000613d0000000702200180000000000101043b000003470000c13d0000002003000039000003540000013d000000070000006b0000000001000019000003400000613d00000001010000290000000001010433000000070400002900000003024002100000014c0220027f0000014c02200167000000000121016f0000000102400210000003620000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000040600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000034d0000c13d000000070020006c0000035f0000813d00000007020000290000000302200210000000f80220018f0000014c0220027f0000014c0220016700000004033000290000000003030433000000000223016f000000000021041b000000070100002900000001011002100000000102000039000000000121019f0000000402000039000000000012041b0000000201000029000000800010043f0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000012901000041000004880001042e0000014601000041000000000010043f0000001101000039000000040010043f0000014701000041000004890001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000003840000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000037d0000413d000000000321001900000000000304350000001f022000390000014b022001970000000001210019000000000001042d00030000000000020000013901100198000003c30000613d000200000003001d000301390020019c000003cd0000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000000303000029000003c10000613d000000000101043b000000000030043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000003060000290000000100200190000003c10000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014e0400004100000001050000290487047d0000040f0000000100200190000003c10000613d000000000001042d00000000010000190000048900010430000000400100043d00000064021000390000015103000041000000000032043500000044021000390000015203000041000000000032043500000024021000390000002403000039000003d60000013d000000400100043d00000064021000390000014f0300004100000000003204350000004402100039000001500300004100000000003204350000002402100039000000220300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c700000489000104300004000000000002000400000003001d00000139011001980000042c0000613d000201390020019c000004360000613d000300000001001d000000000010043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b000000000101041a0001000400100074000004400000413d0000000301000029000000000010043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014304000041000000030500002900000002060000290487047d0000040f00000001002001900000042a0000613d000000000001042d00000000010000190000048900010430000000400100043d00000064021000390000015703000041000000000032043500000044021000390000015803000041000000000032043500000024021000390000002503000039000004490000013d000000400100043d00000064021000390000015503000041000000000032043500000044021000390000015603000041000000000032043500000024021000390000002303000039000004490000013d000000400100043d0000006402100039000001530300004100000000003204350000004402100039000001540300004100000000003204350000002402100039000000260300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c70000048900010430000000000001042f000001230010009c00000123010080410000004001100210000001230020009c00000123020080410000006002200210000000000112019f0000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000159011001c70000801002000039048704820000040f0000000100200190000004680000613d000000000101043b000000000001042d000000000100001900000489000104300000015a020000410000000000200443000000050110027000000000020100310000000400200443000000010101003100000024001004430000000001000414000001230010009c0000012301008041000000c0011002100000015b011001c70000800502000039048704820000040f00000001002001900000047c0000613d000000000101043b000000000001042d000000000001042f00000480002104210000000102000039000000000001042d0000000002000019000000000001042d00000485002104230000000102000039000000000001042d0000000002000019000000000001042d0000048700000432000004880001042e00000489000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff800000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000200000000000000000000000000000000200000000000000000000000000000080000001000000000000000000000000000000000000000000000000000000000000000000000000005791589600000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000579158970000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000200000000000000000000000000200000000000000000000000000000000000040000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7708c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b000000000000000000000000000000000000000000000000ffffffffffffff7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206d696e7420746f20746865207a65726f20616464726573730000000000000000000000000000000000000000640000008000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e63650000000000000000000000000000000000000000000064000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061640200000000000000000000000000000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000006c6ab6f0804a9f9f96765d9821a4921ab51809b984aa61941dfca2f62f59688b",
389
+ "devdoc": {
390
+ "events": {
391
+ "Approval(address,address,uint256)": {
392
+ "details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
393
+ },
394
+ "Transfer(address,address,uint256)": {
395
+ "details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
396
+ }
397
+ },
398
+ "kind": "dev",
399
+ "methods": {
400
+ "allowance(address,address)": {
401
+ "details": "See {IERC20-allowance}."
402
+ },
403
+ "approve(address,uint256)": {
404
+ "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."
405
+ },
406
+ "balanceOf(address)": {
407
+ "details": "See {IERC20-balanceOf}."
408
+ },
409
+ "decimals()": {
410
+ "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}."
411
+ },
412
+ "decreaseAllowance(address,uint256)": {
413
+ "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`."
414
+ },
415
+ "increaseAllowance(address,uint256)": {
416
+ "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."
417
+ },
418
+ "name()": {
419
+ "details": "Returns the name of the token."
420
+ },
421
+ "symbol()": {
422
+ "details": "Returns the symbol of the token, usually a shorter version of the name."
423
+ },
424
+ "totalSupply()": {
425
+ "details": "See {IERC20-totalSupply}."
426
+ },
427
+ "transfer(address,uint256)": {
428
+ "details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`."
429
+ },
430
+ "transferFrom(address,address,uint256)": {
431
+ "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`."
432
+ }
433
+ },
434
+ "version": 1
435
+ },
436
+ "userdoc": {
437
+ "kind": "user",
438
+ "methods": {},
439
+ "version": 1
440
+ },
441
+ "storageLayout": {
442
+ "storage": [
443
+ {
444
+ "astId": 4804,
445
+ "contract": "contracts/test/Mocks/MockToken.sol:MockToken",
446
+ "label": "_balances",
447
+ "offset": 0,
448
+ "slot": "0",
449
+ "type": "t_mapping(t_address,t_uint256)"
450
+ },
451
+ {
452
+ "astId": 4810,
453
+ "contract": "contracts/test/Mocks/MockToken.sol:MockToken",
454
+ "label": "_allowances",
455
+ "offset": 0,
456
+ "slot": "1",
457
+ "type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
458
+ },
459
+ {
460
+ "astId": 4812,
461
+ "contract": "contracts/test/Mocks/MockToken.sol:MockToken",
462
+ "label": "_totalSupply",
463
+ "offset": 0,
464
+ "slot": "2",
465
+ "type": "t_uint256"
466
+ },
467
+ {
468
+ "astId": 4814,
469
+ "contract": "contracts/test/Mocks/MockToken.sol:MockToken",
470
+ "label": "_name",
471
+ "offset": 0,
472
+ "slot": "3",
473
+ "type": "t_string_storage"
474
+ },
475
+ {
476
+ "astId": 4816,
477
+ "contract": "contracts/test/Mocks/MockToken.sol:MockToken",
478
+ "label": "_symbol",
479
+ "offset": 0,
480
+ "slot": "4",
481
+ "type": "t_string_storage"
482
+ }
483
+ ],
484
+ "types": {
485
+ "t_address": {
486
+ "encoding": "inplace",
487
+ "label": "address",
488
+ "numberOfBytes": "20"
489
+ },
490
+ "t_mapping(t_address,t_mapping(t_address,t_uint256))": {
491
+ "encoding": "mapping",
492
+ "key": "t_address",
493
+ "label": "mapping(address => mapping(address => uint256))",
494
+ "numberOfBytes": "32",
495
+ "value": "t_mapping(t_address,t_uint256)"
496
+ },
497
+ "t_mapping(t_address,t_uint256)": {
498
+ "encoding": "mapping",
499
+ "key": "t_address",
500
+ "label": "mapping(address => uint256)",
501
+ "numberOfBytes": "32",
502
+ "value": "t_uint256"
503
+ },
504
+ "t_string_storage": {
505
+ "encoding": "bytes",
506
+ "label": "string",
507
+ "numberOfBytes": "32"
508
+ },
509
+ "t_uint256": {
510
+ "encoding": "inplace",
511
+ "label": "uint256",
512
+ "numberOfBytes": "32"
513
+ }
514
+ }
515
+ },
516
+ "factoryDeps": [
517
+ "0x0009000000000002000000000801034f00000000010800190000006001100270000001230110019700000001002001900000001c0000c13d0000008002000039000000400020043f000000040010008c0000003d0000413d000000000208043b000000e0022002700000012a0020009c0000003f0000213d000001320020009c000000800000213d000001360020009c000001730000613d000001370020009c0000021e0000613d000001380020009c0000003d0000c13d0000000001000416000000000001004b0000003d0000c13d00000002010000390000023a0000013d000000a003000039000000400030043f0000000002000416000000000002004b0000003d0000c13d0000001f021000390000012402200197000000a002200039000000400020043f0000001f0410018f0000012505100198000000a0025000390000002e0000613d000000000608034f000000006706043c0000000003730436000000000023004b0000002a0000c13d000000000004004b0000003b0000613d000000000358034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000600010008c000000670000813d000000000100001900000489000104300000012b0020009c000000b60000213d0000012f0020009c000001880000613d000001300020009c0000022c0000613d000001310020009c0000003d0000c13d0000000001000416000000000001004b0000003d0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001820000c13d000000800010043f000000000005004b000002640000613d000000000030043f000000020020008c000002990000413d000001410200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b0000005e0000413d000002b00000013d000000a00400043d000001260040009c0000003d0000213d0000001f02400039000000000012004b000000000300001900000127030080410000012702200197000000000002004b00000000050000190000012705004041000001270020009c000000000503c019000000000005004b0000003d0000c13d000000a0024000390000000003020433000001260030009c000000d60000a13d0000014601000041000000000010043f0000004101000039000000040010043f00000147010000410000048900010430000001330020009c0000019c0000613d000001340020009c0000023e0000613d000001350020009c0000003d0000c13d000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c700008010020000390006000000080353048704820000040f000000060300035f00000001002001900000003d0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000002401300370000000000101043b000600000001001d0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000101041a0000000602000029000000000021001a0000036f0000413d00000000032100190000029b0000013d0000012c0020009c000001df0000613d0000012d0020009c0000024c0000613d0000012e0020009c0000003d0000c13d000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000001390010009c0000003d0000213d0000002402800370000000000302043b000001390030009c0000003d0000213d000000000010043f0000000101000039000000200010043f00000040020000390000000001000019000700000003001d048704550000040f0000000702000029000000000020043f000000200010043f00000000010000190000004002000039000002390000013d0000001f023000390000014b022001970000003f022000390000014b02200197000000400900043d0000000005290019000000000095004b00000000020000390000000102004039000001260050009c0000007a0000213d00000001002001900000007a0000c13d000000a002100039000000400050043f000000000a390436000000c0044000390000000005430019000000000025004b0000003d0000213d000000000003004b000000f40000613d000000000500001900000000065a00190000000007450019000000000707043300000000007604350000002005500039000000000035004b000000ed0000413d000000000393001900000020033000390000000000030435000000c00300043d000001260030009c0000003d0000213d0000001f04300039000000000014004b000000000100001900000127010080410000012704400197000000000004004b00000000050000190000012705004041000001270040009c000000000501c019000000000005004b0000003d0000c13d000000a0013000390000000001010433000001260010009c0000007a0000213d0000001f041000390000014b044001970000003f044000390000014b04400197000000400600043d0000000004460019000000000064004b00000000050000390000000105004039000001260040009c0000007a0000213d00000001005001900000007a0000c13d000000400040043f0000000007160436000000c0033000390000000004310019000000000024004b0000003d0000213d000000000001004b000001270000613d000000000200001900000000042700190000000005320019000000000505043300000000005404350000002002200039000000000012004b000001200000413d000000000161001900000020011000390000000000010435000000e00300043d000000ff0030008c0000003d0000213d0000000001090433000001260010009c0000007a0000213d000700000001001d00050000000a001d000600000009001d0000000301000039000000000101041a000000010210019000000001041002700000007f0440618f0000001f0040008c00000000010000390000000101002039000000000012004b000001820000c13d000100000007001d000200000003001d000400000006001d000300000004001d000000200040008c0000015f0000413d0000000301000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f00000001002001900000003d0000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000015f0000813d000000000002041b0000000102200039000000000012004b0000015b0000413d00000007010000290000001f0010008c000002cd0000a13d0000000301000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f0000000100200190000000200200008a0000003d0000613d0000000702200180000000000101043b000002da0000c13d0000002003000039000002e70000013d0000000001000416000000000001004b0000003d0000c13d0000000303000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000002610000613d0000014601000041000000000010043f0000002201000039000000040010043f00000147010000410000048900010430000000240010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000401043b0000000003000411000000000003004b0000026a0000c13d0000013f01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f0000014401000041000000c40010043f00000145010000410000048900010430000000640010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000301043b000001390030009c0000003d0000213d0000002401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000004401800370000000000101043b000500000001001d000000000030043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039000600000003001d048704820000040f00000001002001900000003d0000613d000000000101043b0000000002000411000000000020043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f000000060400002900000001002001900000003d0000613d000000000101043b000000000101041a0000014c0010009c000002c80000613d000000050310006c000002c40000813d000000400100043d00000044021000390000014803000041000000000032043500000024021000390000001d0300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000149011001c70000048900010430000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000700000001001d000001390010009c0000003d0000213d0000002401800370000000000101043b000600000001001d0000000001000411000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000101041a000000060310006c0000029b0000813d000000400100043d00000064021000390000013d03000041000000000032043500000044021000390000013e0300004100000000003204350000002402100039000000250300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c70000048900010430000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000201043b000001390020009c0000003d0000213d0000002401800370000000000301043b00000000010004110487038a0000040f000002590000013d000000240010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000101043b000001390010009c0000003d0000213d000000000010043f000000200000043f00000040020000390000000001000019048704550000040f000000000101041a000000800010043f0000013a01000041000004880001042e0000000001000416000000000001004b0000003d0000c13d0000000001000412000900000001001d000800000000003d0000000001000415000000090110008a00000005011002100487046a0000040f000000ff0110018f000000800010043f0000013a01000041000004880001042e000000440010008c0000003d0000413d0000000001000416000000000001004b0000003d0000c13d0000000401800370000000000201043b000001390020009c0000003d0000213d0000002401800370000000000301043b0000000001000411048703e10000040f0000000101000039000000400200043d0000000000120435000001230020009c000001230200804100000040012002100000013b011001c7000004880001042e000000800010043f000000000005004b000002960000c13d0000014d01200197000000a00010043f000000000004004b000000c001000039000000a001006039000002b10000013d0000000201000039000000000201041a000000000042001a0000036f0000413d000700000004001d0000000002420019000000000021041b000000000030043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000003d0000613d000000000101043b000000000201041a00000007030000290000000002320019000000000021041b000000400100043d0000000000310435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014304000041000000000500001900000000060004110487047d0000040f00000001002001900000003d0000613d0000000001000019000004880001042e000000000030043f000000020020008c000002a60000813d0000002001000039000002b50000013d000000000100041100000007020000290487038a0000040f000000400100043d00000001020000390000000000210435000001230010009c000001230100804100000040011002100000013b011001c7000004880001042e0000014a0200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000014004b000002a80000413d000000c001300039000000610110008a0000014b01100197000001420010009c0000007a0000213d0000008001100039000700000001001d000000400010043f0000008002000039048703750000040f00000007020000290000000001210049000001230010009c00000123010080410000006001100210000001230020009c00000123020080410000004002200210000000000121019f000004880001042e000000000104001900000000020004110487038a0000040f0000000604000029000000000104001900000007020000290000000503000029048703e10000040f0000029e0000013d000000070000006b0000000001000019000002d20000613d00000005010000290000000001010433000000070400002900000003024002100000014c0220027f0000014c02200167000000000121016f0000000102400210000000000121019f000002f50000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000060600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000002e00000c13d000000070020006c000002f20000813d00000007020000290000000302200210000000f80220018f0000014c0220027f0000014c0220016700000006033000290000000003030433000000000223016f000000000021041b0000000701000029000000010110021000000001011001bf0000000302000039000000000012041b00000004010000290000000001010433000700000001001d000001260010009c0000007a0000213d0000000401000039000000000101041a000000010010019000000001021002700000007f0220618f000600000002001d0000001f0020008c00000000020000390000000102002039000000000121013f0000000100100190000001820000c13d0000000601000029000000200010008c000003270000413d0000000401000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f00000001002001900000003d0000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000006010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000003270000813d000000000002041b0000000102200039000000000012004b000003230000413d00000007010000290000001f0010008c0000033b0000a13d0000000401000039000000000010043f0000000001000414000001230010009c0000012301008041000000c00110021000000128011001c70000801002000039048704820000040f0000000100200190000000200200008a0000003d0000613d0000000702200180000000000101043b000003470000c13d0000002003000039000003540000013d000000070000006b0000000001000019000003400000613d00000001010000290000000001010433000000070400002900000003024002100000014c0220027f0000014c02200167000000000121016f0000000102400210000003620000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000040600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b0000034d0000c13d000000070020006c0000035f0000813d00000007020000290000000302200210000000f80220018f0000014c0220027f0000014c0220016700000004033000290000000003030433000000000223016f000000000021041b000000070100002900000001011002100000000102000039000000000121019f0000000402000039000000000012041b0000000201000029000000800010043f0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000012901000041000004880001042e0000014601000041000000000010043f0000001101000039000000040010043f0000014701000041000004890001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000003840000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b0000037d0000413d000000000321001900000000000304350000001f022000390000014b022001970000000001210019000000000001042d00030000000000020000013901100198000003c30000613d000200000003001d000301390020019c000003cd0000613d000100000001001d000000000010043f0000000101000039000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000000303000029000003c10000613d000000000101043b000000000030043f000000200010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000003060000290000000100200190000003c10000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014e0400004100000001050000290487047d0000040f0000000100200190000003c10000613d000000000001042d00000000010000190000048900010430000000400100043d00000064021000390000015103000041000000000032043500000044021000390000015203000041000000000032043500000024021000390000002403000039000003d60000013d000000400100043d00000064021000390000014f0300004100000000003204350000004402100039000001500300004100000000003204350000002402100039000000220300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c700000489000104300004000000000002000400000003001d00000139011001980000042c0000613d000201390020019c000004360000613d000300000001001d000000000010043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b000000000101041a0001000400100074000004400000413d0000000301000029000000000010043f000000200000043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b0000000102000029000000000021041b0000000201000029000000000010043f0000000001000414000001230010009c0000012301008041000000c0011002100000013c011001c70000801002000039048704820000040f00000001002001900000042a0000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000001230010009c000001230100804100000040011002100000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000128011001c70000800d0200003900000003030000390000014304000041000000030500002900000002060000290487047d0000040f00000001002001900000042a0000613d000000000001042d00000000010000190000048900010430000000400100043d00000064021000390000015703000041000000000032043500000044021000390000015803000041000000000032043500000024021000390000002503000039000004490000013d000000400100043d00000064021000390000015503000041000000000032043500000044021000390000015603000041000000000032043500000024021000390000002303000039000004490000013d000000400100043d0000006402100039000001530300004100000000003204350000004402100039000001540300004100000000003204350000002402100039000000260300003900000000003204350000013f020000410000000000210435000000040210003900000020030000390000000000320435000001230010009c0000012301008041000000400110021000000140011001c70000048900010430000000000001042f000001230010009c00000123010080410000004001100210000001230020009c00000123020080410000006002200210000000000112019f0000000002000414000001230020009c0000012302008041000000c002200210000000000112019f00000159011001c70000801002000039048704820000040f0000000100200190000004680000613d000000000101043b000000000001042d000000000100001900000489000104300000015a020000410000000000200443000000050110027000000000020100310000000400200443000000010101003100000024001004430000000001000414000001230010009c0000012301008041000000c0011002100000015b011001c70000800502000039048704820000040f00000001002001900000047c0000613d000000000101043b000000000001042d000000000001042f00000480002104210000000102000039000000000001042d0000000002000019000000000001042d00000485002104230000000102000039000000000001042d0000000002000019000000000001042d0000048700000432000004880001042e00000489000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff800000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000200000000000000000000000000000000200000000000000000000000000000080000001000000000000000000000000000000000000000000000000000000000000000000000000005791589600000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000579158970000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000200000000000000000000000000200000000000000000000000000000000000040000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7708c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b000000000000000000000000000000000000000000000000ffffffffffffff7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206d696e7420746f20746865207a65726f20616464726573730000000000000000000000000000000000000000640000008000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e63650000000000000000000000000000000000000000000064000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061640200000000000000000000000000000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000006c6ab6f0804a9f9f96765d9821a4921ab51809b984aa61941dfca2f62f59688b"
518
+ ]
519
+ }