Skip to content

Instantly share code, notes, and snippets.

@Pandapip1
Created October 21, 2021 18:53
Show Gist options
  • Save Pandapip1/f2532ff98a6ce2016725a99cf753a754 to your computer and use it in GitHub Desktop.
Save Pandapip1/f2532ff98a6ce2016725a99cf753a754 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
pragma solidity ^0.8.0;
/**
* Smart contract library of mathematical functions operating with signed
* 64.64-bit fixed point numbers. Signed 64.64-bit fixed point number is
* basically a simple fraction whose numerator is signed 128-bit integer and
* denominator is 2^64. As long as denominator is always the same, there is no
* need to store it, thus in Solidity signed 64.64-bit fixed point numbers are
* represented by int128 type holding only the numerator.
*/
library ABDKMath64x64 {
/*
* Minimum value signed 64.64-bit fixed point number may have.
*/
int128 private constant MIN_64x64 = -0x80000000000000000000000000000000;
/*
* Maximum value signed 64.64-bit fixed point number may have.
*/
int128 private constant MAX_64x64 = 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF;
/**
* Convert signed 256-bit integer number into signed 64.64-bit fixed point
* number. Revert on overflow.
*
* @param x signed 256-bit integer number
* @return signed 64.64-bit fixed point number
*/
function fromInt (int256 x) internal pure returns (int128) {
unchecked {
require (x >= -0x8000000000000000 && x <= 0x7FFFFFFFFFFFFFFF);
return int128 (x << 64);
}
}
/**
* Convert signed 64.64 fixed point number into signed 64-bit integer number
* rounding down.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64-bit integer number
*/
function toInt (int128 x) internal pure returns (int64) {
unchecked {
return int64 (x >> 64);
}
}
/**
* Convert unsigned 256-bit integer number into signed 64.64-bit fixed point
* number. Revert on overflow.
*
* @param x unsigned 256-bit integer number
* @return signed 64.64-bit fixed point number
*/
function fromUInt (uint256 x) internal pure returns (int128) {
unchecked {
require (x <= 0x7FFFFFFFFFFFFFFF);
return int128 (int256 (x << 64));
}
}
/**
* Convert signed 64.64 fixed point number into unsigned 64-bit integer
* number rounding down. Revert on underflow.
*
* @param x signed 64.64-bit fixed point number
* @return unsigned 64-bit integer number
*/
function toUInt (int128 x) internal pure returns (uint64) {
unchecked {
require (x >= 0);
return uint64 (uint128 (x >> 64));
}
}
/**
* Convert signed 128.128 fixed point number into signed 64.64-bit fixed point
* number rounding down. Revert on overflow.
*
* @param x signed 128.128-bin fixed point number
* @return signed 64.64-bit fixed point number
*/
function from128x128 (int256 x) internal pure returns (int128) {
unchecked {
int256 result = x >> 64;
require (result >= MIN_64x64 && result <= MAX_64x64);
return int128 (result);
}
}
/**
* Convert signed 64.64 fixed point number into signed 128.128 fixed point
* number.
*
* @param x signed 64.64-bit fixed point number
* @return signed 128.128 fixed point number
*/
function to128x128 (int128 x) internal pure returns (int256) {
unchecked {
return int256 (x) << 64;
}
}
/**
* Calculate x + y. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @param y signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function add (int128 x, int128 y) internal pure returns (int128) {
unchecked {
int256 result = int256(x) + y;
require (result >= MIN_64x64 && result <= MAX_64x64);
return int128 (result);
}
}
/**
* Calculate x - y. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @param y signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function sub (int128 x, int128 y) internal pure returns (int128) {
unchecked {
int256 result = int256(x) - y;
require (result >= MIN_64x64 && result <= MAX_64x64);
return int128 (result);
}
}
/**
* Calculate x * y rounding down. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @param y signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function mul (int128 x, int128 y) internal pure returns (int128) {
unchecked {
int256 result = int256(x) * y >> 64;
require (result >= MIN_64x64 && result <= MAX_64x64);
return int128 (result);
}
}
/**
* Calculate x * y rounding towards zero, where x is signed 64.64 fixed point
* number and y is signed 256-bit integer number. Revert on overflow.
*
* @param x signed 64.64 fixed point number
* @param y signed 256-bit integer number
* @return signed 256-bit integer number
*/
function muli (int128 x, int256 y) internal pure returns (int256) {
unchecked {
if (x == MIN_64x64) {
require (y >= -0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF &&
y <= 0x1000000000000000000000000000000000000000000000000);
return -y << 63;
} else {
bool negativeResult = false;
if (x < 0) {
x = -x;
negativeResult = true;
}
if (y < 0) {
y = -y; // We rely on overflow behavior here
negativeResult = !negativeResult;
}
uint256 absoluteResult = mulu (x, uint256 (y));
if (negativeResult) {
require (absoluteResult <=
0x8000000000000000000000000000000000000000000000000000000000000000);
return -int256 (absoluteResult); // We rely on overflow behavior here
} else {
require (absoluteResult <=
0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
return int256 (absoluteResult);
}
}
}
}
/**
* Calculate x * y rounding down, where x is signed 64.64 fixed point number
* and y is unsigned 256-bit integer number. Revert on overflow.
*
* @param x signed 64.64 fixed point number
* @param y unsigned 256-bit integer number
* @return unsigned 256-bit integer number
*/
function mulu (int128 x, uint256 y) internal pure returns (uint256) {
unchecked {
if (y == 0) return 0;
require (x >= 0);
uint256 lo = (uint256 (int256 (x)) * (y & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)) >> 64;
uint256 hi = uint256 (int256 (x)) * (y >> 128);
require (hi <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
hi <<= 64;
require (hi <=
0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF - lo);
return hi + lo;
}
}
/**
* Calculate x / y rounding towards zero. Revert on overflow or when y is
* zero.
*
* @param x signed 64.64-bit fixed point number
* @param y signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function div (int128 x, int128 y) internal pure returns (int128) {
unchecked {
require (y != 0);
int256 result = (int256 (x) << 64) / y;
require (result >= MIN_64x64 && result <= MAX_64x64);
return int128 (result);
}
}
/**
* Calculate x / y rounding towards zero, where x and y are signed 256-bit
* integer numbers. Revert on overflow or when y is zero.
*
* @param x signed 256-bit integer number
* @param y signed 256-bit integer number
* @return signed 64.64-bit fixed point number
*/
function divi (int256 x, int256 y) internal pure returns (int128) {
unchecked {
require (y != 0);
bool negativeResult = false;
if (x < 0) {
x = -x; // We rely on overflow behavior here
negativeResult = true;
}
if (y < 0) {
y = -y; // We rely on overflow behavior here
negativeResult = !negativeResult;
}
uint128 absoluteResult = divuu (uint256 (x), uint256 (y));
if (negativeResult) {
require (absoluteResult <= 0x80000000000000000000000000000000);
return -int128 (absoluteResult); // We rely on overflow behavior here
} else {
require (absoluteResult <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
return int128 (absoluteResult); // We rely on overflow behavior here
}
}
}
/**
* Calculate x / y rounding towards zero, where x and y are unsigned 256-bit
* integer numbers. Revert on overflow or when y is zero.
*
* @param x unsigned 256-bit integer number
* @param y unsigned 256-bit integer number
* @return signed 64.64-bit fixed point number
*/
function divu (uint256 x, uint256 y) internal pure returns (int128) {
unchecked {
require (y != 0);
uint128 result = divuu (x, y);
require (result <= uint128 (MAX_64x64));
return int128 (result);
}
}
/**
* Calculate -x. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function neg (int128 x) internal pure returns (int128) {
unchecked {
require (x != MIN_64x64);
return -x;
}
}
/**
* Calculate |x|. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function abs (int128 x) internal pure returns (int128) {
unchecked {
require (x != MIN_64x64);
return x < 0 ? -x : x;
}
}
/**
* Calculate 1 / x rounding towards zero. Revert on overflow or when x is
* zero.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function inv (int128 x) internal pure returns (int128) {
unchecked {
require (x != 0);
int256 result = int256 (0x100000000000000000000000000000000) / x;
require (result >= MIN_64x64 && result <= MAX_64x64);
return int128 (result);
}
}
/**
* Calculate arithmetics average of x and y, i.e. (x + y) / 2 rounding down.
*
* @param x signed 64.64-bit fixed point number
* @param y signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function avg (int128 x, int128 y) internal pure returns (int128) {
unchecked {
return int128 ((int256 (x) + int256 (y)) >> 1);
}
}
/**
* Calculate geometric average of x and y, i.e. sqrt (x * y) rounding down.
* Revert on overflow or in case x * y is negative.
*
* @param x signed 64.64-bit fixed point number
* @param y signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function gavg (int128 x, int128 y) internal pure returns (int128) {
unchecked {
int256 m = int256 (x) * int256 (y);
require (m >= 0);
require (m <
0x4000000000000000000000000000000000000000000000000000000000000000);
return int128 (sqrtu (uint256 (m)));
}
}
/**
* Calculate x^y assuming 0^0 is 1, where x is signed 64.64 fixed point number
* and y is unsigned 256-bit integer number. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @param y uint256 value
* @return signed 64.64-bit fixed point number
*/
function pow (int128 x, uint256 y) internal pure returns (int128) {
unchecked {
bool negative = x < 0 && y & 1 == 1;
uint256 absX = uint128 (x < 0 ? -x : x);
uint256 absResult;
absResult = 0x100000000000000000000000000000000;
if (absX <= 0x10000000000000000) {
absX <<= 63;
while (y != 0) {
if (y & 0x1 != 0) {
absResult = absResult * absX >> 127;
}
absX = absX * absX >> 127;
if (y & 0x2 != 0) {
absResult = absResult * absX >> 127;
}
absX = absX * absX >> 127;
if (y & 0x4 != 0) {
absResult = absResult * absX >> 127;
}
absX = absX * absX >> 127;
if (y & 0x8 != 0) {
absResult = absResult * absX >> 127;
}
absX = absX * absX >> 127;
y >>= 4;
}
absResult >>= 64;
} else {
uint256 absXShift = 63;
if (absX < 0x1000000000000000000000000) { absX <<= 32; absXShift -= 32; }
if (absX < 0x10000000000000000000000000000) { absX <<= 16; absXShift -= 16; }
if (absX < 0x1000000000000000000000000000000) { absX <<= 8; absXShift -= 8; }
if (absX < 0x10000000000000000000000000000000) { absX <<= 4; absXShift -= 4; }
if (absX < 0x40000000000000000000000000000000) { absX <<= 2; absXShift -= 2; }
if (absX < 0x80000000000000000000000000000000) { absX <<= 1; absXShift -= 1; }
uint256 resultShift = 0;
while (y != 0) {
require (absXShift < 64);
if (y & 0x1 != 0) {
absResult = absResult * absX >> 127;
resultShift += absXShift;
if (absResult > 0x100000000000000000000000000000000) {
absResult >>= 1;
resultShift += 1;
}
}
absX = absX * absX >> 127;
absXShift <<= 1;
if (absX >= 0x100000000000000000000000000000000) {
absX >>= 1;
absXShift += 1;
}
y >>= 1;
}
require (resultShift < 64);
absResult >>= 64 - resultShift;
}
int256 result = negative ? -int256 (absResult) : int256 (absResult);
require (result >= MIN_64x64 && result <= MAX_64x64);
return int128 (result);
}
}
/**
* Calculate sqrt (x) rounding down. Revert if x < 0.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function sqrt (int128 x) internal pure returns (int128) {
unchecked {
require (x >= 0);
return int128 (sqrtu (uint256 (int256 (x)) << 64));
}
}
/**
* Calculate binary logarithm of x. Revert if x <= 0.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function log_2 (int128 x) internal pure returns (int128) {
unchecked {
require (x > 0);
int256 msb = 0;
int256 xc = x;
if (xc >= 0x10000000000000000) { xc >>= 64; msb += 64; }
if (xc >= 0x100000000) { xc >>= 32; msb += 32; }
if (xc >= 0x10000) { xc >>= 16; msb += 16; }
if (xc >= 0x100) { xc >>= 8; msb += 8; }
if (xc >= 0x10) { xc >>= 4; msb += 4; }
if (xc >= 0x4) { xc >>= 2; msb += 2; }
if (xc >= 0x2) msb += 1; // No need to shift xc anymore
int256 result = msb - 64 << 64;
uint256 ux = uint256 (int256 (x)) << uint256 (127 - msb);
for (int256 bit = 0x8000000000000000; bit > 0; bit >>= 1) {
ux *= ux;
uint256 b = ux >> 255;
ux >>= 127 + b;
result += bit * int256 (b);
}
return int128 (result);
}
}
/**
* Calculate natural logarithm of x. Revert if x <= 0.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function ln (int128 x) internal pure returns (int128) {
unchecked {
require (x > 0);
return int128 (int256 (
uint256 (int256 (log_2 (x))) * 0xB17217F7D1CF79ABC9E3B39803F2F6AF >> 128));
}
}
/**
* Calculate binary exponent of x. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function exp_2 (int128 x) internal pure returns (int128) {
unchecked {
require (x < 0x400000000000000000); // Overflow
if (x < -0x400000000000000000) return 0; // Underflow
uint256 result = 0x80000000000000000000000000000000;
if (x & 0x8000000000000000 > 0)
result = result * 0x16A09E667F3BCC908B2FB1366EA957D3E >> 128;
if (x & 0x4000000000000000 > 0)
result = result * 0x1306FE0A31B7152DE8D5A46305C85EDEC >> 128;
if (x & 0x2000000000000000 > 0)
result = result * 0x1172B83C7D517ADCDF7C8C50EB14A791F >> 128;
if (x & 0x1000000000000000 > 0)
result = result * 0x10B5586CF9890F6298B92B71842A98363 >> 128;
if (x & 0x800000000000000 > 0)
result = result * 0x1059B0D31585743AE7C548EB68CA417FD >> 128;
if (x & 0x400000000000000 > 0)
result = result * 0x102C9A3E778060EE6F7CACA4F7A29BDE8 >> 128;
if (x & 0x200000000000000 > 0)
result = result * 0x10163DA9FB33356D84A66AE336DCDFA3F >> 128;
if (x & 0x100000000000000 > 0)
result = result * 0x100B1AFA5ABCBED6129AB13EC11DC9543 >> 128;
if (x & 0x80000000000000 > 0)
result = result * 0x10058C86DA1C09EA1FF19D294CF2F679B >> 128;
if (x & 0x40000000000000 > 0)
result = result * 0x1002C605E2E8CEC506D21BFC89A23A00F >> 128;
if (x & 0x20000000000000 > 0)
result = result * 0x100162F3904051FA128BCA9C55C31E5DF >> 128;
if (x & 0x10000000000000 > 0)
result = result * 0x1000B175EFFDC76BA38E31671CA939725 >> 128;
if (x & 0x8000000000000 > 0)
result = result * 0x100058BA01FB9F96D6CACD4B180917C3D >> 128;
if (x & 0x4000000000000 > 0)
result = result * 0x10002C5CC37DA9491D0985C348C68E7B3 >> 128;
if (x & 0x2000000000000 > 0)
result = result * 0x1000162E525EE054754457D5995292026 >> 128;
if (x & 0x1000000000000 > 0)
result = result * 0x10000B17255775C040618BF4A4ADE83FC >> 128;
if (x & 0x800000000000 > 0)
result = result * 0x1000058B91B5BC9AE2EED81E9B7D4CFAB >> 128;
if (x & 0x400000000000 > 0)
result = result * 0x100002C5C89D5EC6CA4D7C8ACC017B7C9 >> 128;
if (x & 0x200000000000 > 0)
result = result * 0x10000162E43F4F831060E02D839A9D16D >> 128;
if (x & 0x100000000000 > 0)
result = result * 0x100000B1721BCFC99D9F890EA06911763 >> 128;
if (x & 0x80000000000 > 0)
result = result * 0x10000058B90CF1E6D97F9CA14DBCC1628 >> 128;
if (x & 0x40000000000 > 0)
result = result * 0x1000002C5C863B73F016468F6BAC5CA2B >> 128;
if (x & 0x20000000000 > 0)
result = result * 0x100000162E430E5A18F6119E3C02282A5 >> 128;
if (x & 0x10000000000 > 0)
result = result * 0x1000000B1721835514B86E6D96EFD1BFE >> 128;
if (x & 0x8000000000 > 0)
result = result * 0x100000058B90C0B48C6BE5DF846C5B2EF >> 128;
if (x & 0x4000000000 > 0)
result = result * 0x10000002C5C8601CC6B9E94213C72737A >> 128;
if (x & 0x2000000000 > 0)
result = result * 0x1000000162E42FFF037DF38AA2B219F06 >> 128;
if (x & 0x1000000000 > 0)
result = result * 0x10000000B17217FBA9C739AA5819F44F9 >> 128;
if (x & 0x800000000 > 0)
result = result * 0x1000000058B90BFCDEE5ACD3C1CEDC823 >> 128;
if (x & 0x400000000 > 0)
result = result * 0x100000002C5C85FE31F35A6A30DA1BE50 >> 128;
if (x & 0x200000000 > 0)
result = result * 0x10000000162E42FF0999CE3541B9FFFCF >> 128;
if (x & 0x100000000 > 0)
result = result * 0x100000000B17217F80F4EF5AADDA45554 >> 128;
if (x & 0x80000000 > 0)
result = result * 0x10000000058B90BFBF8479BD5A81B51AD >> 128;
if (x & 0x40000000 > 0)
result = result * 0x1000000002C5C85FDF84BD62AE30A74CC >> 128;
if (x & 0x20000000 > 0)
result = result * 0x100000000162E42FEFB2FED257559BDAA >> 128;
if (x & 0x10000000 > 0)
result = result * 0x1000000000B17217F7D5A7716BBA4A9AE >> 128;
if (x & 0x8000000 > 0)
result = result * 0x100000000058B90BFBE9DDBAC5E109CCE >> 128;
if (x & 0x4000000 > 0)
result = result * 0x10000000002C5C85FDF4B15DE6F17EB0D >> 128;
if (x & 0x2000000 > 0)
result = result * 0x1000000000162E42FEFA494F1478FDE05 >> 128;
if (x & 0x1000000 > 0)
result = result * 0x10000000000B17217F7D20CF927C8E94C >> 128;
if (x & 0x800000 > 0)
result = result * 0x1000000000058B90BFBE8F71CB4E4B33D >> 128;
if (x & 0x400000 > 0)
result = result * 0x100000000002C5C85FDF477B662B26945 >> 128;
if (x & 0x200000 > 0)
result = result * 0x10000000000162E42FEFA3AE53369388C >> 128;
if (x & 0x100000 > 0)
result = result * 0x100000000000B17217F7D1D351A389D40 >> 128;
if (x & 0x80000 > 0)
result = result * 0x10000000000058B90BFBE8E8B2D3D4EDE >> 128;
if (x & 0x40000 > 0)
result = result * 0x1000000000002C5C85FDF4741BEA6E77E >> 128;
if (x & 0x20000 > 0)
result = result * 0x100000000000162E42FEFA39FE95583C2 >> 128;
if (x & 0x10000 > 0)
result = result * 0x1000000000000B17217F7D1CFB72B45E1 >> 128;
if (x & 0x8000 > 0)
result = result * 0x100000000000058B90BFBE8E7CC35C3F0 >> 128;
if (x & 0x4000 > 0)
result = result * 0x10000000000002C5C85FDF473E242EA38 >> 128;
if (x & 0x2000 > 0)
result = result * 0x1000000000000162E42FEFA39F02B772C >> 128;
if (x & 0x1000 > 0)
result = result * 0x10000000000000B17217F7D1CF7D83C1A >> 128;
if (x & 0x800 > 0)
result = result * 0x1000000000000058B90BFBE8E7BDCBE2E >> 128;
if (x & 0x400 > 0)
result = result * 0x100000000000002C5C85FDF473DEA871F >> 128;
if (x & 0x200 > 0)
result = result * 0x10000000000000162E42FEFA39EF44D91 >> 128;
if (x & 0x100 > 0)
result = result * 0x100000000000000B17217F7D1CF79E949 >> 128;
if (x & 0x80 > 0)
result = result * 0x10000000000000058B90BFBE8E7BCE544 >> 128;
if (x & 0x40 > 0)
result = result * 0x1000000000000002C5C85FDF473DE6ECA >> 128;
if (x & 0x20 > 0)
result = result * 0x100000000000000162E42FEFA39EF366F >> 128;
if (x & 0x10 > 0)
result = result * 0x1000000000000000B17217F7D1CF79AFA >> 128;
if (x & 0x8 > 0)
result = result * 0x100000000000000058B90BFBE8E7BCD6D >> 128;
if (x & 0x4 > 0)
result = result * 0x10000000000000002C5C85FDF473DE6B2 >> 128;
if (x & 0x2 > 0)
result = result * 0x1000000000000000162E42FEFA39EF358 >> 128;
if (x & 0x1 > 0)
result = result * 0x10000000000000000B17217F7D1CF79AB >> 128;
result >>= uint256 (int256 (63 - (x >> 64)));
require (result <= uint256 (int256 (MAX_64x64)));
return int128 (int256 (result));
}
}
/**
* Calculate natural exponent of x. Revert on overflow.
*
* @param x signed 64.64-bit fixed point number
* @return signed 64.64-bit fixed point number
*/
function exp (int128 x) internal pure returns (int128) {
unchecked {
require (x < 0x400000000000000000); // Overflow
if (x < -0x400000000000000000) return 0; // Underflow
return exp_2 (
int128 (int256 (x) * 0x171547652B82FE1777D0FFDA0D23A7D12 >> 128));
}
}
/**
* Calculate x / y rounding towards zero, where x and y are unsigned 256-bit
* integer numbers. Revert on overflow or when y is zero.
*
* @param x unsigned 256-bit integer number
* @param y unsigned 256-bit integer number
* @return unsigned 64.64-bit fixed point number
*/
function divuu (uint256 x, uint256 y) private pure returns (uint128) {
unchecked {
require (y != 0);
uint256 result;
if (x <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
result = (x << 64) / y;
else {
uint256 msb = 192;
uint256 xc = x >> 192;
if (xc >= 0x100000000) { xc >>= 32; msb += 32; }
if (xc >= 0x10000) { xc >>= 16; msb += 16; }
if (xc >= 0x100) { xc >>= 8; msb += 8; }
if (xc >= 0x10) { xc >>= 4; msb += 4; }
if (xc >= 0x4) { xc >>= 2; msb += 2; }
if (xc >= 0x2) msb += 1; // No need to shift xc anymore
result = (x << 255 - msb) / ((y - 1 >> msb - 191) + 1);
require (result <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
uint256 hi = result * (y >> 128);
uint256 lo = result * (y & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
uint256 xh = x >> 192;
uint256 xl = x << 64;
if (xl < lo) xh -= 1;
xl -= lo; // We rely on overflow behavior here
lo = hi << 128;
if (xl < lo) xh -= 1;
xl -= lo; // We rely on overflow behavior here
assert (xh == hi >> 128);
result += xl / y;
}
require (result <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF);
return uint128 (result);
}
}
/**
* Calculate sqrt (x) rounding down, where x is unsigned 256-bit integer
* number.
*
* @param x unsigned 256-bit integer number
* @return unsigned 128-bit integer number
*/
function sqrtu (uint256 x) private pure returns (uint128) {
unchecked {
if (x == 0) return 0;
else {
uint256 xx = x;
uint256 r = 1;
if (xx >= 0x100000000000000000000000000000000) { xx >>= 128; r <<= 64; }
if (xx >= 0x10000000000000000) { xx >>= 64; r <<= 32; }
if (xx >= 0x100000000) { xx >>= 32; r <<= 16; }
if (xx >= 0x10000) { xx >>= 16; r <<= 8; }
if (xx >= 0x100) { xx >>= 8; r <<= 4; }
if (xx >= 0x10) { xx >>= 4; r <<= 2; }
if (xx >= 0x8) { r <<= 1; }
r = (r + x / r) >> 1;
r = (r + x / r) >> 1;
r = (r + x / r) >> 1;
r = (r + x / r) >> 1;
r = (r + x / r) >> 1;
r = (r + x / r) >> 1;
r = (r + x / r) >> 1; // Seven iterations should be enough
uint256 r1 = x / r;
return uint128 (r < r1 ? r : r1);
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220645c0e28fd3d42d4763b56ca0f574283dd80bbef55309b6a1607e270eb84f0e864736f6c63430008070033",
"opcodes": "PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH5 0x5C0E28FD3D TIMESTAMP 0xD4 PUSH23 0x3B56CA0F574283DD80BBEF55309B6A1607E270EB84F0E8 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "475:24884:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220645c0e28fd3d42d4763b56ca0f574283dd80bbef55309b6a1607e270eb84f0e864736f6c63430008070033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH5 0x5C0E28FD3D TIMESTAMP 0xD4 PUSH23 0x3B56CA0F574283DD80BBEF55309B6A1607E270EB84F0E8 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "475:24884:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "97",
"totalCost": "17297"
},
"internal": {
"abs(int128)": "infinite",
"add(int128,int128)": "infinite",
"avg(int128,int128)": "infinite",
"div(int128,int128)": "infinite",
"divi(int256,int256)": "infinite",
"divu(uint256,uint256)": "infinite",
"divuu(uint256,uint256)": "infinite",
"exp(int128)": "infinite",
"exp_2(int128)": "infinite",
"from128x128(int256)": "infinite",
"fromInt(int256)": "infinite",
"fromUInt(uint256)": "infinite",
"gavg(int128,int128)": "infinite",
"inv(int128)": "infinite",
"ln(int128)": "infinite",
"log_2(int128)": "infinite",
"mul(int128,int128)": "infinite",
"muli(int128,int256)": "infinite",
"mulu(int128,uint256)": "infinite",
"neg(int128)": "infinite",
"pow(int128,uint256)": "infinite",
"sqrt(int128)": "infinite",
"sqrtu(uint256)": "infinite",
"sub(int128,int128)": "infinite",
"to128x128(int128)": "infinite",
"toInt(int128)": "infinite",
"toUInt(int128)": "infinite"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"notice": "Smart contract library of mathematical functions operating with signed 64.64-bit fixed point numbers. Signed 64.64-bit fixed point number is basically a simple fraction whose numerator is signed 128-bit integer and denominator is 2^64. As long as denominator is always the same, there is no need to store it, thus in Solidity signed 64.64-bit fixed point numbers are represented by int128 type holding only the numerator.",
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/shanecoin/ABDKMath64x64.sol": "ABDKMath64x64"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/shanecoin/ABDKMath64x64.sol": {
"keccak256": "0xb65e9eadf7b7282069dcadfefcba5e490b50d138665179c4ef3f6a8c00779b80",
"urls": [
"bzz-raw://e102fd140f39ee9e2f83204876f2dc514bde08d0d9e23f3a5320745cc079204d",
"dweb:/ipfs/QmZ1geuTAjEh53iDkzmS5DVx8bDvoxpvxx28JpSTnFAhfu"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"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": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"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": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/shanecoin/IERC20.sol": "IERC20"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/shanecoin/IERC20.sol": {
"keccak256": "0x56032d3ac5c878b70ab11675f2ac00cbf2955ea03996acf418a775e59938b6f3",
"urls": [
"bzz-raw://35955e2caa6ac2debed38cae4bd29d2b1f6d96a94ace1a07f11c39317d5d5748",
"dweb:/ipfs/QmeTNjysQR7Mg4RST69URqWJ8oeVNd6aEvbDuYA9bYhVop"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"getTokenToEthInputPrice(uint256)": "95b68fe7",
"getTokenToEthOutputPrice(uint256)": "2640f62c",
"tokenAddress()": "9d76ea58",
"tokenToEthSwapOutput(uint256,uint256,uint256)": "013efd8b",
"tokenToEthTransferOutput(uint256,uint256,uint256,address)": "d4e4841d"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "tokensSold",
"type": "uint256"
}
],
"name": "getTokenToEthInputPrice",
"outputs": [
{
"internalType": "uint256",
"name": "out",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "ethBought",
"type": "uint256"
}
],
"name": "getTokenToEthOutputPrice",
"outputs": [
{
"internalType": "uint256",
"name": "out",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "tokenAddress",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "ethBought",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "maxTokens",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
}
],
"name": "tokenToEthSwapOutput",
"outputs": [
{
"internalType": "uint256",
"name": "out",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "ethBought",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "maxTokens",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
},
{
"internalType": "address payable",
"name": "recipient",
"type": "address"
}
],
"name": "tokenToEthTransferOutput",
"outputs": [
{
"internalType": "uint256",
"name": "out",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "tokensSold",
"type": "uint256"
}
],
"name": "getTokenToEthInputPrice",
"outputs": [
{
"internalType": "uint256",
"name": "out",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "ethBought",
"type": "uint256"
}
],
"name": "getTokenToEthOutputPrice",
"outputs": [
{
"internalType": "uint256",
"name": "out",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "tokenAddress",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "ethBought",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "maxTokens",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
}
],
"name": "tokenToEthSwapOutput",
"outputs": [
{
"internalType": "uint256",
"name": "out",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "ethBought",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "maxTokens",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
},
{
"internalType": "address payable",
"name": "recipient",
"type": "address"
}
],
"name": "tokenToEthTransferOutput",
"outputs": [
{
"internalType": "uint256",
"name": "out",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/shanecoin/IUniswap.sol": "IUniswap"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/shanecoin/IUniswap.sol": {
"keccak256": "0x53e10b9d81b7eb5bfa0579ab61b37131cc48f7c06f2270dd25631451aa81ad7d",
"urls": [
"bzz-raw://b9427014d9f4bd88f245143cb6f8ed9039e6e587e1d77b1b4895f4a050e4bc4a",
"dweb:/ipfs/QmSrJJyDwGN6YkCYYHuiBFyXFsC4sGkdNX2QwhgT9mka1K"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"getPair(address,address)": "e6a43905"
}
},
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "token0",
"type": "address"
},
{
"internalType": "address",
"name": "token1",
"type": "address"
}
],
"name": "getPair",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "token0",
"type": "address"
},
{
"internalType": "address",
"name": "token1",
"type": "address"
}
],
"name": "getPair",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/shanecoin/IUniswap.sol": "IUniswapV2Factory"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/shanecoin/IUniswap.sol": {
"keccak256": "0xcf6edb1ca3b479e6f51bd38d868ce10777dd11473c293ef2b87cffe9611e7ded",
"urls": [
"bzz-raw://70592bd8ede1060ce172aaf20282a0da3c4f12d73aecb3b7e4bbac9475b9b9d1",
"dweb:/ipfs/QmYNDwyH6FsTadDt55WunWivnJDDAzW7DQmXpfDiZJnff3"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"swap(uint256,uint256,address,bytes)": "022c0d9f",
"token0()": "0dfe1681",
"token1()": "d21220a7"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "amount0Out",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "amount1Out",
"type": "uint256"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "swap",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "token0",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "token1",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "amount0Out",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "amount1Out",
"type": "uint256"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "swap",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "token0",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "token1",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/shanecoin/IUniswap.sol": "IUniswapV2Pair"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/shanecoin/IUniswap.sol": {
"keccak256": "0xcf6edb1ca3b479e6f51bd38d868ce10777dd11473c293ef2b87cffe9611e7ded",
"urls": [
"bzz-raw://70592bd8ede1060ce172aaf20282a0da3c4f12d73aecb3b7e4bbac9475b9b9d1",
"dweb:/ipfs/QmYNDwyH6FsTadDt55WunWivnJDDAzW7DQmXpfDiZJnff3"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"getAmountsOut(uint256,address[])": "d06ca61f",
"swapExactTokensForTokens(uint256,uint256,address[],address,uint256)": "38ed1739"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "amountIn",
"type": "uint256"
},
{
"internalType": "address[]",
"name": "path",
"type": "address[]"
}
],
"name": "getAmountsOut",
"outputs": [
{
"internalType": "uint256[]",
"name": "amounts",
"type": "uint256[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amountIn",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "amountOutMin",
"type": "uint256"
},
{
"internalType": "address[]",
"name": "path",
"type": "address[]"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
}
],
"name": "swapExactTokensForTokens",
"outputs": [
{
"internalType": "uint256[]",
"name": "amounts",
"type": "uint256[]"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "amountIn",
"type": "uint256"
},
{
"internalType": "address[]",
"name": "path",
"type": "address[]"
}
],
"name": "getAmountsOut",
"outputs": [
{
"internalType": "uint256[]",
"name": "amounts",
"type": "uint256[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amountIn",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "amountOutMin",
"type": "uint256"
},
{
"internalType": "address[]",
"name": "path",
"type": "address[]"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
}
],
"name": "swapExactTokensForTokens",
"outputs": [
{
"internalType": "uint256[]",
"name": "amounts",
"type": "uint256[]"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/shanecoin/IUniswap.sol": "IUniswapV2Router"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/shanecoin/IUniswap.sol": {
"keccak256": "0xcf6edb1ca3b479e6f51bd38d868ce10777dd11473c293ef2b87cffe9611e7ded",
"urls": [
"bzz-raw://70592bd8ede1060ce172aaf20282a0da3c4f12d73aecb3b7e4bbac9475b9b9d1",
"dweb:/ipfs/QmYNDwyH6FsTadDt55WunWivnJDDAzW7DQmXpfDiZJnff3"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_5598": {
"entryPoint": null,
"id": 5598,
"parameterSlots": 0,
"returnSlots": 0
},
"@_grantRole_1772": {
"entryPoint": 1305,
"id": 1772,
"parameterSlots": 2,
"returnSlots": 0
},
"@_mint_5871": {
"entryPoint": 945,
"id": 5871,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_265": {
"entryPoint": 3178,
"id": 265,
"parameterSlots": 0,
"returnSlots": 1
},
"@_msgSender_5922": {
"entryPoint": 2154,
"id": 5922,
"parameterSlots": 0,
"returnSlots": 1
},
"@_setupRole_1713": {
"entryPoint": 1097,
"id": 1713,
"parameterSlots": 2,
"returnSlots": 0
},
"@_updateBalanceOf_5846": {
"entryPoint": 1119,
"id": 5846,
"parameterSlots": 1,
"returnSlots": 0
},
"@_updateTheTotalSupply_5825": {
"entryPoint": 1274,
"id": 5825,
"parameterSlots": 0,
"returnSlots": 0
},
"@balanceOf_5681": {
"entryPoint": 1546,
"id": 5681,
"parameterSlots": 1,
"returnSlots": 1
},
"@div_3046": {
"entryPoint": 801,
"id": 3046,
"parameterSlots": 2,
"returnSlots": 1
},
"@fromInt_2591": {
"entryPoint": 720,
"id": 2591,
"parameterSlots": 1,
"returnSlots": 1
},
"@fromUInt_2634": {
"entryPoint": 2182,
"id": 2634,
"parameterSlots": 1,
"returnSlots": 1
},
"@hasRole_1578": {
"entryPoint": 2047,
"id": 1578,
"parameterSlots": 2,
"returnSlots": 1
},
"@isTrustedForwarder_238": {
"entryPoint": 3244,
"id": 238,
"parameterSlots": 1,
"returnSlots": 1
},
"@mul_2818": {
"entryPoint": 3035,
"id": 2818,
"parameterSlots": 2,
"returnSlots": 1
},
"@pow_3691": {
"entryPoint": 2218,
"id": 3691,
"parameterSlots": 2,
"returnSlots": 1
},
"@toUInt_2660": {
"entryPoint": 3144,
"id": 2660,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_5640": {
"entryPoint": 1889,
"id": 5640,
"parameterSlots": 0,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 3509,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 3602,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 3661,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 3671,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 3725,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 3772,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 3819,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1479:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "51:261:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "61:25:23",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "84:1:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "66:17:23"
},
"nodeType": "YulFunctionCall",
"src": "66:20:23"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "61:1:23"
}
]
},
{
"nodeType": "YulAssignment",
"src": "95:25:23",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "118:1:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "100:17:23"
},
"nodeType": "YulFunctionCall",
"src": "100:20:23"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "95:1:23"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "258:22:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "260:16:23"
},
"nodeType": "YulFunctionCall",
"src": "260:18:23"
},
"nodeType": "YulExpressionStatement",
"src": "260:18:23"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "179:1:23"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "186:66:23",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "254:1:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "182:3:23"
},
"nodeType": "YulFunctionCall",
"src": "182:74:23"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "176:2:23"
},
"nodeType": "YulFunctionCall",
"src": "176:81:23"
},
"nodeType": "YulIf",
"src": "173:107:23"
},
{
"nodeType": "YulAssignment",
"src": "290:16:23",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "301:1:23"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "304:1:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "297:3:23"
},
"nodeType": "YulFunctionCall",
"src": "297:9:23"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "290:3:23"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "38:1:23",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "41:1:23",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "47:3:23",
"type": ""
}
],
"src": "7:305:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:146:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "373:25:23",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "396:1:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "378:17:23"
},
"nodeType": "YulFunctionCall",
"src": "378:20:23"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "373:1:23"
}
]
},
{
"nodeType": "YulAssignment",
"src": "407:25:23",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "430:1:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "412:17:23"
},
"nodeType": "YulFunctionCall",
"src": "412:20:23"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "407:1:23"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "454:22:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "456:16:23"
},
"nodeType": "YulFunctionCall",
"src": "456:18:23"
},
"nodeType": "YulExpressionStatement",
"src": "456:18:23"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "448:1:23"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "451:1:23"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "445:2:23"
},
"nodeType": "YulFunctionCall",
"src": "445:8:23"
},
"nodeType": "YulIf",
"src": "442:34:23"
},
{
"nodeType": "YulAssignment",
"src": "486:17:23",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "498:1:23"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "501:1:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "494:3:23"
},
"nodeType": "YulFunctionCall",
"src": "494:9:23"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "486:4:23"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "349:1:23",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "352:1:23",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "358:4:23",
"type": ""
}
],
"src": "318:191:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "560:32:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "570:16:23",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "581:5:23"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "570:7:23"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "542:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "552:7:23",
"type": ""
}
],
"src": "515:77:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "649:269:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "659:22:23",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "673:4:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "679:1:23",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "669:3:23"
},
"nodeType": "YulFunctionCall",
"src": "669:12:23"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "659:6:23"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "690:38:23",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "720:4:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "726:1:23",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "716:3:23"
},
"nodeType": "YulFunctionCall",
"src": "716:12:23"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "694:18:23",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "767:51:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "781:27:23",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "795:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "803:4:23",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "791:3:23"
},
"nodeType": "YulFunctionCall",
"src": "791:17:23"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "781:6:23"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "747:18:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "740:6:23"
},
"nodeType": "YulFunctionCall",
"src": "740:26:23"
},
"nodeType": "YulIf",
"src": "737:81:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "870:42:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "884:16:23"
},
"nodeType": "YulFunctionCall",
"src": "884:18:23"
},
"nodeType": "YulExpressionStatement",
"src": "884:18:23"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "834:18:23"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "857:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "865:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "854:2:23"
},
"nodeType": "YulFunctionCall",
"src": "854:14:23"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "831:2:23"
},
"nodeType": "YulFunctionCall",
"src": "831:38:23"
},
"nodeType": "YulIf",
"src": "828:84:23"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "633:4:23",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "642:6:23",
"type": ""
}
],
"src": "598:320:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "952:152:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "969:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "972:77:23",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "962:6:23"
},
"nodeType": "YulFunctionCall",
"src": "962:88:23"
},
"nodeType": "YulExpressionStatement",
"src": "962:88:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1066:1:23",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1069:4:23",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1059:6:23"
},
"nodeType": "YulFunctionCall",
"src": "1059:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "1059:15:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1090:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1093:4:23",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1083:6:23"
},
"nodeType": "YulFunctionCall",
"src": "1083:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "1083:15:23"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "924:180:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1138:152:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1155:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1158:77:23",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1148:6:23"
},
"nodeType": "YulFunctionCall",
"src": "1148:88:23"
},
"nodeType": "YulExpressionStatement",
"src": "1148:88:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1252:1:23",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1255:4:23",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1245:6:23"
},
"nodeType": "YulFunctionCall",
"src": "1245:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "1245:15:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1276:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1279:4:23",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1269:6:23"
},
"nodeType": "YulFunctionCall",
"src": "1269:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "1269:15:23"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "1110:180:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1324:152:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1341:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1344:77:23",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1334:6:23"
},
"nodeType": "YulFunctionCall",
"src": "1334:88:23"
},
"nodeType": "YulExpressionStatement",
"src": "1334:88:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1438:1:23",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1441:4:23",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1431:6:23"
},
"nodeType": "YulFunctionCall",
"src": "1431:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "1431:15:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1462:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1465:4:23",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1455:6:23"
},
"nodeType": "YulFunctionCall",
"src": "1455:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "1455:15:23"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "1296:180:23"
}
]
},
"contents": "{\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n}\n",
"id": 23,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526040518060400160405280600581526020017f322e302e30000000000000000000000000000000000000000000000000000000815250600290805190602001906200005192919062000d05565b5073da78a11fd57af7be2edd804840ea7f4c2a38801d600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506012600c60006101000a81548160ff021916908360ff1602179055506040518060400160405280600581526020017f312e302e30000000000000000000000000000000000000000000000000000000815250600e90805190602001906200011092919062000d05565b503480156200011e57600080fd5b5060006007819055506040518060400160405280600981526020017f5368616e65436f696e0000000000000000000000000000000000000000000000815250600b90805190602001906200017492919062000d05565b506040518060400160405280600581526020017f5348414e45000000000000000000000000000000000000000000000000000000815250600d9080519060200190620001c292919062000d05565b506200020a620001e062989683620002d060201b62000f931760201c565b620001f962989680620002d060201b62000f931760201c565b6200032160201b62000fe21760201c565b600960006101000a8154816fffffffffffffffffffffffffffffffff0219169083600f0b6fffffffffffffffffffffffffffffffff160217905550620002737351f77c6e454b9ce3ca8eb5340c7ffc4f23483c2c6706f05b59d3b20000620003b160201b60201c565b620002a17337da4b9542e95fd649cdb51e8bf9563dd660cb6c6706f05b59d3b20000620003b160201b60201c565b620002ca6000801b7351f77c6e454b9ce3ca8eb5340c7ffc4f23483c2c6200044960201b60201c565b62000f1a565b60007fffffffffffffffffffffffffffffffffffffffffffffffff800000000000000082121580156200030b5750677fffffffffffffff8213155b6200031557600080fd5b604082901b9050919050565b60008082600f0b14156200033457600080fd5b600082600f0b604085600f0b901b8162000353576200035262000ebc565b5b0590507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b81121580156200039d57506f7fffffffffffffffffffffffffffffff600f0b8113155b620003a757600080fd5b8091505092915050565b620003c2826200045f60201b60201c565b620003d2620004fa60201b60201c565b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000423919062000db5565b9250508190555080600760008282546200043e919062000db5565b925050819055505050565b6200045b82826200051960201b60201c565b5050565b62000470816200060a60201b60201c565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555042600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6200050a6200076160201b60201c565b60078190555042600881905550565b6200052b8282620007ff60201b60201c565b6200060657600180600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005ab6200086a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156200065e57600090506200075c565b6200074f6200073e620006bb600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200088660201b6200106c1760201c565b6200072d600960009054906101000a9004600f0b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054426200071c919062000e12565b620008aa60201b6200108f1760201c565b62000bdb60201b620013a41760201c565b62000c4860201b6200140f1760201c565b67ffffffffffffffff1690505b919050565b6000806007541415620007785760009050620007fc565b620007ef620007de620007986007546200088660201b6200106c1760201c565b620007cd600960009054906101000a9004600f0b60085442620007bc919062000e12565b620008aa60201b6200108f1760201c565b62000bdb60201b620013a41760201c565b62000c4860201b6200140f1760201c565b67ffffffffffffffff1690505b90565b60006001600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006200088162000c6a60201b620014301760201c565b905090565b6000677fffffffffffffff8211156200089e57600080fd5b604082901b9050919050565b600080600084600f0b128015620008c357506001808416145b905060008085600f0b12620008d95784620008de565b846000035b6fffffffffffffffffffffffffffffffff16905060007001000000000000000000000000000000009050680100000000000000008211620009c057603f82901b91505b60008514620009b357600060018616146200094057607f828202901c90505b607f828302901c9150600060028616146200095f57607f828202901c90505b607f828302901c9150600060048616146200097e57607f828202901c90505b607f828302901c9150600060088616146200099d57607f828202901c90505b607f828302901c9150600485901c945062000921565b604081901c905062000b67565b6000603f90506c01000000000000000000000000831015620009ea57602083901b92506020810390505b6e01000000000000000000000000000083101562000a1057601083901b92506010810390505b6f0100000000000000000000000000000083101562000a3757600883901b92506008810390505b6f1000000000000000000000000000000083101562000a5e57600483901b92506004810390505b6f4000000000000000000000000000000083101562000a8557600283901b92506002810390505b6f8000000000000000000000000000000083101562000aac57600183901b92506001810390505b60005b6000871462000b4d576040821062000ac657600080fd5b6000600188161462000b0957607f848402901c9250818101905070010000000000000000000000000000000083111562000b0857600183901c92506001810190505b5b607f848502901c9350600182901b9150700100000000000000000000000000000000841062000b4057600184901c93506001820191505b600187901c965062000aaf565b6040811062000b5b57600080fd5b8060400383901c925050505b60008362000b76578162000b7b565b816000035b90507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b811215801562000bc457506f7fffffffffffffffffffffffffffffff600f0b8113155b62000bce57600080fd5b8094505050505092915050565b600080604083600f0b85600f0b02901d90507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b811215801562000c3457506f7fffffffffffffffffffffffffffffff600f0b8113155b62000c3e57600080fd5b8091505092915050565b60008082600f0b121562000c5b57600080fd5b604082600f0b901d9050919050565b6000601460003690501015801562000c8f575062000c8e3362000cac60201b60201c565b5b1562000ca557601436033560601c905062000ca9565b3390505b90565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b82805462000d139062000e57565b90600052602060002090601f01602090048101928262000d37576000855562000d83565b82601f1062000d5257805160ff191683800117855562000d83565b8280016001018555821562000d83579182015b8281111562000d8257825182559160200191906001019062000d65565b5b50905062000d92919062000d96565b5090565b5b8082111562000db157600081600090555060010162000d97565b5090565b600062000dc28262000e4d565b915062000dcf8362000e4d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e075762000e0662000e8d565b5b828201905092915050565b600062000e1f8262000e4d565b915062000e2c8362000e4d565b92508282101562000e425762000e4162000e8d565b5b828203905092915050565b6000819050919050565b6000600282049050600182168062000e7057607f821691505b6020821081141562000e875762000e8662000eeb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6125448062000f2a6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80635be1f4cb116100de578063a217fddf11610097578063d539139311610071578063d5391393146104b1578063d547741f146104cf578063dd62ed3e146104eb578063ea243a331461051b5761018e565b8063a217fddf14610445578063a9059cbb14610463578063c2e621de146104935761018e565b80635be1f4cb1461036f57806370a082311461038d5780637da0a877146103bd57806391d14854146103db57806395d89b411461040b578063a0712d68146104295761018e565b8063248a9ca31161014b57806336568abe1161012557806336568abe146102e7578063486ff0cd1461030357806354fd4d5014610321578063572b6c051461033f5761018e565b8063248a9ca31461027d5780632f2ff15d146102ad578063313ce567146102c95761018e565b806301ffc9a71461019357806306fdde03146101c3578063095ea7b3146101e1578063098d32281461021157806318160ddd1461022f57806323b872dd1461024d575b600080fd5b6101ad60048036038101906101a89190611d67565b610539565b6040516101ba9190611f7a565b60405180910390f35b6101cb6105b3565b6040516101d89190611fb0565b60405180910390f35b6101fb60048036038101906101f69190611cba565b610641565b6040516102089190611f7a565b60405180910390f35b610219610741565b6040516102269190612032565b60405180910390f35b610237610765565b6040516102449190612032565b60405180910390f35b61026760048036038101906102629190611c67565b6107cb565b6040516102749190611f7a565b60405180910390f35b61029760048036038101906102929190611cfa565b6108e2565b6040516102a49190611f95565b60405180910390f35b6102c760048036038101906102c29190611d27565b610902565b005b6102d161092b565b6040516102de919061204d565b60405180910390f35b61030160048036038101906102fc9190611d27565b61093e565b005b61030b6109c1565b6040516103189190611fb0565b60405180910390f35b610329610a4f565b6040516103369190611fb0565b60405180910390f35b61035960048036038101906103549190611bfa565b610add565b6040516103669190611f7a565b60405180910390f35b610377610b36565b6040516103849190612032565b60405180910390f35b6103a760048036038101906103a29190611bfa565b610b3c565b6040516103b49190612032565b60405180910390f35b6103c5610c5b565b6040516103d29190611f5f565b60405180910390f35b6103f560048036038101906103f09190611d27565b610c85565b6040516104029190611f7a565b60405180910390f35b610413610cf0565b6040516104209190611fb0565b60405180910390f35b610443600480360381019061043e9190611d94565b610d7e565b005b61044d610e02565b60405161045a9190611f95565b60405180910390f35b61047d60048036038101906104789190611cba565b610e09565b60405161048a9190611f7a565b60405180910390f35b61049b610e93565b6040516104a89190611f5f565b60405180910390f35b6104b9610eb9565b6040516104c69190611f95565b60405180910390f35b6104e960048036038101906104e49190611d27565b610edd565b005b61050560048036038101906105009190611c27565b610f06565b6040516105129190612032565b60405180910390f35b610523610f8d565b6040516105309190612032565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ac57506105ab82611467565b5b9050919050565b600b80546105c09061228c565b80601f01602080910402602001604051908101604052809291908181526020018280546105ec9061228c565b80156106395780601f1061060e57610100808354040283529160200191610639565b820191906000526020600020905b81548152906001019060200180831161061c57829003601f168201915b505050505081565b600081600660006106506114d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff166106ea6114d1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161072f9190612032565b60405180910390a36001905092915050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b600080600754141561077a57600090506107c8565b6107bb6107b661078b60075461106c565b6107b1600960009054906101000a9004600f0b600854426107ac9190612170565b61108f565b6113a4565b61140f565b67ffffffffffffffff1690505b90565b60006107d88484846114e0565b81600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108226114d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461086b9190612170565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108cf9190612032565b60405180910390a3600190509392505050565b600060016000838152602001908152602001600020600101549050919050565b61090b826108e2565b61091c816109176114d1565b611559565b61092683836115f6565b505050565b600c60009054906101000a900460ff1681565b6109466114d1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90612012565b60405180910390fd5b6109bd82826116d6565b5050565b600280546109ce9061228c565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa9061228c565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b505050505081565b600e8054610a5c9061228c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a889061228c565b8015610ad55780601f10610aaa57610100808354040283529160200191610ad5565b820191906000526020600020905b815481529060010190602001808311610ab857829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b60085481565b600080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610b8e5760009050610c56565b610c49610c44610bdc600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461106c565b610c3f600960009054906101000a9004600f0b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442610c3a9190612170565b61108f565b6113a4565b61140f565b67ffffffffffffffff1690505b919050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d8054610cfd9061228c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d299061228c565b8015610d765780601f10610d4b57610100808354040283529160200191610d76565b820191906000526020600020905b815481529060010190602001808311610d5957829003601f168201915b505050505081565b610daf7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610daa6114d1565b610c85565b610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590611ff2565b60405180910390fd5b610dff610df96114d1565b826117b8565b50565b6000801b81565b6000610e1d610e166114d1565b84846114e0565b8273ffffffffffffffffffffffffffffffffffffffff16610e3c6114d1565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e819190612032565b60405180910390a36001905092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610ee6826108e2565b610ef781610ef26114d1565b611559565b610f0183836116d6565b505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b60007fffffffffffffffffffffffffffffffffffffffffffffffff80000000000000008212158015610fcd5750677fffffffffffffff8213155b610fd657600080fd5b604082901b9050919050565b60008082600f0b1415610ff457600080fd5b600082600f0b604085600f0b901b816110105761100f6122ed565b5b0590507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b811215801561105957506f7fffffffffffffffffffffffffffffff600f0b8113155b61106257600080fd5b8091505092915050565b6000677fffffffffffffff82111561108357600080fd5b604082901b9050919050565b600080600084600f0b1280156110a757506001808416145b905060008085600f0b126110bb57846110c0565b846000035b6fffffffffffffffffffffffffffffffff1690506000700100000000000000000000000000000000905068010000000000000000821161119a57603f82901b91505b6000851461118e576000600186161461111f57607f828202901c90505b607f828302901c91506000600286161461113d57607f828202901c90505b607f828302901c91506000600486161461115b57607f828202901c90505b607f828302901c91506000600886161461117957607f828202901c90505b607f828302901c9150600485901c9450611102565b604081901c9050611334565b6000603f90506c010000000000000000000000008310156111c357602083901b92506020810390505b6e0100000000000000000000000000008310156111e857601083901b92506010810390505b6f0100000000000000000000000000000083101561120e57600883901b92506008810390505b6f1000000000000000000000000000000083101561123457600483901b92506004810390505b6f4000000000000000000000000000000083101561125a57600283901b92506002810390505b6f8000000000000000000000000000000083101561128057600183901b92506001810390505b60005b6000871461131b576040821061129857600080fd5b600060018816146112d957607f848402901c925081810190507001000000000000000000000000000000008311156112d857600183901c92506001810190505b5b607f848502901c9350600182901b9150700100000000000000000000000000000000841061130f57600184901c93506001820191505b600187901c9650611283565b6040811061132857600080fd5b8060400383901c925050505b6000836113415781611346565b816000035b90507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b811215801561138e57506f7fffffffffffffffffffffffffffffff600f0b8113155b61139757600080fd5b8094505050505092915050565b600080604083600f0b85600f0b02901d90507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b81121580156113fc57506f7fffffffffffffffffffffffffffffff600f0b8113155b61140557600080fd5b8091505092915050565b60008082600f0b121561142157600080fd5b604082600f0b901d9050919050565b6000601460003690501015801561144c575061144b33610add565b5b1561146057601436033560601c9050611464565b3390505b90565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006114db611430565b905090565b6114ea838261183c565b61150082600a836114fb91906120e5565b6117b8565b61152a7351f77c6e454b9ce3ca8eb5340c7ffc4f23483c2c600a8361152591906120e5565b6117b8565b6115547337da4b9542e95fd649cdb51e8bf9563dd660cb6c600a8361154f91906120e5565b6117b8565b505050565b6115638282610c85565b6115f2576115888173ffffffffffffffffffffffffffffffffffffffff1660146118c0565b6115968360001c60206118c0565b6040516020016115a7929190611f25565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e99190611fb0565b60405180910390fd5b5050565b6116008282610c85565b6116d257600180600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116776114d1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6116e08282610c85565b156117b45760006001600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117596114d1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6117c182611afc565b6117c9611b8f565b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611818919061208f565b925050819055508060076000828254611831919061208f565b925050819055505050565b61184582611afc565b61184d611b8f565b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461189c9190612170565b9250508190555080600760008282546118b59190612170565b925050819055505050565b6060600060028360026118d39190612116565b6118dd919061208f565b67ffffffffffffffff8111156118f6576118f561237a565b5b6040519080825280601f01601f1916602001820160405280156119285781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106119605761195f61234b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106119c4576119c361234b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611a049190612116565b611a0e919061208f565b90505b6001811115611aae577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611a5057611a4f61234b565b5b1a60f81b828281518110611a6757611a6661234b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611aa790612262565b9050611a11565b5060008414611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990611fd2565b60405180910390fd5b8091505092915050565b611b0581610b3c565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555042600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b611b97610765565b60078190555042600881905550565b600081359050611bb5816124b2565b92915050565b600081359050611bca816124c9565b92915050565b600081359050611bdf816124e0565b92915050565b600081359050611bf4816124f7565b92915050565b600060208284031215611c1057611c0f6123a9565b5b6000611c1e84828501611ba6565b91505092915050565b60008060408385031215611c3e57611c3d6123a9565b5b6000611c4c85828601611ba6565b9250506020611c5d85828601611ba6565b9150509250929050565b600080600060608486031215611c8057611c7f6123a9565b5b6000611c8e86828701611ba6565b9350506020611c9f86828701611ba6565b9250506040611cb086828701611be5565b9150509250925092565b60008060408385031215611cd157611cd06123a9565b5b6000611cdf85828601611ba6565b9250506020611cf085828601611be5565b9150509250929050565b600060208284031215611d1057611d0f6123a9565b5b6000611d1e84828501611bbb565b91505092915050565b60008060408385031215611d3e57611d3d6123a9565b5b6000611d4c85828601611bbb565b9250506020611d5d85828601611ba6565b9150509250929050565b600060208284031215611d7d57611d7c6123a9565b5b6000611d8b84828501611bd0565b91505092915050565b600060208284031215611daa57611da96123a9565b5b6000611db884828501611be5565b91505092915050565b611dca816121a4565b82525050565b611dd9816121b6565b82525050565b611de8816121c2565b82525050565b6000611df982612068565b611e038185612073565b9350611e1381856020860161222f565b611e1c816123ae565b840191505092915050565b6000611e3282612068565b611e3c8185612084565b9350611e4c81856020860161222f565b80840191505092915050565b6000611e65602083612073565b9150611e70826123bf565b602082019050919050565b6000611e88601683612073565b9150611e93826123e8565b602082019050919050565b6000611eab601783612084565b9150611eb682612411565b601782019050919050565b6000611ece601183612084565b9150611ed98261243a565b601182019050919050565b6000611ef1602f83612073565b9150611efc82612463565b604082019050919050565b611f1081612218565b82525050565b611f1f81612222565b82525050565b6000611f3082611e9e565b9150611f3c8285611e27565b9150611f4782611ec1565b9150611f538284611e27565b91508190509392505050565b6000602082019050611f746000830184611dc1565b92915050565b6000602082019050611f8f6000830184611dd0565b92915050565b6000602082019050611faa6000830184611ddf565b92915050565b60006020820190508181036000830152611fca8184611dee565b905092915050565b60006020820190508181036000830152611feb81611e58565b9050919050565b6000602082019050818103600083015261200b81611e7b565b9050919050565b6000602082019050818103600083015261202b81611ee4565b9050919050565b60006020820190506120476000830184611f07565b92915050565b60006020820190506120626000830184611f16565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061209a82612218565b91506120a583612218565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120da576120d96122be565b5b828201905092915050565b60006120f082612218565b91506120fb83612218565b92508261210b5761210a6122ed565b5b828204905092915050565b600061212182612218565b915061212c83612218565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612165576121646122be565b5b828202905092915050565b600061217b82612218565b915061218683612218565b925082821015612199576121986122be565b5b828203905092915050565b60006121af826121f8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561224d578082015181840152602081019050612232565b8381111561225c576000848401525b50505050565b600061226d82612218565b91506000821415612281576122806122be565b5b600182039050919050565b600060028204905060018216806122a457607f821691505b602082108114156122b8576122b761231c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f43616c6c6572206973206e6f742061206d696e74657200000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6124bb816121a4565b81146124c657600080fd5b50565b6124d2816121c2565b81146124dd57600080fd5b50565b6124e9816121cc565b81146124f457600080fd5b50565b61250081612218565b811461250b57600080fd5b5056fea2646970667358221220e40c1fbb4da7d075bbdd4bcbac4ae6ef5d75555c9effd298b766a9af4d3d117a64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x322E302E30000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x2 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x51 SWAP3 SWAP2 SWAP1 PUSH3 0xD05 JUMP JUMPDEST POP PUSH20 0xDA78A11FD57AF7BE2EDD804840EA7F4C2A38801D PUSH1 0x3 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x12 PUSH1 0xC PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x312E302E30000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0xE SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x110 SWAP3 SWAP2 SWAP1 PUSH3 0xD05 JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH3 0x11E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x0 PUSH1 0x7 DUP2 SWAP1 SSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x9 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5368616E65436F696E0000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0xB SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x174 SWAP3 SWAP2 SWAP1 PUSH3 0xD05 JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5348414E45000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0xD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x1C2 SWAP3 SWAP2 SWAP1 PUSH3 0xD05 JUMP JUMPDEST POP PUSH3 0x20A PUSH3 0x1E0 PUSH3 0x989683 PUSH3 0x2D0 PUSH1 0x20 SHL PUSH3 0xF93 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x1F9 PUSH3 0x989680 PUSH3 0x2D0 PUSH1 0x20 SHL PUSH3 0xF93 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x321 PUSH1 0x20 SHL PUSH3 0xFE2 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x9 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0xF SIGNEXTEND PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH3 0x273 PUSH20 0x51F77C6E454B9CE3CA8EB5340C7FFC4F23483C2C PUSH8 0x6F05B59D3B20000 PUSH3 0x3B1 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x2A1 PUSH20 0x37DA4B9542E95FD649CDB51E8BF9563DD660CB6C PUSH8 0x6F05B59D3B20000 PUSH3 0x3B1 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x2CA PUSH1 0x0 DUP1 SHL PUSH20 0x51F77C6E454B9CE3CA8EB5340C7FFC4F23483C2C PUSH3 0x449 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xF1A JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000000 DUP3 SLT ISZERO DUP1 ISZERO PUSH3 0x30B JUMPI POP PUSH8 0x7FFFFFFFFFFFFFFF DUP3 SGT ISZERO JUMPDEST PUSH3 0x315 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP3 SWAP1 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND EQ ISZERO PUSH3 0x334 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH1 0xF SIGNEXTEND PUSH1 0x40 DUP6 PUSH1 0xF SIGNEXTEND SWAP1 SHL DUP2 PUSH3 0x353 JUMPI PUSH3 0x352 PUSH3 0xEBC JUMP JUMPDEST JUMPDEST SDIV SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH3 0x39D JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH3 0x3A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x3C2 DUP3 PUSH3 0x45F PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x3D2 PUSH3 0x4FA PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x4 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x423 SWAP2 SWAP1 PUSH3 0xDB5 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x7 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x43E SWAP2 SWAP1 PUSH3 0xDB5 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH3 0x45B DUP3 DUP3 PUSH3 0x519 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH3 0x470 DUP2 PUSH3 0x60A PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP TIMESTAMP PUSH1 0x5 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH3 0x50A PUSH3 0x761 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x7 DUP2 SWAP1 SSTORE POP TIMESTAMP PUSH1 0x8 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH3 0x52B DUP3 DUP3 PUSH3 0x7FF PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x606 JUMPI PUSH1 0x1 DUP1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH3 0x5AB PUSH3 0x86A PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x4 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD EQ ISZERO PUSH3 0x65E JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0x75C JUMP JUMPDEST PUSH3 0x74F PUSH3 0x73E PUSH3 0x6BB PUSH1 0x4 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH3 0x886 PUSH1 0x20 SHL PUSH3 0x106C OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x72D PUSH1 0x9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND PUSH1 0x5 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD TIMESTAMP PUSH3 0x71C SWAP2 SWAP1 PUSH3 0xE12 JUMP JUMPDEST PUSH3 0x8AA PUSH1 0x20 SHL PUSH3 0x108F OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xBDB PUSH1 0x20 SHL PUSH3 0x13A4 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xC48 PUSH1 0x20 SHL PUSH3 0x140F OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x7 SLOAD EQ ISZERO PUSH3 0x778 JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0x7FC JUMP JUMPDEST PUSH3 0x7EF PUSH3 0x7DE PUSH3 0x798 PUSH1 0x7 SLOAD PUSH3 0x886 PUSH1 0x20 SHL PUSH3 0x106C OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x7CD PUSH1 0x9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND PUSH1 0x8 SLOAD TIMESTAMP PUSH3 0x7BC SWAP2 SWAP1 PUSH3 0xE12 JUMP JUMPDEST PUSH3 0x8AA PUSH1 0x20 SHL PUSH3 0x108F OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xBDB PUSH1 0x20 SHL PUSH3 0x13A4 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xC48 PUSH1 0x20 SHL PUSH3 0x140F OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x881 PUSH3 0xC6A PUSH1 0x20 SHL PUSH3 0x1430 OR PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0x7FFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x89E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP3 SWAP1 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH1 0xF SIGNEXTEND SLT DUP1 ISZERO PUSH3 0x8C3 JUMPI POP PUSH1 0x1 DUP1 DUP5 AND EQ JUMPDEST SWAP1 POP PUSH1 0x0 DUP1 DUP6 PUSH1 0xF SIGNEXTEND SLT PUSH3 0x8D9 JUMPI DUP5 PUSH3 0x8DE JUMP JUMPDEST DUP5 PUSH1 0x0 SUB JUMPDEST PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH17 0x100000000000000000000000000000000 SWAP1 POP PUSH9 0x10000000000000000 DUP3 GT PUSH3 0x9C0 JUMPI PUSH1 0x3F DUP3 SWAP1 SHL SWAP2 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH3 0x9B3 JUMPI PUSH1 0x0 PUSH1 0x1 DUP7 AND EQ PUSH3 0x940 JUMPI PUSH1 0x7F DUP3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x7F DUP3 DUP4 MUL SWAP1 SHR SWAP2 POP PUSH1 0x0 PUSH1 0x2 DUP7 AND EQ PUSH3 0x95F JUMPI PUSH1 0x7F DUP3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x7F DUP3 DUP4 MUL SWAP1 SHR SWAP2 POP PUSH1 0x0 PUSH1 0x4 DUP7 AND EQ PUSH3 0x97E JUMPI PUSH1 0x7F DUP3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x7F DUP3 DUP4 MUL SWAP1 SHR SWAP2 POP PUSH1 0x0 PUSH1 0x8 DUP7 AND EQ PUSH3 0x99D JUMPI PUSH1 0x7F DUP3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x7F DUP3 DUP4 MUL SWAP1 SHR SWAP2 POP PUSH1 0x4 DUP6 SWAP1 SHR SWAP5 POP PUSH3 0x921 JUMP JUMPDEST PUSH1 0x40 DUP2 SWAP1 SHR SWAP1 POP PUSH3 0xB67 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3F SWAP1 POP PUSH13 0x1000000000000000000000000 DUP4 LT ISZERO PUSH3 0x9EA JUMPI PUSH1 0x20 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x20 DUP2 SUB SWAP1 POP JUMPDEST PUSH15 0x10000000000000000000000000000 DUP4 LT ISZERO PUSH3 0xA10 JUMPI PUSH1 0x10 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x10 DUP2 SUB SWAP1 POP JUMPDEST PUSH16 0x1000000000000000000000000000000 DUP4 LT ISZERO PUSH3 0xA37 JUMPI PUSH1 0x8 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x8 DUP2 SUB SWAP1 POP JUMPDEST PUSH16 0x10000000000000000000000000000000 DUP4 LT ISZERO PUSH3 0xA5E JUMPI PUSH1 0x4 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x4 DUP2 SUB SWAP1 POP JUMPDEST PUSH16 0x40000000000000000000000000000000 DUP4 LT ISZERO PUSH3 0xA85 JUMPI PUSH1 0x2 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x2 DUP2 SUB SWAP1 POP JUMPDEST PUSH16 0x80000000000000000000000000000000 DUP4 LT ISZERO PUSH3 0xAAC JUMPI PUSH1 0x1 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x1 DUP2 SUB SWAP1 POP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP8 EQ PUSH3 0xB4D JUMPI PUSH1 0x40 DUP3 LT PUSH3 0xAC6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP9 AND EQ PUSH3 0xB09 JUMPI PUSH1 0x7F DUP5 DUP5 MUL SWAP1 SHR SWAP3 POP DUP2 DUP2 ADD SWAP1 POP PUSH17 0x100000000000000000000000000000000 DUP4 GT ISZERO PUSH3 0xB08 JUMPI PUSH1 0x1 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x1 DUP2 ADD SWAP1 POP JUMPDEST JUMPDEST PUSH1 0x7F DUP5 DUP6 MUL SWAP1 SHR SWAP4 POP PUSH1 0x1 DUP3 SWAP1 SHL SWAP2 POP PUSH17 0x100000000000000000000000000000000 DUP5 LT PUSH3 0xB40 JUMPI PUSH1 0x1 DUP5 SWAP1 SHR SWAP4 POP PUSH1 0x1 DUP3 ADD SWAP2 POP JUMPDEST PUSH1 0x1 DUP8 SWAP1 SHR SWAP7 POP PUSH3 0xAAF JUMP JUMPDEST PUSH1 0x40 DUP2 LT PUSH3 0xB5B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x40 SUB DUP4 SWAP1 SHR SWAP3 POP POP POP JUMPDEST PUSH1 0x0 DUP4 PUSH3 0xB76 JUMPI DUP2 PUSH3 0xB7B JUMP JUMPDEST DUP2 PUSH1 0x0 SUB JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH3 0xBC4 JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH3 0xBCE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP5 POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 PUSH1 0xF SIGNEXTEND DUP6 PUSH1 0xF SIGNEXTEND MUL SWAP1 SAR SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH3 0xC34 JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH3 0xC3E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND SLT ISZERO PUSH3 0xC5B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP3 PUSH1 0xF SIGNEXTEND SWAP1 SAR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x14 PUSH1 0x0 CALLDATASIZE SWAP1 POP LT ISZERO DUP1 ISZERO PUSH3 0xC8F JUMPI POP PUSH3 0xC8E CALLER PUSH3 0xCAC PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST JUMPDEST ISZERO PUSH3 0xCA5 JUMPI PUSH1 0x14 CALLDATASIZE SUB CALLDATALOAD PUSH1 0x60 SHR SWAP1 POP PUSH3 0xCA9 JUMP JUMPDEST CALLER SWAP1 POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0xD13 SWAP1 PUSH3 0xE57 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xD37 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xD83 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xD52 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xD83 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xD83 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xD82 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xD65 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0xD92 SWAP2 SWAP1 PUSH3 0xD96 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0xDB1 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0xD97 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0xDC2 DUP3 PUSH3 0xE4D JUMP JUMPDEST SWAP2 POP PUSH3 0xDCF DUP4 PUSH3 0xE4D JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0xE07 JUMPI PUSH3 0xE06 PUSH3 0xE8D JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xE1F DUP3 PUSH3 0xE4D JUMP JUMPDEST SWAP2 POP PUSH3 0xE2C DUP4 PUSH3 0xE4D JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH3 0xE42 JUMPI PUSH3 0xE41 PUSH3 0xE8D JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0xE70 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0xE87 JUMPI PUSH3 0xE86 PUSH3 0xEEB JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x2544 DUP1 PUSH3 0xF2A PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x18E JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x5BE1F4CB GT PUSH2 0xDE JUMPI DUP1 PUSH4 0xA217FDDF GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xD5391393 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xD5391393 EQ PUSH2 0x4B1 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x4CF JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x4EB JUMPI DUP1 PUSH4 0xEA243A33 EQ PUSH2 0x51B JUMPI PUSH2 0x18E JUMP JUMPDEST DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x445 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x463 JUMPI DUP1 PUSH4 0xC2E621DE EQ PUSH2 0x493 JUMPI PUSH2 0x18E JUMP JUMPDEST DUP1 PUSH4 0x5BE1F4CB EQ PUSH2 0x36F JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x38D JUMPI DUP1 PUSH4 0x7DA0A877 EQ PUSH2 0x3BD JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x3DB JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x40B JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x429 JUMPI PUSH2 0x18E JUMP JUMPDEST DUP1 PUSH4 0x248A9CA3 GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x36568ABE GT PUSH2 0x125 JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x2E7 JUMPI DUP1 PUSH4 0x486FF0CD EQ PUSH2 0x303 JUMPI DUP1 PUSH4 0x54FD4D50 EQ PUSH2 0x321 JUMPI DUP1 PUSH4 0x572B6C05 EQ PUSH2 0x33F JUMPI PUSH2 0x18E JUMP JUMPDEST DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x27D JUMPI DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x2AD JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x2C9 JUMPI PUSH2 0x18E JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x193 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1E1 JUMPI DUP1 PUSH4 0x98D3228 EQ PUSH2 0x211 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x22F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x24D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1AD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A8 SWAP2 SWAP1 PUSH2 0x1D67 JUMP JUMPDEST PUSH2 0x539 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BA SWAP2 SWAP1 PUSH2 0x1F7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CB PUSH2 0x5B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D8 SWAP2 SWAP1 PUSH2 0x1FB0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F6 SWAP2 SWAP1 PUSH2 0x1CBA JUMP JUMPDEST PUSH2 0x641 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x208 SWAP2 SWAP1 PUSH2 0x1F7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x219 PUSH2 0x741 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x226 SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x237 PUSH2 0x765 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x244 SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x267 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x262 SWAP2 SWAP1 PUSH2 0x1C67 JUMP JUMPDEST PUSH2 0x7CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x274 SWAP2 SWAP1 PUSH2 0x1F7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x297 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x292 SWAP2 SWAP1 PUSH2 0x1CFA JUMP JUMPDEST PUSH2 0x8E2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A4 SWAP2 SWAP1 PUSH2 0x1F95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C2 SWAP2 SWAP1 PUSH2 0x1D27 JUMP JUMPDEST PUSH2 0x902 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2D1 PUSH2 0x92B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2DE SWAP2 SWAP1 PUSH2 0x204D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x301 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2FC SWAP2 SWAP1 PUSH2 0x1D27 JUMP JUMPDEST PUSH2 0x93E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x30B PUSH2 0x9C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x318 SWAP2 SWAP1 PUSH2 0x1FB0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x329 PUSH2 0xA4F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x336 SWAP2 SWAP1 PUSH2 0x1FB0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x359 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x354 SWAP2 SWAP1 PUSH2 0x1BFA JUMP JUMPDEST PUSH2 0xADD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x366 SWAP2 SWAP1 PUSH2 0x1F7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x377 PUSH2 0xB36 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x384 SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3A7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3A2 SWAP2 SWAP1 PUSH2 0x1BFA JUMP JUMPDEST PUSH2 0xB3C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3C5 PUSH2 0xC5B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3D2 SWAP2 SWAP1 PUSH2 0x1F5F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3F5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3F0 SWAP2 SWAP1 PUSH2 0x1D27 JUMP JUMPDEST PUSH2 0xC85 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x402 SWAP2 SWAP1 PUSH2 0x1F7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x413 PUSH2 0xCF0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x420 SWAP2 SWAP1 PUSH2 0x1FB0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x443 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x43E SWAP2 SWAP1 PUSH2 0x1D94 JUMP JUMPDEST PUSH2 0xD7E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x44D PUSH2 0xE02 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x45A SWAP2 SWAP1 PUSH2 0x1F95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x47D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x478 SWAP2 SWAP1 PUSH2 0x1CBA JUMP JUMPDEST PUSH2 0xE09 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x48A SWAP2 SWAP1 PUSH2 0x1F7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x49B PUSH2 0xE93 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4A8 SWAP2 SWAP1 PUSH2 0x1F5F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4B9 PUSH2 0xEB9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4C6 SWAP2 SWAP1 PUSH2 0x1F95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4E9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4E4 SWAP2 SWAP1 PUSH2 0x1D27 JUMP JUMPDEST PUSH2 0xEDD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x505 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x500 SWAP2 SWAP1 PUSH2 0x1C27 JUMP JUMPDEST PUSH2 0xF06 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x512 SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x523 PUSH2 0xF8D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x530 SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x7965DB0B00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x5AC JUMPI POP PUSH2 0x5AB DUP3 PUSH2 0x1467 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xB DUP1 SLOAD PUSH2 0x5C0 SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x5EC SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 ISZERO PUSH2 0x639 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x60E JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x639 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x61C JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x6 PUSH1 0x0 PUSH2 0x650 PUSH2 0x14D1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x6EA PUSH2 0x14D1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x72F SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x7 SLOAD EQ ISZERO PUSH2 0x77A JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x7C8 JUMP JUMPDEST PUSH2 0x7BB PUSH2 0x7B6 PUSH2 0x78B PUSH1 0x7 SLOAD PUSH2 0x106C JUMP JUMPDEST PUSH2 0x7B1 PUSH1 0x9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND PUSH1 0x8 SLOAD TIMESTAMP PUSH2 0x7AC SWAP2 SWAP1 PUSH2 0x2170 JUMP JUMPDEST PUSH2 0x108F JUMP JUMPDEST PUSH2 0x13A4 JUMP JUMPDEST PUSH2 0x140F JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7D8 DUP5 DUP5 DUP5 PUSH2 0x14E0 JUMP JUMPDEST DUP2 PUSH1 0x6 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x822 PUSH2 0x14D1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x86B SWAP2 SWAP1 PUSH2 0x2170 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x8CF SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x90B DUP3 PUSH2 0x8E2 JUMP JUMPDEST PUSH2 0x91C DUP2 PUSH2 0x917 PUSH2 0x14D1 JUMP JUMPDEST PUSH2 0x1559 JUMP JUMPDEST PUSH2 0x926 DUP4 DUP4 PUSH2 0x15F6 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0xC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x946 PUSH2 0x14D1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9AA SWAP1 PUSH2 0x2012 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9BD DUP3 DUP3 PUSH2 0x16D6 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH2 0x9CE SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x9FA SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 ISZERO PUSH2 0xA47 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xA1C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xA47 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xA2A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0xE DUP1 SLOAD PUSH2 0xA5C SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xA88 SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 ISZERO PUSH2 0xAD5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xAAA JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xAD5 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xAB8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x4 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD EQ ISZERO PUSH2 0xB8E JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0xC56 JUMP JUMPDEST PUSH2 0xC49 PUSH2 0xC44 PUSH2 0xBDC PUSH1 0x4 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x106C JUMP JUMPDEST PUSH2 0xC3F PUSH1 0x9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND PUSH1 0x5 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD TIMESTAMP PUSH2 0xC3A SWAP2 SWAP1 PUSH2 0x2170 JUMP JUMPDEST PUSH2 0x108F JUMP JUMPDEST PUSH2 0x13A4 JUMP JUMPDEST PUSH2 0x140F JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xD DUP1 SLOAD PUSH2 0xCFD SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xD29 SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 ISZERO PUSH2 0xD76 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xD4B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xD76 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xD59 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH2 0xDAF PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 PUSH2 0xDAA PUSH2 0x14D1 JUMP JUMPDEST PUSH2 0xC85 JUMP JUMPDEST PUSH2 0xDEE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDE5 SWAP1 PUSH2 0x1FF2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDFF PUSH2 0xDF9 PUSH2 0x14D1 JUMP JUMPDEST DUP3 PUSH2 0x17B8 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 SHL DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE1D PUSH2 0xE16 PUSH2 0x14D1 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x14E0 JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xE3C PUSH2 0x14D1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xE81 SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 DUP2 JUMP JUMPDEST PUSH2 0xEE6 DUP3 PUSH2 0x8E2 JUMP JUMPDEST PUSH2 0xEF7 DUP2 PUSH2 0xEF2 PUSH2 0x14D1 JUMP JUMPDEST PUSH2 0x1559 JUMP JUMPDEST PUSH2 0xF01 DUP4 DUP4 PUSH2 0x16D6 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000000 DUP3 SLT ISZERO DUP1 ISZERO PUSH2 0xFCD JUMPI POP PUSH8 0x7FFFFFFFFFFFFFFF DUP3 SGT ISZERO JUMPDEST PUSH2 0xFD6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP3 SWAP1 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND EQ ISZERO PUSH2 0xFF4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH1 0xF SIGNEXTEND PUSH1 0x40 DUP6 PUSH1 0xF SIGNEXTEND SWAP1 SHL DUP2 PUSH2 0x1010 JUMPI PUSH2 0x100F PUSH2 0x22ED JUMP JUMPDEST JUMPDEST SDIV SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH2 0x1059 JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH2 0x1062 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0x7FFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1083 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP3 SWAP1 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH1 0xF SIGNEXTEND SLT DUP1 ISZERO PUSH2 0x10A7 JUMPI POP PUSH1 0x1 DUP1 DUP5 AND EQ JUMPDEST SWAP1 POP PUSH1 0x0 DUP1 DUP6 PUSH1 0xF SIGNEXTEND SLT PUSH2 0x10BB JUMPI DUP5 PUSH2 0x10C0 JUMP JUMPDEST DUP5 PUSH1 0x0 SUB JUMPDEST PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH17 0x100000000000000000000000000000000 SWAP1 POP PUSH9 0x10000000000000000 DUP3 GT PUSH2 0x119A JUMPI PUSH1 0x3F DUP3 SWAP1 SHL SWAP2 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x118E JUMPI PUSH1 0x0 PUSH1 0x1 DUP7 AND EQ PUSH2 0x111F JUMPI PUSH1 0x7F DUP3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x7F DUP3 DUP4 MUL SWAP1 SHR SWAP2 POP PUSH1 0x0 PUSH1 0x2 DUP7 AND EQ PUSH2 0x113D JUMPI PUSH1 0x7F DUP3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x7F DUP3 DUP4 MUL SWAP1 SHR SWAP2 POP PUSH1 0x0 PUSH1 0x4 DUP7 AND EQ PUSH2 0x115B JUMPI PUSH1 0x7F DUP3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x7F DUP3 DUP4 MUL SWAP1 SHR SWAP2 POP PUSH1 0x0 PUSH1 0x8 DUP7 AND EQ PUSH2 0x1179 JUMPI PUSH1 0x7F DUP3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x7F DUP3 DUP4 MUL SWAP1 SHR SWAP2 POP PUSH1 0x4 DUP6 SWAP1 SHR SWAP5 POP PUSH2 0x1102 JUMP JUMPDEST PUSH1 0x40 DUP2 SWAP1 SHR SWAP1 POP PUSH2 0x1334 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3F SWAP1 POP PUSH13 0x1000000000000000000000000 DUP4 LT ISZERO PUSH2 0x11C3 JUMPI PUSH1 0x20 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x20 DUP2 SUB SWAP1 POP JUMPDEST PUSH15 0x10000000000000000000000000000 DUP4 LT ISZERO PUSH2 0x11E8 JUMPI PUSH1 0x10 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x10 DUP2 SUB SWAP1 POP JUMPDEST PUSH16 0x1000000000000000000000000000000 DUP4 LT ISZERO PUSH2 0x120E JUMPI PUSH1 0x8 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x8 DUP2 SUB SWAP1 POP JUMPDEST PUSH16 0x10000000000000000000000000000000 DUP4 LT ISZERO PUSH2 0x1234 JUMPI PUSH1 0x4 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x4 DUP2 SUB SWAP1 POP JUMPDEST PUSH16 0x40000000000000000000000000000000 DUP4 LT ISZERO PUSH2 0x125A JUMPI PUSH1 0x2 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x2 DUP2 SUB SWAP1 POP JUMPDEST PUSH16 0x80000000000000000000000000000000 DUP4 LT ISZERO PUSH2 0x1280 JUMPI PUSH1 0x1 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x1 DUP2 SUB SWAP1 POP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP8 EQ PUSH2 0x131B JUMPI PUSH1 0x40 DUP3 LT PUSH2 0x1298 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP9 AND EQ PUSH2 0x12D9 JUMPI PUSH1 0x7F DUP5 DUP5 MUL SWAP1 SHR SWAP3 POP DUP2 DUP2 ADD SWAP1 POP PUSH17 0x100000000000000000000000000000000 DUP4 GT ISZERO PUSH2 0x12D8 JUMPI PUSH1 0x1 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x1 DUP2 ADD SWAP1 POP JUMPDEST JUMPDEST PUSH1 0x7F DUP5 DUP6 MUL SWAP1 SHR SWAP4 POP PUSH1 0x1 DUP3 SWAP1 SHL SWAP2 POP PUSH17 0x100000000000000000000000000000000 DUP5 LT PUSH2 0x130F JUMPI PUSH1 0x1 DUP5 SWAP1 SHR SWAP4 POP PUSH1 0x1 DUP3 ADD SWAP2 POP JUMPDEST PUSH1 0x1 DUP8 SWAP1 SHR SWAP7 POP PUSH2 0x1283 JUMP JUMPDEST PUSH1 0x40 DUP2 LT PUSH2 0x1328 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x40 SUB DUP4 SWAP1 SHR SWAP3 POP POP POP JUMPDEST PUSH1 0x0 DUP4 PUSH2 0x1341 JUMPI DUP2 PUSH2 0x1346 JUMP JUMPDEST DUP2 PUSH1 0x0 SUB JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH2 0x138E JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH2 0x1397 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP5 POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 PUSH1 0xF SIGNEXTEND DUP6 PUSH1 0xF SIGNEXTEND MUL SWAP1 SAR SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH2 0x13FC JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH2 0x1405 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND SLT ISZERO PUSH2 0x1421 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP3 PUSH1 0xF SIGNEXTEND SWAP1 SAR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x14 PUSH1 0x0 CALLDATASIZE SWAP1 POP LT ISZERO DUP1 ISZERO PUSH2 0x144C JUMPI POP PUSH2 0x144B CALLER PUSH2 0xADD JUMP JUMPDEST JUMPDEST ISZERO PUSH2 0x1460 JUMPI PUSH1 0x14 CALLDATASIZE SUB CALLDATALOAD PUSH1 0x60 SHR SWAP1 POP PUSH2 0x1464 JUMP JUMPDEST CALLER SWAP1 POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14DB PUSH2 0x1430 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x14EA DUP4 DUP3 PUSH2 0x183C JUMP JUMPDEST PUSH2 0x1500 DUP3 PUSH1 0xA DUP4 PUSH2 0x14FB SWAP2 SWAP1 PUSH2 0x20E5 JUMP JUMPDEST PUSH2 0x17B8 JUMP JUMPDEST PUSH2 0x152A PUSH20 0x51F77C6E454B9CE3CA8EB5340C7FFC4F23483C2C PUSH1 0xA DUP4 PUSH2 0x1525 SWAP2 SWAP1 PUSH2 0x20E5 JUMP JUMPDEST PUSH2 0x17B8 JUMP JUMPDEST PUSH2 0x1554 PUSH20 0x37DA4B9542E95FD649CDB51E8BF9563DD660CB6C PUSH1 0xA DUP4 PUSH2 0x154F SWAP2 SWAP1 PUSH2 0x20E5 JUMP JUMPDEST PUSH2 0x17B8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1563 DUP3 DUP3 PUSH2 0xC85 JUMP JUMPDEST PUSH2 0x15F2 JUMPI PUSH2 0x1588 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x14 PUSH2 0x18C0 JUMP JUMPDEST PUSH2 0x1596 DUP4 PUSH1 0x0 SHR PUSH1 0x20 PUSH2 0x18C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x15A7 SWAP3 SWAP2 SWAP1 PUSH2 0x1F25 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15E9 SWAP2 SWAP1 PUSH2 0x1FB0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1600 DUP3 DUP3 PUSH2 0xC85 JUMP JUMPDEST PUSH2 0x16D2 JUMPI PUSH1 0x1 DUP1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x1677 PUSH2 0x14D1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x16E0 DUP3 DUP3 PUSH2 0xC85 JUMP JUMPDEST ISZERO PUSH2 0x17B4 JUMPI PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x1759 PUSH2 0x14D1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x17C1 DUP3 PUSH2 0x1AFC JUMP JUMPDEST PUSH2 0x17C9 PUSH2 0x1B8F JUMP JUMPDEST DUP1 PUSH1 0x4 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1818 SWAP2 SWAP1 PUSH2 0x208F JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x7 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1831 SWAP2 SWAP1 PUSH2 0x208F JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH2 0x1845 DUP3 PUSH2 0x1AFC JUMP JUMPDEST PUSH2 0x184D PUSH2 0x1B8F JUMP JUMPDEST DUP1 PUSH1 0x4 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x189C SWAP2 SWAP1 PUSH2 0x2170 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x7 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x18B5 SWAP2 SWAP1 PUSH2 0x2170 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x2 DUP4 PUSH1 0x2 PUSH2 0x18D3 SWAP2 SWAP1 PUSH2 0x2116 JUMP JUMPDEST PUSH2 0x18DD SWAP2 SWAP1 PUSH2 0x208F JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x18F6 JUMPI PUSH2 0x18F5 PUSH2 0x237A JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1928 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1960 JUMPI PUSH2 0x195F PUSH2 0x234B JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH32 0x7800000000000000000000000000000000000000000000000000000000000000 DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x19C4 JUMPI PUSH2 0x19C3 PUSH2 0x234B JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x0 PUSH1 0x1 DUP5 PUSH1 0x2 PUSH2 0x1A04 SWAP2 SWAP1 PUSH2 0x2116 JUMP JUMPDEST PUSH2 0x1A0E SWAP2 SWAP1 PUSH2 0x208F JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x1AAE JUMPI PUSH32 0x3031323334353637383961626364656600000000000000000000000000000000 PUSH1 0xF DUP7 AND PUSH1 0x10 DUP2 LT PUSH2 0x1A50 JUMPI PUSH2 0x1A4F PUSH2 0x234B JUMP JUMPDEST JUMPDEST BYTE PUSH1 0xF8 SHL DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1A67 JUMPI PUSH2 0x1A66 PUSH2 0x234B JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x4 DUP6 SWAP1 SHR SWAP5 POP DUP1 PUSH2 0x1AA7 SWAP1 PUSH2 0x2262 JUMP JUMPDEST SWAP1 POP PUSH2 0x1A11 JUMP JUMPDEST POP PUSH1 0x0 DUP5 EQ PUSH2 0x1AF2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AE9 SWAP1 PUSH2 0x1FD2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1B05 DUP2 PUSH2 0xB3C JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP TIMESTAMP PUSH1 0x5 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x1B97 PUSH2 0x765 JUMP JUMPDEST PUSH1 0x7 DUP2 SWAP1 SSTORE POP TIMESTAMP PUSH1 0x8 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1BB5 DUP2 PUSH2 0x24B2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1BCA DUP2 PUSH2 0x24C9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1BDF DUP2 PUSH2 0x24E0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1BF4 DUP2 PUSH2 0x24F7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C10 JUMPI PUSH2 0x1C0F PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C1E DUP5 DUP3 DUP6 ADD PUSH2 0x1BA6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C3E JUMPI PUSH2 0x1C3D PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C4C DUP6 DUP3 DUP7 ADD PUSH2 0x1BA6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1C5D DUP6 DUP3 DUP7 ADD PUSH2 0x1BA6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1C80 JUMPI PUSH2 0x1C7F PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C8E DUP7 DUP3 DUP8 ADD PUSH2 0x1BA6 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1C9F DUP7 DUP3 DUP8 ADD PUSH2 0x1BA6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1CB0 DUP7 DUP3 DUP8 ADD PUSH2 0x1BE5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1CD1 JUMPI PUSH2 0x1CD0 PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1CDF DUP6 DUP3 DUP7 ADD PUSH2 0x1BA6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1CF0 DUP6 DUP3 DUP7 ADD PUSH2 0x1BE5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1D10 JUMPI PUSH2 0x1D0F PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1D1E DUP5 DUP3 DUP6 ADD PUSH2 0x1BBB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1D3E JUMPI PUSH2 0x1D3D PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1D4C DUP6 DUP3 DUP7 ADD PUSH2 0x1BBB JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1D5D DUP6 DUP3 DUP7 ADD PUSH2 0x1BA6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1D7D JUMPI PUSH2 0x1D7C PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1D8B DUP5 DUP3 DUP6 ADD PUSH2 0x1BD0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DAA JUMPI PUSH2 0x1DA9 PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1DB8 DUP5 DUP3 DUP6 ADD PUSH2 0x1BE5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1DCA DUP2 PUSH2 0x21A4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1DD9 DUP2 PUSH2 0x21B6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1DE8 DUP2 PUSH2 0x21C2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1DF9 DUP3 PUSH2 0x2068 JUMP JUMPDEST PUSH2 0x1E03 DUP2 DUP6 PUSH2 0x2073 JUMP JUMPDEST SWAP4 POP PUSH2 0x1E13 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x222F JUMP JUMPDEST PUSH2 0x1E1C DUP2 PUSH2 0x23AE JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E32 DUP3 PUSH2 0x2068 JUMP JUMPDEST PUSH2 0x1E3C DUP2 DUP6 PUSH2 0x2084 JUMP JUMPDEST SWAP4 POP PUSH2 0x1E4C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x222F JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E65 PUSH1 0x20 DUP4 PUSH2 0x2073 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E70 DUP3 PUSH2 0x23BF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E88 PUSH1 0x16 DUP4 PUSH2 0x2073 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E93 DUP3 PUSH2 0x23E8 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EAB PUSH1 0x17 DUP4 PUSH2 0x2084 JUMP JUMPDEST SWAP2 POP PUSH2 0x1EB6 DUP3 PUSH2 0x2411 JUMP JUMPDEST PUSH1 0x17 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1ECE PUSH1 0x11 DUP4 PUSH2 0x2084 JUMP JUMPDEST SWAP2 POP PUSH2 0x1ED9 DUP3 PUSH2 0x243A JUMP JUMPDEST PUSH1 0x11 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EF1 PUSH1 0x2F DUP4 PUSH2 0x2073 JUMP JUMPDEST SWAP2 POP PUSH2 0x1EFC DUP3 PUSH2 0x2463 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1F10 DUP2 PUSH2 0x2218 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1F1F DUP2 PUSH2 0x2222 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F30 DUP3 PUSH2 0x1E9E JUMP JUMPDEST SWAP2 POP PUSH2 0x1F3C DUP3 DUP6 PUSH2 0x1E27 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F47 DUP3 PUSH2 0x1EC1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F53 DUP3 DUP5 PUSH2 0x1E27 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1F74 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1DC1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1F8F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1DD0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1FAA PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1DDF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1FCA DUP2 DUP5 PUSH2 0x1DEE JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1FEB DUP2 PUSH2 0x1E58 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x200B DUP2 PUSH2 0x1E7B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x202B DUP2 PUSH2 0x1EE4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2047 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1F07 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2062 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1F16 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x209A DUP3 PUSH2 0x2218 JUMP JUMPDEST SWAP2 POP PUSH2 0x20A5 DUP4 PUSH2 0x2218 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x20DA JUMPI PUSH2 0x20D9 PUSH2 0x22BE JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x20F0 DUP3 PUSH2 0x2218 JUMP JUMPDEST SWAP2 POP PUSH2 0x20FB DUP4 PUSH2 0x2218 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x210B JUMPI PUSH2 0x210A PUSH2 0x22ED JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2121 DUP3 PUSH2 0x2218 JUMP JUMPDEST SWAP2 POP PUSH2 0x212C DUP4 PUSH2 0x2218 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x2165 JUMPI PUSH2 0x2164 PUSH2 0x22BE JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x217B DUP3 PUSH2 0x2218 JUMP JUMPDEST SWAP2 POP PUSH2 0x2186 DUP4 PUSH2 0x2218 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x2199 JUMPI PUSH2 0x2198 PUSH2 0x22BE JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x21AF DUP3 PUSH2 0x21F8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x224D JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2232 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x225C JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x226D DUP3 PUSH2 0x2218 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x2281 JUMPI PUSH2 0x2280 PUSH2 0x22BE JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 SUB SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x22A4 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x22B8 JUMPI PUSH2 0x22B7 PUSH2 0x231C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x537472696E67733A20686578206C656E67746820696E73756666696369656E74 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x43616C6C6572206973206E6F742061206D696E74657200000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x416363657373436F6E74726F6C3A206163636F756E7420000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x206973206D697373696E6720726F6C6520000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x416363657373436F6E74726F6C3A2063616E206F6E6C792072656E6F756E6365 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x20726F6C657320666F722073656C660000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x24BB DUP2 PUSH2 0x21A4 JUMP JUMPDEST DUP2 EQ PUSH2 0x24C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x24D2 DUP2 PUSH2 0x21C2 JUMP JUMPDEST DUP2 EQ PUSH2 0x24DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x24E9 DUP2 PUSH2 0x21CC JUMP JUMPDEST DUP2 EQ PUSH2 0x24F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2500 DUP2 PUSH2 0x2218 JUMP JUMPDEST DUP2 EQ PUSH2 0x250B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE4 0xC 0x1F 0xBB 0x4D 0xA7 0xD0 PUSH22 0xBBDD4BCBAC4AE6EF5D75555C9EFFD298B766A9AF4D3D GT PUSH27 0x64736F6C6343000807003300000000000000000000000000000000 ",
"sourceMap": "362:4566:22:-:0;;;429:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;589:42;552:79;;;;;;;;;;;;;;;;;;;;982:2;958:26;;;;;;;;;;;;;;;;;;;;1016:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1169:470;;;;;;;;;;1210:1;1193:14;:18;;;;1221;;;;;;;;;;;;;;;;;:4;:18;;;;;;;;;;;;:::i;:::-;;1249:16;;;;;;;;;;;;;;;;;:6;:16;;;;;;;;;;;;:::i;:::-;;1295:83;1313:31;1335:8;1313:21;;;;;:31;;:::i;:::-;1346;1368:8;1346:21;;;;;:31;;:::i;:::-;1295:17;;;;;:83;;:::i;:::-;1284:8;;:94;;;;;;;;;;;;;;;;;;;;1420:59;1426:42;1470:8;1420:5;;;:59;;:::i;:::-;1489;1495:42;1539:8;1489:5;;;:59;;:::i;:::-;1558:74;1997:4:11;1569:18:22;;1589:42;1558:10;;;:74;;:::i;:::-;362:4566;;1027:186:19;1078:6;1124:19;1119:1;:24;;:51;;;;;1152:18;1147:1;:23;;1119:51;1110:61;;;;;;1199:2;1194:1;:7;;1179:23;;1027:186;;;:::o;6847:252::-;6904:6;6950:1;6945;:6;;;;6936:16;;;;;;6960:13;6997:1;6976:22;;6991:2;6985:1;6977:10;;:16;;6976:22;;;;;:::i;:::-;;;6960:38;;614:35;7015:19;;:6;:19;;:42;;;;;767:34;7038:19;;:6;:19;;7015:42;7006:52;;;;;;7081:6;7066:22;;;6847:252;;;;:::o;3945:185:22:-;4006:21;4023:3;4006:16;;;:21;;:::i;:::-;4037:23;:21;;;:23;;:::i;:::-;4087:4;4070:8;:13;4079:3;4070:13;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;4119:4;4101:14;;:22;;;;;;;:::i;:::-;;;;;;;;3945:185;;:::o;6084:110:11:-;6162:25;6173:4;6179:7;6162:10;;;:25;;:::i;:::-;6084:110;;:::o;3776:159:22:-;3856:17;3866:6;3856:9;;;:17;;:::i;:::-;3837:8;:16;3846:6;3837:16;;;;;;;;;;;;;;;:36;;;;3913:15;3883:19;:27;3903:6;3883:27;;;;;;;;;;;;;;;:45;;;;3776:159;:::o;3624:142::-;3693:13;:11;;;:13;;:::i;:::-;3676:14;:30;;;;3744:15;3716:25;:43;;;;3624:142::o;6572:224:11:-;6646:22;6654:4;6660:7;6646;;;:22;;:::i;:::-;6641:149;;6716:4;6684:6;:12;6691:4;6684:12;;;;;;;;;;;:20;;:29;6705:7;6684:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;6766:12;:10;;;:12;;:::i;:::-;6739:40;;6757:7;6739:40;;6751:4;6739:40;;;;;;;;;;6641:149;6572:224;;:::o;2170:409:22:-;2235:15;2286:1;2266:8;:16;2275:6;2266:16;;;;;;;;;;;;;;;;:21;2262:59;;;2309:1;2302:8;;;;2262:59;2337:235;2358:213;2389:40;2412:8;:16;2421:6;2412:16;;;;;;;;;;;;;;;;2389:22;;;;;:40;;:::i;:::-;2443:118;2478:8;;;;;;;;;;;2520:19;:27;2540:6;2520:27;;;;;;;;;;;;;;;;2504:15;:43;;;;:::i;:::-;2443:17;;;;;:118;;:::i;:::-;2358:17;;;;;:213;;:::i;:::-;2337:20;;;;;:235;;:::i;:::-;2330:242;;;;2170:409;;;;:::o;1767:397::-;1828:14;1875:1;1857:14;;:19;1853:57;;;1898:1;1891:8;;;;1853:57;1926:231;1947:209;1978:38;2001:14;;1978:22;;;;;:38;;:::i;:::-;2030:116;2065:8;;;;;;;;;;;2107:25;;2091:15;:41;;;;:::i;:::-;2030:17;;;;;:116;;:::i;:::-;1947:17;;;;;:209;;:::i;:::-;1926:20;;;;;:231;;:::i;:::-;1919:238;;;;1767:397;;:::o;2834:137:11:-;2912:4;2935:6;:12;2942:4;2935:12;;;;;;;;;;;:20;;:29;2956:7;2935:29;;;;;;;;;;;;;;;;;;;;;;;;;2928:36;;2834:137;;;;:::o;4500:146:22:-;4582:7;4608:31;:29;;;;;:31;;:::i;:::-;4601:38;;4500:146;:::o;1767:169:19:-;1820:6;1866:18;1861:1;:23;;1852:33;;;;;;1921:2;1916:1;:7;;1893:32;;1767:169;;;:::o;11096:2328::-;11154:6;11186:13;11206:1;11202;:5;;;:19;;;;;11220:1;11215;11211;:5;:10;11202:19;11186:35;;11230:12;11258:1;11254;:5;;;:14;;11267:1;11254:14;;;11263:1;11262:2;;11254:14;11230:39;;;;11277:17;11314:35;11302:47;;11370:19;11362:4;:27;11358:1891;;11410:2;11401:11;;;;;11422:561;11434:1;11429;:6;11422:561;;11464:1;11457:3;11453:1;:7;:12;11449:80;;11513:3;11505:4;11493:9;:16;:23;;11481:35;;11449:80;11562:3;11554:4;11547;:11;:18;;11540:25;;11593:1;11586:3;11582:1;:7;:12;11578:80;;11642:3;11634:4;11622:9;:16;:23;;11610:35;;11578:80;11691:3;11683:4;11676;:11;:18;;11669:25;;11722:1;11715:3;11711:1;:7;:12;11707:80;;11771:3;11763:4;11751:9;:16;:23;;11739:35;;11707:80;11820:3;11812:4;11805;:11;:18;;11798:25;;11851:1;11844:3;11840:1;:7;:12;11836:80;;11900:3;11892:4;11880:9;:16;:23;;11868:35;;11836:80;11949:3;11941:4;11934;:11;:18;;11927:25;;11971:1;11965:7;;;;;11422:561;;;12007:2;11993:16;;;;;11358:1891;;;12034:17;12054:2;12034:22;;12077:27;12070:4;:34;12066:73;;;12117:2;12108:11;;;;;12134:2;12121:15;;;;12066:73;12159:31;12152:4;:38;12148:77;;;12203:2;12194:11;;;;;12220:2;12207:15;;;;12148:77;12245:33;12238:4;:40;12234:77;;;12291:1;12282:10;;;;;12307:1;12294:14;;;;12234:77;12331:34;12324:4;:41;12320:78;;;12378:1;12369:10;;;;;12394:1;12381:14;;;;12320:78;12418:34;12411:4;:41;12407:78;;;12465:1;12456:10;;;;;12481:1;12468:14;;;;12407:78;12505:34;12498:4;:41;12494:78;;;12552:1;12543:10;;;;;12568:1;12555:14;;;;12494:78;12582:19;12615:549;12627:1;12622;:6;12615:549;;12663:2;12651:9;:14;12642:24;;;;;;12694:1;12687:3;12683:1;:7;:12;12679:262;;12743:3;12735:4;12723:9;:16;:23;;12711:35;;12775:9;12760:24;;;;12814:35;12802:9;:47;12798:131;;;12881:1;12867:15;;;;;12913:1;12898:16;;;;12798:131;12679:262;12974:3;12966:4;12959;:11;:18;;12952:25;;13003:1;12989:15;;;;;13028:35;13020:4;:43;13016:118;;13090:1;13081:10;;;;;13120:1;13107:14;;;;13016:118;13152:1;13146:7;;;;;12615:549;;;13197:2;13183:11;:16;13174:26;;;;;;13229:11;13224:2;:16;13210:30;;;;;12024:1225;;11358:1891;13256:13;13272:8;:51;;13313:9;13272:51;;;13292:9;13283:19;;13272:51;13256:67;;614:35;13340:19;;:6;:19;;:42;;;;;767:34;13363:19;;:6;:19;;13340:42;13331:52;;;;;;13406:6;13391:22;;;;;;11096:2328;;;;:::o;4204:225::-;4261:6;4293:13;4326:2;4321:1;4309:13;;4316:1;4309:9;;:13;:19;;4293:35;;614;4345:19;;:6;:19;;:42;;;;;767:34;4368:19;;:6;:19;;4345:42;4336:52;;;;;;4411:6;4396:22;;;4204:225;;;;:::o;2174:150::-;2224:6;2270:1;2265;:6;;;;2256:16;;;;;;2309:2;2304:1;:7;;;;2280:33;;2174:150;;;:::o;1089:547:1:-;1151:11;1197:2;1178:8;;:15;;:21;;:55;;;;;1203:30;1222:10;1203:18;;;:30;;:::i;:::-;1178:55;1174:456;;;1554:2;1539:14;1535:22;1522:36;1519:2;1515:44;1508:51;;1174:456;;;1609:10;1603:16;;1174:456;1089:547;:::o;693:144::-;777:4;813:17;;;;;;;;;;;800:30;;:9;:30;;;793:37;;693:144;;;:::o;362:4566:22:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:305:23:-;47:3;66:20;84:1;66:20;:::i;:::-;61:25;;100:20;118:1;100:20;:::i;:::-;95:25;;254:1;186:66;182:74;179:1;176:81;173:107;;;260:18;;:::i;:::-;173:107;304:1;301;297:9;290:16;;7:305;;;;:::o;318:191::-;358:4;378:20;396:1;378:20;:::i;:::-;373:25;;412:20;430:1;412:20;:::i;:::-;407:25;;451:1;448;445:8;442:34;;;456:18;;:::i;:::-;442:34;501:1;498;494:9;486:17;;318:191;;;;:::o;515:77::-;552:7;581:5;570:16;;515:77;;;:::o;598:320::-;642:6;679:1;673:4;669:12;659:22;;726:1;720:4;716:12;747:18;737:81;;803:4;795:6;791:17;781:27;;737:81;865:2;857:6;854:14;834:18;831:38;828:84;;;884:18;;:::i;:::-;828:84;649:269;598:320;;;:::o;924:180::-;972:77;969:1;962:88;1069:4;1066:1;1059:15;1093:4;1090:1;1083:15;1110:180;1158:77;1155:1;1148:88;1255:4;1252:1;1245:15;1279:4;1276:1;1269:15;1296:180;1344:77;1341:1;1334:88;1441:4;1438:1;1431:15;1465:4;1462:1;1455:15;362:4566:22;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@DEFAULT_ADMIN_ROLE_1524": {
"entryPoint": 3586,
"id": 1524,
"parameterSlots": 0,
"returnSlots": 0
},
"@MAX_INT_5545": {
"entryPoint": 1857,
"id": 5545,
"parameterSlots": 0,
"returnSlots": 0
},
"@MINTER_ROLE_5507": {
"entryPoint": 3769,
"id": 5507,
"parameterSlots": 0,
"returnSlots": 0
},
"@_burn_5896": {
"entryPoint": 6204,
"id": 5896,
"parameterSlots": 2,
"returnSlots": 0
},
"@_checkRole_1621": {
"entryPoint": 5465,
"id": 1621,
"parameterSlots": 2,
"returnSlots": 0
},
"@_grantRole_1772": {
"entryPoint": 5622,
"id": 1772,
"parameterSlots": 2,
"returnSlots": 0
},
"@_mint_5871": {
"entryPoint": 6072,
"id": 5871,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_265": {
"entryPoint": 5168,
"id": 265,
"parameterSlots": 0,
"returnSlots": 1
},
"@_msgSender_5922": {
"entryPoint": 5329,
"id": 5922,
"parameterSlots": 0,
"returnSlots": 1
},
"@_revokeRole_1802": {
"entryPoint": 5846,
"id": 1802,
"parameterSlots": 2,
"returnSlots": 0
},
"@_transfer_5958": {
"entryPoint": 5344,
"id": 5958,
"parameterSlots": 3,
"returnSlots": 0
},
"@_updateBalanceOf_5846": {
"entryPoint": 6908,
"id": 5846,
"parameterSlots": 1,
"returnSlots": 0
},
"@_updateTheTotalSupply_5825": {
"entryPoint": 7055,
"id": 5825,
"parameterSlots": 0,
"returnSlots": 0
},
"@allowance_5790": {
"entryPoint": 3846,
"id": 5790,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_5773": {
"entryPoint": 1601,
"id": 5773,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_5681": {
"entryPoint": 2876,
"id": 5681,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_5537": {
"entryPoint": 2347,
"id": 5537,
"parameterSlots": 0,
"returnSlots": 0
},
"@div_3046": {
"entryPoint": 4066,
"id": 3046,
"parameterSlots": 2,
"returnSlots": 1
},
"@fromInt_2591": {
"entryPoint": 3987,
"id": 2591,
"parameterSlots": 1,
"returnSlots": 1
},
"@fromUInt_2634": {
"entryPoint": 4204,
"id": 2634,
"parameterSlots": 1,
"returnSlots": 1
},
"@getRoleAdmin_1636": {
"entryPoint": 2274,
"id": 1636,
"parameterSlots": 1,
"returnSlots": 1
},
"@grantRole_1656": {
"entryPoint": 2306,
"id": 1656,
"parameterSlots": 2,
"returnSlots": 0
},
"@hasRole_1578": {
"entryPoint": 3205,
"id": 1578,
"parameterSlots": 2,
"returnSlots": 1
},
"@isTrustedForwarder_238": {
"entryPoint": 2781,
"id": 238,
"parameterSlots": 1,
"returnSlots": 1
},
"@mint_5811": {
"entryPoint": 3454,
"id": 5811,
"parameterSlots": 1,
"returnSlots": 0
},
"@mul_2818": {
"entryPoint": 5028,
"id": 2818,
"parameterSlots": 2,
"returnSlots": 1
},
"@name_5534": {
"entryPoint": 1459,
"id": 5534,
"parameterSlots": 0,
"returnSlots": 0
},
"@pow_3691": {
"entryPoint": 4239,
"id": 3691,
"parameterSlots": 2,
"returnSlots": 1
},
"@renounceRole_1699": {
"entryPoint": 2366,
"id": 1699,
"parameterSlots": 2,
"returnSlots": 0
},
"@revokeRole_1676": {
"entryPoint": 3805,
"id": 1676,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1559": {
"entryPoint": 1337,
"id": 1559,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_2228": {
"entryPoint": 5223,
"id": 2228,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_5539": {
"entryPoint": 3312,
"id": 5539,
"parameterSlots": 0,
"returnSlots": 0
},
"@theTotalSupplyLastUpdated_5528": {
"entryPoint": 2870,
"id": 5528,
"parameterSlots": 0,
"returnSlots": 0
},
"@theTotalSupply_5526": {
"entryPoint": 3981,
"id": 5526,
"parameterSlots": 0,
"returnSlots": 0
},
"@theTrustedForwarder_5510": {
"entryPoint": 3731,
"id": 5510,
"parameterSlots": 0,
"returnSlots": 0
},
"@toHexString_2204": {
"entryPoint": 6336,
"id": 2204,
"parameterSlots": 2,
"returnSlots": 1
},
"@toUInt_2660": {
"entryPoint": 5135,
"id": 2660,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_5640": {
"entryPoint": 1893,
"id": 5640,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_5744": {
"entryPoint": 1995,
"id": 5744,
"parameterSlots": 3,
"returnSlots": 1
},
"@transfer_5708": {
"entryPoint": 3593,
"id": 5708,
"parameterSlots": 2,
"returnSlots": 1
},
"@trustedForwarder_5607": {
"entryPoint": 3163,
"id": 5607,
"parameterSlots": 0,
"returnSlots": 1
},
"@versionRecipient_5502": {
"entryPoint": 2497,
"id": 5502,
"parameterSlots": 0,
"returnSlots": 0
},
"@version_5542": {
"entryPoint": 2639,
"id": 5542,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 7078,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes32": {
"entryPoint": 7099,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 7120,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 7141,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 7162,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 7207,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 7271,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 7354,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes32": {
"entryPoint": 7418,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes32t_address": {
"entryPoint": 7463,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 7527,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 7572,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 7617,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 7632,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes32_to_t_bytes32_fromStack": {
"entryPoint": 7647,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7662,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 7719,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7768,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_71abfcf6e817aaed3ce6663958bac2a3a82999ed0036c98a95b29f350f04cedf_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7803,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 7838,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 7873,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7908,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 7943,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 7958,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_t_string_memory_ptr_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 7973,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 8031,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 8058,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
"entryPoint": 8085,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8112,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8146,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_71abfcf6e817aaed3ce6663958bac2a3a82999ed0036c98a95b29f350f04cedf__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8178,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8210,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 8242,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 8269,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 8296,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 8307,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 8324,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 8335,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 8421,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 8470,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 8560,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 8612,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 8630,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes32": {
"entryPoint": 8642,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 8652,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 8696,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 8728,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 8738,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 8751,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"decrement_t_uint256": {
"entryPoint": 8802,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 8844,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 8894,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 8941,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 8988,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 9035,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 9082,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 9129,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 9134,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2": {
"entryPoint": 9151,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_71abfcf6e817aaed3ce6663958bac2a3a82999ed0036c98a95b29f350f04cedf": {
"entryPoint": 9192,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874": {
"entryPoint": 9233,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69": {
"entryPoint": 9274,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b": {
"entryPoint": 9315,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 9394,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes32": {
"entryPoint": 9417,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 9440,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 9463,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:16841:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:23"
},
"nodeType": "YulFunctionCall",
"src": "78:20:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:23"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:23"
},
"nodeType": "YulFunctionCall",
"src": "107:33:23"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:23"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:23",
"type": ""
}
],
"src": "7:139:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:23"
},
"nodeType": "YulFunctionCall",
"src": "223:20:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:23"
}
],
"functionName": {
"name": "validator_revert_t_bytes32",
"nodeType": "YulIdentifier",
"src": "252:26:23"
},
"nodeType": "YulFunctionCall",
"src": "252:33:23"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:23"
}
]
},
"name": "abi_decode_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:23",
"type": ""
}
],
"src": "152:139:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "348:86:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "358:29:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "380:6:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "367:12:23"
},
"nodeType": "YulFunctionCall",
"src": "367:20:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "358:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "422:5:23"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "396:25:23"
},
"nodeType": "YulFunctionCall",
"src": "396:32:23"
},
"nodeType": "YulExpressionStatement",
"src": "396:32:23"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "326:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "334:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "342:5:23",
"type": ""
}
],
"src": "297:137:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "492:87:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "502:29:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "524:6:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "511:12:23"
},
"nodeType": "YulFunctionCall",
"src": "511:20:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "502:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "567:5:23"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "540:26:23"
},
"nodeType": "YulFunctionCall",
"src": "540:33:23"
},
"nodeType": "YulExpressionStatement",
"src": "540:33:23"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "470:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "478:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "486:5:23",
"type": ""
}
],
"src": "440:139:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "651:263:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "697:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "699:77:23"
},
"nodeType": "YulFunctionCall",
"src": "699:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "699:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "672:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "681:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "668:3:23"
},
"nodeType": "YulFunctionCall",
"src": "668:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "693:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "664:3:23"
},
"nodeType": "YulFunctionCall",
"src": "664:32:23"
},
"nodeType": "YulIf",
"src": "661:119:23"
},
{
"nodeType": "YulBlock",
"src": "790:117:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "805:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "819:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "809:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "834:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "869:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "880:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "865:3:23"
},
"nodeType": "YulFunctionCall",
"src": "865:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "889:7:23"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "844:20:23"
},
"nodeType": "YulFunctionCall",
"src": "844:53:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "834:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "621:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "632:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "644:6:23",
"type": ""
}
],
"src": "585:329:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1003:391:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1049:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1051:77:23"
},
"nodeType": "YulFunctionCall",
"src": "1051:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "1051:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1024:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1033:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1020:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1020:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1045:2:23",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1016:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1016:32:23"
},
"nodeType": "YulIf",
"src": "1013:119:23"
},
{
"nodeType": "YulBlock",
"src": "1142:117:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1157:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1171:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1161:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1186:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1221:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1232:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1217:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1217:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1241:7:23"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1196:20:23"
},
"nodeType": "YulFunctionCall",
"src": "1196:53:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1186:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1269:118:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1284:16:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1298:2:23",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1288:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1314:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1349:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1360:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1345:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1345:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1369:7:23"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1324:20:23"
},
"nodeType": "YulFunctionCall",
"src": "1324:53:23"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1314:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "965:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "976:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "988:6:23",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "996:6:23",
"type": ""
}
],
"src": "920:474:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1500:519:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1546:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1548:77:23"
},
"nodeType": "YulFunctionCall",
"src": "1548:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "1548:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1521:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1530:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1517:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1517:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1542:2:23",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1513:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1513:32:23"
},
"nodeType": "YulIf",
"src": "1510:119:23"
},
{
"nodeType": "YulBlock",
"src": "1639:117:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1654:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1668:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1658:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1683:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1718:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1729:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1714:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1714:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1738:7:23"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1693:20:23"
},
"nodeType": "YulFunctionCall",
"src": "1693:53:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1683:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1766:118:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1781:16:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1795:2:23",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1785:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1811:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1846:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1857:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1842:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1842:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1866:7:23"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1821:20:23"
},
"nodeType": "YulFunctionCall",
"src": "1821:53:23"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1811:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1894:118:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1909:16:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1923:2:23",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1913:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1939:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1974:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1985:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1970:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1970:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1994:7:23"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1949:20:23"
},
"nodeType": "YulFunctionCall",
"src": "1949:53:23"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1939:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1454:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1465:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1477:6:23",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1485:6:23",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1493:6:23",
"type": ""
}
],
"src": "1400:619:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2108:391:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2154:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2156:77:23"
},
"nodeType": "YulFunctionCall",
"src": "2156:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "2156:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2129:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2138:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2125:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2125:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2150:2:23",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2121:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2121:32:23"
},
"nodeType": "YulIf",
"src": "2118:119:23"
},
{
"nodeType": "YulBlock",
"src": "2247:117:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2262:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2276:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2266:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2291:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2326:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2337:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2322:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2322:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2346:7:23"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2301:20:23"
},
"nodeType": "YulFunctionCall",
"src": "2301:53:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2291:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2374:118:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2389:16:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2403:2:23",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2393:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2419:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2454:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2465:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2450:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2450:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2474:7:23"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2429:20:23"
},
"nodeType": "YulFunctionCall",
"src": "2429:53:23"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2419:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2070:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2081:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2093:6:23",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2101:6:23",
"type": ""
}
],
"src": "2025:474:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2571:263:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2617:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2619:77:23"
},
"nodeType": "YulFunctionCall",
"src": "2619:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "2619:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2592:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2601:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2588:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2588:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2613:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2584:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2584:32:23"
},
"nodeType": "YulIf",
"src": "2581:119:23"
},
{
"nodeType": "YulBlock",
"src": "2710:117:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2725:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2739:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2729:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2754:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2789:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2800:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2785:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2785:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2809:7:23"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nodeType": "YulIdentifier",
"src": "2764:20:23"
},
"nodeType": "YulFunctionCall",
"src": "2764:53:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2754:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2541:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2552:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2564:6:23",
"type": ""
}
],
"src": "2505:329:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2923:391:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2969:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2971:77:23"
},
"nodeType": "YulFunctionCall",
"src": "2971:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "2971:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2944:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2953:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2940:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2940:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2965:2:23",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2936:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2936:32:23"
},
"nodeType": "YulIf",
"src": "2933:119:23"
},
{
"nodeType": "YulBlock",
"src": "3062:117:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3077:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3091:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3081:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3106:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3141:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3152:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3137:3:23"
},
"nodeType": "YulFunctionCall",
"src": "3137:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3161:7:23"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nodeType": "YulIdentifier",
"src": "3116:20:23"
},
"nodeType": "YulFunctionCall",
"src": "3116:53:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3106:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3189:118:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3204:16:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3218:2:23",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3208:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3234:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3269:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3280:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3265:3:23"
},
"nodeType": "YulFunctionCall",
"src": "3265:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3289:7:23"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3244:20:23"
},
"nodeType": "YulFunctionCall",
"src": "3244:53:23"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3234:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes32t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2885:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2896:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2908:6:23",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2916:6:23",
"type": ""
}
],
"src": "2840:474:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3385:262:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3431:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3433:77:23"
},
"nodeType": "YulFunctionCall",
"src": "3433:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "3433:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3406:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3415:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3402:3:23"
},
"nodeType": "YulFunctionCall",
"src": "3402:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3427:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3398:3:23"
},
"nodeType": "YulFunctionCall",
"src": "3398:32:23"
},
"nodeType": "YulIf",
"src": "3395:119:23"
},
{
"nodeType": "YulBlock",
"src": "3524:116:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3539:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3553:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3543:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3568:62:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3602:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3613:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3598:3:23"
},
"nodeType": "YulFunctionCall",
"src": "3598:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3622:7:23"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "3578:19:23"
},
"nodeType": "YulFunctionCall",
"src": "3578:52:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3568:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3355:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3366:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3378:6:23",
"type": ""
}
],
"src": "3320:327:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3719:263:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3765:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3767:77:23"
},
"nodeType": "YulFunctionCall",
"src": "3767:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "3767:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3740:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3749:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3736:3:23"
},
"nodeType": "YulFunctionCall",
"src": "3736:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3761:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3732:3:23"
},
"nodeType": "YulFunctionCall",
"src": "3732:32:23"
},
"nodeType": "YulIf",
"src": "3729:119:23"
},
{
"nodeType": "YulBlock",
"src": "3858:117:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3873:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3887:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3877:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3902:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3937:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3948:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3933:3:23"
},
"nodeType": "YulFunctionCall",
"src": "3933:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3957:7:23"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3912:20:23"
},
"nodeType": "YulFunctionCall",
"src": "3912:53:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3902:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3689:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3700:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3712:6:23",
"type": ""
}
],
"src": "3653:329:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4053:53:23",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4070:3:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4093:5:23"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "4075:17:23"
},
"nodeType": "YulFunctionCall",
"src": "4075:24:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4063:6:23"
},
"nodeType": "YulFunctionCall",
"src": "4063:37:23"
},
"nodeType": "YulExpressionStatement",
"src": "4063:37:23"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4041:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4048:3:23",
"type": ""
}
],
"src": "3988:118:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4171:50:23",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4188:3:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4208:5:23"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "4193:14:23"
},
"nodeType": "YulFunctionCall",
"src": "4193:21:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4181:6:23"
},
"nodeType": "YulFunctionCall",
"src": "4181:34:23"
},
"nodeType": "YulExpressionStatement",
"src": "4181:34:23"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4159:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4166:3:23",
"type": ""
}
],
"src": "4112:109:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4292:53:23",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4309:3:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4332:5:23"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "4314:17:23"
},
"nodeType": "YulFunctionCall",
"src": "4314:24:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4302:6:23"
},
"nodeType": "YulFunctionCall",
"src": "4302:37:23"
},
"nodeType": "YulExpressionStatement",
"src": "4302:37:23"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4280:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4287:3:23",
"type": ""
}
],
"src": "4227:118:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4443:272:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4453:53:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4500:5:23"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4467:32:23"
},
"nodeType": "YulFunctionCall",
"src": "4467:39:23"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4457:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4515:78:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4581:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4586:6:23"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4522:58:23"
},
"nodeType": "YulFunctionCall",
"src": "4522:71:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4515:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4628:5:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4635:4:23",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4624:3:23"
},
"nodeType": "YulFunctionCall",
"src": "4624:16:23"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4642:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4647:6:23"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "4602:21:23"
},
"nodeType": "YulFunctionCall",
"src": "4602:52:23"
},
"nodeType": "YulExpressionStatement",
"src": "4602:52:23"
},
{
"nodeType": "YulAssignment",
"src": "4663:46:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4674:3:23"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4701:6:23"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4679:21:23"
},
"nodeType": "YulFunctionCall",
"src": "4679:29:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4670:3:23"
},
"nodeType": "YulFunctionCall",
"src": "4670:39:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4663:3:23"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4424:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4431:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4439:3:23",
"type": ""
}
],
"src": "4351:364:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4831:267:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4841:53:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4888:5:23"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4855:32:23"
},
"nodeType": "YulFunctionCall",
"src": "4855:39:23"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4845:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4903:96:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4987:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4992:6:23"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "4910:76:23"
},
"nodeType": "YulFunctionCall",
"src": "4910:89:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4903:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5034:5:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5041:4:23",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5030:3:23"
},
"nodeType": "YulFunctionCall",
"src": "5030:16:23"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5048:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5053:6:23"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5008:21:23"
},
"nodeType": "YulFunctionCall",
"src": "5008:52:23"
},
"nodeType": "YulExpressionStatement",
"src": "5008:52:23"
},
{
"nodeType": "YulAssignment",
"src": "5069:23:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5080:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5085:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5076:3:23"
},
"nodeType": "YulFunctionCall",
"src": "5076:16:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5069:3:23"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4812:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4819:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4827:3:23",
"type": ""
}
],
"src": "4721:377:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5250:220:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5260:74:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5326:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5331:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5267:58:23"
},
"nodeType": "YulFunctionCall",
"src": "5267:67:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5260:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5432:3:23"
}
],
"functionName": {
"name": "store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2",
"nodeType": "YulIdentifier",
"src": "5343:88:23"
},
"nodeType": "YulFunctionCall",
"src": "5343:93:23"
},
"nodeType": "YulExpressionStatement",
"src": "5343:93:23"
},
{
"nodeType": "YulAssignment",
"src": "5445:19:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5456:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5461:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5452:3:23"
},
"nodeType": "YulFunctionCall",
"src": "5452:12:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5445:3:23"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5238:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5246:3:23",
"type": ""
}
],
"src": "5104:366:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5622:220:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5632:74:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5698:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5703:2:23",
"type": "",
"value": "22"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5639:58:23"
},
"nodeType": "YulFunctionCall",
"src": "5639:67:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5632:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5804:3:23"
}
],
"functionName": {
"name": "store_literal_in_memory_71abfcf6e817aaed3ce6663958bac2a3a82999ed0036c98a95b29f350f04cedf",
"nodeType": "YulIdentifier",
"src": "5715:88:23"
},
"nodeType": "YulFunctionCall",
"src": "5715:93:23"
},
"nodeType": "YulExpressionStatement",
"src": "5715:93:23"
},
{
"nodeType": "YulAssignment",
"src": "5817:19:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5828:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5833:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5824:3:23"
},
"nodeType": "YulFunctionCall",
"src": "5824:12:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5817:3:23"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_71abfcf6e817aaed3ce6663958bac2a3a82999ed0036c98a95b29f350f04cedf_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5610:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5618:3:23",
"type": ""
}
],
"src": "5476:366:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6012:238:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6022:92:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6106:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6111:2:23",
"type": "",
"value": "23"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "6029:76:23"
},
"nodeType": "YulFunctionCall",
"src": "6029:85:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6022:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6212:3:23"
}
],
"functionName": {
"name": "store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874",
"nodeType": "YulIdentifier",
"src": "6123:88:23"
},
"nodeType": "YulFunctionCall",
"src": "6123:93:23"
},
"nodeType": "YulExpressionStatement",
"src": "6123:93:23"
},
{
"nodeType": "YulAssignment",
"src": "6225:19:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6236:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6241:2:23",
"type": "",
"value": "23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6232:3:23"
},
"nodeType": "YulFunctionCall",
"src": "6232:12:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6225:3:23"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6000:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6008:3:23",
"type": ""
}
],
"src": "5848:402:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6420:238:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6430:92:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6514:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6519:2:23",
"type": "",
"value": "17"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "6437:76:23"
},
"nodeType": "YulFunctionCall",
"src": "6437:85:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6430:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6620:3:23"
}
],
"functionName": {
"name": "store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69",
"nodeType": "YulIdentifier",
"src": "6531:88:23"
},
"nodeType": "YulFunctionCall",
"src": "6531:93:23"
},
"nodeType": "YulExpressionStatement",
"src": "6531:93:23"
},
{
"nodeType": "YulAssignment",
"src": "6633:19:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6644:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6649:2:23",
"type": "",
"value": "17"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6640:3:23"
},
"nodeType": "YulFunctionCall",
"src": "6640:12:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6633:3:23"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6408:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6416:3:23",
"type": ""
}
],
"src": "6256:402:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6810:220:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6820:74:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6886:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6891:2:23",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6827:58:23"
},
"nodeType": "YulFunctionCall",
"src": "6827:67:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6820:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6992:3:23"
}
],
"functionName": {
"name": "store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b",
"nodeType": "YulIdentifier",
"src": "6903:88:23"
},
"nodeType": "YulFunctionCall",
"src": "6903:93:23"
},
"nodeType": "YulExpressionStatement",
"src": "6903:93:23"
},
{
"nodeType": "YulAssignment",
"src": "7005:19:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7016:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7021:2:23",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7012:3:23"
},
"nodeType": "YulFunctionCall",
"src": "7012:12:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7005:3:23"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6798:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6806:3:23",
"type": ""
}
],
"src": "6664:366:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7101:53:23",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7118:3:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7141:5:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7123:17:23"
},
"nodeType": "YulFunctionCall",
"src": "7123:24:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7111:6:23"
},
"nodeType": "YulFunctionCall",
"src": "7111:37:23"
},
"nodeType": "YulExpressionStatement",
"src": "7111:37:23"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7089:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7096:3:23",
"type": ""
}
],
"src": "7036:118:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7221:51:23",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7238:3:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7259:5:23"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "7243:15:23"
},
"nodeType": "YulFunctionCall",
"src": "7243:22:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7231:6:23"
},
"nodeType": "YulFunctionCall",
"src": "7231:35:23"
},
"nodeType": "YulExpressionStatement",
"src": "7231:35:23"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7209:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7216:3:23",
"type": ""
}
],
"src": "7160:112:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7664:581:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7675:155:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7826:3:23"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "7682:142:23"
},
"nodeType": "YulFunctionCall",
"src": "7682:148:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7675:3:23"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7840:102:23",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7929:6:23"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7938:3:23"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "7847:81:23"
},
"nodeType": "YulFunctionCall",
"src": "7847:95:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7840:3:23"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7952:155:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8103:3:23"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "7959:142:23"
},
"nodeType": "YulFunctionCall",
"src": "7959:148:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7952:3:23"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8117:102:23",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "8206:6:23"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8215:3:23"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "8124:81:23"
},
"nodeType": "YulFunctionCall",
"src": "8124:95:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8117:3:23"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8229:10:23",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8236:3:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8229:3:23"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_t_string_memory_ptr_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7635:3:23",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7641:6:23",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7649:6:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7660:3:23",
"type": ""
}
],
"src": "7278:967:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8349:124:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8359:26:23",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8371:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8382:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8367:3:23"
},
"nodeType": "YulFunctionCall",
"src": "8367:18:23"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8359:4:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8439:6:23"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8452:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8463:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8448:3:23"
},
"nodeType": "YulFunctionCall",
"src": "8448:17:23"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "8395:43:23"
},
"nodeType": "YulFunctionCall",
"src": "8395:71:23"
},
"nodeType": "YulExpressionStatement",
"src": "8395:71:23"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8321:9:23",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8333:6:23",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8344:4:23",
"type": ""
}
],
"src": "8251:222:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8571:118:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8581:26:23",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8593:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8604:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8589:3:23"
},
"nodeType": "YulFunctionCall",
"src": "8589:18:23"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8581:4:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8655:6:23"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8668:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8679:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8664:3:23"
},
"nodeType": "YulFunctionCall",
"src": "8664:17:23"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "8617:37:23"
},
"nodeType": "YulFunctionCall",
"src": "8617:65:23"
},
"nodeType": "YulExpressionStatement",
"src": "8617:65:23"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8543:9:23",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8555:6:23",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8566:4:23",
"type": ""
}
],
"src": "8479:210:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8793:124:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8803:26:23",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8815:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8826:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8811:3:23"
},
"nodeType": "YulFunctionCall",
"src": "8811:18:23"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8803:4:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8883:6:23"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8896:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8907:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8892:3:23"
},
"nodeType": "YulFunctionCall",
"src": "8892:17:23"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nodeType": "YulIdentifier",
"src": "8839:43:23"
},
"nodeType": "YulFunctionCall",
"src": "8839:71:23"
},
"nodeType": "YulExpressionStatement",
"src": "8839:71:23"
}
]
},
"name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8765:9:23",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8777:6:23",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8788:4:23",
"type": ""
}
],
"src": "8695:222:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9041:195:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9051:26:23",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9063:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9074:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9059:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9059:18:23"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9051:4:23"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9098:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9109:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9094:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9094:17:23"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9117:4:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9123:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9113:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9113:20:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9087:6:23"
},
"nodeType": "YulFunctionCall",
"src": "9087:47:23"
},
"nodeType": "YulExpressionStatement",
"src": "9087:47:23"
},
{
"nodeType": "YulAssignment",
"src": "9143:86:23",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9215:6:23"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9224:4:23"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9151:63:23"
},
"nodeType": "YulFunctionCall",
"src": "9151:78:23"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9143:4:23"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9013:9:23",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9025:6:23",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9036:4:23",
"type": ""
}
],
"src": "8923:313:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9413:248:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9423:26:23",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9435:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9446:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9431:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9431:18:23"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9423:4:23"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9470:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9481:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9466:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9466:17:23"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9489:4:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9495:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9485:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9485:20:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9459:6:23"
},
"nodeType": "YulFunctionCall",
"src": "9459:47:23"
},
"nodeType": "YulExpressionStatement",
"src": "9459:47:23"
},
{
"nodeType": "YulAssignment",
"src": "9515:139:23",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9649:4:23"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9523:124:23"
},
"nodeType": "YulFunctionCall",
"src": "9523:131:23"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9515:4:23"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9393:9:23",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9408:4:23",
"type": ""
}
],
"src": "9242:419:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9838:248:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9848:26:23",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9860:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9871:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9856:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9856:18:23"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9848:4:23"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9895:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9906:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9891:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9891:17:23"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9914:4:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9920:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9910:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9910:20:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9884:6:23"
},
"nodeType": "YulFunctionCall",
"src": "9884:47:23"
},
"nodeType": "YulExpressionStatement",
"src": "9884:47:23"
},
{
"nodeType": "YulAssignment",
"src": "9940:139:23",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10074:4:23"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_71abfcf6e817aaed3ce6663958bac2a3a82999ed0036c98a95b29f350f04cedf_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9948:124:23"
},
"nodeType": "YulFunctionCall",
"src": "9948:131:23"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9940:4:23"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_71abfcf6e817aaed3ce6663958bac2a3a82999ed0036c98a95b29f350f04cedf__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9818:9:23",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9833:4:23",
"type": ""
}
],
"src": "9667:419:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10263:248:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10273:26:23",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10285:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10296:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10281:3:23"
},
"nodeType": "YulFunctionCall",
"src": "10281:18:23"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10273:4:23"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10320:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10331:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10316:3:23"
},
"nodeType": "YulFunctionCall",
"src": "10316:17:23"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10339:4:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10345:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10335:3:23"
},
"nodeType": "YulFunctionCall",
"src": "10335:20:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10309:6:23"
},
"nodeType": "YulFunctionCall",
"src": "10309:47:23"
},
"nodeType": "YulExpressionStatement",
"src": "10309:47:23"
},
{
"nodeType": "YulAssignment",
"src": "10365:139:23",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10499:4:23"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10373:124:23"
},
"nodeType": "YulFunctionCall",
"src": "10373:131:23"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10365:4:23"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10243:9:23",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10258:4:23",
"type": ""
}
],
"src": "10092:419:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10615:124:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10625:26:23",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10637:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10648:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10633:3:23"
},
"nodeType": "YulFunctionCall",
"src": "10633:18:23"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10625:4:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10705:6:23"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10718:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10729:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10714:3:23"
},
"nodeType": "YulFunctionCall",
"src": "10714:17:23"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "10661:43:23"
},
"nodeType": "YulFunctionCall",
"src": "10661:71:23"
},
"nodeType": "YulExpressionStatement",
"src": "10661:71:23"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10587:9:23",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10599:6:23",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10610:4:23",
"type": ""
}
],
"src": "10517:222:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10839:120:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10849:26:23",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10861:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10872:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10857:3:23"
},
"nodeType": "YulFunctionCall",
"src": "10857:18:23"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10849:4:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10925:6:23"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10938:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10949:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10934:3:23"
},
"nodeType": "YulFunctionCall",
"src": "10934:17:23"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "10885:39:23"
},
"nodeType": "YulFunctionCall",
"src": "10885:67:23"
},
"nodeType": "YulExpressionStatement",
"src": "10885:67:23"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10811:9:23",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10823:6:23",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10834:4:23",
"type": ""
}
],
"src": "10745:214:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11005:35:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11015:19:23",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11031:2:23",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "11025:5:23"
},
"nodeType": "YulFunctionCall",
"src": "11025:9:23"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11015:6:23"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "10998:6:23",
"type": ""
}
],
"src": "10965:75:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11105:40:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11116:22:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11132:5:23"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "11126:5:23"
},
"nodeType": "YulFunctionCall",
"src": "11126:12:23"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11116:6:23"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11088:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11098:6:23",
"type": ""
}
],
"src": "11046:99:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11247:73:23",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11264:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11269:6:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11257:6:23"
},
"nodeType": "YulFunctionCall",
"src": "11257:19:23"
},
"nodeType": "YulExpressionStatement",
"src": "11257:19:23"
},
{
"nodeType": "YulAssignment",
"src": "11285:29:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11304:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11309:4:23",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11300:3:23"
},
"nodeType": "YulFunctionCall",
"src": "11300:14:23"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "11285:11:23"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11219:3:23",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11224:6:23",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "11235:11:23",
"type": ""
}
],
"src": "11151:169:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11440:34:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11450:18:23",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11465:3:23"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "11450:11:23"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11412:3:23",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11417:6:23",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "11428:11:23",
"type": ""
}
],
"src": "11326:148:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11524:261:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11534:25:23",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11557:1:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11539:17:23"
},
"nodeType": "YulFunctionCall",
"src": "11539:20:23"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11534:1:23"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11568:25:23",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11591:1:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11573:17:23"
},
"nodeType": "YulFunctionCall",
"src": "11573:20:23"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11568:1:23"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11731:22:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "11733:16:23"
},
"nodeType": "YulFunctionCall",
"src": "11733:18:23"
},
"nodeType": "YulExpressionStatement",
"src": "11733:18:23"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11652:1:23"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11659:66:23",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11727:1:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11655:3:23"
},
"nodeType": "YulFunctionCall",
"src": "11655:74:23"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "11649:2:23"
},
"nodeType": "YulFunctionCall",
"src": "11649:81:23"
},
"nodeType": "YulIf",
"src": "11646:107:23"
},
{
"nodeType": "YulAssignment",
"src": "11763:16:23",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11774:1:23"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11777:1:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11770:3:23"
},
"nodeType": "YulFunctionCall",
"src": "11770:9:23"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "11763:3:23"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "11511:1:23",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "11514:1:23",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "11520:3:23",
"type": ""
}
],
"src": "11480:305:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11833:143:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11843:25:23",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11866:1:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11848:17:23"
},
"nodeType": "YulFunctionCall",
"src": "11848:20:23"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11843:1:23"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11877:25:23",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11900:1:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11882:17:23"
},
"nodeType": "YulFunctionCall",
"src": "11882:20:23"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11877:1:23"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11924:22:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "11926:16:23"
},
"nodeType": "YulFunctionCall",
"src": "11926:18:23"
},
"nodeType": "YulExpressionStatement",
"src": "11926:18:23"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11921:1:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11914:6:23"
},
"nodeType": "YulFunctionCall",
"src": "11914:9:23"
},
"nodeType": "YulIf",
"src": "11911:35:23"
},
{
"nodeType": "YulAssignment",
"src": "11956:14:23",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11965:1:23"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11968:1:23"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "11961:3:23"
},
"nodeType": "YulFunctionCall",
"src": "11961:9:23"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "11956:1:23"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "11822:1:23",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "11825:1:23",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "11831:1:23",
"type": ""
}
],
"src": "11791:185:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12030:300:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12040:25:23",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12063:1:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "12045:17:23"
},
"nodeType": "YulFunctionCall",
"src": "12045:20:23"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12040:1:23"
}
]
},
{
"nodeType": "YulAssignment",
"src": "12074:25:23",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12097:1:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "12079:17:23"
},
"nodeType": "YulFunctionCall",
"src": "12079:20:23"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12074:1:23"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12272:22:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "12274:16:23"
},
"nodeType": "YulFunctionCall",
"src": "12274:18:23"
},
"nodeType": "YulExpressionStatement",
"src": "12274:18:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12184:1:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12177:6:23"
},
"nodeType": "YulFunctionCall",
"src": "12177:9:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12170:6:23"
},
"nodeType": "YulFunctionCall",
"src": "12170:17:23"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12192:1:23"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12199:66:23",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12267:1:23"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "12195:3:23"
},
"nodeType": "YulFunctionCall",
"src": "12195:74:23"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "12189:2:23"
},
"nodeType": "YulFunctionCall",
"src": "12189:81:23"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12166:3:23"
},
"nodeType": "YulFunctionCall",
"src": "12166:105:23"
},
"nodeType": "YulIf",
"src": "12163:131:23"
},
{
"nodeType": "YulAssignment",
"src": "12304:20:23",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12319:1:23"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12322:1:23"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "12315:3:23"
},
"nodeType": "YulFunctionCall",
"src": "12315:9:23"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "12304:7:23"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "12013:1:23",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "12016:1:23",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "12022:7:23",
"type": ""
}
],
"src": "11982:348:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12381:146:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12391:25:23",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12414:1:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "12396:17:23"
},
"nodeType": "YulFunctionCall",
"src": "12396:20:23"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12391:1:23"
}
]
},
{
"nodeType": "YulAssignment",
"src": "12425:25:23",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12448:1:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "12430:17:23"
},
"nodeType": "YulFunctionCall",
"src": "12430:20:23"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12425:1:23"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12472:22:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "12474:16:23"
},
"nodeType": "YulFunctionCall",
"src": "12474:18:23"
},
"nodeType": "YulExpressionStatement",
"src": "12474:18:23"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12466:1:23"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12469:1:23"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "12463:2:23"
},
"nodeType": "YulFunctionCall",
"src": "12463:8:23"
},
"nodeType": "YulIf",
"src": "12460:34:23"
},
{
"nodeType": "YulAssignment",
"src": "12504:17:23",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12516:1:23"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12519:1:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12512:3:23"
},
"nodeType": "YulFunctionCall",
"src": "12512:9:23"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "12504:4:23"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "12367:1:23",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "12370:1:23",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "12376:4:23",
"type": ""
}
],
"src": "12336:191:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12578:51:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12588:35:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12617:5:23"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "12599:17:23"
},
"nodeType": "YulFunctionCall",
"src": "12599:24:23"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "12588:7:23"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12560:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "12570:7:23",
"type": ""
}
],
"src": "12533:96:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12677:48:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12687:32:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12712:5:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12705:6:23"
},
"nodeType": "YulFunctionCall",
"src": "12705:13:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12698:6:23"
},
"nodeType": "YulFunctionCall",
"src": "12698:21:23"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "12687:7:23"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12659:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "12669:7:23",
"type": ""
}
],
"src": "12635:90:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12776:32:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12786:16:23",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "12797:5:23"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "12786:7:23"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12758:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "12768:7:23",
"type": ""
}
],
"src": "12731:77:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12858:105:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12868:89:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12883:5:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12890:66:23",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12879:3:23"
},
"nodeType": "YulFunctionCall",
"src": "12879:78:23"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "12868:7:23"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12840:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "12850:7:23",
"type": ""
}
],
"src": "12814:149:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13014:81:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13024:65:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13039:5:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13046:42:23",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "13035:3:23"
},
"nodeType": "YulFunctionCall",
"src": "13035:54:23"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "13024:7:23"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12996:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "13006:7:23",
"type": ""
}
],
"src": "12969:126:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13146:32:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13156:16:23",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "13167:5:23"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "13156:7:23"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13128:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "13138:7:23",
"type": ""
}
],
"src": "13101:77:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13227:43:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13237:27:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13252:5:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13259:4:23",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "13248:3:23"
},
"nodeType": "YulFunctionCall",
"src": "13248:16:23"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "13237:7:23"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13209:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "13219:7:23",
"type": ""
}
],
"src": "13184:86:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13325:258:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "13335:10:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "13344:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "13339:1:23",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "13404:63:23",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "13429:3:23"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "13434:1:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13425:3:23"
},
"nodeType": "YulFunctionCall",
"src": "13425:11:23"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "13448:3:23"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "13453:1:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13444:3:23"
},
"nodeType": "YulFunctionCall",
"src": "13444:11:23"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "13438:5:23"
},
"nodeType": "YulFunctionCall",
"src": "13438:18:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13418:6:23"
},
"nodeType": "YulFunctionCall",
"src": "13418:39:23"
},
"nodeType": "YulExpressionStatement",
"src": "13418:39:23"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "13365:1:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13368:6:23"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "13362:2:23"
},
"nodeType": "YulFunctionCall",
"src": "13362:13:23"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "13376:19:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13378:15:23",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "13387:1:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13390:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13383:3:23"
},
"nodeType": "YulFunctionCall",
"src": "13383:10:23"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "13378:1:23"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "13358:3:23",
"statements": []
},
"src": "13354:113:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13501:76:23",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "13551:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13556:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13547:3:23"
},
"nodeType": "YulFunctionCall",
"src": "13547:16:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13565:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13540:6:23"
},
"nodeType": "YulFunctionCall",
"src": "13540:27:23"
},
"nodeType": "YulExpressionStatement",
"src": "13540:27:23"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "13482:1:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13485:6:23"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "13479:2:23"
},
"nodeType": "YulFunctionCall",
"src": "13479:13:23"
},
"nodeType": "YulIf",
"src": "13476:101:23"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "13307:3:23",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "13312:3:23",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "13317:6:23",
"type": ""
}
],
"src": "13276:307:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13632:128:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13642:33:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13669:5:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "13651:17:23"
},
"nodeType": "YulFunctionCall",
"src": "13651:24:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13642:5:23"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "13703:22:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "13705:16:23"
},
"nodeType": "YulFunctionCall",
"src": "13705:18:23"
},
"nodeType": "YulExpressionStatement",
"src": "13705:18:23"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13690:5:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13697:4:23",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "13687:2:23"
},
"nodeType": "YulFunctionCall",
"src": "13687:15:23"
},
"nodeType": "YulIf",
"src": "13684:41:23"
},
{
"nodeType": "YulAssignment",
"src": "13734:20:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13745:5:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13752:1:23",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13741:3:23"
},
"nodeType": "YulFunctionCall",
"src": "13741:13:23"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "13734:3:23"
}
]
}
]
},
"name": "decrement_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13618:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "13628:3:23",
"type": ""
}
],
"src": "13589:171:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13817:269:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13827:22:23",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "13841:4:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13847:1:23",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "13837:3:23"
},
"nodeType": "YulFunctionCall",
"src": "13837:12:23"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13827:6:23"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "13858:38:23",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "13888:4:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13894:1:23",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "13884:3:23"
},
"nodeType": "YulFunctionCall",
"src": "13884:12:23"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "13862:18:23",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "13935:51:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13949:27:23",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13963:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13971:4:23",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "13959:3:23"
},
"nodeType": "YulFunctionCall",
"src": "13959:17:23"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13949:6:23"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "13915:18:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "13908:6:23"
},
"nodeType": "YulFunctionCall",
"src": "13908:26:23"
},
"nodeType": "YulIf",
"src": "13905:81:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14038:42:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "14052:16:23"
},
"nodeType": "YulFunctionCall",
"src": "14052:18:23"
},
"nodeType": "YulExpressionStatement",
"src": "14052:18:23"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "14002:18:23"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "14025:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14033:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "14022:2:23"
},
"nodeType": "YulFunctionCall",
"src": "14022:14:23"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "13999:2:23"
},
"nodeType": "YulFunctionCall",
"src": "13999:38:23"
},
"nodeType": "YulIf",
"src": "13996:84:23"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "13801:4:23",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "13810:6:23",
"type": ""
}
],
"src": "13766:320:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14120:152:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14137:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14140:77:23",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14130:6:23"
},
"nodeType": "YulFunctionCall",
"src": "14130:88:23"
},
"nodeType": "YulExpressionStatement",
"src": "14130:88:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14234:1:23",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14237:4:23",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14227:6:23"
},
"nodeType": "YulFunctionCall",
"src": "14227:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "14227:15:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14258:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14261:4:23",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "14251:6:23"
},
"nodeType": "YulFunctionCall",
"src": "14251:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "14251:15:23"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "14092:180:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14306:152:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14323:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14326:77:23",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14316:6:23"
},
"nodeType": "YulFunctionCall",
"src": "14316:88:23"
},
"nodeType": "YulExpressionStatement",
"src": "14316:88:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14420:1:23",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14423:4:23",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14413:6:23"
},
"nodeType": "YulFunctionCall",
"src": "14413:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "14413:15:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14444:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14447:4:23",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "14437:6:23"
},
"nodeType": "YulFunctionCall",
"src": "14437:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "14437:15:23"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "14278:180:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14492:152:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14509:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14512:77:23",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14502:6:23"
},
"nodeType": "YulFunctionCall",
"src": "14502:88:23"
},
"nodeType": "YulExpressionStatement",
"src": "14502:88:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14606:1:23",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14609:4:23",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14599:6:23"
},
"nodeType": "YulFunctionCall",
"src": "14599:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "14599:15:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14630:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14633:4:23",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "14623:6:23"
},
"nodeType": "YulFunctionCall",
"src": "14623:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "14623:15:23"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "14464:180:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14678:152:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14695:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14698:77:23",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14688:6:23"
},
"nodeType": "YulFunctionCall",
"src": "14688:88:23"
},
"nodeType": "YulExpressionStatement",
"src": "14688:88:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14792:1:23",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14795:4:23",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14785:6:23"
},
"nodeType": "YulFunctionCall",
"src": "14785:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "14785:15:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14816:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14819:4:23",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "14809:6:23"
},
"nodeType": "YulFunctionCall",
"src": "14809:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "14809:15:23"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "14650:180:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14864:152:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14881:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14884:77:23",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14874:6:23"
},
"nodeType": "YulFunctionCall",
"src": "14874:88:23"
},
"nodeType": "YulExpressionStatement",
"src": "14874:88:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14978:1:23",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14981:4:23",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14971:6:23"
},
"nodeType": "YulFunctionCall",
"src": "14971:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "14971:15:23"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15002:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15005:4:23",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "14995:6:23"
},
"nodeType": "YulFunctionCall",
"src": "14995:15:23"
},
"nodeType": "YulExpressionStatement",
"src": "14995:15:23"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "14836:180:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15111:28:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15128:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15131:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "15121:6:23"
},
"nodeType": "YulFunctionCall",
"src": "15121:12:23"
},
"nodeType": "YulExpressionStatement",
"src": "15121:12:23"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "15022:117:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15234:28:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15251:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15254:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "15244:6:23"
},
"nodeType": "YulFunctionCall",
"src": "15244:12:23"
},
"nodeType": "YulExpressionStatement",
"src": "15244:12:23"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "15145:117:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15316:54:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15326:38:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15344:5:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15351:2:23",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15340:3:23"
},
"nodeType": "YulFunctionCall",
"src": "15340:14:23"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15360:2:23",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "15356:3:23"
},
"nodeType": "YulFunctionCall",
"src": "15356:7:23"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "15336:3:23"
},
"nodeType": "YulFunctionCall",
"src": "15336:28:23"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "15326:6:23"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15299:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "15309:6:23",
"type": ""
}
],
"src": "15268:102:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15482:76:23",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15504:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15512:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15500:3:23"
},
"nodeType": "YulFunctionCall",
"src": "15500:14:23"
},
{
"hexValue": "537472696e67733a20686578206c656e67746820696e73756666696369656e74",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15516:34:23",
"type": "",
"value": "Strings: hex length insufficient"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15493:6:23"
},
"nodeType": "YulFunctionCall",
"src": "15493:58:23"
},
"nodeType": "YulExpressionStatement",
"src": "15493:58:23"
}
]
},
"name": "store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15474:6:23",
"type": ""
}
],
"src": "15376:182:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15670:66:23",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15692:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15700:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15688:3:23"
},
"nodeType": "YulFunctionCall",
"src": "15688:14:23"
},
{
"hexValue": "43616c6c6572206973206e6f742061206d696e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15704:24:23",
"type": "",
"value": "Caller is not a minter"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15681:6:23"
},
"nodeType": "YulFunctionCall",
"src": "15681:48:23"
},
"nodeType": "YulExpressionStatement",
"src": "15681:48:23"
}
]
},
"name": "store_literal_in_memory_71abfcf6e817aaed3ce6663958bac2a3a82999ed0036c98a95b29f350f04cedf",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15662:6:23",
"type": ""
}
],
"src": "15564:172:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15848:67:23",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15870:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15878:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15866:3:23"
},
"nodeType": "YulFunctionCall",
"src": "15866:14:23"
},
{
"hexValue": "416363657373436f6e74726f6c3a206163636f756e7420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15882:25:23",
"type": "",
"value": "AccessControl: account "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15859:6:23"
},
"nodeType": "YulFunctionCall",
"src": "15859:49:23"
},
"nodeType": "YulExpressionStatement",
"src": "15859:49:23"
}
]
},
"name": "store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15840:6:23",
"type": ""
}
],
"src": "15742:173:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16027:61:23",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16049:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16057:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16045:3:23"
},
"nodeType": "YulFunctionCall",
"src": "16045:14:23"
},
{
"hexValue": "206973206d697373696e6720726f6c6520",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16061:19:23",
"type": "",
"value": " is missing role "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16038:6:23"
},
"nodeType": "YulFunctionCall",
"src": "16038:43:23"
},
"nodeType": "YulExpressionStatement",
"src": "16038:43:23"
}
]
},
"name": "store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16019:6:23",
"type": ""
}
],
"src": "15921:167:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16200:128:23",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16222:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16230:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16218:3:23"
},
"nodeType": "YulFunctionCall",
"src": "16218:14:23"
},
{
"hexValue": "416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16234:34:23",
"type": "",
"value": "AccessControl: can only renounce"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16211:6:23"
},
"nodeType": "YulFunctionCall",
"src": "16211:58:23"
},
"nodeType": "YulExpressionStatement",
"src": "16211:58:23"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16290:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16298:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16286:3:23"
},
"nodeType": "YulFunctionCall",
"src": "16286:15:23"
},
{
"hexValue": "20726f6c657320666f722073656c66",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16303:17:23",
"type": "",
"value": " roles for self"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16279:6:23"
},
"nodeType": "YulFunctionCall",
"src": "16279:42:23"
},
"nodeType": "YulExpressionStatement",
"src": "16279:42:23"
}
]
},
"name": "store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16192:6:23",
"type": ""
}
],
"src": "16094:234:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16377:79:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "16434:16:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16443:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16446:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "16436:6:23"
},
"nodeType": "YulFunctionCall",
"src": "16436:12:23"
},
"nodeType": "YulExpressionStatement",
"src": "16436:12:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16400:5:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16425:5:23"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "16407:17:23"
},
"nodeType": "YulFunctionCall",
"src": "16407:24:23"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "16397:2:23"
},
"nodeType": "YulFunctionCall",
"src": "16397:35:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16390:6:23"
},
"nodeType": "YulFunctionCall",
"src": "16390:43:23"
},
"nodeType": "YulIf",
"src": "16387:63:23"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16370:5:23",
"type": ""
}
],
"src": "16334:122:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16505:79:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "16562:16:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16571:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16574:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "16564:6:23"
},
"nodeType": "YulFunctionCall",
"src": "16564:12:23"
},
"nodeType": "YulExpressionStatement",
"src": "16564:12:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16528:5:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16553:5:23"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nodeType": "YulIdentifier",
"src": "16535:17:23"
},
"nodeType": "YulFunctionCall",
"src": "16535:24:23"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "16525:2:23"
},
"nodeType": "YulFunctionCall",
"src": "16525:35:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16518:6:23"
},
"nodeType": "YulFunctionCall",
"src": "16518:43:23"
},
"nodeType": "YulIf",
"src": "16515:63:23"
}
]
},
"name": "validator_revert_t_bytes32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16498:5:23",
"type": ""
}
],
"src": "16462:122:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16632:78:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "16688:16:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16697:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16700:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "16690:6:23"
},
"nodeType": "YulFunctionCall",
"src": "16690:12:23"
},
"nodeType": "YulExpressionStatement",
"src": "16690:12:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16655:5:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16679:5:23"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "16662:16:23"
},
"nodeType": "YulFunctionCall",
"src": "16662:23:23"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "16652:2:23"
},
"nodeType": "YulFunctionCall",
"src": "16652:34:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16645:6:23"
},
"nodeType": "YulFunctionCall",
"src": "16645:42:23"
},
"nodeType": "YulIf",
"src": "16642:62:23"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16625:5:23",
"type": ""
}
],
"src": "16590:120:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16759:79:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "16816:16:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16825:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16828:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "16818:6:23"
},
"nodeType": "YulFunctionCall",
"src": "16818:12:23"
},
"nodeType": "YulExpressionStatement",
"src": "16818:12:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16782:5:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16807:5:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "16789:17:23"
},
"nodeType": "YulFunctionCall",
"src": "16789:24:23"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "16779:2:23"
},
"nodeType": "YulFunctionCall",
"src": "16779:35:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16772:6:23"
},
"nodeType": "YulFunctionCall",
"src": "16772:43:23"
},
"nodeType": "YulIf",
"src": "16769:63:23"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16752:5:23",
"type": ""
}
],
"src": "16716:122:23"
}
]
},
"contents": "{\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_bytes32(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes32(value)\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes32(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes32t_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_71abfcf6e817aaed3ce6663958bac2a3a82999ed0036c98a95b29f350f04cedf_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 22)\n store_literal_in_memory_71abfcf6e817aaed3ce6663958bac2a3a82999ed0036c98a95b29f350f04cedf(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 23)\n store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874(pos)\n end := add(pos, 23)\n }\n\n function abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 17)\n store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69(pos)\n end := add(pos, 17)\n }\n\n function abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_packed_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_t_string_memory_ptr_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_stringliteral_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_stringliteral_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_71abfcf6e817aaed3ce6663958bac2a3a82999ed0036c98a95b29f350f04cedf__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_71abfcf6e817aaed3ce6663958bac2a3a82999ed0036c98a95b29f350f04cedf_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function decrement_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0x00) { panic_error_0x11() }\n ret := sub(value, 1)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function store_literal_in_memory_04fc88320d7c9f639317c75102c103ff0044d3075a5c627e24e76e5bbb2733c2(memPtr) {\n\n mstore(add(memPtr, 0), \"Strings: hex length insufficient\")\n\n }\n\n function store_literal_in_memory_71abfcf6e817aaed3ce6663958bac2a3a82999ed0036c98a95b29f350f04cedf(memPtr) {\n\n mstore(add(memPtr, 0), \"Caller is not a minter\")\n\n }\n\n function store_literal_in_memory_da0d07ce4a2849fbfc4cb9d6f939e9bd93016c372ca4a5ff14fe06caf3d67874(memPtr) {\n\n mstore(add(memPtr, 0), \"AccessControl: account \")\n\n }\n\n function store_literal_in_memory_f986ce851518a691bccd44ea42a5a185d1b866ef6cb07984a09b81694d20ab69(memPtr) {\n\n mstore(add(memPtr, 0), \" is missing role \")\n\n }\n\n function store_literal_in_memory_fb06fa8ff2141e8ed74502f6792273793f25f0e9d3cf15344f3f5a0d4948fd4b(memPtr) {\n\n mstore(add(memPtr, 0), \"AccessControl: can only renounce\")\n\n mstore(add(memPtr, 32), \" roles for self\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 23,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061018e5760003560e01c80635be1f4cb116100de578063a217fddf11610097578063d539139311610071578063d5391393146104b1578063d547741f146104cf578063dd62ed3e146104eb578063ea243a331461051b5761018e565b8063a217fddf14610445578063a9059cbb14610463578063c2e621de146104935761018e565b80635be1f4cb1461036f57806370a082311461038d5780637da0a877146103bd57806391d14854146103db57806395d89b411461040b578063a0712d68146104295761018e565b8063248a9ca31161014b57806336568abe1161012557806336568abe146102e7578063486ff0cd1461030357806354fd4d5014610321578063572b6c051461033f5761018e565b8063248a9ca31461027d5780632f2ff15d146102ad578063313ce567146102c95761018e565b806301ffc9a71461019357806306fdde03146101c3578063095ea7b3146101e1578063098d32281461021157806318160ddd1461022f57806323b872dd1461024d575b600080fd5b6101ad60048036038101906101a89190611d67565b610539565b6040516101ba9190611f7a565b60405180910390f35b6101cb6105b3565b6040516101d89190611fb0565b60405180910390f35b6101fb60048036038101906101f69190611cba565b610641565b6040516102089190611f7a565b60405180910390f35b610219610741565b6040516102269190612032565b60405180910390f35b610237610765565b6040516102449190612032565b60405180910390f35b61026760048036038101906102629190611c67565b6107cb565b6040516102749190611f7a565b60405180910390f35b61029760048036038101906102929190611cfa565b6108e2565b6040516102a49190611f95565b60405180910390f35b6102c760048036038101906102c29190611d27565b610902565b005b6102d161092b565b6040516102de919061204d565b60405180910390f35b61030160048036038101906102fc9190611d27565b61093e565b005b61030b6109c1565b6040516103189190611fb0565b60405180910390f35b610329610a4f565b6040516103369190611fb0565b60405180910390f35b61035960048036038101906103549190611bfa565b610add565b6040516103669190611f7a565b60405180910390f35b610377610b36565b6040516103849190612032565b60405180910390f35b6103a760048036038101906103a29190611bfa565b610b3c565b6040516103b49190612032565b60405180910390f35b6103c5610c5b565b6040516103d29190611f5f565b60405180910390f35b6103f560048036038101906103f09190611d27565b610c85565b6040516104029190611f7a565b60405180910390f35b610413610cf0565b6040516104209190611fb0565b60405180910390f35b610443600480360381019061043e9190611d94565b610d7e565b005b61044d610e02565b60405161045a9190611f95565b60405180910390f35b61047d60048036038101906104789190611cba565b610e09565b60405161048a9190611f7a565b60405180910390f35b61049b610e93565b6040516104a89190611f5f565b60405180910390f35b6104b9610eb9565b6040516104c69190611f95565b60405180910390f35b6104e960048036038101906104e49190611d27565b610edd565b005b61050560048036038101906105009190611c27565b610f06565b6040516105129190612032565b60405180910390f35b610523610f8d565b6040516105309190612032565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105ac57506105ab82611467565b5b9050919050565b600b80546105c09061228c565b80601f01602080910402602001604051908101604052809291908181526020018280546105ec9061228c565b80156106395780601f1061060e57610100808354040283529160200191610639565b820191906000526020600020905b81548152906001019060200180831161061c57829003601f168201915b505050505081565b600081600660006106506114d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff166106ea6114d1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161072f9190612032565b60405180910390a36001905092915050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81565b600080600754141561077a57600090506107c8565b6107bb6107b661078b60075461106c565b6107b1600960009054906101000a9004600f0b600854426107ac9190612170565b61108f565b6113a4565b61140f565b67ffffffffffffffff1690505b90565b60006107d88484846114e0565b81600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108226114d1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461086b9190612170565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108cf9190612032565b60405180910390a3600190509392505050565b600060016000838152602001908152602001600020600101549050919050565b61090b826108e2565b61091c816109176114d1565b611559565b61092683836115f6565b505050565b600c60009054906101000a900460ff1681565b6109466114d1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90612012565b60405180910390fd5b6109bd82826116d6565b5050565b600280546109ce9061228c565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa9061228c565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b505050505081565b600e8054610a5c9061228c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a889061228c565b8015610ad55780601f10610aaa57610100808354040283529160200191610ad5565b820191906000526020600020905b815481529060010190602001808311610ab857829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b60085481565b600080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415610b8e5760009050610c56565b610c49610c44610bdc600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461106c565b610c3f600960009054906101000a9004600f0b600560008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205442610c3a9190612170565b61108f565b6113a4565b61140f565b67ffffffffffffffff1690505b919050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d8054610cfd9061228c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d299061228c565b8015610d765780601f10610d4b57610100808354040283529160200191610d76565b820191906000526020600020905b815481529060010190602001808311610d5957829003601f168201915b505050505081565b610daf7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610daa6114d1565b610c85565b610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590611ff2565b60405180910390fd5b610dff610df96114d1565b826117b8565b50565b6000801b81565b6000610e1d610e166114d1565b84846114e0565b8273ffffffffffffffffffffffffffffffffffffffff16610e3c6114d1565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e819190612032565b60405180910390a36001905092915050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610ee6826108e2565b610ef781610ef26114d1565b611559565b610f0183836116d6565b505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b60007fffffffffffffffffffffffffffffffffffffffffffffffff80000000000000008212158015610fcd5750677fffffffffffffff8213155b610fd657600080fd5b604082901b9050919050565b60008082600f0b1415610ff457600080fd5b600082600f0b604085600f0b901b816110105761100f6122ed565b5b0590507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b811215801561105957506f7fffffffffffffffffffffffffffffff600f0b8113155b61106257600080fd5b8091505092915050565b6000677fffffffffffffff82111561108357600080fd5b604082901b9050919050565b600080600084600f0b1280156110a757506001808416145b905060008085600f0b126110bb57846110c0565b846000035b6fffffffffffffffffffffffffffffffff1690506000700100000000000000000000000000000000905068010000000000000000821161119a57603f82901b91505b6000851461118e576000600186161461111f57607f828202901c90505b607f828302901c91506000600286161461113d57607f828202901c90505b607f828302901c91506000600486161461115b57607f828202901c90505b607f828302901c91506000600886161461117957607f828202901c90505b607f828302901c9150600485901c9450611102565b604081901c9050611334565b6000603f90506c010000000000000000000000008310156111c357602083901b92506020810390505b6e0100000000000000000000000000008310156111e857601083901b92506010810390505b6f0100000000000000000000000000000083101561120e57600883901b92506008810390505b6f1000000000000000000000000000000083101561123457600483901b92506004810390505b6f4000000000000000000000000000000083101561125a57600283901b92506002810390505b6f8000000000000000000000000000000083101561128057600183901b92506001810390505b60005b6000871461131b576040821061129857600080fd5b600060018816146112d957607f848402901c925081810190507001000000000000000000000000000000008311156112d857600183901c92506001810190505b5b607f848502901c9350600182901b9150700100000000000000000000000000000000841061130f57600184901c93506001820191505b600187901c9650611283565b6040811061132857600080fd5b8060400383901c925050505b6000836113415781611346565b816000035b90507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b811215801561138e57506f7fffffffffffffffffffffffffffffff600f0b8113155b61139757600080fd5b8094505050505092915050565b600080604083600f0b85600f0b02901d90507fffffffffffffffffffffffffffffffff80000000000000000000000000000000600f0b81121580156113fc57506f7fffffffffffffffffffffffffffffff600f0b8113155b61140557600080fd5b8091505092915050565b60008082600f0b121561142157600080fd5b604082600f0b901d9050919050565b6000601460003690501015801561144c575061144b33610add565b5b1561146057601436033560601c9050611464565b3390505b90565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006114db611430565b905090565b6114ea838261183c565b61150082600a836114fb91906120e5565b6117b8565b61152a7351f77c6e454b9ce3ca8eb5340c7ffc4f23483c2c600a8361152591906120e5565b6117b8565b6115547337da4b9542e95fd649cdb51e8bf9563dd660cb6c600a8361154f91906120e5565b6117b8565b505050565b6115638282610c85565b6115f2576115888173ffffffffffffffffffffffffffffffffffffffff1660146118c0565b6115968360001c60206118c0565b6040516020016115a7929190611f25565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e99190611fb0565b60405180910390fd5b5050565b6116008282610c85565b6116d257600180600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116776114d1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6116e08282610c85565b156117b45760006001600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506117596114d1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6117c182611afc565b6117c9611b8f565b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611818919061208f565b925050819055508060076000828254611831919061208f565b925050819055505050565b61184582611afc565b61184d611b8f565b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461189c9190612170565b9250508190555080600760008282546118b59190612170565b925050819055505050565b6060600060028360026118d39190612116565b6118dd919061208f565b67ffffffffffffffff8111156118f6576118f561237a565b5b6040519080825280601f01601f1916602001820160405280156119285781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106119605761195f61234b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106119c4576119c361234b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611a049190612116565b611a0e919061208f565b90505b6001811115611aae577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611a5057611a4f61234b565b5b1a60f81b828281518110611a6757611a6661234b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611aa790612262565b9050611a11565b5060008414611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990611fd2565b60405180910390fd5b8091505092915050565b611b0581610b3c565b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555042600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b611b97610765565b60078190555042600881905550565b600081359050611bb5816124b2565b92915050565b600081359050611bca816124c9565b92915050565b600081359050611bdf816124e0565b92915050565b600081359050611bf4816124f7565b92915050565b600060208284031215611c1057611c0f6123a9565b5b6000611c1e84828501611ba6565b91505092915050565b60008060408385031215611c3e57611c3d6123a9565b5b6000611c4c85828601611ba6565b9250506020611c5d85828601611ba6565b9150509250929050565b600080600060608486031215611c8057611c7f6123a9565b5b6000611c8e86828701611ba6565b9350506020611c9f86828701611ba6565b9250506040611cb086828701611be5565b9150509250925092565b60008060408385031215611cd157611cd06123a9565b5b6000611cdf85828601611ba6565b9250506020611cf085828601611be5565b9150509250929050565b600060208284031215611d1057611d0f6123a9565b5b6000611d1e84828501611bbb565b91505092915050565b60008060408385031215611d3e57611d3d6123a9565b5b6000611d4c85828601611bbb565b9250506020611d5d85828601611ba6565b9150509250929050565b600060208284031215611d7d57611d7c6123a9565b5b6000611d8b84828501611bd0565b91505092915050565b600060208284031215611daa57611da96123a9565b5b6000611db884828501611be5565b91505092915050565b611dca816121a4565b82525050565b611dd9816121b6565b82525050565b611de8816121c2565b82525050565b6000611df982612068565b611e038185612073565b9350611e1381856020860161222f565b611e1c816123ae565b840191505092915050565b6000611e3282612068565b611e3c8185612084565b9350611e4c81856020860161222f565b80840191505092915050565b6000611e65602083612073565b9150611e70826123bf565b602082019050919050565b6000611e88601683612073565b9150611e93826123e8565b602082019050919050565b6000611eab601783612084565b9150611eb682612411565b601782019050919050565b6000611ece601183612084565b9150611ed98261243a565b601182019050919050565b6000611ef1602f83612073565b9150611efc82612463565b604082019050919050565b611f1081612218565b82525050565b611f1f81612222565b82525050565b6000611f3082611e9e565b9150611f3c8285611e27565b9150611f4782611ec1565b9150611f538284611e27565b91508190509392505050565b6000602082019050611f746000830184611dc1565b92915050565b6000602082019050611f8f6000830184611dd0565b92915050565b6000602082019050611faa6000830184611ddf565b92915050565b60006020820190508181036000830152611fca8184611dee565b905092915050565b60006020820190508181036000830152611feb81611e58565b9050919050565b6000602082019050818103600083015261200b81611e7b565b9050919050565b6000602082019050818103600083015261202b81611ee4565b9050919050565b60006020820190506120476000830184611f07565b92915050565b60006020820190506120626000830184611f16565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600061209a82612218565b91506120a583612218565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156120da576120d96122be565b5b828201905092915050565b60006120f082612218565b91506120fb83612218565b92508261210b5761210a6122ed565b5b828204905092915050565b600061212182612218565b915061212c83612218565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612165576121646122be565b5b828202905092915050565b600061217b82612218565b915061218683612218565b925082821015612199576121986122be565b5b828203905092915050565b60006121af826121f8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561224d578082015181840152602081019050612232565b8381111561225c576000848401525b50505050565b600061226d82612218565b91506000821415612281576122806122be565b5b600182039050919050565b600060028204905060018216806122a457607f821691505b602082108114156122b8576122b761231c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f43616c6c6572206973206e6f742061206d696e74657200000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6124bb816121a4565b81146124c657600080fd5b50565b6124d2816121c2565b81146124dd57600080fd5b50565b6124e9816121cc565b81146124f457600080fd5b50565b61250081612218565b811461250b57600080fd5b5056fea2646970667358221220e40c1fbb4da7d075bbdd4bcbac4ae6ef5d75555c9effd298b766a9af4d3d117a64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x18E JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x5BE1F4CB GT PUSH2 0xDE JUMPI DUP1 PUSH4 0xA217FDDF GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xD5391393 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xD5391393 EQ PUSH2 0x4B1 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x4CF JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x4EB JUMPI DUP1 PUSH4 0xEA243A33 EQ PUSH2 0x51B JUMPI PUSH2 0x18E JUMP JUMPDEST DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x445 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x463 JUMPI DUP1 PUSH4 0xC2E621DE EQ PUSH2 0x493 JUMPI PUSH2 0x18E JUMP JUMPDEST DUP1 PUSH4 0x5BE1F4CB EQ PUSH2 0x36F JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x38D JUMPI DUP1 PUSH4 0x7DA0A877 EQ PUSH2 0x3BD JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x3DB JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x40B JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x429 JUMPI PUSH2 0x18E JUMP JUMPDEST DUP1 PUSH4 0x248A9CA3 GT PUSH2 0x14B JUMPI DUP1 PUSH4 0x36568ABE GT PUSH2 0x125 JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x2E7 JUMPI DUP1 PUSH4 0x486FF0CD EQ PUSH2 0x303 JUMPI DUP1 PUSH4 0x54FD4D50 EQ PUSH2 0x321 JUMPI DUP1 PUSH4 0x572B6C05 EQ PUSH2 0x33F JUMPI PUSH2 0x18E JUMP JUMPDEST DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x27D JUMPI DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x2AD JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x2C9 JUMPI PUSH2 0x18E JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x193 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1E1 JUMPI DUP1 PUSH4 0x98D3228 EQ PUSH2 0x211 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x22F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x24D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1AD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A8 SWAP2 SWAP1 PUSH2 0x1D67 JUMP JUMPDEST PUSH2 0x539 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BA SWAP2 SWAP1 PUSH2 0x1F7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CB PUSH2 0x5B3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D8 SWAP2 SWAP1 PUSH2 0x1FB0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F6 SWAP2 SWAP1 PUSH2 0x1CBA JUMP JUMPDEST PUSH2 0x641 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x208 SWAP2 SWAP1 PUSH2 0x1F7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x219 PUSH2 0x741 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x226 SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x237 PUSH2 0x765 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x244 SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x267 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x262 SWAP2 SWAP1 PUSH2 0x1C67 JUMP JUMPDEST PUSH2 0x7CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x274 SWAP2 SWAP1 PUSH2 0x1F7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x297 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x292 SWAP2 SWAP1 PUSH2 0x1CFA JUMP JUMPDEST PUSH2 0x8E2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A4 SWAP2 SWAP1 PUSH2 0x1F95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C2 SWAP2 SWAP1 PUSH2 0x1D27 JUMP JUMPDEST PUSH2 0x902 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2D1 PUSH2 0x92B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2DE SWAP2 SWAP1 PUSH2 0x204D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x301 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2FC SWAP2 SWAP1 PUSH2 0x1D27 JUMP JUMPDEST PUSH2 0x93E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x30B PUSH2 0x9C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x318 SWAP2 SWAP1 PUSH2 0x1FB0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x329 PUSH2 0xA4F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x336 SWAP2 SWAP1 PUSH2 0x1FB0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x359 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x354 SWAP2 SWAP1 PUSH2 0x1BFA JUMP JUMPDEST PUSH2 0xADD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x366 SWAP2 SWAP1 PUSH2 0x1F7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x377 PUSH2 0xB36 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x384 SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3A7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3A2 SWAP2 SWAP1 PUSH2 0x1BFA JUMP JUMPDEST PUSH2 0xB3C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3C5 PUSH2 0xC5B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3D2 SWAP2 SWAP1 PUSH2 0x1F5F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3F5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3F0 SWAP2 SWAP1 PUSH2 0x1D27 JUMP JUMPDEST PUSH2 0xC85 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x402 SWAP2 SWAP1 PUSH2 0x1F7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x413 PUSH2 0xCF0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x420 SWAP2 SWAP1 PUSH2 0x1FB0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x443 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x43E SWAP2 SWAP1 PUSH2 0x1D94 JUMP JUMPDEST PUSH2 0xD7E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x44D PUSH2 0xE02 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x45A SWAP2 SWAP1 PUSH2 0x1F95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x47D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x478 SWAP2 SWAP1 PUSH2 0x1CBA JUMP JUMPDEST PUSH2 0xE09 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x48A SWAP2 SWAP1 PUSH2 0x1F7A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x49B PUSH2 0xE93 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4A8 SWAP2 SWAP1 PUSH2 0x1F5F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4B9 PUSH2 0xEB9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4C6 SWAP2 SWAP1 PUSH2 0x1F95 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4E9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4E4 SWAP2 SWAP1 PUSH2 0x1D27 JUMP JUMPDEST PUSH2 0xEDD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x505 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x500 SWAP2 SWAP1 PUSH2 0x1C27 JUMP JUMPDEST PUSH2 0xF06 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x512 SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x523 PUSH2 0xF8D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x530 SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x7965DB0B00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x5AC JUMPI POP PUSH2 0x5AB DUP3 PUSH2 0x1467 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xB DUP1 SLOAD PUSH2 0x5C0 SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x5EC SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 ISZERO PUSH2 0x639 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x60E JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x639 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x61C JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x6 PUSH1 0x0 PUSH2 0x650 PUSH2 0x14D1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x6EA PUSH2 0x14D1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x72F SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x7 SLOAD EQ ISZERO PUSH2 0x77A JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x7C8 JUMP JUMPDEST PUSH2 0x7BB PUSH2 0x7B6 PUSH2 0x78B PUSH1 0x7 SLOAD PUSH2 0x106C JUMP JUMPDEST PUSH2 0x7B1 PUSH1 0x9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND PUSH1 0x8 SLOAD TIMESTAMP PUSH2 0x7AC SWAP2 SWAP1 PUSH2 0x2170 JUMP JUMPDEST PUSH2 0x108F JUMP JUMPDEST PUSH2 0x13A4 JUMP JUMPDEST PUSH2 0x140F JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7D8 DUP5 DUP5 DUP5 PUSH2 0x14E0 JUMP JUMPDEST DUP2 PUSH1 0x6 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x822 PUSH2 0x14D1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x86B SWAP2 SWAP1 PUSH2 0x2170 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x8CF SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x90B DUP3 PUSH2 0x8E2 JUMP JUMPDEST PUSH2 0x91C DUP2 PUSH2 0x917 PUSH2 0x14D1 JUMP JUMPDEST PUSH2 0x1559 JUMP JUMPDEST PUSH2 0x926 DUP4 DUP4 PUSH2 0x15F6 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0xC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x946 PUSH2 0x14D1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9AA SWAP1 PUSH2 0x2012 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x9BD DUP3 DUP3 PUSH2 0x16D6 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH2 0x9CE SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x9FA SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 ISZERO PUSH2 0xA47 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xA1C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xA47 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xA2A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0xE DUP1 SLOAD PUSH2 0xA5C SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xA88 SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 ISZERO PUSH2 0xAD5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xAAA JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xAD5 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xAB8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x4 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD EQ ISZERO PUSH2 0xB8E JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0xC56 JUMP JUMPDEST PUSH2 0xC49 PUSH2 0xC44 PUSH2 0xBDC PUSH1 0x4 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x106C JUMP JUMPDEST PUSH2 0xC3F PUSH1 0x9 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xF SIGNEXTEND PUSH1 0x5 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD TIMESTAMP PUSH2 0xC3A SWAP2 SWAP1 PUSH2 0x2170 JUMP JUMPDEST PUSH2 0x108F JUMP JUMPDEST PUSH2 0x13A4 JUMP JUMPDEST PUSH2 0x140F JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xD DUP1 SLOAD PUSH2 0xCFD SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xD29 SWAP1 PUSH2 0x228C JUMP JUMPDEST DUP1 ISZERO PUSH2 0xD76 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xD4B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xD76 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xD59 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH2 0xDAF PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 PUSH2 0xDAA PUSH2 0x14D1 JUMP JUMPDEST PUSH2 0xC85 JUMP JUMPDEST PUSH2 0xDEE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDE5 SWAP1 PUSH2 0x1FF2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDFF PUSH2 0xDF9 PUSH2 0x14D1 JUMP JUMPDEST DUP3 PUSH2 0x17B8 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 SHL DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE1D PUSH2 0xE16 PUSH2 0x14D1 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x14E0 JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xE3C PUSH2 0x14D1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xE81 SWAP2 SWAP1 PUSH2 0x2032 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH32 0x9F2DF0FED2C77648DE5860A4CC508CD0818C85B8B8A1AB4CEEEF8D981C8956A6 DUP2 JUMP JUMPDEST PUSH2 0xEE6 DUP3 PUSH2 0x8E2 JUMP JUMPDEST PUSH2 0xEF7 DUP2 PUSH2 0xEF2 PUSH2 0x14D1 JUMP JUMPDEST PUSH2 0x1559 JUMP JUMPDEST PUSH2 0xF01 DUP4 DUP4 PUSH2 0x16D6 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000000 DUP3 SLT ISZERO DUP1 ISZERO PUSH2 0xFCD JUMPI POP PUSH8 0x7FFFFFFFFFFFFFFF DUP3 SGT ISZERO JUMPDEST PUSH2 0xFD6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP3 SWAP1 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND EQ ISZERO PUSH2 0xFF4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH1 0xF SIGNEXTEND PUSH1 0x40 DUP6 PUSH1 0xF SIGNEXTEND SWAP1 SHL DUP2 PUSH2 0x1010 JUMPI PUSH2 0x100F PUSH2 0x22ED JUMP JUMPDEST JUMPDEST SDIV SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH2 0x1059 JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH2 0x1062 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0x7FFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1083 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP3 SWAP1 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP5 PUSH1 0xF SIGNEXTEND SLT DUP1 ISZERO PUSH2 0x10A7 JUMPI POP PUSH1 0x1 DUP1 DUP5 AND EQ JUMPDEST SWAP1 POP PUSH1 0x0 DUP1 DUP6 PUSH1 0xF SIGNEXTEND SLT PUSH2 0x10BB JUMPI DUP5 PUSH2 0x10C0 JUMP JUMPDEST DUP5 PUSH1 0x0 SUB JUMPDEST PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH17 0x100000000000000000000000000000000 SWAP1 POP PUSH9 0x10000000000000000 DUP3 GT PUSH2 0x119A JUMPI PUSH1 0x3F DUP3 SWAP1 SHL SWAP2 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x118E JUMPI PUSH1 0x0 PUSH1 0x1 DUP7 AND EQ PUSH2 0x111F JUMPI PUSH1 0x7F DUP3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x7F DUP3 DUP4 MUL SWAP1 SHR SWAP2 POP PUSH1 0x0 PUSH1 0x2 DUP7 AND EQ PUSH2 0x113D JUMPI PUSH1 0x7F DUP3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x7F DUP3 DUP4 MUL SWAP1 SHR SWAP2 POP PUSH1 0x0 PUSH1 0x4 DUP7 AND EQ PUSH2 0x115B JUMPI PUSH1 0x7F DUP3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x7F DUP3 DUP4 MUL SWAP1 SHR SWAP2 POP PUSH1 0x0 PUSH1 0x8 DUP7 AND EQ PUSH2 0x1179 JUMPI PUSH1 0x7F DUP3 DUP3 MUL SWAP1 SHR SWAP1 POP JUMPDEST PUSH1 0x7F DUP3 DUP4 MUL SWAP1 SHR SWAP2 POP PUSH1 0x4 DUP6 SWAP1 SHR SWAP5 POP PUSH2 0x1102 JUMP JUMPDEST PUSH1 0x40 DUP2 SWAP1 SHR SWAP1 POP PUSH2 0x1334 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3F SWAP1 POP PUSH13 0x1000000000000000000000000 DUP4 LT ISZERO PUSH2 0x11C3 JUMPI PUSH1 0x20 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x20 DUP2 SUB SWAP1 POP JUMPDEST PUSH15 0x10000000000000000000000000000 DUP4 LT ISZERO PUSH2 0x11E8 JUMPI PUSH1 0x10 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x10 DUP2 SUB SWAP1 POP JUMPDEST PUSH16 0x1000000000000000000000000000000 DUP4 LT ISZERO PUSH2 0x120E JUMPI PUSH1 0x8 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x8 DUP2 SUB SWAP1 POP JUMPDEST PUSH16 0x10000000000000000000000000000000 DUP4 LT ISZERO PUSH2 0x1234 JUMPI PUSH1 0x4 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x4 DUP2 SUB SWAP1 POP JUMPDEST PUSH16 0x40000000000000000000000000000000 DUP4 LT ISZERO PUSH2 0x125A JUMPI PUSH1 0x2 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x2 DUP2 SUB SWAP1 POP JUMPDEST PUSH16 0x80000000000000000000000000000000 DUP4 LT ISZERO PUSH2 0x1280 JUMPI PUSH1 0x1 DUP4 SWAP1 SHL SWAP3 POP PUSH1 0x1 DUP2 SUB SWAP1 POP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP8 EQ PUSH2 0x131B JUMPI PUSH1 0x40 DUP3 LT PUSH2 0x1298 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP9 AND EQ PUSH2 0x12D9 JUMPI PUSH1 0x7F DUP5 DUP5 MUL SWAP1 SHR SWAP3 POP DUP2 DUP2 ADD SWAP1 POP PUSH17 0x100000000000000000000000000000000 DUP4 GT ISZERO PUSH2 0x12D8 JUMPI PUSH1 0x1 DUP4 SWAP1 SHR SWAP3 POP PUSH1 0x1 DUP2 ADD SWAP1 POP JUMPDEST JUMPDEST PUSH1 0x7F DUP5 DUP6 MUL SWAP1 SHR SWAP4 POP PUSH1 0x1 DUP3 SWAP1 SHL SWAP2 POP PUSH17 0x100000000000000000000000000000000 DUP5 LT PUSH2 0x130F JUMPI PUSH1 0x1 DUP5 SWAP1 SHR SWAP4 POP PUSH1 0x1 DUP3 ADD SWAP2 POP JUMPDEST PUSH1 0x1 DUP8 SWAP1 SHR SWAP7 POP PUSH2 0x1283 JUMP JUMPDEST PUSH1 0x40 DUP2 LT PUSH2 0x1328 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH1 0x40 SUB DUP4 SWAP1 SHR SWAP3 POP POP POP JUMPDEST PUSH1 0x0 DUP4 PUSH2 0x1341 JUMPI DUP2 PUSH2 0x1346 JUMP JUMPDEST DUP2 PUSH1 0x0 SUB JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH2 0x138E JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH2 0x1397 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP5 POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 PUSH1 0xF SIGNEXTEND DUP6 PUSH1 0xF SIGNEXTEND MUL SWAP1 SAR SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80000000000000000000000000000000 PUSH1 0xF SIGNEXTEND DUP2 SLT ISZERO DUP1 ISZERO PUSH2 0x13FC JUMPI POP PUSH16 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0xF SIGNEXTEND DUP2 SGT ISZERO JUMPDEST PUSH2 0x1405 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH1 0xF SIGNEXTEND SLT ISZERO PUSH2 0x1421 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 DUP3 PUSH1 0xF SIGNEXTEND SWAP1 SAR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x14 PUSH1 0x0 CALLDATASIZE SWAP1 POP LT ISZERO DUP1 ISZERO PUSH2 0x144C JUMPI POP PUSH2 0x144B CALLER PUSH2 0xADD JUMP JUMPDEST JUMPDEST ISZERO PUSH2 0x1460 JUMPI PUSH1 0x14 CALLDATASIZE SUB CALLDATALOAD PUSH1 0x60 SHR SWAP1 POP PUSH2 0x1464 JUMP JUMPDEST CALLER SWAP1 POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14DB PUSH2 0x1430 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x14EA DUP4 DUP3 PUSH2 0x183C JUMP JUMPDEST PUSH2 0x1500 DUP3 PUSH1 0xA DUP4 PUSH2 0x14FB SWAP2 SWAP1 PUSH2 0x20E5 JUMP JUMPDEST PUSH2 0x17B8 JUMP JUMPDEST PUSH2 0x152A PUSH20 0x51F77C6E454B9CE3CA8EB5340C7FFC4F23483C2C PUSH1 0xA DUP4 PUSH2 0x1525 SWAP2 SWAP1 PUSH2 0x20E5 JUMP JUMPDEST PUSH2 0x17B8 JUMP JUMPDEST PUSH2 0x1554 PUSH20 0x37DA4B9542E95FD649CDB51E8BF9563DD660CB6C PUSH1 0xA DUP4 PUSH2 0x154F SWAP2 SWAP1 PUSH2 0x20E5 JUMP JUMPDEST PUSH2 0x17B8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1563 DUP3 DUP3 PUSH2 0xC85 JUMP JUMPDEST PUSH2 0x15F2 JUMPI PUSH2 0x1588 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x14 PUSH2 0x18C0 JUMP JUMPDEST PUSH2 0x1596 DUP4 PUSH1 0x0 SHR PUSH1 0x20 PUSH2 0x18C0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x15A7 SWAP3 SWAP2 SWAP1 PUSH2 0x1F25 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15E9 SWAP2 SWAP1 PUSH2 0x1FB0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1600 DUP3 DUP3 PUSH2 0xC85 JUMP JUMPDEST PUSH2 0x16D2 JUMPI PUSH1 0x1 DUP1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x1677 PUSH2 0x14D1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x16E0 DUP3 DUP3 PUSH2 0xC85 JUMP JUMPDEST ISZERO PUSH2 0x17B4 JUMPI PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 ADD PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x1759 PUSH2 0x14D1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x17C1 DUP3 PUSH2 0x1AFC JUMP JUMPDEST PUSH2 0x17C9 PUSH2 0x1B8F JUMP JUMPDEST DUP1 PUSH1 0x4 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1818 SWAP2 SWAP1 PUSH2 0x208F JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x7 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1831 SWAP2 SWAP1 PUSH2 0x208F JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH2 0x1845 DUP3 PUSH2 0x1AFC JUMP JUMPDEST PUSH2 0x184D PUSH2 0x1B8F JUMP JUMPDEST DUP1 PUSH1 0x4 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x189C SWAP2 SWAP1 PUSH2 0x2170 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x7 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x18B5 SWAP2 SWAP1 PUSH2 0x2170 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x2 DUP4 PUSH1 0x2 PUSH2 0x18D3 SWAP2 SWAP1 PUSH2 0x2116 JUMP JUMPDEST PUSH2 0x18DD SWAP2 SWAP1 PUSH2 0x208F JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x18F6 JUMPI PUSH2 0x18F5 PUSH2 0x237A JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1928 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1960 JUMPI PUSH2 0x195F PUSH2 0x234B JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH32 0x7800000000000000000000000000000000000000000000000000000000000000 DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x19C4 JUMPI PUSH2 0x19C3 PUSH2 0x234B JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x0 PUSH1 0x1 DUP5 PUSH1 0x2 PUSH2 0x1A04 SWAP2 SWAP1 PUSH2 0x2116 JUMP JUMPDEST PUSH2 0x1A0E SWAP2 SWAP1 PUSH2 0x208F JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x1AAE JUMPI PUSH32 0x3031323334353637383961626364656600000000000000000000000000000000 PUSH1 0xF DUP7 AND PUSH1 0x10 DUP2 LT PUSH2 0x1A50 JUMPI PUSH2 0x1A4F PUSH2 0x234B JUMP JUMPDEST JUMPDEST BYTE PUSH1 0xF8 SHL DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1A67 JUMPI PUSH2 0x1A66 PUSH2 0x234B JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0x4 DUP6 SWAP1 SHR SWAP5 POP DUP1 PUSH2 0x1AA7 SWAP1 PUSH2 0x2262 JUMP JUMPDEST SWAP1 POP PUSH2 0x1A11 JUMP JUMPDEST POP PUSH1 0x0 DUP5 EQ PUSH2 0x1AF2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AE9 SWAP1 PUSH2 0x1FD2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1B05 DUP2 PUSH2 0xB3C JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP TIMESTAMP PUSH1 0x5 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x1B97 PUSH2 0x765 JUMP JUMPDEST PUSH1 0x7 DUP2 SWAP1 SSTORE POP TIMESTAMP PUSH1 0x8 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1BB5 DUP2 PUSH2 0x24B2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1BCA DUP2 PUSH2 0x24C9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1BDF DUP2 PUSH2 0x24E0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1BF4 DUP2 PUSH2 0x24F7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C10 JUMPI PUSH2 0x1C0F PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C1E DUP5 DUP3 DUP6 ADD PUSH2 0x1BA6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C3E JUMPI PUSH2 0x1C3D PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C4C DUP6 DUP3 DUP7 ADD PUSH2 0x1BA6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1C5D DUP6 DUP3 DUP7 ADD PUSH2 0x1BA6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1C80 JUMPI PUSH2 0x1C7F PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C8E DUP7 DUP3 DUP8 ADD PUSH2 0x1BA6 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1C9F DUP7 DUP3 DUP8 ADD PUSH2 0x1BA6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1CB0 DUP7 DUP3 DUP8 ADD PUSH2 0x1BE5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1CD1 JUMPI PUSH2 0x1CD0 PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1CDF DUP6 DUP3 DUP7 ADD PUSH2 0x1BA6 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1CF0 DUP6 DUP3 DUP7 ADD PUSH2 0x1BE5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1D10 JUMPI PUSH2 0x1D0F PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1D1E DUP5 DUP3 DUP6 ADD PUSH2 0x1BBB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1D3E JUMPI PUSH2 0x1D3D PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1D4C DUP6 DUP3 DUP7 ADD PUSH2 0x1BBB JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1D5D DUP6 DUP3 DUP7 ADD PUSH2 0x1BA6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1D7D JUMPI PUSH2 0x1D7C PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1D8B DUP5 DUP3 DUP6 ADD PUSH2 0x1BD0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DAA JUMPI PUSH2 0x1DA9 PUSH2 0x23A9 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1DB8 DUP5 DUP3 DUP6 ADD PUSH2 0x1BE5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1DCA DUP2 PUSH2 0x21A4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1DD9 DUP2 PUSH2 0x21B6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1DE8 DUP2 PUSH2 0x21C2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1DF9 DUP3 PUSH2 0x2068 JUMP JUMPDEST PUSH2 0x1E03 DUP2 DUP6 PUSH2 0x2073 JUMP JUMPDEST SWAP4 POP PUSH2 0x1E13 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x222F JUMP JUMPDEST PUSH2 0x1E1C DUP2 PUSH2 0x23AE JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E32 DUP3 PUSH2 0x2068 JUMP JUMPDEST PUSH2 0x1E3C DUP2 DUP6 PUSH2 0x2084 JUMP JUMPDEST SWAP4 POP PUSH2 0x1E4C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x222F JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E65 PUSH1 0x20 DUP4 PUSH2 0x2073 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E70 DUP3 PUSH2 0x23BF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E88 PUSH1 0x16 DUP4 PUSH2 0x2073 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E93 DUP3 PUSH2 0x23E8 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EAB PUSH1 0x17 DUP4 PUSH2 0x2084 JUMP JUMPDEST SWAP2 POP PUSH2 0x1EB6 DUP3 PUSH2 0x2411 JUMP JUMPDEST PUSH1 0x17 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1ECE PUSH1 0x11 DUP4 PUSH2 0x2084 JUMP JUMPDEST SWAP2 POP PUSH2 0x1ED9 DUP3 PUSH2 0x243A JUMP JUMPDEST PUSH1 0x11 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EF1 PUSH1 0x2F DUP4 PUSH2 0x2073 JUMP JUMPDEST SWAP2 POP PUSH2 0x1EFC DUP3 PUSH2 0x2463 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1F10 DUP2 PUSH2 0x2218 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1F1F DUP2 PUSH2 0x2222 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F30 DUP3 PUSH2 0x1E9E JUMP JUMPDEST SWAP2 POP PUSH2 0x1F3C DUP3 DUP6 PUSH2 0x1E27 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F47 DUP3 PUSH2 0x1EC1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F53 DUP3 DUP5 PUSH2 0x1E27 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1F74 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1DC1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1F8F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1DD0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1FAA PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1DDF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1FCA DUP2 DUP5 PUSH2 0x1DEE JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1FEB DUP2 PUSH2 0x1E58 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x200B DUP2 PUSH2 0x1E7B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x202B DUP2 PUSH2 0x1EE4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2047 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1F07 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2062 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1F16 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x209A DUP3 PUSH2 0x2218 JUMP JUMPDEST SWAP2 POP PUSH2 0x20A5 DUP4 PUSH2 0x2218 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x20DA JUMPI PUSH2 0x20D9 PUSH2 0x22BE JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x20F0 DUP3 PUSH2 0x2218 JUMP JUMPDEST SWAP2 POP PUSH2 0x20FB DUP4 PUSH2 0x2218 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x210B JUMPI PUSH2 0x210A PUSH2 0x22ED JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2121 DUP3 PUSH2 0x2218 JUMP JUMPDEST SWAP2 POP PUSH2 0x212C DUP4 PUSH2 0x2218 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x2165 JUMPI PUSH2 0x2164 PUSH2 0x22BE JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x217B DUP3 PUSH2 0x2218 JUMP JUMPDEST SWAP2 POP PUSH2 0x2186 DUP4 PUSH2 0x2218 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x2199 JUMPI PUSH2 0x2198 PUSH2 0x22BE JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x21AF DUP3 PUSH2 0x21F8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x224D JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2232 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x225C JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x226D DUP3 PUSH2 0x2218 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x2281 JUMPI PUSH2 0x2280 PUSH2 0x22BE JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 SUB SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x22A4 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x22B8 JUMPI PUSH2 0x22B7 PUSH2 0x231C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x537472696E67733A20686578206C656E67746820696E73756666696369656E74 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x43616C6C6572206973206E6F742061206D696E74657200000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x416363657373436F6E74726F6C3A206163636F756E7420000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x206973206D697373696E6720726F6C6520000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x416363657373436F6E74726F6C3A2063616E206F6E6C792072656E6F756E6365 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x20726F6C657320666F722073656C660000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x24BB DUP2 PUSH2 0x21A4 JUMP JUMPDEST DUP2 EQ PUSH2 0x24C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x24D2 DUP2 PUSH2 0x21C2 JUMP JUMPDEST DUP2 EQ PUSH2 0x24DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x24E9 DUP2 PUSH2 0x21CC JUMP JUMPDEST DUP2 EQ PUSH2 0x24F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2500 DUP2 PUSH2 0x2218 JUMP JUMPDEST DUP2 EQ PUSH2 0x250B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE4 0xC 0x1F 0xBB 0x4D 0xA7 0xD0 PUSH22 0xBBDD4BCBAC4AE6EF5D75555C9EFFD298B766A9AF4D3D GT PUSH27 0x64736F6C6343000807003300000000000000000000000000000000 ",
"sourceMap": "362:4566:22:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2545:202:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;934:18:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3070:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1058:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1767:397;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2801:263;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3917:121:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4288:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;958:26:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5305:214:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;429:49:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1016:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;693:144:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;833:40:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2170:409;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1649:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2834:137:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;990:20:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3454:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1952:49:11;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2585:210:22;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;552:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;484:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4667:147:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3299:149:22;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;798:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2545:202:11;2630:4;2668:32;2653:47;;;:11;:47;;;;:87;;;;2704:36;2728:11;2704:23;:36::i;:::-;2653:87;2646:94;;2545:202;;;:::o;934:18:22:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3070:223::-;3146:12;3204:6;3170:7;:21;3178:12;:10;:12::i;:::-;3170:21;;;;;;;;;;;;;;;:31;3192:8;3170:31;;;;;;;;;;;;;;;:40;;;;3248:8;3225:40;;3234:12;:10;:12::i;:::-;3225:40;;;3258:6;3225:40;;;;;;:::i;:::-;;;;;;;;3282:4;3275:11;;3070:223;;;;:::o;1058:100::-;1092:66;1058:100;:::o;1767:397::-;1828:14;1875:1;1857:14;;:19;1853:57;;;1898:1;1891:8;;;;1853:57;1926:231;1947:209;1978:38;2001:14;;1978:22;:38::i;:::-;2030:116;2065:8;;;;;;;;;;;2107:25;;2091:15;:41;;;;:::i;:::-;2030:17;:116::i;:::-;1947:17;:209::i;:::-;1926:20;:231::i;:::-;1919:238;;;;1767:397;;:::o;2801:263::-;2892:12;2916:29;2926:5;2933:3;2938:6;2916:9;:29::i;:::-;2987:6;2955:7;:14;2963:5;2955:14;;;;;;;;;;;;;;;:28;2970:12;:10;:12::i;:::-;2955:28;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;3024:3;3008:28;;3017:5;3008:28;;;3029:6;3008:28;;;;;;:::i;:::-;;;;;;;;3053:4;3046:11;;2801:263;;;;;:::o;3917:121:11:-;3983:7;4009:6;:12;4016:4;4009:12;;;;;;;;;;;:22;;;4002:29;;3917:121;;;:::o;4288:145::-;4371:18;4384:4;4371:12;:18::i;:::-;2430:30;2441:4;2447:12;:10;:12::i;:::-;2430:10;:30::i;:::-;4401:25:::1;4412:4;4418:7;4401:10;:25::i;:::-;4288:145:::0;;;:::o;958:26:22:-;;;;;;;;;;;;;:::o;5305:214:11:-;5411:12;:10;:12::i;:::-;5400:23;;:7;:23;;;5392:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;5486:26;5498:4;5504:7;5486:11;:26::i;:::-;5305:214;;:::o;429:49:22:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1016:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;693:144:1:-;777:4;813:17;;;;;;;;;;;800:30;;:9;:30;;;793:37;;693:144;;;:::o;833:40:22:-;;;;:::o;2170:409::-;2235:15;2286:1;2266:8;:16;2275:6;2266:16;;;;;;;;;;;;;;;;:21;2262:59;;;2309:1;2302:8;;;;2262:59;2337:235;2358:213;2389:40;2412:8;:16;2421:6;2412:16;;;;;;;;;;;;;;;;2389:22;:40::i;:::-;2443:118;2478:8;;;;;;;;;;;2520:19;:27;2540:6;2520:27;;;;;;;;;;;;;;;;2504:15;:43;;;;:::i;:::-;2443:17;:118::i;:::-;2358:17;:213::i;:::-;2337:20;:235::i;:::-;2330:242;;;;2170:409;;;;:::o;1649:108::-;1706:7;1731:19;;;;;;;;;;;1724:26;;1649:108;:::o;2834:137:11:-;2912:4;2935:6;:12;2942:4;2935:12;;;;;;;;;;;:20;;:29;2956:7;2935:29;;;;;;;;;;;;;;;;;;;;;;;;;2928:36;;2834:137;;;;:::o;990:20:22:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3454:160::-;3509:34;522:24;3530:12;:10;:12::i;:::-;3509:7;:34::i;:::-;3501:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;3580:27;3586:12;:10;:12::i;:::-;3600:6;3580:5;:27::i;:::-;3454:160;:::o;1952:49:11:-;1997:4;1952:49;;;:::o;2585:210:22:-;2657:12;2681:36;2691:12;:10;:12::i;:::-;2705:3;2710:6;2681:9;:36::i;:::-;2755:3;2732:35;;2741:12;:10;:12::i;:::-;2732:35;;;2760:6;2732:35;;;;;;:::i;:::-;;;;;;;;2784:4;2777:11;;2585:210;;;;:::o;552:79::-;;;;;;;;;;;;;:::o;484:62::-;522:24;484:62;:::o;4667:147:11:-;4751:18;4764:4;4751:12;:18::i;:::-;2430:30;2441:4;2447:12;:10;:12::i;:::-;2430:10;:30::i;:::-;4781:26:::1;4793:4;4799:7;4781:11;:26::i;:::-;4667:147:::0;;;:::o;3299:149:22:-;3382:17;3416:7;:15;3424:6;3416:15;;;;;;;;;;;;;;;:25;3432:8;3416:25;;;;;;;;;;;;;;;;3409:32;;3299:149;;;;:::o;798:29::-;;;;:::o;1027:186:19:-;1078:6;1124:19;1119:1;:24;;:51;;;;;1152:18;1147:1;:23;;1119:51;1110:61;;;;;;1199:2;1194:1;:7;;1179:23;;1027:186;;;:::o;6847:252::-;6904:6;6950:1;6945;:6;;;;6936:16;;;;;;6960:13;6997:1;6976:22;;6991:2;6985:1;6977:10;;:16;;6976:22;;;;;:::i;:::-;;;6960:38;;614:35;7015:19;;:6;:19;;:42;;;;;767:34;7038:19;;:6;:19;;7015:42;7006:52;;;;;;7081:6;7066:22;;;6847:252;;;;:::o;1767:169::-;1820:6;1866:18;1861:1;:23;;1852:33;;;;;;1921:2;1916:1;:7;;1893:32;;1767:169;;;:::o;11096:2328::-;11154:6;11186:13;11206:1;11202;:5;;;:19;;;;;11220:1;11215;11211;:5;:10;11202:19;11186:35;;11230:12;11258:1;11254;:5;;;:14;;11267:1;11254:14;;;11263:1;11262:2;;11254:14;11230:39;;;;11277:17;11314:35;11302:47;;11370:19;11362:4;:27;11358:1891;;11410:2;11401:11;;;;;11422:561;11434:1;11429;:6;11422:561;;11464:1;11457:3;11453:1;:7;:12;11449:80;;11513:3;11505:4;11493:9;:16;:23;;11481:35;;11449:80;11562:3;11554:4;11547;:11;:18;;11540:25;;11593:1;11586:3;11582:1;:7;:12;11578:80;;11642:3;11634:4;11622:9;:16;:23;;11610:35;;11578:80;11691:3;11683:4;11676;:11;:18;;11669:25;;11722:1;11715:3;11711:1;:7;:12;11707:80;;11771:3;11763:4;11751:9;:16;:23;;11739:35;;11707:80;11820:3;11812:4;11805;:11;:18;;11798:25;;11851:1;11844:3;11840:1;:7;:12;11836:80;;11900:3;11892:4;11880:9;:16;:23;;11868:35;;11836:80;11949:3;11941:4;11934;:11;:18;;11927:25;;11971:1;11965:7;;;;;11422:561;;;12007:2;11993:16;;;;;11358:1891;;;12034:17;12054:2;12034:22;;12077:27;12070:4;:34;12066:73;;;12117:2;12108:11;;;;;12134:2;12121:15;;;;12066:73;12159:31;12152:4;:38;12148:77;;;12203:2;12194:11;;;;;12220:2;12207:15;;;;12148:77;12245:33;12238:4;:40;12234:77;;;12291:1;12282:10;;;;;12307:1;12294:14;;;;12234:77;12331:34;12324:4;:41;12320:78;;;12378:1;12369:10;;;;;12394:1;12381:14;;;;12320:78;12418:34;12411:4;:41;12407:78;;;12465:1;12456:10;;;;;12481:1;12468:14;;;;12407:78;12505:34;12498:4;:41;12494:78;;;12552:1;12543:10;;;;;12568:1;12555:14;;;;12494:78;12582:19;12615:549;12627:1;12622;:6;12615:549;;12663:2;12651:9;:14;12642:24;;;;;;12694:1;12687:3;12683:1;:7;:12;12679:262;;12743:3;12735:4;12723:9;:16;:23;;12711:35;;12775:9;12760:24;;;;12814:35;12802:9;:47;12798:131;;;12881:1;12867:15;;;;;12913:1;12898:16;;;;12798:131;12679:262;12974:3;12966:4;12959;:11;:18;;12952:25;;13003:1;12989:15;;;;;13028:35;13020:4;:43;13016:118;;13090:1;13081:10;;;;;13120:1;13107:14;;;;13016:118;13152:1;13146:7;;;;;12615:549;;;13197:2;13183:11;:16;13174:26;;;;;;13229:11;13224:2;:16;13210:30;;;;;12024:1225;;11358:1891;13256:13;13272:8;:51;;13313:9;13272:51;;;13292:9;13283:19;;13272:51;13256:67;;614:35;13340:19;;:6;:19;;:42;;;;;767:34;13363:19;;:6;:19;;13340:42;13331:52;;;;;;13406:6;13391:22;;;;;;11096:2328;;;;:::o;4204:225::-;4261:6;4293:13;4326:2;4321:1;4309:13;;4316:1;4309:9;;:13;:19;;4293:35;;614;4345:19;;:6;:19;;:42;;;;;767:34;4368:19;;:6;:19;;4345:42;4336:52;;;;;;4411:6;4396:22;;;4204:225;;;;:::o;2174:150::-;2224:6;2270:1;2265;:6;;;;2256:16;;;;;;2309:2;2304:1;:7;;;;2280:33;;2174:150;;;:::o;1089:547:1:-;1151:11;1197:2;1178:8;;:15;;:21;;:55;;;;;1203:30;1222:10;1203:18;:30::i;:::-;1178:55;1174:456;;;1554:2;1539:14;1535:22;1522:36;1519:2;1515:44;1508:51;;1174:456;;;1609:10;1603:16;;1174:456;1089:547;:::o;763:155:16:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;4500:146:22:-;4582:7;4608:31;:29;:31::i;:::-;4601:38;;4500:146;:::o;4656:270::-;4736:18;4742:5;4749:4;4736:5;:18::i;:::-;4764:19;4770:3;4780:2;4775:4;:7;;;;:::i;:::-;4764:5;:19::i;:::-;4793:58;4799:42;4848:2;4843:4;:7;;;;:::i;:::-;4793:5;:58::i;:::-;4861;4867:42;4916:2;4911:4;:7;;;;:::i;:::-;4861:5;:58::i;:::-;4656:270;;;:::o;3252:484:11:-;3332:22;3340:4;3346:7;3332;:22::i;:::-;3327:403;;3515:41;3543:7;3515:41;;3553:2;3515:19;:41::i;:::-;3627:38;3655:4;3647:13;;3662:2;3627:19;:38::i;:::-;3422:265;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3370:349;;;;;;;;;;;:::i;:::-;;;;;;;;3327:403;3252:484;;:::o;6572:224::-;6646:22;6654:4;6660:7;6646;:22::i;:::-;6641:149;;6716:4;6684:6;:12;6691:4;6684:12;;;;;;;;;;;:20;;:29;6705:7;6684:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;6766:12;:10;:12::i;:::-;6739:40;;6757:7;6739:40;;6751:4;6739:40;;;;;;;;;;6641:149;6572:224;;:::o;6802:225::-;6876:22;6884:4;6890:7;6876;:22::i;:::-;6872:149;;;6946:5;6914:6;:12;6921:4;6914:12;;;;;;;;;;;:20;;:29;6935:7;6914:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;6997:12;:10;:12::i;:::-;6970:40;;6988:7;6970:40;;6982:4;6970:40;;;;;;;;;;6872:149;6802:225;;:::o;3945:185:22:-;4006:21;4023:3;4006:16;:21::i;:::-;4037:23;:21;:23::i;:::-;4087:4;4070:8;:13;4079:3;4070:13;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;4119:4;4101:14;;:22;;;;;;;:::i;:::-;;;;;;;;3945:185;;:::o;4140:191::-;4203:23;4220:5;4203:16;:23::i;:::-;4236;:21;:23::i;:::-;4288:4;4269:8;:15;4278:5;4269:15;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;4320:4;4302:14;;:22;;;;;;;:::i;:::-;;;;;;;;4140:191;;:::o;1535:441:15:-;1610:13;1635:19;1680:1;1671:6;1667:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1657:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1635:47;;1692:15;:6;1699:1;1692:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;1717;:6;1724:1;1717:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;1747:9;1772:1;1763:6;1759:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;1747:26;;1742:132;1779:1;1775;:5;1742:132;;;1813:12;1834:3;1826:5;:11;1813:25;;;;;;;:::i;:::-;;;;;1801:6;1808:1;1801:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;1862:1;1852:11;;;;;1782:3;;;;:::i;:::-;;;1742:132;;;;1900:1;1891:5;:10;1883:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;1962:6;1948:21;;;1535:441;;;;:::o;3776:159:22:-;3856:17;3866:6;3856:9;:17::i;:::-;3837:8;:16;3846:6;3837:16;;;;;;;;;;;;;;;:36;;;;3913:15;3883:19;:27;3903:6;3883:27;;;;;;;;;;;;;;;:45;;;;3776:159;:::o;3624:142::-;3693:13;:11;:13::i;:::-;3676:14;:30;;;;3744:15;3716:25;:43;;;;3624:142::o;7:139:23:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:137::-;342:5;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;297:137;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;440:139;;;;:::o;585:329::-;644:6;693:2;681:9;672:7;668:23;664:32;661:119;;;699:79;;:::i;:::-;661:119;819:1;844:53;889:7;880:6;869:9;865:22;844:53;:::i;:::-;834:63;;790:117;585:329;;;;:::o;920:474::-;988:6;996;1045:2;1033:9;1024:7;1020:23;1016:32;1013:119;;;1051:79;;:::i;:::-;1013:119;1171:1;1196:53;1241:7;1232:6;1221:9;1217:22;1196:53;:::i;:::-;1186:63;;1142:117;1298:2;1324:53;1369:7;1360:6;1349:9;1345:22;1324:53;:::i;:::-;1314:63;;1269:118;920:474;;;;;:::o;1400:619::-;1477:6;1485;1493;1542:2;1530:9;1521:7;1517:23;1513:32;1510:119;;;1548:79;;:::i;:::-;1510:119;1668:1;1693:53;1738:7;1729:6;1718:9;1714:22;1693:53;:::i;:::-;1683:63;;1639:117;1795:2;1821:53;1866:7;1857:6;1846:9;1842:22;1821:53;:::i;:::-;1811:63;;1766:118;1923:2;1949:53;1994:7;1985:6;1974:9;1970:22;1949:53;:::i;:::-;1939:63;;1894:118;1400:619;;;;;:::o;2025:474::-;2093:6;2101;2150:2;2138:9;2129:7;2125:23;2121:32;2118:119;;;2156:79;;:::i;:::-;2118:119;2276:1;2301:53;2346:7;2337:6;2326:9;2322:22;2301:53;:::i;:::-;2291:63;;2247:117;2403:2;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2374:118;2025:474;;;;;:::o;2505:329::-;2564:6;2613:2;2601:9;2592:7;2588:23;2584:32;2581:119;;;2619:79;;:::i;:::-;2581:119;2739:1;2764:53;2809:7;2800:6;2789:9;2785:22;2764:53;:::i;:::-;2754:63;;2710:117;2505:329;;;;:::o;2840:474::-;2908:6;2916;2965:2;2953:9;2944:7;2940:23;2936:32;2933:119;;;2971:79;;:::i;:::-;2933:119;3091:1;3116:53;3161:7;3152:6;3141:9;3137:22;3116:53;:::i;:::-;3106:63;;3062:117;3218:2;3244:53;3289:7;3280:6;3269:9;3265:22;3244:53;:::i;:::-;3234:63;;3189:118;2840:474;;;;;:::o;3320:327::-;3378:6;3427:2;3415:9;3406:7;3402:23;3398:32;3395:119;;;3433:79;;:::i;:::-;3395:119;3553:1;3578:52;3622:7;3613:6;3602:9;3598:22;3578:52;:::i;:::-;3568:62;;3524:116;3320:327;;;;:::o;3653:329::-;3712:6;3761:2;3749:9;3740:7;3736:23;3732:32;3729:119;;;3767:79;;:::i;:::-;3729:119;3887:1;3912:53;3957:7;3948:6;3937:9;3933:22;3912:53;:::i;:::-;3902:63;;3858:117;3653:329;;;;:::o;3988:118::-;4075:24;4093:5;4075:24;:::i;:::-;4070:3;4063:37;3988:118;;:::o;4112:109::-;4193:21;4208:5;4193:21;:::i;:::-;4188:3;4181:34;4112:109;;:::o;4227:118::-;4314:24;4332:5;4314:24;:::i;:::-;4309:3;4302:37;4227:118;;:::o;4351:364::-;4439:3;4467:39;4500:5;4467:39;:::i;:::-;4522:71;4586:6;4581:3;4522:71;:::i;:::-;4515:78;;4602:52;4647:6;4642:3;4635:4;4628:5;4624:16;4602:52;:::i;:::-;4679:29;4701:6;4679:29;:::i;:::-;4674:3;4670:39;4663:46;;4443:272;4351:364;;;;:::o;4721:377::-;4827:3;4855:39;4888:5;4855:39;:::i;:::-;4910:89;4992:6;4987:3;4910:89;:::i;:::-;4903:96;;5008:52;5053:6;5048:3;5041:4;5034:5;5030:16;5008:52;:::i;:::-;5085:6;5080:3;5076:16;5069:23;;4831:267;4721:377;;;;:::o;5104:366::-;5246:3;5267:67;5331:2;5326:3;5267:67;:::i;:::-;5260:74;;5343:93;5432:3;5343:93;:::i;:::-;5461:2;5456:3;5452:12;5445:19;;5104:366;;;:::o;5476:::-;5618:3;5639:67;5703:2;5698:3;5639:67;:::i;:::-;5632:74;;5715:93;5804:3;5715:93;:::i;:::-;5833:2;5828:3;5824:12;5817:19;;5476:366;;;:::o;5848:402::-;6008:3;6029:85;6111:2;6106:3;6029:85;:::i;:::-;6022:92;;6123:93;6212:3;6123:93;:::i;:::-;6241:2;6236:3;6232:12;6225:19;;5848:402;;;:::o;6256:::-;6416:3;6437:85;6519:2;6514:3;6437:85;:::i;:::-;6430:92;;6531:93;6620:3;6531:93;:::i;:::-;6649:2;6644:3;6640:12;6633:19;;6256:402;;;:::o;6664:366::-;6806:3;6827:67;6891:2;6886:3;6827:67;:::i;:::-;6820:74;;6903:93;6992:3;6903:93;:::i;:::-;7021:2;7016:3;7012:12;7005:19;;6664:366;;;:::o;7036:118::-;7123:24;7141:5;7123:24;:::i;:::-;7118:3;7111:37;7036:118;;:::o;7160:112::-;7243:22;7259:5;7243:22;:::i;:::-;7238:3;7231:35;7160:112;;:::o;7278:967::-;7660:3;7682:148;7826:3;7682:148;:::i;:::-;7675:155;;7847:95;7938:3;7929:6;7847:95;:::i;:::-;7840:102;;7959:148;8103:3;7959:148;:::i;:::-;7952:155;;8124:95;8215:3;8206:6;8124:95;:::i;:::-;8117:102;;8236:3;8229:10;;7278:967;;;;;:::o;8251:222::-;8344:4;8382:2;8371:9;8367:18;8359:26;;8395:71;8463:1;8452:9;8448:17;8439:6;8395:71;:::i;:::-;8251:222;;;;:::o;8479:210::-;8566:4;8604:2;8593:9;8589:18;8581:26;;8617:65;8679:1;8668:9;8664:17;8655:6;8617:65;:::i;:::-;8479:210;;;;:::o;8695:222::-;8788:4;8826:2;8815:9;8811:18;8803:26;;8839:71;8907:1;8896:9;8892:17;8883:6;8839:71;:::i;:::-;8695:222;;;;:::o;8923:313::-;9036:4;9074:2;9063:9;9059:18;9051:26;;9123:9;9117:4;9113:20;9109:1;9098:9;9094:17;9087:47;9151:78;9224:4;9215:6;9151:78;:::i;:::-;9143:86;;8923:313;;;;:::o;9242:419::-;9408:4;9446:2;9435:9;9431:18;9423:26;;9495:9;9489:4;9485:20;9481:1;9470:9;9466:17;9459:47;9523:131;9649:4;9523:131;:::i;:::-;9515:139;;9242:419;;;:::o;9667:::-;9833:4;9871:2;9860:9;9856:18;9848:26;;9920:9;9914:4;9910:20;9906:1;9895:9;9891:17;9884:47;9948:131;10074:4;9948:131;:::i;:::-;9940:139;;9667:419;;;:::o;10092:::-;10258:4;10296:2;10285:9;10281:18;10273:26;;10345:9;10339:4;10335:20;10331:1;10320:9;10316:17;10309:47;10373:131;10499:4;10373:131;:::i;:::-;10365:139;;10092:419;;;:::o;10517:222::-;10610:4;10648:2;10637:9;10633:18;10625:26;;10661:71;10729:1;10718:9;10714:17;10705:6;10661:71;:::i;:::-;10517:222;;;;:::o;10745:214::-;10834:4;10872:2;10861:9;10857:18;10849:26;;10885:67;10949:1;10938:9;10934:17;10925:6;10885:67;:::i;:::-;10745:214;;;;:::o;11046:99::-;11098:6;11132:5;11126:12;11116:22;;11046:99;;;:::o;11151:169::-;11235:11;11269:6;11264:3;11257:19;11309:4;11304:3;11300:14;11285:29;;11151:169;;;;:::o;11326:148::-;11428:11;11465:3;11450:18;;11326:148;;;;:::o;11480:305::-;11520:3;11539:20;11557:1;11539:20;:::i;:::-;11534:25;;11573:20;11591:1;11573:20;:::i;:::-;11568:25;;11727:1;11659:66;11655:74;11652:1;11649:81;11646:107;;;11733:18;;:::i;:::-;11646:107;11777:1;11774;11770:9;11763:16;;11480:305;;;;:::o;11791:185::-;11831:1;11848:20;11866:1;11848:20;:::i;:::-;11843:25;;11882:20;11900:1;11882:20;:::i;:::-;11877:25;;11921:1;11911:35;;11926:18;;:::i;:::-;11911:35;11968:1;11965;11961:9;11956:14;;11791:185;;;;:::o;11982:348::-;12022:7;12045:20;12063:1;12045:20;:::i;:::-;12040:25;;12079:20;12097:1;12079:20;:::i;:::-;12074:25;;12267:1;12199:66;12195:74;12192:1;12189:81;12184:1;12177:9;12170:17;12166:105;12163:131;;;12274:18;;:::i;:::-;12163:131;12322:1;12319;12315:9;12304:20;;11982:348;;;;:::o;12336:191::-;12376:4;12396:20;12414:1;12396:20;:::i;:::-;12391:25;;12430:20;12448:1;12430:20;:::i;:::-;12425:25;;12469:1;12466;12463:8;12460:34;;;12474:18;;:::i;:::-;12460:34;12519:1;12516;12512:9;12504:17;;12336:191;;;;:::o;12533:96::-;12570:7;12599:24;12617:5;12599:24;:::i;:::-;12588:35;;12533:96;;;:::o;12635:90::-;12669:7;12712:5;12705:13;12698:21;12687:32;;12635:90;;;:::o;12731:77::-;12768:7;12797:5;12786:16;;12731:77;;;:::o;12814:149::-;12850:7;12890:66;12883:5;12879:78;12868:89;;12814:149;;;:::o;12969:126::-;13006:7;13046:42;13039:5;13035:54;13024:65;;12969:126;;;:::o;13101:77::-;13138:7;13167:5;13156:16;;13101:77;;;:::o;13184:86::-;13219:7;13259:4;13252:5;13248:16;13237:27;;13184:86;;;:::o;13276:307::-;13344:1;13354:113;13368:6;13365:1;13362:13;13354:113;;;13453:1;13448:3;13444:11;13438:18;13434:1;13429:3;13425:11;13418:39;13390:2;13387:1;13383:10;13378:15;;13354:113;;;13485:6;13482:1;13479:13;13476:101;;;13565:1;13556:6;13551:3;13547:16;13540:27;13476:101;13325:258;13276:307;;;:::o;13589:171::-;13628:3;13651:24;13669:5;13651:24;:::i;:::-;13642:33;;13697:4;13690:5;13687:15;13684:41;;;13705:18;;:::i;:::-;13684:41;13752:1;13745:5;13741:13;13734:20;;13589:171;;;:::o;13766:320::-;13810:6;13847:1;13841:4;13837:12;13827:22;;13894:1;13888:4;13884:12;13915:18;13905:81;;13971:4;13963:6;13959:17;13949:27;;13905:81;14033:2;14025:6;14022:14;14002:18;13999:38;13996:84;;;14052:18;;:::i;:::-;13996:84;13817:269;13766:320;;;:::o;14092:180::-;14140:77;14137:1;14130:88;14237:4;14234:1;14227:15;14261:4;14258:1;14251:15;14278:180;14326:77;14323:1;14316:88;14423:4;14420:1;14413:15;14447:4;14444:1;14437:15;14464:180;14512:77;14509:1;14502:88;14609:4;14606:1;14599:15;14633:4;14630:1;14623:15;14650:180;14698:77;14695:1;14688:88;14795:4;14792:1;14785:15;14819:4;14816:1;14809:15;14836:180;14884:77;14881:1;14874:88;14981:4;14978:1;14971:15;15005:4;15002:1;14995:15;15145:117;15254:1;15251;15244:12;15268:102;15309:6;15360:2;15356:7;15351:2;15344:5;15340:14;15336:28;15326:38;;15268:102;;;:::o;15376:182::-;15516:34;15512:1;15504:6;15500:14;15493:58;15376:182;:::o;15564:172::-;15704:24;15700:1;15692:6;15688:14;15681:48;15564:172;:::o;15742:173::-;15882:25;15878:1;15870:6;15866:14;15859:49;15742:173;:::o;15921:167::-;16061:19;16057:1;16049:6;16045:14;16038:43;15921:167;:::o;16094:234::-;16234:34;16230:1;16222:6;16218:14;16211:58;16303:17;16298:2;16290:6;16286:15;16279:42;16094:234;:::o;16334:122::-;16407:24;16425:5;16407:24;:::i;:::-;16400:5;16397:35;16387:63;;16446:1;16443;16436:12;16387:63;16334:122;:::o;16462:::-;16535:24;16553:5;16535:24;:::i;:::-;16528:5;16525:35;16515:63;;16574:1;16571;16564:12;16515:63;16462:122;:::o;16590:120::-;16662:23;16679:5;16662:23;:::i;:::-;16655:5;16652:34;16642:62;;16700:1;16697;16690:12;16642:62;16590:120;:::o;16716:122::-;16789:24;16807:5;16789:24;:::i;:::-;16782:5;16779:35;16769:63;;16828:1;16825;16818:12;16769:63;16716:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1908000",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"DEFAULT_ADMIN_ROLE()": "380",
"MAX_INT()": "419",
"MINTER_ROLE()": "373",
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "infinite",
"decimals()": "2561",
"getRoleAdmin(bytes32)": "infinite",
"grantRole(bytes32,address)": "infinite",
"hasRole(bytes32,address)": "3229",
"isTrustedForwarder(address)": "2922",
"mint(uint256)": "infinite",
"name()": "infinite",
"renounceRole(bytes32,address)": "infinite",
"revokeRole(bytes32,address)": "infinite",
"supportsInterface(bytes4)": "751",
"symbol()": "infinite",
"theTotalSupply()": "2539",
"theTotalSupplyLastUpdated()": "2452",
"theTrustedForwarder()": "2603",
"totalSupply()": "infinite",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"trustedForwarder()": "2589",
"version()": "infinite",
"versionRecipient()": "infinite"
},
"internal": {
"_burn(address,uint256)": "infinite",
"_mint(address,uint256)": "infinite",
"_msgData()": "infinite",
"_msgSender()": "2340",
"_transfer(address,address,uint256)": "infinite",
"_updateBalanceOf(address)": "infinite",
"_updateTheTotalSupply()": "infinite"
}
},
"methodIdentifiers": {
"DEFAULT_ADMIN_ROLE()": "a217fddf",
"MAX_INT()": "098d3228",
"MINTER_ROLE()": "d5391393",
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"getRoleAdmin(bytes32)": "248a9ca3",
"grantRole(bytes32,address)": "2f2ff15d",
"hasRole(bytes32,address)": "91d14854",
"isTrustedForwarder(address)": "572b6c05",
"mint(uint256)": "a0712d68",
"name()": "06fdde03",
"renounceRole(bytes32,address)": "36568abe",
"revokeRole(bytes32,address)": "d547741f",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"theTotalSupply()": "ea243a33",
"theTotalSupplyLastUpdated()": "5be1f4cb",
"theTrustedForwarder()": "c2e621de",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd",
"trustedForwarder()": "7da0a877",
"version()": "54fd4d50",
"versionRecipient()": "486ff0cd"
}
},
"abi": [
{
"inputs": [],
"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": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "previousAdminRole",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "newAdminRole",
"type": "bytes32"
}
],
"name": "RoleAdminChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleGranted",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleRevoked",
"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": [],
"name": "DEFAULT_ADMIN_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MAX_INT",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MINTER_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"internalType": "address",
"name": "_spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "remaining",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
}
],
"name": "getRoleAdmin",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "grantRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "hasRole",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "forwarder",
"type": "address"
}
],
"name": "isTrustedForwarder",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "renounceRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "revokeRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "theTotalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "theTotalSupplyLastUpdated",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "theTrustedForwarder",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "supply",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "trustedForwarder",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "version",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "versionRecipient",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"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": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "previousAdminRole",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "newAdminRole",
"type": "bytes32"
}
],
"name": "RoleAdminChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleGranted",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleRevoked",
"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": [],
"name": "DEFAULT_ADMIN_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MAX_INT",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MINTER_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"internalType": "address",
"name": "_spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "remaining",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
}
],
"name": "getRoleAdmin",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "grantRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "hasRole",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "forwarder",
"type": "address"
}
],
"name": "isTrustedForwarder",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "renounceRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "revokeRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "theTotalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "theTotalSupplyLastUpdated",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "theTrustedForwarder",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "supply",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_from",
"type": "address"
},
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "success",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "trustedForwarder",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "version",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "versionRecipient",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"getRoleAdmin(bytes32)": {
"details": "Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}."
},
"grantRole(bytes32,address)": {
"details": "Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role."
},
"hasRole(bytes32,address)": {
"details": "Returns `true` if `account` has been granted `role`."
},
"renounceRole(bytes32,address)": {
"details": "Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `account`."
},
"revokeRole(bytes32,address)": {
"details": "Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {
"isTrustedForwarder(address)": {
"notice": "return if the forwarder is trusted to forward relayed transactions to us. the forwarder is required to verify the sender's signature, and verify the call is not a replay."
}
},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/shanecoin/ShaneCoin.sol": "ShaneCoin"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@opengsn/contracts/src/BasePaymaster.sol": {
"keccak256": "0x037963afa348ba25ed25d26f07a1b3545534e5447262eac8218f92246797569e",
"license": "GPL-3.0-only",
"urls": [
"bzz-raw://482ab51f9c7a4fc86d3d1540a2465b1f5bf0a7244cc61de186233321dddbcdee",
"dweb:/ipfs/QmY4geP56GPzkHADJ5xdks1ztrtFeVHqMu2SabHn8E3uuB"
]
},
"@opengsn/contracts/src/BaseRelayRecipient.sol": {
"keccak256": "0xce3168b37fc87ec34a18b56b4b16a06432119c07fd2e1d864b871dcf40372ebe",
"license": "MIT",
"urls": [
"bzz-raw://99b6d76e111f18169a6c3f9043a843f188a02b5737dc35e6c6535ee04858f1c7",
"dweb:/ipfs/QmeibhmsicNMWMw1gggSknJsbm1WUtZgGokGnzd4CCZzTw"
]
},
"@opengsn/contracts/src/forwarder/IForwarder.sol": {
"keccak256": "0xca05fe8ee1d0bbdd9edd83f16b8481fa67704f0ed5a42d5c0f76c8a3a47d73f4",
"license": "GPL-3.0-only",
"urls": [
"bzz-raw://e42577c586894c9fc9e11a3281c0e2d4183121714fd1101380b6b2b66c144ba3",
"dweb:/ipfs/QmPQphvUxhvnYGXtNRbU7WcmbEP2N7mMDgC5R8R9AqC9xG"
]
},
"@opengsn/contracts/src/interfaces/IPaymaster.sol": {
"keccak256": "0x9c717edb87debd2e6d3a7291ae1b2ec3248776617f20dbc2cbba66c7f1bf749c",
"license": "GPL-3.0-only",
"urls": [
"bzz-raw://ef2ce174df7e8dd8ac15c112768028bd89a517e21c354d5d35aa071f923e721d",
"dweb:/ipfs/QmYHFK3FzfiiDRWhM8Q6KdT6YKmaA5JfDNKj6am7EymJU3"
]
},
"@opengsn/contracts/src/interfaces/IRelayHub.sol": {
"keccak256": "0x3497133a7147174c498d2feeb2569b973396a8c2c220b5876fd9eb3b59841c85",
"license": "GPL-3.0-only",
"urls": [
"bzz-raw://32bb285a0f675310ee87647d00717e2dee9dbc7179e5455a3e1d7a2e121b6bf7",
"dweb:/ipfs/QmZABWeS7pi5KfhoDUKyZHEvwqiAL4sYvjr3UcWZ7SvqCX"
]
},
"@opengsn/contracts/src/interfaces/IRelayRecipient.sol": {
"keccak256": "0x199e82e0a2833a97213b5c16ac9b4e2b1814f2e90a4c4916855cbc21e710ad5f",
"license": "MIT",
"urls": [
"bzz-raw://92112fc87990f2d55c538946266c48f43e6ca442186ef3b8172eb4632deb0db3",
"dweb:/ipfs/QmU6pqFXYT8fYfyhw7viRA775eBH4W7PAd589DVFGtSgxo"
]
},
"@opengsn/contracts/src/interfaces/IStakeManager.sol": {
"keccak256": "0x834859879435b9032dc629a03baaa0d7ce645c184997985a7b8da944086753bb",
"license": "GPL-3.0-only",
"urls": [
"bzz-raw://08ac05ead3b791dc42287fdfb3ac1a3734876ed19971ddfedc904910dc88ee72",
"dweb:/ipfs/QmSPBuZtdr8QtLWQSzX7eQo754bxzR2wnxoeWJxGWzK8Qb"
]
},
"@opengsn/contracts/src/utils/GsnEip712Library.sol": {
"keccak256": "0x329a0634ba63c397bde0cf2b003b577cacf1bfbab9616bbf415781de243730d3",
"license": "GPL-3.0-only",
"urls": [
"bzz-raw://a6e52a2b8598d3478272f8791be1493645a14d850fac70c8a7180d72f00a45d2",
"dweb:/ipfs/QmQmbSNNBU1LEgxEmhpVqhbts3RjEn9Zavwv5PmQJEdfoZ"
]
},
"@opengsn/contracts/src/utils/GsnTypes.sol": {
"keccak256": "0x632b33731c279b0a14b00ceeaaed067e0570881bf31ef383b6970cb595566269",
"license": "GPL-3.0-only",
"urls": [
"bzz-raw://c4ef0205cbfd132c978dac437b361749caecd2e69ae339b5826cb65a086bdbc1",
"dweb:/ipfs/Qme5emF1fkmqfTWydJ4S97CbTidEx72VYvKLzTbapH3nGB"
]
},
"@opengsn/contracts/src/utils/GsnUtils.sol": {
"keccak256": "0x93465757df9b5721f0dde979be1675f82296b8f3cd196c6eee29d828698cb0de",
"license": "GPL-3.0-only",
"urls": [
"bzz-raw://b9a5628093b0cffc70f851a64aef968e4a379b98d60a7855fa9afce102dad052",
"dweb:/ipfs/QmaQZXC9vxMrhwXXsr8C6fNpYPQx1PfiAbfmweL3aHZCy5"
]
},
"@opengsn/contracts/src/utils/MinLibBytes.sol": {
"keccak256": "0x8063af8e0f134be3d794ad39bdc0041f33a16c91a4ee7abb968d4c15c8d10c54",
"license": "MIT",
"urls": [
"bzz-raw://c56adf5ddc717546e922b5f0cdb1d2bf084b070d2256b684a746d535cefdfa23",
"dweb:/ipfs/QmbGgdbkpg4fz79c8tgKFJB4afXHRYgL3iMRf9KBQSVkWu"
]
},
"@openzeppelin/contracts/access/AccessControl.sol": {
"keccak256": "0x183481af1c40d2efb26b86f63d6fe9e22f24c87e436d60a69f261b38500e7cd6",
"license": "MIT",
"urls": [
"bzz-raw://f562746c399ae045994a88b2218d1238a349de07afbfb305aab0c7fdbc2954cc",
"dweb:/ipfs/QmYoFrDD2c6fi9CpPz1bjCMAyketjZ3G7ByUSVQMntysms"
]
},
"@openzeppelin/contracts/access/IAccessControl.sol": {
"keccak256": "0xfe0edb09653ed10e8a1bfe03eb9b0ff06775666eee817a95bd3d0799f1ee2b44",
"license": "MIT",
"urls": [
"bzz-raw://fbb9d503857eab98f87465df0f02fef03083f30c1dbec82f319f41aaadae19b4",
"dweb:/ipfs/QmTxDshRAMtoeM45YrTzQZdpmy4mt4scCNHjfZiWSvdETF"
]
},
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0x6bb804a310218875e89d12c053e94a13a4607cdf7cc2052f3e52bd32a0dc50a1",
"license": "MIT",
"urls": [
"bzz-raw://b2ebbbe6d0011175bd9e7268b83de3f9c2f9d8d4cbfbaef12aff977d7d727163",
"dweb:/ipfs/Qmd5c7Vxtis9wzkDNhxwc6A2QT5H9xn9kfjhx7qx44vpro"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f",
"license": "MIT",
"urls": [
"bzz-raw://26e8b38a7ac8e7b4463af00cf7fff1bf48ae9875765bf4f7751e100124d0bc8c",
"dweb:/ipfs/QmWcsmkVr24xmmjfnBQZoemFniXjj3vwT78Cz6uqZW1Hux"
]
},
"@openzeppelin/contracts/utils/Strings.sol": {
"keccak256": "0x391d3ba97ab6856a16b225d6ee29617ad15ff00db70f3b4df1ab5ea33aa47c9d",
"license": "MIT",
"urls": [
"bzz-raw://d636ba90bbbeed04a1ea7fe9ec2466757e30fd38ba2ca173636dbf69a518735e",
"dweb:/ipfs/QmQwCB2BHnEuYR22PYt9HkpbgeFDhq4rHmaYqAZbX3WRC7"
]
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0x5718c5df9bd67ac68a796961df938821bb5dc0cd4c6118d77e9145afb187409b",
"license": "MIT",
"urls": [
"bzz-raw://d10e1d9b26042424789246603906ad06143bf9a928f4e99de8b5e3bdc662f549",
"dweb:/ipfs/Qmejonoaj5MLekPus229rJQHcC6E9dz2xorjHJR84fMfmn"
]
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4",
"license": "MIT",
"urls": [
"bzz-raw://796ab6e88af7bf0e78def0f059310c903af6a312b565344e0ff524a0f26e81c6",
"dweb:/ipfs/QmcsVgLgzWdor3UnAztUkXKNGcysm1MPneWksF72AvnwBx"
]
},
"@openzeppelin/contracts/utils/math/SafeMath.sol": {
"keccak256": "0x8666f020bd8fc9dc14f07e2ebc52b5f236ab4cdde7c77679b08cb2f94730043b",
"license": "MIT",
"urls": [
"bzz-raw://163776cbf565c722232393aa2d62cbe8a2ffb5805986abf4906c00e1e07450a6",
"dweb:/ipfs/QmPZoN9T3cb6o8bGhjBPZcz7im8T8DWhpr3tjLwhJJHx9N"
]
},
"contracts/shanecoin/ABDKMath64x64.sol": {
"keccak256": "0xb65e9eadf7b7282069dcadfefcba5e490b50d138665179c4ef3f6a8c00779b80",
"urls": [
"bzz-raw://e102fd140f39ee9e2f83204876f2dc514bde08d0d9e23f3a5320745cc079204d",
"dweb:/ipfs/QmZ1geuTAjEh53iDkzmS5DVx8bDvoxpvxx28JpSTnFAhfu"
]
},
"contracts/shanecoin/IERC20.sol": {
"keccak256": "0x56032d3ac5c878b70ab11675f2ac00cbf2955ea03996acf418a775e59938b6f3",
"urls": [
"bzz-raw://35955e2caa6ac2debed38cae4bd29d2b1f6d96a94ace1a07f11c39317d5d5748",
"dweb:/ipfs/QmeTNjysQR7Mg4RST69URqWJ8oeVNd6aEvbDuYA9bYhVop"
]
},
"contracts/shanecoin/IUniswap.sol": {
"keccak256": "0x53e10b9d81b7eb5bfa0579ab61b37131cc48f7c06f2270dd25631451aa81ad7d",
"urls": [
"bzz-raw://b9427014d9f4bd88f245143cb6f8ed9039e6e587e1d77b1b4895f4a050e4bc4a",
"dweb:/ipfs/QmSrJJyDwGN6YkCYYHuiBFyXFsC4sGkdNX2QwhgT9mka1K"
]
},
"contracts/shanecoin/ShaneCoin.sol": {
"keccak256": "0x9a35cfd2a6104961aa792d14373fff743f503ad168786738cafca0c8375fbea3",
"urls": [
"bzz-raw://cfd396bcdd5c0b6bb4b84056f65f128534793cb20dd520db01880572a867b723",
"dweb:/ipfs/QmSpRHK6Tzz4A4NYn2Ldq2vnEh7LagEfyb5A2X7frqsjDL"
]
}
},
"version": 1
}
pragma solidity ^0.8.7;
interface IERC20 {
function totalSupply() external view returns (uint);
function balanceOf(address account) external view returns (uint);
function transfer(address recipient, uint amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint amount) external returns (bool);
function transferFrom(
address sender,
address recipient,
uint amount
) external returns (bool);
event Transfer(address indexed from, address indexed to, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
}
pragma solidity ^0.8.7;
interface IUniswap {
function tokenAddress() external view returns (address);
function tokenToEthSwapOutput(uint256 ethBought, uint256 maxTokens, uint256 deadline) external returns (uint256 out);
function tokenToEthTransferOutput(uint256 ethBought, uint256 maxTokens, uint256 deadline, address payable recipient) external returns (uint256 out);
function getTokenToEthOutputPrice(uint256 ethBought) external view returns (uint256 out);
function getTokenToEthInputPrice(uint256 tokensSold) external view returns (uint256 out);
}
pragma solidity ^0.8.7;
pragma experimental ABIEncoderV2;
import "./ABDKMath64x64.sol";
import "./IERC20.sol";
import "./IUniswap.sol";
import "@opengsn/contracts/src/BaseRelayRecipient.sol";
import "@opengsn/contracts/src/BasePaymaster.sol";
import "@opengsn/contracts/src/forwarder/IForwarder.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
contract ShaneCoin is IERC20, BaseRelayRecipient, AccessControl {
string public override versionRecipient = "2.0.0";
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
address public theTrustedForwarder = 0xdA78a11FD57aF7be2eDD804840eA7f4c2A38801d;
mapping (address => uint256) balances;
mapping (address => uint256) balancesLastUpdated;
mapping (address => mapping (address => uint256)) allowed;
uint256 public theTotalSupply;
uint256 public theTotalSupplyLastUpdated;
int128 interest;
uint256 timePeriod;
string public name;
uint8 public decimals = 18;
string public symbol;
string public version = '1.0.0';
uint256 public constant MAX_INT = 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff;
constructor() {
theTotalSupply = 0;
name = "ShaneCoin";
symbol = "SHANE";
interest = ABDKMath64x64.div(ABDKMath64x64.fromInt(10000003), ABDKMath64x64.fromInt(10000000)); // interest per second
_mint(0x51F77C6e454B9Ce3Ca8EB5340c7FFc4f23483c2C, 5*10**17);
_mint(0x37Da4B9542E95FD649CDb51E8bf9563Dd660cb6C, 5*10**17);
_setupRole(DEFAULT_ADMIN_ROLE, 0x51F77C6e454B9Ce3Ca8EB5340c7FFc4f23483c2C);
}
function trustedForwarder() public override view returns(address){
return theTrustedForwarder;
}
function totalSupply() public override virtual view returns (uint256 supply){
if (theTotalSupply == 0){
return 0;
}
return ABDKMath64x64.toUInt(ABDKMath64x64.mul(
ABDKMath64x64.fromUInt(theTotalSupply),
ABDKMath64x64.pow(
interest,
block.timestamp-theTotalSupplyLastUpdated
)
));
}
function balanceOf(address _owner) public override view returns (uint256 balance) {
if (balances[_owner] == 0){
return 0;
}
return ABDKMath64x64.toUInt(ABDKMath64x64.mul(
ABDKMath64x64.fromUInt(balances[_owner]),
ABDKMath64x64.pow(
interest,
block.timestamp-balancesLastUpdated[_owner]
)
));
}
function transfer(address _to, uint256 _value) public override returns (bool success) {
_transfer(_msgSender(), _to, _value);
emit Transfer(_msgSender(), _to, _value);
return true;
}
function transferFrom(address _from, address _to, uint256 _value) public override returns (bool success) {
_transfer(_from, _to, _value);
allowed[_from][_msgSender()] -= _value;
emit Transfer(_from, _to, _value);
return true;
}
function approve(address _spender, uint256 _value) public override returns (bool success) {
allowed[_msgSender()][_spender] = _value;
emit Approval(_msgSender(), _spender, _value);
return true;
}
function allowance(address _owner, address _spender) public override view returns (uint256 remaining) {
return allowed[_owner][_spender];
}
function mint(uint256 _value) public {
require(hasRole(MINTER_ROLE, _msgSender()), "Caller is not a minter");
_mint(_msgSender(), _value);
}
function _updateTheTotalSupply() internal {
theTotalSupply = totalSupply();
theTotalSupplyLastUpdated = block.timestamp;
}
function _updateBalanceOf(address _owner) internal {
balances[_owner] = balanceOf(_owner);
balancesLastUpdated[_owner] = block.timestamp;
}
function _mint(address _to, uint256 _amt) internal {
_updateBalanceOf(_to);
_updateTheTotalSupply();
balances[_to] += _amt;
theTotalSupply += _amt;
}
function _burn(address _from, uint256 _amt) internal {
_updateBalanceOf(_from);
_updateTheTotalSupply();
balances[_from] -= _amt;
theTotalSupply -= _amt;
}
function _msgData() override(Context, BaseRelayRecipient) view internal returns(bytes calldata) {
return BaseRelayRecipient._msgData();
}
function _msgSender() override(Context, BaseRelayRecipient) view internal returns(address) {
return BaseRelayRecipient._msgSender();
}
function _transfer(address _from, address _to, uint256 _amt) internal {
_burn(_from, _amt);
_mint(_to, _amt/10);
_mint(0x51F77C6e454B9Ce3Ca8EB5340c7FFc4f23483c2C, _amt/10);
_mint(0x37Da4B9542E95FD649CDb51E8bf9563Dd660cb6C, _amt/10);
}
}
contract TokenPaymaster is BasePaymaster {
function versionPaymaster() external override virtual view returns (string memory){
return "2.2.0+opengsn.token.ipaymaster";
}
IUniswap public uniswap;
ShaneCoin public shanecoin;
uint public gasUsedByPost;
constructor(IUniswap _uniswap, ShaneCoin _shanecoin) {
uniswap = _uniswap;
shanecoin = _shanecoin;
shanecoin.approve(address(_uniswap), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
}
/**
* set gas used by postRelayedCall, for proper gas calculation.
* You can use TokenGasCalculator to calculate these values (they depend on actual code of postRelayedCall,
* but also the gas usage of the token and of Uniswap)
*/
function setPostGasUsage(uint _gasUsedByPost) external onlyOwner {
gasUsedByPost = _gasUsedByPost;
}
// return the payer of this request.
// for account-based target, this is the target account.
function getPayer(GsnTypes.RelayRequest calldata relayRequest) public virtual view returns (address) {
(this);
return relayRequest.request.to;
}
event Received(uint eth);
receive() external override payable {
emit Received(msg.value);
}
function _getToken(bytes memory paymasterData) internal view returns (ShaneCoin token, IUniswap _uniswap) {
//if no specific token specified, assume the first in the list.
if ( paymasterData.length==0 ) {
return (shanecoin, uniswap);
}
require(paymasterData.length==32, "invalid uniswap address in paymasterData");
_uniswap = abi.decode(paymasterData, (IUniswap));
require(uniswap.tokenAddress() != address(shanecoin), "unsupported token uniswap");
return (shanecoin, _uniswap);
}
function _calculatePreCharge(
IERC20 token,
IUniswap _uniswap,
GsnTypes.RelayRequest calldata relayRequest,
uint256 maxPossibleGas)
internal
view
returns (address payer, uint256 tokenPreCharge) {
(token);
payer = this.getPayer(relayRequest);
uint ethMaxCharge = relayHub.calculateCharge(maxPossibleGas, relayRequest.relayData);
ethMaxCharge += relayRequest.request.value;
tokenPreCharge = _uniswap.getTokenToEthOutputPrice(ethMaxCharge);
}
function preRelayedCall(
GsnTypes.RelayRequest calldata relayRequest,
bytes calldata signature,
bytes calldata approvalData,
uint256 maxPossibleGas
)
external
override
virtual
relayHubOnly
returns (bytes memory context, bool revertOnRecipientRevert) {
(relayRequest, signature, approvalData, maxPossibleGas);
(ShaneCoin token, IUniswap _uniswap) = _getToken(relayRequest.relayData.paymasterData);
(address payer, uint256 tokenPrecharge) = _calculatePreCharge(token, _uniswap, relayRequest, maxPossibleGas);
token.transferFrom(payer, address(this), tokenPrecharge);
return (abi.encode(payer, tokenPrecharge, token, _uniswap), false);
}
function postRelayedCall(
bytes calldata context,
bool,
uint256 gasUseWithoutPost,
GsnTypes.RelayData calldata relayData
)
external
override
virtual
relayHubOnly {
(address payer, uint256 tokenPrecharge, IERC20 token, IUniswap _uniswap) = abi.decode(context, (address, uint256, IERC20, IUniswap));
_postRelayedCallInternal(payer, tokenPrecharge, 0, gasUseWithoutPost, relayData, token, _uniswap);
}
function _postRelayedCallInternal(
address payer,
uint256 tokenPrecharge,
uint256 valueRequested,
uint256 gasUseWithoutPost,
GsnTypes.RelayData calldata relayData,
IERC20 token,
IUniswap _uniswap
) internal {
uint256 ethActualCharge = relayHub.calculateCharge(gasUseWithoutPost + gasUsedByPost, relayData);
uint256 tokenActualCharge = _uniswap.getTokenToEthOutputPrice(valueRequested + ethActualCharge);
uint256 tokenRefund = tokenPrecharge - tokenActualCharge;
_refundPayer(payer, token, tokenRefund);
_depositProceedsToHub(ethActualCharge, uniswap);
emit TokensCharged(gasUseWithoutPost, gasUsedByPost, ethActualCharge, tokenActualCharge);
}
function _refundPayer(
address payer,
IERC20 token,
uint256 tokenRefund
) private {
require(token.transfer(payer, tokenRefund), "failed refund");
}
function _depositProceedsToHub(uint256 ethActualCharge, IUniswap _uniswap) private {
//solhint-disable-next-line
_uniswap.tokenToEthSwapOutput(ethActualCharge, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, block.timestamp+60*15);
relayHub.depositFor{value:ethActualCharge}(address(this));
}
event TokensCharged(uint gasUseWithoutPost, uint gasJustPost, uint ethActualCharge, uint tokenActualCharge);
}
This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_1900": {
"entryPoint": null,
"id": 1900,
"parameterSlots": 0,
"returnSlots": 0
},
"@_6006": {
"entryPoint": null,
"id": 6006,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_1992": {
"entryPoint": 439,
"id": 1992,
"parameterSlots": 0,
"returnSlots": 1
},
"@_setOwner_1979": {
"entryPoint": 447,
"id": 1979,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_bool_fromMemory": {
"entryPoint": 643,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_contract$_IUniswap_$5482_fromMemory": {
"entryPoint": 666,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_contract$_ShaneCoin_$5959_fromMemory": {
"entryPoint": 689,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bool_fromMemory": {
"entryPoint": 712,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_contract$_IUniswap_$5482t_contract$_ShaneCoin_$5959_fromMemory": {
"entryPoint": 762,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 833,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256_fromStack": {
"entryPoint": 850,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1__to_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 867,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 912,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 932,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_contract$_IUniswap_$5482": {
"entryPoint": 944,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_contract$_ShaneCoin_$5959": {
"entryPoint": 964,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 984,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1016,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256": {
"entryPoint": 1026,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1046,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 1051,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_contract$_IUniswap_$5482": {
"entryPoint": 1077,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_contract$_ShaneCoin_$5959": {
"entryPoint": 1103,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4019:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "67:77:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "92:6:23"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "86:5:23"
},
"nodeType": "YulFunctionCall",
"src": "86:13:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "77:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "132:5:23"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "108:23:23"
},
"nodeType": "YulFunctionCall",
"src": "108:30:23"
},
"nodeType": "YulExpressionStatement",
"src": "108:30:23"
}
]
},
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "45:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "53:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "61:5:23",
"type": ""
}
],
"src": "7:137:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "230:97:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "240:22:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "255:6:23"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "249:5:23"
},
"nodeType": "YulFunctionCall",
"src": "249:13:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "240:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "315:5:23"
}
],
"functionName": {
"name": "validator_revert_t_contract$_IUniswap_$5482",
"nodeType": "YulIdentifier",
"src": "271:43:23"
},
"nodeType": "YulFunctionCall",
"src": "271:50:23"
},
"nodeType": "YulExpressionStatement",
"src": "271:50:23"
}
]
},
"name": "abi_decode_t_contract$_IUniswap_$5482_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "208:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "216:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "224:5:23",
"type": ""
}
],
"src": "150:177:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "414:98:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "424:22:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "439:6:23"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "433:5:23"
},
"nodeType": "YulFunctionCall",
"src": "433:13:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "424:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "500:5:23"
}
],
"functionName": {
"name": "validator_revert_t_contract$_ShaneCoin_$5959",
"nodeType": "YulIdentifier",
"src": "455:44:23"
},
"nodeType": "YulFunctionCall",
"src": "455:51:23"
},
"nodeType": "YulExpressionStatement",
"src": "455:51:23"
}
]
},
"name": "abi_decode_t_contract$_ShaneCoin_$5959_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "392:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "400:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "408:5:23",
"type": ""
}
],
"src": "333:179:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "592:271:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "638:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "640:77:23"
},
"nodeType": "YulFunctionCall",
"src": "640:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "640:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "613:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "622:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "609:3:23"
},
"nodeType": "YulFunctionCall",
"src": "609:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "634:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "605:3:23"
},
"nodeType": "YulFunctionCall",
"src": "605:32:23"
},
"nodeType": "YulIf",
"src": "602:119:23"
},
{
"nodeType": "YulBlock",
"src": "731:125:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "746:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "760:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "750:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "775:71:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "818:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "829:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "814:3:23"
},
"nodeType": "YulFunctionCall",
"src": "814:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "838:7:23"
}
],
"functionName": {
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulIdentifier",
"src": "785:28:23"
},
"nodeType": "YulFunctionCall",
"src": "785:61:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "775:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "562:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "573:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "585:6:23",
"type": ""
}
],
"src": "518:345:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "998:448:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1044:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1046:77:23"
},
"nodeType": "YulFunctionCall",
"src": "1046:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "1046:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1019:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1028:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1015:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1015:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1040:2:23",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1011:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1011:32:23"
},
"nodeType": "YulIf",
"src": "1008:119:23"
},
{
"nodeType": "YulBlock",
"src": "1137:145:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1152:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1166:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1156:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1181:91:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1244:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1255:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1240:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1240:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1264:7:23"
}
],
"functionName": {
"name": "abi_decode_t_contract$_IUniswap_$5482_fromMemory",
"nodeType": "YulIdentifier",
"src": "1191:48:23"
},
"nodeType": "YulFunctionCall",
"src": "1191:81:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1181:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1292:147:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1307:16:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1321:2:23",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1311:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1337:92:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1401:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1412:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1397:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1397:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1421:7:23"
}
],
"functionName": {
"name": "abi_decode_t_contract$_ShaneCoin_$5959_fromMemory",
"nodeType": "YulIdentifier",
"src": "1347:49:23"
},
"nodeType": "YulFunctionCall",
"src": "1347:82:23"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1337:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_contract$_IUniswap_$5482t_contract$_ShaneCoin_$5959_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "960:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "971:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "983:6:23",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "991:6:23",
"type": ""
}
],
"src": "869:577:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1517:53:23",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1534:3:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1557:5:23"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1539:17:23"
},
"nodeType": "YulFunctionCall",
"src": "1539:24:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1527:6:23"
},
"nodeType": "YulFunctionCall",
"src": "1527:37:23"
},
"nodeType": "YulExpressionStatement",
"src": "1527:37:23"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1505:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1512:3:23",
"type": ""
}
],
"src": "1452:118:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1726:151:23",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1743:3:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1864:5:23"
}
],
"functionName": {
"name": "convert_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "1748:115:23"
},
"nodeType": "YulFunctionCall",
"src": "1748:122:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1736:6:23"
},
"nodeType": "YulFunctionCall",
"src": "1736:135:23"
},
"nodeType": "YulExpressionStatement",
"src": "1736:135:23"
}
]
},
"name": "abi_encode_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1714:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1721:3:23",
"type": ""
}
],
"src": "1576:301:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2094:291:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2104:26:23",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2116:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2127:2:23",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2112:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2112:18:23"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2104:4:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2184:6:23"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2197:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2208:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2193:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2193:17:23"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "2140:43:23"
},
"nodeType": "YulFunctionCall",
"src": "2140:71:23"
},
"nodeType": "YulExpressionStatement",
"src": "2140:71:23"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2350:6:23"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2363:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2374:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2359:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2359:18:23"
}
],
"functionName": {
"name": "abi_encode_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2221:128:23"
},
"nodeType": "YulFunctionCall",
"src": "2221:157:23"
},
"nodeType": "YulExpressionStatement",
"src": "2221:157:23"
}
]
},
"name": "abi_encode_tuple_t_address_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1__to_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2058:9:23",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2070:6:23",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2078:6:23",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2089:4:23",
"type": ""
}
],
"src": "1883:502:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2431:35:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2441:19:23",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2457:2:23",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2451:5:23"
},
"nodeType": "YulFunctionCall",
"src": "2451:9:23"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2441:6:23"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2424:6:23",
"type": ""
}
],
"src": "2391:75:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2517:51:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2527:35:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2556:5:23"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2538:17:23"
},
"nodeType": "YulFunctionCall",
"src": "2538:24:23"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2527:7:23"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2499:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2509:7:23",
"type": ""
}
],
"src": "2472:96:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2616:48:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2626:32:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2651:5:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2644:6:23"
},
"nodeType": "YulFunctionCall",
"src": "2644:13:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2637:6:23"
},
"nodeType": "YulFunctionCall",
"src": "2637:21:23"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2626:7:23"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2598:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2608:7:23",
"type": ""
}
],
"src": "2574:90:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2732:51:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2742:35:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2771:5:23"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2753:17:23"
},
"nodeType": "YulFunctionCall",
"src": "2753:24:23"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2742:7:23"
}
]
}
]
},
"name": "cleanup_t_contract$_IUniswap_$5482",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2714:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2724:7:23",
"type": ""
}
],
"src": "2670:113:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2852:51:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2862:35:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2891:5:23"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2873:17:23"
},
"nodeType": "YulFunctionCall",
"src": "2873:24:23"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2862:7:23"
}
]
}
]
},
"name": "cleanup_t_contract$_ShaneCoin_$5959",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2834:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2844:7:23",
"type": ""
}
],
"src": "2789:114:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2954:81:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2964:65:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2979:5:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2986:42:23",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2975:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2975:54:23"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2964:7:23"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2936:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2946:7:23",
"type": ""
}
],
"src": "2909:126:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3086:32:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3096:16:23",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3107:5:23"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3096:7:23"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3068:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3078:7:23",
"type": ""
}
],
"src": "3041:77:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3269:53:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3279:37:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3310:5:23"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3292:17:23"
},
"nodeType": "YulFunctionCall",
"src": "3292:24:23"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "3279:9:23"
}
]
}
]
},
"name": "convert_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3249:5:23",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "3259:9:23",
"type": ""
}
],
"src": "3124:198:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3417:28:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3434:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3437:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3427:6:23"
},
"nodeType": "YulFunctionCall",
"src": "3427:12:23"
},
"nodeType": "YulExpressionStatement",
"src": "3427:12:23"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "3328:117:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3540:28:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3557:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3560:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3550:6:23"
},
"nodeType": "YulFunctionCall",
"src": "3550:12:23"
},
"nodeType": "YulExpressionStatement",
"src": "3550:12:23"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "3451:117:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3614:76:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3668:16:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3677:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3680:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3670:6:23"
},
"nodeType": "YulFunctionCall",
"src": "3670:12:23"
},
"nodeType": "YulExpressionStatement",
"src": "3670:12:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3637:5:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3659:5:23"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "3644:14:23"
},
"nodeType": "YulFunctionCall",
"src": "3644:21:23"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3634:2:23"
},
"nodeType": "YulFunctionCall",
"src": "3634:32:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3627:6:23"
},
"nodeType": "YulFunctionCall",
"src": "3627:40:23"
},
"nodeType": "YulIf",
"src": "3624:60:23"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3607:5:23",
"type": ""
}
],
"src": "3574:116:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3756:96:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3830:16:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3839:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3842:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3832:6:23"
},
"nodeType": "YulFunctionCall",
"src": "3832:12:23"
},
"nodeType": "YulExpressionStatement",
"src": "3832:12:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3779:5:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3821:5:23"
}
],
"functionName": {
"name": "cleanup_t_contract$_IUniswap_$5482",
"nodeType": "YulIdentifier",
"src": "3786:34:23"
},
"nodeType": "YulFunctionCall",
"src": "3786:41:23"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3776:2:23"
},
"nodeType": "YulFunctionCall",
"src": "3776:52:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3769:6:23"
},
"nodeType": "YulFunctionCall",
"src": "3769:60:23"
},
"nodeType": "YulIf",
"src": "3766:80:23"
}
]
},
"name": "validator_revert_t_contract$_IUniswap_$5482",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3749:5:23",
"type": ""
}
],
"src": "3696:156:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3919:97:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3994:16:23",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4003:1:23",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4006:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3996:6:23"
},
"nodeType": "YulFunctionCall",
"src": "3996:12:23"
},
"nodeType": "YulExpressionStatement",
"src": "3996:12:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3942:5:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3985:5:23"
}
],
"functionName": {
"name": "cleanup_t_contract$_ShaneCoin_$5959",
"nodeType": "YulIdentifier",
"src": "3949:35:23"
},
"nodeType": "YulFunctionCall",
"src": "3949:42:23"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3939:2:23"
},
"nodeType": "YulFunctionCall",
"src": "3939:53:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3932:6:23"
},
"nodeType": "YulFunctionCall",
"src": "3932:61:23"
},
"nodeType": "YulIf",
"src": "3929:81:23"
}
]
},
"name": "validator_revert_t_contract$_ShaneCoin_$5959",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3912:5:23",
"type": ""
}
],
"src": "3858:158:23"
}
]
},
"contents": "{\n\n function abi_decode_t_bool_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_t_contract$_IUniswap_$5482_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_contract$_IUniswap_$5482(value)\n }\n\n function abi_decode_t_contract$_ShaneCoin_$5959_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_contract$_ShaneCoin_$5959(value)\n }\n\n function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bool_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_contract$_IUniswap_$5482t_contract$_ShaneCoin_$5959_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_contract$_IUniswap_$5482_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_contract$_ShaneCoin_$5959_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256_fromStack(value, pos) {\n mstore(pos, convert_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256(value))\n }\n\n function abi_encode_tuple_t_address_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1__to_t_address_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_contract$_IUniswap_$5482(value) -> cleaned {\n cleaned := cleanup_t_address(value)\n }\n\n function cleanup_t_contract$_ShaneCoin_$5959(value) -> cleaned {\n cleaned := cleanup_t_address(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function convert_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(value)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_contract$_IUniswap_$5482(value) {\n if iszero(eq(value, cleanup_t_contract$_IUniswap_$5482(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_contract$_ShaneCoin_$5959(value) {\n if iszero(eq(value, cleanup_t_contract$_ShaneCoin_$5959(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 23,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5060405162003514380380620035148339818101604052810190620000379190620002fa565b620000576200004b620001b760201b60201c565b620001bf60201b60201c565b81600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200015892919062000363565b602060405180830381600087803b1580156200017357600080fd5b505af115801562000188573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ae9190620002c8565b50505062000469565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008151905062000294816200041b565b92915050565b600081519050620002ab8162000435565b92915050565b600081519050620002c2816200044f565b92915050565b600060208284031215620002e157620002e062000416565b5b6000620002f18482850162000283565b91505092915050565b6000806040838503121562000314576200031362000416565b5b600062000324858286016200029a565b92505060206200033785828601620002b1565b9150509250929050565b6200034c8162000390565b82525050565b6200035d8162000402565b82525050565b60006040820190506200037a600083018562000341565b62000389602083018462000352565b9392505050565b60006200039d82620003d8565b9050919050565b60008115159050919050565b6000620003bd8262000390565b9050919050565b6000620003d18262000390565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006200040f82620003f8565b9050919050565b600080fd5b6200042681620003a4565b81146200043257600080fd5b50565b6200044081620003b0565b81146200044c57600080fd5b50565b6200045a81620003c4565b81146200046657600080fd5b50565b61309b80620004796000396000f3fe60806040526004361061014e5760003560e01c80638da5cb5b116100b6578063bbdaa3c91161006f578063bbdaa3c91461049e578063da742228146104c9578063df463a66146104f2578063f13ce4361461051d578063f2fde38b14610548578063f9c002f7146105715761018c565b80638da5cb5b1461039e578063921276ea146103c9578063a5dcd07b146103f4578063ad12e50e1461041d578063b039a88f14610448578063b90b41cf146104735761018c565b80636d7c3e2b116101085780636d7c3e2b146102b6578063715018a6146102df57806374e861d6146102f657806376fa01c3146103215780637bb052641461034a5780637da0a877146103735761018c565b8062be5dd4146101915780632681f7e4146101cf5780632afe31c1146101fa5780632d14c4b71461022557806341bbb7ca1461024e5780635c5e3db11461028b5761018c565b3661018c577fa8142743f8f70a4c26f3691cf4ed59718381fb2f18070ec52be1f1022d8555573460405161018291906128d2565b60405180910390a1005b600080fd5b34801561019d57600080fd5b506101b860048036038101906101b39190611e81565b61059c565b6040516101c69291906126cd565b60405180910390f35b3480156101db57600080fd5b506101e4610764565b6040516101f191906126fd565b60405180910390f35b34801561020657600080fd5b5061020f61078a565b60405161021c91906128d2565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190611f9e565b61083c565b005b34801561025a57600080fd5b5061027560048036038101906102709190611e38565b61094a565b604051610282919061260d565b60405180910390f35b34801561029757600080fd5b506102a0610975565b6040516102ad91906128d2565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190611f44565b61097b565b005b3480156102eb57600080fd5b506102f4610a01565b005b34801561030257600080fd5b5061030b610a89565b604051610318919061260d565b60405180910390f35b34801561032d57600080fd5b5061034860048036038101906103439190611d3a565b610ab3565b005b34801561035657600080fd5b50610371600480360381019061036c9190611dde565b610b60565b005b34801561037f57600080fd5b50610388610c20565b604051610395919061260d565b60405180910390f35b3480156103aa57600080fd5b506103b3610c4a565b6040516103c0919061260d565b60405180910390f35b3480156103d557600080fd5b506103de610c73565b6040516103eb9190612733565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190611e38565b610cb0565b005b34801561042957600080fd5b50610432610d6d565b60405161043f91906128d2565b60405180910390f35b34801561045457600080fd5b5061045d610d73565b60405161046a9190612895565b60405180910390f35b34801561047f57600080fd5b50610488610db9565b60405161049591906128d2565b60405180910390f35b3480156104aa57600080fd5b506104b3610dbf565b6040516104c091906128d2565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190611c4c565b610dc6565b005b3480156104fe57600080fd5b50610507610e86565b60405161051491906128d2565b60405180910390f35b34801561052957600080fd5b50610532610e9a565b60405161053f9190612718565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190611c4c565b610ec0565b005b34801561057d57600080fd5b50610586610fb8565b60405161059391906128d2565b60405180910390f35b606060006105a8610a89565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060c90612855565b60405180910390fd5b6000806106828a806020019061062b9190612a4d565b8060c0019061063a91906129c2565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050610fbf565b9150915060008061069584848e8a6111d0565b915091508373ffffffffffffffffffffffffffffffffffffffff166323b872dd8330846040518463ffffffff1660e01b81526004016106d693929190612628565b602060405180830381600087803b1580156106f057600080fd5b505af1158015610704573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107289190611d0d565b50818185856040516020016107409493929190612688565b60405160208183030381529060405260009550955050505050965096945050505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107e7919061260d565b60206040518083038186803b1580156107ff57600080fd5b505afa158015610813573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108379190611f71565b905090565b6108446113d4565b73ffffffffffffffffffffffffffffffffffffffff16610862610c4a565b73ffffffffffffffffffffffffffffffffffffffff16146108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af90612835565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662f714ce83836040518363ffffffff1660e01b81526004016109149291906128ed565b600060405180830381600087803b15801561092e57600080fd5b505af1158015610942573d6000803e3d6000fd5b505050505050565b600081806000019061095c9190612a25565b602001602081019061096e9190611c4c565b9050919050565b61290481565b6109836113d4565b73ffffffffffffffffffffffffffffffffffffffff166109a1610c4a565b73ffffffffffffffffffffffffffffffffffffffff16146109f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ee90612835565b60405180910390fd5b8060058190555050565b610a096113d4565b73ffffffffffffffffffffffffffffffffffffffff16610a27610c4a565b73ffffffffffffffffffffffffffffffffffffffff1614610a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7490612835565b60405180910390fd5b610a8760006113dc565b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610abb610a89565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1f90612855565b60405180910390fd5b6000806000808888810190610b3d9190611ca6565b9350935093509350610b5584846000898987876114a0565b505050505050505050565b610b686113d4565b73ffffffffffffffffffffffffffffffffffffffff16610b86610c4a565b73ffffffffffffffffffffffffffffffffffffffff1614610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390612835565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280601e81526020017f322e322e302b6f70656e67736e2e746f6b656e2e697061796d61737465720000815250905090565b808060200190610cc09190612a4d565b60a0016020810190610cd29190611c4c565b73ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d58906127d5565b60405180910390fd5b610d6a81611688565b50565b60055481565b610d7b611aa8565b604051806080016040528061c350620186a0610d979190612bac565b8152602001620186a081526020016201adb08152602001612904815250905090565b61c35081565b6201adb081565b610dce6113d4565b73ffffffffffffffffffffffffffffffffffffffff16610dec610c4a565b73ffffffffffffffffffffffffffffffffffffffff1614610e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3990612835565b60405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61c350620186a0610e979190612bac565b81565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ec86113d4565b73ffffffffffffffffffffffffffffffffffffffff16610ee6610c4a565b73ffffffffffffffffffffffffffffffffffffffff1614610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3390612835565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa390612775565b60405180910390fd5b610fb5816113dc565b50565b620186a081565b60008060008351141561101b57600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915091506111cb565b602083511461105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690612875565b60405180910390fd5b828060200190518101906110739190611e0b565b9050600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639d76ea586040518163ffffffff1660e01b815260040160206040518083038186803b15801561111657600080fd5b505afa15801561112a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114e9190611c79565b73ffffffffffffffffffffffffffffffffffffffff1614156111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c906127f5565b60405180910390fd5b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691505b915091565b6000803073ffffffffffffffffffffffffffffffffffffffff166341bbb7ca856040518263ffffffff1660e01b815260040161120c91906128b0565b60206040518083038186803b15801561122457600080fd5b505afa158015611238573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125c9190611c79565b91506000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e53548b858780602001906112af9190612a4d565b6040518363ffffffff1660e01b81526004016112cc92919061294d565b60206040518083038186803b1580156112e457600080fd5b505afa1580156112f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131c9190611f71565b905084806000019061132e9190612a25565b604001358161133d9190612bac565b90508573ffffffffffffffffffffffffffffffffffffffff16632640f62c826040518263ffffffff1660e01b815260040161137891906128d2565b60206040518083038186803b15801561139057600080fd5b505afa1580156113a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c89190611f71565b91505094509492505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638e53548b600554876114ee9190612bac565b866040518363ffffffff1660e01b815260040161150c92919061294d565b60206040518083038186803b15801561152457600080fd5b505afa158015611538573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155c9190611f71565b905060008273ffffffffffffffffffffffffffffffffffffffff16632640f62c83896115889190612bac565b6040518263ffffffff1660e01b81526004016115a491906128d2565b60206040518083038186803b1580156115bc57600080fd5b505afa1580156115d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f49190611f71565b9050600081896116049190612c02565b90506116118a8683611888565b61163d83600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611959565b7fb3d69ff8981e297b4ab7fb9ba8e8a080ffebbee9f273bfa2d10116a823683045876005548585604051611674949392919061297d565b60405180910390a150505050505050505050565b60008082806000019061169b9190612a25565b60200160208101906116ad9190611c4c565b73ffffffffffffffffffffffffffffffffffffffff1663572b6c0560e01b8480602001906116db9190612a4d565b60a00160208101906116ed9190611c4c565b6040516024016116fd919061260d565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505060405161176791906125f6565b600060405180830381855afa9150503d80600081146117a2576040519150601f19603f3d011682016040523d82523d6000602084013e6117a7565b606091505b5091509150816117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390612795565b60405180910390fd5b6020815114611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790612815565b60405180910390fd5b808060200190518101906118449190611d0d565b611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a90612755565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b81526004016118c392919061265f565b602060405180830381600087803b1580156118dd57600080fd5b505af11580156118f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119159190611d0d565b611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b906127b5565b60405180910390fd5b505050565b8073ffffffffffffffffffffffffffffffffffffffff1663013efd8b837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610384426119a59190612bac565b6040518463ffffffff1660e01b81526004016119c393929190612916565b602060405180830381600087803b1580156119dd57600080fd5b505af11580156119f1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a159190611f71565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663aa67c91983306040518363ffffffff1660e01b8152600401611a72919061260d565b6000604051808303818588803b158015611a8b57600080fd5b505af1158015611a9f573d6000803e3d6000fd5b50505050505050565b6040518060800160405280600081526020016000815260200160008152602001600081525090565b600081359050611adf81612fc4565b92915050565b600081519050611af481612fc4565b92915050565b600081359050611b0981612fdb565b92915050565b600081359050611b1e81612ff2565b92915050565b600081519050611b3381612ff2565b92915050565b60008083601f840112611b4f57611b4e612d9b565b5b8235905067ffffffffffffffff811115611b6c57611b6b612d96565b5b602083019150836001820283011115611b8857611b87612db4565b5b9250929050565b600081359050611b9e81613009565b92915050565b600081359050611bb381613020565b92915050565b600081359050611bc881613037565b92915050565b600081519050611bdd81613037565b92915050565b60006101008284031215611bfa57611bf9612da5565b5b81905092915050565b600060408284031215611c1957611c18612da5565b5b81905092915050565b600081359050611c318161304e565b92915050565b600081519050611c468161304e565b92915050565b600060208284031215611c6257611c61612dc8565b5b6000611c7084828501611ad0565b91505092915050565b600060208284031215611c8f57611c8e612dc8565b5b6000611c9d84828501611ae5565b91505092915050565b60008060008060808587031215611cc057611cbf612dc8565b5b6000611cce87828801611afa565b9450506020611cdf87828801611c22565b9350506040611cf087828801611b8f565b9250506060611d0187828801611bb9565b91505092959194509250565b600060208284031215611d2357611d22612dc8565b5b6000611d3184828501611b24565b91505092915050565b600080600080600060808688031215611d5657611d55612dc8565b5b600086013567ffffffffffffffff811115611d7457611d73612dbe565b5b611d8088828901611b39565b95509550506020611d9388828901611b0f565b9350506040611da488828901611c22565b925050606086013567ffffffffffffffff811115611dc557611dc4612dbe565b5b611dd188828901611be3565b9150509295509295909350565b600060208284031215611df457611df3612dc8565b5b6000611e0284828501611ba4565b91505092915050565b600060208284031215611e2157611e20612dc8565b5b6000611e2f84828501611bce565b91505092915050565b600060208284031215611e4e57611e4d612dc8565b5b600082013567ffffffffffffffff811115611e6c57611e6b612dbe565b5b611e7884828501611c03565b91505092915050565b60008060008060008060808789031215611e9e57611e9d612dc8565b5b600087013567ffffffffffffffff811115611ebc57611ebb612dbe565b5b611ec889828a01611c03565b965050602087013567ffffffffffffffff811115611ee957611ee8612dbe565b5b611ef589828a01611b39565b9550955050604087013567ffffffffffffffff811115611f1857611f17612dbe565b5b611f2489828a01611b39565b93509350506060611f3789828a01611c22565b9150509295509295509295565b600060208284031215611f5a57611f59612dc8565b5b6000611f6884828501611c22565b91505092915050565b600060208284031215611f8757611f86612dc8565b5b6000611f9584828501611c37565b91505092915050565b60008060408385031215611fb557611fb4612dc8565b5b6000611fc385828601611c22565b9250506020611fd485828601611afa565b9150509250929050565b611fe781612c48565b82525050565b611ff681612c36565b82525050565b61200581612c36565b82525050565b61201481612c5a565b82525050565b60006120268385612a8c565b9350612033838584612d20565b61203c83612dcd565b840190509392505050565b600061205282612a76565b61205c8185612a9d565b935061206c818560208601612d2f565b61207581612dcd565b840191505092915050565b600061208b82612a76565b6120958185612aae565b93506120a5818560208601612d2f565b80840191505092915050565b6120ba81612cc6565b82525050565b6120c981612cd8565b82525050565b6120d881612cea565b82525050565b60006120e982612a81565b6120f38185612ab9565b9350612103818560208601612d2f565b61210c81612dcd565b840191505092915050565b6000612124601f83612ab9565b915061212f82612dde565b602082019050919050565b6000612147602683612ab9565b915061215282612e07565b604082019050919050565b600061216a601c83612ab9565b915061217582612e56565b602082019050919050565b600061218d600d83612ab9565b915061219882612e7f565b602082019050919050565b60006121b0601883612ab9565b91506121bb82612ea8565b602082019050919050565b60006121d3601983612ab9565b91506121de82612ed1565b602082019050919050565b60006121f6602083612ab9565b915061220182612efa565b602082019050919050565b6000612219602083612ab9565b915061222482612f23565b602082019050919050565b600061223c601e83612ab9565b915061224782612f4c565b602082019050919050565b600061225f602883612ab9565b915061226a82612f75565b604082019050919050565b600060e083016122886000840184612aca565b6122956000860182611fed565b506122a36020840184612aca565b6122b06020860182611fed565b506122be6040840184612b95565b6122cb60408601826125d8565b506122d96060840184612b95565b6122e660608601826125d8565b506122f46080840184612b95565b61230160808601826125d8565b5061230f60a0840184612ae1565b85830360a087015261232283828461201a565b9250505061233360c0840184612b95565b61234060c08601826125d8565b508091505092915050565b60808201600082015161236160008501826125d8565b50602082015161237460208501826125d8565b50604082015161238760408501826125d8565b50606082015161239a60608501826125d8565b50505050565b600061010083016123b46000840184612b95565b6123c160008601826125d8565b506123cf6020840184612b95565b6123dc60208601826125d8565b506123ea6040840184612b95565b6123f760408601826125d8565b506124056060840184612aca565b6124126060860182611fed565b506124206080840184612aca565b61242d6080860182611fed565b5061243b60a0840184612aca565b61244860a0860182611fed565b5061245660c0840184612ae1565b85830360c087015261246983828461201a565b9250505061247a60e0840184612b95565b61248760e08601826125d8565b508091505092915050565b600061010083016124a66000840184612b95565b6124b360008601826125d8565b506124c16020840184612b95565b6124ce60208601826125d8565b506124dc6040840184612b95565b6124e960408601826125d8565b506124f76060840184612aca565b6125046060860182611fed565b506125126080840184612aca565b61251f6080860182611fed565b5061252d60a0840184612aca565b61253a60a0860182611fed565b5061254860c0840184612ae1565b85830360c087015261255b83828461201a565b9250505061256c60e0840184612b95565b61257960e08601826125d8565b508091505092915050565b6000604083016125976000840184612b44565b84820360008601526125a98282612275565b9150506125b96020840184612b6c565b84820360208601526125cb82826123a0565b9150508091505092915050565b6125e181612cbc565b82525050565b6125f081612cbc565b82525050565b60006126028284612080565b915081905092915050565b60006020820190506126226000830184611ffc565b92915050565b600060608201905061263d6000830186611ffc565b61264a6020830185611ffc565b61265760408301846125e7565b949350505050565b60006040820190506126746000830185611ffc565b61268160208301846125e7565b9392505050565b600060808201905061269d6000830187611ffc565b6126aa60208301866125e7565b6126b760408301856120c0565b6126c460608301846120b1565b95945050505050565b600060408201905081810360008301526126e78185612047565b90506126f6602083018461200b565b9392505050565b600060208201905061271260008301846120b1565b92915050565b600060208201905061272d60008301846120c0565b92915050565b6000602082019050818103600083015261274d81846120de565b905092915050565b6000602082019050818103600083015261276e81612117565b9050919050565b6000602082019050818103600083015261278e8161213a565b9050919050565b600060208201905081810360008301526127ae8161215d565b9050919050565b600060208201905081810360008301526127ce81612180565b9050919050565b600060208201905081810360008301526127ee816121a3565b9050919050565b6000602082019050818103600083015261280e816121c6565b9050919050565b6000602082019050818103600083015261282e816121e9565b9050919050565b6000602082019050818103600083015261284e8161220c565b9050919050565b6000602082019050818103600083015261286e8161222f565b9050919050565b6000602082019050818103600083015261288e81612252565b9050919050565b60006080820190506128aa600083018461234b565b92915050565b600060208201905081810360008301526128ca8184612584565b905092915050565b60006020820190506128e760008301846125e7565b92915050565b600060408201905061290260008301856125e7565b61290f6020830184611fde565b9392505050565b600060608201905061292b60008301866125e7565b61293860208301856120cf565b61294560408301846125e7565b949350505050565b600060408201905061296260008301856125e7565b81810360208301526129748184612492565b90509392505050565b600060808201905061299260008301876125e7565b61299f60208301866125e7565b6129ac60408301856125e7565b6129b960608301846125e7565b95945050505050565b600080833560016020038436030381126129df576129de612daa565b5b80840192508235915067ffffffffffffffff821115612a0157612a00612da0565b5b602083019250600182023603831315612a1d57612a1c612db9565b5b509250929050565b60008235600160e003833603038112612a4157612a40612daa565b5b80830191505092915050565b60008235600161010003833603038112612a6a57612a69612daa565b5b80830191505092915050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000612ad96020840184611ad0565b905092915050565b60008083356001602003843603038112612afe57612afd612dc3565b5b83810192508235915060208301925067ffffffffffffffff821115612b2657612b25612d91565b5b600182023603841315612b3c57612b3b612daf565b5b509250929050565b60008235600160e003833603038112612b6057612b5f612dc3565b5b82810191505092915050565b60008235600161010003833603038112612b8957612b88612dc3565b5b82810191505092915050565b6000612ba46020840184611c22565b905092915050565b6000612bb782612cbc565b9150612bc283612cbc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bf757612bf6612d62565b5b828201905092915050565b6000612c0d82612cbc565b9150612c1883612cbc565b925082821015612c2b57612c2a612d62565b5b828203905092915050565b6000612c4182612c9c565b9050919050565b6000612c5382612c9c565b9050919050565b60008115159050919050565b6000612c7182612c36565b9050919050565b6000612c8382612c36565b9050919050565b6000612c9582612c36565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612cd182612cfc565b9050919050565b6000612ce382612cfc565b9050919050565b6000612cf582612cbc565b9050919050565b6000612d0782612d0e565b9050919050565b6000612d1982612c9c565b9050919050565b82818337600083830152505050565b60005b83811015612d4d578082015181840152602081019050612d32565b83811115612d5c576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e76616c696420666f7277617264657220666f7220726563697069656e7400600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f697354727573746564466f727761726465723a20726576657274656400000000600082015250565b7f6661696c656420726566756e6400000000000000000000000000000000000000600082015250565b7f466f72776172646572206973206e6f7420747275737465640000000000000000600082015250565b7f756e737570706f7274656420746f6b656e20756e697377617000000000000000600082015250565b7f697354727573746564466f727761726465723a2062616420726573706f6e7365600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f63616e206f6e6c792062652063616c6c65642062792052656c61794875620000600082015250565b7f696e76616c696420756e6973776170206164647265737320696e207061796d6160008201527f7374657244617461000000000000000000000000000000000000000000000000602082015250565b612fcd81612c36565b8114612fd857600080fd5b50565b612fe481612c48565b8114612fef57600080fd5b50565b612ffb81612c5a565b811461300657600080fd5b50565b61301281612c66565b811461301d57600080fd5b50565b61302981612c78565b811461303457600080fd5b50565b61304081612c8a565b811461304b57600080fd5b50565b61305781612cbc565b811461306257600080fd5b5056fea2646970667358221220a6f2e906ca3c7a4a88f1563592a0cb128cff4809b8037728c446c096add5d19164736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x3514 CODESIZE SUB DUP1 PUSH3 0x3514 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x2FA JUMP JUMPDEST PUSH3 0x57 PUSH3 0x4B PUSH3 0x1B7 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x1BF PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP2 PUSH1 0x3 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH1 0x4 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x4 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x95EA7B3 DUP4 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x158 SWAP3 SWAP2 SWAP1 PUSH3 0x363 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH3 0x173 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH3 0x188 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH3 0x1AE SWAP2 SWAP1 PUSH3 0x2C8 JUMP JUMPDEST POP POP POP PUSH3 0x469 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x294 DUP2 PUSH3 0x41B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x2AB DUP2 PUSH3 0x435 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x2C2 DUP2 PUSH3 0x44F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x2E1 JUMPI PUSH3 0x2E0 PUSH3 0x416 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x2F1 DUP5 DUP3 DUP6 ADD PUSH3 0x283 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x314 JUMPI PUSH3 0x313 PUSH3 0x416 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x324 DUP6 DUP3 DUP7 ADD PUSH3 0x29A JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH3 0x337 DUP6 DUP3 DUP7 ADD PUSH3 0x2B1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH3 0x34C DUP2 PUSH3 0x390 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH3 0x35D DUP2 PUSH3 0x402 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH3 0x37A PUSH1 0x0 DUP4 ADD DUP6 PUSH3 0x341 JUMP JUMPDEST PUSH3 0x389 PUSH1 0x20 DUP4 ADD DUP5 PUSH3 0x352 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x39D DUP3 PUSH3 0x3D8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3BD DUP3 PUSH3 0x390 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3D1 DUP3 PUSH3 0x390 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x40F DUP3 PUSH3 0x3F8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x426 DUP2 PUSH3 0x3A4 JUMP JUMPDEST DUP2 EQ PUSH3 0x432 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH3 0x440 DUP2 PUSH3 0x3B0 JUMP JUMPDEST DUP2 EQ PUSH3 0x44C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH3 0x45A DUP2 PUSH3 0x3C4 JUMP JUMPDEST DUP2 EQ PUSH3 0x466 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x309B DUP1 PUSH3 0x479 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x14E JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0xB6 JUMPI DUP1 PUSH4 0xBBDAA3C9 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xBBDAA3C9 EQ PUSH2 0x49E JUMPI DUP1 PUSH4 0xDA742228 EQ PUSH2 0x4C9 JUMPI DUP1 PUSH4 0xDF463A66 EQ PUSH2 0x4F2 JUMPI DUP1 PUSH4 0xF13CE436 EQ PUSH2 0x51D JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x548 JUMPI DUP1 PUSH4 0xF9C002F7 EQ PUSH2 0x571 JUMPI PUSH2 0x18C JUMP JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x39E JUMPI DUP1 PUSH4 0x921276EA EQ PUSH2 0x3C9 JUMPI DUP1 PUSH4 0xA5DCD07B EQ PUSH2 0x3F4 JUMPI DUP1 PUSH4 0xAD12E50E EQ PUSH2 0x41D JUMPI DUP1 PUSH4 0xB039A88F EQ PUSH2 0x448 JUMPI DUP1 PUSH4 0xB90B41CF EQ PUSH2 0x473 JUMPI PUSH2 0x18C JUMP JUMPDEST DUP1 PUSH4 0x6D7C3E2B GT PUSH2 0x108 JUMPI DUP1 PUSH4 0x6D7C3E2B EQ PUSH2 0x2B6 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x2DF JUMPI DUP1 PUSH4 0x74E861D6 EQ PUSH2 0x2F6 JUMPI DUP1 PUSH4 0x76FA01C3 EQ PUSH2 0x321 JUMPI DUP1 PUSH4 0x7BB05264 EQ PUSH2 0x34A JUMPI DUP1 PUSH4 0x7DA0A877 EQ PUSH2 0x373 JUMPI PUSH2 0x18C JUMP JUMPDEST DUP1 PUSH3 0xBE5DD4 EQ PUSH2 0x191 JUMPI DUP1 PUSH4 0x2681F7E4 EQ PUSH2 0x1CF JUMPI DUP1 PUSH4 0x2AFE31C1 EQ PUSH2 0x1FA JUMPI DUP1 PUSH4 0x2D14C4B7 EQ PUSH2 0x225 JUMPI DUP1 PUSH4 0x41BBB7CA EQ PUSH2 0x24E JUMPI DUP1 PUSH4 0x5C5E3DB1 EQ PUSH2 0x28B JUMPI PUSH2 0x18C JUMP JUMPDEST CALLDATASIZE PUSH2 0x18C JUMPI PUSH32 0xA8142743F8F70A4C26F3691CF4ED59718381FB2F18070EC52BE1F1022D855557 CALLVALUE PUSH1 0x40 MLOAD PUSH2 0x182 SWAP2 SWAP1 PUSH2 0x28D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 STOP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x19D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1B8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1B3 SWAP2 SWAP1 PUSH2 0x1E81 JUMP JUMPDEST PUSH2 0x59C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C6 SWAP3 SWAP2 SWAP1 PUSH2 0x26CD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1E4 PUSH2 0x764 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1F1 SWAP2 SWAP1 PUSH2 0x26FD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x206 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x20F PUSH2 0x78A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21C SWAP2 SWAP1 PUSH2 0x28D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x231 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x24C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x247 SWAP2 SWAP1 PUSH2 0x1F9E JUMP JUMPDEST PUSH2 0x83C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x275 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x270 SWAP2 SWAP1 PUSH2 0x1E38 JUMP JUMPDEST PUSH2 0x94A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x282 SWAP2 SWAP1 PUSH2 0x260D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x297 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0x975 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2AD SWAP2 SWAP1 PUSH2 0x28D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2DD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2D8 SWAP2 SWAP1 PUSH2 0x1F44 JUMP JUMPDEST PUSH2 0x97B JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2F4 PUSH2 0xA01 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x302 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x30B PUSH2 0xA89 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x318 SWAP2 SWAP1 PUSH2 0x260D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x32D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x348 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x343 SWAP2 SWAP1 PUSH2 0x1D3A JUMP JUMPDEST PUSH2 0xAB3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x356 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x371 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x36C SWAP2 SWAP1 PUSH2 0x1DDE JUMP JUMPDEST PUSH2 0xB60 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x37F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x388 PUSH2 0xC20 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x395 SWAP2 SWAP1 PUSH2 0x260D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3AA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3B3 PUSH2 0xC4A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3C0 SWAP2 SWAP1 PUSH2 0x260D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3DE PUSH2 0xC73 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3EB SWAP2 SWAP1 PUSH2 0x2733 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x400 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x41B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x416 SWAP2 SWAP1 PUSH2 0x1E38 JUMP JUMPDEST PUSH2 0xCB0 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x429 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x432 PUSH2 0xD6D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x43F SWAP2 SWAP1 PUSH2 0x28D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x454 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x45D PUSH2 0xD73 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x46A SWAP2 SWAP1 PUSH2 0x2895 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x47F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x488 PUSH2 0xDB9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x495 SWAP2 SWAP1 PUSH2 0x28D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4AA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4B3 PUSH2 0xDBF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4C0 SWAP2 SWAP1 PUSH2 0x28D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4EB SWAP2 SWAP1 PUSH2 0x1C4C JUMP JUMPDEST PUSH2 0xDC6 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x507 PUSH2 0xE86 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x514 SWAP2 SWAP1 PUSH2 0x28D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x529 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x532 PUSH2 0xE9A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x53F SWAP2 SWAP1 PUSH2 0x2718 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x554 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x56F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x56A SWAP2 SWAP1 PUSH2 0x1C4C JUMP JUMPDEST PUSH2 0xEC0 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x57D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x586 PUSH2 0xFB8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x593 SWAP2 SWAP1 PUSH2 0x28D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x5A8 PUSH2 0xA89 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x615 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x60C SWAP1 PUSH2 0x2855 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x682 DUP11 DUP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x62B SWAP2 SWAP1 PUSH2 0x2A4D JUMP JUMPDEST DUP1 PUSH1 0xC0 ADD SWAP1 PUSH2 0x63A SWAP2 SWAP1 PUSH2 0x29C2 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH1 0x0 DUP2 DUP5 ADD MSTORE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND SWAP1 POP DUP1 DUP4 ADD SWAP3 POP POP POP POP POP POP POP PUSH2 0xFBF JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH1 0x0 DUP1 PUSH2 0x695 DUP5 DUP5 DUP15 DUP11 PUSH2 0x11D0 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD DUP4 ADDRESS DUP5 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D6 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2628 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x6F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x704 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x728 SWAP2 SWAP1 PUSH2 0x1D0D JUMP JUMPDEST POP DUP2 DUP2 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x740 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2688 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x0 SWAP6 POP SWAP6 POP POP POP POP POP SWAP7 POP SWAP7 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x3 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7E7 SWAP2 SWAP1 PUSH2 0x260D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x7FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x813 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x837 SWAP2 SWAP1 PUSH2 0x1F71 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x844 PUSH2 0x13D4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x862 PUSH2 0xC4A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x8B8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8AF SWAP1 PUSH2 0x2835 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0xF714CE DUP4 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x914 SWAP3 SWAP2 SWAP1 PUSH2 0x28ED JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x92E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x942 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP1 PUSH1 0x0 ADD SWAP1 PUSH2 0x95C SWAP2 SWAP1 PUSH2 0x2A25 JUMP JUMPDEST PUSH1 0x20 ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x96E SWAP2 SWAP1 PUSH2 0x1C4C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2904 DUP2 JUMP JUMPDEST PUSH2 0x983 PUSH2 0x13D4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x9A1 PUSH2 0xC4A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9F7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9EE SWAP1 PUSH2 0x2835 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0xA09 PUSH2 0x13D4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xA27 PUSH2 0xC4A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xA7D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA74 SWAP1 PUSH2 0x2835 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA87 PUSH1 0x0 PUSH2 0x13DC JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xABB PUSH2 0xA89 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xB28 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB1F SWAP1 PUSH2 0x2855 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 DUP9 DUP9 DUP2 ADD SWAP1 PUSH2 0xB3D SWAP2 SWAP1 PUSH2 0x1CA6 JUMP JUMPDEST SWAP4 POP SWAP4 POP SWAP4 POP SWAP4 POP PUSH2 0xB55 DUP5 DUP5 PUSH1 0x0 DUP10 DUP10 DUP8 DUP8 PUSH2 0x14A0 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0xB68 PUSH2 0x13D4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB86 PUSH2 0xC4A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xBDC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBD3 SWAP1 PUSH2 0x2835 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1E DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x322E322E302B6F70656E67736E2E746F6B656E2E697061796D61737465720000 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x20 ADD SWAP1 PUSH2 0xCC0 SWAP2 SWAP1 PUSH2 0x2A4D JUMP JUMPDEST PUSH1 0xA0 ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0xCD2 SWAP2 SWAP1 PUSH2 0x1C4C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD61 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x27D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD6A DUP2 PUSH2 0x1688 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x5 SLOAD DUP2 JUMP JUMPDEST PUSH2 0xD7B PUSH2 0x1AA8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0xC350 PUSH3 0x186A0 PUSH2 0xD97 SWAP2 SWAP1 PUSH2 0x2BAC JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x186A0 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x1ADB0 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2904 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xC350 DUP2 JUMP JUMPDEST PUSH3 0x1ADB0 DUP2 JUMP JUMPDEST PUSH2 0xDCE PUSH2 0x13D4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDEC PUSH2 0xC4A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xE42 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE39 SWAP1 PUSH2 0x2835 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0xC350 PUSH3 0x186A0 PUSH2 0xE97 SWAP2 SWAP1 PUSH2 0x2BAC JUMP JUMPDEST DUP2 JUMP JUMPDEST PUSH1 0x4 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH2 0xEC8 PUSH2 0x13D4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xEE6 PUSH2 0xC4A JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xF3C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF33 SWAP1 PUSH2 0x2835 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xFAC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFA3 SWAP1 PUSH2 0x2775 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xFB5 DUP2 PUSH2 0x13DC JUMP JUMPDEST POP JUMP JUMPDEST PUSH3 0x186A0 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 MLOAD EQ ISZERO PUSH2 0x101B JUMPI PUSH1 0x4 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x3 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP2 POP SWAP2 POP PUSH2 0x11CB JUMP JUMPDEST PUSH1 0x20 DUP4 MLOAD EQ PUSH2 0x105F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1056 SWAP1 PUSH2 0x2875 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1073 SWAP2 SWAP1 PUSH2 0x1E0B JUMP JUMPDEST SWAP1 POP PUSH1 0x4 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x3 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x9D76EA58 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1116 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x112A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x114E SWAP2 SWAP1 PUSH2 0x1C79 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x11A5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x119C SWAP1 PUSH2 0x27F5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP2 POP JUMPDEST SWAP2 POP SWAP2 JUMP JUMPDEST PUSH1 0x0 DUP1 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x41BBB7CA DUP6 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x120C SWAP2 SWAP1 PUSH2 0x28B0 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1224 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1238 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x125C SWAP2 SWAP1 PUSH2 0x1C79 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x8E53548B DUP6 DUP8 DUP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x12AF SWAP2 SWAP1 PUSH2 0x2A4D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12CC SWAP3 SWAP2 SWAP1 PUSH2 0x294D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x12E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x12F8 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x131C SWAP2 SWAP1 PUSH2 0x1F71 JUMP JUMPDEST SWAP1 POP DUP5 DUP1 PUSH1 0x0 ADD SWAP1 PUSH2 0x132E SWAP2 SWAP1 PUSH2 0x2A25 JUMP JUMPDEST PUSH1 0x40 ADD CALLDATALOAD DUP2 PUSH2 0x133D SWAP2 SWAP1 PUSH2 0x2BAC JUMP JUMPDEST SWAP1 POP DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x2640F62C DUP3 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1378 SWAP2 SWAP1 PUSH2 0x28D2 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1390 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13A4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x13C8 SWAP2 SWAP1 PUSH2 0x1F71 JUMP JUMPDEST SWAP2 POP POP SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x8E53548B PUSH1 0x5 SLOAD DUP8 PUSH2 0x14EE SWAP2 SWAP1 PUSH2 0x2BAC JUMP JUMPDEST DUP7 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x150C SWAP3 SWAP2 SWAP1 PUSH2 0x294D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1524 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1538 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x155C SWAP2 SWAP1 PUSH2 0x1F71 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x2640F62C DUP4 DUP10 PUSH2 0x1588 SWAP2 SWAP1 PUSH2 0x2BAC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15A4 SWAP2 SWAP1 PUSH2 0x28D2 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x15BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x15D0 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x15F4 SWAP2 SWAP1 PUSH2 0x1F71 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 DUP10 PUSH2 0x1604 SWAP2 SWAP1 PUSH2 0x2C02 JUMP JUMPDEST SWAP1 POP PUSH2 0x1611 DUP11 DUP7 DUP4 PUSH2 0x1888 JUMP JUMPDEST PUSH2 0x163D DUP4 PUSH1 0x3 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1959 JUMP JUMPDEST PUSH32 0xB3D69FF8981E297B4AB7FB9BA8E8A080FFEBBEE9F273BFA2D10116A823683045 DUP8 PUSH1 0x5 SLOAD DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x1674 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x297D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP1 PUSH1 0x0 ADD SWAP1 PUSH2 0x169B SWAP2 SWAP1 PUSH2 0x2A25 JUMP JUMPDEST PUSH1 0x20 ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x16AD SWAP2 SWAP1 PUSH2 0x1C4C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x572B6C05 PUSH1 0xE0 SHL DUP5 DUP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x16DB SWAP2 SWAP1 PUSH2 0x2A4D JUMP JUMPDEST PUSH1 0xA0 ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x16ED SWAP2 SWAP1 PUSH2 0x1C4C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x16FD SWAP2 SWAP1 PUSH2 0x260D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP1 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH1 0x40 MLOAD PUSH2 0x1767 SWAP2 SWAP1 PUSH2 0x25F6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS STATICCALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x17A2 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x17A7 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP DUP2 PUSH2 0x17EC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17E3 SWAP1 PUSH2 0x2795 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x20 DUP2 MLOAD EQ PUSH2 0x1830 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1827 SWAP1 PUSH2 0x2815 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x1844 SWAP2 SWAP1 PUSH2 0x1D0D JUMP JUMPDEST PUSH2 0x1883 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x187A SWAP1 PUSH2 0x2755 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB DUP5 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18C3 SWAP3 SWAP2 SWAP1 PUSH2 0x265F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x18DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x18F1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1915 SWAP2 SWAP1 PUSH2 0x1D0D JUMP JUMPDEST PUSH2 0x1954 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x194B SWAP1 PUSH2 0x27B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x13EFD8B DUP4 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF PUSH2 0x384 TIMESTAMP PUSH2 0x19A5 SWAP2 SWAP1 PUSH2 0x2BAC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19C3 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2916 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x19DD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x19F1 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1A15 SWAP2 SWAP1 PUSH2 0x1F71 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xAA67C919 DUP4 ADDRESS PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A72 SWAP2 SWAP1 PUSH2 0x260D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1A8B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1A9F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1ADF DUP2 PUSH2 0x2FC4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x1AF4 DUP2 PUSH2 0x2FC4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1B09 DUP2 PUSH2 0x2FDB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1B1E DUP2 PUSH2 0x2FF2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x1B33 DUP2 PUSH2 0x2FF2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x1B4F JUMPI PUSH2 0x1B4E PUSH2 0x2D9B JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B6C JUMPI PUSH2 0x1B6B PUSH2 0x2D96 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x1B88 JUMPI PUSH2 0x1B87 PUSH2 0x2DB4 JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1B9E DUP2 PUSH2 0x3009 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1BB3 DUP2 PUSH2 0x3020 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1BC8 DUP2 PUSH2 0x3037 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x1BDD DUP2 PUSH2 0x3037 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1BFA JUMPI PUSH2 0x1BF9 PUSH2 0x2DA5 JUMP JUMPDEST JUMPDEST DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C19 JUMPI PUSH2 0x1C18 PUSH2 0x2DA5 JUMP JUMPDEST JUMPDEST DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1C31 DUP2 PUSH2 0x304E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x1C46 DUP2 PUSH2 0x304E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C62 JUMPI PUSH2 0x1C61 PUSH2 0x2DC8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C70 DUP5 DUP3 DUP6 ADD PUSH2 0x1AD0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C8F JUMPI PUSH2 0x1C8E PUSH2 0x2DC8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C9D DUP5 DUP3 DUP6 ADD PUSH2 0x1AE5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1CC0 JUMPI PUSH2 0x1CBF PUSH2 0x2DC8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1CCE DUP8 DUP3 DUP9 ADD PUSH2 0x1AFA JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1CDF DUP8 DUP3 DUP9 ADD PUSH2 0x1C22 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1CF0 DUP8 DUP3 DUP9 ADD PUSH2 0x1B8F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 PUSH2 0x1D01 DUP8 DUP3 DUP9 ADD PUSH2 0x1BB9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1D23 JUMPI PUSH2 0x1D22 PUSH2 0x2DC8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1D31 DUP5 DUP3 DUP6 ADD PUSH2 0x1B24 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x80 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x1D56 JUMPI PUSH2 0x1D55 PUSH2 0x2DC8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1D74 JUMPI PUSH2 0x1D73 PUSH2 0x2DBE JUMP JUMPDEST JUMPDEST PUSH2 0x1D80 DUP9 DUP3 DUP10 ADD PUSH2 0x1B39 JUMP JUMPDEST SWAP6 POP SWAP6 POP POP PUSH1 0x20 PUSH2 0x1D93 DUP9 DUP3 DUP10 ADD PUSH2 0x1B0F JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1DA4 DUP9 DUP3 DUP10 ADD PUSH2 0x1C22 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1DC5 JUMPI PUSH2 0x1DC4 PUSH2 0x2DBE JUMP JUMPDEST JUMPDEST PUSH2 0x1DD1 DUP9 DUP3 DUP10 ADD PUSH2 0x1BE3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DF4 JUMPI PUSH2 0x1DF3 PUSH2 0x2DC8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1E02 DUP5 DUP3 DUP6 ADD PUSH2 0x1BA4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1E21 JUMPI PUSH2 0x1E20 PUSH2 0x2DC8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1E2F DUP5 DUP3 DUP6 ADD PUSH2 0x1BCE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1E4E JUMPI PUSH2 0x1E4D PUSH2 0x2DC8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1E6C JUMPI PUSH2 0x1E6B PUSH2 0x2DBE JUMP JUMPDEST JUMPDEST PUSH2 0x1E78 DUP5 DUP3 DUP6 ADD PUSH2 0x1C03 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x1E9E JUMPI PUSH2 0x1E9D PUSH2 0x2DC8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1EBC JUMPI PUSH2 0x1EBB PUSH2 0x2DBE JUMP JUMPDEST JUMPDEST PUSH2 0x1EC8 DUP10 DUP3 DUP11 ADD PUSH2 0x1C03 JUMP JUMPDEST SWAP7 POP POP PUSH1 0x20 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1EE9 JUMPI PUSH2 0x1EE8 PUSH2 0x2DBE JUMP JUMPDEST JUMPDEST PUSH2 0x1EF5 DUP10 DUP3 DUP11 ADD PUSH2 0x1B39 JUMP JUMPDEST SWAP6 POP SWAP6 POP POP PUSH1 0x40 DUP8 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1F18 JUMPI PUSH2 0x1F17 PUSH2 0x2DBE JUMP JUMPDEST JUMPDEST PUSH2 0x1F24 DUP10 DUP3 DUP11 ADD PUSH2 0x1B39 JUMP JUMPDEST SWAP4 POP SWAP4 POP POP PUSH1 0x60 PUSH2 0x1F37 DUP10 DUP3 DUP11 ADD PUSH2 0x1C22 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F5A JUMPI PUSH2 0x1F59 PUSH2 0x2DC8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1F68 DUP5 DUP3 DUP6 ADD PUSH2 0x1C22 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F87 JUMPI PUSH2 0x1F86 PUSH2 0x2DC8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1F95 DUP5 DUP3 DUP6 ADD PUSH2 0x1C37 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1FB5 JUMPI PUSH2 0x1FB4 PUSH2 0x2DC8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1FC3 DUP6 DUP3 DUP7 ADD PUSH2 0x1C22 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1FD4 DUP6 DUP3 DUP7 ADD PUSH2 0x1AFA JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x1FE7 DUP2 PUSH2 0x2C48 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1FF6 DUP2 PUSH2 0x2C36 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2005 DUP2 PUSH2 0x2C36 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2014 DUP2 PUSH2 0x2C5A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2026 DUP4 DUP6 PUSH2 0x2A8C JUMP JUMPDEST SWAP4 POP PUSH2 0x2033 DUP4 DUP6 DUP5 PUSH2 0x2D20 JUMP JUMPDEST PUSH2 0x203C DUP4 PUSH2 0x2DCD JUMP JUMPDEST DUP5 ADD SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2052 DUP3 PUSH2 0x2A76 JUMP JUMPDEST PUSH2 0x205C DUP2 DUP6 PUSH2 0x2A9D JUMP JUMPDEST SWAP4 POP PUSH2 0x206C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2D2F JUMP JUMPDEST PUSH2 0x2075 DUP2 PUSH2 0x2DCD JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x208B DUP3 PUSH2 0x2A76 JUMP JUMPDEST PUSH2 0x2095 DUP2 DUP6 PUSH2 0x2AAE JUMP JUMPDEST SWAP4 POP PUSH2 0x20A5 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2D2F JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x20BA DUP2 PUSH2 0x2CC6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x20C9 DUP2 PUSH2 0x2CD8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x20D8 DUP2 PUSH2 0x2CEA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x20E9 DUP3 PUSH2 0x2A81 JUMP JUMPDEST PUSH2 0x20F3 DUP2 DUP6 PUSH2 0x2AB9 JUMP JUMPDEST SWAP4 POP PUSH2 0x2103 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2D2F JUMP JUMPDEST PUSH2 0x210C DUP2 PUSH2 0x2DCD JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2124 PUSH1 0x1F DUP4 PUSH2 0x2AB9 JUMP JUMPDEST SWAP2 POP PUSH2 0x212F DUP3 PUSH2 0x2DDE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2147 PUSH1 0x26 DUP4 PUSH2 0x2AB9 JUMP JUMPDEST SWAP2 POP PUSH2 0x2152 DUP3 PUSH2 0x2E07 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x216A PUSH1 0x1C DUP4 PUSH2 0x2AB9 JUMP JUMPDEST SWAP2 POP PUSH2 0x2175 DUP3 PUSH2 0x2E56 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x218D PUSH1 0xD DUP4 PUSH2 0x2AB9 JUMP JUMPDEST SWAP2 POP PUSH2 0x2198 DUP3 PUSH2 0x2E7F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x21B0 PUSH1 0x18 DUP4 PUSH2 0x2AB9 JUMP JUMPDEST SWAP2 POP PUSH2 0x21BB DUP3 PUSH2 0x2EA8 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x21D3 PUSH1 0x19 DUP4 PUSH2 0x2AB9 JUMP JUMPDEST SWAP2 POP PUSH2 0x21DE DUP3 PUSH2 0x2ED1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x21F6 PUSH1 0x20 DUP4 PUSH2 0x2AB9 JUMP JUMPDEST SWAP2 POP PUSH2 0x2201 DUP3 PUSH2 0x2EFA JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2219 PUSH1 0x20 DUP4 PUSH2 0x2AB9 JUMP JUMPDEST SWAP2 POP PUSH2 0x2224 DUP3 PUSH2 0x2F23 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x223C PUSH1 0x1E DUP4 PUSH2 0x2AB9 JUMP JUMPDEST SWAP2 POP PUSH2 0x2247 DUP3 PUSH2 0x2F4C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x225F PUSH1 0x28 DUP4 PUSH2 0x2AB9 JUMP JUMPDEST SWAP2 POP PUSH2 0x226A DUP3 PUSH2 0x2F75 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xE0 DUP4 ADD PUSH2 0x2288 PUSH1 0x0 DUP5 ADD DUP5 PUSH2 0x2ACA JUMP JUMPDEST PUSH2 0x2295 PUSH1 0x0 DUP7 ADD DUP3 PUSH2 0x1FED JUMP JUMPDEST POP PUSH2 0x22A3 PUSH1 0x20 DUP5 ADD DUP5 PUSH2 0x2ACA JUMP JUMPDEST PUSH2 0x22B0 PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0x1FED JUMP JUMPDEST POP PUSH2 0x22BE PUSH1 0x40 DUP5 ADD DUP5 PUSH2 0x2B95 JUMP JUMPDEST PUSH2 0x22CB PUSH1 0x40 DUP7 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP PUSH2 0x22D9 PUSH1 0x60 DUP5 ADD DUP5 PUSH2 0x2B95 JUMP JUMPDEST PUSH2 0x22E6 PUSH1 0x60 DUP7 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP PUSH2 0x22F4 PUSH1 0x80 DUP5 ADD DUP5 PUSH2 0x2B95 JUMP JUMPDEST PUSH2 0x2301 PUSH1 0x80 DUP7 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP PUSH2 0x230F PUSH1 0xA0 DUP5 ADD DUP5 PUSH2 0x2AE1 JUMP JUMPDEST DUP6 DUP4 SUB PUSH1 0xA0 DUP8 ADD MSTORE PUSH2 0x2322 DUP4 DUP3 DUP5 PUSH2 0x201A JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x2333 PUSH1 0xC0 DUP5 ADD DUP5 PUSH2 0x2B95 JUMP JUMPDEST PUSH2 0x2340 PUSH1 0xC0 DUP7 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x80 DUP3 ADD PUSH1 0x0 DUP3 ADD MLOAD PUSH2 0x2361 PUSH1 0x0 DUP6 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD PUSH2 0x2374 PUSH1 0x20 DUP6 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD PUSH2 0x2387 PUSH1 0x40 DUP6 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD PUSH2 0x239A PUSH1 0x60 DUP6 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100 DUP4 ADD PUSH2 0x23B4 PUSH1 0x0 DUP5 ADD DUP5 PUSH2 0x2B95 JUMP JUMPDEST PUSH2 0x23C1 PUSH1 0x0 DUP7 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP PUSH2 0x23CF PUSH1 0x20 DUP5 ADD DUP5 PUSH2 0x2B95 JUMP JUMPDEST PUSH2 0x23DC PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP PUSH2 0x23EA PUSH1 0x40 DUP5 ADD DUP5 PUSH2 0x2B95 JUMP JUMPDEST PUSH2 0x23F7 PUSH1 0x40 DUP7 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP PUSH2 0x2405 PUSH1 0x60 DUP5 ADD DUP5 PUSH2 0x2ACA JUMP JUMPDEST PUSH2 0x2412 PUSH1 0x60 DUP7 ADD DUP3 PUSH2 0x1FED JUMP JUMPDEST POP PUSH2 0x2420 PUSH1 0x80 DUP5 ADD DUP5 PUSH2 0x2ACA JUMP JUMPDEST PUSH2 0x242D PUSH1 0x80 DUP7 ADD DUP3 PUSH2 0x1FED JUMP JUMPDEST POP PUSH2 0x243B PUSH1 0xA0 DUP5 ADD DUP5 PUSH2 0x2ACA JUMP JUMPDEST PUSH2 0x2448 PUSH1 0xA0 DUP7 ADD DUP3 PUSH2 0x1FED JUMP JUMPDEST POP PUSH2 0x2456 PUSH1 0xC0 DUP5 ADD DUP5 PUSH2 0x2AE1 JUMP JUMPDEST DUP6 DUP4 SUB PUSH1 0xC0 DUP8 ADD MSTORE PUSH2 0x2469 DUP4 DUP3 DUP5 PUSH2 0x201A JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x247A PUSH1 0xE0 DUP5 ADD DUP5 PUSH2 0x2B95 JUMP JUMPDEST PUSH2 0x2487 PUSH1 0xE0 DUP7 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100 DUP4 ADD PUSH2 0x24A6 PUSH1 0x0 DUP5 ADD DUP5 PUSH2 0x2B95 JUMP JUMPDEST PUSH2 0x24B3 PUSH1 0x0 DUP7 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP PUSH2 0x24C1 PUSH1 0x20 DUP5 ADD DUP5 PUSH2 0x2B95 JUMP JUMPDEST PUSH2 0x24CE PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP PUSH2 0x24DC PUSH1 0x40 DUP5 ADD DUP5 PUSH2 0x2B95 JUMP JUMPDEST PUSH2 0x24E9 PUSH1 0x40 DUP7 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP PUSH2 0x24F7 PUSH1 0x60 DUP5 ADD DUP5 PUSH2 0x2ACA JUMP JUMPDEST PUSH2 0x2504 PUSH1 0x60 DUP7 ADD DUP3 PUSH2 0x1FED JUMP JUMPDEST POP PUSH2 0x2512 PUSH1 0x80 DUP5 ADD DUP5 PUSH2 0x2ACA JUMP JUMPDEST PUSH2 0x251F PUSH1 0x80 DUP7 ADD DUP3 PUSH2 0x1FED JUMP JUMPDEST POP PUSH2 0x252D PUSH1 0xA0 DUP5 ADD DUP5 PUSH2 0x2ACA JUMP JUMPDEST PUSH2 0x253A PUSH1 0xA0 DUP7 ADD DUP3 PUSH2 0x1FED JUMP JUMPDEST POP PUSH2 0x2548 PUSH1 0xC0 DUP5 ADD DUP5 PUSH2 0x2AE1 JUMP JUMPDEST DUP6 DUP4 SUB PUSH1 0xC0 DUP8 ADD MSTORE PUSH2 0x255B DUP4 DUP3 DUP5 PUSH2 0x201A JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x256C PUSH1 0xE0 DUP5 ADD DUP5 PUSH2 0x2B95 JUMP JUMPDEST PUSH2 0x2579 PUSH1 0xE0 DUP7 ADD DUP3 PUSH2 0x25D8 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP4 ADD PUSH2 0x2597 PUSH1 0x0 DUP5 ADD DUP5 PUSH2 0x2B44 JUMP JUMPDEST DUP5 DUP3 SUB PUSH1 0x0 DUP7 ADD MSTORE PUSH2 0x25A9 DUP3 DUP3 PUSH2 0x2275 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x25B9 PUSH1 0x20 DUP5 ADD DUP5 PUSH2 0x2B6C JUMP JUMPDEST DUP5 DUP3 SUB PUSH1 0x20 DUP7 ADD MSTORE PUSH2 0x25CB DUP3 DUP3 PUSH2 0x23A0 JUMP JUMPDEST SWAP2 POP POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x25E1 DUP2 PUSH2 0x2CBC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x25F0 DUP2 PUSH2 0x2CBC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2602 DUP3 DUP5 PUSH2 0x2080 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2622 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1FFC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x263D PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x1FFC JUMP JUMPDEST PUSH2 0x264A PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x1FFC JUMP JUMPDEST PUSH2 0x2657 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x25E7 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2674 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x1FFC JUMP JUMPDEST PUSH2 0x2681 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x25E7 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x269D PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x1FFC JUMP JUMPDEST PUSH2 0x26AA PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x25E7 JUMP JUMPDEST PUSH2 0x26B7 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x20C0 JUMP JUMPDEST PUSH2 0x26C4 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x20B1 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x26E7 DUP2 DUP6 PUSH2 0x2047 JUMP JUMPDEST SWAP1 POP PUSH2 0x26F6 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x200B JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2712 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x20B1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x272D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x20C0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x274D DUP2 DUP5 PUSH2 0x20DE JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x276E DUP2 PUSH2 0x2117 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x278E DUP2 PUSH2 0x213A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x27AE DUP2 PUSH2 0x215D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x27CE DUP2 PUSH2 0x2180 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x27EE DUP2 PUSH2 0x21A3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x280E DUP2 PUSH2 0x21C6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x282E DUP2 PUSH2 0x21E9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x284E DUP2 PUSH2 0x220C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x286E DUP2 PUSH2 0x222F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x288E DUP2 PUSH2 0x2252 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x28AA PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x234B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x28CA DUP2 DUP5 PUSH2 0x2584 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x28E7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x25E7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2902 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x25E7 JUMP JUMPDEST PUSH2 0x290F PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1FDE JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x292B PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x25E7 JUMP JUMPDEST PUSH2 0x2938 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x20CF JUMP JUMPDEST PUSH2 0x2945 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x25E7 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2962 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x25E7 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x2974 DUP2 DUP5 PUSH2 0x2492 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x2992 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x25E7 JUMP JUMPDEST PUSH2 0x299F PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x25E7 JUMP JUMPDEST PUSH2 0x29AC PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x25E7 JUMP JUMPDEST PUSH2 0x29B9 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x25E7 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x20 SUB DUP5 CALLDATASIZE SUB SUB DUP2 SLT PUSH2 0x29DF JUMPI PUSH2 0x29DE PUSH2 0x2DAA JUMP JUMPDEST JUMPDEST DUP1 DUP5 ADD SWAP3 POP DUP3 CALLDATALOAD SWAP2 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2A01 JUMPI PUSH2 0x2A00 PUSH2 0x2DA0 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP3 POP PUSH1 0x1 DUP3 MUL CALLDATASIZE SUB DUP4 SGT ISZERO PUSH2 0x2A1D JUMPI PUSH2 0x2A1C PUSH2 0x2DB9 JUMP JUMPDEST JUMPDEST POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0xE0 SUB DUP4 CALLDATASIZE SUB SUB DUP2 SLT PUSH2 0x2A41 JUMPI PUSH2 0x2A40 PUSH2 0x2DAA JUMP JUMPDEST JUMPDEST DUP1 DUP4 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 CALLDATALOAD PUSH1 0x1 PUSH2 0x100 SUB DUP4 CALLDATASIZE SUB SUB DUP2 SLT PUSH2 0x2A6A JUMPI PUSH2 0x2A69 PUSH2 0x2DAA JUMP JUMPDEST JUMPDEST DUP1 DUP4 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AD9 PUSH1 0x20 DUP5 ADD DUP5 PUSH2 0x1AD0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x20 SUB DUP5 CALLDATASIZE SUB SUB DUP2 SLT PUSH2 0x2AFE JUMPI PUSH2 0x2AFD PUSH2 0x2DC3 JUMP JUMPDEST JUMPDEST DUP4 DUP2 ADD SWAP3 POP DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD SWAP3 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2B26 JUMPI PUSH2 0x2B25 PUSH2 0x2D91 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 MUL CALLDATASIZE SUB DUP5 SGT ISZERO PUSH2 0x2B3C JUMPI PUSH2 0x2B3B PUSH2 0x2DAF JUMP JUMPDEST JUMPDEST POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0xE0 SUB DUP4 CALLDATASIZE SUB SUB DUP2 SLT PUSH2 0x2B60 JUMPI PUSH2 0x2B5F PUSH2 0x2DC3 JUMP JUMPDEST JUMPDEST DUP3 DUP2 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 CALLDATALOAD PUSH1 0x1 PUSH2 0x100 SUB DUP4 CALLDATASIZE SUB SUB DUP2 SLT PUSH2 0x2B89 JUMPI PUSH2 0x2B88 PUSH2 0x2DC3 JUMP JUMPDEST JUMPDEST DUP3 DUP2 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BA4 PUSH1 0x20 DUP5 ADD DUP5 PUSH2 0x1C22 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BB7 DUP3 PUSH2 0x2CBC JUMP JUMPDEST SWAP2 POP PUSH2 0x2BC2 DUP4 PUSH2 0x2CBC JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x2BF7 JUMPI PUSH2 0x2BF6 PUSH2 0x2D62 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C0D DUP3 PUSH2 0x2CBC JUMP JUMPDEST SWAP2 POP PUSH2 0x2C18 DUP4 PUSH2 0x2CBC JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x2C2B JUMPI PUSH2 0x2C2A PUSH2 0x2D62 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C41 DUP3 PUSH2 0x2C9C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C53 DUP3 PUSH2 0x2C9C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C71 DUP3 PUSH2 0x2C36 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C83 DUP3 PUSH2 0x2C36 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C95 DUP3 PUSH2 0x2C36 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2CD1 DUP3 PUSH2 0x2CFC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2CE3 DUP3 PUSH2 0x2CFC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2CF5 DUP3 PUSH2 0x2CBC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D07 DUP3 PUSH2 0x2D0E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D19 DUP3 PUSH2 0x2C9C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2D4D JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2D32 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x2D5C JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x696E76616C696420666F7277617264657220666F7220726563697069656E7400 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x697354727573746564466F727761726465723A20726576657274656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x6661696C656420726566756E6400000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x466F72776172646572206973206E6F7420747275737465640000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x756E737570706F7274656420746F6B656E20756E697377617000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x697354727573746564466F727761726465723A2062616420726573706F6E7365 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x63616E206F6E6C792062652063616C6C65642062792052656C61794875620000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x696E76616C696420756E6973776170206164647265737320696E207061796D61 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7374657244617461000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x2FCD DUP2 PUSH2 0x2C36 JUMP JUMPDEST DUP2 EQ PUSH2 0x2FD8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2FE4 DUP2 PUSH2 0x2C48 JUMP JUMPDEST DUP2 EQ PUSH2 0x2FEF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2FFB DUP2 PUSH2 0x2C5A JUMP JUMPDEST DUP2 EQ PUSH2 0x3006 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x3012 DUP2 PUSH2 0x2C66 JUMP JUMPDEST DUP2 EQ PUSH2 0x301D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x3029 DUP2 PUSH2 0x2C78 JUMP JUMPDEST DUP2 EQ PUSH2 0x3034 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x3040 DUP2 PUSH2 0x2C8A JUMP JUMPDEST DUP2 EQ PUSH2 0x304B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x3057 DUP2 PUSH2 0x2CBC JUMP JUMPDEST DUP2 EQ PUSH2 0x3062 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA6 CALLCODE 0xE9 MOD 0xCA EXTCODECOPY PUSH27 0x4A88F1563592A0CB128CFF4809B8037728C446C096ADD5D1916473 PUSH16 0x6C634300080700330000000000000000 ",
"sourceMap": "4932:5006:22:-:0;;;5222:234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;867:23:13;877:12;:10;;;:12;;:::i;:::-;867:9;;;:23;;:::i;:::-;5295:8:22;5285:7;;:18;;;;;;;;;;;;;;;;;;5325:10;5313:9;;:22;;;;;;;;;;;;;;;;;;5345:9;;;;;;;;;;;:17;;;5371:8;5382:66;5345:104;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;5222:234;;4932:5006;;587:96:14;640:7;666:10;659:17;;587:96;:::o;2041:169:13:-;2096:16;2115:6;;;;;;;;;;;2096:25;;2140:8;2131:6;;:17;;;;;;;;;;;;;;;;;;2194:8;2163:40;;2184:8;2163:40;;;;;;;;;;;;2086:124;2041:169;:::o;7:137:23:-;61:5;92:6;86:13;77:22;;108:30;132:5;108:30;:::i;:::-;7:137;;;;:::o;150:177::-;224:5;255:6;249:13;240:22;;271:50;315:5;271:50;:::i;:::-;150:177;;;;:::o;333:179::-;408:5;439:6;433:13;424:22;;455:51;500:5;455:51;:::i;:::-;333:179;;;;:::o;518:345::-;585:6;634:2;622:9;613:7;609:23;605:32;602:119;;;640:79;;:::i;:::-;602:119;760:1;785:61;838:7;829:6;818:9;814:22;785:61;:::i;:::-;775:71;;731:125;518:345;;;;:::o;869:577::-;983:6;991;1040:2;1028:9;1019:7;1015:23;1011:32;1008:119;;;1046:79;;:::i;:::-;1008:119;1166:1;1191:81;1264:7;1255:6;1244:9;1240:22;1191:81;:::i;:::-;1181:91;;1137:145;1321:2;1347:82;1421:7;1412:6;1401:9;1397:22;1347:82;:::i;:::-;1337:92;;1292:147;869:577;;;;;:::o;1452:118::-;1539:24;1557:5;1539:24;:::i;:::-;1534:3;1527:37;1452:118;;:::o;1576:301::-;1748:122;1864:5;1748:122;:::i;:::-;1743:3;1736:135;1576:301;;:::o;1883:502::-;2089:4;2127:2;2116:9;2112:18;2104:26;;2140:71;2208:1;2197:9;2193:17;2184:6;2140:71;:::i;:::-;2221:157;2374:2;2363:9;2359:18;2350:6;2221:157;:::i;:::-;1883:502;;;;;:::o;2472:96::-;2509:7;2538:24;2556:5;2538:24;:::i;:::-;2527:35;;2472:96;;;:::o;2574:90::-;2608:7;2651:5;2644:13;2637:21;2626:32;;2574:90;;;:::o;2670:113::-;2724:7;2753:24;2771:5;2753:24;:::i;:::-;2742:35;;2670:113;;;:::o;2789:114::-;2844:7;2873:24;2891:5;2873:24;:::i;:::-;2862:35;;2789:114;;;:::o;2909:126::-;2946:7;2986:42;2979:5;2975:54;2964:65;;2909:126;;;:::o;3041:77::-;3078:7;3107:5;3096:16;;3041:77;;;:::o;3124:198::-;3259:9;3292:24;3310:5;3292:24;:::i;:::-;3279:37;;3124:198;;;:::o;3451:117::-;3560:1;3557;3550:12;3574:116;3644:21;3659:5;3644:21;:::i;:::-;3637:5;3634:32;3624:60;;3680:1;3677;3670:12;3624:60;3574:116;:::o;3696:156::-;3786:41;3821:5;3786:41;:::i;:::-;3779:5;3776:52;3766:80;;3842:1;3839;3832:12;3766:80;3696:156;:::o;3858:158::-;3949:42;3985:5;3949:42;:::i;:::-;3942:5;3939:53;3929:81;;4006:1;4003;3996:12;3929:81;3858:158;:::o;4932:5006:22:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@CALLDATA_SIZE_LIMIT_47": {
"entryPoint": 2421,
"id": 47,
"parameterSlots": 0,
"returnSlots": 0
},
"@FORWARDER_HUB_OVERHEAD_33": {
"entryPoint": 3513,
"id": 33,
"parameterSlots": 0,
"returnSlots": 0
},
"@PAYMASTER_ACCEPTANCE_BUDGET_44": {
"entryPoint": 3718,
"id": 44,
"parameterSlots": 0,
"returnSlots": 0
},
"@POST_RELAYED_CALL_GAS_LIMIT_39": {
"entryPoint": 3519,
"id": 39,
"parameterSlots": 0,
"returnSlots": 0
},
"@PRE_RELAYED_CALL_GAS_LIMIT_36": {
"entryPoint": 4024,
"id": 36,
"parameterSlots": 0,
"returnSlots": 0
},
"@_6049": {
"entryPoint": null,
"id": 6049,
"parameterSlots": 0,
"returnSlots": 0
},
"@_calculatePreCharge_6155": {
"entryPoint": 4560,
"id": 6155,
"parameterSlots": 4,
"returnSlots": 2
},
"@_depositProceedsToHub_6390": {
"entryPoint": 6489,
"id": 6390,
"parameterSlots": 2,
"returnSlots": 0
},
"@_getToken_6104": {
"entryPoint": 4031,
"id": 6104,
"parameterSlots": 1,
"returnSlots": 2
},
"@_msgSender_1992": {
"entryPoint": 5076,
"id": 1992,
"parameterSlots": 0,
"returnSlots": 1
},
"@_postRelayedCallInternal_6337": {
"entryPoint": 5280,
"id": 6337,
"parameterSlots": 7,
"returnSlots": 0
},
"@_refundPayer_6357": {
"entryPoint": 6280,
"id": 6357,
"parameterSlots": 3,
"returnSlots": 0
},
"@_setOwner_1979": {
"entryPoint": 5084,
"id": 1979,
"parameterSlots": 1,
"returnSlots": 0
},
"@_verifyForwarder_88": {
"entryPoint": 3248,
"id": 88,
"parameterSlots": 1,
"returnSlots": 0
},
"@gasUsedByPost_5978": {
"entryPoint": 3437,
"id": 5978,
"parameterSlots": 0,
"returnSlots": 0
},
"@getGasAndDataLimits_63": {
"entryPoint": 3443,
"id": 63,
"parameterSlots": 0,
"returnSlots": 1
},
"@getHubAddr_30": {
"entryPoint": 2697,
"id": 30,
"parameterSlots": 0,
"returnSlots": 1
},
"@getPayer_6035": {
"entryPoint": 2378,
"id": 6035,
"parameterSlots": 1,
"returnSlots": 1
},
"@getRelayHubDeposit_151": {
"entryPoint": 1930,
"id": 151,
"parameterSlots": 0,
"returnSlots": 1
},
"@owner_1909": {
"entryPoint": 3146,
"id": 1909,
"parameterSlots": 0,
"returnSlots": 1
},
"@postRelayedCall_6273": {
"entryPoint": 2739,
"id": 6273,
"parameterSlots": 5,
"returnSlots": 0
},
"@preRelayedCall_6225": {
"entryPoint": 1436,
"id": 6225,
"parameterSlots": 6,
"returnSlots": 2
},
"@renounceOwnership_1937": {
"entryPoint": 2561,
"id": 1937,
"parameterSlots": 0,
"returnSlots": 0
},
"@setPostGasUsage_6019": {
"entryPoint": 2427,
"id": 6019,
"parameterSlots": 1,
"returnSlots": 0
},
"@setRelayHub_114": {
"entryPoint": 2912,
"id": 114,
"parameterSlots": 1,
"returnSlots": 0
},
"@setTrustedForwarder_126": {
"entryPoint": 3526,
"id": 126,
"parameterSlots": 1,
"returnSlots": 0
},
"@shanecoin_5976": {
"entryPoint": 3738,
"id": 5976,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_1960": {
"entryPoint": 3776,
"id": 1960,
"parameterSlots": 1,
"returnSlots": 0
},
"@trustedForwarder_135": {
"entryPoint": 3104,
"id": 135,
"parameterSlots": 0,
"returnSlots": 1
},
"@uniswap_5973": {
"entryPoint": 1892,
"id": 5973,
"parameterSlots": 0,
"returnSlots": 0
},
"@verifyForwarderTrusted_1063": {
"entryPoint": 5768,
"id": 1063,
"parameterSlots": 1,
"returnSlots": 0
},
"@versionPaymaster_5970": {
"entryPoint": 3187,
"id": 5970,
"parameterSlots": 0,
"returnSlots": 1
},
"@withdrawRelayHubDepositTo_198": {
"entryPoint": 2108,
"id": 198,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 6864,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address_fromMemory": {
"entryPoint": 6885,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address_payable": {
"entryPoint": 6906,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 6927,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool_fromMemory": {
"entryPoint": 6948,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_calldata_ptr": {
"entryPoint": 6969,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_t_contract$_IERC20_$5436": {
"entryPoint": 7055,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_contract$_IRelayHub_$737": {
"entryPoint": 7076,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_contract$_IUniswap_$5482": {
"entryPoint": 7097,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_contract$_IUniswap_$5482_fromMemory": {
"entryPoint": 7118,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_struct$_RelayData_$1326_calldata_ptr": {
"entryPoint": 7139,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_struct$_RelayRequest_$1333_calldata_ptr": {
"entryPoint": 7171,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 7202,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256_fromMemory": {
"entryPoint": 7223,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 7244,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address_fromMemory": {
"entryPoint": 7289,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address_payablet_uint256t_contract$_IERC20_$5436t_contract$_IUniswap_$5482": {
"entryPoint": 7334,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_bool_fromMemory": {
"entryPoint": 7437,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes_calldata_ptrt_boolt_uint256t_struct$_RelayData_$1326_calldata_ptr": {
"entryPoint": 7482,
"id": null,
"parameterSlots": 2,
"returnSlots": 5
},
"abi_decode_tuple_t_contract$_IRelayHub_$737": {
"entryPoint": 7646,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_contract$_IUniswap_$5482_fromMemory": {
"entryPoint": 7691,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_struct$_RelayRequest_$1333_calldata_ptr": {
"entryPoint": 7736,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_struct$_RelayRequest_$1333_calldata_ptrt_bytes_calldata_ptrt_bytes_calldata_ptrt_uint256": {
"entryPoint": 7809,
"id": null,
"parameterSlots": 2,
"returnSlots": 6
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 8004,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256_fromMemory": {
"entryPoint": 8049,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_address_payable": {
"entryPoint": 8094,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_payable_to_t_address_payable_fromStack": {
"entryPoint": 8158,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_address_to_t_address": {
"entryPoint": 8173,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 8188,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 8203,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_calldata_ptr_to_t_bytes_memory_ptr": {
"entryPoint": 8218,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 8263,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 8320,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_contract$_IUniswap_$5482_to_t_address_fromStack": {
"entryPoint": 8369,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_contract$_ShaneCoin_$5959_to_t_address_fromStack": {
"entryPoint": 8384,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256_fromStack": {
"entryPoint": 8399,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8414,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_18a22d77ec00a6a6e3ef02db4f7f7b9054ded7d3fa47898d59b46e9844b2acb4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8471,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8506,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_29871498aacc097c93f180e11ad1fc7bbe7fd0af33ce4f55cda39c1be559cc5e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8541,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_313f2c731b040432382b587b0cf65ba7b6e869f03bb701593151aa9a51d2bdd8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8576,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3a2fca03255f31860c82d52f1191f77065f7ff670c017cd47e3568fc231bf429_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8611,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7cab0eee60194fe291efdf0a50252e9239db88ff9b7a35da59bd6554f93f252c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8646,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8de434f38be4084093951d99ef6ad881eb532d2fda93e085bee354124c9fe325_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8681,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8716,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d169f51e5e283c8c890697eb898c30495d34dbb12b80eb91ce172a0d9c75ebfb_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8751,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fc04af4ae46532a3ad64b0d610da97287598b7e1699e49132f813bee80cb04f8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8786,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_struct$_ForwardRequest_$318_calldata_ptr_to_t_struct$_ForwardRequest_$318_memory_ptr": {
"entryPoint": 8821,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_struct$_GasAndDataLimits_$401_memory_ptr_to_t_struct$_GasAndDataLimits_$401_memory_ptr_fromStack": {
"entryPoint": 9035,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_struct$_RelayData_$1326_calldata_ptr_to_t_struct$_RelayData_$1326_memory_ptr": {
"entryPoint": 9120,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_struct$_RelayData_$1326_calldata_ptr_to_t_struct$_RelayData_$1326_memory_ptr_fromStack": {
"entryPoint": 9362,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_struct$_RelayRequest_$1333_calldata_ptr_to_t_struct$_RelayRequest_$1333_memory_ptr_fromStack": {
"entryPoint": 9604,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256": {
"entryPoint": 9688,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 9703,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 9718,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 9741,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 9768,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 9823,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint256_t_contract$_ShaneCoin_$5959_t_contract$_IUniswap_$5482__to_t_address_t_uint256_t_address_t_address__fromStack_reversed": {
"entryPoint": 9864,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes_memory_ptr_t_bool__to_t_bytes_memory_ptr_t_bool__fromStack_reversed": {
"entryPoint": 9933,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_contract$_IUniswap_$5482__to_t_address__fromStack_reversed": {
"entryPoint": 9981,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_contract$_ShaneCoin_$5959__to_t_address__fromStack_reversed": {
"entryPoint": 10008,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10035,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_18a22d77ec00a6a6e3ef02db4f7f7b9054ded7d3fa47898d59b46e9844b2acb4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10069,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10101,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_29871498aacc097c93f180e11ad1fc7bbe7fd0af33ce4f55cda39c1be559cc5e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10133,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_313f2c731b040432382b587b0cf65ba7b6e869f03bb701593151aa9a51d2bdd8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10165,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3a2fca03255f31860c82d52f1191f77065f7ff670c017cd47e3568fc231bf429__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10197,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7cab0eee60194fe291efdf0a50252e9239db88ff9b7a35da59bd6554f93f252c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10229,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8de434f38be4084093951d99ef6ad881eb532d2fda93e085bee354124c9fe325__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10261,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10293,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d169f51e5e283c8c890697eb898c30495d34dbb12b80eb91ce172a0d9c75ebfb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10325,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fc04af4ae46532a3ad64b0d610da97287598b7e1699e49132f813bee80cb04f8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10357,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_struct$_GasAndDataLimits_$401_memory_ptr__to_t_struct$_GasAndDataLimits_$401_memory_ptr__fromStack_reversed": {
"entryPoint": 10389,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_struct$_RelayRequest_$1333_calldata_ptr__to_t_struct$_RelayRequest_$1333_memory_ptr__fromStack_reversed": {
"entryPoint": 10416,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 10450,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_address_payable__to_t_uint256_t_address_payable__fromStack_reversed": {
"entryPoint": 10477,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_t_uint256__to_t_uint256_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 10518,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_struct$_RelayData_$1326_calldata_ptr__to_t_uint256_t_struct$_RelayData_$1326_memory_ptr__fromStack_reversed": {
"entryPoint": 10573,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_uint256_t_uint256_t_uint256__to_t_uint256_t_uint256_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 10621,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"access_calldata_tail_t_bytes_calldata_ptr": {
"entryPoint": 10690,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"access_calldata_tail_t_struct$_ForwardRequest_$318_calldata_ptr": {
"entryPoint": 10789,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"access_calldata_tail_t_struct$_RelayData_$1326_calldata_ptr": {
"entryPoint": 10829,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 10870,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 10881,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr": {
"entryPoint": 10892,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 10909,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 10926,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 10937,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"calldata_access_t_address": {
"entryPoint": 10954,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"calldata_access_t_bytes_calldata_ptr": {
"entryPoint": 10977,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"calldata_access_t_struct$_ForwardRequest_$318_calldata_ptr": {
"entryPoint": 11076,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"calldata_access_t_struct$_RelayData_$1326_calldata_ptr": {
"entryPoint": 11116,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"calldata_access_t_uint256": {
"entryPoint": 11157,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 11180,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 11266,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 11318,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_address_payable": {
"entryPoint": 11336,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 11354,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_contract$_IERC20_$5436": {
"entryPoint": 11366,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_contract$_IRelayHub_$737": {
"entryPoint": 11384,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_contract$_IUniswap_$5482": {
"entryPoint": 11402,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 11420,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 11452,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_contract$_IUniswap_$5482_to_t_address": {
"entryPoint": 11462,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_contract$_ShaneCoin_$5959_to_t_address": {
"entryPoint": 11480,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256": {
"entryPoint": 11498,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_address": {
"entryPoint": 11516,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_uint160": {
"entryPoint": 11534,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 11552,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 11567,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"panic_error_0x11": {
"entryPoint": 11618,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_0803104b3ab68501accf02de57372b8e5e6e1582158b771d3f89279dc6822fe2": {
"entryPoint": 11665,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490": {
"entryPoint": 11670,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 11675,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1e55d03107e9c4f1b5e21c76a16fba166a461117ab153bcce65e6a4ea8e5fc8a": {
"entryPoint": 11680,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_21fe6b43b4db61d76a176e95bf1a6b9ede4c301f93a4246f41fecb96e160861d": {
"entryPoint": 11685,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_356d538aaf70fba12156cc466564b792649f8f3befb07b071c91142253e175ad": {
"entryPoint": 11690,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_3894daff73bdbb8963c284e167b207f7abade3c031c50828ea230a16bdbc0f20": {
"entryPoint": 11695,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef": {
"entryPoint": 11700,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_977805620ff29572292dee35f70b0f3f3f73d3fdd0e9f4d7a901c2e43ab18a2e": {
"entryPoint": 11705,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 11710,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_db64ea6d4a12deece376118739de8d9f517a2db5b58ea2ca332ea908c04c71d4": {
"entryPoint": 11715,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 11720,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 11725,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_18a22d77ec00a6a6e3ef02db4f7f7b9054ded7d3fa47898d59b46e9844b2acb4": {
"entryPoint": 11742,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 11783,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_29871498aacc097c93f180e11ad1fc7bbe7fd0af33ce4f55cda39c1be559cc5e": {
"entryPoint": 11862,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_313f2c731b040432382b587b0cf65ba7b6e869f03bb701593151aa9a51d2bdd8": {
"entryPoint": 11903,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3a2fca03255f31860c82d52f1191f77065f7ff670c017cd47e3568fc231bf429": {
"entryPoint": 11944,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7cab0eee60194fe291efdf0a50252e9239db88ff9b7a35da59bd6554f93f252c": {
"entryPoint": 11985,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8de434f38be4084093951d99ef6ad881eb532d2fda93e085bee354124c9fe325": {
"entryPoint": 12026,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 12067,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d169f51e5e283c8c890697eb898c30495d34dbb12b80eb91ce172a0d9c75ebfb": {
"entryPoint": 12108,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fc04af4ae46532a3ad64b0d610da97287598b7e1699e49132f813bee80cb04f8": {
"entryPoint": 12149,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 12228,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address_payable": {
"entryPoint": 12251,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 12274,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_contract$_IERC20_$5436": {
"entryPoint": 12297,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_contract$_IRelayHub_$737": {
"entryPoint": 12320,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_contract$_IUniswap_$5482": {
"entryPoint": 12343,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 12366,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:46233:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:23"
},
"nodeType": "YulFunctionCall",
"src": "78:20:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:23"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:23"
},
"nodeType": "YulFunctionCall",
"src": "107:33:23"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:23"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:23",
"type": ""
}
],
"src": "7:139:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "215:80:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "225:22:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "240:6:23"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "234:5:23"
},
"nodeType": "YulFunctionCall",
"src": "234:13:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "225:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "283:5:23"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "256:26:23"
},
"nodeType": "YulFunctionCall",
"src": "256:33:23"
},
"nodeType": "YulExpressionStatement",
"src": "256:33:23"
}
]
},
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "193:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "201:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "209:5:23",
"type": ""
}
],
"src": "152:143:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "361:95:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "371:29:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "393:6:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "380:12:23"
},
"nodeType": "YulFunctionCall",
"src": "380:20:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "371:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "444:5:23"
}
],
"functionName": {
"name": "validator_revert_t_address_payable",
"nodeType": "YulIdentifier",
"src": "409:34:23"
},
"nodeType": "YulFunctionCall",
"src": "409:41:23"
},
"nodeType": "YulExpressionStatement",
"src": "409:41:23"
}
]
},
"name": "abi_decode_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "339:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "347:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "355:5:23",
"type": ""
}
],
"src": "301:155:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "511:84:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "521:29:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "543:6:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "530:12:23"
},
"nodeType": "YulFunctionCall",
"src": "530:20:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "521:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "583:5:23"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "559:23:23"
},
"nodeType": "YulFunctionCall",
"src": "559:30:23"
},
"nodeType": "YulExpressionStatement",
"src": "559:30:23"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "489:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "497:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "505:5:23",
"type": ""
}
],
"src": "462:133:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "661:77:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "671:22:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "686:6:23"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "680:5:23"
},
"nodeType": "YulFunctionCall",
"src": "680:13:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "671:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "726:5:23"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "702:23:23"
},
"nodeType": "YulFunctionCall",
"src": "702:30:23"
},
"nodeType": "YulExpressionStatement",
"src": "702:30:23"
}
]
},
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "639:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "647:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "655:5:23",
"type": ""
}
],
"src": "601:137:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "831:478:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "880:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "882:77:23"
},
"nodeType": "YulFunctionCall",
"src": "882:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "882:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "859:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "867:4:23",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "855:3:23"
},
"nodeType": "YulFunctionCall",
"src": "855:17:23"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "874:3:23"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "851:3:23"
},
"nodeType": "YulFunctionCall",
"src": "851:27:23"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "844:6:23"
},
"nodeType": "YulFunctionCall",
"src": "844:35:23"
},
"nodeType": "YulIf",
"src": "841:122:23"
},
{
"nodeType": "YulAssignment",
"src": "972:30:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "995:6:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "982:12:23"
},
"nodeType": "YulFunctionCall",
"src": "982:20:23"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "972:6:23"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1045:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490",
"nodeType": "YulIdentifier",
"src": "1047:77:23"
},
"nodeType": "YulFunctionCall",
"src": "1047:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "1047:79:23"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1017:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1025:18:23",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1014:2:23"
},
"nodeType": "YulFunctionCall",
"src": "1014:30:23"
},
"nodeType": "YulIf",
"src": "1011:117:23"
},
{
"nodeType": "YulAssignment",
"src": "1137:29:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1153:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1161:4:23",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1149:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1149:17:23"
},
"variableNames": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "1137:8:23"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1220:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulIdentifier",
"src": "1222:77:23"
},
"nodeType": "YulFunctionCall",
"src": "1222:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "1222:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "1185:8:23"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1199:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1207:4:23",
"type": "",
"value": "0x01"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1195:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1195:17:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1181:3:23"
},
"nodeType": "YulFunctionCall",
"src": "1181:32:23"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1215:3:23"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1178:2:23"
},
"nodeType": "YulFunctionCall",
"src": "1178:41:23"
},
"nodeType": "YulIf",
"src": "1175:128:23"
}
]
},
"name": "abi_decode_t_bytes_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "798:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "806:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "arrayPos",
"nodeType": "YulTypedName",
"src": "814:8:23",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "824:6:23",
"type": ""
}
],
"src": "757:552:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1382:102:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1392:29:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1414:6:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1401:12:23"
},
"nodeType": "YulFunctionCall",
"src": "1401:20:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1392:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1472:5:23"
}
],
"functionName": {
"name": "validator_revert_t_contract$_IERC20_$5436",
"nodeType": "YulIdentifier",
"src": "1430:41:23"
},
"nodeType": "YulFunctionCall",
"src": "1430:48:23"
},
"nodeType": "YulExpressionStatement",
"src": "1430:48:23"
}
]
},
"name": "abi_decode_t_contract$_IERC20_$5436",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1360:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1368:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1376:5:23",
"type": ""
}
],
"src": "1315:169:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1559:104:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1569:29:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1591:6:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1578:12:23"
},
"nodeType": "YulFunctionCall",
"src": "1578:20:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1569:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1651:5:23"
}
],
"functionName": {
"name": "validator_revert_t_contract$_IRelayHub_$737",
"nodeType": "YulIdentifier",
"src": "1607:43:23"
},
"nodeType": "YulFunctionCall",
"src": "1607:50:23"
},
"nodeType": "YulExpressionStatement",
"src": "1607:50:23"
}
]
},
"name": "abi_decode_t_contract$_IRelayHub_$737",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1537:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1545:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1553:5:23",
"type": ""
}
],
"src": "1490:173:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1738:104:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1748:29:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1770:6:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1757:12:23"
},
"nodeType": "YulFunctionCall",
"src": "1757:20:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1748:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1830:5:23"
}
],
"functionName": {
"name": "validator_revert_t_contract$_IUniswap_$5482",
"nodeType": "YulIdentifier",
"src": "1786:43:23"
},
"nodeType": "YulFunctionCall",
"src": "1786:50:23"
},
"nodeType": "YulExpressionStatement",
"src": "1786:50:23"
}
]
},
"name": "abi_decode_t_contract$_IUniswap_$5482",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1716:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1724:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1732:5:23",
"type": ""
}
],
"src": "1669:173:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1928:97:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1938:22:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1953:6:23"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1947:5:23"
},
"nodeType": "YulFunctionCall",
"src": "1947:13:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1938:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2013:5:23"
}
],
"functionName": {
"name": "validator_revert_t_contract$_IUniswap_$5482",
"nodeType": "YulIdentifier",
"src": "1969:43:23"
},
"nodeType": "YulFunctionCall",
"src": "1969:50:23"
},
"nodeType": "YulExpressionStatement",
"src": "1969:50:23"
}
]
},
"name": "abi_decode_t_contract$_IUniswap_$5482_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1906:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1914:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1922:5:23",
"type": ""
}
],
"src": "1848:177:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2145:153:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2185:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_21fe6b43b4db61d76a176e95bf1a6b9ede4c301f93a4246f41fecb96e160861d",
"nodeType": "YulIdentifier",
"src": "2187:77:23"
},
"nodeType": "YulFunctionCall",
"src": "2187:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "2187:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2166:3:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2171:6:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2162:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2162:16:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2180:3:23",
"type": "",
"value": "256"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2158:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2158:26:23"
},
"nodeType": "YulIf",
"src": "2155:113:23"
},
{
"nodeType": "YulAssignment",
"src": "2277:15:23",
"value": {
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2286:6:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2277:5:23"
}
]
}
]
},
"name": "abi_decode_t_struct$_RelayData_$1326_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2123:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2131:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2139:5:23",
"type": ""
}
],
"src": "2064:234:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2424:152:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2463:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_21fe6b43b4db61d76a176e95bf1a6b9ede4c301f93a4246f41fecb96e160861d",
"nodeType": "YulIdentifier",
"src": "2465:77:23"
},
"nodeType": "YulFunctionCall",
"src": "2465:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "2465:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2445:3:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2450:6:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2441:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2441:16:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2459:2:23",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2437:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2437:25:23"
},
"nodeType": "YulIf",
"src": "2434:112:23"
},
{
"nodeType": "YulAssignment",
"src": "2555:15:23",
"value": {
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2564:6:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2555:5:23"
}
]
}
]
},
"name": "abi_decode_t_struct$_RelayRequest_$1333_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2402:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2410:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2418:5:23",
"type": ""
}
],
"src": "2340:236:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2634:87:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2644:29:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2666:6:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2653:12:23"
},
"nodeType": "YulFunctionCall",
"src": "2653:20:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2644:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2709:5:23"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2682:26:23"
},
"nodeType": "YulFunctionCall",
"src": "2682:33:23"
},
"nodeType": "YulExpressionStatement",
"src": "2682:33:23"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2612:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2620:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2628:5:23",
"type": ""
}
],
"src": "2582:139:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2790:80:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2800:22:23",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2815:6:23"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2809:5:23"
},
"nodeType": "YulFunctionCall",
"src": "2809:13:23"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2800:5:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2858:5:23"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2831:26:23"
},
"nodeType": "YulFunctionCall",
"src": "2831:33:23"
},
"nodeType": "YulExpressionStatement",
"src": "2831:33:23"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2768:6:23",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2776:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2784:5:23",
"type": ""
}
],
"src": "2727:143:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2942:263:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2988:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2990:77:23"
},
"nodeType": "YulFunctionCall",
"src": "2990:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "2990:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2963:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2972:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2959:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2959:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2984:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2955:3:23"
},
"nodeType": "YulFunctionCall",
"src": "2955:32:23"
},
"nodeType": "YulIf",
"src": "2952:119:23"
},
{
"nodeType": "YulBlock",
"src": "3081:117:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3096:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3110:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3100:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3125:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3160:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3171:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3156:3:23"
},
"nodeType": "YulFunctionCall",
"src": "3156:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3180:7:23"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3135:20:23"
},
"nodeType": "YulFunctionCall",
"src": "3135:53:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3125:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2912:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2923:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2935:6:23",
"type": ""
}
],
"src": "2876:329:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3288:274:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3334:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3336:77:23"
},
"nodeType": "YulFunctionCall",
"src": "3336:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "3336:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3309:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3318:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3305:3:23"
},
"nodeType": "YulFunctionCall",
"src": "3305:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3330:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3301:3:23"
},
"nodeType": "YulFunctionCall",
"src": "3301:32:23"
},
"nodeType": "YulIf",
"src": "3298:119:23"
},
{
"nodeType": "YulBlock",
"src": "3427:128:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3442:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3456:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3446:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3471:74:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3517:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3528:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3513:3:23"
},
"nodeType": "YulFunctionCall",
"src": "3513:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3537:7:23"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "3481:31:23"
},
"nodeType": "YulFunctionCall",
"src": "3481:64:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3471:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3258:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3269:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3281:6:23",
"type": ""
}
],
"src": "3211:351:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3725:688:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3772:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3774:77:23"
},
"nodeType": "YulFunctionCall",
"src": "3774:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "3774:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3746:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3755:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3742:3:23"
},
"nodeType": "YulFunctionCall",
"src": "3742:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3767:3:23",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3738:3:23"
},
"nodeType": "YulFunctionCall",
"src": "3738:33:23"
},
"nodeType": "YulIf",
"src": "3735:120:23"
},
{
"nodeType": "YulBlock",
"src": "3865:125:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3880:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3894:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3884:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3909:71:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3952:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3963:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3948:3:23"
},
"nodeType": "YulFunctionCall",
"src": "3948:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3972:7:23"
}
],
"functionName": {
"name": "abi_decode_t_address_payable",
"nodeType": "YulIdentifier",
"src": "3919:28:23"
},
"nodeType": "YulFunctionCall",
"src": "3919:61:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3909:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4000:118:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4015:16:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4029:2:23",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4019:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4045:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4080:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4091:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4076:3:23"
},
"nodeType": "YulFunctionCall",
"src": "4076:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4100:7:23"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4055:20:23"
},
"nodeType": "YulFunctionCall",
"src": "4055:53:23"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4045:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4128:133:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4143:16:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4157:2:23",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4147:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4173:78:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4223:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4234:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4219:3:23"
},
"nodeType": "YulFunctionCall",
"src": "4219:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4243:7:23"
}
],
"functionName": {
"name": "abi_decode_t_contract$_IERC20_$5436",
"nodeType": "YulIdentifier",
"src": "4183:35:23"
},
"nodeType": "YulFunctionCall",
"src": "4183:68:23"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4173:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4271:135:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4286:16:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4300:2:23",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4290:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4316:80:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4368:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4379:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4364:3:23"
},
"nodeType": "YulFunctionCall",
"src": "4364:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4388:7:23"
}
],
"functionName": {
"name": "abi_decode_t_contract$_IUniswap_$5482",
"nodeType": "YulIdentifier",
"src": "4326:37:23"
},
"nodeType": "YulFunctionCall",
"src": "4326:70:23"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4316:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address_payablet_uint256t_contract$_IERC20_$5436t_contract$_IUniswap_$5482",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3671:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3682:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3694:6:23",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3702:6:23",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3710:6:23",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3718:6:23",
"type": ""
}
],
"src": "3568:845:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4493:271:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4539:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4541:77:23"
},
"nodeType": "YulFunctionCall",
"src": "4541:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "4541:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4514:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4523:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4510:3:23"
},
"nodeType": "YulFunctionCall",
"src": "4510:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4535:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4506:3:23"
},
"nodeType": "YulFunctionCall",
"src": "4506:32:23"
},
"nodeType": "YulIf",
"src": "4503:119:23"
},
{
"nodeType": "YulBlock",
"src": "4632:125:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4647:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4661:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4651:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4676:71:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4719:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4730:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4715:3:23"
},
"nodeType": "YulFunctionCall",
"src": "4715:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4739:7:23"
}
],
"functionName": {
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulIdentifier",
"src": "4686:28:23"
},
"nodeType": "YulFunctionCall",
"src": "4686:61:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4676:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4463:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4474:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4486:6:23",
"type": ""
}
],
"src": "4419:345:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4932:1013:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4979:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4981:77:23"
},
"nodeType": "YulFunctionCall",
"src": "4981:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "4981:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4953:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4962:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4949:3:23"
},
"nodeType": "YulFunctionCall",
"src": "4949:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4974:3:23",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4945:3:23"
},
"nodeType": "YulFunctionCall",
"src": "4945:33:23"
},
"nodeType": "YulIf",
"src": "4942:120:23"
},
{
"nodeType": "YulBlock",
"src": "5072:296:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5087:45:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5118:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5129:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5114:3:23"
},
"nodeType": "YulFunctionCall",
"src": "5114:17:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5101:12:23"
},
"nodeType": "YulFunctionCall",
"src": "5101:31:23"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5091:6:23",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5179:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "5181:77:23"
},
"nodeType": "YulFunctionCall",
"src": "5181:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "5181:79:23"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5151:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5159:18:23",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5148:2:23"
},
"nodeType": "YulFunctionCall",
"src": "5148:30:23"
},
"nodeType": "YulIf",
"src": "5145:117:23"
},
{
"nodeType": "YulAssignment",
"src": "5276:82:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5330:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5341:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5326:3:23"
},
"nodeType": "YulFunctionCall",
"src": "5326:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5350:7:23"
}
],
"functionName": {
"name": "abi_decode_t_bytes_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "5294:31:23"
},
"nodeType": "YulFunctionCall",
"src": "5294:64:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5276:6:23"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5284:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5378:115:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5393:16:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5407:2:23",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5397:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5423:60:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5455:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5466:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5451:3:23"
},
"nodeType": "YulFunctionCall",
"src": "5451:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5475:7:23"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "5433:17:23"
},
"nodeType": "YulFunctionCall",
"src": "5433:50:23"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5423:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5503:118:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5518:16:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5532:2:23",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5522:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5548:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5583:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5594:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5579:3:23"
},
"nodeType": "YulFunctionCall",
"src": "5579:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5603:7:23"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5558:20:23"
},
"nodeType": "YulFunctionCall",
"src": "5558:53:23"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "5548:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5631:307:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5646:46:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5677:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5688:2:23",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5673:3:23"
},
"nodeType": "YulFunctionCall",
"src": "5673:18:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5660:12:23"
},
"nodeType": "YulFunctionCall",
"src": "5660:32:23"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5650:6:23",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5739:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "5741:77:23"
},
"nodeType": "YulFunctionCall",
"src": "5741:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "5741:79:23"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5711:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5719:18:23",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5708:2:23"
},
"nodeType": "YulFunctionCall",
"src": "5708:30:23"
},
"nodeType": "YulIf",
"src": "5705:117:23"
},
{
"nodeType": "YulAssignment",
"src": "5836:92:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5900:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5911:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5896:3:23"
},
"nodeType": "YulFunctionCall",
"src": "5896:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5920:7:23"
}
],
"functionName": {
"name": "abi_decode_t_struct$_RelayData_$1326_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "5846:49:23"
},
"nodeType": "YulFunctionCall",
"src": "5846:82:23"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "5836:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes_calldata_ptrt_boolt_uint256t_struct$_RelayData_$1326_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4870:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4881:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4893:6:23",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4901:6:23",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4909:6:23",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "4917:6:23",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "4925:6:23",
"type": ""
}
],
"src": "4770:1175:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6034:280:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6080:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6082:77:23"
},
"nodeType": "YulFunctionCall",
"src": "6082:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "6082:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6055:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6064:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6051:3:23"
},
"nodeType": "YulFunctionCall",
"src": "6051:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6076:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6047:3:23"
},
"nodeType": "YulFunctionCall",
"src": "6047:32:23"
},
"nodeType": "YulIf",
"src": "6044:119:23"
},
{
"nodeType": "YulBlock",
"src": "6173:134:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6188:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6202:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6192:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6217:80:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6269:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6280:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6265:3:23"
},
"nodeType": "YulFunctionCall",
"src": "6265:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6289:7:23"
}
],
"functionName": {
"name": "abi_decode_t_contract$_IRelayHub_$737",
"nodeType": "YulIdentifier",
"src": "6227:37:23"
},
"nodeType": "YulFunctionCall",
"src": "6227:70:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6217:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_contract$_IRelayHub_$737",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6004:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6015:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6027:6:23",
"type": ""
}
],
"src": "5951:363:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6414:291:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6460:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6462:77:23"
},
"nodeType": "YulFunctionCall",
"src": "6462:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "6462:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6435:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6444:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6431:3:23"
},
"nodeType": "YulFunctionCall",
"src": "6431:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6456:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6427:3:23"
},
"nodeType": "YulFunctionCall",
"src": "6427:32:23"
},
"nodeType": "YulIf",
"src": "6424:119:23"
},
{
"nodeType": "YulBlock",
"src": "6553:145:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6568:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6582:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6572:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6597:91:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6660:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6671:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6656:3:23"
},
"nodeType": "YulFunctionCall",
"src": "6656:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6680:7:23"
}
],
"functionName": {
"name": "abi_decode_t_contract$_IUniswap_$5482_fromMemory",
"nodeType": "YulIdentifier",
"src": "6607:48:23"
},
"nodeType": "YulFunctionCall",
"src": "6607:81:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6597:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_contract$_IUniswap_$5482_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6384:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6395:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6407:6:23",
"type": ""
}
],
"src": "6320:385:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6809:455:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6855:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6857:77:23"
},
"nodeType": "YulFunctionCall",
"src": "6857:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "6857:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6830:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6839:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6826:3:23"
},
"nodeType": "YulFunctionCall",
"src": "6826:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6851:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6822:3:23"
},
"nodeType": "YulFunctionCall",
"src": "6822:32:23"
},
"nodeType": "YulIf",
"src": "6819:119:23"
},
{
"nodeType": "YulBlock",
"src": "6948:309:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6963:45:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6994:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7005:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6990:3:23"
},
"nodeType": "YulFunctionCall",
"src": "6990:17:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6977:12:23"
},
"nodeType": "YulFunctionCall",
"src": "6977:31:23"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6967:6:23",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7055:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "7057:77:23"
},
"nodeType": "YulFunctionCall",
"src": "7057:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "7057:79:23"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7027:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7035:18:23",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7024:2:23"
},
"nodeType": "YulFunctionCall",
"src": "7024:30:23"
},
"nodeType": "YulIf",
"src": "7021:117:23"
},
{
"nodeType": "YulAssignment",
"src": "7152:95:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7219:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7230:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7215:3:23"
},
"nodeType": "YulFunctionCall",
"src": "7215:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7239:7:23"
}
],
"functionName": {
"name": "abi_decode_t_struct$_RelayRequest_$1333_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "7162:52:23"
},
"nodeType": "YulFunctionCall",
"src": "7162:85:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7152:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_struct$_RelayRequest_$1333_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6779:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6790:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6802:6:23",
"type": ""
}
],
"src": "6711:553:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7457:1198:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7504:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7506:77:23"
},
"nodeType": "YulFunctionCall",
"src": "7506:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "7506:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7478:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7487:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7474:3:23"
},
"nodeType": "YulFunctionCall",
"src": "7474:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7499:3:23",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7470:3:23"
},
"nodeType": "YulFunctionCall",
"src": "7470:33:23"
},
"nodeType": "YulIf",
"src": "7467:120:23"
},
{
"nodeType": "YulBlock",
"src": "7597:309:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7612:45:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7643:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7654:1:23",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7639:3:23"
},
"nodeType": "YulFunctionCall",
"src": "7639:17:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7626:12:23"
},
"nodeType": "YulFunctionCall",
"src": "7626:31:23"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7616:6:23",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7704:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "7706:77:23"
},
"nodeType": "YulFunctionCall",
"src": "7706:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "7706:79:23"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7676:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7684:18:23",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7673:2:23"
},
"nodeType": "YulFunctionCall",
"src": "7673:30:23"
},
"nodeType": "YulIf",
"src": "7670:117:23"
},
{
"nodeType": "YulAssignment",
"src": "7801:95:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7868:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7879:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7864:3:23"
},
"nodeType": "YulFunctionCall",
"src": "7864:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7888:7:23"
}
],
"functionName": {
"name": "abi_decode_t_struct$_RelayRequest_$1333_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "7811:52:23"
},
"nodeType": "YulFunctionCall",
"src": "7811:85:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7801:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7916:297:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7931:46:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7962:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7973:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7958:3:23"
},
"nodeType": "YulFunctionCall",
"src": "7958:18:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7945:12:23"
},
"nodeType": "YulFunctionCall",
"src": "7945:32:23"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7935:6:23",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8024:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "8026:77:23"
},
"nodeType": "YulFunctionCall",
"src": "8026:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "8026:79:23"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7996:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8004:18:23",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7993:2:23"
},
"nodeType": "YulFunctionCall",
"src": "7993:30:23"
},
"nodeType": "YulIf",
"src": "7990:117:23"
},
{
"nodeType": "YulAssignment",
"src": "8121:82:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8175:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8186:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8171:3:23"
},
"nodeType": "YulFunctionCall",
"src": "8171:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8195:7:23"
}
],
"functionName": {
"name": "abi_decode_t_bytes_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "8139:31:23"
},
"nodeType": "YulFunctionCall",
"src": "8139:64:23"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "8121:6:23"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "8129:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8223:297:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8238:46:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8269:9:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8280:2:23",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8265:3:23"
},
"nodeType": "YulFunctionCall",
"src": "8265:18:23"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "8252:12:23"
},
"nodeType": "YulFunctionCall",
"src": "8252:32:23"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8242:6:23",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8331:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "8333:77:23"
},
"nodeType": "YulFunctionCall",
"src": "8333:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "8333:79:23"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8303:6:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8311:18:23",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8300:2:23"
},
"nodeType": "YulFunctionCall",
"src": "8300:30:23"
},
"nodeType": "YulIf",
"src": "8297:117:23"
},
{
"nodeType": "YulAssignment",
"src": "8428:82:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8482:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8493:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8478:3:23"
},
"nodeType": "YulFunctionCall",
"src": "8478:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8502:7:23"
}
],
"functionName": {
"name": "abi_decode_t_bytes_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "8446:31:23"
},
"nodeType": "YulFunctionCall",
"src": "8446:64:23"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "8428:6:23"
},
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "8436:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "8530:118:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8545:16:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8559:2:23",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8549:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8575:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8610:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8621:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8606:3:23"
},
"nodeType": "YulFunctionCall",
"src": "8606:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8630:7:23"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "8585:20:23"
},
"nodeType": "YulFunctionCall",
"src": "8585:53:23"
},
"variableNames": [
{
"name": "value5",
"nodeType": "YulIdentifier",
"src": "8575:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_struct$_RelayRequest_$1333_calldata_ptrt_bytes_calldata_ptrt_bytes_calldata_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7387:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7398:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7410:6:23",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7418:6:23",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "7426:6:23",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "7434:6:23",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "7442:6:23",
"type": ""
},
{
"name": "value5",
"nodeType": "YulTypedName",
"src": "7450:6:23",
"type": ""
}
],
"src": "7270:1385:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8727:263:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8773:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "8775:77:23"
},
"nodeType": "YulFunctionCall",
"src": "8775:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "8775:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8748:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8757:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8744:3:23"
},
"nodeType": "YulFunctionCall",
"src": "8744:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8769:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8740:3:23"
},
"nodeType": "YulFunctionCall",
"src": "8740:32:23"
},
"nodeType": "YulIf",
"src": "8737:119:23"
},
{
"nodeType": "YulBlock",
"src": "8866:117:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8881:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8895:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8885:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8910:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8945:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8956:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8941:3:23"
},
"nodeType": "YulFunctionCall",
"src": "8941:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8965:7:23"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "8920:20:23"
},
"nodeType": "YulFunctionCall",
"src": "8920:53:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8910:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8697:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8708:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8720:6:23",
"type": ""
}
],
"src": "8661:329:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9073:274:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9119:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "9121:77:23"
},
"nodeType": "YulFunctionCall",
"src": "9121:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "9121:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9094:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9103:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9090:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9090:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9115:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9086:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9086:32:23"
},
"nodeType": "YulIf",
"src": "9083:119:23"
},
{
"nodeType": "YulBlock",
"src": "9212:128:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9227:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9241:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9231:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9256:74:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9302:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9313:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9298:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9298:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9322:7:23"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "9266:31:23"
},
"nodeType": "YulFunctionCall",
"src": "9266:64:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9256:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9043:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9054:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9066:6:23",
"type": ""
}
],
"src": "8996:351:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9444:399:23",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9490:83:23",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "9492:77:23"
},
"nodeType": "YulFunctionCall",
"src": "9492:79:23"
},
"nodeType": "YulExpressionStatement",
"src": "9492:79:23"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9465:7:23"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9474:9:23"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9461:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9461:23:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9486:2:23",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9457:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9457:32:23"
},
"nodeType": "YulIf",
"src": "9454:119:23"
},
{
"nodeType": "YulBlock",
"src": "9583:117:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9598:15:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9612:1:23",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9602:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9627:63:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9662:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9673:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9658:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9658:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9682:7:23"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9637:20:23"
},
"nodeType": "YulFunctionCall",
"src": "9637:53:23"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9627:6:23"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9710:126:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9725:16:23",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9739:2:23",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9729:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9755:71:23",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9798:9:23"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9809:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9794:3:23"
},
"nodeType": "YulFunctionCall",
"src": "9794:22:23"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9818:7:23"
}
],
"functionName": {
"name": "abi_decode_t_address_payable",
"nodeType": "YulIdentifier",
"src": "9765:28:23"
},
"nodeType": "YulFunctionCall",
"src": "9765:61:23"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "9755:6:23"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9406:9:23",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9417:7:23",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9429:6:23",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9437:6:23",
"type": ""
}
],
"src": "9353:490:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9930:61:23",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9947:3:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9978:5:23"
}
],
"functionName": {
"name": "cleanup_t_address_payable",
"nodeType": "YulIdentifier",
"src": "9952:25:23"
},
"nodeType": "YulFunctionCall",
"src": "9952:32:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9940:6:23"
},
"nodeType": "YulFunctionCall",
"src": "9940:45:23"
},
"nodeType": "YulExpressionStatement",
"src": "9940:45:23"
}
]
},
"name": "abi_encode_t_address_payable_to_t_address_payable_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9918:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9925:3:23",
"type": ""
}
],
"src": "9849:142:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10052:53:23",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10069:3:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10092:5:23"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "10074:17:23"
},
"nodeType": "YulFunctionCall",
"src": "10074:24:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10062:6:23"
},
"nodeType": "YulFunctionCall",
"src": "10062:37:23"
},
"nodeType": "YulExpressionStatement",
"src": "10062:37:23"
}
]
},
"name": "abi_encode_t_address_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10040:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10047:3:23",
"type": ""
}
],
"src": "9997:108:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10176:53:23",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10193:3:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10216:5:23"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "10198:17:23"
},
"nodeType": "YulFunctionCall",
"src": "10198:24:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10186:6:23"
},
"nodeType": "YulFunctionCall",
"src": "10186:37:23"
},
"nodeType": "YulExpressionStatement",
"src": "10186:37:23"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10164:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10171:3:23",
"type": ""
}
],
"src": "10111:118:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10294:50:23",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10311:3:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10331:5:23"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "10316:14:23"
},
"nodeType": "YulFunctionCall",
"src": "10316:21:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10304:6:23"
},
"nodeType": "YulFunctionCall",
"src": "10304:34:23"
},
"nodeType": "YulExpressionStatement",
"src": "10304:34:23"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10282:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10289:3:23",
"type": ""
}
],
"src": "10235:109:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10462:191:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10472:67:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10527:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10532:6:23"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10479:47:23"
},
"nodeType": "YulFunctionCall",
"src": "10479:60:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10472:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "10573:5:23"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10580:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10585:6:23"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "10549:23:23"
},
"nodeType": "YulFunctionCall",
"src": "10549:43:23"
},
"nodeType": "YulExpressionStatement",
"src": "10549:43:23"
},
{
"nodeType": "YulAssignment",
"src": "10601:46:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10612:3:23"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10639:6:23"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "10617:21:23"
},
"nodeType": "YulFunctionCall",
"src": "10617:29:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10608:3:23"
},
"nodeType": "YulFunctionCall",
"src": "10608:39:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10601:3:23"
}
]
}
]
},
"name": "abi_encode_t_bytes_calldata_ptr_to_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "10435:5:23",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10442:6:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10450:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10458:3:23",
"type": ""
}
],
"src": "10372:281:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10749:270:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10759:52:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10805:5:23"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10773:31:23"
},
"nodeType": "YulFunctionCall",
"src": "10773:38:23"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10763:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10820:77:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10885:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10890:6:23"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10827:57:23"
},
"nodeType": "YulFunctionCall",
"src": "10827:70:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10820:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10932:5:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10939:4:23",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10928:3:23"
},
"nodeType": "YulFunctionCall",
"src": "10928:16:23"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10946:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10951:6:23"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "10906:21:23"
},
"nodeType": "YulFunctionCall",
"src": "10906:52:23"
},
"nodeType": "YulExpressionStatement",
"src": "10906:52:23"
},
{
"nodeType": "YulAssignment",
"src": "10967:46:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10978:3:23"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11005:6:23"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "10983:21:23"
},
"nodeType": "YulFunctionCall",
"src": "10983:29:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10974:3:23"
},
"nodeType": "YulFunctionCall",
"src": "10974:39:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10967:3:23"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10730:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10737:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10745:3:23",
"type": ""
}
],
"src": "10659:360:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11133:265:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11143:52:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11189:5:23"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11157:31:23"
},
"nodeType": "YulFunctionCall",
"src": "11157:38:23"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11147:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11204:95:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11287:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11292:6:23"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "11211:75:23"
},
"nodeType": "YulFunctionCall",
"src": "11211:88:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11204:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11334:5:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11341:4:23",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11330:3:23"
},
"nodeType": "YulFunctionCall",
"src": "11330:16:23"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11348:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11353:6:23"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "11308:21:23"
},
"nodeType": "YulFunctionCall",
"src": "11308:52:23"
},
"nodeType": "YulExpressionStatement",
"src": "11308:52:23"
},
{
"nodeType": "YulAssignment",
"src": "11369:23:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11380:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11385:6:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11376:3:23"
},
"nodeType": "YulFunctionCall",
"src": "11376:16:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11369:3:23"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11114:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11121:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11129:3:23",
"type": ""
}
],
"src": "11025:373:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11486:83:23",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11503:3:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11556:5:23"
}
],
"functionName": {
"name": "convert_t_contract$_IUniswap_$5482_to_t_address",
"nodeType": "YulIdentifier",
"src": "11508:47:23"
},
"nodeType": "YulFunctionCall",
"src": "11508:54:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11496:6:23"
},
"nodeType": "YulFunctionCall",
"src": "11496:67:23"
},
"nodeType": "YulExpressionStatement",
"src": "11496:67:23"
}
]
},
"name": "abi_encode_t_contract$_IUniswap_$5482_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11474:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11481:3:23",
"type": ""
}
],
"src": "11404:165:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11658:84:23",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11675:3:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11729:5:23"
}
],
"functionName": {
"name": "convert_t_contract$_ShaneCoin_$5959_to_t_address",
"nodeType": "YulIdentifier",
"src": "11680:48:23"
},
"nodeType": "YulFunctionCall",
"src": "11680:55:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11668:6:23"
},
"nodeType": "YulFunctionCall",
"src": "11668:68:23"
},
"nodeType": "YulExpressionStatement",
"src": "11668:68:23"
}
]
},
"name": "abi_encode_t_contract$_ShaneCoin_$5959_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11646:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11653:3:23",
"type": ""
}
],
"src": "11575:167:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11898:151:23",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11915:3:23"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12036:5:23"
}
],
"functionName": {
"name": "convert_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "11920:115:23"
},
"nodeType": "YulFunctionCall",
"src": "11920:122:23"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11908:6:23"
},
"nodeType": "YulFunctionCall",
"src": "11908:135:23"
},
"nodeType": "YulExpressionStatement",
"src": "11908:135:23"
}
]
},
"name": "abi_encode_t_rational_115792089237316195423570985008687907853269984665640564039457584007913129639935_by_1_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11886:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11893:3:23",
"type": ""
}
],
"src": "11748:301:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12147:272:23",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "12157:53:23",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12204:5:23"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "12171:32:23"
},
"nodeType": "YulFunctionCall",
"src": "12171:39:23"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12161:6:23",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "12219:78:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12285:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12290:6:23"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12226:58:23"
},
"nodeType": "YulFunctionCall",
"src": "12226:71:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12219:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12332:5:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12339:4:23",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12328:3:23"
},
"nodeType": "YulFunctionCall",
"src": "12328:16:23"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12346:3:23"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12351:6:23"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "12306:21:23"
},
"nodeType": "YulFunctionCall",
"src": "12306:52:23"
},
"nodeType": "YulExpressionStatement",
"src": "12306:52:23"
},
{
"nodeType": "YulAssignment",
"src": "12367:46:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12378:3:23"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12405:6:23"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "12383:21:23"
},
"nodeType": "YulFunctionCall",
"src": "12383:29:23"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12374:3:23"
},
"nodeType": "YulFunctionCall",
"src": "12374:39:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12367:3:23"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12128:5:23",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12135:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12143:3:23",
"type": ""
}
],
"src": "12055:364:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12571:220:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12581:74:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12647:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12652:2:23",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12588:58:23"
},
"nodeType": "YulFunctionCall",
"src": "12588:67:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12581:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12753:3:23"
}
],
"functionName": {
"name": "store_literal_in_memory_18a22d77ec00a6a6e3ef02db4f7f7b9054ded7d3fa47898d59b46e9844b2acb4",
"nodeType": "YulIdentifier",
"src": "12664:88:23"
},
"nodeType": "YulFunctionCall",
"src": "12664:93:23"
},
"nodeType": "YulExpressionStatement",
"src": "12664:93:23"
},
{
"nodeType": "YulAssignment",
"src": "12766:19:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12777:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12782:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12773:3:23"
},
"nodeType": "YulFunctionCall",
"src": "12773:12:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12766:3:23"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_18a22d77ec00a6a6e3ef02db4f7f7b9054ded7d3fa47898d59b46e9844b2acb4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12559:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12567:3:23",
"type": ""
}
],
"src": "12425:366:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12943:220:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12953:74:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13019:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13024:2:23",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12960:58:23"
},
"nodeType": "YulFunctionCall",
"src": "12960:67:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12953:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13125:3:23"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "13036:88:23"
},
"nodeType": "YulFunctionCall",
"src": "13036:93:23"
},
"nodeType": "YulExpressionStatement",
"src": "13036:93:23"
},
{
"nodeType": "YulAssignment",
"src": "13138:19:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13149:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13154:2:23",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13145:3:23"
},
"nodeType": "YulFunctionCall",
"src": "13145:12:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13138:3:23"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12931:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12939:3:23",
"type": ""
}
],
"src": "12797:366:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13315:220:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13325:74:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13391:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13396:2:23",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13332:58:23"
},
"nodeType": "YulFunctionCall",
"src": "13332:67:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13325:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13497:3:23"
}
],
"functionName": {
"name": "store_literal_in_memory_29871498aacc097c93f180e11ad1fc7bbe7fd0af33ce4f55cda39c1be559cc5e",
"nodeType": "YulIdentifier",
"src": "13408:88:23"
},
"nodeType": "YulFunctionCall",
"src": "13408:93:23"
},
"nodeType": "YulExpressionStatement",
"src": "13408:93:23"
},
{
"nodeType": "YulAssignment",
"src": "13510:19:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13521:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13526:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13517:3:23"
},
"nodeType": "YulFunctionCall",
"src": "13517:12:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13510:3:23"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_29871498aacc097c93f180e11ad1fc7bbe7fd0af33ce4f55cda39c1be559cc5e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13303:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13311:3:23",
"type": ""
}
],
"src": "13169:366:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13687:220:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13697:74:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13763:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13768:2:23",
"type": "",
"value": "13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13704:58:23"
},
"nodeType": "YulFunctionCall",
"src": "13704:67:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13697:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13869:3:23"
}
],
"functionName": {
"name": "store_literal_in_memory_313f2c731b040432382b587b0cf65ba7b6e869f03bb701593151aa9a51d2bdd8",
"nodeType": "YulIdentifier",
"src": "13780:88:23"
},
"nodeType": "YulFunctionCall",
"src": "13780:93:23"
},
"nodeType": "YulExpressionStatement",
"src": "13780:93:23"
},
{
"nodeType": "YulAssignment",
"src": "13882:19:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13893:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13898:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13889:3:23"
},
"nodeType": "YulFunctionCall",
"src": "13889:12:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13882:3:23"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_313f2c731b040432382b587b0cf65ba7b6e869f03bb701593151aa9a51d2bdd8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13675:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13683:3:23",
"type": ""
}
],
"src": "13541:366:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14059:220:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14069:74:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14135:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14140:2:23",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14076:58:23"
},
"nodeType": "YulFunctionCall",
"src": "14076:67:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14069:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14241:3:23"
}
],
"functionName": {
"name": "store_literal_in_memory_3a2fca03255f31860c82d52f1191f77065f7ff670c017cd47e3568fc231bf429",
"nodeType": "YulIdentifier",
"src": "14152:88:23"
},
"nodeType": "YulFunctionCall",
"src": "14152:93:23"
},
"nodeType": "YulExpressionStatement",
"src": "14152:93:23"
},
{
"nodeType": "YulAssignment",
"src": "14254:19:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14265:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14270:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14261:3:23"
},
"nodeType": "YulFunctionCall",
"src": "14261:12:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14254:3:23"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3a2fca03255f31860c82d52f1191f77065f7ff670c017cd47e3568fc231bf429_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14047:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14055:3:23",
"type": ""
}
],
"src": "13913:366:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14431:220:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14441:74:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14507:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14512:2:23",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14448:58:23"
},
"nodeType": "YulFunctionCall",
"src": "14448:67:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14441:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14613:3:23"
}
],
"functionName": {
"name": "store_literal_in_memory_7cab0eee60194fe291efdf0a50252e9239db88ff9b7a35da59bd6554f93f252c",
"nodeType": "YulIdentifier",
"src": "14524:88:23"
},
"nodeType": "YulFunctionCall",
"src": "14524:93:23"
},
"nodeType": "YulExpressionStatement",
"src": "14524:93:23"
},
{
"nodeType": "YulAssignment",
"src": "14626:19:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14637:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14642:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14633:3:23"
},
"nodeType": "YulFunctionCall",
"src": "14633:12:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14626:3:23"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7cab0eee60194fe291efdf0a50252e9239db88ff9b7a35da59bd6554f93f252c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14419:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14427:3:23",
"type": ""
}
],
"src": "14285:366:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14803:220:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14813:74:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14879:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14884:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14820:58:23"
},
"nodeType": "YulFunctionCall",
"src": "14820:67:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14813:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14985:3:23"
}
],
"functionName": {
"name": "store_literal_in_memory_8de434f38be4084093951d99ef6ad881eb532d2fda93e085bee354124c9fe325",
"nodeType": "YulIdentifier",
"src": "14896:88:23"
},
"nodeType": "YulFunctionCall",
"src": "14896:93:23"
},
"nodeType": "YulExpressionStatement",
"src": "14896:93:23"
},
{
"nodeType": "YulAssignment",
"src": "14998:19:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15009:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15014:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15005:3:23"
},
"nodeType": "YulFunctionCall",
"src": "15005:12:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14998:3:23"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8de434f38be4084093951d99ef6ad881eb532d2fda93e085bee354124c9fe325_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14791:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14799:3:23",
"type": ""
}
],
"src": "14657:366:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15175:220:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15185:74:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15251:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15256:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15192:58:23"
},
"nodeType": "YulFunctionCall",
"src": "15192:67:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15185:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15357:3:23"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "15268:88:23"
},
"nodeType": "YulFunctionCall",
"src": "15268:93:23"
},
"nodeType": "YulExpressionStatement",
"src": "15268:93:23"
},
{
"nodeType": "YulAssignment",
"src": "15370:19:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15381:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15386:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15377:3:23"
},
"nodeType": "YulFunctionCall",
"src": "15377:12:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15370:3:23"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15163:3:23",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15171:3:23",
"type": ""
}
],
"src": "15029:366:23"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15547:220:23",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15557:74:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15623:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15628:2:23",
"type": "",
"value": "30"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15564:58:23"
},
"nodeType": "YulFunctionCall",
"src": "15564:67:23"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15557:3:23"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15729:3:23"
}
],
"functionName": {
"name": "store_literal_in_memory_d169f51e5e283c8c890697eb898c30495d34dbb12b80eb91ce172a0d9c75ebfb",
"nodeType": "YulIdentifier",
"src": "15640:88:23"
},
"nodeType": "YulFunctionCall",
"src": "15640:93:23"
},
"nodeType": "YulExpressionStatement",
"src": "15640:93:23"
},
{
"nodeType": "YulAssignment",
"src": "15742:19:23",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15753:3:23"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15758:2:23",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15749:3:23"
},
"nodeType": "YulFunctionCall",
"src": "15749:12:23"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15742:3:23"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d169f51e5e283c8c890697eb898c30495d34dbb12b80eb91ce172a0d9c75ebfb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment