Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fetsorn/e978e0e66370001fca33eaa477cf545a to your computer and use it in GitHub Desktop.
Save fetsorn/e978e0e66370001fca33eaa477cf545a 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.3+commit.8d00100c.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../utils/EnumerableSet.sol";
import "../utils/Address.sol";
import "../GSN/Context.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it.
*/
abstract contract AccessControl is Context {
using EnumerableSet for EnumerableSet.AddressSet;
using Address for address;
struct RoleData {
EnumerableSet.AddressSet members;
bytes32 adminRole;
}
mapping (bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view returns (bool) {
return _roles[role].members.contains(account);
}
/**
* @dev Returns the number of accounts that have `role`. Can be used
* together with {getRoleMember} to enumerate all bearers of a role.
*/
function getRoleMemberCount(bytes32 role) public view returns (uint256) {
return _roles[role].members.length();
}
/**
* @dev Returns one of the accounts that have `role`. `index` must be a
* value between 0 and {getRoleMemberCount}, non-inclusive.
*
* Role bearers are not sorted in any particular way, and their ordering may
* change at any point.
*
* WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
* you perform all queries on the same block. See the following
* https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
* for more information.
*/
function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
return _roles[role].members.at(index);
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev 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.
*/
function grantRole(bytes32 role, address account) public virtual {
require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) public virtual {
require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");
_revokeRole(role, account);
}
/**
* @dev 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`.
*/
function renounceRole(bytes32 role, address account) public virtual {
require(account == _msgSender(), "AccessControl: can only renounce roles for self");
_revokeRole(role, account);
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event. Note that unlike {grantRole}, this function doesn't perform any
* checks on the calling account.
*
* [WARNING]
* ====
* This function should only be called from the constructor when setting
* up the initial roles for the system.
*
* Using this function in any other way is effectively circumventing the admin
* system imposed by {AccessControl}.
* ====
*/
function _setupRole(bytes32 role, address account) internal virtual {
_grantRole(role, account);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
_roles[role].adminRole = adminRole;
}
function _grantRole(bytes32 role, address account) private {
if (_roles[role].members.add(account)) {
emit RoleGranted(role, account, _msgSender());
}
}
function _revokeRole(bytes32 role, address account) private {
if (_roles[role].members.remove(account)) {
emit RoleRevoked(role, account, _msgSender());
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../GSN/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../access/AccessControl.sol";
import "../GSN/Context.sol";
import "../token/ERC20/ERC20.sol";
import "../token/ERC20/ERC20Burnable.sol";
import "../token/ERC20/ERC20Pausable.sol";
/**
* @dev {ERC20} token, including:
*
* - ability for holders to burn (destroy) their tokens
* - a minter role that allows for token minting (creation)
* - a pauser role that allows to stop all token transfers
*
* This contract uses {AccessControl} to lock permissioned functions using the
* different roles - head to its documentation for details.
*
* The account that deploys the contract will be granted the minter and pauser
* roles, as well as the default admin role, which will let it grant both minter
* and pauser roles to other accounts.
*/
contract ERC20PresetMinterPauser is Context, AccessControl, ERC20Burnable, ERC20Pausable {
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
/**
* @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
* account that deploys the contract.
*
* See {ERC20-constructor}.
*/
constructor(string memory name, string memory symbol) public ERC20(name, symbol) {
_setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
_setupRole(MINTER_ROLE, _msgSender());
_setupRole(PAUSER_ROLE, _msgSender());
}
/**
* @dev Creates `amount` new tokens for `to`.
*
* See {ERC20-_mint}.
*
* Requirements:
*
* - the caller must have the `MINTER_ROLE`.
*/
function mint(address to, uint256 amount) public virtual {
require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
_mint(to, amount);
}
/**
* @dev Pauses all token transfers.
*
* See {ERC20Pausable} and {Pausable-_pause}.
*
* Requirements:
*
* - the caller must have the `PAUSER_ROLE`.
*/
function pause() public virtual {
require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
_pause();
}
/**
* @dev Unpauses all token transfers.
*
* See {ERC20Pausable} and {Pausable-_unpause}.
*
* Requirements:
*
* - the caller must have the `PAUSER_ROLE`.
*/
function unpause() public virtual {
require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
_unpause();
}
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) {
super._beforeTokenTransfer(from, to, amount);
}
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../../GSN/Context.sol";
import "./IERC20.sol";
import "../../math/SafeMath.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20 {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for {name} and {symbol}, initializes {decimals} with
* a default value of 18.
*
* To select a different value for {decimals}, use {_setupDecimals}.
*
* All three of these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name_, string memory symbol_) public {
_name = name_;
_symbol = symbol_;
_decimals = 18;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Sets {decimals} to a value other than the default one of 18.
*
* WARNING: This function should only be called from the constructor. Most
* applications that interact with token contracts will not expect
* {decimals} to ever change, and may work incorrectly if it does.
*/
function _setupDecimals(uint8 decimals_) internal {
_decimals = decimals_;
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../../GSN/Context.sol";
import "./ERC20.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
using SafeMath for uint256;
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");
_approve(account, _msgSender(), decreasedAllowance);
_burn(account, amount);
}
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "./ERC20.sol";
import "../../utils/Pausable.sol";
/**
* @dev ERC20 token with pausable token transfers, minting and burning.
*
* Useful for scenarios such as preventing trades until the end of an evaluation
* period, or having an emergency switch for freezing all token transfers in the
* event of a large bug.
*/
abstract contract ERC20Pausable is ERC20, Pausable {
/**
* @dev See {ERC20-_beforeTokenTransfer}.
*
* Requirements:
*
* - the contract must not be paused.
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
super._beforeTokenTransfer(from, to, amount);
require(!paused(), "ERC20Pausable: token transfer while paused");
}
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping (bytes32 => uint256) _indexes;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) { // Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
// When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
// so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
bytes32 lastvalue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastvalue;
// Update the index for the moved value
set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._indexes[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
require(set._values.length > index, "EnumerableSet: index out of bounds");
return set._values[index];
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(value)));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(value)));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(value)));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint256(_at(set._inner, index)));
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "../GSN/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor () internal {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!_paused, "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(_paused, "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
The 'scripts' folder contains example async/await scripts for deploying the 'Storage' contract.
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required).
Scripts have full access to the web3.js and ethers.js libraries.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
{
"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": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"DEFAULT_ADMIN_ROLE()": "a217fddf",
"getRoleAdmin(bytes32)": "248a9ca3",
"getRoleMember(bytes32,uint256)": "9010d07c",
"getRoleMemberCount(bytes32)": "ca15c873",
"grantRole(bytes32,address)": "2f2ff15d",
"hasRole(bytes32,address)": "91d14854",
"renounceRole(bytes32,address)": "36568abe",
"revokeRole(bytes32,address)": "d547741f"
}
},
"abi": [
{
"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"
},
{
"inputs": [],
"name": "DEFAULT_ADMIN_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"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": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "getRoleMember",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
}
],
"name": "getRoleMemberCount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"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": "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"
}
]
}
{
"compiler": {
"version": "0.7.4+commit.3f05b770"
},
"language": "Solidity",
"output": {
"abi": [
{
"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"
},
{
"inputs": [],
"name": "DEFAULT_ADMIN_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"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": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "getRoleMember",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
}
],
"name": "getRoleMemberCount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"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": "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"
}
],
"devdoc": {
"details": "Contract module that allows children to implement role-based access control mechanisms. Roles are referred to by their `bytes32` identifier. These should be exposed in the external API and be unique. The best way to achieve this is by using `public constant` hash digests: ``` bytes32 public constant MY_ROLE = keccak256(\"MY_ROLE\"); ``` Roles can be used to represent a set of permissions. To restrict access to a function call, use {hasRole}: ``` function foo() public { require(hasRole(MY_ROLE, msg.sender)); ... } ``` Roles can be granted and revoked dynamically via the {grantRole} and {revokeRole} functions. Each role has an associated admin role, and only accounts that have a role's admin role can call {grantRole} and {revokeRole}. By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means that only accounts with this role will be able to grant or revoke other roles. More complex role relationships can be created by using {_setRoleAdmin}. WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to grant and revoke this role. Extra precautions should be taken to secure accounts that have been granted it.",
"events": {
"RoleAdminChanged(bytes32,bytes32,bytes32)": {
"details": "Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this. _Available since v3.1._"
},
"RoleGranted(bytes32,address,address)": {
"details": "Emitted when `account` is granted `role`. `sender` is the account that originated the contract call, an admin role bearer except when using {_setupRole}."
},
"RoleRevoked(bytes32,address,address)": {
"details": "Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call: - if using `revokeRole`, it is the admin role bearer - if using `renounceRole`, it is the role bearer (i.e. `account`)"
}
},
"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}."
},
"getRoleMember(bytes32,uint256)": {
"details": "Returns one of the accounts that have `role`. `index` must be a value between 0 and {getRoleMemberCount}, non-inclusive. Role bearers are not sorted in any particular way, and their ordering may change at any point. WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure you perform all queries on the same block. See the following https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] for more information."
},
"getRoleMemberCount(bytes32)": {
"details": "Returns the number of accounts that have `role`. Can be used together with {getRoleMember} to enumerate all bearers of a role."
},
"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."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"gtoken_flat.sol": "AccessControl"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"gtoken_flat.sol": {
"keccak256": "0xf8cac1588ed0bc037f80edf78040e1a622e03aac1a0e61049cfe3f87fbdf5e05",
"license": "MIT",
"urls": [
"bzz-raw://da19d4d045d3be2a4ebff3055b20d3e71ff5741b77123c47ab37497f56c15db4",
"dweb:/ipfs/QmSRB7Fmw7XYL2JYasabrzPp8aH5tELuruCv7y7JakJbb9"
]
}
},
"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": {
"generatedSources": [],
"linkReferences": {},
"object": "60566023600b82828239805160001a607314601657fe5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220c4f0faf954e215c6489be666cea71726b85cf94d9f371b21e80dbc5047aca68c64736f6c63430007040033",
"opcodes": "PUSH1 0x56 PUSH1 0x23 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x16 JUMPI INVALID 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 0xC4 CREATE STATICCALL 0xF9 SLOAD 0xE2 ISZERO 0xC6 0x48 SWAP12 0xE6 PUSH7 0xCEA71726B85CF9 0x4D SWAP16 CALLDATACOPY SHL 0x21 0xE8 0xD 0xBC POP SELFBALANCE 0xAC 0xA6 DUP13 PUSH5 0x736F6C6343 STOP SMOD DIV STOP CALLER ",
"sourceMap": "26658:6704:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220c4f0faf954e215c6489be666cea71726b85cf94d9f371b21e80dbc5047aca68c64736f6c63430007040033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC4 CREATE STATICCALL 0xF9 SLOAD 0xE2 ISZERO 0xC6 0x48 SWAP12 0xE6 PUSH7 0xCEA71726B85CF9 0x4D SWAP16 CALLDATACOPY SHL 0x21 0xE8 0xD 0xBC POP SELFBALANCE 0xAC 0xA6 DUP13 PUSH5 0x736F6C6343 STOP SMOD DIV STOP CALLER ",
"sourceMap": "26658:6704:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "97",
"totalCost": "17297"
},
"internal": {
"_verifyCallResult(bool,bytes memory,string memory)": "infinite",
"functionCall(address,bytes memory)": "infinite",
"functionCall(address,bytes memory,string memory)": "infinite",
"functionCallWithValue(address,bytes memory,uint256)": "infinite",
"functionCallWithValue(address,bytes memory,uint256,string memory)": "infinite",
"functionStaticCall(address,bytes memory)": "infinite",
"functionStaticCall(address,bytes memory,string memory)": "infinite",
"isContract(address)": "infinite",
"sendValue(address payable,uint256)": "infinite"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.7.4+commit.3f05b770"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "Collection of functions related to the address type",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"gtoken_flat.sol": "Address"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"gtoken_flat.sol": {
"keccak256": "0xf8cac1588ed0bc037f80edf78040e1a622e03aac1a0e61049cfe3f87fbdf5e05",
"license": "MIT",
"urls": [
"bzz-raw://da19d4d045d3be2a4ebff3055b20d3e71ff5741b77123c47ab37497f56c15db4",
"dweb:/ipfs/QmSRB7Fmw7XYL2JYasabrzPp8aH5tELuruCv7y7JakJbb9"
]
}
},
"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": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4198:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "137:532:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "147:90:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "229:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "172:56:1"
},
"nodeType": "YulFunctionCall",
"src": "172:64:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "156:15:1"
},
"nodeType": "YulFunctionCall",
"src": "156:81:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "147:5:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "246:16:1",
"value": {
"name": "array",
"nodeType": "YulIdentifier",
"src": "257:5:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "250:3:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "278:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "285:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "271:6:1"
},
"nodeType": "YulFunctionCall",
"src": "271:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "271:21:1"
},
{
"nodeType": "YulAssignment",
"src": "293:23:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "304:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "311:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "300:3:1"
},
"nodeType": "YulFunctionCall",
"src": "300:16:1"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "293:3:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "325:17:1",
"value": {
"name": "offset",
"nodeType": "YulIdentifier",
"src": "336:6:1"
},
"variables": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "329:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "391:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "400:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "403:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "393:6:1"
},
"nodeType": "YulFunctionCall",
"src": "393:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "393:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "361:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "370:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "378:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "366:3:1"
},
"nodeType": "YulFunctionCall",
"src": "366:17:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "357:3:1"
},
"nodeType": "YulFunctionCall",
"src": "357:27:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "386:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "354:2:1"
},
"nodeType": "YulFunctionCall",
"src": "354:36:1"
},
"nodeType": "YulIf",
"src": "351:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "476:187:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "490:21:1",
"value": {
"name": "src",
"nodeType": "YulIdentifier",
"src": "508:3:1"
},
"variables": [
{
"name": "elementPos",
"nodeType": "YulTypedName",
"src": "494:10:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "531:3:1"
},
{
"arguments": [
{
"name": "elementPos",
"nodeType": "YulIdentifier",
"src": "568:10:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "580:3:1"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "536:31:1"
},
"nodeType": "YulFunctionCall",
"src": "536:48:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "524:6:1"
},
"nodeType": "YulFunctionCall",
"src": "524:61:1"
},
"nodeType": "YulExpressionStatement",
"src": "524:61:1"
},
{
"nodeType": "YulAssignment",
"src": "598:21:1",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "609:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "614:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "605:3:1"
},
"nodeType": "YulFunctionCall",
"src": "605:14:1"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "598:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "632:21:1",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "643:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "648:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "639:3:1"
},
"nodeType": "YulFunctionCall",
"src": "639:14:1"
},
"variableNames": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "632:3:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "438:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "441:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "435:2:1"
},
"nodeType": "YulFunctionCall",
"src": "435:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "449:18:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "451:14:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "460:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "463:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "456:3:1"
},
"nodeType": "YulFunctionCall",
"src": "456:9:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "451:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "420:14:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "422:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "431:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "426:1:1",
"type": ""
}
]
}
]
},
"src": "416:247:1"
}
]
},
"name": "abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "107:6:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "115:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "123:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "131:5:1",
"type": ""
}
],
"src": "24:645:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "738:80:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "748:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "763:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "757:5:1"
},
"nodeType": "YulFunctionCall",
"src": "757:13:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "748:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "806:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "779:26:1"
},
"nodeType": "YulFunctionCall",
"src": "779:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "779:33:1"
}
]
},
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "716:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "724:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "732:5:1",
"type": ""
}
],
"src": "675:143:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "929:230:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "978:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "987:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "990:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "980:6:1"
},
"nodeType": "YulFunctionCall",
"src": "980:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "980:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "957:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "965:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "953:3:1"
},
"nodeType": "YulFunctionCall",
"src": "953:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "972:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "949:3:1"
},
"nodeType": "YulFunctionCall",
"src": "949:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "942:6:1"
},
"nodeType": "YulFunctionCall",
"src": "942:35:1"
},
"nodeType": "YulIf",
"src": "939:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1003:27:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1023:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1017:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1017:13:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1007:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1039:114:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1126:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1122:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1122:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1141:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1149:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1048:73:1"
},
"nodeType": "YulFunctionCall",
"src": "1048:105:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1039:5:1"
}
]
}
]
},
"name": "abi_decode_t_array$_t_address_$dyn_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "907:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "915:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "923:5:1",
"type": ""
}
],
"src": "841:318:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1335:876:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1382:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1391:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1394:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1384:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1384:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1384:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1356:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1365:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1352:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1352:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1377:3:1",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1348:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1348:33:1"
},
"nodeType": "YulIf",
"src": "1345:2:1"
},
{
"nodeType": "YulBlock",
"src": "1408:128:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1423:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1437:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1427:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1452:74:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1498:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1509:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1494:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1494:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1518:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "1462:31:1"
},
"nodeType": "YulFunctionCall",
"src": "1462:64:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1452:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1546:129:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1561:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1575:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1565:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1591:74:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1637:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1648:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1633:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1633:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1657:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "1601:31:1"
},
"nodeType": "YulFunctionCall",
"src": "1601:64:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1591:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1685:240:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1700:39:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1724:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1735:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1720:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1720:18:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1714:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1714:25:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1704:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1786:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1795:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1798:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1788:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1788:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1788:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1758:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1766:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1755:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1755:30:1"
},
"nodeType": "YulIf",
"src": "1752:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1816:99:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1887:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1898:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1883:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1883:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1907:7:1"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_address_$dyn_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1826:56:1"
},
"nodeType": "YulFunctionCall",
"src": "1826:89:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1816:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1935:129:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1950:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1964:2:1",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1954:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1980:74:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2026:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2037:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2022:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2022:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2046:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "1990:31:1"
},
"nodeType": "YulFunctionCall",
"src": "1990:64:1"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "1980:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2074:130:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2089:17:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2103:3:1",
"type": "",
"value": "128"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2093:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2120:74:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2166:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2177:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2162:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2162:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2186:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "2130:31:1"
},
"nodeType": "YulFunctionCall",
"src": "2130:64:1"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "2120:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_array$_t_address_$dyn_memory_ptrt_addresst_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1273:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1284:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1296:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1304:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1312:6:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1320:6:1",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "1328:6:1",
"type": ""
}
],
"src": "1165:1046:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2258:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2268:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "2278:18:1"
},
"nodeType": "YulFunctionCall",
"src": "2278:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2268:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2327:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2335:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "2307:19:1"
},
"nodeType": "YulFunctionCall",
"src": "2307:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "2307:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2242:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2251:6:1",
"type": ""
}
],
"src": "2217:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2392:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2402:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2418:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2412:5:1"
},
"nodeType": "YulFunctionCall",
"src": "2412:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2402:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2385:6:1",
"type": ""
}
],
"src": "2352:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2515:229:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2620:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2622:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2622:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2622:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2592:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2600:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2589:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2589:30:1"
},
"nodeType": "YulIf",
"src": "2586:2:1"
},
{
"nodeType": "YulAssignment",
"src": "2652:25:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2664:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2672:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "2660:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2660:17:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2652:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2714:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2726:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2732:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2722:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2722:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2714:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_array$_t_address_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2499:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2510:4:1",
"type": ""
}
],
"src": "2433:311:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2795:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2805:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2834:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2816:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2816:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2805:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2777:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2787:7:1",
"type": ""
}
],
"src": "2750:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2897:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2907:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2922:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2929:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2918:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2918:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2907:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2879:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2889:7:1",
"type": ""
}
],
"src": "2852:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3029:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3039:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3050:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3039:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3011:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3021:7:1",
"type": ""
}
],
"src": "2984:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3110:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3120:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3142:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3172:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3150:21:1"
},
"nodeType": "YulFunctionCall",
"src": "3150:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3138:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3138:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "3124:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3289:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3291:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3291:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3291:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3232:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3244:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3229:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3229:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3268:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3280:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3265:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3265:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3226:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3226:62:1"
},
"nodeType": "YulIf",
"src": "3223:2:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3327:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3331:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3320:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3320:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "3320:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3096:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3104:4:1",
"type": ""
}
],
"src": "3067:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3397:190:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3407:33:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3434:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3416:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3416:24:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3407:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3530:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3532:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3532:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3532:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3455:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3462:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3452:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3452:77:1"
},
"nodeType": "YulIf",
"src": "3449:2:1"
},
{
"nodeType": "YulAssignment",
"src": "3561:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3572:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3579:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3568:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3568:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "3561:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3383:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "3393:3:1",
"type": ""
}
],
"src": "3354:233:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3621:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3638:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3641:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3631:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3631:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3631:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3735:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3738:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3728:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3728:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3728:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3759:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3762:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3752:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3752:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3752:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "3593:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3807:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3824:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3827:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3817:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3817:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3817:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3921:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3924:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3914:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3914:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3914:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3945:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3948:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3938:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3938:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3938:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "3779:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4013:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4023:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4041:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4048:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4037:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4037:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4057:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4053:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4053:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4033:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4033:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "4023:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3996:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "4006:6:1",
"type": ""
}
],
"src": "3965:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4116:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4173:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4182:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4185:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4175:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4175:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4175:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4139:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4164:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "4146:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4146:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4136:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4136:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4129:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4129:43:1"
},
"nodeType": "YulIf",
"src": "4126:2:1"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4109:5:1",
"type": ""
}
],
"src": "4073:122:1"
}
]
},
"contents": "{\n\n // address[]\n function abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr_fromMemory(offset, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_array$_t_address_$dyn_memory_ptr(length))\n let dst := array\n mstore(array, length) dst := add(array, 0x20)\n let src := offset\n if gt(add(src, mul(length, 0x20)), end) { revert(0, 0) }\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementPos := src\n mstore(dst, abi_decode_t_address_fromMemory(elementPos, end))\n dst := add(dst, 0x20)\n src := add(src, 0x20)\n }\n }\n\n function abi_decode_t_address_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_address(value)\n }\n\n // address[]\n function abi_decode_t_array$_t_address_$dyn_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := mload(offset)\n array := abi_decode_available_length_t_array$_t_address_$dyn_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_addresst_addresst_array$_t_address_$dyn_memory_ptrt_addresst_address_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4 {\n if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 64))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value2 := abi_decode_t_array$_t_address_$dyn_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_array$_t_address_$dyn_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := mul(length, 0x20)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(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 finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\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_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526001600d60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620033ea380380620033ea833981810160405281019062000052919062000316565b848484848460005b83518110156200011357600160036000868481518110620000a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806200010a906200047d565b9150506200005a565b5081600d60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550846000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d60016101000a81548160ff02191690831515021790555050505050506000601060006101000a81548160ff021916908315150217905550505050505062000554565b6000620002746200026e84620003da565b620003b1565b905080838252602082019050828560208602820111156200029457600080fd5b60005b85811015620002c85781620002ad8882620002d2565b84526020840193506020830192505060018101905062000297565b5050509392505050565b600081519050620002e3816200053a565b92915050565b600082601f830112620002fb57600080fd5b81516200030d8482602086016200025d565b91505092915050565b600080600080600060a086880312156200032f57600080fd5b60006200033f88828901620002d2565b95505060206200035288828901620002d2565b945050604086015167ffffffffffffffff8111156200037057600080fd5b6200037e88828901620002e9565b93505060606200039188828901620002d2565b9250506080620003a488828901620002d2565b9150509295509295909350565b6000620003bd620003d0565b9050620003cb828262000447565b919050565b6000604051905090565b600067ffffffffffffffff821115620003f857620003f7620004fa565b5b602082029050602081019050919050565b600062000416826200041d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b620004528262000529565b810181811067ffffffffffffffff82111715620004745762000473620004fa565b5b80604052505050565b60006200048a826200043d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620004c057620004bf620004cb565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005458162000409565b81146200055157600080fd5b50565b612e8680620005646000396000f3fe608060405234801561001057600080fd5b50600436106101fa5760003560e01c80637571af221161011a578063c0ee01bc116100ad578063db5a9d501161007c578063db5a9d501461058b578063e70d43cf146105a9578063e744092e146105c7578063f2fde38b146105f7578063f61d7fe014610613576101fa565b8063c0ee01bc14610517578063c3b12eb214610535578063cc32a15114610553578063ce5494bb1461056f576101fa565b80639b94f08b116100e95780639b94f08b1461047d5780639bb2b0f6146104ad578063a5f6f054146104c9578063c0544bf1146104f9576101fa565b80637571af22146103e15780637b6f1e07146104115780638da5cb5b1461042f57806396013dc61461044d576101fa565b8063365b98b2116101925780635b56dcbe116101615780635b56dcbe146103835780635fa7b5841461039f57806364db444a146103bb5780636bb10536146103d7576101fa565b8063365b98b21461030f5780634988c1191461033f5780634e71d92d1461035b5780634ecde84914610365576101fa565b80631a7b4240116101ce5780631a7b4240146102775780631a9eb353146102a7578063257d5f86146102c35780632e1a7d4d146102f3576101fa565b80626ae91e146101ff57806307973ccf1461021d5780631259b4841461023b57806318160ddd14610259575b600080fd5b61020761062f565b604051610214919061251f565b60405180910390f35b610225610655565b60405161023291906128b3565b60405180910390f35b61024361065b565b6040516102509190612616565b60405180910390f35b61026161066e565b60405161026e91906128b3565b60405180910390f35b610291600480360381019061028c91906122a5565b610674565b60405161029e9190612616565b60405180910390f35b6102c160048036038101906102bc9190612101565b610694565b005b6102dd60048036038101906102d89190612101565b610766565b6040516102ea91906128b3565b60405180910390f35b61030d600480360381019061030891906122a5565b61077e565b005b610329600480360381019061032491906122a5565b6108fa565b604051610336919061251f565b60405180910390f35b61035960048036038101906103549190612153565b61092d565b005b6103636109d8565b005b61036d610bb5565b60405161037a919061251f565b60405180910390f35b61039d60048036038101906103989190612101565b610bdb565b005b6103b960048036038101906103b49190612101565b610cad565b005b6103d560048036038101906103d09190612101565b610d96565b005b6103df610e7f565b005b6103fb60048036038101906103f69190612101565b6112cc565b60405161040891906128b3565b60405180910390f35b610419611315565b604051610426919061251f565b60405180910390f35b61043761133b565b604051610444919061251f565b60405180910390f35b610467600480360381019061046291906121ea565b61135f565b604051610474919061251f565b60405180910390f35b6104976004803603810190610492919061223e565b6113f7565b6040516104a491906128b3565b60405180910390f35b6104c760048036038101906104c29190612153565b61149a565b005b6104e360048036038101906104de9190612101565b611545565b6040516104f091906128b3565b60405180910390f35b61050161155d565b60405161050e91906128b3565b60405180910390f35b61051f611563565b60405161052c9190612616565b60405180910390f35b61053d611576565b60405161054a91906128b3565b60405180910390f35b61056d600480360381019061056891906121a5565b61157c565b005b61058960048036038101906105849190612101565b611b7c565b005b610593611e02565b6040516105a091906128b3565b60405180910390f35b6105b1611e08565b6040516105be91906128b3565b60405180910390f35b6105e160048036038101906105dc9190612101565b611e0e565b6040516105ee9190612616565b60405180910390f35b610611600480360381019061060c9190612101565b611e2e565b005b61062d60048036038101906106289190612101565b611eff565b005b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b600d60019054906101000a900460ff1681565b60025481565b600f6020528060005260406000206000915054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610719906127d3565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60046020528060005260406000206000915090505481565b601060009054906101000a900460ff166107cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c4906127b3565b60405180910390fd5b600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111561084f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084690612793565b60405180910390fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461089e9190612a32565b9250508190555080600260008282546108b79190612a32565b925050819055507f87d5f4772963d1f9b76047158b4ae97c420a1b3bff2a746c828beffd9e7c3e2633826040516108ef9291906125ed565b60405180910390a150565b60066020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b2906127d3565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b600d60019054906101000a900460ff16610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e906127f3565b60405180910390fd5b600d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518363ffffffff1660e01b8152600401610ac39291906125ed565b602060405180830381600087803b158015610add57600080fd5b505af1158015610af1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b15919061217c565b50600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460096000828254610b679190612a32565b925050819055506000600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c60906127d3565b60405180910390fd5b80600d60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d32906127d3565b60405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906127d3565b60405180910390fd5b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600d60009054906101000a900460ff16610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec590612873565b60405180910390fd5b6000600d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006107d0600b54610f079190612951565b90506000600b541415610fba576009548273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f50919061251f565b60206040518083038186803b158015610f6857600080fd5b505afa158015610f7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa091906122ce565b610faa9190612a32565b600881905550600854600a819055505b6000600b549050600754821115610fd15760075491505b6000600b54141561117f5760008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306040518363ffffffff1660e01b815260040161103b92919061253a565b60206040518083038186803b15801561105357600080fd5b505afa158015611067573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108b91906122ce565b90508373ffffffffffffffffffffffffffffffffffffffff166323b872dd600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1630846040518463ffffffff1660e01b81526004016110ec93929190612563565b602060405180830381600087803b15801561110657600080fd5b505af115801561111a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113e919061217c565b61117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490612813565b60405180910390fd5b505b60008190505b828110156112a75760006006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600254600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460085461121791906129d8565b61122191906129a7565b905080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112729190612951565b92505081905550806009600082825461128b9190612951565b925050819055505050808061129f90612b8d565b915050611185565b506007548214156112bf576000600b819055506112c7565b81600b819055505b505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60003073ffffffffffffffffffffffffffffffffffffffff16639b94f08b848460146040518463ffffffff1660e01b815260040161139f93929190612755565b60206040518083038186803b1580156113b757600080fd5b505afa1580156113cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ef91906122ce565b905092915050565b6000806000905060008490505b83856114109190612951565b81101561148e57858181518110611450577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff166101008361146f91906129d8565b6114799190612951565b9150808061148690612b8d565b915050611404565b50809150509392505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f906127d3565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b60056020528060005260406000206000915090505481565b60085481565b601060009054906101000a900460ff1681565b600b5481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390612893565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166396013dc6848460006040518463ffffffff1660e01b815260040161164c93929190612631565b60206040518083038186803b15801561166457600080fd5b505afa158015611678573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169c919061212a565b905060003073ffffffffffffffffffffffffffffffffffffffff166396013dc6858560146040518463ffffffff1660e01b81526004016116de939291906126a3565b60206040518083038186803b1580156116f657600080fd5b505afa15801561170a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172e919061212a565b905060003073ffffffffffffffffffffffffffffffffffffffff16639b94f08b8686602860206040518563ffffffff1660e01b815260040161177394939291906126d5565b60206040518083038186803b15801561178b57600080fd5b505afa15801561179f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c391906122ce565b905060003073ffffffffffffffffffffffffffffffffffffffff16639b94f08b8787604860206040518563ffffffff1660e01b81526004016118089493929190612715565b60206040518083038186803b15801561182057600080fd5b505afa158015611834573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185891906122ce565b905060003073ffffffffffffffffffffffffffffffffffffffff16639b94f08b8888606860206040518563ffffffff1660e01b815260040161189d9493929190612663565b60206040518083038186803b1580156118b557600080fd5b505afa1580156118c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ed91906122ce565b905060001515600f600084815260200190815260200160002060009054906101000a900460ff16151514611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90612833565b60405180910390fd5b6001600f600084815260200190815260200160002060006101000a81548160ff0219169083151502179055507fc817d75deaa278e988c41cf549ef38fe195ab65e0e64cd67ba47f0d185690d5885858585856040516119b995949392919061259a565b60405180910390a1600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4490612853565b60405180910390fd5b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611b04578360066000600754815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160076000828254611afc9190612951565b925050819055505b82600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b539190612951565b925050819055508260026000828254611b6c9190612951565b9250508190555050505050505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c01906127d3565b60405180910390fd5b600081905060006107d0600c54611c219190612951565b90506000600c549050600754821115611c3a5760075491505b60008190505b82811015611dc15760006006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000611c8b826112cc565b90506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508673ffffffffffffffffffffffffffffffffffffffff16636ac4e8ea84846040518363ffffffff1660e01b8152600401611d0c9291906125ed565b600060405180830381600087803b158015611d2657600080fd5b505af1158015611d3a573d6000803e3d6000fd5b505050508673ffffffffffffffffffffffffffffffffffffffff16639558042b84836040518363ffffffff1660e01b8152600401611d799291906125ed565b600060405180830381600087803b158015611d9357600080fd5b505af1158015611da7573d6000803e3d6000fd5b505050505050508080611db990612b8d565b915050611c40565b50600754821415611df4576000600c819055506000600d60006101000a81548160ff021916908315150217905550611dfc565b81600c819055505b50505050565b60095481565b600a5481565b60036020528060005260406000206000915054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb3906127d3565b60405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f84906127d3565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611fe4611fdf846128f3565b6128ce565b905082815260208101848484011115611ffc57600080fd5b612007848285612b1a565b509392505050565b60008135905061201e81612e0b565b92915050565b60008151905061203381612e0b565b92915050565b60008135905061204881612e22565b92915050565b60008151905061205d81612e22565b92915050565b60008083601f84011261207557600080fd5b8235905067ffffffffffffffff81111561208e57600080fd5b6020830191508360018202830111156120a657600080fd5b9250929050565b600082601f8301126120be57600080fd5b81356120ce848260208601611fd1565b91505092915050565b6000813590506120e681612e39565b92915050565b6000815190506120fb81612e39565b92915050565b60006020828403121561211357600080fd5b60006121218482850161200f565b91505092915050565b60006020828403121561213c57600080fd5b600061214a84828501612024565b91505092915050565b60006020828403121561216557600080fd5b600061217384828501612039565b91505092915050565b60006020828403121561218e57600080fd5b600061219c8482850161204e565b91505092915050565b600080602083850312156121b857600080fd5b600083013567ffffffffffffffff8111156121d257600080fd5b6121de85828601612063565b92509250509250929050565b600080604083850312156121fd57600080fd5b600083013567ffffffffffffffff81111561221757600080fd5b612223858286016120ad565b9250506020612234858286016120d7565b9150509250929050565b60008060006060848603121561225357600080fd5b600084013567ffffffffffffffff81111561226d57600080fd5b612279868287016120ad565b935050602061228a868287016120d7565b925050604061229b868287016120d7565b9150509250925092565b6000602082840312156122b757600080fd5b60006122c5848285016120d7565b91505092915050565b6000602082840312156122e057600080fd5b60006122ee848285016120ec565b91505092915050565b61230081612a66565b82525050565b61230f81612a78565b82525050565b6000612321838561292f565b935061232e838584612b1a565b61233783612c63565b840190509392505050565b600061234d82612924565b612357818561292f565b9350612367818560208601612b29565b61237081612c63565b840191505092915050565b61238481612aae565b82525050565b61239381612ac0565b82525050565b6123a281612ad2565b82525050565b6123b181612ae4565b82525050565b6123c081612af6565b82525050565b6123cf81612b08565b82525050565b60006123e2601d83612940565b91506123ed82612c74565b602082019050919050565b6000612405601483612940565b915061241082612c9d565b602082019050919050565b6000612428601383612940565b915061243382612cc6565b602082019050919050565b600061244b601f83612940565b915061245682612cef565b602082019050919050565b600061246e601c83612940565b915061247982612d18565b602082019050919050565b6000612491601683612940565b915061249c82612d41565b602082019050919050565b60006124b4602783612940565b91506124bf82612d6a565b604082019050919050565b60006124d7601a83612940565b91506124e282612db9565b602082019050919050565b60006124fa601483612940565b915061250582612de2565b602082019050919050565b61251981612aa4565b82525050565b600060208201905061253460008301846122f7565b92915050565b600060408201905061254f60008301856122f7565b61255c60208301846122f7565b9392505050565b600060608201905061257860008301866122f7565b61258560208301856122f7565b6125926040830184612510565b949350505050565b600060a0820190506125af60008301886122f7565b6125bc60208301876122f7565b6125c96040830186612510565b6125d66060830185612510565b6125e36080830184612510565b9695505050505050565b600060408201905061260260008301856122f7565b61260f6020830184612510565b9392505050565b600060208201905061262b6000830184612306565b92915050565b6000604082019050818103600083015261264c818587612315565b905061265b602083018461237b565b949350505050565b6000606082019050818103600083015261267e818688612315565b905061268d602083018561238a565b61269a60408301846123a8565b95945050505050565b600060408201905081810360008301526126be818587612315565b90506126cd6020830184612399565b949350505050565b600060608201905081810360008301526126f0818688612315565b90506126ff60208301856123b7565b61270c60408301846123a8565b95945050505050565b60006060820190508181036000830152612730818688612315565b905061273f60208301856123c6565b61274c60408301846123a8565b95945050505050565b6000606082019050818103600083015261276f8186612342565b905061277e6020830185612510565b61278b6040830184612399565b949350505050565b600060208201905081810360008301526127ac816123d5565b9050919050565b600060208201905081810360008301526127cc816123f8565b9050919050565b600060208201905081810360008301526127ec8161241b565b9050919050565b6000602082019050818103600083015261280c8161243e565b9050919050565b6000602082019050818103600083015261282c81612461565b9050919050565b6000602082019050818103600083015261284c81612484565b9050919050565b6000602082019050818103600083015261286c816124a7565b9050919050565b6000602082019050818103600083015261288c816124ca565b9050919050565b600060208201905081810360008301526128ac816124ed565b9050919050565b60006020820190506128c86000830184612510565b92915050565b60006128d86128e9565b90506128e48282612b5c565b919050565b6000604051905090565b600067ffffffffffffffff82111561290e5761290d612c34565b5b61291782612c63565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061295c82612aa4565b915061296783612aa4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561299c5761299b612bd6565b5b828201905092915050565b60006129b282612aa4565b91506129bd83612aa4565b9250826129cd576129cc612c05565b5b828204905092915050565b60006129e382612aa4565b91506129ee83612aa4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a2757612a26612bd6565b5b828202905092915050565b6000612a3d82612aa4565b9150612a4883612aa4565b925082821015612a5b57612a5a612bd6565b5b828203905092915050565b6000612a7182612a84565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612ab982612aa4565b9050919050565b6000612acb82612aa4565b9050919050565b6000612add82612aa4565b9050919050565b6000612aef82612aa4565b9050919050565b6000612b0182612aa4565b9050919050565b6000612b1382612aa4565b9050919050565b82818337600083830152505050565b60005b83811015612b47578082015181840152602081019050612b2c565b83811115612b56576000848401525b50505050565b612b6582612c63565b810181811067ffffffffffffffff82111715612b8457612b83612c34565b5b80604052505050565b6000612b9882612aa4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612bcb57612bca612bd6565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f796f7520646f6e2774206861766520736f206d75636820696d70616374000000600082015250565b7f7769746864726177206e6f7420616c6c6f776564000000000000000000000000600082015250565b7f43616c6c6572206973206e6f74206f776e657200000000000000000000000000600082015250565b7f636c61696d206973207368757420646f776e20627920746865206f776e657200600082015250565b7f6572726f72207472616e7366657272696e672066726f6d206661726d00000000600082015250565b7f44617461206973206e6f742070726f6365737365642e00000000000000000000600082015250565b7f7468697320746f6b656e206973206e6f7420737570706f72746564206279207460008201527f7265617375727900000000000000000000000000000000000000000000000000602082015250565b7f5468697320636f6e7472616374206973206f757464617465642e000000000000600082015250565b7f43616c6c6572206973206e6f74206e6562756c61000000000000000000000000600082015250565b612e1481612a66565b8114612e1f57600080fd5b50565b612e2b81612a78565b8114612e3657600080fd5b50565b612e4281612aa4565b8114612e4d57600080fd5b5056fea2646970667358221220086841438d5bff0d6fe3b53641b00d1349e63de94dc837340343d1965a473b5364736f6c63430008030033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x1 PUSH1 0xD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH3 0x2C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x33EA CODESIZE SUB DUP1 PUSH3 0x33EA DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x52 SWAP2 SWAP1 PUSH3 0x316 JUMP JUMPDEST DUP5 DUP5 DUP5 DUP5 DUP5 PUSH1 0x0 JUMPDEST DUP4 MLOAD DUP2 LT ISZERO PUSH3 0x113 JUMPI PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP7 DUP5 DUP2 MLOAD DUP2 LT PUSH3 0xA4 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD 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 DUP1 DUP1 PUSH3 0x10A SWAP1 PUSH3 0x47D JUMP JUMPDEST SWAP2 POP POP PUSH3 0x5A JUMP JUMPDEST POP DUP2 PUSH1 0xD PUSH1 0x2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH1 0xE PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP5 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP4 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 PUSH1 0x0 PUSH1 0xD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP POP POP POP POP PUSH1 0x0 PUSH1 0x10 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP POP POP POP POP PUSH3 0x554 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x274 PUSH3 0x26E DUP5 PUSH3 0x3DA JUMP JUMPDEST PUSH3 0x3B1 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP DUP3 DUP6 PUSH1 0x20 DUP7 MUL DUP3 ADD GT ISZERO PUSH3 0x294 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH3 0x2C8 JUMPI DUP2 PUSH3 0x2AD DUP9 DUP3 PUSH3 0x2D2 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP PUSH1 0x20 DUP4 ADD SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x297 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x2E3 DUP2 PUSH3 0x53A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x2FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH3 0x30D DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x25D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH3 0x32F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH3 0x33F DUP9 DUP3 DUP10 ADD PUSH3 0x2D2 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH3 0x352 DUP9 DUP3 DUP10 ADD PUSH3 0x2D2 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 DUP7 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x370 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x37E DUP9 DUP3 DUP10 ADD PUSH3 0x2E9 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH3 0x391 DUP9 DUP3 DUP10 ADD PUSH3 0x2D2 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 PUSH3 0x3A4 DUP9 DUP3 DUP10 ADD PUSH3 0x2D2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3BD PUSH3 0x3D0 JUMP JUMPDEST SWAP1 POP PUSH3 0x3CB DUP3 DUP3 PUSH3 0x447 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x3F8 JUMPI PUSH3 0x3F7 PUSH3 0x4FA JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x416 DUP3 PUSH3 0x41D 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 PUSH3 0x452 DUP3 PUSH3 0x529 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x474 JUMPI PUSH3 0x473 PUSH3 0x4FA JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x48A DUP3 PUSH3 0x43D JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH3 0x4C0 JUMPI PUSH3 0x4BF PUSH3 0x4CB JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 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 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x545 DUP2 PUSH3 0x409 JUMP JUMPDEST DUP2 EQ PUSH3 0x551 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2E86 DUP1 PUSH3 0x564 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 0x1FA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7571AF22 GT PUSH2 0x11A JUMPI DUP1 PUSH4 0xC0EE01BC GT PUSH2 0xAD JUMPI DUP1 PUSH4 0xDB5A9D50 GT PUSH2 0x7C JUMPI DUP1 PUSH4 0xDB5A9D50 EQ PUSH2 0x58B JUMPI DUP1 PUSH4 0xE70D43CF EQ PUSH2 0x5A9 JUMPI DUP1 PUSH4 0xE744092E EQ PUSH2 0x5C7 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x5F7 JUMPI DUP1 PUSH4 0xF61D7FE0 EQ PUSH2 0x613 JUMPI PUSH2 0x1FA JUMP JUMPDEST DUP1 PUSH4 0xC0EE01BC EQ PUSH2 0x517 JUMPI DUP1 PUSH4 0xC3B12EB2 EQ PUSH2 0x535 JUMPI DUP1 PUSH4 0xCC32A151 EQ PUSH2 0x553 JUMPI DUP1 PUSH4 0xCE5494BB EQ PUSH2 0x56F JUMPI PUSH2 0x1FA JUMP JUMPDEST DUP1 PUSH4 0x9B94F08B GT PUSH2 0xE9 JUMPI DUP1 PUSH4 0x9B94F08B EQ PUSH2 0x47D JUMPI DUP1 PUSH4 0x9BB2B0F6 EQ PUSH2 0x4AD JUMPI DUP1 PUSH4 0xA5F6F054 EQ PUSH2 0x4C9 JUMPI DUP1 PUSH4 0xC0544BF1 EQ PUSH2 0x4F9 JUMPI PUSH2 0x1FA JUMP JUMPDEST DUP1 PUSH4 0x7571AF22 EQ PUSH2 0x3E1 JUMPI DUP1 PUSH4 0x7B6F1E07 EQ PUSH2 0x411 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x42F JUMPI DUP1 PUSH4 0x96013DC6 EQ PUSH2 0x44D JUMPI PUSH2 0x1FA JUMP JUMPDEST DUP1 PUSH4 0x365B98B2 GT PUSH2 0x192 JUMPI DUP1 PUSH4 0x5B56DCBE GT PUSH2 0x161 JUMPI DUP1 PUSH4 0x5B56DCBE EQ PUSH2 0x383 JUMPI DUP1 PUSH4 0x5FA7B584 EQ PUSH2 0x39F JUMPI DUP1 PUSH4 0x64DB444A EQ PUSH2 0x3BB JUMPI DUP1 PUSH4 0x6BB10536 EQ PUSH2 0x3D7 JUMPI PUSH2 0x1FA JUMP JUMPDEST DUP1 PUSH4 0x365B98B2 EQ PUSH2 0x30F JUMPI DUP1 PUSH4 0x4988C119 EQ PUSH2 0x33F JUMPI DUP1 PUSH4 0x4E71D92D EQ PUSH2 0x35B JUMPI DUP1 PUSH4 0x4ECDE849 EQ PUSH2 0x365 JUMPI PUSH2 0x1FA JUMP JUMPDEST DUP1 PUSH4 0x1A7B4240 GT PUSH2 0x1CE JUMPI DUP1 PUSH4 0x1A7B4240 EQ PUSH2 0x277 JUMPI DUP1 PUSH4 0x1A9EB353 EQ PUSH2 0x2A7 JUMPI DUP1 PUSH4 0x257D5F86 EQ PUSH2 0x2C3 JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x2F3 JUMPI PUSH2 0x1FA JUMP JUMPDEST DUP1 PUSH3 0x6AE91E EQ PUSH2 0x1FF JUMPI DUP1 PUSH4 0x7973CCF EQ PUSH2 0x21D JUMPI DUP1 PUSH4 0x1259B484 EQ PUSH2 0x23B JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x259 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x207 PUSH2 0x62F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x214 SWAP2 SWAP1 PUSH2 0x251F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x225 PUSH2 0x655 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x243 PUSH2 0x65B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x250 SWAP2 SWAP1 PUSH2 0x2616 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x261 PUSH2 0x66E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26E SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x291 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28C SWAP2 SWAP1 PUSH2 0x22A5 JUMP JUMPDEST PUSH2 0x674 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29E SWAP2 SWAP1 PUSH2 0x2616 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2BC SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x694 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2DD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2D8 SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x766 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2EA SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x30D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x308 SWAP2 SWAP1 PUSH2 0x22A5 JUMP JUMPDEST PUSH2 0x77E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x329 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x324 SWAP2 SWAP1 PUSH2 0x22A5 JUMP JUMPDEST PUSH2 0x8FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x336 SWAP2 SWAP1 PUSH2 0x251F 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 0x2153 JUMP JUMPDEST PUSH2 0x92D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x363 PUSH2 0x9D8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x36D PUSH2 0xBB5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x37A SWAP2 SWAP1 PUSH2 0x251F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x39D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x398 SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0xBDB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3B9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0xCAD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3D5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3D0 SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0xD96 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3DF PUSH2 0xE7F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3FB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3F6 SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x12CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x408 SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x419 PUSH2 0x1315 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x426 SWAP2 SWAP1 PUSH2 0x251F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x437 PUSH2 0x133B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x444 SWAP2 SWAP1 PUSH2 0x251F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x467 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x462 SWAP2 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH2 0x135F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x474 SWAP2 SWAP1 PUSH2 0x251F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x497 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x492 SWAP2 SWAP1 PUSH2 0x223E JUMP JUMPDEST PUSH2 0x13F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4A4 SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4C7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4C2 SWAP2 SWAP1 PUSH2 0x2153 JUMP JUMPDEST PUSH2 0x149A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4E3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4DE SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x1545 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4F0 SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x501 PUSH2 0x155D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50E SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x51F PUSH2 0x1563 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x52C SWAP2 SWAP1 PUSH2 0x2616 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x53D PUSH2 0x1576 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x54A SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x56D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x568 SWAP2 SWAP1 PUSH2 0x21A5 JUMP JUMPDEST PUSH2 0x157C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x589 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x584 SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x1B7C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x593 PUSH2 0x1E02 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5A0 SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x5B1 PUSH2 0x1E08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5BE SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x5E1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5DC SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x1E0E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5EE SWAP2 SWAP1 PUSH2 0x2616 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x611 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x60C SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x1E2E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x62D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x628 SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x1EFF JUMP JUMPDEST STOP JUMPDEST PUSH1 0xE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x2 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xF PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x722 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x719 SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xE 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 0x4 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x10 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x7CD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7C4 SWAP1 PUSH2 0x27B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD DUP2 GT ISZERO PUSH2 0x84F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x846 SWAP1 PUSH2 0x2793 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x4 PUSH1 0x0 CALLER 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 0x89E SWAP2 SWAP1 PUSH2 0x2A32 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x8B7 SWAP2 SWAP1 PUSH2 0x2A32 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH32 0x87D5F4772963D1F9B76047158B4AE97C420A1B3BFF2A746C828BEFFD9E7C3E26 CALLER DUP3 PUSH1 0x40 MLOAD PUSH2 0x8EF SWAP3 SWAP2 SWAP1 PUSH2 0x25ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x6 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9BB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9B2 SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x10 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0xD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA1E SWAP1 PUSH2 0x27F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB CALLER PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAC3 SWAP3 SWAP2 SWAP1 PUSH2 0x25ED JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xADD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xAF1 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 0xB15 SWAP2 SWAP1 PUSH2 0x217C JUMP JUMPDEST POP PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x9 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xB67 SWAP2 SWAP1 PUSH2 0x2A32 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xC69 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC60 SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xD PUSH1 0x2 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 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD3B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD32 SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x3 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 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xE24 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE1B SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x3 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 POP JUMP JUMPDEST PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0xECE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEC5 SWAP1 PUSH2 0x2873 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x7D0 PUSH1 0xB SLOAD PUSH2 0xF07 SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0xB SLOAD EQ ISZERO PUSH2 0xFBA JUMPI PUSH1 0x9 SLOAD DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF50 SWAP2 SWAP1 PUSH2 0x251F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xF68 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF7C 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 0xFA0 SWAP2 SWAP1 PUSH2 0x22CE JUMP JUMPDEST PUSH2 0xFAA SWAP2 SWAP1 PUSH2 0x2A32 JUMP JUMPDEST PUSH1 0x8 DUP2 SWAP1 SSTORE POP PUSH1 0x8 SLOAD PUSH1 0xA DUP2 SWAP1 SSTORE POP JUMPDEST PUSH1 0x0 PUSH1 0xB SLOAD SWAP1 POP PUSH1 0x7 SLOAD DUP3 GT ISZERO PUSH2 0xFD1 JUMPI PUSH1 0x7 SLOAD SWAP2 POP JUMPDEST PUSH1 0x0 PUSH1 0xB SLOAD EQ ISZERO PUSH2 0x117F JUMPI PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xDD62ED3E PUSH1 0xE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ADDRESS PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x103B SWAP3 SWAP2 SWAP1 PUSH2 0x253A JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1053 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1067 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 0x108B SWAP2 SWAP1 PUSH2 0x22CE JUMP JUMPDEST SWAP1 POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD PUSH1 0xE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ADDRESS DUP5 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10EC SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2563 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1106 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x111A 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 0x113E SWAP2 SWAP1 PUSH2 0x217C JUMP JUMPDEST PUSH2 0x117D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1174 SWAP1 PUSH2 0x2813 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x12A7 JUMPI PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH1 0x2 SLOAD 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 PUSH1 0x8 SLOAD PUSH2 0x1217 SWAP2 SWAP1 PUSH2 0x29D8 JUMP JUMPDEST PUSH2 0x1221 SWAP2 SWAP1 PUSH2 0x29A7 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x5 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 0x1272 SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x9 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x128B SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP DUP1 DUP1 PUSH2 0x129F SWAP1 PUSH2 0x2B8D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1185 JUMP JUMPDEST POP PUSH1 0x7 SLOAD DUP3 EQ ISZERO PUSH2 0x12BF JUMPI PUSH1 0x0 PUSH1 0xB DUP2 SWAP1 SSTORE POP PUSH2 0x12C7 JUMP JUMPDEST DUP2 PUSH1 0xB DUP2 SWAP1 SSTORE POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 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 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x9B94F08B DUP5 DUP5 PUSH1 0x14 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x139F SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2755 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x13B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13CB 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 0x13EF SWAP2 SWAP1 PUSH2 0x22CE JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 POP PUSH1 0x0 DUP5 SWAP1 POP JUMPDEST DUP4 DUP6 PUSH2 0x1410 SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST DUP2 LT ISZERO PUSH2 0x148E JUMPI DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x1450 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH1 0xF8 SHR PUSH1 0xFF AND PUSH2 0x100 DUP4 PUSH2 0x146F SWAP2 SWAP1 PUSH2 0x29D8 JUMP JUMPDEST PUSH2 0x1479 SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP2 POP DUP1 DUP1 PUSH2 0x1486 SWAP1 PUSH2 0x2B8D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1404 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1528 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x151F SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x5 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x10 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0xB SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x160C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1603 SWAP1 PUSH2 0x2893 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x96013DC6 DUP5 DUP5 PUSH1 0x0 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x164C SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2631 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1664 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1678 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 0x169C SWAP2 SWAP1 PUSH2 0x212A JUMP JUMPDEST SWAP1 POP PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x96013DC6 DUP6 DUP6 PUSH1 0x14 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16DE SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x26A3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x16F6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x170A 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 0x172E SWAP2 SWAP1 PUSH2 0x212A JUMP JUMPDEST SWAP1 POP PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x9B94F08B DUP7 DUP7 PUSH1 0x28 PUSH1 0x20 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1773 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x26D5 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x178B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x179F 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 0x17C3 SWAP2 SWAP1 PUSH2 0x22CE JUMP JUMPDEST SWAP1 POP PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x9B94F08B DUP8 DUP8 PUSH1 0x48 PUSH1 0x20 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1808 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2715 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1820 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1834 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 0x1858 SWAP2 SWAP1 PUSH2 0x22CE JUMP JUMPDEST SWAP1 POP PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x9B94F08B DUP9 DUP9 PUSH1 0x68 PUSH1 0x20 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x189D SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2663 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x18B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x18C9 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 0x18ED SWAP2 SWAP1 PUSH2 0x22CE JUMP JUMPDEST SWAP1 POP PUSH1 0x0 ISZERO ISZERO PUSH1 0xF PUSH1 0x0 DUP5 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 ISZERO ISZERO EQ PUSH2 0x1956 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x194D SWAP1 PUSH2 0x2833 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0xF PUSH1 0x0 DUP5 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 PUSH32 0xC817D75DEAA278E988C41CF549EF38FE195AB65E0E64CD67BA47F0D185690D58 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x19B9 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x259A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x3 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 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x1A4D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A44 SWAP1 PUSH2 0x2853 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 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 EQ ISZERO PUSH2 0x1B04 JUMPI DUP4 PUSH1 0x6 PUSH1 0x0 PUSH1 0x7 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x7 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1AFC SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP3 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 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1B53 SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1B6C SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1C0A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C01 SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x0 PUSH2 0x7D0 PUSH1 0xC SLOAD PUSH2 0x1C21 SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0xC SLOAD SWAP1 POP PUSH1 0x7 SLOAD DUP3 GT ISZERO PUSH2 0x1C3A JUMPI PUSH1 0x7 SLOAD SWAP2 POP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1DC1 JUMPI PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x1C8B DUP3 PUSH2 0x12CC JUMP JUMPDEST SWAP1 POP PUSH1 0x0 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 SWAP1 POP DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6AC4E8EA DUP5 DUP5 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D0C SWAP3 SWAP2 SWAP1 PUSH2 0x25ED JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1D26 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1D3A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x9558042B DUP5 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D79 SWAP3 SWAP2 SWAP1 PUSH2 0x25ED JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1D93 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1DA7 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP DUP1 DUP1 PUSH2 0x1DB9 SWAP1 PUSH2 0x2B8D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1C40 JUMP JUMPDEST POP PUSH1 0x7 SLOAD DUP3 EQ ISZERO PUSH2 0x1DF4 JUMPI PUSH1 0x0 PUSH1 0xC DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0xD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x1DFC JUMP JUMPDEST DUP2 PUSH1 0xC DUP2 SWAP1 SSTORE POP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xA SLOAD DUP2 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1EBC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1EB3 SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x0 DUP1 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 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1F8D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F84 SWAP1 PUSH2 0x27D3 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 PUSH2 0x1FE4 PUSH2 0x1FDF DUP5 PUSH2 0x28F3 JUMP JUMPDEST PUSH2 0x28CE JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1FFC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2007 DUP5 DUP3 DUP6 PUSH2 0x2B1A JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x201E DUP2 PUSH2 0x2E0B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2033 DUP2 PUSH2 0x2E0B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2048 DUP2 PUSH2 0x2E22 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x205D DUP2 PUSH2 0x2E22 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2075 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x208E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x20A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x20BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x20CE DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1FD1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x20E6 DUP2 PUSH2 0x2E39 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x20FB DUP2 PUSH2 0x2E39 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2113 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2121 DUP5 DUP3 DUP6 ADD PUSH2 0x200F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x213C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x214A DUP5 DUP3 DUP6 ADD PUSH2 0x2024 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2165 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2173 DUP5 DUP3 DUP6 ADD PUSH2 0x2039 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x218E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x219C DUP5 DUP3 DUP6 ADD PUSH2 0x204E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x21B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x21D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x21DE DUP6 DUP3 DUP7 ADD PUSH2 0x2063 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x21FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2217 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2223 DUP6 DUP3 DUP7 ADD PUSH2 0x20AD JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2234 DUP6 DUP3 DUP7 ADD PUSH2 0x20D7 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 0x2253 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x226D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2279 DUP7 DUP3 DUP8 ADD PUSH2 0x20AD JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x228A DUP7 DUP3 DUP8 ADD PUSH2 0x20D7 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x229B DUP7 DUP3 DUP8 ADD PUSH2 0x20D7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x22C5 DUP5 DUP3 DUP6 ADD PUSH2 0x20D7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x22EE DUP5 DUP3 DUP6 ADD PUSH2 0x20EC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2300 DUP2 PUSH2 0x2A66 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x230F DUP2 PUSH2 0x2A78 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2321 DUP4 DUP6 PUSH2 0x292F JUMP JUMPDEST SWAP4 POP PUSH2 0x232E DUP4 DUP6 DUP5 PUSH2 0x2B1A JUMP JUMPDEST PUSH2 0x2337 DUP4 PUSH2 0x2C63 JUMP JUMPDEST DUP5 ADD SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x234D DUP3 PUSH2 0x2924 JUMP JUMPDEST PUSH2 0x2357 DUP2 DUP6 PUSH2 0x292F JUMP JUMPDEST SWAP4 POP PUSH2 0x2367 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2B29 JUMP JUMPDEST PUSH2 0x2370 DUP2 PUSH2 0x2C63 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2384 DUP2 PUSH2 0x2AAE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2393 DUP2 PUSH2 0x2AC0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x23A2 DUP2 PUSH2 0x2AD2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x23B1 DUP2 PUSH2 0x2AE4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x23C0 DUP2 PUSH2 0x2AF6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x23CF DUP2 PUSH2 0x2B08 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x23E2 PUSH1 0x1D DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x23ED DUP3 PUSH2 0x2C74 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2405 PUSH1 0x14 DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x2410 DUP3 PUSH2 0x2C9D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2428 PUSH1 0x13 DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x2433 DUP3 PUSH2 0x2CC6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x244B PUSH1 0x1F DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x2456 DUP3 PUSH2 0x2CEF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x246E PUSH1 0x1C DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x2479 DUP3 PUSH2 0x2D18 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2491 PUSH1 0x16 DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x249C DUP3 PUSH2 0x2D41 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24B4 PUSH1 0x27 DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x24BF DUP3 PUSH2 0x2D6A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24D7 PUSH1 0x1A DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x24E2 DUP3 PUSH2 0x2DB9 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24FA PUSH1 0x14 DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x2505 DUP3 PUSH2 0x2DE2 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2519 DUP2 PUSH2 0x2AA4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2534 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x22F7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x254F PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x22F7 JUMP JUMPDEST PUSH2 0x255C PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x22F7 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x2578 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x22F7 JUMP JUMPDEST PUSH2 0x2585 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x22F7 JUMP JUMPDEST PUSH2 0x2592 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2510 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x25AF PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x22F7 JUMP JUMPDEST PUSH2 0x25BC PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x22F7 JUMP JUMPDEST PUSH2 0x25C9 PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x2510 JUMP JUMPDEST PUSH2 0x25D6 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x2510 JUMP JUMPDEST PUSH2 0x25E3 PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x2510 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2602 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x22F7 JUMP JUMPDEST PUSH2 0x260F PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2510 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x262B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2306 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x264C DUP2 DUP6 DUP8 PUSH2 0x2315 JUMP JUMPDEST SWAP1 POP PUSH2 0x265B PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x237B JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x267E DUP2 DUP7 DUP9 PUSH2 0x2315 JUMP JUMPDEST SWAP1 POP PUSH2 0x268D PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x238A JUMP JUMPDEST PUSH2 0x269A PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x23A8 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 0x26BE DUP2 DUP6 DUP8 PUSH2 0x2315 JUMP JUMPDEST SWAP1 POP PUSH2 0x26CD PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2399 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x26F0 DUP2 DUP7 DUP9 PUSH2 0x2315 JUMP JUMPDEST SWAP1 POP PUSH2 0x26FF PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x23B7 JUMP JUMPDEST PUSH2 0x270C PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x23A8 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2730 DUP2 DUP7 DUP9 PUSH2 0x2315 JUMP JUMPDEST SWAP1 POP PUSH2 0x273F PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x23C6 JUMP JUMPDEST PUSH2 0x274C PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x23A8 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x276F DUP2 DUP7 PUSH2 0x2342 JUMP JUMPDEST SWAP1 POP PUSH2 0x277E PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x2510 JUMP JUMPDEST PUSH2 0x278B PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2399 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x27AC DUP2 PUSH2 0x23D5 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 0x27CC DUP2 PUSH2 0x23F8 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 0x27EC DUP2 PUSH2 0x241B 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 0x280C DUP2 PUSH2 0x243E 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 0x282C DUP2 PUSH2 0x2461 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 0x284C DUP2 PUSH2 0x2484 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 0x286C DUP2 PUSH2 0x24A7 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 0x288C DUP2 PUSH2 0x24CA 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 0x28AC DUP2 PUSH2 0x24ED JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x28C8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2510 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28D8 PUSH2 0x28E9 JUMP JUMPDEST SWAP1 POP PUSH2 0x28E4 DUP3 DUP3 PUSH2 0x2B5C JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x290E JUMPI PUSH2 0x290D PUSH2 0x2C34 JUMP JUMPDEST JUMPDEST PUSH2 0x2917 DUP3 PUSH2 0x2C63 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD 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 PUSH2 0x295C DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x2967 DUP4 PUSH2 0x2AA4 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x299C JUMPI PUSH2 0x299B PUSH2 0x2BD6 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29B2 DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x29BD DUP4 PUSH2 0x2AA4 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x29CD JUMPI PUSH2 0x29CC PUSH2 0x2C05 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29E3 DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x29EE DUP4 PUSH2 0x2AA4 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x2A27 JUMPI PUSH2 0x2A26 PUSH2 0x2BD6 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A3D DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x2A48 DUP4 PUSH2 0x2AA4 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x2A5B JUMPI PUSH2 0x2A5A PUSH2 0x2BD6 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A71 DUP3 PUSH2 0x2A84 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO 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 0x2AB9 DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2ACB DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2ADD DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AEF DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B01 DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B13 DUP3 PUSH2 0x2AA4 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 0x2B47 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2B2C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x2B56 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x2B65 DUP3 PUSH2 0x2C63 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2B84 JUMPI PUSH2 0x2B83 PUSH2 0x2C34 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B98 DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x2BCB JUMPI PUSH2 0x2BCA PUSH2 0x2BD6 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 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 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x796F7520646F6E2774206861766520736F206D75636820696D70616374000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x7769746864726177206E6F7420616C6C6F776564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x43616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x636C61696D206973207368757420646F776E20627920746865206F776E657200 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x6572726F72207472616E7366657272696E672066726F6D206661726D00000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x44617461206973206E6F742070726F6365737365642E00000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x7468697320746F6B656E206973206E6F7420737570706F727465642062792074 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265617375727900000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5468697320636F6E7472616374206973206F757464617465642E000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x43616C6C6572206973206E6F74206E6562756C61000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x2E14 DUP2 PUSH2 0x2A66 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E1F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2E2B DUP2 PUSH2 0x2A78 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E36 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2E42 DUP2 PUSH2 0x2AA4 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E4D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADDMOD PUSH9 0x41438D5BFF0D6FE3B5 CALLDATASIZE COINBASE 0xB0 0xD SGT 0x49 0xE6 RETURNDATASIZE 0xE9 0x4D 0xC8 CALLDATACOPY CALLVALUE SUB NUMBER 0xD1 SWAP7 GAS SELFBALANCE EXTCODESIZE MSTORE8 PUSH5 0x736F6C6343 STOP ADDMOD SUB STOP CALLER ",
"sourceMap": "6675:1761:0:-:0;;;2067:4;2038:33;;;;;;;;;;;;;;;;;;;;6722:264;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6874:6;6881:7;6889:14;6904:20;6925:9;2421:6;2416:112;2437:14;:21;2433:1;:25;2416:112;;;2513:4;2478:13;:32;2492:14;2507:1;2492:17;;;;;;;;;;;;;;;;;;;;;;2478:32;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;2460:3;;;;;:::i;:::-;;;;2416:112;;;;2559:20;2537:19;;:42;;;;;;;;;;;;;;;;;;2600:9;2589:8;;:20;;;;;;;;;;;;;;;;;;2627:6;2619:5;;:14;;;;;;;;;;;;;;;;;;2652:7;2643:6;;:16;;;;;;;;;;;;;;;;;;2686:5;2669:14;;:22;;;;;;;;;;;;;;;;;;2279:419;;;;;6970:5:::1;6950:17;;:25;;;;;;;;;;;;;;;;;;6722:264:::0;;;;;6675:1761;;24:645:1;;156:81;172:64;229:6;172:64;:::i;:::-;156:81;:::i;:::-;147:90;;257:5;285:6;278:5;271:21;311:4;304:5;300:16;293:23;;336:6;386:3;378:4;370:6;366:17;361:3;357:27;354:36;351:2;;;403:1;400;393:12;351:2;431:1;416:247;441:6;438:1;435:13;416:247;;;508:3;536:48;580:3;568:10;536:48;:::i;:::-;531:3;524:61;614:4;609:3;605:14;598:21;;648:4;643:3;639:14;632:21;;476:187;463:1;460;456:9;451:14;;416:247;;;420:14;137:532;;;;;;;:::o;675:143::-;;763:6;757:13;748:22;;779:33;806:5;779:33;:::i;:::-;738:80;;;;:::o;841:318::-;;972:3;965:4;957:6;953:17;949:27;939:2;;990:1;987;980:12;939:2;1023:6;1017:13;1048:105;1149:3;1141:6;1134:4;1126:6;1122:17;1048:105;:::i;:::-;1039:114;;929:230;;;;;:::o;1165:1046::-;;;;;;1377:3;1365:9;1356:7;1352:23;1348:33;1345:2;;;1394:1;1391;1384:12;1345:2;1437:1;1462:64;1518:7;1509:6;1498:9;1494:22;1462:64;:::i;:::-;1452:74;;1408:128;1575:2;1601:64;1657:7;1648:6;1637:9;1633:22;1601:64;:::i;:::-;1591:74;;1546:129;1735:2;1724:9;1720:18;1714:25;1766:18;1758:6;1755:30;1752:2;;;1798:1;1795;1788:12;1752:2;1826:89;1907:7;1898:6;1887:9;1883:22;1826:89;:::i;:::-;1816:99;;1685:240;1964:2;1990:64;2046:7;2037:6;2026:9;2022:22;1990:64;:::i;:::-;1980:74;;1935:129;2103:3;2130:64;2186:7;2177:6;2166:9;2162:22;2130:64;:::i;:::-;2120:74;;2074:130;1335:876;;;;;;;;:::o;2217:129::-;;2278:20;;:::i;:::-;2268:30;;2307:33;2335:4;2327:6;2307:33;:::i;:::-;2258:88;;;:::o;2352:75::-;;2418:2;2412:9;2402:19;;2392:35;:::o;2433:311::-;;2600:18;2592:6;2589:30;2586:2;;;2622:18;;:::i;:::-;2586:2;2672:4;2664:6;2660:17;2652:25;;2732:4;2726;2722:15;2714:23;;2515:229;;;:::o;2750:96::-;;2816:24;2834:5;2816:24;:::i;:::-;2805:35;;2795:51;;;:::o;2852:126::-;;2929:42;2922:5;2918:54;2907:65;;2897:81;;;:::o;2984:77::-;;3050:5;3039:16;;3029:32;;;:::o;3067:281::-;3150:27;3172:4;3150:27;:::i;:::-;3142:6;3138:40;3280:6;3268:10;3265:22;3244:18;3232:10;3229:34;3226:62;3223:2;;;3291:18;;:::i;:::-;3223:2;3331:10;3327:2;3320:22;3110:238;;;:::o;3354:233::-;;3416:24;3434:5;3416:24;:::i;:::-;3407:33;;3462:66;3455:5;3452:77;3449:2;;;3532:18;;:::i;:::-;3449:2;3579:1;3572:5;3568:13;3561:20;;3397:190;;;:::o;3593:180::-;3641:77;3638:1;3631:88;3738:4;3735:1;3728:15;3762:4;3759:1;3752:15;3779:180;3827:77;3824:1;3817:88;3924:4;3921:1;3914:15;3948:4;3945:1;3938:15;3965:102;;4057:2;4053:7;4048:2;4041:5;4037:14;4033:28;4023:38;;4013:54;;;:::o;4073:122::-;4146:24;4164:5;4146:24;:::i;:::-;4139:5;4136:35;4126:2;;4185:1;4182;4175:12;4126:2;4116:79;:::o;6675:1761:0:-;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:26950:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "90:260:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "100:74:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "166:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "125:40:1"
},
"nodeType": "YulFunctionCall",
"src": "125:48:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "109:15:1"
},
"nodeType": "YulFunctionCall",
"src": "109:65:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "100:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "190:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "197:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "183:6:1"
},
"nodeType": "YulFunctionCall",
"src": "183:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "183:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "213:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "228:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "235:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "224:3:1"
},
"nodeType": "YulFunctionCall",
"src": "224:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "217:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "278:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "287:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "290:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "280:6:1"
},
"nodeType": "YulFunctionCall",
"src": "280:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "280:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "259:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "264:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "255:3:1"
},
"nodeType": "YulFunctionCall",
"src": "255:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "273:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "252:2:1"
},
"nodeType": "YulFunctionCall",
"src": "252:25:1"
},
"nodeType": "YulIf",
"src": "249:2:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "327:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "332:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "337:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "303:23:1"
},
"nodeType": "YulFunctionCall",
"src": "303:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "303:41:1"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "63:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "68:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "76:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "84:5:1",
"type": ""
}
],
"src": "7:343:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "408:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "418:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "440:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "427:12:1"
},
"nodeType": "YulFunctionCall",
"src": "427:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "418:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "483:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "456:26:1"
},
"nodeType": "YulFunctionCall",
"src": "456:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "456:33:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "386:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "394:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "402:5:1",
"type": ""
}
],
"src": "356:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "564:80:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "574:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "589:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "583:5:1"
},
"nodeType": "YulFunctionCall",
"src": "583:13:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "574:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "632:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "605:26:1"
},
"nodeType": "YulFunctionCall",
"src": "605:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "605:33:1"
}
]
},
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "542:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "550:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "558:5:1",
"type": ""
}
],
"src": "501:143:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "699:84:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "709:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "731:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "718:12:1"
},
"nodeType": "YulFunctionCall",
"src": "718:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "709:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "771:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "747:23:1"
},
"nodeType": "YulFunctionCall",
"src": "747:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "747:30:1"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "677:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "685:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "693:5:1",
"type": ""
}
],
"src": "650:133:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "849:77:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "859:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "874:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "868:5:1"
},
"nodeType": "YulFunctionCall",
"src": "868:13:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "859:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "914:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "890:23:1"
},
"nodeType": "YulFunctionCall",
"src": "890:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "890:30:1"
}
]
},
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "827:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "835:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "843:5:1",
"type": ""
}
],
"src": "789:137:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1019:277:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1068:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1077:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1080:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1070:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1070:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1070:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1047:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1055:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1043:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1043:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1062:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1039:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1039:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1032:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1032:35:1"
},
"nodeType": "YulIf",
"src": "1029:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1093:30:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1116:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1103:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1103:20:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1093:6:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1166:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1175:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1178:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1168:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1168:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1168:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1138:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1146:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1135:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1135:30:1"
},
"nodeType": "YulIf",
"src": "1132:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1191:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1207:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1215:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1203:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1203:17:1"
},
"variableNames": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "1191:8:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1274:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1283:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1286:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1276:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1276:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1276:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "1239:8:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1253:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1261:4:1",
"type": "",
"value": "0x01"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1249:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1249:17:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1235:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1235:32:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1269:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1232:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1232:41:1"
},
"nodeType": "YulIf",
"src": "1229:2:1"
}
]
},
"name": "abi_decode_t_bytes_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "986:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "994:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "arrayPos",
"nodeType": "YulTypedName",
"src": "1002:8:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1012:6:1",
"type": ""
}
],
"src": "945:351:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1376:210:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1425:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1434:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1437:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1427:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1427:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1427:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1404:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1412:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1400:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1400:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1419:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1396:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1396:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1389:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1389:35:1"
},
"nodeType": "YulIf",
"src": "1386:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1450:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1477:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1464:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1464:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1454:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1493:87:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1553:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1561:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1549:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1549:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1568:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1576:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1502:46:1"
},
"nodeType": "YulFunctionCall",
"src": "1502:78:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1493:5:1"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1354:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1362:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1370:5:1",
"type": ""
}
],
"src": "1315:271:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1644:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1654:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1676:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1663:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1663:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1654:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1719:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1692:26:1"
},
"nodeType": "YulFunctionCall",
"src": "1692:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1692:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1622:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1630:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1638:5:1",
"type": ""
}
],
"src": "1592:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1800:80:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1810:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1825:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1819:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1819:13:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1810:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1868:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1841:26:1"
},
"nodeType": "YulFunctionCall",
"src": "1841:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1841:33:1"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1778:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1786:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1794:5:1",
"type": ""
}
],
"src": "1737:143:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1952:196:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1998:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2007:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2010:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2000:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2000:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2000:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1973:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1982:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1969:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1969:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1994:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1965:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1965:32:1"
},
"nodeType": "YulIf",
"src": "1962:2:1"
},
{
"nodeType": "YulBlock",
"src": "2024:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2039:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2053:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2043:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2068:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2103:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2114:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2099:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2099:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2123:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2078:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2078:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2068:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1922:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1933:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1945:6:1",
"type": ""
}
],
"src": "1886:262:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2231:207:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2277:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2286:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2289:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2279:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2279:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2279:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2252:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2261:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2248:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2248:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2273:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2244:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2244:32:1"
},
"nodeType": "YulIf",
"src": "2241:2:1"
},
{
"nodeType": "YulBlock",
"src": "2303:128:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2318:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2332:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2322:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2347:74:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2393:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2404:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2389:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2389:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2413:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "2357:31:1"
},
"nodeType": "YulFunctionCall",
"src": "2357:64:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2347:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2201:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2212:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2224:6:1",
"type": ""
}
],
"src": "2154:284:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2507:193:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2553:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2562:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2565:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2555:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2555:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2555:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2528:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2537:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2524:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2524:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2549:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2520:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2520:32:1"
},
"nodeType": "YulIf",
"src": "2517:2:1"
},
{
"nodeType": "YulBlock",
"src": "2579:114:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2594:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2608:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2598:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2623:60:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2655:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2666:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2651:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2651:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2675:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "2633:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2633:50:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2623:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2477:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2488:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2500:6:1",
"type": ""
}
],
"src": "2444:256:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2780:204:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2826:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2835:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2838:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2828:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2828:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2828:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2801:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2810:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2797:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2797:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2822:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2793:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2793:32:1"
},
"nodeType": "YulIf",
"src": "2790:2:1"
},
{
"nodeType": "YulBlock",
"src": "2852:125:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2867:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2881:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2871:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2896:71:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2939:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2950:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2935:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2935:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2959:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulIdentifier",
"src": "2906:28:1"
},
"nodeType": "YulFunctionCall",
"src": "2906:61:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2896:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2750:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2761:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2773:6:1",
"type": ""
}
],
"src": "2706:278:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3075:308:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3121:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3130:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3133:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3123:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3123:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3123:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3096:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3105:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3092:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3092:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3117:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3088:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3088:32:1"
},
"nodeType": "YulIf",
"src": "3085:2:1"
},
{
"nodeType": "YulBlock",
"src": "3147:229:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3162:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3193:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3204:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3189:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3189:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3176:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3176:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3166:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3254:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3263:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3266:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3256:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3256:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3256:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3226:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3234:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3223:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3223:30:1"
},
"nodeType": "YulIf",
"src": "3220:2:1"
},
{
"nodeType": "YulAssignment",
"src": "3284:82:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3338:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3349:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3334:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3334:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3358:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bytes_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "3302:31:1"
},
"nodeType": "YulFunctionCall",
"src": "3302:64:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3284:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3292:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3037:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3048:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3060:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3068:6:1",
"type": ""
}
],
"src": "2990:393:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3481:426:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3527:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3536:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3539:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3529:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3529:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3529:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3502:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3511:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3498:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3498:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3523:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3494:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3494:32:1"
},
"nodeType": "YulIf",
"src": "3491:2:1"
},
{
"nodeType": "YulBlock",
"src": "3553:219:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3568:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3599:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3610:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3595:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3595:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3582:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3582:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3572:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3660:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3669:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3672:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3662:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3662:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3662:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3632:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3640:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3629:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3629:30:1"
},
"nodeType": "YulIf",
"src": "3626:2:1"
},
{
"nodeType": "YulAssignment",
"src": "3690:72:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3734:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3745:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3730:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3730:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3754:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3700:29:1"
},
"nodeType": "YulFunctionCall",
"src": "3700:62:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3690:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3782:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3797:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3811:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3801:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3827:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3862:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3873:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3858:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3858:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3882:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3837:20:1"
},
"nodeType": "YulFunctionCall",
"src": "3837:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3827:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes_memory_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3443:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3454:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3466:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3474:6:1",
"type": ""
}
],
"src": "3389:518:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4022:554:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4068:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4077:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4080:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4070:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4070:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4070:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4043:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4052:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4039:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4039:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4064:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4035:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4035:32:1"
},
"nodeType": "YulIf",
"src": "4032:2:1"
},
{
"nodeType": "YulBlock",
"src": "4094:219:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4109:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4140:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4151:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4136:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4136:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4123:12:1"
},
"nodeType": "YulFunctionCall",
"src": "4123:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4113:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4201:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4210:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4213:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4203:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4203:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4203:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4173:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4181:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4170:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4170:30:1"
},
"nodeType": "YulIf",
"src": "4167:2:1"
},
{
"nodeType": "YulAssignment",
"src": "4231:72:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4275:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4286:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4271:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4271:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4295:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4241:29:1"
},
"nodeType": "YulFunctionCall",
"src": "4241:62:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4231:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4323:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4338:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4352:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4342:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4368:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4403:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4414:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4399:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4399:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4423:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4378:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4378:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4368:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4451:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4466:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4480:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4470:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4496:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4531:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4542:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4527:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4527:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4551:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4506:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4506:53:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4496:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes_memory_ptrt_uint256t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3976:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3987:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3999:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4007:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4015:6:1",
"type": ""
}
],
"src": "3913:663:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4648:196:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4694:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4703:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4706:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4696:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4696:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4696:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4669:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4678:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4665:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4665:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4690:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4661:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4661:32:1"
},
"nodeType": "YulIf",
"src": "4658:2:1"
},
{
"nodeType": "YulBlock",
"src": "4720:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4735:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4749:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4739:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4764:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4799:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4810:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4795:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4795:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4819:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4774:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4774:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4764:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4618:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4629:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4641:6:1",
"type": ""
}
],
"src": "4582:262:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4927:207:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4973:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4982:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4985:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4975:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4975:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4975:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4948:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4957:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4944:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4944:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4969:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4940:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4940:32:1"
},
"nodeType": "YulIf",
"src": "4937:2:1"
},
{
"nodeType": "YulBlock",
"src": "4999:128:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5014:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5028:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5018:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5043:74:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5089:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5100:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5085:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5085:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5109:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "5053:31:1"
},
"nodeType": "YulFunctionCall",
"src": "5053:64:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5043:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4897:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4908:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4920:6:1",
"type": ""
}
],
"src": "4850:284:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5205:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5222:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5245:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5227:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5227:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5215:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5215:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "5215:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5193:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5200:3:1",
"type": ""
}
],
"src": "5140:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5323:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5340:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5360:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "5345:14:1"
},
"nodeType": "YulFunctionCall",
"src": "5345:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5333:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5333:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "5333:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5311:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5318:3:1",
"type": ""
}
],
"src": "5264:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5501:201:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5511:77:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5576:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5581:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5518:57:1"
},
"nodeType": "YulFunctionCall",
"src": "5518:70:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5511:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "5622:5:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5629:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5634:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "5598:23:1"
},
"nodeType": "YulFunctionCall",
"src": "5598:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "5598:43:1"
},
{
"nodeType": "YulAssignment",
"src": "5650:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5661:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5688:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5666:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5666:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5657:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5657:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5650:3:1"
}
]
}
]
},
"name": "abi_encode_t_bytes_calldata_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "5474:5:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5481:6:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5489:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5497:3:1",
"type": ""
}
],
"src": "5401:301:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5798:270:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5808:52:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5854:5:1"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5822:31:1"
},
"nodeType": "YulFunctionCall",
"src": "5822:38:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5812:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5869:77:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5934:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5939:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5876:57:1"
},
"nodeType": "YulFunctionCall",
"src": "5876:70:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5869:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5981:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5988:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5977:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5977:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5995:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6000:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5955:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5955:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "5955:52:1"
},
{
"nodeType": "YulAssignment",
"src": "6016:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6027:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6054:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "6032:21:1"
},
"nodeType": "YulFunctionCall",
"src": "6032:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6023:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6023:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6016:3:1"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5779:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5786:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5794:3:1",
"type": ""
}
],
"src": "5708:360:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6147:74:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6164:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6208:5:1"
}
],
"functionName": {
"name": "convert_t_rational_0_by_1_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "6169:38:1"
},
"nodeType": "YulFunctionCall",
"src": "6169:45:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6157:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6157:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "6157:58:1"
}
]
},
"name": "abi_encode_t_rational_0_by_1_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6135:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6142:3:1",
"type": ""
}
],
"src": "6074:147:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6302:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6319:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6365:5:1"
}
],
"functionName": {
"name": "convert_t_rational_104_by_1_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "6324:40:1"
},
"nodeType": "YulFunctionCall",
"src": "6324:47:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6312:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6312:60:1"
},
"nodeType": "YulExpressionStatement",
"src": "6312:60:1"
}
]
},
"name": "abi_encode_t_rational_104_by_1_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6290:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6297:3:1",
"type": ""
}
],
"src": "6227:151:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6458:75:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6475:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6520:5:1"
}
],
"functionName": {
"name": "convert_t_rational_20_by_1_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "6480:39:1"
},
"nodeType": "YulFunctionCall",
"src": "6480:46:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6468:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6468:59:1"
},
"nodeType": "YulExpressionStatement",
"src": "6468:59:1"
}
]
},
"name": "abi_encode_t_rational_20_by_1_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6446:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6453:3:1",
"type": ""
}
],
"src": "6384:149:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6613:75:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6630:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6675:5:1"
}
],
"functionName": {
"name": "convert_t_rational_32_by_1_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "6635:39:1"
},
"nodeType": "YulFunctionCall",
"src": "6635:46:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6623:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6623:59:1"
},
"nodeType": "YulExpressionStatement",
"src": "6623:59:1"
}
]
},
"name": "abi_encode_t_rational_32_by_1_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6601:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6608:3:1",
"type": ""
}
],
"src": "6539:149:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6768:75:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6785:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6830:5:1"
}
],
"functionName": {
"name": "convert_t_rational_40_by_1_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "6790:39:1"
},
"nodeType": "YulFunctionCall",
"src": "6790:46:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6778:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6778:59:1"
},
"nodeType": "YulExpressionStatement",
"src": "6778:59:1"
}
]
},
"name": "abi_encode_t_rational_40_by_1_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6756:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6763:3:1",
"type": ""
}
],
"src": "6694:149:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6923:75:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6940:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6985:5:1"
}
],
"functionName": {
"name": "convert_t_rational_72_by_1_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "6945:39:1"
},
"nodeType": "YulFunctionCall",
"src": "6945:46:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6933:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6933:59:1"
},
"nodeType": "YulExpressionStatement",
"src": "6933:59:1"
}
]
},
"name": "abi_encode_t_rational_72_by_1_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6911:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6918:3:1",
"type": ""
}
],
"src": "6849:149:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7150:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7160:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7226:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7231:2:1",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7167:58:1"
},
"nodeType": "YulFunctionCall",
"src": "7167:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7160:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7332:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_1223988afd553e1f6c65194803d2a1120c53ffecdf3300cd0051a9d942da56cc",
"nodeType": "YulIdentifier",
"src": "7243:88:1"
},
"nodeType": "YulFunctionCall",
"src": "7243:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "7243:93:1"
},
{
"nodeType": "YulAssignment",
"src": "7345:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7356:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7361:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7352:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7352:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7345:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1223988afd553e1f6c65194803d2a1120c53ffecdf3300cd0051a9d942da56cc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7138:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7146:3:1",
"type": ""
}
],
"src": "7004:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7522:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7532:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7598:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7603:2:1",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7539:58:1"
},
"nodeType": "YulFunctionCall",
"src": "7539:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7532:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7704:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_1e93a013b5e39b106e10dbfa042b3c0605a5afebe8c7af468b0aa90f7725c3a3",
"nodeType": "YulIdentifier",
"src": "7615:88:1"
},
"nodeType": "YulFunctionCall",
"src": "7615:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "7615:93:1"
},
{
"nodeType": "YulAssignment",
"src": "7717:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7728:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7733:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7724:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7724:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7717:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e93a013b5e39b106e10dbfa042b3c0605a5afebe8c7af468b0aa90f7725c3a3_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7510:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7518:3:1",
"type": ""
}
],
"src": "7376:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7894:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7904:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7970:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7975:2:1",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7911:58:1"
},
"nodeType": "YulFunctionCall",
"src": "7911:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7904:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8076:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d",
"nodeType": "YulIdentifier",
"src": "7987:88:1"
},
"nodeType": "YulFunctionCall",
"src": "7987:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "7987:93:1"
},
{
"nodeType": "YulAssignment",
"src": "8089:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8100:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8105:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8096:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8096:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8089:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7882:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7890:3:1",
"type": ""
}
],
"src": "7748:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8266:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8276:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8342:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8347:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8283:58:1"
},
"nodeType": "YulFunctionCall",
"src": "8283:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8276:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8448:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_434df495b4a5db5c8d98c411b670dd96f38de64ba377764484f8914ccbe7167b",
"nodeType": "YulIdentifier",
"src": "8359:88:1"
},
"nodeType": "YulFunctionCall",
"src": "8359:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "8359:93:1"
},
{
"nodeType": "YulAssignment",
"src": "8461:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8472:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8477:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8468:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8468:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8461:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_434df495b4a5db5c8d98c411b670dd96f38de64ba377764484f8914ccbe7167b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8254:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8262:3:1",
"type": ""
}
],
"src": "8120:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8638:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8648:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8714:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8719:2:1",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8655:58:1"
},
"nodeType": "YulFunctionCall",
"src": "8655:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8648:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8820:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_6c2e04bb0753bd513c9aafafdf4dd40b1b4fc5ff9e8d9a8712d88d9faae2a8dd",
"nodeType": "YulIdentifier",
"src": "8731:88:1"
},
"nodeType": "YulFunctionCall",
"src": "8731:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "8731:93:1"
},
{
"nodeType": "YulAssignment",
"src": "8833:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8844:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8849:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8840:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8840:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8833:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6c2e04bb0753bd513c9aafafdf4dd40b1b4fc5ff9e8d9a8712d88d9faae2a8dd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8626:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8634:3:1",
"type": ""
}
],
"src": "8492:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9010:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9020:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9086:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9091:2:1",
"type": "",
"value": "22"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9027:58:1"
},
"nodeType": "YulFunctionCall",
"src": "9027:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9020:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9192:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_6c4194f5fa125e646cca764cf79a78a556ccabf7f14dd4bf415294ad179a557c",
"nodeType": "YulIdentifier",
"src": "9103:88:1"
},
"nodeType": "YulFunctionCall",
"src": "9103:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "9103:93:1"
},
{
"nodeType": "YulAssignment",
"src": "9205:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9216:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9221:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9212:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9212:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9205:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6c4194f5fa125e646cca764cf79a78a556ccabf7f14dd4bf415294ad179a557c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8998:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9006:3:1",
"type": ""
}
],
"src": "8864:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9382:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9392:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9458:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9463:2:1",
"type": "",
"value": "39"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9399:58:1"
},
"nodeType": "YulFunctionCall",
"src": "9399:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9392:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9564:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_810e5e203ee31771bb9f7e8ca8bfe8ad0d2acad6cecf7dd7fe7a62046a4bb877",
"nodeType": "YulIdentifier",
"src": "9475:88:1"
},
"nodeType": "YulFunctionCall",
"src": "9475:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "9475:93:1"
},
{
"nodeType": "YulAssignment",
"src": "9577:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9588:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9593:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9584:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9584:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9577:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_810e5e203ee31771bb9f7e8ca8bfe8ad0d2acad6cecf7dd7fe7a62046a4bb877_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9370:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9378:3:1",
"type": ""
}
],
"src": "9236:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9754:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9764:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9830:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9835:2:1",
"type": "",
"value": "26"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9771:58:1"
},
"nodeType": "YulFunctionCall",
"src": "9771:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9764:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9936:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_8210cb852fe81020f9cdd9c05b52f300bd0b30e1ce2edd12eda6da7076295af5",
"nodeType": "YulIdentifier",
"src": "9847:88:1"
},
"nodeType": "YulFunctionCall",
"src": "9847:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "9847:93:1"
},
{
"nodeType": "YulAssignment",
"src": "9949:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9960:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9965:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9956:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9956:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9949:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8210cb852fe81020f9cdd9c05b52f300bd0b30e1ce2edd12eda6da7076295af5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9742:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9750:3:1",
"type": ""
}
],
"src": "9608:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10126:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10136:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10202:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10207:2:1",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10143:58:1"
},
"nodeType": "YulFunctionCall",
"src": "10143:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10136:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10308:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_ed43e475295217a253662104b0cb33ce188e5eff1f0bb96f17e3dfbe1720a7ec",
"nodeType": "YulIdentifier",
"src": "10219:88:1"
},
"nodeType": "YulFunctionCall",
"src": "10219:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "10219:93:1"
},
{
"nodeType": "YulAssignment",
"src": "10321:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10332:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10337:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10328:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10328:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10321:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_ed43e475295217a253662104b0cb33ce188e5eff1f0bb96f17e3dfbe1720a7ec_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10114:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10122:3:1",
"type": ""
}
],
"src": "9980:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10417:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10434:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10457:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10439:17:1"
},
"nodeType": "YulFunctionCall",
"src": "10439:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10427:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10427:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "10427:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10405:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10412:3:1",
"type": ""
}
],
"src": "10352:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10574:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10584:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10596:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10607:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10592:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10592:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10584:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10664:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10677:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10688:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10673:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10673:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "10620:43:1"
},
"nodeType": "YulFunctionCall",
"src": "10620:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "10620:71:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10546:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10558:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10569:4:1",
"type": ""
}
],
"src": "10476:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10830:206:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10840:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10852:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10863:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10848:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10848:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10840:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10920:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10933:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10944:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10929:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10929:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "10876:43:1"
},
"nodeType": "YulFunctionCall",
"src": "10876:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "10876:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "11001:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11014:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11025:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11010:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11010:18:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "10957:43:1"
},
"nodeType": "YulFunctionCall",
"src": "10957:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "10957:72:1"
}
]
},
"name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10794:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "10806:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10814:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10825:4:1",
"type": ""
}
],
"src": "10704:332:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11196:288:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11206:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11218:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11229:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11214:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11214:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11206:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11286:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11299:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11310:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11295:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11295:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "11242:43:1"
},
"nodeType": "YulFunctionCall",
"src": "11242:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "11242:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "11367:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11380:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11391:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11376:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11376:18:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "11323:43:1"
},
"nodeType": "YulFunctionCall",
"src": "11323:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "11323:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "11449:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11462:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11473:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11458:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11458:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "11405:43:1"
},
"nodeType": "YulFunctionCall",
"src": "11405:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "11405:72:1"
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11152:9:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "11164:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11172:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11180:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11191:4:1",
"type": ""
}
],
"src": "11042:442:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11700:454:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11710:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11722:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11733:3:1",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11718:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11718:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11710:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11791:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11804:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11815:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11800:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11800:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "11747:43:1"
},
"nodeType": "YulFunctionCall",
"src": "11747:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "11747:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "11872:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11885:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11896:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11881:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11881:18:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "11828:43:1"
},
"nodeType": "YulFunctionCall",
"src": "11828:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "11828:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "11954:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11967:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11978:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11963:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11963:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "11910:43:1"
},
"nodeType": "YulFunctionCall",
"src": "11910:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "11910:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "12036:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12049:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12060:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12045:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12045:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "11992:43:1"
},
"nodeType": "YulFunctionCall",
"src": "11992:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "11992:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "12118:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12131:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12142:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12127:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12127:19:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "12074:43:1"
},
"nodeType": "YulFunctionCall",
"src": "12074:73:1"
},
"nodeType": "YulExpressionStatement",
"src": "12074:73:1"
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11640:9:1",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "11652:6:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "11660:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "11668:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11676:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11684:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11695:4:1",
"type": ""
}
],
"src": "11490:664:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12286:206:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12296:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12308:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12319:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12304:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12304:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12296:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12376:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12389:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12400:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12385:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12385:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "12332:43:1"
},
"nodeType": "YulFunctionCall",
"src": "12332:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "12332:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "12457:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12470:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12481:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12466:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12466:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "12413:43:1"
},
"nodeType": "YulFunctionCall",
"src": "12413:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "12413:72:1"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12250:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "12262:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12270:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12281:4:1",
"type": ""
}
],
"src": "12160:332:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12590:118:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12600:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12612:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12623:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12608:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12608:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12600:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12674:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12687:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12698:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12683:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12683:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "12636:37:1"
},
"nodeType": "YulFunctionCall",
"src": "12636:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "12636:65:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12562:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12574:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12585:4:1",
"type": ""
}
],
"src": "12498:210:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12876:293:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12886:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12898:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12909:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12894:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12894:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12886:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12933:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12944:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12929:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12929:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12952:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12958:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12948:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12948:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12922:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12922:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "12922:47:1"
},
{
"nodeType": "YulAssignment",
"src": "12978:94:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13050:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "13058:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13067:4:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes_calldata_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12986:63:1"
},
"nodeType": "YulFunctionCall",
"src": "12986:86:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12978:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "13134:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13147:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13158:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13143:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13143:18:1"
}
],
"functionName": {
"name": "abi_encode_t_rational_0_by_1_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "13082:51:1"
},
"nodeType": "YulFunctionCall",
"src": "13082:80:1"
},
"nodeType": "YulExpressionStatement",
"src": "13082:80:1"
}
]
},
"name": "abi_encode_tuple_t_bytes_calldata_ptr_t_rational_0_by_1__to_t_bytes_memory_ptr_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12832:9:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "12844:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "12852:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12860:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12871:4:1",
"type": ""
}
],
"src": "12714:455:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13376:386:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13386:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13398:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13409:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13394:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13394:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13386:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13433:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13444:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13429:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13429:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13452:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13458:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13448:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13448:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13422:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13422:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "13422:47:1"
},
{
"nodeType": "YulAssignment",
"src": "13478:94:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13550:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "13558:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13567:4:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes_calldata_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13486:63:1"
},
"nodeType": "YulFunctionCall",
"src": "13486:86:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13478:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "13636:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13649:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13660:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13645:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13645:18:1"
}
],
"functionName": {
"name": "abi_encode_t_rational_104_by_1_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "13582:53:1"
},
"nodeType": "YulFunctionCall",
"src": "13582:82:1"
},
"nodeType": "YulExpressionStatement",
"src": "13582:82:1"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "13727:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13740:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13751:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13736:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13736:18:1"
}
],
"functionName": {
"name": "abi_encode_t_rational_32_by_1_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "13674:52:1"
},
"nodeType": "YulFunctionCall",
"src": "13674:81:1"
},
"nodeType": "YulExpressionStatement",
"src": "13674:81:1"
}
]
},
"name": "abi_encode_tuple_t_bytes_calldata_ptr_t_rational_104_by_1_t_rational_32_by_1__to_t_bytes_memory_ptr_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13324:9:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "13336:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "13344:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "13352:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13360:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13371:4:1",
"type": ""
}
],
"src": "13175:587:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13931:294:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13941:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13953:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13964:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13949:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13949:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13941:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13988:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13999:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13984:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13984:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14007:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14013:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14003:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14003:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13977:6:1"
},
"nodeType": "YulFunctionCall",
"src": "13977:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "13977:47:1"
},
{
"nodeType": "YulAssignment",
"src": "14033:94:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "14105:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "14113:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14122:4:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes_calldata_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14041:63:1"
},
"nodeType": "YulFunctionCall",
"src": "14041:86:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14033:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "14190:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14203:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14214:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14199:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14199:18:1"
}
],
"functionName": {
"name": "abi_encode_t_rational_20_by_1_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "14137:52:1"
},
"nodeType": "YulFunctionCall",
"src": "14137:81:1"
},
"nodeType": "YulExpressionStatement",
"src": "14137:81:1"
}
]
},
"name": "abi_encode_tuple_t_bytes_calldata_ptr_t_rational_20_by_1__to_t_bytes_memory_ptr_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13887:9:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "13899:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "13907:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13915:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13926:4:1",
"type": ""
}
],
"src": "13768:457:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14431:385:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14441:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14453:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14464:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14449:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14449:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14441:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14488:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14499:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14484:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14484:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14507:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14513:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14503:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14503:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14477:6:1"
},
"nodeType": "YulFunctionCall",
"src": "14477:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "14477:47:1"
},
{
"nodeType": "YulAssignment",
"src": "14533:94:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "14605:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "14613:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14622:4:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes_calldata_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14541:63:1"
},
"nodeType": "YulFunctionCall",
"src": "14541:86:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14533:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "14690:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14703:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14714:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14699:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14699:18:1"
}
],
"functionName": {
"name": "abi_encode_t_rational_40_by_1_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "14637:52:1"
},
"nodeType": "YulFunctionCall",
"src": "14637:81:1"
},
"nodeType": "YulExpressionStatement",
"src": "14637:81:1"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "14781:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14794:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14805:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14790:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14790:18:1"
}
],
"functionName": {
"name": "abi_encode_t_rational_32_by_1_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "14728:52:1"
},
"nodeType": "YulFunctionCall",
"src": "14728:81:1"
},
"nodeType": "YulExpressionStatement",
"src": "14728:81:1"
}
]
},
"name": "abi_encode_tuple_t_bytes_calldata_ptr_t_rational_40_by_1_t_rational_32_by_1__to_t_bytes_memory_ptr_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14379:9:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "14391:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "14399:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "14407:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "14415:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14426:4:1",
"type": ""
}
],
"src": "14231:585:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15022:385:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15032:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15044:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15055:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15040:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15040:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15032:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15079:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15090:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15075:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15075:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15098:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15104:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15094:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15094:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15068:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15068:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "15068:47:1"
},
{
"nodeType": "YulAssignment",
"src": "15124:94:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15196:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "15204:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15213:4:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes_calldata_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15132:63:1"
},
"nodeType": "YulFunctionCall",
"src": "15132:86:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15124:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "15281:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15294:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15305:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15290:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15290:18:1"
}
],
"functionName": {
"name": "abi_encode_t_rational_72_by_1_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "15228:52:1"
},
"nodeType": "YulFunctionCall",
"src": "15228:81:1"
},
"nodeType": "YulExpressionStatement",
"src": "15228:81:1"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "15372:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15385:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15396:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15381:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15381:18:1"
}
],
"functionName": {
"name": "abi_encode_t_rational_32_by_1_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "15319:52:1"
},
"nodeType": "YulFunctionCall",
"src": "15319:81:1"
},
"nodeType": "YulExpressionStatement",
"src": "15319:81:1"
}
]
},
"name": "abi_encode_tuple_t_bytes_calldata_ptr_t_rational_72_by_1_t_rational_32_by_1__to_t_bytes_memory_ptr_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14970:9:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "14982:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "14990:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "14998:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15006:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15017:4:1",
"type": ""
}
],
"src": "14822:585:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15594:366:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15604:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15616:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15627:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15612:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15612:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15604:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15651:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15662:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15647:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15647:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15670:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15676:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15666:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15666:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15640:6:1"
},
"nodeType": "YulFunctionCall",
"src": "15640:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "15640:47:1"
},
{
"nodeType": "YulAssignment",
"src": "15696:84:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15766:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15775:4:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15704:61:1"
},
"nodeType": "YulFunctionCall",
"src": "15704:76:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15696:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "15834:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15847:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15858:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15843:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15843:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "15790:43:1"
},
"nodeType": "YulFunctionCall",
"src": "15790:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "15790:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "15925:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15938:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15949:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15934:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15934:18:1"
}
],
"functionName": {
"name": "abi_encode_t_rational_20_by_1_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "15872:52:1"
},
"nodeType": "YulFunctionCall",
"src": "15872:81:1"
},
"nodeType": "YulExpressionStatement",
"src": "15872:81:1"
}
]
},
"name": "abi_encode_tuple_t_bytes_memory_ptr_t_uint256_t_rational_20_by_1__to_t_bytes_memory_ptr_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15550:9:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "15562:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "15570:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15578:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15589:4:1",
"type": ""
}
],
"src": "15413:547:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16137:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16147:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16159:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16170:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16155:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16155:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16147:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16194:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16205:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16190:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16190:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16213:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16219:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16209:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16209:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16183:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16183:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "16183:47:1"
},
{
"nodeType": "YulAssignment",
"src": "16239:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16373:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1223988afd553e1f6c65194803d2a1120c53ffecdf3300cd0051a9d942da56cc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16247:124:1"
},
"nodeType": "YulFunctionCall",
"src": "16247:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16239:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1223988afd553e1f6c65194803d2a1120c53ffecdf3300cd0051a9d942da56cc__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16117:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16132:4:1",
"type": ""
}
],
"src": "15966:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16562:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16572:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16584:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16595:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16580:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16580:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16572:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16619:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16630:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16615:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16615:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16638:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16644:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16634:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16634:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16608:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16608:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "16608:47:1"
},
{
"nodeType": "YulAssignment",
"src": "16664:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16798:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e93a013b5e39b106e10dbfa042b3c0605a5afebe8c7af468b0aa90f7725c3a3_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16672:124:1"
},
"nodeType": "YulFunctionCall",
"src": "16672:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16664:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e93a013b5e39b106e10dbfa042b3c0605a5afebe8c7af468b0aa90f7725c3a3__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16542:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16557:4:1",
"type": ""
}
],
"src": "16391:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16987:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16997:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17009:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17020:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17005:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17005:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16997:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17044:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17055:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17040:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17040:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17063:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17069:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17059:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17059:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17033:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17033:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "17033:47:1"
},
{
"nodeType": "YulAssignment",
"src": "17089:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17223:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17097:124:1"
},
"nodeType": "YulFunctionCall",
"src": "17097:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17089:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16967:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16982:4:1",
"type": ""
}
],
"src": "16816:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17412:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17422:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17434:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17445:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17430:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17430:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17422:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17469:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17480:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17465:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17465:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17488:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17494:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17484:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17484:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17458:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17458:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "17458:47:1"
},
{
"nodeType": "YulAssignment",
"src": "17514:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17648:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_434df495b4a5db5c8d98c411b670dd96f38de64ba377764484f8914ccbe7167b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17522:124:1"
},
"nodeType": "YulFunctionCall",
"src": "17522:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17514:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_434df495b4a5db5c8d98c411b670dd96f38de64ba377764484f8914ccbe7167b__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17392:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17407:4:1",
"type": ""
}
],
"src": "17241:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17837:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17847:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17859:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17870:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17855:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17855:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17847:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17894:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17905:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17890:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17890:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17913:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17919:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17909:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17909:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17883:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17883:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "17883:47:1"
},
{
"nodeType": "YulAssignment",
"src": "17939:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18073:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6c2e04bb0753bd513c9aafafdf4dd40b1b4fc5ff9e8d9a8712d88d9faae2a8dd_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17947:124:1"
},
"nodeType": "YulFunctionCall",
"src": "17947:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17939:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6c2e04bb0753bd513c9aafafdf4dd40b1b4fc5ff9e8d9a8712d88d9faae2a8dd__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17817:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17832:4:1",
"type": ""
}
],
"src": "17666:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18262:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18272:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18284:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18295:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18280:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18280:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18272:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18319:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18330:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18315:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18315:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18338:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18344:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18334:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18334:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18308:6:1"
},
"nodeType": "YulFunctionCall",
"src": "18308:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "18308:47:1"
},
{
"nodeType": "YulAssignment",
"src": "18364:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18498:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6c4194f5fa125e646cca764cf79a78a556ccabf7f14dd4bf415294ad179a557c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18372:124:1"
},
"nodeType": "YulFunctionCall",
"src": "18372:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18364:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6c4194f5fa125e646cca764cf79a78a556ccabf7f14dd4bf415294ad179a557c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18242:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18257:4:1",
"type": ""
}
],
"src": "18091:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18687:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18697:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18709:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18720:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18705:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18705:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18697:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18744:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18755:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18740:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18740:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18763:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18769:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18759:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18759:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18733:6:1"
},
"nodeType": "YulFunctionCall",
"src": "18733:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "18733:47:1"
},
{
"nodeType": "YulAssignment",
"src": "18789:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18923:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_810e5e203ee31771bb9f7e8ca8bfe8ad0d2acad6cecf7dd7fe7a62046a4bb877_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18797:124:1"
},
"nodeType": "YulFunctionCall",
"src": "18797:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18789:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_810e5e203ee31771bb9f7e8ca8bfe8ad0d2acad6cecf7dd7fe7a62046a4bb877__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18667:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18682:4:1",
"type": ""
}
],
"src": "18516:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19112:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19122:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19134:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19145:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19130:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19130:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19122:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19169:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19180:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19165:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19165:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19188:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19194:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19184:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19184:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19158:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19158:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "19158:47:1"
},
{
"nodeType": "YulAssignment",
"src": "19214:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19348:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8210cb852fe81020f9cdd9c05b52f300bd0b30e1ce2edd12eda6da7076295af5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19222:124:1"
},
"nodeType": "YulFunctionCall",
"src": "19222:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19214:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8210cb852fe81020f9cdd9c05b52f300bd0b30e1ce2edd12eda6da7076295af5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19092:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19107:4:1",
"type": ""
}
],
"src": "18941:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19537:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19547:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19559:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19570:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19555:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19555:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19547:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19594:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19605:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19590:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19590:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19613:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19619:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19609:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19609:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19583:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19583:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "19583:47:1"
},
{
"nodeType": "YulAssignment",
"src": "19639:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19773:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_ed43e475295217a253662104b0cb33ce188e5eff1f0bb96f17e3dfbe1720a7ec_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19647:124:1"
},
"nodeType": "YulFunctionCall",
"src": "19647:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19639:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_ed43e475295217a253662104b0cb33ce188e5eff1f0bb96f17e3dfbe1720a7ec__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19517:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19532:4:1",
"type": ""
}
],
"src": "19366:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19889:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19899:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19911:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19922:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19907:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19907:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19899:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "19979:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19992:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20003:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19988:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19988:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "19935:43:1"
},
"nodeType": "YulFunctionCall",
"src": "19935:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "19935:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19861:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "19873:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19884:4:1",
"type": ""
}
],
"src": "19791:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20060:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20070:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "20080:18:1"
},
"nodeType": "YulFunctionCall",
"src": "20080:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20070:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20129:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "20137:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "20109:19:1"
},
"nodeType": "YulFunctionCall",
"src": "20109:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "20109:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "20044:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20053:6:1",
"type": ""
}
],
"src": "20019:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20194:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20204:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20220:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "20214:5:1"
},
"nodeType": "YulFunctionCall",
"src": "20214:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20204:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20187:6:1",
"type": ""
}
],
"src": "20154:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20301:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "20406:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "20408:16:1"
},
"nodeType": "YulFunctionCall",
"src": "20408:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "20408:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20378:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20386:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "20375:2:1"
},
"nodeType": "YulFunctionCall",
"src": "20375:30:1"
},
"nodeType": "YulIf",
"src": "20372:2:1"
},
{
"nodeType": "YulAssignment",
"src": "20438:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20468:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "20446:21:1"
},
"nodeType": "YulFunctionCall",
"src": "20446:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "20438:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "20512:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "20524:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20530:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20520:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20520:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "20512:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20285:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "20296:4:1",
"type": ""
}
],
"src": "20235:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20606:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20617:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20633:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "20627:5:1"
},
"nodeType": "YulFunctionCall",
"src": "20627:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20617:6:1"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20589:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20599:6:1",
"type": ""
}
],
"src": "20548:98:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20747:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20764:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20769:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20757:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20757:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "20757:19:1"
},
{
"nodeType": "YulAssignment",
"src": "20785:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20804:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20809:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20800:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20800:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "20785:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20719:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20724:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "20735:11:1",
"type": ""
}
],
"src": "20652:168:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20922:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20939:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20944:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20932:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20932:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "20932:19:1"
},
{
"nodeType": "YulAssignment",
"src": "20960:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20979:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20984:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20975:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20975:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "20960:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20894:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20899:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "20910:11:1",
"type": ""
}
],
"src": "20826:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21045:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21055:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21078:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21060:17:1"
},
"nodeType": "YulFunctionCall",
"src": "21060:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21055:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "21089:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21112:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21094:17:1"
},
"nodeType": "YulFunctionCall",
"src": "21094:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21089:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21252:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "21254:16:1"
},
"nodeType": "YulFunctionCall",
"src": "21254:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "21254:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21173:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21180:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21248:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21176:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21176:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "21170:2:1"
},
"nodeType": "YulFunctionCall",
"src": "21170:81:1"
},
"nodeType": "YulIf",
"src": "21167:2:1"
},
{
"nodeType": "YulAssignment",
"src": "21284:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21295:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21298:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21291:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21291:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "21284:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "21032:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "21035:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "21041:3:1",
"type": ""
}
],
"src": "21001:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21354:143:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21364:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21387:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21369:17:1"
},
"nodeType": "YulFunctionCall",
"src": "21369:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21364:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "21398:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21421:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21403:17:1"
},
"nodeType": "YulFunctionCall",
"src": "21403:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21398:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21445:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "21447:16:1"
},
"nodeType": "YulFunctionCall",
"src": "21447:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "21447:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21442:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21435:6:1"
},
"nodeType": "YulFunctionCall",
"src": "21435:9:1"
},
"nodeType": "YulIf",
"src": "21432:2:1"
},
{
"nodeType": "YulAssignment",
"src": "21477:14:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21486:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21489:1:1"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "21482:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21482:9:1"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "21477:1:1"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "21343:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "21346:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "21352:1:1",
"type": ""
}
],
"src": "21312:185:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21551:300:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21561:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21584:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21566:17:1"
},
"nodeType": "YulFunctionCall",
"src": "21566:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21561:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "21595:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21618:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21600:17:1"
},
"nodeType": "YulFunctionCall",
"src": "21600:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21595:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21793:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "21795:16:1"
},
"nodeType": "YulFunctionCall",
"src": "21795:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "21795:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21705:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21698:6:1"
},
"nodeType": "YulFunctionCall",
"src": "21698:9:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21691:6:1"
},
"nodeType": "YulFunctionCall",
"src": "21691:17:1"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21713:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21720:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21788:1:1"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "21716:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21716:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "21710:2:1"
},
"nodeType": "YulFunctionCall",
"src": "21710:81:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "21687:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21687:105:1"
},
"nodeType": "YulIf",
"src": "21684:2:1"
},
{
"nodeType": "YulAssignment",
"src": "21825:20:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21840:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21843:1:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "21836:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21836:9:1"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "21825:7:1"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "21534:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "21537:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "21543:7:1",
"type": ""
}
],
"src": "21503:348:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21902:146:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21912:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21935:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21917:17:1"
},
"nodeType": "YulFunctionCall",
"src": "21917:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21912:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "21946:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21969:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21951:17:1"
},
"nodeType": "YulFunctionCall",
"src": "21951:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21946:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21993:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "21995:16:1"
},
"nodeType": "YulFunctionCall",
"src": "21995:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "21995:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "21987:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "21990:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "21984:2:1"
},
"nodeType": "YulFunctionCall",
"src": "21984:8:1"
},
"nodeType": "YulIf",
"src": "21981:2:1"
},
{
"nodeType": "YulAssignment",
"src": "22025:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22037:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22040:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22033:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22033:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "22025:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "21888:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "21891:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "21897:4:1",
"type": ""
}
],
"src": "21857:191:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22099:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22109:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22138:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "22120:17:1"
},
"nodeType": "YulFunctionCall",
"src": "22120:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "22109:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22081:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "22091:7:1",
"type": ""
}
],
"src": "22054:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22198:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22208:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22233:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "22226:6:1"
},
"nodeType": "YulFunctionCall",
"src": "22226:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "22219:6:1"
},
"nodeType": "YulFunctionCall",
"src": "22219:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "22208:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22180:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "22190:7:1",
"type": ""
}
],
"src": "22156:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22297:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22307:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22322:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22329:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "22318:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22318:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "22307:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22279:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "22289:7:1",
"type": ""
}
],
"src": "22252:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22429:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22439:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "22450:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "22439:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22411:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "22421:7:1",
"type": ""
}
],
"src": "22384:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22535:53:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22545:37:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22576:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22558:17:1"
},
"nodeType": "YulFunctionCall",
"src": "22558:24:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "22545:9:1"
}
]
}
]
},
"name": "convert_t_rational_0_by_1_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22515:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "22525:9:1",
"type": ""
}
],
"src": "22467:121:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22664:53:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22674:37:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22705:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22687:17:1"
},
"nodeType": "YulFunctionCall",
"src": "22687:24:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "22674:9:1"
}
]
}
]
},
"name": "convert_t_rational_104_by_1_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22644:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "22654:9:1",
"type": ""
}
],
"src": "22594:123:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22792:53:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22802:37:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22833:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22815:17:1"
},
"nodeType": "YulFunctionCall",
"src": "22815:24:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "22802:9:1"
}
]
}
]
},
"name": "convert_t_rational_20_by_1_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22772:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "22782:9:1",
"type": ""
}
],
"src": "22723:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22920:53:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22930:37:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22961:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22943:17:1"
},
"nodeType": "YulFunctionCall",
"src": "22943:24:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "22930:9:1"
}
]
}
]
},
"name": "convert_t_rational_32_by_1_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22900:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "22910:9:1",
"type": ""
}
],
"src": "22851:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23048:53:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23058:37:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23089:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "23071:17:1"
},
"nodeType": "YulFunctionCall",
"src": "23071:24:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "23058:9:1"
}
]
}
]
},
"name": "convert_t_rational_40_by_1_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "23028:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "23038:9:1",
"type": ""
}
],
"src": "22979:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23176:53:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23186:37:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23217:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "23199:17:1"
},
"nodeType": "YulFunctionCall",
"src": "23199:24:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "23186:9:1"
}
]
}
]
},
"name": "convert_t_rational_72_by_1_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "23156:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "23166:9:1",
"type": ""
}
],
"src": "23107:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23286:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "23309:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "23314:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23319:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "23296:12:1"
},
"nodeType": "YulFunctionCall",
"src": "23296:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "23296:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "23367:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23372:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23363:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23363:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23381:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23356:6:1"
},
"nodeType": "YulFunctionCall",
"src": "23356:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "23356:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "23268:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "23273:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "23278:6:1",
"type": ""
}
],
"src": "23235:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23444:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "23454:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "23463:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "23458:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "23523:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "23548:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "23553:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23544:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23544:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "23567:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "23572:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23563:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23563:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "23557:5:1"
},
"nodeType": "YulFunctionCall",
"src": "23557:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23537:6:1"
},
"nodeType": "YulFunctionCall",
"src": "23537:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "23537:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "23484:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23487:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "23481:2:1"
},
"nodeType": "YulFunctionCall",
"src": "23481:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "23495:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23497:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "23506:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23509:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23502:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23502:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "23497:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "23477:3:1",
"statements": []
},
"src": "23473:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23620:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "23670:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23675:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23666:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23666:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23684:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23659:6:1"
},
"nodeType": "YulFunctionCall",
"src": "23659:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "23659:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "23601:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23604:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "23598:2:1"
},
"nodeType": "YulFunctionCall",
"src": "23598:13:1"
},
"nodeType": "YulIf",
"src": "23595:2:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "23426:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "23431:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "23436:6:1",
"type": ""
}
],
"src": "23395:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23751:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "23761:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23783:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "23813:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "23791:21:1"
},
"nodeType": "YulFunctionCall",
"src": "23791:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23779:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23779:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "23765:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "23930:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "23932:16:1"
},
"nodeType": "YulFunctionCall",
"src": "23932:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "23932:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "23873:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23885:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "23870:2:1"
},
"nodeType": "YulFunctionCall",
"src": "23870:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "23909:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23921:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "23906:2:1"
},
"nodeType": "YulFunctionCall",
"src": "23906:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "23867:2:1"
},
"nodeType": "YulFunctionCall",
"src": "23867:62:1"
},
"nodeType": "YulIf",
"src": "23864:2:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23968:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "23972:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23961:6:1"
},
"nodeType": "YulFunctionCall",
"src": "23961:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "23961:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23737:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "23745:4:1",
"type": ""
}
],
"src": "23708:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24038:190:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24048:33:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24075:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "24057:17:1"
},
"nodeType": "YulFunctionCall",
"src": "24057:24:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24048:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "24171:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "24173:16:1"
},
"nodeType": "YulFunctionCall",
"src": "24173:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "24173:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24096:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24103:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "24093:2:1"
},
"nodeType": "YulFunctionCall",
"src": "24093:77:1"
},
"nodeType": "YulIf",
"src": "24090:2:1"
},
{
"nodeType": "YulAssignment",
"src": "24202:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24213:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24220:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24209:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24209:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "24202:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24024:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "24034:3:1",
"type": ""
}
],
"src": "23995:233:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24262:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24279:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24282:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24272:6:1"
},
"nodeType": "YulFunctionCall",
"src": "24272:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "24272:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24376:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24379:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24369:6:1"
},
"nodeType": "YulFunctionCall",
"src": "24369:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "24369:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24400:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24403:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24393:6:1"
},
"nodeType": "YulFunctionCall",
"src": "24393:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "24393:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "24234:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24448:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24465:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24468:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24458:6:1"
},
"nodeType": "YulFunctionCall",
"src": "24458:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "24458:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24562:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24565:4:1",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24555:6:1"
},
"nodeType": "YulFunctionCall",
"src": "24555:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "24555:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24586:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24589:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24579:6:1"
},
"nodeType": "YulFunctionCall",
"src": "24579:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "24579:15:1"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "24420:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24634:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24651:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24654:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24644:6:1"
},
"nodeType": "YulFunctionCall",
"src": "24644:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "24644:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24748:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24751:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24741:6:1"
},
"nodeType": "YulFunctionCall",
"src": "24741:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "24741:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24772:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24775:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24765:6:1"
},
"nodeType": "YulFunctionCall",
"src": "24765:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "24765:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "24606:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24840:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24850:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24868:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24875:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24864:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24864:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24884:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "24880:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24880:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "24860:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24860:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "24850:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24823:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "24833:6:1",
"type": ""
}
],
"src": "24792:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25006:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25028:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25036:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25024:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25024:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25040:31:1",
"type": "",
"value": "you don't have so much impact"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25017:6:1"
},
"nodeType": "YulFunctionCall",
"src": "25017:55:1"
},
"nodeType": "YulExpressionStatement",
"src": "25017:55:1"
}
]
},
"name": "store_literal_in_memory_1223988afd553e1f6c65194803d2a1120c53ffecdf3300cd0051a9d942da56cc",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24998:6:1",
"type": ""
}
],
"src": "24900:179:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25191:64:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25213:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25221:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25209:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25209:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25225:22:1",
"type": "",
"value": "withdraw not allowed"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25202:6:1"
},
"nodeType": "YulFunctionCall",
"src": "25202:46:1"
},
"nodeType": "YulExpressionStatement",
"src": "25202:46:1"
}
]
},
"name": "store_literal_in_memory_1e93a013b5e39b106e10dbfa042b3c0605a5afebe8c7af468b0aa90f7725c3a3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25183:6:1",
"type": ""
}
],
"src": "25085:170:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25367:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25389:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25397:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25385:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25385:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25401:21:1",
"type": "",
"value": "Caller is not owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25378:6:1"
},
"nodeType": "YulFunctionCall",
"src": "25378:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "25378:45:1"
}
]
},
"name": "store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25359:6:1",
"type": ""
}
],
"src": "25261:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25542:75:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25564:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25572:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25560:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25560:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25576:33:1",
"type": "",
"value": "claim is shut down by the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25553:6:1"
},
"nodeType": "YulFunctionCall",
"src": "25553:57:1"
},
"nodeType": "YulExpressionStatement",
"src": "25553:57:1"
}
]
},
"name": "store_literal_in_memory_434df495b4a5db5c8d98c411b670dd96f38de64ba377764484f8914ccbe7167b",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25534:6:1",
"type": ""
}
],
"src": "25436:181:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25729:72:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25751:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25759:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25747:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25747:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25763:30:1",
"type": "",
"value": "error transferring from farm"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25740:6:1"
},
"nodeType": "YulFunctionCall",
"src": "25740:54:1"
},
"nodeType": "YulExpressionStatement",
"src": "25740:54:1"
}
]
},
"name": "store_literal_in_memory_6c2e04bb0753bd513c9aafafdf4dd40b1b4fc5ff9e8d9a8712d88d9faae2a8dd",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25721:6:1",
"type": ""
}
],
"src": "25623:178:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25913:66:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25935:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25943:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25931:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25931:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25947:24:1",
"type": "",
"value": "Data is not processed."
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25924:6:1"
},
"nodeType": "YulFunctionCall",
"src": "25924:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "25924:48:1"
}
]
},
"name": "store_literal_in_memory_6c4194f5fa125e646cca764cf79a78a556ccabf7f14dd4bf415294ad179a557c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25905:6:1",
"type": ""
}
],
"src": "25807:172:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26091:120:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26113:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26121:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26109:3:1"
},
"nodeType": "YulFunctionCall",
"src": "26109:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "26125:34:1",
"type": "",
"value": "this token is not supported by t"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26102:6:1"
},
"nodeType": "YulFunctionCall",
"src": "26102:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "26102:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26181:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26189:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26177:3:1"
},
"nodeType": "YulFunctionCall",
"src": "26177:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "26194:9:1",
"type": "",
"value": "reasury"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26170:6:1"
},
"nodeType": "YulFunctionCall",
"src": "26170:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "26170:34:1"
}
]
},
"name": "store_literal_in_memory_810e5e203ee31771bb9f7e8ca8bfe8ad0d2acad6cecf7dd7fe7a62046a4bb877",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26083:6:1",
"type": ""
}
],
"src": "25985:226:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26323:70:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26345:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26353:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26341:3:1"
},
"nodeType": "YulFunctionCall",
"src": "26341:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "26357:28:1",
"type": "",
"value": "This contract is outdated."
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26334:6:1"
},
"nodeType": "YulFunctionCall",
"src": "26334:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "26334:52:1"
}
]
},
"name": "store_literal_in_memory_8210cb852fe81020f9cdd9c05b52f300bd0b30e1ce2edd12eda6da7076295af5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26315:6:1",
"type": ""
}
],
"src": "26217:176:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26505:64:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26527:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26535:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26523:3:1"
},
"nodeType": "YulFunctionCall",
"src": "26523:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "26539:22:1",
"type": "",
"value": "Caller is not nebula"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26516:6:1"
},
"nodeType": "YulFunctionCall",
"src": "26516:46:1"
},
"nodeType": "YulExpressionStatement",
"src": "26516:46:1"
}
]
},
"name": "store_literal_in_memory_ed43e475295217a253662104b0cb33ce188e5eff1f0bb96f17e3dfbe1720a7ec",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26497:6:1",
"type": ""
}
],
"src": "26399:170:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26618:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "26675:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26684:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26687:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "26677:6:1"
},
"nodeType": "YulFunctionCall",
"src": "26677:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "26677:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26641:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26666:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "26648:17:1"
},
"nodeType": "YulFunctionCall",
"src": "26648:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "26638:2:1"
},
"nodeType": "YulFunctionCall",
"src": "26638:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26631:6:1"
},
"nodeType": "YulFunctionCall",
"src": "26631:43:1"
},
"nodeType": "YulIf",
"src": "26628:2:1"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26611:5:1",
"type": ""
}
],
"src": "26575:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26743:76:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "26797:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26806:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26809:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "26799:6:1"
},
"nodeType": "YulFunctionCall",
"src": "26799:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "26799:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26766:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26788:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "26773:14:1"
},
"nodeType": "YulFunctionCall",
"src": "26773:21:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "26763:2:1"
},
"nodeType": "YulFunctionCall",
"src": "26763:32:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26756:6:1"
},
"nodeType": "YulFunctionCall",
"src": "26756:40:1"
},
"nodeType": "YulIf",
"src": "26753:2:1"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26736:5:1",
"type": ""
}
],
"src": "26703:116:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26868:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "26925:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26934:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26937:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "26927:6:1"
},
"nodeType": "YulFunctionCall",
"src": "26927:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "26927:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26891:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26916:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26898:17:1"
},
"nodeType": "YulFunctionCall",
"src": "26898:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "26888:2:1"
},
"nodeType": "YulFunctionCall",
"src": "26888:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26881:6:1"
},
"nodeType": "YulFunctionCall",
"src": "26881:43:1"
},
"nodeType": "YulIf",
"src": "26878:2:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26861:5:1",
"type": ""
}
],
"src": "26825:122:1"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert(0, 0) }\n copy_calldata_to_memory(src, dst, length)\n }\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_address_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_t_bool_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bool(value)\n }\n\n // bytes\n function abi_decode_t_bytes_calldata_ptr(offset, end) -> arrayPos, length {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n length := calldataload(offset)\n if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n arrayPos := add(offset, 0x20)\n if gt(add(arrayPos, mul(length, 0x01)), end) { revert(0, 0) }\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\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_t_uint256_fromMemory(offset, end) -> value {\n value := mload(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(0, 0) }\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_address_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bool(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\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_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value0, value1 := abi_decode_t_bytes_calldata_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value0 := abi_decode_t_bytes_memory_ptr(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_bytes_memory_ptrt_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value0 := abi_decode_t_bytes_memory_ptr(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 let offset := 64\n\n value2 := abi_decode_t_uint256(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(0, 0) }\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_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256_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_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n // bytes -> bytes\n function abi_encode_t_bytes_calldata_ptr_to_t_bytes_memory_ptr_fromStack(start, length, pos) -> end {\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n\n copy_calldata_to_memory(start, pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_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_rational_0_by_1_to_t_uint256_fromStack(value, pos) {\n mstore(pos, convert_t_rational_0_by_1_to_t_uint256(value))\n }\n\n function abi_encode_t_rational_104_by_1_to_t_uint256_fromStack(value, pos) {\n mstore(pos, convert_t_rational_104_by_1_to_t_uint256(value))\n }\n\n function abi_encode_t_rational_20_by_1_to_t_uint256_fromStack(value, pos) {\n mstore(pos, convert_t_rational_20_by_1_to_t_uint256(value))\n }\n\n function abi_encode_t_rational_32_by_1_to_t_uint256_fromStack(value, pos) {\n mstore(pos, convert_t_rational_32_by_1_to_t_uint256(value))\n }\n\n function abi_encode_t_rational_40_by_1_to_t_uint256_fromStack(value, pos) {\n mstore(pos, convert_t_rational_40_by_1_to_t_uint256(value))\n }\n\n function abi_encode_t_rational_72_by_1_to_t_uint256_fromStack(value, pos) {\n mstore(pos, convert_t_rational_72_by_1_to_t_uint256(value))\n }\n\n function abi_encode_t_stringliteral_1223988afd553e1f6c65194803d2a1120c53ffecdf3300cd0051a9d942da56cc_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_1223988afd553e1f6c65194803d2a1120c53ffecdf3300cd0051a9d942da56cc(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_1e93a013b5e39b106e10dbfa042b3c0605a5afebe8c7af468b0aa90f7725c3a3_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_1e93a013b5e39b106e10dbfa042b3c0605a5afebe8c7af468b0aa90f7725c3a3(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_434df495b4a5db5c8d98c411b670dd96f38de64ba377764484f8914ccbe7167b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_434df495b4a5db5c8d98c411b670dd96f38de64ba377764484f8914ccbe7167b(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_6c2e04bb0753bd513c9aafafdf4dd40b1b4fc5ff9e8d9a8712d88d9faae2a8dd_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 28)\n store_literal_in_memory_6c2e04bb0753bd513c9aafafdf4dd40b1b4fc5ff9e8d9a8712d88d9faae2a8dd(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_6c4194f5fa125e646cca764cf79a78a556ccabf7f14dd4bf415294ad179a557c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 22)\n store_literal_in_memory_6c4194f5fa125e646cca764cf79a78a556ccabf7f14dd4bf415294ad179a557c(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_810e5e203ee31771bb9f7e8ca8bfe8ad0d2acad6cecf7dd7fe7a62046a4bb877_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 39)\n store_literal_in_memory_810e5e203ee31771bb9f7e8ca8bfe8ad0d2acad6cecf7dd7fe7a62046a4bb877(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_8210cb852fe81020f9cdd9c05b52f300bd0b30e1ce2edd12eda6da7076295af5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 26)\n store_literal_in_memory_8210cb852fe81020f9cdd9c05b52f300bd0b30e1ce2edd12eda6da7076295af5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_ed43e475295217a253662104b0cb33ce188e5eff1f0bb96f17e3dfbe1720a7ec_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_ed43e475295217a253662104b0cb33ce188e5eff1f0bb96f17e3dfbe1720a7ec(pos)\n end := add(pos, 32)\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_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_address_t_address__to_t_address_t_address__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_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value4, add(headStart, 128))\n\n }\n\n function abi_encode_tuple_t_address_t_uint256__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_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\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_bytes_calldata_ptr_t_rational_0_by_1__to_t_bytes_memory_ptr_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_bytes_calldata_ptr_to_t_bytes_memory_ptr_fromStack(value0, value1, tail)\n\n abi_encode_t_rational_0_by_1_to_t_uint256_fromStack(value2, add(headStart, 32))\n\n }\n\n function abi_encode_tuple_t_bytes_calldata_ptr_t_rational_104_by_1_t_rational_32_by_1__to_t_bytes_memory_ptr_t_uint256_t_uint256__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_bytes_calldata_ptr_to_t_bytes_memory_ptr_fromStack(value0, value1, tail)\n\n abi_encode_t_rational_104_by_1_to_t_uint256_fromStack(value2, add(headStart, 32))\n\n abi_encode_t_rational_32_by_1_to_t_uint256_fromStack(value3, add(headStart, 64))\n\n }\n\n function abi_encode_tuple_t_bytes_calldata_ptr_t_rational_20_by_1__to_t_bytes_memory_ptr_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_bytes_calldata_ptr_to_t_bytes_memory_ptr_fromStack(value0, value1, tail)\n\n abi_encode_t_rational_20_by_1_to_t_uint256_fromStack(value2, add(headStart, 32))\n\n }\n\n function abi_encode_tuple_t_bytes_calldata_ptr_t_rational_40_by_1_t_rational_32_by_1__to_t_bytes_memory_ptr_t_uint256_t_uint256__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_bytes_calldata_ptr_to_t_bytes_memory_ptr_fromStack(value0, value1, tail)\n\n abi_encode_t_rational_40_by_1_to_t_uint256_fromStack(value2, add(headStart, 32))\n\n abi_encode_t_rational_32_by_1_to_t_uint256_fromStack(value3, add(headStart, 64))\n\n }\n\n function abi_encode_tuple_t_bytes_calldata_ptr_t_rational_72_by_1_t_rational_32_by_1__to_t_bytes_memory_ptr_t_uint256_t_uint256__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_bytes_calldata_ptr_to_t_bytes_memory_ptr_fromStack(value0, value1, tail)\n\n abi_encode_t_rational_72_by_1_to_t_uint256_fromStack(value2, add(headStart, 32))\n\n abi_encode_t_rational_32_by_1_to_t_uint256_fromStack(value3, add(headStart, 64))\n\n }\n\n function abi_encode_tuple_t_bytes_memory_ptr_t_uint256_t_rational_20_by_1__to_t_bytes_memory_ptr_t_uint256_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value0, tail)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_rational_20_by_1_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function abi_encode_tuple_t_stringliteral_1223988afd553e1f6c65194803d2a1120c53ffecdf3300cd0051a9d942da56cc__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_1223988afd553e1f6c65194803d2a1120c53ffecdf3300cd0051a9d942da56cc_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_1e93a013b5e39b106e10dbfa042b3c0605a5afebe8c7af468b0aa90f7725c3a3__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_1e93a013b5e39b106e10dbfa042b3c0605a5afebe8c7af468b0aa90f7725c3a3_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__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_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_434df495b4a5db5c8d98c411b670dd96f38de64ba377764484f8914ccbe7167b__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_434df495b4a5db5c8d98c411b670dd96f38de64ba377764484f8914ccbe7167b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_6c2e04bb0753bd513c9aafafdf4dd40b1b4fc5ff9e8d9a8712d88d9faae2a8dd__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_6c2e04bb0753bd513c9aafafdf4dd40b1b4fc5ff9e8d9a8712d88d9faae2a8dd_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_6c4194f5fa125e646cca764cf79a78a556ccabf7f14dd4bf415294ad179a557c__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_6c4194f5fa125e646cca764cf79a78a556ccabf7f14dd4bf415294ad179a557c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_810e5e203ee31771bb9f7e8ca8bfe8ad0d2acad6cecf7dd7fe7a62046a4bb877__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_810e5e203ee31771bb9f7e8ca8bfe8ad0d2acad6cecf7dd7fe7a62046a4bb877_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_8210cb852fe81020f9cdd9c05b52f300bd0b30e1ce2edd12eda6da7076295af5__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_8210cb852fe81020f9cdd9c05b52f300bd0b30e1ce2edd12eda6da7076295af5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_ed43e475295217a253662104b0cb33ce188e5eff1f0bb96f17e3dfbe1720a7ec__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_ed43e475295217a253662104b0cb33ce188e5eff1f0bb96f17e3dfbe1720a7ec_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 allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_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_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\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_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_0_by_1_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(value)\n }\n\n function convert_t_rational_104_by_1_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(value)\n }\n\n function convert_t_rational_20_by_1_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(value)\n }\n\n function convert_t_rational_32_by_1_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(value)\n }\n\n function convert_t_rational_40_by_1_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(value)\n }\n\n function convert_t_rational_72_by_1_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(value)\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\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 finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\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_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\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_1223988afd553e1f6c65194803d2a1120c53ffecdf3300cd0051a9d942da56cc(memPtr) {\n\n mstore(add(memPtr, 0), \"you don't have so much impact\")\n\n }\n\n function store_literal_in_memory_1e93a013b5e39b106e10dbfa042b3c0605a5afebe8c7af468b0aa90f7725c3a3(memPtr) {\n\n mstore(add(memPtr, 0), \"withdraw not allowed\")\n\n }\n\n function store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d(memPtr) {\n\n mstore(add(memPtr, 0), \"Caller is not owner\")\n\n }\n\n function store_literal_in_memory_434df495b4a5db5c8d98c411b670dd96f38de64ba377764484f8914ccbe7167b(memPtr) {\n\n mstore(add(memPtr, 0), \"claim is shut down by the owner\")\n\n }\n\n function store_literal_in_memory_6c2e04bb0753bd513c9aafafdf4dd40b1b4fc5ff9e8d9a8712d88d9faae2a8dd(memPtr) {\n\n mstore(add(memPtr, 0), \"error transferring from farm\")\n\n }\n\n function store_literal_in_memory_6c4194f5fa125e646cca764cf79a78a556ccabf7f14dd4bf415294ad179a557c(memPtr) {\n\n mstore(add(memPtr, 0), \"Data is not processed.\")\n\n }\n\n function store_literal_in_memory_810e5e203ee31771bb9f7e8ca8bfe8ad0d2acad6cecf7dd7fe7a62046a4bb877(memPtr) {\n\n mstore(add(memPtr, 0), \"this token is not supported by t\")\n\n mstore(add(memPtr, 32), \"reasury\")\n\n }\n\n function store_literal_in_memory_8210cb852fe81020f9cdd9c05b52f300bd0b30e1ce2edd12eda6da7076295af5(memPtr) {\n\n mstore(add(memPtr, 0), \"This contract is outdated.\")\n\n }\n\n function store_literal_in_memory_ed43e475295217a253662104b0cb33ce188e5eff1f0bb96f17e3dfbe1720a7ec(memPtr) {\n\n mstore(add(memPtr, 0), \"Caller is not nebula\")\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_bool(value) {\n if iszero(eq(value, cleanup_t_bool(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": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106101fa5760003560e01c80637571af221161011a578063c0ee01bc116100ad578063db5a9d501161007c578063db5a9d501461058b578063e70d43cf146105a9578063e744092e146105c7578063f2fde38b146105f7578063f61d7fe014610613576101fa565b8063c0ee01bc14610517578063c3b12eb214610535578063cc32a15114610553578063ce5494bb1461056f576101fa565b80639b94f08b116100e95780639b94f08b1461047d5780639bb2b0f6146104ad578063a5f6f054146104c9578063c0544bf1146104f9576101fa565b80637571af22146103e15780637b6f1e07146104115780638da5cb5b1461042f57806396013dc61461044d576101fa565b8063365b98b2116101925780635b56dcbe116101615780635b56dcbe146103835780635fa7b5841461039f57806364db444a146103bb5780636bb10536146103d7576101fa565b8063365b98b21461030f5780634988c1191461033f5780634e71d92d1461035b5780634ecde84914610365576101fa565b80631a7b4240116101ce5780631a7b4240146102775780631a9eb353146102a7578063257d5f86146102c35780632e1a7d4d146102f3576101fa565b80626ae91e146101ff57806307973ccf1461021d5780631259b4841461023b57806318160ddd14610259575b600080fd5b61020761062f565b604051610214919061251f565b60405180910390f35b610225610655565b60405161023291906128b3565b60405180910390f35b61024361065b565b6040516102509190612616565b60405180910390f35b61026161066e565b60405161026e91906128b3565b60405180910390f35b610291600480360381019061028c91906122a5565b610674565b60405161029e9190612616565b60405180910390f35b6102c160048036038101906102bc9190612101565b610694565b005b6102dd60048036038101906102d89190612101565b610766565b6040516102ea91906128b3565b60405180910390f35b61030d600480360381019061030891906122a5565b61077e565b005b610329600480360381019061032491906122a5565b6108fa565b604051610336919061251f565b60405180910390f35b61035960048036038101906103549190612153565b61092d565b005b6103636109d8565b005b61036d610bb5565b60405161037a919061251f565b60405180910390f35b61039d60048036038101906103989190612101565b610bdb565b005b6103b960048036038101906103b49190612101565b610cad565b005b6103d560048036038101906103d09190612101565b610d96565b005b6103df610e7f565b005b6103fb60048036038101906103f69190612101565b6112cc565b60405161040891906128b3565b60405180910390f35b610419611315565b604051610426919061251f565b60405180910390f35b61043761133b565b604051610444919061251f565b60405180910390f35b610467600480360381019061046291906121ea565b61135f565b604051610474919061251f565b60405180910390f35b6104976004803603810190610492919061223e565b6113f7565b6040516104a491906128b3565b60405180910390f35b6104c760048036038101906104c29190612153565b61149a565b005b6104e360048036038101906104de9190612101565b611545565b6040516104f091906128b3565b60405180910390f35b61050161155d565b60405161050e91906128b3565b60405180910390f35b61051f611563565b60405161052c9190612616565b60405180910390f35b61053d611576565b60405161054a91906128b3565b60405180910390f35b61056d600480360381019061056891906121a5565b61157c565b005b61058960048036038101906105849190612101565b611b7c565b005b610593611e02565b6040516105a091906128b3565b60405180910390f35b6105b1611e08565b6040516105be91906128b3565b60405180910390f35b6105e160048036038101906105dc9190612101565b611e0e565b6040516105ee9190612616565b60405180910390f35b610611600480360381019061060c9190612101565b611e2e565b005b61062d60048036038101906106289190612101565b611eff565b005b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b600d60019054906101000a900460ff1681565b60025481565b600f6020528060005260406000206000915054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610719906127d3565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60046020528060005260406000206000915090505481565b601060009054906101000a900460ff166107cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c4906127b3565b60405180910390fd5b600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111561084f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084690612793565b60405180910390fd5b80600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461089e9190612a32565b9250508190555080600260008282546108b79190612a32565b925050819055507f87d5f4772963d1f9b76047158b4ae97c420a1b3bff2a746c828beffd9e7c3e2633826040516108ef9291906125ed565b60405180910390a150565b60066020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b2906127d3565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b600d60019054906101000a900460ff16610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e906127f3565b60405180910390fd5b600d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518363ffffffff1660e01b8152600401610ac39291906125ed565b602060405180830381600087803b158015610add57600080fd5b505af1158015610af1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b15919061217c565b50600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460096000828254610b679190612a32565b925050819055506000600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c60906127d3565b60405180910390fd5b80600d60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d32906127d3565b60405180910390fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906127d3565b60405180910390fd5b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600d60009054906101000a900460ff16610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec590612873565b60405180910390fd5b6000600d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006107d0600b54610f079190612951565b90506000600b541415610fba576009548273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f50919061251f565b60206040518083038186803b158015610f6857600080fd5b505afa158015610f7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa091906122ce565b610faa9190612a32565b600881905550600854600a819055505b6000600b549050600754821115610fd15760075491505b6000600b54141561117f5760008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16306040518363ffffffff1660e01b815260040161103b92919061253a565b60206040518083038186803b15801561105357600080fd5b505afa158015611067573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108b91906122ce565b90508373ffffffffffffffffffffffffffffffffffffffff166323b872dd600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1630846040518463ffffffff1660e01b81526004016110ec93929190612563565b602060405180830381600087803b15801561110657600080fd5b505af115801561111a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113e919061217c565b61117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490612813565b60405180910390fd5b505b60008190505b828110156112a75760006006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600254600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460085461121791906129d8565b61122191906129a7565b905080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112729190612951565b92505081905550806009600082825461128b9190612951565b925050819055505050808061129f90612b8d565b915050611185565b506007548214156112bf576000600b819055506112c7565b81600b819055505b505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600d60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60003073ffffffffffffffffffffffffffffffffffffffff16639b94f08b848460146040518463ffffffff1660e01b815260040161139f93929190612755565b60206040518083038186803b1580156113b757600080fd5b505afa1580156113cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ef91906122ce565b905092915050565b6000806000905060008490505b83856114109190612951565b81101561148e57858181518110611450577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff166101008361146f91906129d8565b6114799190612951565b9150808061148690612b8d565b915050611404565b50809150509392505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f906127d3565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b60056020528060005260406000206000915090505481565b60085481565b601060009054906101000a900460ff1681565b600b5481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390612893565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff166396013dc6848460006040518463ffffffff1660e01b815260040161164c93929190612631565b60206040518083038186803b15801561166457600080fd5b505afa158015611678573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061169c919061212a565b905060003073ffffffffffffffffffffffffffffffffffffffff166396013dc6858560146040518463ffffffff1660e01b81526004016116de939291906126a3565b60206040518083038186803b1580156116f657600080fd5b505afa15801561170a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172e919061212a565b905060003073ffffffffffffffffffffffffffffffffffffffff16639b94f08b8686602860206040518563ffffffff1660e01b815260040161177394939291906126d5565b60206040518083038186803b15801561178b57600080fd5b505afa15801561179f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c391906122ce565b905060003073ffffffffffffffffffffffffffffffffffffffff16639b94f08b8787604860206040518563ffffffff1660e01b81526004016118089493929190612715565b60206040518083038186803b15801561182057600080fd5b505afa158015611834573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061185891906122ce565b905060003073ffffffffffffffffffffffffffffffffffffffff16639b94f08b8888606860206040518563ffffffff1660e01b815260040161189d9493929190612663565b60206040518083038186803b1580156118b557600080fd5b505afa1580156118c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ed91906122ce565b905060001515600f600084815260200190815260200160002060009054906101000a900460ff16151514611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90612833565b60405180910390fd5b6001600f600084815260200190815260200160002060006101000a81548160ff0219169083151502179055507fc817d75deaa278e988c41cf549ef38fe195ab65e0e64cd67ba47f0d185690d5885858585856040516119b995949392919061259a565b60405180910390a1600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4490612853565b60405180910390fd5b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541415611b04578360066000600754815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160076000828254611afc9190612951565b925050819055505b82600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b539190612951565b925050819055508260026000828254611b6c9190612951565b9250508190555050505050505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c01906127d3565b60405180910390fd5b600081905060006107d0600c54611c219190612951565b90506000600c549050600754821115611c3a5760075491505b60008190505b82811015611dc15760006006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000611c8b826112cc565b90506000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508673ffffffffffffffffffffffffffffffffffffffff16636ac4e8ea84846040518363ffffffff1660e01b8152600401611d0c9291906125ed565b600060405180830381600087803b158015611d2657600080fd5b505af1158015611d3a573d6000803e3d6000fd5b505050508673ffffffffffffffffffffffffffffffffffffffff16639558042b84836040518363ffffffff1660e01b8152600401611d799291906125ed565b600060405180830381600087803b158015611d9357600080fd5b505af1158015611da7573d6000803e3d6000fd5b505050505050508080611db990612b8d565b915050611c40565b50600754821415611df4576000600c819055506000600d60006101000a81548160ff021916908315150217905550611dfc565b81600c819055505b50505050565b60095481565b600a5481565b60036020528060005260406000206000915054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb3906127d3565b60405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f84906127d3565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611fe4611fdf846128f3565b6128ce565b905082815260208101848484011115611ffc57600080fd5b612007848285612b1a565b509392505050565b60008135905061201e81612e0b565b92915050565b60008151905061203381612e0b565b92915050565b60008135905061204881612e22565b92915050565b60008151905061205d81612e22565b92915050565b60008083601f84011261207557600080fd5b8235905067ffffffffffffffff81111561208e57600080fd5b6020830191508360018202830111156120a657600080fd5b9250929050565b600082601f8301126120be57600080fd5b81356120ce848260208601611fd1565b91505092915050565b6000813590506120e681612e39565b92915050565b6000815190506120fb81612e39565b92915050565b60006020828403121561211357600080fd5b60006121218482850161200f565b91505092915050565b60006020828403121561213c57600080fd5b600061214a84828501612024565b91505092915050565b60006020828403121561216557600080fd5b600061217384828501612039565b91505092915050565b60006020828403121561218e57600080fd5b600061219c8482850161204e565b91505092915050565b600080602083850312156121b857600080fd5b600083013567ffffffffffffffff8111156121d257600080fd5b6121de85828601612063565b92509250509250929050565b600080604083850312156121fd57600080fd5b600083013567ffffffffffffffff81111561221757600080fd5b612223858286016120ad565b9250506020612234858286016120d7565b9150509250929050565b60008060006060848603121561225357600080fd5b600084013567ffffffffffffffff81111561226d57600080fd5b612279868287016120ad565b935050602061228a868287016120d7565b925050604061229b868287016120d7565b9150509250925092565b6000602082840312156122b757600080fd5b60006122c5848285016120d7565b91505092915050565b6000602082840312156122e057600080fd5b60006122ee848285016120ec565b91505092915050565b61230081612a66565b82525050565b61230f81612a78565b82525050565b6000612321838561292f565b935061232e838584612b1a565b61233783612c63565b840190509392505050565b600061234d82612924565b612357818561292f565b9350612367818560208601612b29565b61237081612c63565b840191505092915050565b61238481612aae565b82525050565b61239381612ac0565b82525050565b6123a281612ad2565b82525050565b6123b181612ae4565b82525050565b6123c081612af6565b82525050565b6123cf81612b08565b82525050565b60006123e2601d83612940565b91506123ed82612c74565b602082019050919050565b6000612405601483612940565b915061241082612c9d565b602082019050919050565b6000612428601383612940565b915061243382612cc6565b602082019050919050565b600061244b601f83612940565b915061245682612cef565b602082019050919050565b600061246e601c83612940565b915061247982612d18565b602082019050919050565b6000612491601683612940565b915061249c82612d41565b602082019050919050565b60006124b4602783612940565b91506124bf82612d6a565b604082019050919050565b60006124d7601a83612940565b91506124e282612db9565b602082019050919050565b60006124fa601483612940565b915061250582612de2565b602082019050919050565b61251981612aa4565b82525050565b600060208201905061253460008301846122f7565b92915050565b600060408201905061254f60008301856122f7565b61255c60208301846122f7565b9392505050565b600060608201905061257860008301866122f7565b61258560208301856122f7565b6125926040830184612510565b949350505050565b600060a0820190506125af60008301886122f7565b6125bc60208301876122f7565b6125c96040830186612510565b6125d66060830185612510565b6125e36080830184612510565b9695505050505050565b600060408201905061260260008301856122f7565b61260f6020830184612510565b9392505050565b600060208201905061262b6000830184612306565b92915050565b6000604082019050818103600083015261264c818587612315565b905061265b602083018461237b565b949350505050565b6000606082019050818103600083015261267e818688612315565b905061268d602083018561238a565b61269a60408301846123a8565b95945050505050565b600060408201905081810360008301526126be818587612315565b90506126cd6020830184612399565b949350505050565b600060608201905081810360008301526126f0818688612315565b90506126ff60208301856123b7565b61270c60408301846123a8565b95945050505050565b60006060820190508181036000830152612730818688612315565b905061273f60208301856123c6565b61274c60408301846123a8565b95945050505050565b6000606082019050818103600083015261276f8186612342565b905061277e6020830185612510565b61278b6040830184612399565b949350505050565b600060208201905081810360008301526127ac816123d5565b9050919050565b600060208201905081810360008301526127cc816123f8565b9050919050565b600060208201905081810360008301526127ec8161241b565b9050919050565b6000602082019050818103600083015261280c8161243e565b9050919050565b6000602082019050818103600083015261282c81612461565b9050919050565b6000602082019050818103600083015261284c81612484565b9050919050565b6000602082019050818103600083015261286c816124a7565b9050919050565b6000602082019050818103600083015261288c816124ca565b9050919050565b600060208201905081810360008301526128ac816124ed565b9050919050565b60006020820190506128c86000830184612510565b92915050565b60006128d86128e9565b90506128e48282612b5c565b919050565b6000604051905090565b600067ffffffffffffffff82111561290e5761290d612c34565b5b61291782612c63565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061295c82612aa4565b915061296783612aa4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561299c5761299b612bd6565b5b828201905092915050565b60006129b282612aa4565b91506129bd83612aa4565b9250826129cd576129cc612c05565b5b828204905092915050565b60006129e382612aa4565b91506129ee83612aa4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a2757612a26612bd6565b5b828202905092915050565b6000612a3d82612aa4565b9150612a4883612aa4565b925082821015612a5b57612a5a612bd6565b5b828203905092915050565b6000612a7182612a84565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612ab982612aa4565b9050919050565b6000612acb82612aa4565b9050919050565b6000612add82612aa4565b9050919050565b6000612aef82612aa4565b9050919050565b6000612b0182612aa4565b9050919050565b6000612b1382612aa4565b9050919050565b82818337600083830152505050565b60005b83811015612b47578082015181840152602081019050612b2c565b83811115612b56576000848401525b50505050565b612b6582612c63565b810181811067ffffffffffffffff82111715612b8457612b83612c34565b5b80604052505050565b6000612b9882612aa4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612bcb57612bca612bd6565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f796f7520646f6e2774206861766520736f206d75636820696d70616374000000600082015250565b7f7769746864726177206e6f7420616c6c6f776564000000000000000000000000600082015250565b7f43616c6c6572206973206e6f74206f776e657200000000000000000000000000600082015250565b7f636c61696d206973207368757420646f776e20627920746865206f776e657200600082015250565b7f6572726f72207472616e7366657272696e672066726f6d206661726d00000000600082015250565b7f44617461206973206e6f742070726f6365737365642e00000000000000000000600082015250565b7f7468697320746f6b656e206973206e6f7420737570706f72746564206279207460008201527f7265617375727900000000000000000000000000000000000000000000000000602082015250565b7f5468697320636f6e7472616374206973206f757464617465642e000000000000600082015250565b7f43616c6c6572206973206e6f74206e6562756c61000000000000000000000000600082015250565b612e1481612a66565b8114612e1f57600080fd5b50565b612e2b81612a78565b8114612e3657600080fd5b50565b612e4281612aa4565b8114612e4d57600080fd5b5056fea2646970667358221220086841438d5bff0d6fe3b53641b00d1349e63de94dc837340343d1965a473b5364736f6c63430008030033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x1FA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x7571AF22 GT PUSH2 0x11A JUMPI DUP1 PUSH4 0xC0EE01BC GT PUSH2 0xAD JUMPI DUP1 PUSH4 0xDB5A9D50 GT PUSH2 0x7C JUMPI DUP1 PUSH4 0xDB5A9D50 EQ PUSH2 0x58B JUMPI DUP1 PUSH4 0xE70D43CF EQ PUSH2 0x5A9 JUMPI DUP1 PUSH4 0xE744092E EQ PUSH2 0x5C7 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x5F7 JUMPI DUP1 PUSH4 0xF61D7FE0 EQ PUSH2 0x613 JUMPI PUSH2 0x1FA JUMP JUMPDEST DUP1 PUSH4 0xC0EE01BC EQ PUSH2 0x517 JUMPI DUP1 PUSH4 0xC3B12EB2 EQ PUSH2 0x535 JUMPI DUP1 PUSH4 0xCC32A151 EQ PUSH2 0x553 JUMPI DUP1 PUSH4 0xCE5494BB EQ PUSH2 0x56F JUMPI PUSH2 0x1FA JUMP JUMPDEST DUP1 PUSH4 0x9B94F08B GT PUSH2 0xE9 JUMPI DUP1 PUSH4 0x9B94F08B EQ PUSH2 0x47D JUMPI DUP1 PUSH4 0x9BB2B0F6 EQ PUSH2 0x4AD JUMPI DUP1 PUSH4 0xA5F6F054 EQ PUSH2 0x4C9 JUMPI DUP1 PUSH4 0xC0544BF1 EQ PUSH2 0x4F9 JUMPI PUSH2 0x1FA JUMP JUMPDEST DUP1 PUSH4 0x7571AF22 EQ PUSH2 0x3E1 JUMPI DUP1 PUSH4 0x7B6F1E07 EQ PUSH2 0x411 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x42F JUMPI DUP1 PUSH4 0x96013DC6 EQ PUSH2 0x44D JUMPI PUSH2 0x1FA JUMP JUMPDEST DUP1 PUSH4 0x365B98B2 GT PUSH2 0x192 JUMPI DUP1 PUSH4 0x5B56DCBE GT PUSH2 0x161 JUMPI DUP1 PUSH4 0x5B56DCBE EQ PUSH2 0x383 JUMPI DUP1 PUSH4 0x5FA7B584 EQ PUSH2 0x39F JUMPI DUP1 PUSH4 0x64DB444A EQ PUSH2 0x3BB JUMPI DUP1 PUSH4 0x6BB10536 EQ PUSH2 0x3D7 JUMPI PUSH2 0x1FA JUMP JUMPDEST DUP1 PUSH4 0x365B98B2 EQ PUSH2 0x30F JUMPI DUP1 PUSH4 0x4988C119 EQ PUSH2 0x33F JUMPI DUP1 PUSH4 0x4E71D92D EQ PUSH2 0x35B JUMPI DUP1 PUSH4 0x4ECDE849 EQ PUSH2 0x365 JUMPI PUSH2 0x1FA JUMP JUMPDEST DUP1 PUSH4 0x1A7B4240 GT PUSH2 0x1CE JUMPI DUP1 PUSH4 0x1A7B4240 EQ PUSH2 0x277 JUMPI DUP1 PUSH4 0x1A9EB353 EQ PUSH2 0x2A7 JUMPI DUP1 PUSH4 0x257D5F86 EQ PUSH2 0x2C3 JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x2F3 JUMPI PUSH2 0x1FA JUMP JUMPDEST DUP1 PUSH3 0x6AE91E EQ PUSH2 0x1FF JUMPI DUP1 PUSH4 0x7973CCF EQ PUSH2 0x21D JUMPI DUP1 PUSH4 0x1259B484 EQ PUSH2 0x23B JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x259 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x207 PUSH2 0x62F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x214 SWAP2 SWAP1 PUSH2 0x251F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x225 PUSH2 0x655 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x243 PUSH2 0x65B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x250 SWAP2 SWAP1 PUSH2 0x2616 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x261 PUSH2 0x66E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26E SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x291 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28C SWAP2 SWAP1 PUSH2 0x22A5 JUMP JUMPDEST PUSH2 0x674 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29E SWAP2 SWAP1 PUSH2 0x2616 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2BC SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x694 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2DD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2D8 SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x766 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2EA SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x30D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x308 SWAP2 SWAP1 PUSH2 0x22A5 JUMP JUMPDEST PUSH2 0x77E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x329 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x324 SWAP2 SWAP1 PUSH2 0x22A5 JUMP JUMPDEST PUSH2 0x8FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x336 SWAP2 SWAP1 PUSH2 0x251F 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 0x2153 JUMP JUMPDEST PUSH2 0x92D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x363 PUSH2 0x9D8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x36D PUSH2 0xBB5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x37A SWAP2 SWAP1 PUSH2 0x251F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x39D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x398 SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0xBDB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3B9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3B4 SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0xCAD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3D5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3D0 SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0xD96 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3DF PUSH2 0xE7F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3FB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3F6 SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x12CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x408 SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x419 PUSH2 0x1315 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x426 SWAP2 SWAP1 PUSH2 0x251F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x437 PUSH2 0x133B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x444 SWAP2 SWAP1 PUSH2 0x251F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x467 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x462 SWAP2 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH2 0x135F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x474 SWAP2 SWAP1 PUSH2 0x251F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x497 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x492 SWAP2 SWAP1 PUSH2 0x223E JUMP JUMPDEST PUSH2 0x13F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4A4 SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4C7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4C2 SWAP2 SWAP1 PUSH2 0x2153 JUMP JUMPDEST PUSH2 0x149A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x4E3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4DE SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x1545 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4F0 SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x501 PUSH2 0x155D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50E SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x51F PUSH2 0x1563 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x52C SWAP2 SWAP1 PUSH2 0x2616 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x53D PUSH2 0x1576 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x54A SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x56D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x568 SWAP2 SWAP1 PUSH2 0x21A5 JUMP JUMPDEST PUSH2 0x157C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x589 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x584 SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x1B7C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x593 PUSH2 0x1E02 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5A0 SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x5B1 PUSH2 0x1E08 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5BE SWAP2 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x5E1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5DC SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x1E0E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5EE SWAP2 SWAP1 PUSH2 0x2616 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x611 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x60C SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x1E2E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x62D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x628 SWAP2 SWAP1 PUSH2 0x2101 JUMP JUMPDEST PUSH2 0x1EFF JUMP JUMPDEST STOP JUMPDEST PUSH1 0xE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x7 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x2 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xF PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x722 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x719 SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xE 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 0x4 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x10 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x7CD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7C4 SWAP1 PUSH2 0x27B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD DUP2 GT ISZERO PUSH2 0x84F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x846 SWAP1 PUSH2 0x2793 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x4 PUSH1 0x0 CALLER 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 0x89E SWAP2 SWAP1 PUSH2 0x2A32 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x8B7 SWAP2 SWAP1 PUSH2 0x2A32 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH32 0x87D5F4772963D1F9B76047158B4AE97C420A1B3BFF2A746C828BEFFD9E7C3E26 CALLER DUP3 PUSH1 0x40 MLOAD PUSH2 0x8EF SWAP3 SWAP2 SWAP1 PUSH2 0x25ED JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x6 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9BB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9B2 SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x10 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0xD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0xA27 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA1E SWAP1 PUSH2 0x27F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB CALLER PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAC3 SWAP3 SWAP2 SWAP1 PUSH2 0x25ED JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xADD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0xAF1 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 0xB15 SWAP2 SWAP1 PUSH2 0x217C JUMP JUMPDEST POP PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x9 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xB67 SWAP2 SWAP1 PUSH2 0x2A32 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xC69 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC60 SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xD PUSH1 0x2 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 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD3B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD32 SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x3 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 POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xE24 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE1B SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x3 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 POP JUMP JUMPDEST PUSH1 0xD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0xECE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEC5 SWAP1 PUSH2 0x2873 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x7D0 PUSH1 0xB SLOAD PUSH2 0xF07 SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0xB SLOAD EQ ISZERO PUSH2 0xFBA JUMPI PUSH1 0x9 SLOAD DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF50 SWAP2 SWAP1 PUSH2 0x251F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xF68 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xF7C 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 0xFA0 SWAP2 SWAP1 PUSH2 0x22CE JUMP JUMPDEST PUSH2 0xFAA SWAP2 SWAP1 PUSH2 0x2A32 JUMP JUMPDEST PUSH1 0x8 DUP2 SWAP1 SSTORE POP PUSH1 0x8 SLOAD PUSH1 0xA DUP2 SWAP1 SSTORE POP JUMPDEST PUSH1 0x0 PUSH1 0xB SLOAD SWAP1 POP PUSH1 0x7 SLOAD DUP3 GT ISZERO PUSH2 0xFD1 JUMPI PUSH1 0x7 SLOAD SWAP2 POP JUMPDEST PUSH1 0x0 PUSH1 0xB SLOAD EQ ISZERO PUSH2 0x117F JUMPI PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xDD62ED3E PUSH1 0xE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ADDRESS PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x103B SWAP3 SWAP2 SWAP1 PUSH2 0x253A JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1053 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1067 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 0x108B SWAP2 SWAP1 PUSH2 0x22CE JUMP JUMPDEST SWAP1 POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD PUSH1 0xE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ADDRESS DUP5 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10EC SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2563 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1106 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x111A 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 0x113E SWAP2 SWAP1 PUSH2 0x217C JUMP JUMPDEST PUSH2 0x117D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1174 SWAP1 PUSH2 0x2813 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x12A7 JUMPI PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH1 0x2 SLOAD 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 PUSH1 0x8 SLOAD PUSH2 0x1217 SWAP2 SWAP1 PUSH2 0x29D8 JUMP JUMPDEST PUSH2 0x1221 SWAP2 SWAP1 PUSH2 0x29A7 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x5 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 0x1272 SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x9 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x128B SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP DUP1 DUP1 PUSH2 0x129F SWAP1 PUSH2 0x2B8D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1185 JUMP JUMPDEST POP PUSH1 0x7 SLOAD DUP3 EQ ISZERO PUSH2 0x12BF JUMPI PUSH1 0x0 PUSH1 0xB DUP2 SWAP1 SSTORE POP PUSH2 0x12C7 JUMP JUMPDEST DUP2 PUSH1 0xB DUP2 SWAP1 SSTORE POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 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 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xD PUSH1 0x2 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x9B94F08B DUP5 DUP5 PUSH1 0x14 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x139F SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2755 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x13B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x13CB 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 0x13EF SWAP2 SWAP1 PUSH2 0x22CE JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 POP PUSH1 0x0 DUP5 SWAP1 POP JUMPDEST DUP4 DUP6 PUSH2 0x1410 SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST DUP2 LT ISZERO PUSH2 0x148E JUMPI DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x1450 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH1 0xF8 SHR PUSH1 0xFF AND PUSH2 0x100 DUP4 PUSH2 0x146F SWAP2 SWAP1 PUSH2 0x29D8 JUMP JUMPDEST PUSH2 0x1479 SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP2 POP DUP1 DUP1 PUSH2 0x1486 SWAP1 PUSH2 0x2B8D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1404 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1528 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x151F SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x5 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x8 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x10 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0xB SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x160C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1603 SWAP1 PUSH2 0x2893 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x96013DC6 DUP5 DUP5 PUSH1 0x0 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x164C SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2631 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1664 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1678 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 0x169C SWAP2 SWAP1 PUSH2 0x212A JUMP JUMPDEST SWAP1 POP PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x96013DC6 DUP6 DUP6 PUSH1 0x14 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16DE SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x26A3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x16F6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x170A 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 0x172E SWAP2 SWAP1 PUSH2 0x212A JUMP JUMPDEST SWAP1 POP PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x9B94F08B DUP7 DUP7 PUSH1 0x28 PUSH1 0x20 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1773 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x26D5 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x178B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x179F 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 0x17C3 SWAP2 SWAP1 PUSH2 0x22CE JUMP JUMPDEST SWAP1 POP PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x9B94F08B DUP8 DUP8 PUSH1 0x48 PUSH1 0x20 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1808 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2715 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1820 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x1834 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 0x1858 SWAP2 SWAP1 PUSH2 0x22CE JUMP JUMPDEST SWAP1 POP PUSH1 0x0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x9B94F08B DUP9 DUP9 PUSH1 0x68 PUSH1 0x20 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x189D SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2663 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x18B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x18C9 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 0x18ED SWAP2 SWAP1 PUSH2 0x22CE JUMP JUMPDEST SWAP1 POP PUSH1 0x0 ISZERO ISZERO PUSH1 0xF PUSH1 0x0 DUP5 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 ISZERO ISZERO EQ PUSH2 0x1956 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x194D SWAP1 PUSH2 0x2833 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0xF PUSH1 0x0 DUP5 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 PUSH32 0xC817D75DEAA278E988C41CF549EF38FE195AB65E0E64CD67BA47F0D185690D58 DUP6 DUP6 DUP6 DUP6 DUP6 PUSH1 0x40 MLOAD PUSH2 0x19B9 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x259A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x3 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 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x1A4D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A44 SWAP1 PUSH2 0x2853 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 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 EQ ISZERO PUSH2 0x1B04 JUMPI DUP4 PUSH1 0x6 PUSH1 0x0 PUSH1 0x7 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x7 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1AFC SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP3 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 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1B53 SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1B6C SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1C0A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C01 SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x0 PUSH2 0x7D0 PUSH1 0xC SLOAD PUSH2 0x1C21 SWAP2 SWAP1 PUSH2 0x2951 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0xC SLOAD SWAP1 POP PUSH1 0x7 SLOAD DUP3 GT ISZERO PUSH2 0x1C3A JUMPI PUSH1 0x7 SLOAD SWAP2 POP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1DC1 JUMPI PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH2 0x1C8B DUP3 PUSH2 0x12CC JUMP JUMPDEST SWAP1 POP PUSH1 0x0 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 SWAP1 POP DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6AC4E8EA DUP5 DUP5 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D0C SWAP3 SWAP2 SWAP1 PUSH2 0x25ED JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1D26 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1D3A JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x9558042B DUP5 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D79 SWAP3 SWAP2 SWAP1 PUSH2 0x25ED JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1D93 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1DA7 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP DUP1 DUP1 PUSH2 0x1DB9 SWAP1 PUSH2 0x2B8D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1C40 JUMP JUMPDEST POP PUSH1 0x7 SLOAD DUP3 EQ ISZERO PUSH2 0x1DF4 JUMPI PUSH1 0x0 PUSH1 0xC DUP2 SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0xD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x1DFC JUMP JUMPDEST DUP2 PUSH1 0xC DUP2 SWAP1 SSTORE POP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x9 SLOAD DUP2 JUMP JUMPDEST PUSH1 0xA SLOAD DUP2 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1EBC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1EB3 SWAP1 PUSH2 0x27D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x0 DUP1 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 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1F8D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F84 SWAP1 PUSH2 0x27D3 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 PUSH2 0x1FE4 PUSH2 0x1FDF DUP5 PUSH2 0x28F3 JUMP JUMPDEST PUSH2 0x28CE JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1FFC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2007 DUP5 DUP3 DUP6 PUSH2 0x2B1A JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x201E DUP2 PUSH2 0x2E0B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2033 DUP2 PUSH2 0x2E0B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2048 DUP2 PUSH2 0x2E22 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x205D DUP2 PUSH2 0x2E22 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x2075 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x208E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x20A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x20BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x20CE DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1FD1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x20E6 DUP2 PUSH2 0x2E39 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x20FB DUP2 PUSH2 0x2E39 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2113 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2121 DUP5 DUP3 DUP6 ADD PUSH2 0x200F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x213C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x214A DUP5 DUP3 DUP6 ADD PUSH2 0x2024 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2165 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x2173 DUP5 DUP3 DUP6 ADD PUSH2 0x2039 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x218E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x219C DUP5 DUP3 DUP6 ADD PUSH2 0x204E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x21B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x21D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x21DE DUP6 DUP3 DUP7 ADD PUSH2 0x2063 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x21FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2217 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2223 DUP6 DUP3 DUP7 ADD PUSH2 0x20AD JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2234 DUP6 DUP3 DUP7 ADD PUSH2 0x20D7 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 0x2253 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x226D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2279 DUP7 DUP3 DUP8 ADD PUSH2 0x20AD JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x228A DUP7 DUP3 DUP8 ADD PUSH2 0x20D7 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x229B DUP7 DUP3 DUP8 ADD PUSH2 0x20D7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x22C5 DUP5 DUP3 DUP6 ADD PUSH2 0x20D7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x22EE DUP5 DUP3 DUP6 ADD PUSH2 0x20EC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2300 DUP2 PUSH2 0x2A66 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x230F DUP2 PUSH2 0x2A78 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2321 DUP4 DUP6 PUSH2 0x292F JUMP JUMPDEST SWAP4 POP PUSH2 0x232E DUP4 DUP6 DUP5 PUSH2 0x2B1A JUMP JUMPDEST PUSH2 0x2337 DUP4 PUSH2 0x2C63 JUMP JUMPDEST DUP5 ADD SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x234D DUP3 PUSH2 0x2924 JUMP JUMPDEST PUSH2 0x2357 DUP2 DUP6 PUSH2 0x292F JUMP JUMPDEST SWAP4 POP PUSH2 0x2367 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2B29 JUMP JUMPDEST PUSH2 0x2370 DUP2 PUSH2 0x2C63 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2384 DUP2 PUSH2 0x2AAE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2393 DUP2 PUSH2 0x2AC0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x23A2 DUP2 PUSH2 0x2AD2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x23B1 DUP2 PUSH2 0x2AE4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x23C0 DUP2 PUSH2 0x2AF6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x23CF DUP2 PUSH2 0x2B08 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x23E2 PUSH1 0x1D DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x23ED DUP3 PUSH2 0x2C74 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2405 PUSH1 0x14 DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x2410 DUP3 PUSH2 0x2C9D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2428 PUSH1 0x13 DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x2433 DUP3 PUSH2 0x2CC6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x244B PUSH1 0x1F DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x2456 DUP3 PUSH2 0x2CEF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x246E PUSH1 0x1C DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x2479 DUP3 PUSH2 0x2D18 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2491 PUSH1 0x16 DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x249C DUP3 PUSH2 0x2D41 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24B4 PUSH1 0x27 DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x24BF DUP3 PUSH2 0x2D6A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24D7 PUSH1 0x1A DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x24E2 DUP3 PUSH2 0x2DB9 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24FA PUSH1 0x14 DUP4 PUSH2 0x2940 JUMP JUMPDEST SWAP2 POP PUSH2 0x2505 DUP3 PUSH2 0x2DE2 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2519 DUP2 PUSH2 0x2AA4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2534 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x22F7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x254F PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x22F7 JUMP JUMPDEST PUSH2 0x255C PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x22F7 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x2578 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x22F7 JUMP JUMPDEST PUSH2 0x2585 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x22F7 JUMP JUMPDEST PUSH2 0x2592 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2510 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x25AF PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x22F7 JUMP JUMPDEST PUSH2 0x25BC PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x22F7 JUMP JUMPDEST PUSH2 0x25C9 PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x2510 JUMP JUMPDEST PUSH2 0x25D6 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x2510 JUMP JUMPDEST PUSH2 0x25E3 PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x2510 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x2602 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x22F7 JUMP JUMPDEST PUSH2 0x260F PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2510 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x262B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2306 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x264C DUP2 DUP6 DUP8 PUSH2 0x2315 JUMP JUMPDEST SWAP1 POP PUSH2 0x265B PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x237B JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x267E DUP2 DUP7 DUP9 PUSH2 0x2315 JUMP JUMPDEST SWAP1 POP PUSH2 0x268D PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x238A JUMP JUMPDEST PUSH2 0x269A PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x23A8 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 0x26BE DUP2 DUP6 DUP8 PUSH2 0x2315 JUMP JUMPDEST SWAP1 POP PUSH2 0x26CD PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2399 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x26F0 DUP2 DUP7 DUP9 PUSH2 0x2315 JUMP JUMPDEST SWAP1 POP PUSH2 0x26FF PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x23B7 JUMP JUMPDEST PUSH2 0x270C PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x23A8 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2730 DUP2 DUP7 DUP9 PUSH2 0x2315 JUMP JUMPDEST SWAP1 POP PUSH2 0x273F PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x23C6 JUMP JUMPDEST PUSH2 0x274C PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x23A8 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x276F DUP2 DUP7 PUSH2 0x2342 JUMP JUMPDEST SWAP1 POP PUSH2 0x277E PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x2510 JUMP JUMPDEST PUSH2 0x278B PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x2399 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x27AC DUP2 PUSH2 0x23D5 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 0x27CC DUP2 PUSH2 0x23F8 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 0x27EC DUP2 PUSH2 0x241B 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 0x280C DUP2 PUSH2 0x243E 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 0x282C DUP2 PUSH2 0x2461 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 0x284C DUP2 PUSH2 0x2484 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 0x286C DUP2 PUSH2 0x24A7 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 0x288C DUP2 PUSH2 0x24CA 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 0x28AC DUP2 PUSH2 0x24ED JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x28C8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2510 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28D8 PUSH2 0x28E9 JUMP JUMPDEST SWAP1 POP PUSH2 0x28E4 DUP3 DUP3 PUSH2 0x2B5C JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x290E JUMPI PUSH2 0x290D PUSH2 0x2C34 JUMP JUMPDEST JUMPDEST PUSH2 0x2917 DUP3 PUSH2 0x2C63 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD 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 PUSH2 0x295C DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x2967 DUP4 PUSH2 0x2AA4 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x299C JUMPI PUSH2 0x299B PUSH2 0x2BD6 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29B2 DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x29BD DUP4 PUSH2 0x2AA4 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x29CD JUMPI PUSH2 0x29CC PUSH2 0x2C05 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29E3 DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x29EE DUP4 PUSH2 0x2AA4 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x2A27 JUMPI PUSH2 0x2A26 PUSH2 0x2BD6 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A3D DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP2 POP PUSH2 0x2A48 DUP4 PUSH2 0x2AA4 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x2A5B JUMPI PUSH2 0x2A5A PUSH2 0x2BD6 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A71 DUP3 PUSH2 0x2A84 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO 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 0x2AB9 DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2ACB DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2ADD DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AEF DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B01 DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B13 DUP3 PUSH2 0x2AA4 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 0x2B47 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2B2C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x2B56 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x2B65 DUP3 PUSH2 0x2C63 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2B84 JUMPI PUSH2 0x2B83 PUSH2 0x2C34 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B98 DUP3 PUSH2 0x2AA4 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x2BCB JUMPI PUSH2 0x2BCA PUSH2 0x2BD6 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 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 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x796F7520646F6E2774206861766520736F206D75636820696D70616374000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x7769746864726177206E6F7420616C6C6F776564000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x43616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x636C61696D206973207368757420646F776E20627920746865206F776E657200 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x6572726F72207472616E7366657272696E672066726F6D206661726D00000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x44617461206973206E6F742070726F6365737365642E00000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x7468697320746F6B656E206973206E6F7420737570706F727465642062792074 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265617375727900000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x5468697320636F6E7472616374206973206F757464617465642E000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x43616C6C6572206973206E6F74206E6562756C61000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x2E14 DUP2 PUSH2 0x2A66 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E1F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2E2B DUP2 PUSH2 0x2A78 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E36 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2E42 DUP2 PUSH2 0x2AA4 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E4D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 ADDMOD PUSH9 0x41438D5BFF0D6FE3B5 CALLDATASIZE COINBASE 0xB0 0xD SGT 0x49 0xE6 RETURNDATASIZE 0xE9 0x4D 0xC8 CALLDATACOPY CALLVALUE SUB NUMBER 0xD1 SWAP7 GAS SELFBALANCE EXTCODESIZE MSTORE8 PUSH5 0x736F6C6343 STOP ADDMOD SUB STOP CALLER ",
"sourceMap": "6675:1761:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2177:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1788:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2078:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1461:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2235:36;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2868:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1621:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7186:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1744:38;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7079:101;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4722:279;;;:::i;:::-;;1402:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3219:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5029:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3593:1089;;;:::i;:::-;;5272:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2137:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1376:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5647:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5387:254;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2725:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1666:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1836:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7043:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1964:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7542:892;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5823:727;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1863:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1887:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1537:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3106:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3480;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2177:23;;;;;;;;;;;;;:::o;1788:21::-;;;;:::o;2078:26::-;;;;;;;;;;;;;:::o;1461:23::-;;;;:::o;2235:36::-;;;;;;;;;;;;;;;;;;;;;;:::o;2868:97::-;3053:5;;;;;;;;;;3039:19;;:10;:19;;;3031:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;2947:11:::1;2936:8;;:22;;;;;;;;;;;;;;;;;;2868:97:::0;:::o;1621:39::-;;;;;;;;;;;;;;;;;:::o;7186:300::-;7242:17;;;;;;;;;;;7234:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;7311:6;:18;7318:10;7311:18;;;;;;;;;;;;;;;;7301:6;:28;;7293:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7395:6;7373;:18;7380:10;7373:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;7426:6;7411:11;;:21;;;;;;;:::i;:::-;;;;;;;;7447:32;7461:10;7472:6;7447:32;;;;;;;:::i;:::-;;;;;;;;7186:300;:::o;1744:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;7079:101::-;3053:5;;;;;;;;;;3039:19;;:10;:19;;;3031:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;7164:9:::1;7144:17;;:29;;;;;;;;;;;;;;;;;;7079:101:::0;:::o;4722:279::-;4773:14;;;;;;;;;;;4765:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;4839:19;;;;;;;;;;;4832:36;;;4869:10;4880:14;:26;4895:10;4880:26;;;;;;;;;;;;;;;;4832:75;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;4927:14;:26;4942:10;4927:26;;;;;;;;;;;;;;;;4917:6;;:36;;;;;;;:::i;:::-;;;;;;;;4992:1;4963:14;:26;4978:10;4963:26;;;;;;;;;;;;;;;:30;;;;4722:279::o;1402:21::-;;;;;;;;;;;;;:::o;3219:116::-;3053:5;;;;;;;;;;3039:19;;:10;:19;;;3031:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;3314:14:::1;3292:19;;:36;;;;;;;;;;;;;;;;;;3219:116:::0;:::o;5150:::-;3053:5;;;;;;;;;;3039:19;;:10;:19;;;3031:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;5254:5:::1;5221:13;:30;5235:15;5221:30;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;5150:116:::0;:::o;5029:115::-;3053:5;;;;;;;;;;3039:19;;:10;:19;;;3031:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;5133:4:::1;5100:13;:30;5114:15;5100:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;5029:115:::0;:::o;3593:1089::-;3660:13;;;;;;;;;;;3652:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;3714:12;3736:19;;;;;;;;;;;3714:42;;3766:13;3796:4;3782:11;;:18;;;;:::i;:::-;3766:34;;3829:1;3814:11;;:16;3810:145;;;3891:6;;3858:5;:15;;;3882:4;3858:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;;;;:::i;:::-;3846:9;:51;;;;3935:9;;3911:21;:33;;;;3810:145;3964:15;3982:11;;3964:29;;4018:9;;4007:8;:20;4003:70;;;4053:9;;4042:20;;4003:70;4101:1;4086:11;;:16;4082:203;;;4118:11;4132:5;:15;;;4148:8;;;;;;;;;;;4165:4;4132:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4118:53;;4193:5;:18;;;4212:8;;;;;;;;;;;4229:4;4235:6;4193:49;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4185:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;4082:203;;4298:6;4307:10;4298:19;;4294:253;4323:8;4319:1;:12;4294:253;;;4352:19;4374:5;:8;4380:1;4374:8;;;;;;;;;;;;;;;;;;;;;4352:30;;4396:11;4444;;4422:6;:19;4429:11;4422:19;;;;;;;;;;;;;;;;4410:9;;:31;;;;:::i;:::-;:45;;;;:::i;:::-;4396:59;;4500:6;4469:14;:27;4484:11;4469:27;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;4530:6;4520;;:16;;;;;;;:::i;:::-;;;;;;;;4294:253;;4333:3;;;;;:::i;:::-;;;;4294:253;;;;4572:9;;4560:8;:21;4556:120;;;4611:1;4597:11;:15;;;;4556:120;;;4657:8;4643:11;:22;;;;4556:120;3593:1089;;;:::o;5272:109::-;5332:4;5355:14;:19;5370:3;5355:19;;;;;;;;;;;;;;;;5348:26;;5272:109;;;:::o;2137:34::-;;;;;;;;;;;;;:::o;1376:20::-;;;;;;;;;;;;:::o;5647:170::-;5729:7;5771:4;:20;;;5792:1;5795:8;5805:2;5771:37;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5748:62;;5647:170;;;;:::o;5387:254::-;5476:4;5492:6;5501:1;5492:10;;5517:6;5526:8;5517:17;;5512:105;5551:3;5540:8;:14;;;;:::i;:::-;5536:1;:18;5512:105;;;5600:1;5602;5600:4;;;;;;;;;;;;;;;;;;;;;;;;5594:11;;5589:17;;5583:3;5579:1;:7;;;;:::i;:::-;:27;;;;:::i;:::-;5575:31;;5556:3;;;;;:::i;:::-;;;;5512:105;;;;5633:1;5626:8;;;5387:254;;;;;:::o;2725:116::-;3053:5;;;;;;;;;;3039:19;;:10;:19;;;3031:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;2819:15:::1;2802:14;;:32;;;;;;;;;;;;;;;;;;2725:116:::0;:::o;1666:47::-;;;;;;;;;;;;;;;;;:::o;1836:21::-;;;;:::o;7043:29::-;;;;;;;;;;;;;:::o;1964:23::-;;;;:::o;7542:892::-;3425:6;;;;;;;;;;;3411:20;;:10;:20;;;3403:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;7627:24:::1;7654:4;:23;;;7678:10;;7690:1;7654:38;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7627:65;;7702:24;7729:4;:23;;;7753:10;;7765:2;7729:39;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7702:66;;7778:11;7792:4;:20;;;7813:10;;7825:2;7829;7792:40;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7778:54;;7842:7;7852:4;:20;;;7873:10;;7885:2;7889;7852:40;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7842:50;;7902:11;7916:4;:20;;;7937:10;;7949:3;7954:2;7916:41;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7902:55;;7989:5;7975:19;;:6;:10;7982:2;7975:10;;;;;;;;;;;;;;;;;;;;;:19;;;7967:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;8044:4;8031:6;:10;8038:2;8031:10;;;;;;;;;;;;:17;;;;;;;;;;;;;;;;;;8063:64;8072:16;8090;8108:6;8116:2;8120:6;8063:64;;;;;;;;;;:::i;:::-;;;;;;;;8146:13;:31;8160:16;8146:31;;;;;;;;;;;;;;;;;;;;;;;;;8138:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;8262:1;8234:6;:24;8241:16;8234:24;;;;;;;;;;;;;;;;:29;8230:123;;;8298:16;8279:5;:16;8285:9;;8279:16;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;8341:1;8328:9;;:14;;;;;;;:::i;:::-;;;;;;;;8230:123;8390:6;8362;:24;8369:16;8362:24;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;8421:6;8406:11;;:21;;;;;;;:::i;:::-;;;;;;;;3466:1;;;;;7542:892:::0;;:::o;5823:727::-;3053:5;;;;;;;;;;3039:19;;:10;:19;;;3031:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;5885:23:::1;5923:10;5885:49;;5944:13;5967:4;5960;;:11;;;;:::i;:::-;5944:27;;5981:15;5999:4;;5981:22;;6028:9;;6017:8;:20;6013:70;;;6063:9;;6052:20;;6013:70;6096:6;6105:10;6096:19;;6092:302;6121:8;6117:1;:12;6092:302;;;6150:12;6165:5;:8;6171:1;6165:8;;;;;;;;;;;;;;;;;;;;;6150:23;;6187:15;6205:22;6222:4;6205:16;:22::i;:::-;6187:40;;6241:17;6261:6;:12;6268:4;6261:12;;;;;;;;;;;;;;;;6241:32;;6287:11;:23;;;6311:4;6317:10;6287:41;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;6342:11;:21;;;6364:4;6370:12;6342:41;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;6092:302;;;6131:3;;;;;:::i;:::-;;;;6092:302;;;;6419:9;;6407:8;:21;6403:141;;;6451:1;6444:4;:8;;;;6482:5;6466:13;;:21;;;;;;;;;;;;;;;;;;6403:141;;;6525:8;6518:4;:15;;;;6403:141;3092:1;;;5823:727:::0;:::o;1863:18::-;;;;:::o;1887:33::-;;;;:::o;1537:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;3106:107::-;3053:5;;;;;;;;;;3039:19;;:10;:19;;;3031:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;3191:15:::1;3183:5;::::0;:23:::1;;;;;;;;;;;;;;;;;;3106:107:::0;:::o;3480:::-;3053:5;;;;;;;;;;3039:19;;:10;:19;;;3031:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;3564:16:::1;3555:6;;:25;;;;;;;;;;;;;;;;;;3480:107:::0;:::o;7:343:1:-;;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:143::-;;589:6;583:13;574:22;;605:33;632:5;605:33;:::i;:::-;564:80;;;;:::o;650:133::-;;731:6;718:20;709:29;;747:30;771:5;747:30;:::i;:::-;699:84;;;;:::o;789:137::-;;874:6;868:13;859:22;;890:30;914:5;890:30;:::i;:::-;849:77;;;;:::o;945:351::-;;;1062:3;1055:4;1047:6;1043:17;1039:27;1029:2;;1080:1;1077;1070:12;1029:2;1116:6;1103:20;1093:30;;1146:18;1138:6;1135:30;1132:2;;;1178:1;1175;1168:12;1132:2;1215:4;1207:6;1203:17;1191:29;;1269:3;1261:4;1253:6;1249:17;1239:8;1235:32;1232:41;1229:2;;;1286:1;1283;1276:12;1229:2;1019:277;;;;;:::o;1315:271::-;;1419:3;1412:4;1404:6;1400:17;1396:27;1386:2;;1437:1;1434;1427:12;1386:2;1477:6;1464:20;1502:78;1576:3;1568:6;1561:4;1553:6;1549:17;1502:78;:::i;:::-;1493:87;;1376:210;;;;;:::o;1592:139::-;;1676:6;1663:20;1654:29;;1692:33;1719:5;1692:33;:::i;:::-;1644:87;;;;:::o;1737:143::-;;1825:6;1819:13;1810:22;;1841:33;1868:5;1841:33;:::i;:::-;1800:80;;;;:::o;1886:262::-;;1994:2;1982:9;1973:7;1969:23;1965:32;1962:2;;;2010:1;2007;2000:12;1962:2;2053:1;2078:53;2123:7;2114:6;2103:9;2099:22;2078:53;:::i;:::-;2068:63;;2024:117;1952:196;;;;:::o;2154:284::-;;2273:2;2261:9;2252:7;2248:23;2244:32;2241:2;;;2289:1;2286;2279:12;2241:2;2332:1;2357:64;2413:7;2404:6;2393:9;2389:22;2357:64;:::i;:::-;2347:74;;2303:128;2231:207;;;;:::o;2444:256::-;;2549:2;2537:9;2528:7;2524:23;2520:32;2517:2;;;2565:1;2562;2555:12;2517:2;2608:1;2633:50;2675:7;2666:6;2655:9;2651:22;2633:50;:::i;:::-;2623:60;;2579:114;2507:193;;;;:::o;2706:278::-;;2822:2;2810:9;2801:7;2797:23;2793:32;2790:2;;;2838:1;2835;2828:12;2790:2;2881:1;2906:61;2959:7;2950:6;2939:9;2935:22;2906:61;:::i;:::-;2896:71;;2852:125;2780:204;;;;:::o;2990:393::-;;;3117:2;3105:9;3096:7;3092:23;3088:32;3085:2;;;3133:1;3130;3123:12;3085:2;3204:1;3193:9;3189:17;3176:31;3234:18;3226:6;3223:30;3220:2;;;3266:1;3263;3256:12;3220:2;3302:64;3358:7;3349:6;3338:9;3334:22;3302:64;:::i;:::-;3284:82;;;;3147:229;3075:308;;;;;:::o;3389:518::-;;;3523:2;3511:9;3502:7;3498:23;3494:32;3491:2;;;3539:1;3536;3529:12;3491:2;3610:1;3599:9;3595:17;3582:31;3640:18;3632:6;3629:30;3626:2;;;3672:1;3669;3662:12;3626:2;3700:62;3754:7;3745:6;3734:9;3730:22;3700:62;:::i;:::-;3690:72;;3553:219;3811:2;3837:53;3882:7;3873:6;3862:9;3858:22;3837:53;:::i;:::-;3827:63;;3782:118;3481:426;;;;;:::o;3913:663::-;;;;4064:2;4052:9;4043:7;4039:23;4035:32;4032:2;;;4080:1;4077;4070:12;4032:2;4151:1;4140:9;4136:17;4123:31;4181:18;4173:6;4170:30;4167:2;;;4213:1;4210;4203:12;4167:2;4241:62;4295:7;4286:6;4275:9;4271:22;4241:62;:::i;:::-;4231:72;;4094:219;4352:2;4378:53;4423:7;4414:6;4403:9;4399:22;4378:53;:::i;:::-;4368:63;;4323:118;4480:2;4506:53;4551:7;4542:6;4531:9;4527:22;4506:53;:::i;:::-;4496:63;;4451:118;4022:554;;;;;:::o;4582:262::-;;4690:2;4678:9;4669:7;4665:23;4661:32;4658:2;;;4706:1;4703;4696:12;4658:2;4749:1;4774:53;4819:7;4810:6;4799:9;4795:22;4774:53;:::i;:::-;4764:63;;4720:117;4648:196;;;;:::o;4850:284::-;;4969:2;4957:9;4948:7;4944:23;4940:32;4937:2;;;4985:1;4982;4975:12;4937:2;5028:1;5053:64;5109:7;5100:6;5089:9;5085:22;5053:64;:::i;:::-;5043:74;;4999:128;4927:207;;;;:::o;5140:118::-;5227:24;5245:5;5227:24;:::i;:::-;5222:3;5215:37;5205:53;;:::o;5264:109::-;5345:21;5360:5;5345:21;:::i;:::-;5340:3;5333:34;5323:50;;:::o;5401:301::-;;5518:70;5581:6;5576:3;5518:70;:::i;:::-;5511:77;;5598:43;5634:6;5629:3;5622:5;5598:43;:::i;:::-;5666:29;5688:6;5666:29;:::i;:::-;5661:3;5657:39;5650:46;;5501:201;;;;;:::o;5708:360::-;;5822:38;5854:5;5822:38;:::i;:::-;5876:70;5939:6;5934:3;5876:70;:::i;:::-;5869:77;;5955:52;6000:6;5995:3;5988:4;5981:5;5977:16;5955:52;:::i;:::-;6032:29;6054:6;6032:29;:::i;:::-;6027:3;6023:39;6016:46;;5798:270;;;;;:::o;6074:147::-;6169:45;6208:5;6169:45;:::i;:::-;6164:3;6157:58;6147:74;;:::o;6227:151::-;6324:47;6365:5;6324:47;:::i;:::-;6319:3;6312:60;6302:76;;:::o;6384:149::-;6480:46;6520:5;6480:46;:::i;:::-;6475:3;6468:59;6458:75;;:::o;6539:149::-;6635:46;6675:5;6635:46;:::i;:::-;6630:3;6623:59;6613:75;;:::o;6694:149::-;6790:46;6830:5;6790:46;:::i;:::-;6785:3;6778:59;6768:75;;:::o;6849:149::-;6945:46;6985:5;6945:46;:::i;:::-;6940:3;6933:59;6923:75;;:::o;7004:366::-;;7167:67;7231:2;7226:3;7167:67;:::i;:::-;7160:74;;7243:93;7332:3;7243:93;:::i;:::-;7361:2;7356:3;7352:12;7345:19;;7150:220;;;:::o;7376:366::-;;7539:67;7603:2;7598:3;7539:67;:::i;:::-;7532:74;;7615:93;7704:3;7615:93;:::i;:::-;7733:2;7728:3;7724:12;7717:19;;7522:220;;;:::o;7748:366::-;;7911:67;7975:2;7970:3;7911:67;:::i;:::-;7904:74;;7987:93;8076:3;7987:93;:::i;:::-;8105:2;8100:3;8096:12;8089:19;;7894:220;;;:::o;8120:366::-;;8283:67;8347:2;8342:3;8283:67;:::i;:::-;8276:74;;8359:93;8448:3;8359:93;:::i;:::-;8477:2;8472:3;8468:12;8461:19;;8266:220;;;:::o;8492:366::-;;8655:67;8719:2;8714:3;8655:67;:::i;:::-;8648:74;;8731:93;8820:3;8731:93;:::i;:::-;8849:2;8844:3;8840:12;8833:19;;8638:220;;;:::o;8864:366::-;;9027:67;9091:2;9086:3;9027:67;:::i;:::-;9020:74;;9103:93;9192:3;9103:93;:::i;:::-;9221:2;9216:3;9212:12;9205:19;;9010:220;;;:::o;9236:366::-;;9399:67;9463:2;9458:3;9399:67;:::i;:::-;9392:74;;9475:93;9564:3;9475:93;:::i;:::-;9593:2;9588:3;9584:12;9577:19;;9382:220;;;:::o;9608:366::-;;9771:67;9835:2;9830:3;9771:67;:::i;:::-;9764:74;;9847:93;9936:3;9847:93;:::i;:::-;9965:2;9960:3;9956:12;9949:19;;9754:220;;;:::o;9980:366::-;;10143:67;10207:2;10202:3;10143:67;:::i;:::-;10136:74;;10219:93;10308:3;10219:93;:::i;:::-;10337:2;10332:3;10328:12;10321:19;;10126:220;;;:::o;10352:118::-;10439:24;10457:5;10439:24;:::i;:::-;10434:3;10427:37;10417:53;;:::o;10476:222::-;;10607:2;10596:9;10592:18;10584:26;;10620:71;10688:1;10677:9;10673:17;10664:6;10620:71;:::i;:::-;10574:124;;;;:::o;10704:332::-;;10863:2;10852:9;10848:18;10840:26;;10876:71;10944:1;10933:9;10929:17;10920:6;10876:71;:::i;:::-;10957:72;11025:2;11014:9;11010:18;11001:6;10957:72;:::i;:::-;10830:206;;;;;:::o;11042:442::-;;11229:2;11218:9;11214:18;11206:26;;11242:71;11310:1;11299:9;11295:17;11286:6;11242:71;:::i;:::-;11323:72;11391:2;11380:9;11376:18;11367:6;11323:72;:::i;:::-;11405;11473:2;11462:9;11458:18;11449:6;11405:72;:::i;:::-;11196:288;;;;;;:::o;11490:664::-;;11733:3;11722:9;11718:19;11710:27;;11747:71;11815:1;11804:9;11800:17;11791:6;11747:71;:::i;:::-;11828:72;11896:2;11885:9;11881:18;11872:6;11828:72;:::i;:::-;11910;11978:2;11967:9;11963:18;11954:6;11910:72;:::i;:::-;11992;12060:2;12049:9;12045:18;12036:6;11992:72;:::i;:::-;12074:73;12142:3;12131:9;12127:19;12118:6;12074:73;:::i;:::-;11700:454;;;;;;;;:::o;12160:332::-;;12319:2;12308:9;12304:18;12296:26;;12332:71;12400:1;12389:9;12385:17;12376:6;12332:71;:::i;:::-;12413:72;12481:2;12470:9;12466:18;12457:6;12413:72;:::i;:::-;12286:206;;;;;:::o;12498:210::-;;12623:2;12612:9;12608:18;12600:26;;12636:65;12698:1;12687:9;12683:17;12674:6;12636:65;:::i;:::-;12590:118;;;;:::o;12714:455::-;;12909:2;12898:9;12894:18;12886:26;;12958:9;12952:4;12948:20;12944:1;12933:9;12929:17;12922:47;12986:86;13067:4;13058:6;13050;12986:86;:::i;:::-;12978:94;;13082:80;13158:2;13147:9;13143:18;13134:6;13082:80;:::i;:::-;12876:293;;;;;;:::o;13175:587::-;;13409:2;13398:9;13394:18;13386:26;;13458:9;13452:4;13448:20;13444:1;13433:9;13429:17;13422:47;13486:86;13567:4;13558:6;13550;13486:86;:::i;:::-;13478:94;;13582:82;13660:2;13649:9;13645:18;13636:6;13582:82;:::i;:::-;13674:81;13751:2;13740:9;13736:18;13727:6;13674:81;:::i;:::-;13376:386;;;;;;;:::o;13768:457::-;;13964:2;13953:9;13949:18;13941:26;;14013:9;14007:4;14003:20;13999:1;13988:9;13984:17;13977:47;14041:86;14122:4;14113:6;14105;14041:86;:::i;:::-;14033:94;;14137:81;14214:2;14203:9;14199:18;14190:6;14137:81;:::i;:::-;13931:294;;;;;;:::o;14231:585::-;;14464:2;14453:9;14449:18;14441:26;;14513:9;14507:4;14503:20;14499:1;14488:9;14484:17;14477:47;14541:86;14622:4;14613:6;14605;14541:86;:::i;:::-;14533:94;;14637:81;14714:2;14703:9;14699:18;14690:6;14637:81;:::i;:::-;14728;14805:2;14794:9;14790:18;14781:6;14728:81;:::i;:::-;14431:385;;;;;;;:::o;14822:585::-;;15055:2;15044:9;15040:18;15032:26;;15104:9;15098:4;15094:20;15090:1;15079:9;15075:17;15068:47;15132:86;15213:4;15204:6;15196;15132:86;:::i;:::-;15124:94;;15228:81;15305:2;15294:9;15290:18;15281:6;15228:81;:::i;:::-;15319;15396:2;15385:9;15381:18;15372:6;15319:81;:::i;:::-;15022:385;;;;;;;:::o;15413:547::-;;15627:2;15616:9;15612:18;15604:26;;15676:9;15670:4;15666:20;15662:1;15651:9;15647:17;15640:47;15704:76;15775:4;15766:6;15704:76;:::i;:::-;15696:84;;15790:72;15858:2;15847:9;15843:18;15834:6;15790:72;:::i;:::-;15872:81;15949:2;15938:9;15934:18;15925:6;15872:81;:::i;:::-;15594:366;;;;;;:::o;15966:419::-;;16170:2;16159:9;16155:18;16147:26;;16219:9;16213:4;16209:20;16205:1;16194:9;16190:17;16183:47;16247:131;16373:4;16247:131;:::i;:::-;16239:139;;16137:248;;;:::o;16391:419::-;;16595:2;16584:9;16580:18;16572:26;;16644:9;16638:4;16634:20;16630:1;16619:9;16615:17;16608:47;16672:131;16798:4;16672:131;:::i;:::-;16664:139;;16562:248;;;:::o;16816:419::-;;17020:2;17009:9;17005:18;16997:26;;17069:9;17063:4;17059:20;17055:1;17044:9;17040:17;17033:47;17097:131;17223:4;17097:131;:::i;:::-;17089:139;;16987:248;;;:::o;17241:419::-;;17445:2;17434:9;17430:18;17422:26;;17494:9;17488:4;17484:20;17480:1;17469:9;17465:17;17458:47;17522:131;17648:4;17522:131;:::i;:::-;17514:139;;17412:248;;;:::o;17666:419::-;;17870:2;17859:9;17855:18;17847:26;;17919:9;17913:4;17909:20;17905:1;17894:9;17890:17;17883:47;17947:131;18073:4;17947:131;:::i;:::-;17939:139;;17837:248;;;:::o;18091:419::-;;18295:2;18284:9;18280:18;18272:26;;18344:9;18338:4;18334:20;18330:1;18319:9;18315:17;18308:47;18372:131;18498:4;18372:131;:::i;:::-;18364:139;;18262:248;;;:::o;18516:419::-;;18720:2;18709:9;18705:18;18697:26;;18769:9;18763:4;18759:20;18755:1;18744:9;18740:17;18733:47;18797:131;18923:4;18797:131;:::i;:::-;18789:139;;18687:248;;;:::o;18941:419::-;;19145:2;19134:9;19130:18;19122:26;;19194:9;19188:4;19184:20;19180:1;19169:9;19165:17;19158:47;19222:131;19348:4;19222:131;:::i;:::-;19214:139;;19112:248;;;:::o;19366:419::-;;19570:2;19559:9;19555:18;19547:26;;19619:9;19613:4;19609:20;19605:1;19594:9;19590:17;19583:47;19647:131;19773:4;19647:131;:::i;:::-;19639:139;;19537:248;;;:::o;19791:222::-;;19922:2;19911:9;19907:18;19899:26;;19935:71;20003:1;19992:9;19988:17;19979:6;19935:71;:::i;:::-;19889:124;;;;:::o;20019:129::-;;20080:20;;:::i;:::-;20070:30;;20109:33;20137:4;20129:6;20109:33;:::i;:::-;20060:88;;;:::o;20154:75::-;;20220:2;20214:9;20204:19;;20194:35;:::o;20235:307::-;;20386:18;20378:6;20375:30;20372:2;;;20408:18;;:::i;:::-;20372:2;20446:29;20468:6;20446:29;:::i;:::-;20438:37;;20530:4;20524;20520:15;20512:23;;20301:241;;;:::o;20548:98::-;;20633:5;20627:12;20617:22;;20606:40;;;:::o;20652:168::-;;20769:6;20764:3;20757:19;20809:4;20804:3;20800:14;20785:29;;20747:73;;;;:::o;20826:169::-;;20944:6;20939:3;20932:19;20984:4;20979:3;20975:14;20960:29;;20922:73;;;;:::o;21001:305::-;;21060:20;21078:1;21060:20;:::i;:::-;21055:25;;21094:20;21112:1;21094:20;:::i;:::-;21089:25;;21248:1;21180:66;21176:74;21173:1;21170:81;21167:2;;;21254:18;;:::i;:::-;21167:2;21298:1;21295;21291:9;21284:16;;21045:261;;;;:::o;21312:185::-;;21369:20;21387:1;21369:20;:::i;:::-;21364:25;;21403:20;21421:1;21403:20;:::i;:::-;21398:25;;21442:1;21432:2;;21447:18;;:::i;:::-;21432:2;21489:1;21486;21482:9;21477:14;;21354:143;;;;:::o;21503:348::-;;21566:20;21584:1;21566:20;:::i;:::-;21561:25;;21600:20;21618:1;21600:20;:::i;:::-;21595:25;;21788:1;21720:66;21716:74;21713:1;21710:81;21705:1;21698:9;21691:17;21687:105;21684:2;;;21795:18;;:::i;:::-;21684:2;21843:1;21840;21836:9;21825:20;;21551:300;;;;:::o;21857:191::-;;21917:20;21935:1;21917:20;:::i;:::-;21912:25;;21951:20;21969:1;21951:20;:::i;:::-;21946:25;;21990:1;21987;21984:8;21981:2;;;21995:18;;:::i;:::-;21981:2;22040:1;22037;22033:9;22025:17;;21902:146;;;;:::o;22054:96::-;;22120:24;22138:5;22120:24;:::i;:::-;22109:35;;22099:51;;;:::o;22156:90::-;;22233:5;22226:13;22219:21;22208:32;;22198:48;;;:::o;22252:126::-;;22329:42;22322:5;22318:54;22307:65;;22297:81;;;:::o;22384:77::-;;22450:5;22439:16;;22429:32;;;:::o;22467:121::-;;22558:24;22576:5;22558:24;:::i;:::-;22545:37;;22535:53;;;:::o;22594:123::-;;22687:24;22705:5;22687:24;:::i;:::-;22674:37;;22664:53;;;:::o;22723:122::-;;22815:24;22833:5;22815:24;:::i;:::-;22802:37;;22792:53;;;:::o;22851:122::-;;22943:24;22961:5;22943:24;:::i;:::-;22930:37;;22920:53;;;:::o;22979:122::-;;23071:24;23089:5;23071:24;:::i;:::-;23058:37;;23048:53;;;:::o;23107:122::-;;23199:24;23217:5;23199:24;:::i;:::-;23186:37;;23176:53;;;:::o;23235:154::-;23319:6;23314:3;23309;23296:30;23381:1;23372:6;23367:3;23363:16;23356:27;23286:103;;;:::o;23395:307::-;23463:1;23473:113;23487:6;23484:1;23481:13;23473:113;;;23572:1;23567:3;23563:11;23557:18;23553:1;23548:3;23544:11;23537:39;23509:2;23506:1;23502:10;23497:15;;23473:113;;;23604:6;23601:1;23598:13;23595:2;;;23684:1;23675:6;23670:3;23666:16;23659:27;23595:2;23444:258;;;;:::o;23708:281::-;23791:27;23813:4;23791:27;:::i;:::-;23783:6;23779:40;23921:6;23909:10;23906:22;23885:18;23873:10;23870:34;23867:62;23864:2;;;23932:18;;:::i;:::-;23864:2;23972:10;23968:2;23961:22;23751:238;;;:::o;23995:233::-;;24057:24;24075:5;24057:24;:::i;:::-;24048:33;;24103:66;24096:5;24093:77;24090:2;;;24173:18;;:::i;:::-;24090:2;24220:1;24213:5;24209:13;24202:20;;24038:190;;;:::o;24234:180::-;24282:77;24279:1;24272:88;24379:4;24376:1;24369:15;24403:4;24400:1;24393:15;24420:180;24468:77;24465:1;24458:88;24565:4;24562:1;24555:15;24589:4;24586:1;24579:15;24606:180;24654:77;24651:1;24644:88;24751:4;24748:1;24741:15;24775:4;24772:1;24765:15;24792:102;;24884:2;24880:7;24875:2;24868:5;24864:14;24860:28;24850:38;;24840:54;;;:::o;24900:179::-;25040:31;25036:1;25028:6;25024:14;25017:55;25006:73;:::o;25085:170::-;25225:22;25221:1;25213:6;25209:14;25202:46;25191:64;:::o;25261:169::-;25401:21;25397:1;25389:6;25385:14;25378:45;25367:63;:::o;25436:181::-;25576:33;25572:1;25564:6;25560:14;25553:57;25542:75;:::o;25623:178::-;25763:30;25759:1;25751:6;25747:14;25740:54;25729:72;:::o;25807:172::-;25947:24;25943:1;25935:6;25931:14;25924:48;25913:66;:::o;25985:226::-;26125:34;26121:1;26113:6;26109:14;26102:58;26194:9;26189:2;26181:6;26177:15;26170:34;26091:120;:::o;26217:176::-;26357:28;26353:1;26345:6;26341:14;26334:52;26323:70;:::o;26399:170::-;26539:22;26535:1;26527:6;26523:14;26516:46;26505:64;:::o;26575:122::-;26648:24;26666:5;26648:24;:::i;:::-;26641:5;26638:35;26628:2;;26687:1;26684;26677:12;26628:2;26618:79;:::o;26703:116::-;26773:21;26788:5;26773:21;:::i;:::-;26766:5;26763:32;26753:2;;26809:1;26806;26799:12;26753:2;26743:76;:::o;26825:122::-;26898:24;26916:5;26898:24;:::i;:::-;26891:5;26888:35;26878:2;;26937:1;26934;26927:12;26878:2;26868:79;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "2382000",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"addNewToken(address)": "22368",
"allowedTokens(address)": "1633",
"attachValue(bytes)": "infinite",
"claim()": "infinite",
"claimAllowance()": "1312",
"currentBP()": "1240",
"dataId(uint256)": "1542",
"deserializeAddress(bytes,uint256)": "infinite",
"deserializeUint(bytes,uint256,uint256)": "infinite",
"farmAddr()": "1261",
"final_value()": "1196",
"getPendingAmount(address)": "1587",
"governanceTokenAddr()": "1332",
"impact(address)": "1604",
"lastBP()": "1173",
"lastEmissionProcessed()": "1195",
"migrate(address)": "infinite",
"nebula()": "1326",
"owner()": "1301",
"pendingAmounts(address)": "1603",
"processPendingAmounts()": "infinite",
"removeToken(address)": "22346",
"setClaimingAllowance(bool)": "22263",
"setNewGtonAddr(address)": "22284",
"toggleWithdraw(bool)": "22214",
"totalSupply()": "1242",
"transferFarm(address)": "22257",
"transferNebula(address)": "22321",
"transferOwnership(address)": "22299",
"userCount()": "1198",
"users(uint256)": "1585",
"withdraw(uint256)": "infinite",
"withdrawAllowance()": "1216"
}
},
"methodIdentifiers": {
"addNewToken(address)": "64db444a",
"allowedTokens(address)": "e744092e",
"attachValue(bytes)": "cc32a151",
"claim()": "4e71d92d",
"claimAllowance()": "1259b484",
"currentBP()": "c0544bf1",
"dataId(uint256)": "1a7b4240",
"deserializeAddress(bytes,uint256)": "96013dc6",
"deserializeUint(bytes,uint256,uint256)": "9b94f08b",
"farmAddr()": "006ae91e",
"final_value()": "c3b12eb2",
"getPendingAmount(address)": "7571af22",
"governanceTokenAddr()": "7b6f1e07",
"impact(address)": "257d5f86",
"lastBP()": "db5a9d50",
"lastEmissionProcessed()": "e70d43cf",
"migrate(address)": "ce5494bb",
"nebula()": "4ecde849",
"owner()": "8da5cb5b",
"pendingAmounts(address)": "a5f6f054",
"processPendingAmounts()": "6bb10536",
"removeToken(address)": "5fa7b584",
"setClaimingAllowance(bool)": "9bb2b0f6",
"setNewGtonAddr(address)": "5b56dcbe",
"toggleWithdraw(bool)": "4988c119",
"totalSupply()": "18160ddd",
"transferFarm(address)": "1a9eb353",
"transferNebula(address)": "f61d7fe0",
"transferOwnership(address)": "f2fde38b",
"userCount()": "07973ccf",
"users(uint256)": "365b98b2",
"withdraw(uint256)": "2e1a7d4d",
"withdrawAllowance()": "c0ee01bc"
}
},
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"internalType": "address",
"name": "_nebula",
"type": "address"
},
{
"internalType": "address[]",
"name": "_allowedTokens",
"type": "address[]"
},
{
"internalType": "address",
"name": "_governanceTokenAddr",
"type": "address"
},
{
"internalType": "address",
"name": "_farmAddr",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "token",
"type": "address"
},
{
"indexed": false,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "action",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "withdrawEvent",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "newTokenAddress",
"type": "address"
}
],
"name": "addNewToken",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "allowedTokens",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes",
"name": "impactData",
"type": "bytes"
}
],
"name": "attachValue",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "claim",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "claimAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "currentBP",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "dataId",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes",
"name": "b",
"type": "bytes"
},
{
"internalType": "uint256",
"name": "startPos",
"type": "uint256"
}
],
"name": "deserializeAddress",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes",
"name": "b",
"type": "bytes"
},
{
"internalType": "uint256",
"name": "startPos",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "len",
"type": "uint256"
}
],
"name": "deserializeUint",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [],
"name": "farmAddr",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "final_value",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "usr",
"type": "address"
}
],
"name": "getPendingAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "governanceTokenAddr",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "impact",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "lastBP",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "lastEmissionProcessed",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newAddress",
"type": "address"
}
],
"name": "migrate",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "nebula",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "pendingAmounts",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "processPendingAmounts",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newTokenAddress",
"type": "address"
}
],
"name": "removeToken",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "_claimAllowance",
"type": "bool"
}
],
"name": "setClaimingAllowance",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newGtonAddress",
"type": "address"
}
],
"name": "setNewGtonAddr",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "allowance",
"type": "bool"
}
],
"name": "toggleWithdraw",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newFarmAddr",
"type": "address"
}
],
"name": "transferFarm",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newNebulaAddress",
"type": "address"
}
],
"name": "transferNebula",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwnerAddress",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "userCount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "users",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "withdraw",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "withdrawAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.3+commit.8d00100c"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"internalType": "address",
"name": "_nebula",
"type": "address"
},
{
"internalType": "address[]",
"name": "_allowedTokens",
"type": "address[]"
},
{
"internalType": "address",
"name": "_governanceTokenAddr",
"type": "address"
},
{
"internalType": "address",
"name": "_farmAddr",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "token",
"type": "address"
},
{
"indexed": false,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "action",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "withdrawEvent",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "newTokenAddress",
"type": "address"
}
],
"name": "addNewToken",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "allowedTokens",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes",
"name": "impactData",
"type": "bytes"
}
],
"name": "attachValue",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "claim",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "claimAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "currentBP",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "dataId",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes",
"name": "b",
"type": "bytes"
},
{
"internalType": "uint256",
"name": "startPos",
"type": "uint256"
}
],
"name": "deserializeAddress",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes",
"name": "b",
"type": "bytes"
},
{
"internalType": "uint256",
"name": "startPos",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "len",
"type": "uint256"
}
],
"name": "deserializeUint",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [],
"name": "farmAddr",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "final_value",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "usr",
"type": "address"
}
],
"name": "getPendingAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "governanceTokenAddr",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "impact",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "lastBP",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "lastEmissionProcessed",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newAddress",
"type": "address"
}
],
"name": "migrate",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "nebula",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "pendingAmounts",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "processPendingAmounts",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newTokenAddress",
"type": "address"
}
],
"name": "removeToken",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "_claimAllowance",
"type": "bool"
}
],
"name": "setClaimingAllowance",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newGtonAddress",
"type": "address"
}
],
"name": "setNewGtonAddr",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "allowance",
"type": "bool"
}
],
"name": "toggleWithdraw",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newFarmAddr",
"type": "address"
}
],
"name": "transferFarm",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newNebulaAddress",
"type": "address"
}
],
"name": "transferNebula",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwnerAddress",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "userCount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "users",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "withdraw",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "withdrawAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"Birds.sol": "BirdsImpact"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"Birds.sol": {
"keccak256": "0x27ea51e7d7e5136f9ddca5d3fff4ae39b45319f088c55641c4b16f2fcaf5ca26",
"urls": [
"bzz-raw://44984bf3efb1934dedab3dec7c78b0f8272afeb9fbbf5d75254b9c2774d19a08",
"dweb:/ipfs/QmQ8jixc4U5pGbJhyMs71TkcDT3jK84ecfT7un3qysApsf"
]
}
},
"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": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.7.4+commit.3f05b770"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"gtoken_flat.sol": "Context"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"gtoken_flat.sol": {
"keccak256": "0xf8cac1588ed0bc037f80edf78040e1a622e03aac1a0e61049cfe3f87fbdf5e05",
"license": "MIT",
"urls": [
"bzz-raw://da19d4d045d3be2a4ebff3055b20d3e71ff5741b77123c47ab37497f56c15db4",
"dweb:/ipfs/QmSRB7Fmw7XYL2JYasabrzPp8aH5tELuruCv7y7JakJbb9"
]
}
},
"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": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"addNewToken(address)": "64db444a",
"allowedTokens(address)": "e744092e",
"attachValue(bytes)": "cc32a151",
"claim()": "4e71d92d",
"claimAllowance()": "1259b484",
"currentBP()": "c0544bf1",
"dataId(uint256)": "1a7b4240",
"deserializeAddress(bytes,uint256)": "96013dc6",
"deserializeUint(bytes,uint256,uint256)": "9b94f08b",
"farmAddr()": "006ae91e",
"final_value()": "c3b12eb2",
"getPendingAmount(address)": "7571af22",
"governanceTokenAddr()": "7b6f1e07",
"impact(address)": "257d5f86",
"lastBP()": "db5a9d50",
"lastEmissionProcessed()": "e70d43cf",
"migrate(address)": "ce5494bb",
"nebula()": "4ecde849",
"owner()": "8da5cb5b",
"pendingAmounts(address)": "a5f6f054",
"processPendingAmounts()": "6bb10536",
"removeToken(address)": "5fa7b584",
"setClaimingAllowance(bool)": "9bb2b0f6",
"setNewGtonAddr(address)": "5b56dcbe",
"totalSupply()": "18160ddd",
"transferFarm(address)": "1a9eb353",
"transferNebula(address)": "f61d7fe0",
"transferOwnership(address)": "f2fde38b",
"userCount()": "07973ccf",
"users(uint256)": "365b98b2"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "token",
"type": "address"
},
{
"indexed": false,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "action",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "newTokenAddress",
"type": "address"
}
],
"name": "addNewToken",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "allowedTokens",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes",
"name": "impactData",
"type": "bytes"
}
],
"name": "attachValue",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "claim",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "claimAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "currentBP",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "dataId",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes",
"name": "b",
"type": "bytes"
},
{
"internalType": "uint256",
"name": "startPos",
"type": "uint256"
}
],
"name": "deserializeAddress",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes",
"name": "b",
"type": "bytes"
},
{
"internalType": "uint256",
"name": "startPos",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "len",
"type": "uint256"
}
],
"name": "deserializeUint",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [],
"name": "farmAddr",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "final_value",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "usr",
"type": "address"
}
],
"name": "getPendingAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "governanceTokenAddr",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "impact",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "lastBP",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "lastEmissionProcessed",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newAddress",
"type": "address"
}
],
"name": "migrate",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "nebula",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "pendingAmounts",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "processPendingAmounts",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newTokenAddress",
"type": "address"
}
],
"name": "removeToken",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "_claimAllowance",
"type": "bool"
}
],
"name": "setClaimingAllowance",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newGtonAddress",
"type": "address"
}
],
"name": "setNewGtonAddr",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newFarmAddr",
"type": "address"
}
],
"name": "transferFarm",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newNebulaAddress",
"type": "address"
}
],
"name": "transferNebula",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwnerAddress",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "userCount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "users",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.3+commit.8d00100c"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "token",
"type": "address"
},
{
"indexed": false,
"internalType": "address",
"name": "user",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "action",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "newTokenAddress",
"type": "address"
}
],
"name": "addNewToken",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "allowedTokens",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes",
"name": "impactData",
"type": "bytes"
}
],
"name": "attachValue",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "claim",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "claimAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "currentBP",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "dataId",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes",
"name": "b",
"type": "bytes"
},
{
"internalType": "uint256",
"name": "startPos",
"type": "uint256"
}
],
"name": "deserializeAddress",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes",
"name": "b",
"type": "bytes"
},
{
"internalType": "uint256",
"name": "startPos",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "len",
"type": "uint256"
}
],
"name": "deserializeUint",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [],
"name": "farmAddr",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "final_value",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "usr",
"type": "address"
}
],
"name": "getPendingAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "governanceTokenAddr",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "impact",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "lastBP",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "lastEmissionProcessed",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newAddress",
"type": "address"
}
],
"name": "migrate",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "nebula",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "pendingAmounts",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "processPendingAmounts",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newTokenAddress",
"type": "address"
}
],
"name": "removeToken",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "_claimAllowance",
"type": "bool"
}
],
"name": "setClaimingAllowance",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newGtonAddress",
"type": "address"
}
],
"name": "setNewGtonAddr",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newFarmAddr",
"type": "address"
}
],
"name": "transferFarm",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newNebulaAddress",
"type": "address"
}
],
"name": "transferNebula",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwnerAddress",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "userCount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "users",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"LPImpact.sol": "DepositersImpact"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"LPImpact.sol": {
"keccak256": "0x40697bc152e1e0ca010297b8843bd3c6fe4d001478baf12f43f930bd1d48028a",
"urls": [
"bzz-raw://e3ff1a8b847e3b930ef6b5e181bddb7dbb499de92b46b8dc6308754d34c6792d",
"dweb:/ipfs/QmbG1Q2PfbQivSecvYC4pbHojAQGGCnTpaLwoiLT9g3b3q"
]
}
},
"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": {
"generatedSources": [],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b50604051620013b5380380620013b5833981810160405260408110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b506040525050508160039080519060200190620001cd9291906200020b565b508060049080519060200190620001e69291906200020b565b506012600560006101000a81548160ff021916908360ff1602179055505050620002c1565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200024357600085556200028f565b82601f106200025e57805160ff19168380011785556200028f565b828001600101855582156200028f579182015b828111156200028e57825182559160200191906001019062000271565b5b5090506200029e9190620002a2565b5090565b5b80821115620002bd576000816000905550600101620002a3565b5090565b6110e480620002d16000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461025857806370a08231146102bc57806395d89b4114610314578063a457c2d714610397578063a9059cbb146103fb578063dd62ed3e1461045f576100a9565b806306fdde03146100ae578063095ea7b31461013157806318160ddd1461019557806323b872dd146101b3578063313ce56714610237575b600080fd5b6100b66104d7565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156100f65780820151818401526020810190506100db565b50505050905090810190601f1680156101235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561014757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610579565b60405180821515815260200191505060405180910390f35b61019d610597565b6040518082815260200191505060405180910390f35b61021f600480360360608110156101c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506105a1565b60405180821515815260200191505060405180910390f35b61023f61067a565b604051808260ff16815260200191505060405180910390f35b6102a46004803603604081101561026e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610691565b60405180821515815260200191505060405180910390f35b6102fe600480360360208110156102d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610744565b6040518082815260200191505060405180910390f35b61031c61078c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561035c578082015181840152602081019050610341565b50505050905090810190601f1680156103895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103e3600480360360408110156103ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061082e565b60405180821515815260200191505060405180910390f35b6104476004803603604081101561041157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108fb565b60405180821515815260200191505060405180910390f35b6104c16004803603604081101561047557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610919565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561056f5780601f106105445761010080835404028352916020019161056f565b820191906000526020600020905b81548152906001019060200180831161055257829003601f168201915b5050505050905090565b600061058d6105866109a0565b84846109a8565b6001905092915050565b6000600254905090565b60006105ae848484610b9f565b61066f846105ba6109a0565b61066a8560405180606001604052806028815260200161101960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106206109a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e609092919063ffffffff16565b6109a8565b600190509392505050565b6000600560009054906101000a900460ff16905090565b600061073a61069e6109a0565b8461073585600160006106af6109a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f2090919063ffffffff16565b6109a8565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b60006108f161083b6109a0565b846108ec8560405180606001604052806025815260200161108a60259139600160006108656109a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e609092919063ffffffff16565b6109a8565b6001905092915050565b600061090f6109086109a0565b8484610b9f565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a2e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806110666024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610fd16022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c25576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806110416025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180610fae6023913960400191505060405180910390fd5b610cb6838383610fa8565b610d2181604051806060016040528060268152602001610ff3602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e609092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610db4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f2090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290610f0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ed2578082015181840152602081019050610eb7565b50505050905090810190601f168015610eff5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015610f9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a04733913eaf85a7c4bff4e9d413e1f064d6ca48775eb3ee11a32a591e4134cc64736f6c63430007040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x13B5 CODESIZE SUB DUP1 PUSH3 0x13B5 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE PUSH1 0x40 DUP2 LT ISZERO PUSH3 0x37 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 MLOAD PUSH1 0x40 MLOAD SWAP4 SWAP3 SWAP2 SWAP1 DUP5 PUSH5 0x100000000 DUP3 GT ISZERO PUSH3 0x58 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP3 ADD DUP6 DUP2 GT ISZERO PUSH3 0x6F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD DUP7 PUSH1 0x1 DUP3 MUL DUP4 ADD GT PUSH5 0x100000000 DUP3 GT OR ISZERO PUSH3 0x8D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP3 POP POP POP SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0xC3 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0xA6 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH3 0xF1 JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP PUSH1 0x40 MSTORE PUSH1 0x20 ADD DUP1 MLOAD PUSH1 0x40 MLOAD SWAP4 SWAP3 SWAP2 SWAP1 DUP5 PUSH5 0x100000000 DUP3 GT ISZERO PUSH3 0x115 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP3 ADD DUP6 DUP2 GT ISZERO PUSH3 0x12C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD DUP7 PUSH1 0x1 DUP3 MUL DUP4 ADD GT PUSH5 0x100000000 DUP3 GT OR ISZERO PUSH3 0x14A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP3 POP POP POP SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x180 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x163 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH3 0x1AE JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP PUSH1 0x40 MSTORE POP POP POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x1CD SWAP3 SWAP2 SWAP1 PUSH3 0x20B JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x1E6 SWAP3 SWAP2 SWAP1 PUSH3 0x20B JUMP JUMPDEST POP PUSH1 0x12 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP POP POP PUSH3 0x2C1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x243 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x28F JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x25E JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x28F JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x28F JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x28E JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x271 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x29E SWAP2 SWAP1 PUSH3 0x2A2 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x2BD JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x2A3 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x10E4 DUP1 PUSH3 0x2D1 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 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x258 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2BC JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x314 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x397 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x3FB JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x45F JUMPI PUSH2 0xA9 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x131 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1B3 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x237 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x4D7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF6 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xDB JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x123 JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17D PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x147 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x579 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x19D PUSH2 0x597 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x21F PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x60 DUP2 LT ISZERO PUSH2 0x1C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x5A1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23F PUSH2 0x67A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x26E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x691 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2FE PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x20 DUP2 LT ISZERO PUSH2 0x2D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x744 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x31C PUSH2 0x78C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x35C JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x341 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x389 JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3E3 PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x3AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x82E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x447 PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x411 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x8FB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4C1 PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x475 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x919 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV 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 PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 ISZERO PUSH2 0x56F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x544 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x56F 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 0x552 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x58D PUSH2 0x586 PUSH2 0x9A0 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x9A8 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5AE DUP5 DUP5 DUP5 PUSH2 0xB9F JUMP JUMPDEST PUSH2 0x66F DUP5 PUSH2 0x5BA PUSH2 0x9A0 JUMP JUMPDEST PUSH2 0x66A DUP6 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x28 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1019 PUSH1 0x28 SWAP2 CODECOPY PUSH1 0x1 PUSH1 0x0 DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x620 PUSH2 0x9A0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xE60 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x9A8 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x73A PUSH2 0x69E PUSH2 0x9A0 JUMP JUMPDEST DUP5 PUSH2 0x735 DUP6 PUSH1 0x1 PUSH1 0x0 PUSH2 0x6AF PUSH2 0x9A0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xF20 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x9A8 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 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 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV 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 PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 ISZERO PUSH2 0x824 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x7F9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x824 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 0x807 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8F1 PUSH2 0x83B PUSH2 0x9A0 JUMP JUMPDEST DUP5 PUSH2 0x8EC DUP6 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x25 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x108A PUSH1 0x25 SWAP2 CODECOPY PUSH1 0x1 PUSH1 0x0 PUSH2 0x865 PUSH2 0x9A0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP11 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xE60 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x9A8 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x90F PUSH2 0x908 PUSH2 0x9A0 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xB9F JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 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 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xA2E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE PUSH1 0x24 DUP2 MSTORE PUSH1 0x20 ADD DUP1 PUSH2 0x1066 PUSH1 0x24 SWAP2 CODECOPY PUSH1 0x40 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xAB4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE PUSH1 0x22 DUP2 MSTORE PUSH1 0x20 ADD DUP1 PUSH2 0xFD1 PUSH1 0x22 SWAP2 CODECOPY PUSH1 0x40 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC25 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE PUSH1 0x25 DUP2 MSTORE PUSH1 0x20 ADD DUP1 PUSH2 0x1041 PUSH1 0x25 SWAP2 CODECOPY PUSH1 0x40 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xCAB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE PUSH1 0x23 DUP2 MSTORE PUSH1 0x20 ADD DUP1 PUSH2 0xFAE PUSH1 0x23 SWAP2 CODECOPY PUSH1 0x40 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xCB6 DUP4 DUP4 DUP4 PUSH2 0xFA8 JUMP JUMPDEST PUSH2 0xD21 DUP2 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x26 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xFF3 PUSH1 0x26 SWAP2 CODECOPY PUSH1 0x0 DUP1 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xE60 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x0 DUP1 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 PUSH2 0xDB4 DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xF20 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 DUP4 GT ISZERO DUP3 SWAP1 PUSH2 0xF0D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xED2 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xEB7 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0xEFF JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 DUP4 DUP6 SUB SWAP1 POP DUP1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 ADD SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0xF9E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE PUSH1 0x1B DUP2 MSTORE PUSH1 0x20 ADD DUP1 PUSH32 0x536166654D6174683A206164646974696F6E206F766572666C6F770000000000 DUP2 MSTORE POP PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST POP POP POP JUMP INVALID GASLIMIT MSTORE NUMBER ORIGIN ADDRESS GASPRICE KECCAK256 PUSH21 0x72616E7366657220746F20746865207A65726F2061 PUSH5 0x6472657373 GASLIMIT MSTORE NUMBER ORIGIN ADDRESS GASPRICE KECCAK256 PUSH2 0x7070 PUSH19 0x6F766520746F20746865207A65726F20616464 PUSH19 0x65737345524332303A207472616E7366657220 PUSH2 0x6D6F PUSH22 0x6E7420657863656564732062616C616E636545524332 ADDRESS GASPRICE KECCAK256 PUSH21 0x72616E7366657220616D6F756E7420657863656564 PUSH20 0x20616C6C6F77616E636545524332303A20747261 PUSH15 0x736665722066726F6D20746865207A PUSH6 0x726F20616464 PUSH19 0x65737345524332303A20617070726F76652066 PUSH19 0x6F6D20746865207A65726F2061646472657373 GASLIMIT MSTORE NUMBER ORIGIN ADDRESS GASPRICE KECCAK256 PUSH5 0x6563726561 PUSH20 0x656420616C6C6F77616E63652062656C6F77207A PUSH6 0x726FA2646970 PUSH7 0x7358221220A047 CALLER SWAP2 RETURNDATACOPY 0xAF DUP6 0xA7 0xC4 0xBF DELEGATECALL 0xE9 0xD4 SGT 0xE1 CREATE PUSH5 0xD6CA48775E 0xB3 0xEE GT LOG3 0x2A MSIZE 0x1E COINBASE CALLVALUE 0xCC PUSH5 0x736F6C6343 STOP SMOD DIV STOP CALLER ",
"sourceMap": "5132:9426:0:-:0;;;5769:145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5851:5;5843;:13;;;;;;;;;;;;:::i;:::-;;5876:7;5866;:17;;;;;;;;;;;;:::i;:::-;;5905:2;5893:9;;:14;;;;;;;;;;;;;;;;;;5769:145;;5132:9426;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461025857806370a08231146102bc57806395d89b4114610314578063a457c2d714610397578063a9059cbb146103fb578063dd62ed3e1461045f576100a9565b806306fdde03146100ae578063095ea7b31461013157806318160ddd1461019557806323b872dd146101b3578063313ce56714610237575b600080fd5b6100b66104d7565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156100f65780820151818401526020810190506100db565b50505050905090810190601f1680156101235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017d6004803603604081101561014757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610579565b60405180821515815260200191505060405180910390f35b61019d610597565b6040518082815260200191505060405180910390f35b61021f600480360360608110156101c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506105a1565b60405180821515815260200191505060405180910390f35b61023f61067a565b604051808260ff16815260200191505060405180910390f35b6102a46004803603604081101561026e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610691565b60405180821515815260200191505060405180910390f35b6102fe600480360360208110156102d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610744565b6040518082815260200191505060405180910390f35b61031c61078c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561035c578082015181840152602081019050610341565b50505050905090810190601f1680156103895780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103e3600480360360408110156103ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061082e565b60405180821515815260200191505060405180910390f35b6104476004803603604081101561041157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108fb565b60405180821515815260200191505060405180910390f35b6104c16004803603604081101561047557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610919565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561056f5780601f106105445761010080835404028352916020019161056f565b820191906000526020600020905b81548152906001019060200180831161055257829003601f168201915b5050505050905090565b600061058d6105866109a0565b84846109a8565b6001905092915050565b6000600254905090565b60006105ae848484610b9f565b61066f846105ba6109a0565b61066a8560405180606001604052806028815260200161101960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106206109a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e609092919063ffffffff16565b6109a8565b600190509392505050565b6000600560009054906101000a900460ff16905090565b600061073a61069e6109a0565b8461073585600160006106af6109a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f2090919063ffffffff16565b6109a8565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b60006108f161083b6109a0565b846108ec8560405180606001604052806025815260200161108a60259139600160006108656109a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e609092919063ffffffff16565b6109a8565b6001905092915050565b600061090f6109086109a0565b8484610b9f565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a2e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806110666024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180610fd16022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c25576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806110416025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180610fae6023913960400191505060405180910390fd5b610cb6838383610fa8565b610d2181604051806060016040528060268152602001610ff3602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e609092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610db4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f2090919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290610f0d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610ed2578082015181840152602081019050610eb7565b50505050905090810190601f168015610eff5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015610f9e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a04733913eaf85a7c4bff4e9d413e1f064d6ca48775eb3ee11a32a591e4134cc64736f6c63430007040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x258 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2BC JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x314 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x397 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x3FB JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x45F JUMPI PUSH2 0xA9 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x131 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1B3 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x237 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x4D7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xF6 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xDB JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x123 JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17D PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x147 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x579 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x19D PUSH2 0x597 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x21F PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x60 DUP2 LT ISZERO PUSH2 0x1C9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x5A1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23F PUSH2 0x67A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x26E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x691 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2FE PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x20 DUP2 LT ISZERO PUSH2 0x2D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x744 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x31C PUSH2 0x78C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x35C JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x341 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x389 JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3E3 PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x3AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x82E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x447 PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x411 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x8FB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4C1 PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x475 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH2 0x919 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV 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 PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 ISZERO PUSH2 0x56F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x544 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x56F 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 0x552 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x58D PUSH2 0x586 PUSH2 0x9A0 JUMP JUMPDEST DUP5 DUP5 PUSH2 0x9A8 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5AE DUP5 DUP5 DUP5 PUSH2 0xB9F JUMP JUMPDEST PUSH2 0x66F DUP5 PUSH2 0x5BA PUSH2 0x9A0 JUMP JUMPDEST PUSH2 0x66A DUP6 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x28 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x1019 PUSH1 0x28 SWAP2 CODECOPY PUSH1 0x1 PUSH1 0x0 DUP12 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x620 PUSH2 0x9A0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xE60 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x9A8 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x73A PUSH2 0x69E PUSH2 0x9A0 JUMP JUMPDEST DUP5 PUSH2 0x735 DUP6 PUSH1 0x1 PUSH1 0x0 PUSH2 0x6AF PUSH2 0x9A0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xF20 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x9A8 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 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 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV 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 PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV DUP1 ISZERO PUSH2 0x824 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x7F9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x824 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 0x807 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8F1 PUSH2 0x83B PUSH2 0x9A0 JUMP JUMPDEST DUP5 PUSH2 0x8EC DUP6 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x25 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x108A PUSH1 0x25 SWAP2 CODECOPY PUSH1 0x1 PUSH1 0x0 PUSH2 0x865 PUSH2 0x9A0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP11 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xE60 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x9A8 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x90F PUSH2 0x908 PUSH2 0x9A0 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xB9F JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 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 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xA2E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE PUSH1 0x24 DUP2 MSTORE PUSH1 0x20 ADD DUP1 PUSH2 0x1066 PUSH1 0x24 SWAP2 CODECOPY PUSH1 0x40 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xAB4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE PUSH1 0x22 DUP2 MSTORE PUSH1 0x20 ADD DUP1 PUSH2 0xFD1 PUSH1 0x22 SWAP2 CODECOPY PUSH1 0x40 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC25 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE PUSH1 0x25 DUP2 MSTORE PUSH1 0x20 ADD DUP1 PUSH2 0x1041 PUSH1 0x25 SWAP2 CODECOPY PUSH1 0x40 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xCAB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE PUSH1 0x23 DUP2 MSTORE PUSH1 0x20 ADD DUP1 PUSH2 0xFAE PUSH1 0x23 SWAP2 CODECOPY PUSH1 0x40 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xCB6 DUP4 DUP4 DUP4 PUSH2 0xFA8 JUMP JUMPDEST PUSH2 0xD21 DUP2 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x26 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xFF3 PUSH1 0x26 SWAP2 CODECOPY PUSH1 0x0 DUP1 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xE60 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x0 DUP1 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 PUSH2 0xDB4 DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0xF20 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 DUP4 GT ISZERO DUP3 SWAP1 PUSH2 0xF0D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xED2 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xEB7 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0xEFF JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 DUP4 DUP6 SUB SWAP1 POP DUP1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP5 ADD SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0xF9E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE PUSH1 0x1B DUP2 MSTORE PUSH1 0x20 ADD DUP1 PUSH32 0x536166654D6174683A206164646974696F6E206F766572666C6F770000000000 DUP2 MSTORE POP PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST POP POP POP JUMP INVALID GASLIMIT MSTORE NUMBER ORIGIN ADDRESS GASPRICE KECCAK256 PUSH21 0x72616E7366657220746F20746865207A65726F2061 PUSH5 0x6472657373 GASLIMIT MSTORE NUMBER ORIGIN ADDRESS GASPRICE KECCAK256 PUSH2 0x7070 PUSH19 0x6F766520746F20746865207A65726F20616464 PUSH19 0x65737345524332303A207472616E7366657220 PUSH2 0x6D6F PUSH22 0x6E7420657863656564732062616C616E636545524332 ADDRESS GASPRICE KECCAK256 PUSH21 0x72616E7366657220616D6F756E7420657863656564 PUSH20 0x20616C6C6F77616E636545524332303A20747261 PUSH15 0x736665722066726F6D20746865207A PUSH6 0x726F20616464 PUSH19 0x65737345524332303A20617070726F76652066 PUSH19 0x6F6D20746865207A65726F2061646472657373 GASLIMIT MSTORE NUMBER ORIGIN ADDRESS GASPRICE KECCAK256 PUSH5 0x6563726561 PUSH20 0x656420616C6C6F77616E63652062656C6F77207A PUSH6 0x726FA2646970 PUSH7 0x7358221220A047 CALLER SWAP2 RETURNDATACOPY 0xAF DUP6 0xA7 0xC4 0xBF DELEGATECALL 0xE9 0xD4 SGT 0xE1 CREATE PUSH5 0xD6CA48775E 0xB3 0xEE GT LOG3 0x2A MSIZE 0x1E COINBASE CALLVALUE 0xCC PUSH5 0x736F6C6343 STOP SMOD DIV STOP CALLER ",
"sourceMap": "5132:9426:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5979:81;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8015:166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;7022:98;;;:::i;:::-;;;;;;;;;;;;;;;;;;;8648:317;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;6881:81;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;9360:215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;7178:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6173:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10062:266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;7498:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;7728:149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5979:81;6016:13;6048:5;6041:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5979:81;:::o;8015:166::-;8098:4;8114:39;8123:12;:10;:12::i;:::-;8137:7;8146:6;8114:8;:39::i;:::-;8170:4;8163:11;;8015:166;;;;:::o;7022:98::-;7075:7;7101:12;;7094:19;;7022:98;:::o;8648:317::-;8754:4;8770:36;8780:6;8788:9;8799:6;8770:9;:36::i;:::-;8816:121;8825:6;8833:12;:10;:12::i;:::-;8847:89;8885:6;8847:89;;;;;;;;;;;;;;;;;:11;:19;8859:6;8847:19;;;;;;;;;;;;;;;:33;8867:12;:10;:12::i;:::-;8847:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;8816:8;:121::i;:::-;8954:4;8947:11;;8648:317;;;;;:::o;6881:81::-;6922:5;6946:9;;;;;;;;;;;6939:16;;6881:81;:::o;9360:215::-;9448:4;9464:83;9473:12;:10;:12::i;:::-;9487:7;9496:50;9535:10;9496:11;:25;9508:12;:10;:12::i;:::-;9496:25;;;;;;;;;;;;;;;:34;9522:7;9496:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;9464:8;:83::i;:::-;9564:4;9557:11;;9360:215;;;;:::o;7178:117::-;7244:7;7270:9;:18;7280:7;7270:18;;;;;;;;;;;;;;;;7263:25;;7178:117;;;:::o;6173:85::-;6212:13;6244:7;6237:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6173:85;:::o;10062:266::-;10155:4;10171:129;10180:12;:10;:12::i;:::-;10194:7;10203:96;10242:15;10203:96;;;;;;;;;;;;;;;;;:11;:25;10215:12;:10;:12::i;:::-;10203:25;;;;;;;;;;;;;;;:34;10229:7;10203:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;10171:8;:129::i;:::-;10317:4;10310:11;;10062:266;;;;:::o;7498:172::-;7584:4;7600:42;7610:12;:10;:12::i;:::-;7624:9;7635:6;7600:9;:42::i;:::-;7659:4;7652:11;;7498:172;;;;:::o;7728:149::-;7817:7;7843:11;:18;7855:5;7843:18;;;;;;;;;;;;;;;:27;7862:7;7843:27;;;;;;;;;;;;;;;;7836:34;;7728:149;;;;:::o;701:104::-;754:15;788:10;781:17;;701:104;:::o;13126:340::-;13244:1;13227:19;;:5;:19;;;;13219:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13324:1;13305:21;;:7;:21;;;;13297:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13406:6;13376:11;:18;13388:5;13376:18;;;;;;;;;;;;;;;:27;13395:7;13376:27;;;;;;;;;;;;;;;:36;;;;13443:7;13427:32;;13436:5;13427:32;;;13452:6;13427:32;;;;;;;;;;;;;;;;;;13126:340;;;:::o;10802:530::-;10925:1;10907:20;;:6;:20;;;;10899:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11008:1;10987:23;;:9;:23;;;;10979:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11061:47;11082:6;11090:9;11101:6;11061:20;:47::i;:::-;11139:71;11161:6;11139:71;;;;;;;;;;;;;;;;;:9;:17;11149:6;11139:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;11119:9;:17;11129:6;11119:17;;;;;;;;;;;;;;;:91;;;;11243:32;11268:6;11243:9;:20;11253:9;11243:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;11220:9;:20;11230:9;11220:20;;;;;;;;;;;;;;;:55;;;;11307:9;11290:35;;11299:6;11290:35;;;11318:6;11290:35;;;;;;;;;;;;;;;;;;10802:530;;;:::o;22996:187::-;23082:7;23114:1;23109;:6;;23117:12;23101:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23140:9;23156:1;23152;:5;23140:17;;23175:1;23168:8;;;22996:187;;;;;:::o;22124:176::-;22182:7;22201:9;22217:1;22213;:5;22201:17;;22241:1;22236;:6;;22228:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22292:1;22285:8;;;22124:176;;;;:::o;14464:92::-;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "864800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "1431",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "1218",
"decimals()": "1144",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "1058",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_approve(address,address,uint256)": "infinite",
"_beforeTokenTransfer(address,address,uint256)": "15",
"_burn(address,uint256)": "infinite",
"_mint(address,uint256)": "infinite",
"_setupDecimals(uint8)": "infinite",
"_transfer(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"increaseAllowance(address,uint256)": "39509351",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "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"
}
]
}
{
"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": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"burn(uint256)": "42966c68",
"burnFrom(address,uint256)": "79cc6790",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"increaseAllowance(address,uint256)": "39509351",
"name()": "06fdde03",
"symbol()": "95d89b41",
"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": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "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.7.4+commit.3f05b770"
},
"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": [
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "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": {
"details": "Extension of {ERC20} that allows token holders to destroy both their own tokens and those that they have an allowance for, in a way that can be recognized off-chain (via event analysis).",
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"burn(uint256)": {
"details": "Destroys `amount` tokens from the caller. See {ERC20-_burn}."
},
"burnFrom(address,uint256)": {
"details": "Destroys `amount` tokens from `account`, deducting from the caller's allowance. See {ERC20-_burn} and {ERC20-allowance}. Requirements: - the caller must have allowance for ``accounts``'s tokens of at least `amount`."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5,05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is called. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"gtoken_flat.sol": "ERC20Burnable"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"gtoken_flat.sol": {
"keccak256": "0xf8cac1588ed0bc037f80edf78040e1a622e03aac1a0e61049cfe3f87fbdf5e05",
"license": "MIT",
"urls": [
"bzz-raw://da19d4d045d3be2a4ebff3055b20d3e71ff5741b77123c47ab37497f56c15db4",
"dweb:/ipfs/QmSRB7Fmw7XYL2JYasabrzPp8aH5tELuruCv7y7JakJbb9"
]
}
},
"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": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"increaseAllowance(address,uint256)": "39509351",
"name()": "06fdde03",
"paused()": "5c975abb",
"symbol()": "95d89b41",
"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": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"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"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"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": "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.7.4+commit.3f05b770"
},
"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": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"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"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"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": "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": {
"details": "ERC20 token with pausable token transfers, minting and burning. Useful for scenarios such as preventing trades until the end of an evaluation period, or having an emergency switch for freezing all token transfers in the event of a large bug.",
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5,05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is called. NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"paused()": {
"details": "Returns true if the contract is paused, and false otherwise."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `recipient` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"gtoken_flat.sol": "ERC20Pausable"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"gtoken_flat.sol": {
"keccak256": "0xf8cac1588ed0bc037f80edf78040e1a622e03aac1a0e61049cfe3f87fbdf5e05",
"license": "MIT",
"urls": [
"bzz-raw://da19d4d045d3be2a4ebff3055b20d3e71ff5741b77123c47ab37497f56c15db4",
"dweb:/ipfs/QmSRB7Fmw7XYL2JYasabrzPp8aH5tELuruCv7y7JakJbb9"
]
}
},
"version": 1
}
pragma solidity >=0.8.0;
interface IERC20 {
function mint(address _to, uint256 _value) external;
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function increaseAllowance(address spender, uint256 addedValue) external returns (bool);
function transfer(address _to, uint _value) external returns (bool success);
function transferFrom(address _from, address _to, uint _value) external returns (bool success);
function balanceOf(address _owner) external view returns (uint balance);
}
interface ImpactKeeper {
// is used by the users to claim, also highly recomended to call mint function of farm contract
function claim() external;
// this function creates an airdrop of amounts available to claim in the contract
// used as a method to prevent scaming claim share, costs a lot of gas
function processPendingAmounts() external;
}
interface NewContract {
function setImpact(address user, uint256 impact) external;
function setPendings(address user, uint256 amount) external;
function setTotalSupply(uint256 supply) external;
}
abstract contract DepositersImpact is ImpactKeeper {
event Transfer(address token, address user, uint256 value, uint256 id, uint256 action);
// priveleged adresses
address public owner;
address public nebula;
// total locked usd amount
uint public totalSupply;
// tokens that are allowed to be processed
mapping(address => bool) public allowedTokens;
// users impact and amounts
mapping (address => uint) public impact;
mapping (address => uint) public pendingAmounts;
// for token airdrop
mapping (uint => address) public users;
uint public userCount;
// balance pools
uint public currentBP;
uint public lastBP;
uint public lastEmissionProcessed;
// for processing mass transfers
uint public final_value;
// for migration
uint private last;
bool private notDeprecated = true;
bool public claimAllowance;
// contract addresses
address public governanceTokenAddr;
address public farmAddr;
// processed data array
mapping (uint => bool) public dataId;
constructor(address _owner, address _nebula, address[] memory _allowedTokens, address _governanceTokenAddr, address _farmAddr) {
for (uint i = 0; i < _allowedTokens.length; i++){
allowedTokens[_allowedTokens[i]] = true;
}
governanceTokenAddr = _governanceTokenAddr;
farmAddr = _farmAddr;
owner = _owner;
nebula = _nebula;
claimAllowance = false;
}
// farm transfer
function setClaimingAllowance(bool _claimAllowance) public isOwner {
claimAllowance = _claimAllowance;
}
// farm transfer
function transferFarm(address newFarmAddr) public isOwner {
farmAddr = newFarmAddr;
}
// owner control functions
modifier isOwner() {
require(msg.sender == owner, "Caller is not owner");
_;
}
function transferOwnership(address newOwnerAddress) public isOwner {
owner = newOwnerAddress;
}
function setNewGtonAddr(address newGtonAddress) public isOwner {
governanceTokenAddr = newGtonAddress;
}
// nebula control functions
modifier isNebula() {
require(msg.sender == nebula, "Caller is not nebula");
_;
}
function transferNebula(address newNebulaAddress) public isOwner {
nebula = newNebulaAddress;
}
function processPendingAmounts() public override {
require(notDeprecated, "This contract is outdated.");
IERC20 token = IERC20(governanceTokenAddr);
uint to_value = final_value + 2000;
if (final_value == 0) {
currentBP = token.balanceOf(address(this)) - lastBP;
lastEmissionProcessed = currentBP;
}
uint from_value = final_value;
if (to_value > userCount){
to_value = userCount;
}
if (final_value == 0) {
uint amount = token.allowance(farmAddr,address(this));
require(token.transferFrom(farmAddr,address(this),amount),"error transferring from farm");
}
for(uint i = from_value; i < to_value; i++) {
address userAddress = users[i];
uint amount = currentBP * impact[userAddress] / totalSupply;
pendingAmounts[userAddress] += amount;
lastBP += amount;
}
if (to_value == userCount) {
final_value = 0;
} else {
final_value = to_value;
}
}
// impact interface implement
function claim() public override {
require(claimAllowance,"claim is shut down by the owner");
IERC20(governanceTokenAddr).transfer(msg.sender,pendingAmounts[msg.sender]);
lastBP -= pendingAmounts[msg.sender];
pendingAmounts[msg.sender] = 0;
}
// nebula methods
function addNewToken(address newTokenAddress) public isOwner {
allowedTokens[newTokenAddress] = true;
}
function removeToken(address newTokenAddress) public isOwner {
allowedTokens[newTokenAddress] = false;
}
function getPendingAmount(address usr) public view returns (uint) {
return pendingAmounts[usr];
}
function deserializeUint(bytes memory b, uint startPos, uint len) external pure returns (uint) {
uint v = 0;
for (uint p = startPos; p < startPos + len; p++) {
v = v * 256 + uint(uint8(b[p]));
}
return v;
}
function deserializeAddress(bytes memory b, uint startPos) external view returns (address) {
return address(uint160(this.deserializeUint(b, startPos, 20)));
}
function migrate(address newAddress) public isOwner {
NewContract newContract = NewContract(newAddress);
uint to_value = last + 2000;
uint from_value = last;
if (to_value > userCount){
to_value = userCount;
}
for(uint i = from_value; i < to_value; i++) {
address user = users[i];
uint pendAmount = getPendingAmount(user);
uint impactAmount = impact[user];
newContract.setPendings(user, pendAmount);
newContract.setImpact(user, impactAmount);
}
if (to_value == userCount) {
last = 0;
notDeprecated = false;
} else {
last = to_value;
}
}
// called from gravity to add impact to users
function attachValue(bytes calldata impactData) external virtual;
}
contract BirdsImpact is DepositersImpact{
constructor(address _owner, address _nebula, address[] memory _allowedTokens, address _governanceTokenAddr, address _farmAddr)
DepositersImpact(_owner,_nebula,_allowedTokens,_governanceTokenAddr,_farmAddr) {
withdrawAllowance = false;
}
event withdrawEvent(address user,uint amount);
bool public withdrawAllowance;
function toggleWithdraw(bool allowance) public isOwner {
withdrawAllowance = allowance;
}
function withdraw(uint amount) public {
require(withdrawAllowance,"withdraw not allowed");
require(amount <= impact[msg.sender], "you don't have so much impact");
impact[msg.sender] -= amount;
totalSupply -= amount;
emit withdrawEvent(msg.sender,amount);
}
// called from gravity to add impact to users
function attachValue(bytes calldata impactData) external override isNebula {
address lockTokenAddress = this.deserializeAddress(impactData, 0);
address depositerAddress = this.deserializeAddress(impactData, 20);
uint amount = this.deserializeUint(impactData, 40, 32);
uint id = this.deserializeUint(impactData, 72, 32);
uint action = this.deserializeUint(impactData, 104, 32);
require(dataId[id] == false, "Data is not processed.");
dataId[id] = true;
emit Transfer(lockTokenAddress, depositerAddress, amount, id, action);
require(allowedTokens[lockTokenAddress],"this token is not supported by treasury");
if (impact[depositerAddress] == 0) {
users[userCount] = depositerAddress;
userCount += 1;
}
impact[depositerAddress] += amount;
totalSupply += amount;
}
}
contract EarlyBirdsImpact is DepositersImpact {
// variables used for recognising block time of the adding impact
uint public blockDuration;
uint public initialBlockNumber;
bool public unlocked;
event withdrawEvent(address user,uint amount);
bool public withdrawAllowance;
constructor(address _owner, address _nebula, address[] memory _allowedTokens, address _governanceTokenAddr, address _farmAddr, uint _blockDuration)
DepositersImpact(_owner,_nebula,_allowedTokens,_governanceTokenAddr,_farmAddr) {
unlocked = true;
initialBlockNumber = block.number;
blockDuration = _blockDuration;
withdrawAllowance = false;
}
function toggleWithdraw(bool allowance) public isOwner {
withdrawAllowance = allowance;
}
function withdraw(uint amount) public {
require(withdrawAllowance,"withdraw not allowed");
require(amount <= impact[msg.sender], "you don't have so much impact");
impact[msg.sender] -= amount;
totalSupply -= amount;
emit withdrawEvent(msg.sender,amount);
}
// called from gravity to add impact to users
function attachValue(bytes calldata impactData) external override isNebula {
if ((block.number - initialBlockNumber) > blockDuration) {
unlocked = false;
}
require(unlocked,"early birds epoch is over");
address lockTokenAddress = this.deserializeAddress(impactData, 0);
address depositerAddress = this.deserializeAddress(impactData, 20);
uint amount = this.deserializeUint(impactData, 40, 32);
uint id = this.deserializeUint(impactData, 72, 32);
uint action = this.deserializeUint(impactData, 104, 32);
require(dataId[id] == false, "Data is not processed.");
dataId[id] = true;
emit Transfer(lockTokenAddress, depositerAddress, amount, id, action);
require(allowedTokens[lockTokenAddress],"this token is not supported by treasury");
if (impact[depositerAddress] == 0) {
users[userCount] = depositerAddress;
userCount += 1;
}
impact[depositerAddress] += amount;
totalSupply += amount;
}
}
//SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;
interface IERC20 {
function mint(address _to, uint256 _value) external;
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function increaseAllowance(address spender, uint256 addedValue) external returns (bool);
function transfer(address _to, uint _value) external returns (bool success);
function transferFrom(address _from, address _to, uint _value) external returns (bool success);
function balanceOf(address _owner) external view returns (uint balance);
}
contract Farmer {
// role struct (early bird, lp-provider, depositer, etc...)
// addr - impact keeper contract to transfer asset to
// percent - the percent from every mint to transfer to account of impact keeper
struct Role {
address addr;
uint percent;
}
// array includes all roles, owner can reassign the array to new value to change the roles
// only required is percent summ in array == 100
mapping(uint => Role) public roles;
uint public rolesCount;
address public owner;
// governance token
address public governanceTokenAddr;
// variables used to generate token emission in blocks
// blockTime - time it takes to produce a new block - can be reassigned by owner of the contract if value differs too much
// from the current on the chain (are used to stick emission to another blockchain block time)
uint public lastClaimedBlock;
uint public deployedBlockOffset;
uint public c;
uint public a;
uint public blockTimeETH;
uint public blockTimeFTM;
// for migration
bool private notDeprecated = true;
// change blockTime
function changeBlockTimeETH(uint _blockTimeETH) public isOwner {
blockTimeETH = _blockTimeETH;
}
function changeBlockTimeFTM(uint _blockTimeFTM) public isOwner {
blockTimeFTM = _blockTimeFTM;
}
// add or remove roles
function changeRolesSupply(address[] memory impactKeeperAdresses,uint[] memory percentages) public isOwner {
require(impactKeeperAdresses.length == percentages.length, "lengths do not match");
uint totalPercent = 0;
for(uint i = 0; i < percentages.length; i++){
totalPercent += percentages[i];
}
require(totalPercent == 10000, "total percent is not 100");
rolesCount = percentages.length;
for(uint i = 0; i < rolesCount; i++){
roles[i] = Role({
addr: impactKeeperAdresses[i],
percent: percentages[i]
});
}
}
modifier isOwner() {
require(msg.sender == owner, "Caller is not owner");
_;
}
function transferOwnership(address newOwnerAddress) public isOwner {
owner = newOwnerAddress;
}
function setNewGtonAddr(address newGtonAddress) public isOwner {
governanceTokenAddr = newGtonAddress;
}
function setDeprecated() public isOwner {
notDeprecated = false;
}
constructor(address _owner, uint _a, uint _c, address _governanceTokenAddr, uint _blockTimeETH, uint _blockTimeFTM) {
governanceTokenAddr = _governanceTokenAddr;
owner = _owner;
a = _a;
c = _c;
blockTimeETH = _blockTimeETH;
blockTimeFTM = _blockTimeFTM;
uint deployedBlockFTM = block.number;
uint deployedBlockETH = deployedBlockFTM * (1e18) * blockTimeFTM / blockTimeETH;
lastClaimedBlock = deployedBlockETH;
deployedBlockOffset = deployedBlockETH;
}
function mintAsset() public {
require(notDeprecated, "This contract is deprecated.");
uint lastX = lastClaimedBlock;
uint currentX = block.number * (1e18) * blockTimeFTM / blockTimeETH;
uint lastY = a * (1e36) / (lastX + a * (1e18) / c - deployedBlockOffset);
uint currentY = a * (1e36) / (currentX + a * (1e18) / c - deployedBlockOffset);
uint mintAmount = lastY - currentY;
mint(mintAmount);
lastClaimedBlock = currentX;
for (uint i = 0; i < rolesCount; i++) {
uint amount = IERC20(governanceTokenAddr).balanceOf(address(this)) * roles[i].percent / 10000;
require(IERC20(governanceTokenAddr).increaseAllowance(roles[i].addr,amount),"error transfering graviton token");
}
}
function mint(uint amount) private {
IERC20(governanceTokenAddr).mint(address(this),amount);
}
}
pragma solidity >=0.8.0;
interface IERC20 {
function mint(address _to, uint256 _value) external;
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function increaseAllowance(address spender, uint256 addedValue) external returns (bool);
function transfer(address _to, uint _value) external returns (bool success);
function transferFrom(address _from, address _to, uint _value) external returns (bool success);
function balanceOf(address _owner) external view returns (uint balance);
}
interface ImpactKeeper {
// is used by the users to claim, also highly recomended to call mint function of farm contract
function claim() external;
// this function creates an airdrop of amounts available to claim in the contract
// used as a method to prevent scaming claim share, costs a lot of gas
function processPendingAmounts() external;
}
interface NewContract {
function setImpact(address user, uint256 impact) external;
function setPendings(address user, uint256 amount) external;
function setTotalSupply(uint256 supply) external;
}
abstract contract DepositersImpact is ImpactKeeper {
event Transfer(address token, address user, uint256 value, uint256 id, uint256 action);
// priveleged adresses
address public owner;
address public nebula;
// total locked usd amount
uint public totalSupply;
// tokens that are allowed to be processed
mapping(address => bool) public allowedTokens;
// users impact and amounts
mapping (address => uint) public impact;
mapping (address => uint) public pendingAmounts;
// for token airdrop
mapping (uint => address) public users;
uint public userCount;
// balance pools
uint public currentBP;
uint public lastBP;
uint public lastEmissionProcessed;
// for processing mass transfers
uint public final_value;
// for migration
uint private last;
bool private notDeprecated = true;
bool public claimAllowance;
// contract addresses
address public governanceTokenAddr;
address public farmAddr;
// processed data array
mapping (uint => bool) public dataId;
constructor(address _owner, address _nebula, address[] memory _allowedTokens, address _governanceTokenAddr, address _farmAddr) {
for (uint i = 0; i < _allowedTokens.length; i++){
allowedTokens[_allowedTokens[i]] = true;
}
governanceTokenAddr = _governanceTokenAddr;
farmAddr = _farmAddr;
owner = _owner;
nebula = _nebula;
claimAllowance = false;
}
// farm transfer
function setClaimingAllowance(bool _claimAllowance) public isOwner {
claimAllowance = _claimAllowance;
}
// farm transfer
function transferFarm(address newFarmAddr) public isOwner {
farmAddr = newFarmAddr;
}
// owner control functions
modifier isOwner() {
require(msg.sender == owner, "Caller is not owner");
_;
}
function transferOwnership(address newOwnerAddress) public isOwner {
owner = newOwnerAddress;
}
function setNewGtonAddr(address newGtonAddress) public isOwner {
governanceTokenAddr = newGtonAddress;
}
// nebula control functions
modifier isNebula() {
require(msg.sender == nebula, "Caller is not nebula");
_;
}
function transferNebula(address newNebulaAddress) public isOwner {
nebula = newNebulaAddress;
}
function processPendingAmounts() public override {
require(notDeprecated, "This contract is outdated.");
IERC20 token = IERC20(governanceTokenAddr);
uint to_value = final_value + 2000;
if (final_value == 0) {
currentBP = token.balanceOf(address(this)) - lastBP;
lastEmissionProcessed = currentBP;
}
uint from_value = final_value;
if (to_value > userCount){
to_value = userCount;
}
if (final_value == 0) {
uint amount = token.allowance(farmAddr,address(this));
require(token.transferFrom(farmAddr,address(this),amount),"error transferring from farm");
}
for(uint i = from_value; i < to_value; i++) {
address userAddress = users[i];
uint amount = currentBP * impact[userAddress] / totalSupply;
pendingAmounts[userAddress] += amount;
lastBP += amount;
}
if (to_value == userCount) {
final_value = 0;
} else {
final_value = to_value;
}
}
// impact interface implement
function claim() public override {
require(claimAllowance,"claim is shut down by the owner");
IERC20(governanceTokenAddr).transfer(msg.sender,pendingAmounts[msg.sender]);
lastBP -= pendingAmounts[msg.sender];
pendingAmounts[msg.sender] = 0;
}
// nebula methods
function addNewToken(address newTokenAddress) public isOwner {
allowedTokens[newTokenAddress] = true;
}
function removeToken(address newTokenAddress) public isOwner {
allowedTokens[newTokenAddress] = false;
}
function getPendingAmount(address usr) public view returns (uint) {
return pendingAmounts[usr];
}
function deserializeUint(bytes memory b, uint startPos, uint len) external pure returns (uint) {
uint v = 0;
for (uint p = startPos; p < startPos + len; p++) {
v = v * 256 + uint(uint8(b[p]));
}
return v;
}
function deserializeAddress(bytes memory b, uint startPos) external view returns (address) {
return address(uint160(this.deserializeUint(b, startPos, 20)));
}
function migrate(address newAddress) public isOwner {
NewContract newContract = NewContract(newAddress);
uint to_value = last + 2000;
uint from_value = last;
if (to_value > userCount){
to_value = userCount;
}
for(uint i = from_value; i < to_value; i++) {
address user = users[i];
uint pendAmount = getPendingAmount(user);
uint impactAmount = impact[user];
newContract.setPendings(user, pendAmount);
newContract.setImpact(user, impactAmount);
}
if (to_value == userCount) {
last = 0;
notDeprecated = false;
} else {
last = to_value;
}
}
// called from gravity to add impact to users
function attachValue(bytes calldata impactData) external virtual;
}
pragma solidity >=0.8.0;
// ierc 20 interface with minting function (should work properly)
interface IERC20 {
function mint(address _to, uint256 _value) external;
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function increaseAllowance(address spender, uint256 addedValue) external returns (bool);
function transfer(address _to, uint _value) external returns (bool success);
function transferFrom(address _from, address _to, uint _value) external returns (bool success);
function balanceOf(address _owner) external view returns (uint balance);
}
interface ImpactKeeper {
// is used by the users to claim, also highly recomended to call mint function of farm contract
function claim() external;
// this function creates an airdrop of amounts available to claim in the contract
// used as a method to prevent scaming claim share, costs a lot of gas
function processPendingAmounts() external;
}
interface NewContract {
function setImpact(address user, uint256 impact) external;
function setPendings(address user, uint256 amount) external;
function setTotalSupply(uint256 supply) external;
}
pragma solidity >=0.8.0;
interface IERC20 {
function mint(address _to, uint256 _value) external;
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function increaseAllowance(address spender, uint256 addedValue) external returns (bool);
function transfer(address _to, uint _value) external returns (bool success);
function transferFrom(address _from, address _to, uint _value) external returns (bool success);
function balanceOf(address _owner) external view returns (uint balance);
}
interface ImpactKeeper {
// is used by the users to claim, also highly recomended to call mint function of farm contract
function claim() external;
// this function creates an airdrop of amounts available to claim in the contract
// used as a method to prevent scaming claim share, costs a lot of gas
function processPendingAmounts() external;
}
interface NewContract {
function setImpact(address user, uint256 impact) external;
function setPendings(address user, uint256 amount) external;
function setTotalSupply(uint256 supply) external;
}
abstract contract DepositersImpact is ImpactKeeper {
event Transfer(address token, address user, uint256 value, uint256 id, uint256 action);
// priveleged adresses
address public owner;
address public nebula;
// total locked usd amount
uint public totalSupply;
// tokens that are allowed to be processed
mapping(address => bool) public allowedTokens;
// users impact and amounts
mapping (address => uint) public impact;
mapping (address => uint) public pendingAmounts;
// for token airdrop
mapping (uint => address) public users;
uint public userCount;
// balance pools
uint public currentBP;
uint public lastBP;
uint public lastEmissionProcessed;
// for processing mass transfers
uint public final_value;
// for migration
uint private last;
bool private notDeprecated = true;
bool public claimAllowance;
// contract addresses
address public governanceTokenAddr;
address public farmAddr;
// processed data array
mapping (uint => bool) public dataId;
constructor(address _owner, address _nebula, address[] memory _allowedTokens, address _governanceTokenAddr, address _farmAddr) {
for (uint i = 0; i < _allowedTokens.length; i++){
allowedTokens[_allowedTokens[i]] = true;
}
governanceTokenAddr = _governanceTokenAddr;
farmAddr = _farmAddr;
owner = _owner;
nebula = _nebula;
claimAllowance = false;
}
// farm transfer
function setClaimingAllowance(bool _claimAllowance) public isOwner {
claimAllowance = _claimAllowance;
}
// farm transfer
function transferFarm(address newFarmAddr) public isOwner {
farmAddr = newFarmAddr;
}
// owner control functions
modifier isOwner() {
require(msg.sender == owner, "Caller is not owner");
_;
}
function transferOwnership(address newOwnerAddress) public isOwner {
owner = newOwnerAddress;
}
function setNewGtonAddr(address newGtonAddress) public isOwner {
governanceTokenAddr = newGtonAddress;
}
// nebula control functions
modifier isNebula() {
require(msg.sender == nebula, "Caller is not nebula");
_;
}
function transferNebula(address newNebulaAddress) public isOwner {
nebula = newNebulaAddress;
}
function processPendingAmounts() public override {
require(notDeprecated, "This contract is outdated.");
IERC20 token = IERC20(governanceTokenAddr);
uint to_value = final_value + 2000;
if (final_value == 0) {
currentBP = token.balanceOf(address(this)) - lastBP;
lastEmissionProcessed = currentBP;
}
uint from_value = final_value;
if (to_value > userCount){
to_value = userCount;
}
if (final_value == 0) {
uint amount = token.allowance(farmAddr,address(this));
require(token.transferFrom(farmAddr,address(this),amount),"error transferring from farm");
}
for(uint i = from_value; i < to_value; i++) {
address userAddress = users[i];
uint amount = currentBP * impact[userAddress] / totalSupply;
pendingAmounts[userAddress] += amount;
lastBP += amount;
}
if (to_value == userCount) {
final_value = 0;
} else {
final_value = to_value;
}
}
// impact interface implement
function claim() public override {
require(claimAllowance,"claim is shut down by the owner");
IERC20(governanceTokenAddr).transfer(msg.sender,pendingAmounts[msg.sender]);
lastBP -= pendingAmounts[msg.sender];
pendingAmounts[msg.sender] = 0;
}
// nebula methods
function addNewToken(address newTokenAddress) public isOwner {
allowedTokens[newTokenAddress] = true;
}
function removeToken(address newTokenAddress) public isOwner {
allowedTokens[newTokenAddress] = false;
}
function getPendingAmount(address usr) public view returns (uint) {
return pendingAmounts[usr];
}
function deserializeUint(bytes memory b, uint startPos, uint len) external pure returns (uint) {
uint v = 0;
for (uint p = startPos; p < startPos + len; p++) {
v = v * 256 + uint(uint8(b[p]));
}
return v;
}
function deserializeAddress(bytes memory b, uint startPos) external view returns (address) {
return address(uint160(this.deserializeUint(b, startPos, 20)));
}
function migrate(address newAddress) public isOwner {
NewContract newContract = NewContract(newAddress);
uint to_value = last + 2000;
uint from_value = last;
if (to_value > userCount){
to_value = userCount;
}
for(uint i = from_value; i < to_value; i++) {
address user = users[i];
uint pendAmount = getPendingAmount(user);
uint impactAmount = impact[user];
newContract.setPendings(user, pendAmount);
newContract.setImpact(user, impactAmount);
}
if (to_value == userCount) {
last = 0;
notDeprecated = false;
} else {
last = to_value;
}
}
// called from gravity to add impact to users
function attachValue(bytes calldata impactData) external virtual;
}
contract LPImpact is DepositersImpact {
constructor(address _owner, address _nebula, address[] memory _allowedTokens, address _governanceTokenAddr, address _farmAddr)
DepositersImpact(_owner,_nebula,_allowedTokens,_governanceTokenAddr,_farmAddr) {}
// called from gravity to add impact to users
function attachValue(bytes calldata impactData) external override isNebula {
address lockTokenAddress = this.deserializeAddress(impactData, 0);
address depositerAddress = this.deserializeAddress(impactData, 20);
uint amount = this.deserializeUint(impactData, 40, 32);
uint id = this.deserializeUint(impactData, 72, 32);
uint action = this.deserializeUint(impactData, 104, 32);
require(dataId[id] == false, "Data is not processed.");
dataId[id] = true;
emit Transfer(lockTokenAddress, depositerAddress, amount, id, action);
require(allowedTokens[lockTokenAddress],"this token is not supported by treasury");
if (action == 1) {
if (impact[depositerAddress] == 0) {
users[userCount] = depositerAddress;
userCount += 1;
}
impact[depositerAddress] += amount;
totalSupply += amount;
} else if (action == 2) {
require(impact[depositerAddress] >= amount, "you don't have enough amount to withdraw");
impact[depositerAddress] -= amount;
totalSupply -= amount;
}
}
}
pragma solidity >=0.8.0;
interface IERC20 {
function mint(address _to, uint256 _value) external;
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function increaseAllowance(address spender, uint256 addedValue) external returns (bool);
function transfer(address _to, uint _value) external returns (bool success);
function transferFrom(address _from, address _to, uint _value) external returns (bool success);
function balanceOf(address _owner) external view returns (uint balance);
}
contract LPTokenImpact {
address public owner;
mapping (address => bool) allowedTokens;
mapping (address => mapping ( address => uint)) balances;
uint totalSupply;
constructor(address[] memory _allowedTokens) {
for (uint i = 0; i < _allowedTokens.length; i++) {
allowedTokens[_allowedTokens[i]] = true;
}
owner = msg.sender;
}
function toggleToken(address tokenAddress) public isOwner {
allowedTokens[tokenAddress] = !allowedTokens[tokenAddress];
}
// owner control functions
modifier isOwner() {
require(msg.sender == owner, "Caller is not owner");
_;
}
function transferOwnership(address newOwnerAddress) public isOwner {
owner = newOwnerAddress;
}
function deposit(address tokenAddress, uint ammmount) public {
require(allowedTokens[tokenAddress], "token not allowed");
require(IERC20(tokenAddress).transferFrom(msg.sender,address(this),ammmount), "not enough ammmount allowance");
balances[tokenAddress][msg.sender] += ammmount;
totalSupply += ammmount;
}
function Withdraw(address tokenAddress, uint ammmount) public {
require(allowedTokens[tokenAddress], "token not allowed");
require(balances[tokenAddress][msg.sender] >= ammmount, "not enough balance");
IERC20(tokenAddress).transfer(msg.sender,ammmount);
balances[tokenAddress][msg.sender] -= ammmount;
totalSupply -= ammmount;
}
}
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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": {
"generatedSources": [],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5060405162002b9c38038062002b9c833981810160405260408110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b5060405250505081818160049080519060200190620001cf92919062000466565b508060059080519060200190620001e892919062000466565b506012600660006101000a81548160ff021916908360ff16021790555050506000600660016101000a81548160ff021916908315150217905550620002466000801b6200023a620002d060201b60201c565b620002d860201b60201c565b620002877f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200027b620002d060201b60201c565b620002d860201b60201c565b620002c87f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620002bc620002d060201b60201c565b620002d860201b60201c565b50506200051c565b600033905090565b620002ea8282620002ee60201b60201c565b5050565b6200031c816000808581526020019081526020016000206000016200039160201b6200130f1790919060201c565b156200038d5762000332620002d060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620003c1836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620003c960201b60201c565b905092915050565b6000620003dd83836200044360201b60201c565b620004385782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506200043d565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200049e5760008555620004ea565b82601f10620004b957805160ff1916838001178555620004ea565b82800160010185558215620004ea579182015b82811115620004e9578251825591602001919060010190620004cc565b5b509050620004f99190620004fd565b5090565b5b8082111562000518576000816000905550600101620004fe565b5090565b612670806200052c6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d539139314610861578063d547741f1461087f578063dd62ed3e146108cd578063e63ab1e914610945576101a9565b8063a457c2d714610757578063a9059cbb146107bb578063ca15c8731461081f576101a9565b80639010d07c116100d35780639010d07c146105f057806391d148541461065257806395d89b41146106b6578063a217fddf14610739576101a9565b806370a082311461054057806379cc6790146105985780638456cb59146105e6576101a9565b8063313ce567116101665780633f4ba83a116101405780633f4ba83a1461049a57806340c10f19146104a457806342966c68146104f25780635c975abb14610520576101a9565b8063313ce567146103c757806336568abe146103e85780633950935114610436576101a9565b806306fdde03146101ae578063095ea7b31461023157806318160ddd1461029557806323b872dd146102b3578063248a9ca3146103375780632f2ff15d14610379575b600080fd5b6101b6610963565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101f65780820151818401526020810190506101db565b50505050905090810190601f1680156102235780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61027d6004803603604081101561024757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a05565b60405180821515815260200191505060405180910390f35b61029d610a23565b6040518082815260200191505060405180910390f35b61031f600480360360608110156102c957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a2d565b60405180821515815260200191505060405180910390f35b6103636004803603602081101561034d57600080fd5b8101908080359060200190929190505050610b06565b6040518082815260200191505060405180910390f35b6103c56004803603604081101561038f57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b25565b005b6103cf610bae565b604051808260ff16815260200191505060405180910390f35b610434600480360360408110156103fe57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610bc5565b005b6104826004803603604081101561044c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c5e565b60405180821515815260200191505060405180910390f35b6104a2610d11565b005b6104f0600480360360408110156104ba57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610da1565b005b61051e6004803603602081101561050857600080fd5b8101908080359060200190929190505050610e35565b005b610528610e49565b60405180821515815260200191505060405180910390f35b6105826004803603602081101561055657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e60565b6040518082815260200191505060405180910390f35b6105e4600480360360408110156105ae57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ea9565b005b6105ee610f0b565b005b6106266004803603604081101561060657600080fd5b810190808035906020019092919080359060200190929190505050610f9b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61069e6004803603604081101561066857600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fcc565b60405180821515815260200191505060405180910390f35b6106be610ffd565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106fe5780820151818401526020810190506106e3565b50505050905090810190601f16801561072b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61074161109f565b6040518082815260200191505060405180910390f35b6107a36004803603604081101561076d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110a6565b60405180821515815260200191505060405180910390f35b610807600480360360408110156107d157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611173565b60405180821515815260200191505060405180910390f35b61084b6004803603602081101561083557600080fd5b8101908080359060200190929190505050611191565b6040518082815260200191505060405180910390f35b6108696111b7565b6040518082815260200191505060405180910390f35b6108cb6004803603604081101561089557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111db565b005b61092f600480360360408110156108e357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611264565b6040518082815260200191505060405180910390f35b61094d6112eb565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b5050505050905090565b6000610a19610a1261133f565b8484611347565b6001905092915050565b6000600354905090565b6000610a3a84848461153e565b610afb84610a4661133f565b610af68560405180606001604052806028815260200161249a60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610aac61133f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118039092919063ffffffff16565b611347565b600190509392505050565b6000806000838152602001908152602001600020600201549050919050565b610b4b60008084815260200190815260200160002060020154610b4661133f565b610fcc565b610ba0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180612398602f913960400191505060405180910390fd5b610baa82826118c3565b5050565b6000600660009054906101000a900460ff16905090565b610bcd61133f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806125e2602f913960400191505060405180910390fd5b610c5a8282611956565b5050565b6000610d07610c6b61133f565b84610d028560026000610c7c61133f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119e990919063ffffffff16565b611347565b6001905092915050565b610d427f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d3d61133f565b610fcc565b610d97576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260398152602001806123e96039913960400191505060405180910390fd5b610d9f611a71565b565b610dd27f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610dcd61133f565b610fcc565b610e27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260368152602001806124c26036913960400191505060405180910390fd5b610e318282611b64565b5050565b610e46610e4061133f565b82611d2d565b50565b6000600660019054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610ee8826040518060600160405280602481526020016124f860249139610ed986610ed461133f565b611264565b6118039092919063ffffffff16565b9050610efc83610ef661133f565b83611347565b610f068383611d2d565b505050565b610f3c7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610f3761133f565b610fcc565b610f91576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806125866037913960400191505060405180910390fd5b610f99611ef3565b565b6000610fc482600080868152602001908152602001600020600001611fe790919063ffffffff16565b905092915050565b6000610ff58260008086815260200190815260200160002060000161200190919063ffffffff16565b905092915050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110955780601f1061106a57610100808354040283529160200191611095565b820191906000526020600020905b81548152906001019060200180831161107857829003601f168201915b5050505050905090565b6000801b81565b60006111696110b361133f565b84611164856040518060600160405280602581526020016125bd60259139600260006110dd61133f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118039092919063ffffffff16565b611347565b6001905092915050565b600061118761118061133f565b848461153e565b6001905092915050565b60006111b0600080848152602001908152602001600020600001612031565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611201600080848152602001908152602001600020600201546111fc61133f565b610fcc565b611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061246a6030913960400191505060405180910390fd5b6112608282611956565b5050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000611337836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612046565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806125626024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611453576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806124226022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061253d6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806123756023913960400191505060405180910390fd5b6116558383836120b6565b6116c18160405180606001604052806026815260200161244460269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118039092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061175681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119e990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906118b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561187557808201518184015260208101905061185a565b50505050905090810190601f1680156118a25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6118ea8160008085815260200190815260200160002060000161130f90919063ffffffff16565b15611952576118f761133f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61197d816000808581526020019081526020016000206000016120c690919063ffffffff16565b156119e55761198a61133f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600080828401905083811015611a67576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600660019054906101000a900460ff16611af3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600660016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611b3761133f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c07576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611c13600083836120b6565b611c28816003546119e990919063ffffffff16565b600381905550611c8081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119e990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061251c6021913960400191505060405180910390fd5b611dbf826000836120b6565b611e2b816040518060600160405280602281526020016123c760229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118039092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e83816003546120f690919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600660019054906101000a900460ff1615611f76576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600660016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611fba61133f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000611ff68360000183612140565b60001c905092915050565b6000612029836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6121c3565b905092915050565b600061203f826000016121e6565b9050919050565b600061205283836121c3565b6120ab5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506120b0565b600090505b92915050565b6120c18383836121f7565b505050565b60006120ee836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612265565b905092915050565b600061213883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611803565b905092915050565b6000818360000180549050116121a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806123536022913960400191505060405180910390fd5b8260000182815481106121b057fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b61220283838361234d565b61220a610e49565b15612260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612611602a913960400191505060405180910390fd5b505050565b6000808360010160008481526020019081526020016000205490506000811461234157600060018203905060006001866000018054905003905060008660000182815481106122b057fe5b90600052602060002001549050808760000184815481106122cd57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061230557fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612347565b60009150505b92915050565b50505056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e706175736545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332305072657365744d696e7465725061757365723a206d7573742068617665206d696e74657220726f6c6520746f206d696e7445524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20706175736545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a26469706673582212204ceea4ece523555609b1abbad2e72f605cd7af433795c63f409081b12ba86d9364736f6c63430007040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2B9C CODESIZE SUB DUP1 PUSH3 0x2B9C DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE PUSH1 0x40 DUP2 LT ISZERO PUSH3 0x37 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 MLOAD PUSH1 0x40 MLOAD SWAP4 SWAP3 SWAP2 SWAP1 DUP5 PUSH5 0x100000000 DUP3 GT ISZERO PUSH3 0x58 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP3 ADD DUP6 DUP2 GT ISZERO PUSH3 0x6F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD DUP7 PUSH1 0x1 DUP3 MUL DUP4 ADD GT PUSH5 0x100000000 DUP3 GT OR ISZERO PUSH3 0x8D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 DUP4 MSTORE PUSH1 0x20 DUP4 ADD SWAP3 POP POP POP SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0xC3 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0xA6 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH3 0xF1 JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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